Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Savary (0.23 sec)

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

        cacheHit.cacheResponse()
          .assertCode(200)
          .assertHeader("Donut", "a")
          .assertHeader("ETag", "v1")
          .assertRequestUrl(server.url("/"))
          .assertRequestHeader("Accept-Language") // No Vary on Accept-Language.
          .assertRequestHeader("Accept-Charset", "UTF-8") // Because of Vary on Accept-Charset.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 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

      }
    
      @Test
      fun varyMultipleFieldsWithMatch() {
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Cache-Control: max-age=60")
            .addHeader("Vary: Accept-Language, Accept-Charset")
            .addHeader("Vary: Accept-Encoding")
            .body("A")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .body("B")
            .build(),
        )
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        for (int i = 0; i < map.segments.length; i++) {
          assertEquals(segmentSize, map.segments[i].table.length());
        }
      }
    
      public void testSetMaximumSize() {
        // vary maximumSize wrt concurrencyLevel
    
        for (int maxSize = 1; maxSize < 100; maxSize++) {
          checkMaximumSize(1, 8, maxSize);
          checkMaximumSize(2, 8, maxSize);
          checkMaximumSize(4, 8, maxSize);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        for (int i = 0; i < map.segments.length; i++) {
          assertEquals(segmentSize, map.segments[i].table.length());
        }
      }
    
      public void testSetMaximumSize() {
        // vary maximumSize wrt concurrencyLevel
    
        for (int maxSize = 1; maxSize < 100; maxSize++) {
          checkMaximumSize(1, 8, maxSize);
          checkMaximumSize(2, 8, maxSize);
          checkMaximumSize(4, 8, maxSize);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  5. cmd/server_test.go

    		"Content-Disposition",
    		"Last-Modified",
    		"Content-Language",
    		"Cache-Control",
    		"Retry-After",
    		"X-Amz-Bucket-Region",
    		"Expires",
    		"X-Amz*",
    		"X-Amz*",
    		"*",
    	}
    	expectedMap.Set("Vary", "Origin")
    
    	req, _ := http.NewRequest(http.MethodOptions, s.endPoint, nil)
    	req.Header.Set("Origin", "http://foobar.com")
    	res, err := s.client.Do(req)
    	if err != nil {
    		c.Fatal(err)
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    which is the concrete type of the value assigned to the variable at run time
    (unless the value is the predeclared identifier <code>nil</code>,
    which has no type).
    The dynamic type may vary during execution but values stored in interface
    variables are always <a href="#Assignability">assignable</a>
    to the static type of the variable.
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    options can be configured like below: ```yaml meshConfig: accessLogFile: /dev/stdout ``` #### Revisions Control plane revisions allow deploying multiple versions of the control plane in the same cluster. This allows safe [canary upgrades](https://istio.io/latest/docs/setup/upgrade/canary/) ```yaml revision: my-revision-name ``` manifests/charts/istio-control/istio-discovery/values.yaml defaults: #.Values.pilot for discovery and mesh wide config ## Discovery Settings pilot: autoscaleEnabled: true autoscaleMin:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Some of the birds hurried off at once:  one old Magpie began
    wrapping itself up very carefully, remarking, `I really must be
    getting home; the night-air doesn't suit my throat!' and a Canary
    called out in a trembling voice to its children, `Come away, my
    dears!  It's high time you were all in bed!'  On various pretexts
    they all moved off, and Alice was soon left alone.
    
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Some of the birds hurried off at once:  one old Magpie began
    wrapping itself up very carefully, remarking, `I really must be
    getting home; the night-air doesn't suit my throat!' and a Canary
    called out in a trembling voice to its children, `Come away, my
    dears!  It's high time you were all in bed!'  On various pretexts
    they all moved off, and Alice was soon left alone.
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
Back to top