- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 299 for EXISTS (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/smb/SmbFileTest.java
// Act & Assert assertTrue(smbFile.exists()); } @Test void testExistsReturnsFalseWhenNotFound() throws SmbException, CIFSException { // Arrange doReturn(false).when(smbFile).exists(); // Act & Assert assertFalse(smbFile.exists()); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.8K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/PublishPluginFuncTest.groovy
file("build/distributions/hello-world-1.0-original.jar").exists() file("build/distributions/hello-world-1.0.jar").exists() file("build/distributions/hello-world-1.0-javadoc.jar").exists() file("build/distributions/hello-world-1.0-sources.jar").exists() file("build/distributions/hello-world-1.0.pom").exists() assertXmlEquals(file("build/distributions/hello-world-1.0.pom").text, """
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 22 07:24:59 GMT 2021 - 19K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java
checkDependencies(licenses, notices, sources, shaFiles); licenses.forEach((item, exists) -> failIfAnyMissing(item, exists, "license")); notices.forEach((item, exists) -> failIfAnyMissing(item, exists, "notice")); sources.forEach((item, exists) -> failIfAnyMissing(item, exists, "sources")); if (shaFiles.isEmpty() == false) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jul 26 12:16:14 GMT 2021 - 14.3K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy
file("/build/${testIntermediateDir}/original/rest-api-spec/test/" + test).exists() file("/build/${testIntermediateDir}/transformed/rest-api-spec/test/" + test).exists() file("/build/${testIntermediateDir}/original/rest-api-spec/test/" + test).exists() file("/build/${testIntermediateDir}/transformed/rest-api-spec/test/" + test).exists()
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 30 16:30:48 GMT 2021 - 16.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPlugin.java
} private static boolean zipExists() { return new File("/bin/unzip").exists() || new File("/usr/bin/unzip").exists() || new File("/usr/local/bin/unzip").exists(); } private static boolean tarExists() { return new File("/bin/tar").exists() || new File("/usr/bin/tar").exists() || new File("/usr/local/bin/tar").exists(); } private Object distTaskOutput(TaskProvider<Task> buildDistTask) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 10.6K bytes - Click Count (0) -
tests/lru_test.go
lc.Add("key1", nil) value, exists := lc.Get("key1") if value != nil || !exists { t.Fatalf("unexpected value or existence flag for key1: value=%v, exists=%v", value, exists) } // Adding an entry with the same key but different value newVal := "val1" lc.Add("key1", &newVal) value, exists = lc.Get("key1") if value != &newVal || !exists {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Mon Sep 08 09:19:22 GMT 2025 - 10.4K bytes - Click Count (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
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 09 02:05:14 GMT 2024 - 22.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** The object name is invalid */ int NT_STATUS_OBJECT_NAME_INVALID = 0xC0000033; /** The object was not found */ int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034; /** The object name already exists */ int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035; /** The port is disconnected */ int NT_STATUS_PORT_DISCONNECTED = 0xC0000037; /** The object path is invalid */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 13.2K bytes - Click Count (0) -
cmd/admin-heal-ops.go
// argument returns if a heal sequence actually exists. func (ahs *allHealState) getHealSequence(path string) (h *healSequence, exists bool) { ahs.RLock() defer ahs.RUnlock() h, exists = ahs.healSeqMap[path] return h, exists } func (ahs *allHealState) stopHealSequence(path string) ([]byte, APIError) { var hsp madmin.HealStopSuccess he, exists := ahs.getHealSequence(path) if !exists { hsp = madmin.HealStopSuccess{
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 25.4K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java
ArtifactRepository repo = createStringRepo(); assertThrows(ResourceDoesNotExistException.class, () -> wagonManager.getArtifact(artifact, repo, null, false)); assertFalse(artifact.getFile().exists()); } @Test void testGetMissingJarForced() throws TransferFailedException, UnsupportedProtocolException, IOException {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.9K bytes - Click Count (0)