Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for store (0.15 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

                "Accept-Charset",
              ),
            body = "A",
          ),
        )
        client =
          client.newBuilder()
            .cache(cache)
            .build()
    
        // Store a response in the cache.
        val url = server.url("/")
        val request1SentAt = System.currentTimeMillis()
        executeSynchronously("/", "Accept-Language", "fr-CA", "Accept-Charset", "UTF-8")
          .assertCode(200)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

            .addHeader("Cache-Control: no-store")
            .build(),
        )
      }
    
      @Test
      fun cacheControlNoStoreAndExpirationDateInTheFuture() {
        assertNotCached(
          MockResponse.Builder()
            .addHeader("Last-Modified: " + formatDate(-2, TimeUnit.HOURS))
            .addHeader("Expires: " + formatDate(1, TimeUnit.HOURS))
            .addHeader("Cache-Control: no-store")
            .build(),
        )
      }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    myspreadshop.se
    myspreadshop.co.uk
    
    // Standard Library : https://stdlib.com
    // Submitted by Jacob Lee <******@****.***>
    api.stdlib.com
    
    // Storj Labs Inc. : https://storj.io/
    // Submitted by Philip Hutchins <hostmaster@storj.io>
    storj.farm
    
    // Studenten Net Twente : http://www.snt.utwente.nl/
    // Submitted by Silke Hofstra <******@****.***>
    utwente.io
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top