- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for maxDate (0.04 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
.isEqualTo(MAX_DATE) assertThat(parseCookie(9223372036854773807L, url, "a=b; Max-Age=1")!!.expiresAt) .isEqualTo(MAX_DATE) assertThat(parseCookie(9223372036854773807L, url, "a=b; Max-Age=2")!!.expiresAt) .isEqualTo(MAX_DATE) assertThat(parseCookie(9223372036854773807L, url, "a=b; Max-Age=3")!!.expiresAt) .isEqualTo(MAX_DATE)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 24.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt
* will not be used and a network request will be made. * * @param maxAge a non-negative duration. This is stored and transmitted with [TimeUnit.SECONDS] * precision; finer precision will be lost. */ fun maxAge(maxAge: Duration) = apply { val maxAgeSeconds = maxAge.inWholeSeconds
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 10K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeTest.java
} @Test @DisplayName("Test with maximum data size") void testWithMaxDataSize() { // Given byte[] maxData = new byte[0xFFFF]; Arrays.fill(maxData, (byte) 0x55); transCallNamedPipe = new TransCallNamedPipe(mockConfig, TEST_PIPE_NAME, maxData, 0, maxData.length); byte[] dst = new byte[0x10000]; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
* @return the maximum cache age in milliseconds */ public long getMaxAge() { return maxAge; } /** * Sets the maximum age for cached data * @param maxAge the maximum cache age in milliseconds */ public void setMaxAge(long maxAge) { this.maxAge = maxAge; } /** * Gets the timestamp when this cache entry was created
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
} fun expiresAt(expiresAt: Long) = apply { var expiresAt = expiresAt if (expiresAt <= 0L) expiresAt = Long.MIN_VALUE if (expiresAt > MAX_DATE) expiresAt = MAX_DATE this.expiresAt = expiresAt this.persistent = true } /** * Set the domain pattern for this cookie. The cookie will match [domain] and all of its * subdomains.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
// Maximum practical length (avoid OutOfMemoryError) StringBuilder maxName = new StringBuilder(); for (int i = 0; i < 1000; i++) { maxName.append("0123456789"); } testTransformer.setName(maxName.toString()); assertEquals(10000, testTransformer.getName().length()); assertEquals(maxName.toString(), testTransformer.getName()); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
void testMaximumNameLength() { byte[] maxName = new byte[65536]; // 64KB Arrays.fill(maxName, (byte) 'M'); TestCreateContextRequest request = new TestCreateContextRequest(maxName); assertArrayEquals(maxName, request.getName()); assertTrue(request.size() > maxName.length); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
this.cleanupInterval = cleanupInterval; this.leakDetectionEnabled = enableLeakDetection; this.autoCleanupEnabled = enableAutoCleanup; // Restart cleanup task with new interval startCleanupTask(); log.info("ResourceManager configured: maxAge={} ms, cleanupInterval={} ms, leakDetection={}, autoCleanup={}", maxAge, cleanupInterval, enableLeakDetection, enableAutoCleanup);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
} /** * Sets the maximum age of the role information in seconds. * @param maxAge The maximum age of the role information in seconds. */ public void setMaxAge(final long maxAge) { this.maxAge = maxAge; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
@Override protected long getCurrentTime() { return System.currentTimeMillis(); } }; roleQueryHelper.maxAge = 60; // 1 minute Set<String> roleSet = new HashSet<>(); // Create timestamp that's 2 minutes old long expiredTimestamp = System.currentTimeMillis() / 1000 - 120;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.5K bytes - Viewed (0)