Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for hit (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy_test.go

    						Type:      v1.ServiceTypeClusterIP,
    						ClusterIP: "hit",
    						Ports: []v1.ServicePort{
    							{Name: "https", Port: 443, TargetPort: intstr.FromInt32(1443)},
    							{Port: 1234, TargetPort: intstr.FromInt32(1234)},
    						},
    					},
    				},
    			},
    			endpoints: matchingEndpoints,
    
    			clusterMode:  expectation{url: "https://hit:443"},
    			endpointMode: expectation{url: "https://127.0.0.1:1443"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/stats.go

    	)
    }
    
    const (
    	hitTag  = "hit"
    	missTag = "miss"
    
    	fetchFailedTag = "error"
    	fetchOkTag     = "ok"
    
    	fetchInFlightTag = "in_flight"
    	fetchBlockedTag  = "blocked"
    )
    
    type statsCollector struct{}
    
    var stats = statsCollector{}
    
    func (statsCollector) authenticating(ctx context.Context) func(hit bool) {
    	start := time.Now()
    	return func(hit bool) {
    		var tag string
    		if hit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 18:49:09 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteLoadBuildOperationType.java

             */
            String getCacheKey();
    
        }
    
        public interface Result {
    
            /**
             * Whether the load has been a hit.
             */
            boolean isHit();
    
            /**
             * The number of bytes of the loaded cache artifact if it was a hit.
             * Else undetermined.
             */
            long getArchiveSize();
    
        }
    
        private BuildCacheRemoteLoadBuildOperationType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

            final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
            return client.<SearchHit> scrollSearch(index, searchRequestBuilder -> true, (searchResponse, hit) -> hit,
                    hit -> callback.apply(hit));
        }
    
        public static String getXContentString(final ToXContent xContent, final MediaType mediaType) {
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheLocalLoadBuildOperationType.java

            String getCacheKey();
    
        }
    
        public interface Result {
    
            /**
             * Whether the load has been a hit.
             *
             * @since 8.6
             */
            boolean isHit();
    
            /**
             * The number of bytes of the cache artifact if it was a hit.
             * Else undetermined.
             *
             * @since 8.6
             */
            long getArchiveSize();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. docs/features/caching.md

     - CallStart 
     - **CacheMiss**
     - ProxySelectStart
     - ... Standard Events ...
     - CallEnd
            
    ### Conditional Cache Hit
     
    When cache flags require checking the cache results are still valid an early cacheConditionalHit event is
    received followed by a cache hit or miss.  Critically in the cache hit scenario the server won’t send the response body.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java

        return (int) Math.pow(a, 1.0 / concentration);
      }
    
      @AfterExperiment
      void tearDown() {
        double req = requests.get();
        double hit = req - misses.get();
    
        // Currently, this is going into /dev/null, but I'll fix that
        System.out.println("hit rate: " + hit / req);
      }
    
      // for proper distributions later:
      // import JSci.maths.statistics.ProbabilityDistribution;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

                    }
                    return option.setFetchSource(new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldLang() }, null);
                }, (builder, hit) -> {
                    try {
                        final Map<String, Object> doc = hit.getSourceAsMap();
                        final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class);
                        if (StringUtil.isNotBlank(url)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. .github/workflows/build-docs.yml

            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-docs.txt
          # Install MkDocs Material Insiders here just to put it in the cache for the rest of the steps
          - name: Install Material for MkDocs Insiders
            if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' ) && steps.cache.outputs.cache-hit != 'true'
            run: |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/runtime/histogram_test.go

    			}
    		}
    	}
    	c, ok := h.Count(-1, 0)
    	if ok {
    		t.Errorf("expected to hit underflow bucket: (%d, %d)", -1, 0)
    	}
    	if c != 1 {
    		t.Errorf("overflow bucket has count that is not 1: %d", c)
    	}
    
    	c, ok = h.Count(TimeHistNumBuckets+1, 0)
    	if ok {
    		t.Errorf("expected to hit overflow bucket: (%d, %d)", TimeHistNumBuckets+1, 0)
    	}
    	if c != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:01 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top