Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CacheStream (0.3 sec)

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

            connection.setIfModifiedSince(ifModifiedSince);
            connection.setUseCaches(useCaches);
        }
    
        private static class CacheStream extends OutputStream {
    
            private final OutputStream stream;
    
            private final OutputStream collector;
    
            public CacheStream(final OutputStream stream, final OutputStream collector) {
                this.stream = stream;
                this.collector = collector;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java

            // Assert
            assertEquals(HTTP_UNAUTHORIZED, responseCode);
            // Since we don't use NTLM, no reconnection should happen
        }
    
        /**
         * Test that getOutputStream() returns a CacheStream that wraps the underlying stream.
         * @throws IOException
         */
        @Test
        void testGetOutputStreamCachesData() throws IOException {
            // Arrange
            // Enable output mode
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            this.connection.setConnectTimeout(connectTimeout);
        }
    
        private static class CacheStream extends OutputStream {
    
            private final OutputStream stream;
    
            private final OutputStream collector;
    
            public CacheStream(final OutputStream stream, final OutputStream collector) {
                this.stream = stream;
                this.collector = collector;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top