- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 562 for noclear (0.07 sec)
-
src/main/java/jcifs/netbios/NameServiceClientImpl.java
*/ if (this.socket != null) { this.socket.close(); this.socket = null; } this.thread = null; this.responseTable.clear(); } } @Override public void run() { try { while (this.thread == Thread.currentThread()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableCollection.java
* * @throws UnsupportedOperationException always * @deprecated Unsupported operation. */ @Deprecated @Override @DoNotCall("Always throws UnsupportedOperationException") public final void clear() { throw new UnsupportedOperationException(); } /** * Returns an {@code ImmutableList} containing the same elements, in the same order, as this * collection. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
} private Map<String, Object> getContextMap() { HashMap<String, Object> map = mapPool.poll(); if (map == null) { map = new HashMap<>(); } else { map.clear(); } return map; } private void returnContextMap(Map<String, Object> map) { if (map instanceof HashMap && map.size() < 20) { // Avoid keeping very large maps
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
return OptionalThing.empty(); } }; } }; envMap.clear(); systemHelper.init(); systemHelper.addShutdownHook(() -> {}); ComponentUtil.register(systemHelper, "systemHelper"); } public void test_getUsername() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/RealWebSocket.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 21.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multimap.java
*/ @CanIgnoreReturnValue Collection<V> removeAll(@CompatibleWith("K") @Nullable Object key); /** Removes all key-value pairs from the multimap, leaving it {@linkplain #isEmpty empty}. */ void clear(); // Views /** * Returns a view collection of the values associated with {@code key} in this multimap, if any.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 15.7K bytes - Viewed (0) -
api/go1.21.txt
pkg net, method (*ListenConfig) MultipathTCP() bool #56539 pkg net, method (*ListenConfig) SetMultipathTCP(bool) #56539 pkg net, method (*TCPConn) MultipathTCP() (bool, error) #59166 pkg reflect, method (Value) Clear() #55002 pkg reflect, type SliceHeader //deprecated #56906 pkg reflect, type StringHeader //deprecated #56906 pkg regexp, method (*Regexp) MarshalText() ([]uint8, error) #46159
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Aug 07 09:39:17 UTC 2023 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
indexingHelper.deleteDocumentByUrl(searchEngineClient, url); } if (logger.isDebugEnabled()) { logger.debug("Deleted {}", deleteUrlList); } deleteUrlList.clear(); } @Override public long getDocumentSize() { return indexUpdateCallback.getDocumentSize(); } @Override public long getExecuteTime() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} } private static class TestIndexingHelper extends IndexingHelper { @Override public void sendDocuments(SearchEngineClient client, DocList docList) { docList.clear(); } @Override public long calculateDocumentSize(Map<String, Object> map) { return 100L; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0)