- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 130 for 60000 (0.03 sec)
-
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/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/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) -
README.md
client.setMaxConnectionsPerRoute(20); // Per-host connections client.setConnectionTimeout(30000); // Connection timeout client.setSocketTimeout(60000); // Read timeout }); ``` ### Memory Management ```java // Configure memory usage crawler.crawlerContext.setMaxAccessCount(10000); // Limit crawled URLs crawler.crawlerContext.setMaxDepth(5); // Limit crawl depth
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
jcifs.smb.client.channelBindingPolicy=required # Directory leasing jcifs.smb.client.useDirectoryLeasing=true jcifs.smb.client.dirCacheTimeout=60000 # RDMA jcifs.smb.client.useRDMA=auto jcifs.smb.client.rdmaProvider=disni # Witness jcifs.smb.client.useWitness=true jcifs.smb.client.witnessNotificationTimeout=5000 ``` ## Risk Assessment ### Technical Risks
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
public void testConfigureKeyRotation() { // Test that configuration doesn't throw keyManager.configureKeyRotation(60000); // Test disabling rotation keyManager.configureKeyRotation(0); // Test reconfiguring keyManager.configureKeyRotation(30000); } @Test public void testConcurrentKeyOperations() throws InterruptedException { int threadCount = 10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt
settings1[Settings.HEADER_TABLE_SIZE] = 10000 settings1[Settings.INITIAL_WINDOW_SIZE] = 20000 settings1[Settings.MAX_FRAME_SIZE] = 30000 peer.sendFrame().settings(settings1) peer.acceptFrame() // ACK SETTINGS val settings2 = Settings() settings2[Settings.INITIAL_WINDOW_SIZE] = 40000 settings2[Settings.MAX_FRAME_SIZE] = 50000 settings2[Settings.MAX_CONCURRENT_STREAMS] = 60000
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 75.5K bytes - Viewed (0)