Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 190 for 60000 (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            Map<String, String> infoMap = new HashMap<>();
            infoMap.put(Constants.CRAWLER_STATUS, Constants.TRUE);
            infoMap.put("CrawlerStartTime", "2024-01-01T10:00:00");
            infoMap.put("CrawlerEndTime", "2024-01-01T11:00:00");
    
            try {
                crawler.sendMail(infoMap);
            } catch (Exception e) {
                fail("Should not throw exception: " + e.getMessage());
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  5. docs/smb3-features/06-witness-protocol-design.md

        );
        
        assertNotNull(registration.getRegistrationId());
        assertEquals(WitnessRegistrationState.REGISTERING, registration.getState());
        assertFalse(registration.isExpired(60000));
        
        // Test sequence numbers
        long seq1 = registration.getNextSequenceNumber();
        long seq2 = registration.getNextSequenceNumber();
        assertEquals(seq1 + 1, seq2);
    }
    
    @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/OkHttpClientTest.kt

        assertThat(client.callTimeoutMillis).isEqualTo(0)
        assertThat(client.connectTimeoutMillis).isEqualTo(10000)
        assertThat(client.readTimeoutMillis).isEqualTo(10000)
        assertThat(client.writeTimeoutMillis).isEqualTo(10000)
        assertThat(client.pingIntervalMillis).isEqualTo(0)
        assertThat(client.webSocketCloseTimeout).isEqualTo(60_000)
      }
    
      @Test fun webSocketDefaults() {
        val client = clientTestRule.newClient()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java

        void setUp() {
            mockContext = mock(CIFSContext.class);
            mockConfig = mock(Configuration.class);
            when(mockContext.getConfig()).thenReturn(mockConfig);
            when(mockConfig.getLeaseTimeout()).thenReturn(30000);
            when(mockConfig.getMaxLeases()).thenReturn(1000);
            when(mockConfig.getLeaseBreakTimeout()).thenReturn(60);
            leaseManager = new LeaseManager(mockContext);
        }
    
        @AfterEach
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 00:16:17 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java

        out.writeBoolean(true);
        out.writeBoolean(false);
        out.writeByte(100);
        out.writeByte(-100);
        out.writeByte((byte) 200);
        out.writeChar('a');
        out.writeShort((short) -30000);
        out.writeShort((short) 50000);
        out.writeInt(0xCAFEBABE);
        out.writeLong(0xDEADBEEFCAFEBABEL);
        out.writeUTF("Herby Derby");
        out.writeFloat(Float.intBitsToFloat(0xCAFEBABE));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

      }
    
      public void testAsMap_containsValue() {
        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder().expireAfterWrite(20000, MILLISECONDS).ticker(fakeTicker).build();
    
        cache.put(654, 2675);
        fakeTicker.advance(10000, MILLISECONDS);
        cache.put(2456, 56);
        cache.put(2, 15);
    
        fakeTicker.advance(10001, MILLISECONDS);
    
        assertTrue(cache.asMap().containsValue(15));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

        }
    
        public void test_setCrawlerWaitMillis() {
            IntervalControlHelper helper = new IntervalControlHelper();
    
            // Test default wait time
            assertEquals(10000, helper.crawlerWaitMillis);
    
            // Test setting new wait time
            helper.setCrawlerWaitMillis(5000);
            assertEquals(5000, helper.crawlerWaitMillis);
    
            helper.setCrawlerWaitMillis(0);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top