- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 967 for Exists (0.05 sec)
-
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
*/ @Override @J2ObjCIncompatible @Nullable AtomicHelper tryMakeVarHandleAtomicHelper() { try { /* * We first use reflection to check whether VarHandle exists. If we instead just tried to * load our class directly (which would trigger non-reflective loading of VarHandle) from * within a `try` block, then an error might be thrown even before we enter the `try`
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
search(fessConfig.getLdapAdminRoleBaseDn(), fessConfig.getLdapAdminRoleFilter(role.getName()), null, adminEnv, result -> { if (!result.isEmpty()) { logger.info("{} exists in LDAP server.", role.getName()); } else { final String entryDN = fessConfig.getLdapAdminRoleSecurityPrincipal(role.getName()); final BasicAttributes entry = new BasicAttributes();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt
* Corresponds to `FLAG_FIN`. * @param flushHeaders true to force flush the response headers. This should be true unless the * response body exists and will be written immediately. */ @Throws(IOException::class) fun writeHeaders( responseHeaders: List<Header>, outFinished: Boolean, flushHeaders: Boolean, ) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 22.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
for (ClassPath.LocationInfo location : ClassPath.locationsFrom(ClassPathTest.class.getClassLoader())) { if (!location.file().isDirectory() && location.file().exists()) { return location.file(); } } throw new AssertionError("Failed to find a jar file"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/Graphs.java
} } return transitiveClosure.build(); } /** * Returns the set of nodes that are reachable from {@code node}. Specifically, it returns all * nodes {@code v} such that there exists a path (a sequence of adjacent outgoing edges) starting * at {@code node} and ending at {@code v}. This implementation includes {@code node} as the first * element in the result. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 01 00:26:14 UTC 2025 - 22.7K bytes - Viewed (0) -
guava/src/com/google/common/graph/Graphs.java
} } return transitiveClosure.build(); } /** * Returns the set of nodes that are reachable from {@code node}. Specifically, it returns all * nodes {@code v} such that there exists a path (a sequence of adjacent outgoing edges) starting * at {@code node} and ending at {@code v}. This implementation includes {@code node} as the first * element in the result. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 01 00:26:14 UTC 2025 - 23.3K bytes - Viewed (0) -
cmd/object-handlers.go
w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(objInfo.DeleteMarker)} } QueueReplicationHeal(ctx, bucket, objInfo, 0) // do an additional verification whether object exists when object is deletemarker and request // is from replication if opts.CheckDMReplicationReady { topts := opts topts.VersionID = "" goi, gerr := getObjectInfo(ctx, bucket, object, topts)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 120.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
* @throws PluginException if the artifact does not exist or deletion fails */ public void deleteInstalledArtifact(final Artifact artifact) { final String fileName = artifact.getFileName(); final Path jarPath = Paths.get(ResourceUtil.getPluginPath().toString(), fileName); if (!Files.exists(jarPath)) { throw new PluginException(fileName + " does not exist."); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
suggestJob = new SuggestJob(); } @Override public void tearDown() throws Exception { // Clean up temp directory if (tempDir != null && tempDir.exists()) { deleteDirectory(tempDir); } super.tearDown(); } private void createRequiredDirectories() { // Create necessary directories for SuggestJob execution
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K 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 Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 45.5K bytes - Viewed (0)