- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 249 for 60000 (0.02 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/SettingsTest.kt
val a = Settings() a[Settings.HEADER_TABLE_SIZE] = 10000 a[Settings.MAX_HEADER_LIST_SIZE] = 20000 a[Settings.INITIAL_WINDOW_SIZE] = 30000 val b = Settings() b[Settings.MAX_HEADER_LIST_SIZE] = 40000 b[Settings.INITIAL_WINDOW_SIZE] = 50000 b[Settings.MAX_CONCURRENT_STREAMS] = 60000 a.merge(b) assertThat(a.headerTableSize).isEqualTo(10000) assertThat(a.getMaxHeaderListSize(-1)).isEqualTo(40000)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/DurableHandleContextTest.java
@Test public void testDurableHandleV2RequestWithGuid() { HandleGuid guid = new HandleGuid(); DurableHandleV2Request request = new DurableHandleV2Request(60000, false, guid); assertEquals(guid, request.getCreateGuid()); assertEquals(60000, request.getTimeoutMs()); assertFalse(request.isPersistent()); } @Test public void testDurableHandleReconnect() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
return "60000"; } @Override public String getIndexHealthTimeout() { return "10000"; } @Override public String getIndexIndexTimeout() { return "60000"; } @Override public String getIndexIndicesTimeout() { return "60000"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java
assertFalse(registration.isExpired(60000)); // Verify heartbeat was actually updated assertTrue(registration.getLastHeartbeat() > initialTime); } @Test void testExpiration() throws InterruptedException { // Registration should not be expired initially with long timeout assertFalse(registration.isExpired(60000)); // Wait a bit to ensure some time has passed
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/resources/fess_config.properties
-XX:G1HeapRegionSize=1m\n\ -XX:MaxGCPauseMillis=60000\n\ -XX:G1NewSizePercent=5\n\ -XX:G1MaxNewSizePercent=5\n\ -Djcifs.smb.client.responseTimeout=30000\n\ -Djcifs.smb.client.soTimeout=35000\n\ -Djcifs.smb.client.connTimeout=60000\n\ -Djcifs.smb.client.sessionTimeout=60000\n\ -Djcifs.smb1.smb.client.connTimeout=60000\n\ -Djcifs.smb1.smb.client.soTimeout=35000\n\ -Djcifs.smb1.smb.client.responseTimeout=30000\n\ -Dio.netty.noUnsafe=true\n\
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
tiatingHeapOccupancyPercent=45\n-XX:G1HeapRegionSize=1m\n-XX:MaxGCPauseMillis=60000\n-XX:G1NewSizePercent=5\n-XX:G1MaxNewSizePercent=5\n-Djcifs.smb.client.responseTimeout=30000\n-Djcifs.smb.client.soTimeout=35000\n-Djcifs.smb.client.connTimeout=60000\n-Djcifs.smb.client.sessionTimeout=60000\n-Djcifs.smb1.smb.client.connTimeout=60000\n-Djcifs.smb1.smb.client.soTimeout=35000\n-Djcifs.smb1.smb.client.responseTimeout=30000\n-Dio.netty.noUnsafe=true\n-Dio.netty.noKeySetOptimization=true\n-Dio.netty.r...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
int consumed = Math.min(19, reqPath.length()); data1 = DfsReferralDataImpl.fromReferral(mockReferral, reqPath, System.currentTimeMillis() + 10000, consumed); data2 = DfsReferralDataImpl.fromReferral(mockReferral, reqPath, System.currentTimeMillis() + 10000, consumed); } @Test @DisplayName("Should be equal for same values") void testEquals() {
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/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
when(mockData.getShare()).thenReturn("share"); when(mockData.getPath()).thenReturn("path"); when(mockData.getExpiration()).thenReturn(System.currentTimeMillis() + 60000); when(mockData.getPathConsumed()).thenReturn(0); when(mockData.getDomain()).thenReturn("DOMAIN"); return (DfsReferralDataImpl) base.combine(mockData); } @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
assertEquals(5, aggressivePolicy.getMaxAttempts()); assertEquals(500, aggressivePolicy.getInitialDelayMs()); assertEquals(60000, aggressivePolicy.getMaxDelayMs()); assertEquals(1.5, aggressivePolicy.getBackoffMultiplier()); assertTrue(aggressivePolicy.isExponentialBackoff()); // CONSERVATIVE policy
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
long now = System.currentTimeMillis(); long windowStart = currentWindowStart.get(); // Check if we need to reset the window (1 minute window) if (now - windowStart > 60000) { currentWindowStart.compareAndSet(windowStart, now); globalAttemptsInCurrentWindow.set(0); } int attempts = globalAttemptsInCurrentWindow.incrementAndGet();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0)