Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 322 for hit (0.23 sec)

  1. src/runtime/mpagealloc_test.go

    	if GOOS == "openbsd" && testing.Short() {
    		t.Skip("skipping because virtual memory is limited; see #36210")
    	}
    	type hit struct {
    		npages, base, scav uintptr
    	}
    	type test struct {
    		scav   map[ChunkIdx][]BitRange
    		before map[ChunkIdx][]BitRange
    		after  map[ChunkIdx][]BitRange
    		hits   []hit
    	}
    	tests := map[string]test{
    		"AllFree1": {
    			before: map[ChunkIdx][]BitRange{
    				BaseChunkIdx: {},
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                            docMap.put(Constants.SCORE, hit.getScore());
                        }
    
                        docMap.put(fessConfig.getIndexFieldId(), hit.getId());
                        docMap.put(fessConfig.getIndexFieldVersion(), hit.getVersion());
                        docMap.put(fessConfig.getIndexFieldSeqNo(), hit.getSeqNo());
                        docMap.put(fessConfig.getIndexFieldPrimaryTerm(), hit.getPrimaryTerm());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. .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)
  8. 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)
  9. pkg/ledger/ledger_test.go

    	return
    }
    
    func TestCollision(t *testing.T) {
    	hit := false
    	HashCollider := func(data ...[]byte) []byte {
    		if hit {
    			return []byte{
    				0xde,
    				0xad,
    				0xbe,
    				0xef,
    				0xde,
    				0xad,
    				0xbe,
    				0xef,
    			}
    		}
    		return MyHasher(data...)
    	}
    	l := smtLedger{tree: newSMT(HashCollider, nil, time.Minute)}
    	hit = true
    	_, err := l.Put("foo", "bar")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 16:12:59 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

                            SearchEngineUtil.scroll(index, hit -> {
                                try {
                                    writer.write("{\"index\":{\"_index\":\"" + index + "\",\"_id\":\""
                                            + StringEscapeUtils.escapeJson(hit.getId()) + "\"}}\n");
                                    writer.write(hit.getSourceAsString());
                                    writer.write("\n");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top