Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 279 for Miss (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

            return cacheWritingResponse(cacheRequest, response).also {
              if (cacheResponse != null) {
                // This will log a conditional cache miss only.
                listener.cacheMiss(call)
              }
            }
          }
    
          if (HttpMethod.invalidatesCache(networkRequest.method)) {
            try {
              cache.remove(networkRequest)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/kubelet/container/cache.go

    }
    
    func (c *cache) get(id types.UID) *data {
    	d, ok := c.pods[id]
    	if !ok {
    		// Cache should store *all* pod/container information known by the
    		// container runtime. A cache miss indicates that there are no states
    		// regarding the pod last time we queried the container runtime.
    		// What this *really* means is that there are no visible pod/containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. pkg/dns/client/dns_test.go

    //   - 6-7ms via agent to upstream resolver (cache miss)
    //
    // Also useful for load testing is using dnsperf. This can be run with:
    //
    //	docker run -v $PWD:$PWD -w $PWD --network host quay.io/ssro/dnsperf dnsperf -p 15053 -d input -c 100 -l 30
    //
    // where `input` contains dns queries to run, such as `echo.default. A`
    func BenchmarkDNS(t *testing.B) {
    	s := initDNS(t, false)
    	t.Run("via-agent-cache-miss", func(b *testing.B) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            failedUnpackOp.details.cacheKey != null
            failedUnpackOp.result == null
            failedUnpackOp.failure =~ /java.util.zip.ZipException: Not in GZIP format/
        }
    
        def "records ops for miss then store"() {
            def localCache = new TestBuildCache(file("local-cache"))
            settingsFile << localCache.localCacheConfiguration()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. pkg/kube/namespace/filter.go

    		deselectedNamespaces := oldDiscoveryNamespaces.Difference(newDiscoveryNamespaces)
    		// Important: keep the lock while we call handlers. This allows handlers to ensure they do not miss events
    		// if they are processing the change and new events come in.
    		d.notifyHandlersLocked(selectedNamespaces, deselectedNamespaces)
    	}
    	// update filter state
    	d.discoveryNamespaces = newDiscoveryNamespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	//    only ResourceVersion field is set. On successful restart of watch from a
    	//    bookmark resourceVersion, client is guaranteed to not get repeat event
    	//    nor miss any events.
    	//  * If Type is Error: *api.Status is recommended; other types may make sense
    	//    depending on context.
    	Object runtime.Object
    }
    
    type emptyWatch chan Event
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  7. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

     *
     * Cache entries are loaded via {@literal GET} and stored via {@literal PUT} requests.
     * <p>
     * A successful {@literal GET} request must return a response with status {@literal 200} (cache hit) or {@literal 404} (cache miss),
     * with cache hit responses including the cache entry as the response body.
     * A successful {@literal PUT} request must return any 2xx response.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

            def id = new Id('Alicia')
    
            when:
            execute(id)
    
            then:
            result.length == 6
            0 * _
        }
    
        def "executes the rule on cache miss"() {
            withToUpperCaseRule()
            def id = new Id('Alicia')
    
            when:
            execute(id)
    
            then:
            1 * valueSnapshotter.snapshot(_) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    		// TODO(#110175): Ideally, it's supposed to register only NodeCreated, because NodeUpdated event never means to have any free ports for the Pod.
    		// But, we may miss NodeCreated event due to preCheck.
    		// See: https://github.com/kubernetes/kubernetes/issues/109437
    		// And, we can remove NodeUpdated event once https://github.com/kubernetes/kubernetes/issues/110175 is solved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    		// Add "ies" when ending with "y"
    		{Kind: "ImageRepository", Plural: "imagerepositories", Singular: "imagerepository"},
    		// Add "es" when ending with "s"
    		{Kind: "miss", Plural: "misses", Singular: "miss"},
    		// Add "s" otherwise
    		{Kind: "lowercase", Plural: "lowercases", Singular: "lowercase"},
    	}
    	for i, testCase := range testCases {
    		version := schema.GroupVersion{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
Back to top