Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for executionTime (0.17 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

            if (!local.canStore() && !remote.canStore()) {
                return;
            }
            tmp.withTempFile(((BuildCacheKeyInternal) key).getHashCodeInternal(), file -> {
                packExecutor.pack(file, key, entity, snapshots, executionTime);
                remote.maybeStore(key, file);
                local.maybeStore(key, file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

            }
        }
    
        private void store(CacheableWork work, BuildCacheKey cacheKey, ImmutableSortedMap<String, FileSystemSnapshot> outputFilesProducedByWork, Duration executionTime) {
            try {
                buildCache.store(cacheKey, work, outputFilesProducedByWork, executionTime);
                if (LOGGER.isInfoEnabled()) {
                    LOGGER.info("Stored cache entry for {} with cache key {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

        def delegateResult = Mock(AfterExecutionResult)
    
        def "loads from cache"() {
            def cachedOriginMetadata = Stub(OriginMetadata)
            cachedOriginMetadata.executionTime >> Duration.ofSeconds(1)
            def outputsFromCache = snapshotsOf("test": [])
            def localStateFile = file("local-state.txt") << "local state"
    
            when:
            def result = step.execute(work, context)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    func ObserveExecutionDuration(ctx context.Context, priorityLevel, flowSchema string, executionTime time.Duration) {
    	reqType := "regular"
    	if requestInfo, ok := apirequest.RequestInfoFrom(ctx); ok && requestInfo.Verb == "watch" {
    		reqType = requestInfo.Verb
    	}
    	apiserverRequestExecutionSeconds.WithContext(ctx).WithLabelValues(priorityLevel, flowSchema, reqType).Observe(executionTime.Seconds())
    }
    
    // ObserveWatchCount notes a sampling of a watch count
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top