Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for getResponseTimeout (0.53 seconds)

  1. src/test/java/jcifs/smb/PreauthIntegrityTest.java

            when(context.getConfig()).thenReturn(config);
            when(config.isSigningEnforced()).thenReturn(false);
            when(config.getSessionTimeout()).thenReturn(30_000);
            when(config.getResponseTimeout()).thenReturn(5_000);
            when(address.getHostAddress()).thenReturn("127.0.0.1");
            when(address.getHostName()).thenReturn("testhost");
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  2. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertEquals(0, config.getLocalPort());
            assertEquals(SmbConstants.DEFAULT_CONN_TIMEOUT, config.getConnTimeout());
            assertEquals(SmbConstants.DEFAULT_RESPONSE_TIMEOUT, config.getResponseTimeout());
            assertEquals(SmbConstants.DEFAULT_SO_TIMEOUT, config.getSoTimeout());
            assertEquals(SmbConstants.DEFAULT_SO_TIMEOUT, config.getSessionTimeout());
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 20.6K bytes
    - Click Count (0)
Back to Top