Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getReadTimeout (0.05 sec)

  1. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
        @Override
        public void setConnectTimeout(final int timeout) {
            this.connection.setConnectTimeout(timeout);
        }
    
        @Override
        public int getReadTimeout() {
            return this.connection.getReadTimeout();
        }
    
        @Override
        public void setReadTimeout(final int timeout) {
            this.connection.setReadTimeout(timeout);
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java

            when(mockConnection.getDoOutput()).thenReturn(true);
            when(mockConnection.getIfModifiedSince()).thenReturn(12345L);
            when(mockConnection.getUseCaches()).thenReturn(false);
            when(mockConnection.getReadTimeout()).thenReturn(1000);
            when(mockConnection.getConnectTimeout()).thenReturn(2000);
            when(mockConnection.getInstanceFollowRedirects()).thenReturn(true);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top