- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 980 for because (0.19 sec)
-
src/main/resources/CLMessages.properties
ECL0017=Exception occurred, because {0} ECL0041={0}''s creation failure, because {1} ECL0040=IOException occurred, because {0} ECL0042=An illegal access was generated by {0}, because {1} ECL0043=The target which {0} invoked is illegal, because {1} ECL0044=Class not found, details are {0} ECL0048=The constructor of {0} for arguments({1}) not found ECL0049=The method({1}) of {0} not found ECL0050=Can not parse, because {0}
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0) -
cmd/os-reliable.go
// Retry only for the first retryable error. if osIsNotExist(err) && i == 0 { i++ // Determine if os.NotExist error is because of // baseDir's parent being present, retry it once such // that the MkdirAll is retried once for the parent // of dirPath. // Because it is worth a retry to skip a different // baseDir which is slightly higher up the depth. nbaseDir := path.Dir(baseDir)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Apr 22 17:49:30 UTC 2024 - 5.8K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
val codenarcVersion = if (isAtLeastGroovy4) "3.1.0-groovy-4.0" else "3.1.0" dependencies { rules("gradlebuild:code-quality-rules") { because("Provides rules defined in XML files") } codenarc("gradlebuild:code-quality-rules") { because("Provides the IntegrationTestFixturesRule implementation") } codenarc("org.codenarc:CodeNarc:$codenarcVersion") codenarc(embeddedKotlin("stdlib"))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 6.1K bytes - Viewed (0) -
build-logic/buildquality/build.gradle.kts
exclude(group = "com.google.guava") } implementation(kotlin("gradle-plugin")) implementation(kotlin("compiler-embeddable") as String) { because("Required by IncubatingApiReportTask") } implementation("com.gradle:develocity-gradle-plugin") { because("Arch-test plugin configures the PTS extension") } testImplementation("org.junit.jupiter:junit-jupiter-engine")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 11 14:21:47 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java
/** * This event means that the artifactScope has NOT been updated to a farther node artifactScope because current * node is in the first level pom * * @param artifact current node artifact, the one in the first level pom * @param ignoredScope artifactScope that was ignored because artifact was in first level pom */ void updateScopeCurrentPom(Artifact artifact, String ignoredScope);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
build-logic-commons/basics/build.gradle.kts
implementation("com.google.guava:guava") { because("Used by class analysis") } implementation("org.ow2.asm:asm") { because("Used by class analysis") } implementation("org.ow2.asm:asm-commons") { because("Used by class analysis") } implementation(kotlin("compiler-embeddable") as String) { because("Required by KotlinSourceParser") }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 17 10:11:26 UTC 2024 - 893 bytes - Viewed (0) -
.github/workflows/stale-issues.yml
only-labels: "stat:awaiting response" stale-issue-message: > This issue is stale because it has been open for 7 days with no activity. It will be closed if no further activity occurs. Thank you. close-issue-message: > This issue was closed because it has been inactive for 7 days since being marked as stale. Please reopen if you'd like to work on this further.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jun 26 15:41:19 UTC 2024 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* <li>If this field's value == currentThread, we know that it's up to date, because write * operations in a thread always happen-before subsequent read operations in the same * thread * <li>If this field's value == null because of unsafe publication, we know that it isn't the * object associated with our thread, because if it was the publication wouldn't have been
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 01 21:46:34 UTC 2024 - 22.1K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
api("com.uwyn:jhighlight:1.0") api("com.vladsch.flexmark:flexmark-all:0.34.60") { because("Higher versions tested are either incompatible (0.62.2) or bring additional unwanted dependencies (0.36.8)") } api("org.apache.pdfbox:pdfbox:2.0.24") { because("Flexmark 0.34.60 brings in a vulnerable version of pdfbox") } api("com.google.code.findbugs:jsr305:3.0.2")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/io/CharSequenceReader.java
* even back to `this.seq`. However, that may suggest that we're defending against concurrent * mutation, which is not an actual risk because we use `synchronized`. * - Make `remaining` require a non-null `seq` argument. But this is a bit weird because the * method, while it would avoid the instance field `seq` would still access the instance field * `pos`. */ @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 4.5K bytes - Viewed (0)