- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 248 for Expires (0.04 sec)
-
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
try { // Clean up expired handles handles.entrySet().removeIf(entry -> { HandleInfo info = entry.getValue(); if (info.isExpired() && !info.isReconnecting()) { guidToHandle.remove(info.getCreateGuid()); removePersistedHandle(info); log.debug("Removed expired handle: {}", info.getPath());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
if (thread != null) { return thread.isInterrupted(); } return true; } /** * Returns the list of expired {@link TimeoutTask}. * * @return the list of expired {@link TimeoutTask} */ protected synchronized List<TimeoutTask> getExpiredTask() { final List<TimeoutTask> expiredTask = new ArrayList<>();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 7.8K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
Files.newInputStream(handleFile))) { HandleInfo info = (HandleInfo) ois.readObject(); // Only load if not expired if (!info.isExpired()) { handles.put(info.path, info); guidToHandle.put(info.createGuid, info); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
cmd/bucket-lifecycle_test.go
restoreStatus restoreObjStatus ondisk bool }{ { // restore in progress restoreStatus: ongoingRestoreObj(), ondisk: false, }, { // restore completed but expired restoreStatus: completedRestoreObj(time.Now().Add(-time.Hour)), ondisk: false, }, { // restore completed restoreStatus: completedRestoreObj(time.Now().Add(time.Hour)),
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 31 09:57:57 UTC 2022 - 7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryExpiredException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.dict; /** * Exception thrown when a dictionary has expired and is no longer valid. * This runtime exception indicates that a dictionary file or dictionary data * has exceeded its lifetime and should be refreshed or reloaded. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
// Should still not be expired assertFalse(auth.isExpired()); // Wait for original TTL to pass Thread.sleep(600); // Should still not be expired because we reset assertFalse(auth.isExpired()); // Wait for the full TTL since reset Thread.sleep(500); // Now it should be expired assertTrue(auth.isExpired()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
long expire = System.currentTimeMillis() + 60000; int consumed = 20; DfsReferralDataImpl result = DfsReferralDataImpl.fromReferral(mockReferral, reqPath, expire, consumed); assertNotNull(result); assertEquals(600, result.getTtl()); assertEquals(0, result.getFlags()); assertEquals(expire, result.getExpiration());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TestLocking.java
do { delay = 2L; synchronized (t) { final long expire = t.ltime + t.delay; final long ctime = System.currentTimeMillis(); if (expire > ctime) { delay = expire - ctime; } } if (delay > 2) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
} public void test_getType_immutability() { // Test that getType returns the same value consistently String type = "ApiKey"; String message = "API key expired"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message); String firstCall = exception.getType(); String secondCall = exception.getType();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0)