-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Weekly Stable Updates 20250207 #1092
Open
moljac
wants to merge
10
commits into
main
Choose a base branch
from
dev/moljac/wsu-20250207
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
binderate error: Dependency errors : 2
1
System.Exception:
No matching artifact config found for:
androidx.security:security-crypto:1.1.0-alpha03
to satisfy dependency of:
com.google.android.recaptcha:recaptcha:18.7.0
Please add following json snippet to config.json:
{
"groupId": "androidx.security",
"artifactId": "security-crypto",
"version": "1.1.0-alpha03",
"nugetVersion": "CHECK PREFIX 1.1.0-alpha03",
"nugetId": "CHECK NUGET ID",
"dependencyOnly": true/false
}
2
System.Exception:
No matching artifact config found for:
com.google.android.gms:play-services-recaptchabase:16.1.0
to satisfy dependency of:
com.google.android.recaptcha:recaptcha:18.7.0
Please add following json snippet to config.json:
{
"groupId": "com.google.android.gms",
"artifactId": "play-services-recaptchabase",
"version": "16.1.0",
"nugetVersion": "CHECK PREFIX 16.1.0",
"nugetId": "CHECK NUGET ID",
"dependencyOnly": true/false
} After resolving dependencies:
|
Tests error:
package org.tensorflow.lite;
public enum DataType
{
FLOAT32(1),
INT32(2),
UINT8(3),
INT64(4),
STRING(5),
BOOL(6),
INT16(7),
INT8(9);
private final int value;
private DataType(final int value) {
this.value = value;
}
public int byteSize() {
switch (this) {
case FLOAT32:
case INT32: {
return 4;
}
case INT16: {
return 2;
}
case INT8:
case UINT8: {
return 1;
}
case INT64: {
return 8;
}
case BOOL: {
return -1;
}
case STRING: {
return -1;
}
default: {
throw new IllegalArgumentException("DataType error: DataType " + this + " is not supported yet");
}
}
}
int c() {
return this.value;
}
} |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated artifacts:
com.google.ai.edge.litert:litert
- 1.0.1 -> 1.1.0com.google.ai.edge.litert:litert-api
- 1.0.1 -> 1.1.0com.google.ai.edge.litert:litert-gpu
- 1.0.1 -> 1.1.0com.google.ai.edge.litert:litert-gpu-api
- 1.0.1 -> 1.1.0com.google.ai.edge.litert:litert-metadata
- 1.0.1 -> 1.1.0com.google.ai.edge.litert:litert-support
- 1.0.1 -> 1.1.0com.google.ai.edge.litert:litert-support-api
- 1.0.1 -> 1.1.0com.google.android.recaptcha:recaptcha
- 18.6.1 -> 18.7.0com.google.firebase:firebase-auth
- 23.1.0 -> 23.2.0com.google.firebase:firebase-auth-ktx
- 23.1.0 -> 23.2.0com.google.firebase:firebase-firestore
- 25.1.1 -> 25.1.2com.google.firebase:firebase-firestore-ktx
- 25.1.1 -> 25.1.2org.checkerframework:checker-qual
- 3.48.4 -> 3.49.0