- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getUseCaches (0.44 seconds)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
public void setUseCaches(final boolean useCaches) { connection.setUseCaches(useCaches); this.useCaches = useCaches; } @Override public boolean getUseCaches() { return connection.getUseCaches(); } @Override public void setIfModifiedSince(final long ifModifiedSince) { connection.setIfModifiedSince(ifModifiedSince);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 22.1K bytes - Click Count (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
public void setUseCaches(final boolean useCaches) { this.connection.setUseCaches(useCaches); this.useCaches = useCaches; } @Override public boolean getUseCaches() { return this.connection.getUseCaches(); } @Override public void setIfModifiedSince(final long ifModifiedSince) { this.connection.setIfModifiedSince(ifModifiedSince);
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.getDoInput()).thenReturn(true); 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);
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)