- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getConnectTimeout (0.91 seconds)
-
src/main/java/jcifs/http/NtlmHttpURLConnection.java
public void setDefaultUseCaches(final boolean defaultUseCaches) { this.connection.setDefaultUseCaches(defaultUseCaches); } @Override public int getConnectTimeout() { return this.connection.getConnectTimeout(); } @Override public void setConnectTimeout(final int timeout) { this.connection.setConnectTimeout(timeout); } @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 25.6K bytes - Click Count (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
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); Map<String, List<String>> properties = new HashMap<>();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 12.6K bytes - Click Count (0)