- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getReadTimeout (0.2 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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); } @OverrideCreated: 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.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);
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) -
src/test/java/org/codelibs/curl/io/IOIntegrationTest.java
req.timeout(3000, 5000); // onConnect runs AFTER timeout, so it can override req.onConnect((r, conn) -> { conn.setReadTimeout(9999); onConnectReadTimeout.set(conn.getReadTimeout()); }); // ## Act ## try (CurlResponse response = req.execute()) { // ## Assert ## // timeout() was applied first (3000, 5000)
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 44.1K bytes - Click Count (0)