- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 158 for removePod (0.07 sec)
-
android/guava/src/com/google/common/collect/LinkedListMultimap.java
/** * Removes the specified node from the linked list. This method is only intended to be used from * the {@code Iterator} classes. See also {@link LinkedListMultimap#removeAllNodes(Object)}. */ private void removeNode(Node<K, V> node) { if (node.previous != null) { node.previous.next = node.next; } else { // node was head head = node.next; } if (node.next != null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
assertFalse(keyManager.hasSessionKey(sessionId + ".v2"), "Version 2 should be removed"); assertFalse(keyManager.hasSessionKey(sessionId + ".v1"), "Version 1 should be removed"); assertFalse(keyManager.hasSessionKey(sessionId + ".v0"), "Version 0 should be removed"); } @Test public void testKeyAge() throws InterruptedException { String sessionId = "age-test";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
guava/src/com/google/common/graph/Network.java
* this graph. * * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}. * * <p>If {@code node} is removed from the network after this method is called, the {@code Set} * {@code view} returned by this method will be invalidated, and will throw {@code * IllegalStateException} if it is accessed in any way, with the following exceptions:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:03:02 UTC 2025 - 22.5K bytes - Viewed (0) -
doc/godebug.md
This setting is available in Go 1.21.12, Go 1.22.5, Go 1.23, and later. There is no plan to remove this setting. ### Go 1.18 Go 1.18 removed support for SHA1 in most X.509 certificates, controlled by the [`x509sha1` setting](/pkg/crypto/x509#InsecureAlgorithmError). This setting was removed in Go 1.24. ### Go 1.10 Go 1.10 changed how build caching worked and added test caching, along
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jul 08 18:30:38 UTC 2025 - 22.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
validateKey(key) val entry = lruEntries[key] ?: return false val removed = removeEntry(entry) if (removed && size <= maxSize) mostRecentTrimFailed = false return removed } @Throws(IOException::class) internal fun removeEntry(entry: Entry): Boolean { // If we can't delete files that are still open, mark this entry as a zombie so its files will // be deleted when those files are closed.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 34.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
handles.remove(path); guidToHandle.remove(info.getCreateGuid()); removePersistedHandle(info); log.warn("Reconnection failed, removed handle for: {}", path); } } } finally { lock.writeLock().unlock(); } } /** * Release a handle
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
return this; } /** * Sets the flag indicating whether duplicate terms should be removed. * * @param duplicateTermRemoved true if duplicate terms should be removed, false otherwise * @return the current instance of {@link TextNormalizeContext} */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
try { Thread.sleep(10); } catch (InterruptedException e) { // Ignore } // When lease is lost, cache entry should be removed when(baseLeaseManager.getLease(leaseKey)).thenReturn(null); assertNull(directoryLeaseManager.getCacheEntry(directoryPath)); } @Test public void testCanCacheDirectoryListing() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
* The time of day information. */ public TimeOfDayInfo info; /** * Constructs a RemoteTOD request. * @param servername the server name * @param info the time of day information container */ public RemoteTOD(final String servername, final TimeOfDayInfo info) { this.servername = servername; this.info = info; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
FileNotifyInformation addedImpl = createImplementation(FileNotifyInformation.FILE_ACTION_ADDED, "added.txt"); FileNotifyInformation removedImpl = createImplementation(FileNotifyInformation.FILE_ACTION_REMOVED, "removed.txt"); FileNotifyInformation modifiedImpl = createImplementation(FileNotifyInformation.FILE_ACTION_MODIFIED, "modified.txt"); // Verify each implementation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)