Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for hit (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/build-cache/cache-admin-hit-rate.png

    cache-admin-hit-rate.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

      }
    
      private fun testRequestMethod(
        requestMethod: String,
        expectCached: Boolean,
        withOverride: Boolean = false,
      ) {
        // 1. Seed the cache (potentially).
        // 2. Expect a cache hit or miss.
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Expires: " + formatDate(1, TimeUnit.HOURS))
            .addHeader("X-Response-ID: 1")
            .build(),
        )
        server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    						// but I couldn't find a way to reliably detect this.
    						Check: check.Error(),
    					},
    				})
    			}
    		}
    	}
    }
    
    // autoPassthroughCases tests that we cannot hit unexpected destinations when using AUTO_PASSTHROUGH
    func autoPassthroughCases(t TrafficContext) {
    	// We test the cross product of all Istio ALPNs (or no ALPN), all mTLS modes, and various backends
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    		{age: 2, name: "Bob"},
    		{age: 3, name: "Chris"},
    	}
    	if !slices.Equal(got, want) {
    		t.Errorf("mismatch.\n got: %#v\nwant: %#v", got, want)
    	}
    
    	// And verify that the final rows.Next() call, which hit EOF,
    	// also closed the rows connection.
    	if n := db.numFreeConns(); n != 1 {
    		t.Fatalf("free conns after query hitting EOF = %d; want 1", n)
    	}
    	if prepares := numPrepares(t, db) - prepares0; prepares != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    		if n, err := io.ReadFull(res.Body, buf); err != nil {
    			t.Errorf("%d. ReadFull = %v, %v", i, n, err)
    		}
    		// Note: no res.Body.Close call. It should work without it,
    		// since the flate.Reader's internal buffering will hit EOF
    		// and that should be sufficient.
    	}
    	a1, a2 := <-addr, <-addr
    	if a1 != a2 {
    		t.Fatalf("didn't reuse connection")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertCode(200)
          .assertBody("A")
        val request1ReceivedAt = System.currentTimeMillis()
        assertThat(server.takeRequest().headers["If-None-Match"]).isNull()
    
        // Hit that stored response. It's different, but Vary says it doesn't matter.
        Thread.sleep(10) // Make sure the timestamps are unique.
        val cacheHit =
          executeSynchronously(
            "/",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. src/encoding/json/testdata/code.json.gz

    ame":"overflow-focus-ring-expected.png","kids":[],"cl_weight":0.0034879223191203513,"touches":3,"min_t":1228781586,"max_t":1236205616,"mean_t":1231488662},{"name":"hit-test-overflow-controls-expected.checksum","kids":[],"cl_weight":0.00335917248005765,"touches":2,"min_t":1228781586,"max_t":1229478785,"mean_t":1229130185},{"name":"hit-test-overflow-controls-expected.png","kids":[],"cl_weight":0.00335917248005765,"touches":2,"min_t":1228781586,"max_t":1229478785,"mean_t":1229130185},{"name":"004-e...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
       * operates per-segment rather than globally for increased implementation simplicity. We expect
       * the cache hit rate to be similar to that of a global LRU algorithm.
       */
    
      // Constants
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
       * operates per-segment rather than globally for increased implementation simplicity. We expect
       * the cache hit rate to be similar to that of a global LRU algorithm.
       */
    
      // Constants
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    func TestPathologicalChain(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping generation of a long chain of certificates in short mode")
    	}
    
    	// Build a chain where all intermediates share the same subject, to hit the
    	// path building worst behavior.
    	roots, intermediates := NewCertPool(), NewCertPool()
    
    	parent, parentKey, err := generateCert("Root CA", true, nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top