- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 1,023 for exist (0.05 sec)
-
cmd/bucket-replication.go
sendEvent(eventArgs{ EventName: event.ObjectReplicationNotTracked, BucketName: bucket, Object: objInfo, UserAgent: "Internal: [Replication]", Host: globalLocalNodeName, }) } // object with same VersionID already exists, replication kicked off by
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 116.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
designJspFileNameMap.entrySet().stream().forEach(e -> { final File jspFile = getDesignJspFile("/WEB-INF/view" + key + "/" + e.getValue()); if (!jspFile.exists()) { jspFile.getParentFile().mkdirs(); final File baseJspFile = getDesignJspFile("/WEB-INF/view/" + e.getValue()); try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
cmd/data-scanner.go
} if typ&os.ModeDir != 0 { h := hashPath(entName) _, exists := f.oldCache.Cache[h.Key()] if h == thisHash { return nil } this := cachedFolder{name: entName, parent: &thisHash, objectHealProbDiv: folder.objectHealProbDiv} delete(abandonedChildren, h.Key()) // h.Key() already accounted for. if exists { existingFolders = append(existingFolders, this)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 21:10:34 UTC 2024 - 48.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* syntactic analysis is performed; no DNS lookups or other network interactions take place. Thus * there is no guarantee that the domain actually exists on the internet. * * <p>One common use of this class is to determine whether a given string is likely to represent an * addressable domain on the web -- that is, for a candidate string {@code "xxx"}, might browsing to
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
this(location, null); } public MavenProperties(Path location, Function<String, String> callback) throws IOException { this.location = location; this.callback = callback; if (Files.exists(location)) { load(location); } } public MavenProperties(boolean substitute) { this.substitute = substitute; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
src/cmd/cgo/ast.go
// the first error and then (+n more errors). // Instead, turn it into a new Error that will return // details for all the errors. for _, e := range list { fmt.Fprintln(os.Stderr, e) } os.Exit(2) } fatalf("parsing %s: %s", name, err) } return ast1 } func sourceLine(n ast.Node) int { return fset.Position(n.Pos()).Line }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0) -
Makefile.core.mk
${ISTIO_BIN}/go-junit-report: @echo "go-junit-report was not found in the build environment." @echo "Please install go-junit-report (ex. go install github.com/jstemmer/go-junit-report@latest)" @exit 1 # This is just an alias for racetest now test: racetest ## Runs all unit tests # For now, keep a minimal subset. This can be expanded in the future. BENCH_TARGETS ?= ./pilot/... PKG ?= ./...
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
cmd/erasure-metadata.go
ETag: partETag, Size: partSize, ActualSize: actualSize, ModTime: modTime, Index: idx, Checksums: checksums, } // Update part info if it already exists. for i, part := range fi.Parts { if partNumber == part.Number { fi.Parts[i] = partInfo return } } // Proceed to include new part info. fi.Parts = append(fi.Parts, partInfo)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 21.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
@Override public boolean isExistClass(final String className) { final File file = new File(baseDir, toClassFile(ClassUtil.concatName(rootPackage, className))); return file.exists(); } @Override public void forEach(final ClassHandler handler) { ClassTraversalUtil.forEach(baseDir, rootPackage, handler); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 19.5K bytes - Viewed (0) -
cmd/storage-datatypes_gen.go
case "fl": z.File, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "File") return } case "ex": z.Exists, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "Exists") return } case "er": z.Error, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Error") return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 150.2K bytes - Viewed (0)