Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 279 for Miss (0.17 sec)

  1. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

    import org.gradle.launcher.exec.RunBuildBuildOperationType
    import java.net.InetAddress
    import java.net.URLEncoder
    
    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
        id("gradlebuild.module-identity")
    }
    
    val serverUrl = "https://ge.gradle.org"
    val gitCommitName = "gitCommitId"
    val tcBuildTypeName = "tcBuildType"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/evented.go

    	cachedPodStatus, err := e.cache.Get(podStatus.ID)
    	if err != nil {
    		klog.ErrorS(err, "Evented PLEG: Get cache", "podID", podStatus.ID)
    	}
    	// cache miss condition: The pod status object will have empty state if missed in cache
    	if len(cachedPodStatus.SandboxStatuses) < 1 {
    		sandboxState := getPodSandboxState(podStatus)
    		if sandboxState == kubecontainer.ContainerStateRunning {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

            } else {
                trackingDir = event.getFile().getParentFile().toPath().resolve(".tracking");
            }
    
            String baseName;
            String ext = missing ? ".miss" : ".dep";
            Path trackingFile = null;
    
            String indent = "";
            ArrayList<String> trackingData = new ArrayList<>();
    
            if (collectStepTrace == null && plugin != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

        private val buildLayout: BuildLayout,
        private val startParameter: StartParameterInternal,
        options: InternalOptions,
        private val modelParameters: BuildModelParameters
    ) {
    
        /**
         * On a CC miss, should we load the newly stored state in the same invocation?
         *
         * This provides a benefit of discarding a lot of state (e.g. project state) earlier in the build,
         * potentially reducing the memory consumption.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceErrorHandlingIntegrationTest.groovy

            then:
            output =~ /Could not load entry .* from remote build cache: Loading entry from '.+' response status 500: Server Error/
    
            and:
            requestCounter.get() == 4 // {MISS,STORE} * 2
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. internal/pubsub/pubsub.go

    	subs []*Sub[T]
    	sync.RWMutex
    }
    
    // Publish message to the subscribers.
    // Note that publish is always non-blocking send so that we don't block on slow receivers.
    // Hence receivers should use buffered channel so as not to miss the published events.
    func (ps *PubSub[T, M]) Publish(item T) {
    	ps.RLock()
    	defer ps.RUnlock()
    	for _, sub := range ps.subs {
    		if sub.types.Contains(Mask(item.Mask())) && (sub.filter == nil || sub.filter(item)) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 16:57:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/DependencyVerificationReportWriter.java

                state.maybeCompromised();
            } else {
                // should never happen, just to make sure we don't miss any new failure type
                throw new IllegalArgumentException("Unknown failure type: " + failure.getClass());
            }
            renderer.reportFailure(wrapper);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     * session available in the constructor, it will also be captured by the class as a property. This behavior is easy to miss and a high risk
     * for unintentional leakage. For example:
     *
     * ```kotlin
     * // DO NOT DO THIS
     * context(KaSession)
     * class Usage {
     *     fun foo() {
     *         // The `KaSession` is available here.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    		if tt.ExpectAllow != (err == nil) {
    			t.Errorf("%s: expected allowed=%v, but got err=%v", tt.Name, tt.ExpectAllow, err)
    		}
    
    		if tt.ExpectCacheMiss && *cacheMisses == 0 {
    			t.Errorf("%s: expected cache miss, but got no AuthenticationInfoResolver call", tt.Name)
    		}
    
    		if !tt.ExpectCacheMiss && *cacheMisses > 0 {
    			t.Errorf("%s: expected client to be cached, but got %d AuthenticationInfoResolver calls", tt.Name, *cacheMisses)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

            then:
            1 * loadMetadata.originMetadata >> cachedOriginMetadata
            1 * loadMetadata.resultingSnapshots >> outputsFromCache
    
            0 * _
        }
    
        def "executes work and stores in cache on cache miss"() {
            given:
            def execution = Mock(Execution)
    
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top