- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 822 for exists (0.03 sec)
-
src/test/java/jcifs/tests/FileOperationsTest.java
try { f.renameTo(f2); try { assertTrue(f2.exists()); renamed = true; } finally { f2.delete(); } } finally { if ( !renamed && f.exists() ) { f.delete(); } } } }
Registered: 2025-05-25 00:10 - Last Modified: 2023-01-05 13:17 - 16.3K bytes - Viewed (0) -
helm/minio/templates/_helper_create_bucket.txt
# Ensure bucket exists, purging if asked to createBucket() { BUCKET=$1 POLICY=$2 PURGE=$3 VERSIONING=$4 OBJECTLOCKING=$5 # Purge the bucket, if set & exists # Since PURGE is user input, check explicitly for `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET; then echo "Purging bucket '$BUCKET'." set +e # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET
Registered: 2025-05-25 19:28 - Last Modified: 2024-01-12 18:18 - 3.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/MoreFilesTest.java
Path temp = createTempFile(); assertTrue(Files.exists(temp)); Files.delete(temp); assertFalse(Files.exists(temp)); MoreFiles.touch(temp); assertTrue(Files.exists(temp)); MoreFiles.touch(temp); assertTrue(Files.exists(temp)); } public void testTouchTime() throws IOException { Path temp = createTempFile(); assertTrue(Files.exists(temp));
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 27.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java
/** * GETs the source URI content into target (does not have to exist, or will be overwritten if exist). The * source MUST BE relative from the {@link RemoteRepository#getUrl()} root. * * @return {@code true} if operation succeeded, {@code false} if source does not exist. * @throws RuntimeException If failed (and not due source not exists). */ boolean get(@Nonnull URI relativeSource, @Nonnull Path target);
Registered: 2025-05-24 08:56 - Last Modified: 2023-03-23 05:29 - 4.4K bytes - Viewed (0) -
cmd/object-api-errors.go
} // ObjectAlreadyExists object already exists. type ObjectAlreadyExists GenericError func (e ObjectAlreadyExists) Error() string { return "Object: " + e.Bucket + "/" + e.Object + " already exists" } // ObjectExistsAsDirectory object already exists as a directory. type ObjectExistsAsDirectory GenericError func (e ObjectExistsAsDirectory) Error() string { return "Object exists on : " + e.Bucket + " as directory " + e.Object
Registered: 2025-05-25 19:28 - Last Modified: 2024-08-09 02:05 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
Registered: 2025-05-26 08:04 - Last Modified: 2025-03-15 06:53 - 7.5K bytes - Viewed (0) -
cmd/object-api-input-checks.go
} // Checks for PutObjectPart arguments validity, also validates if bucket exists. func checkPutObjectPartArgs(ctx context.Context, bucket, object, uploadID string) error { return checkMultipartObjectArgs(ctx, bucket, object, uploadID) } // Checks for ListParts arguments validity, also validates if bucket exists. func checkListPartsArgs(ctx context.Context, bucket, object, uploadID string) error {
Registered: 2025-05-25 19:28 - Last Modified: 2024-04-04 12:04 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
checkConnection(f); f.resolve("test").exists(); } } @Test public void transportReconnects () throws IOException { try ( SmbFile f = getDefaultShareRoot() ) { // transport disconnects can happen pretty much any time assertNotNull(f); f.connect(); f.exists(); assertNotNull(f);
Registered: 2025-05-25 00:10 - Last Modified: 2023-01-05 13:09 - 15.8K bytes - Viewed (0) -
cni/pkg/install/cniconfig.go
for !file.Exists(cniConfigFilepath) { if strings.HasSuffix(cniConfigFilepath, ".conf") && file.Exists(cniConfigFilepath+"list") { installLog.Infof("%s doesn't exist, but %[1]slist does; Using it as the CNI config file instead.", cniConfigFilepath) cniConfigFilepath += "list" } else if strings.HasSuffix(cniConfigFilepath, ".conflist") && file.Exists(cniConfigFilepath[:len(cniConfigFilepath)-4]) {
Registered: 2025-05-28 22:53 - Last Modified: 2025-05-08 17:35 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/PluginTests.java
Registered: 2025-05-26 08:04 - Last Modified: 2025-03-15 06:53 - 6.3K bytes - Viewed (0)