Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for useCache (0.03 sec)

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

        public boolean getAllowUserInteraction() {
            return connection.getAllowUserInteraction();
        }
    
        @Override
        public void setUseCaches(final boolean useCaches) {
            connection.setUseCaches(useCaches);
            this.useCaches = useCaches;
        }
    
        @Override
        public boolean getUseCaches() {
            return connection.getUseCaches();
        }
    
        @Override
    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/main/java/jcifs/http/NtlmHttpURLConnection.java

        public boolean getAllowUserInteraction() {
            return this.connection.getAllowUserInteraction();
        }
    
        @Override
        public void setUseCaches(final boolean useCaches) {
            this.connection.setUseCaches(useCaches);
            this.useCaches = useCaches;
        }
    
        @Override
        public boolean getUseCaches() {
            return this.connection.getUseCaches();
        }
    
        @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)
  3. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

      // 2. unsuccessful (404, 500) fresh cached GET response
      // 3. successful network response
      // 4. successful stale cached GET response
      // 5. unsuccessful response
      @Test
      fun usesCache() {
        val cache = Cache(cacheFs, "cache".toPath(), (100 * 1024).toLong())
        val cachedClient = bootstrapClient.newBuilder().cache(cache).build()
        val cachedDns = buildLocalhost(cachedClient, false)
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 11.7K bytes
    - Viewed (0)
Back to top