Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 322 for hit (0.07 sec)

  1. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            def cacheKey = localMissLoadOp.details.cacheKey
            cacheKey != null
            def archiveSize = localCache.getCacheEntry(cacheKey.toString()).bytes.length
    
            !localMissLoadOp.result.hit
    
            packOp.details.cacheKey == cacheKey
    
            packOp.result.archiveSize == archiveSize
            packOp.result.archiveEntryCount == 5
    
            storeOp.details.cacheKey == cacheKey
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    When using the https://gradle.com/build-cache[Develocity build cache backend] you should pay close attention to the hit rate in the admin UI.
    A rise in the hit rate there probably indicates better usage by developers:
    
    [.screenshot]
    image::build-cache/cache-admin-hit-rate.png[build cache hit rate]
    
    == Analyzing performance in build scans
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessSpec.groovy

        def workerProcess = new DefaultWorkerProcess(1, TimeUnit.SECONDS, jvmMemoryStatus)
        def acceptor = Mock(ConnectionAcceptor)
        // Use a shorter wait time before callback is called, so that we don't hit the 1 sec connection timeout
        def op = concurrent.waitsForAsyncCallback().withWaitTime(200)
    
        def startsChildProcessAndBlocksUntilConnectionEstablished() {
            when:
            workerProcess.setExecHandle(execHandle)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 07:21:35 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. pkg/wasm/monitoring.go

    	marshalFailure      = "marshal_failure"
    	unmarshalFailure    = "unmarshal_failure"
    	fetchFailure        = "fetch_failure"
    	missRemoteFetchHint = "miss_remote_fetch_hint"
    )
    
    var (
    	hitTag    = monitoring.CreateLabel("hit")
    	resultTag = monitoring.CreateLabel("result")
    
    	wasmCacheEntries = monitoring.NewGauge(
    		"wasm_cache_entries",
    		"number of Wasm remote fetch cache entries.",
    	)
    
    	wasmCacheLookupCount = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                            SearchEngineUtil.scroll(index, hit -> {
                                try {
                                    writer.write("{\"index\":{\"_index\":\"" + hit.getIndex() + "\",\"_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
    - 25.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    		// later requests within the cache window don't hit the backend
    		{name: "alice cached request", attr: aliceAttr, allow: false, statusCode: 500, expectedErr: false, expectedAuthorized: true, expectedCalls: 0},
    
    		// a request with different attributes doesn't hit the cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

            if (hits.length > 0) {
                index = hits[0].getIndex();
            } else {
                index = SuggestConstants.EMPTY_STRING;
            }
    
            for (final SearchHit hit : hits) {
                final Map<String, Object> source = hit.getSourceAsMap();
                final String text = source.get(FieldNames.TEXT).toString();
                words.add(text);
    
                if (detail) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/source.html

              {{if .Instructions -}}
                {{/* instructions for this source line */ -}}
                <span class=asm>{{"" -}}
                {{range .Instructions -}}
                  {{/* separate when we hit a new basic block */ -}}
                  {{if .NewBlock -}}{{printf " %8s %28s\n" "" "⋮"}}{{end -}}
    
                  {{/* inlined calls leading to this instruction */ -}}
                  {{range .InlinedCalls -}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

                        SuggestUtil.deleteScrollContext(client, scrollId);
                        isFinished.set(true);
                    }
    
                    for (final SearchHit hit : hits) {
                        final Map<String, Object> source = hit.getSourceAsMap();
                        if (limitOfDocumentSize > 0) {
                            long size = 0;
                            for (final String field : supportedFields) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pkg/istio-agent/health/health_check.go

    			numFail = 0
    			// if we reached the threshold, mark the target as healthy
    			if numSuccess == w.config.SuccessThresh && lastState != lastStateHealthy {
    				healthCheckLog.Info("success threshold hit, marking as healthy")
    				callback(&ProbeEvent{Healthy: true})
    				numSuccess = 0
    				lastState = lastStateHealthy
    			}
    		} else {
    			healthCheckLog.Debugf("probe completed with unhealthy status: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top