- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 654 for Continued (0.07 sec)
-
src/cmd/api/main_test.go
for i := 0; i < typ.NumFields(); i++ { f := typ.Field(i) if !f.Exported() { continue } typ := f.Type() if f.Anonymous() { if w.isDeprecated(f) { w.emitf("embedded %s //deprecated", w.typeString(typ)) } w.emitf("embedded %s", w.typeString(typ)) continue } if w.isDeprecated(f) { w.emitf("%s //deprecated", f.Name()) }
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Feb 20 03:25:33 UTC 2025 - 31.4K bytes - Viewed (0) -
cmd/signature-v4-utils_test.go
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 14.3K bytes - Viewed (0) -
cmd/peer-s3-client.go
for idx, buckets := range nodeBuckets { if buckets == nil { continue } if !slices.Contains(sys.peerClients[idx].GetPools(), poolIdx) { continue } for _, bi := range buckets { _, ok := resultMap[bi.Name] if ok { // Skip it, this bucket is found in another pool continue } bucketsMap[bi.Name]++ if bucketsMap[bi.Name] >= quorum {Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
} } return FileVisitResult.CONTINUE; } @Override public FileVisitResult visitFileFailed(final Path file, final IOException e) throws IOException { if (e != null) { logger.warn("I/O exception on {}", file, e); } return FileVisitResult.CONTINUE; } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27K bytes - Viewed (0) -
src/archive/tar/fuzz_test.go
for { hdr, err := r.Next() if err == io.EOF { break } if err != nil { return } buf := bytes.NewBuffer(nil) if _, err := io.Copy(buf, r); err != nil { continue } files = append(files, file{header: hdr, content: buf.Bytes()}) } // If we were unable to read anything out of the archive don't // bother trying to roundtrip it. if len(files) == 0 { returnRegistered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Jan 13 18:06:33 UTC 2022 - 2.2K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
is UnresolvedDependencyResult -> throw result.failure else -> throw AssertionError("Unknown dependency type: $result") } if (dependency.isConstraint) { continue } val to = dependency.resolvedVariant when (val fromComponent = dependency.from.id) { is ProjectComponentIdentifier -> if (fromComponent != rootComponent.id) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri May 16 18:26:52 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
if (!entry.isDirectory()) { final String entryName = entry.getName().replace('\\', '/'); if (!entryName.startsWith(prefix)) { continue; } final InputStream is = JarFileUtil.getInputStream(jarFile, entry); try { handler.processResource(entryName.substring(pos), is);
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
continue; } addr = new NetbiosAddress[] { lmaddr }; break; case RESOLVER_WINS: if (hostname.equals(NbtAddress.MASTER_BROWSER_NAME) || hostname.length() > 15) { // invalid netbios name continue; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/PatternFilenameFilter.java
* parameter as non-nullable (since passing null to a FilenameFilter is unsafe in general), but if * someone still manages to pass null, let's continue to have the method work. * * (PatternFilenameFilter is of course one of those classes that shouldn't be a publicly visible * class to begin with but rather something returned from a static factory method whose declared
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (1) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactResolverTest.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.1K bytes - Viewed (0)