Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 214 for Miss (0.03 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

    fun isMonitoredAsciidoctorTask() = false // No asciidoctor tasks are cacheable for now
    
    fun Project.isExpectedAsciidoctorCacheMiss() =
    // Expected cache-miss for asciidoctor task:
    // 1. CompileAll is the seed build for docs:distDocs
    // 2. BuildDistributions is the seed build for other asciidoctor tasks
    // 3. buildScanPerformance test, which doesn't depend on compileAll
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 05:49:29 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_cache.go

    }
    
    // cacheStats keeps track of cache usage stats.
    type cacheStats struct {
    	hits, miss int
    }
    
    func (c cacheStats) empty() bool {
    	return c.hits == 0 && c.miss == 0
    }
    
    func (c cacheStats) merge(other cacheStats) cacheStats {
    	return cacheStats{
    		hits: c.hits + other.hits,
    		miss: c.miss + other.miss,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            firstOutput.assertExists()
            secondOutput.assertExists()
            // first can be loaded from the cache
            result.assertTaskSkipped(first)
            // second cannot be loaded from the cache due to a cache miss
            result.assertTaskNotSkipped(second)
        }
    
        def "overlapping output directory with first, second then second, first"() {
            def (String first, TestFile firstOutput,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

     *
     * The cache key consists of the provided key and the rule. This means that if the implementation of the
     * rule changes, or that its configuration changes, then we will have a cache miss.
     *
     * @param <KEY> the primary key for the cache. This is an explicit input, whereas the rule is an implicit one.
     * @param <DETAILS> the publicly exposed type that a user would see. Typically component metadata details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto_test.go

    			hit := make(map[*profile.Mapping]bool)
    			miss := make(map[*profile.Mapping]bool)
    			for _, loc := range prof.Location {
    				if symbolized(loc) {
    					hit[loc.Mapping] = true
    				} else {
    					miss[loc.Mapping] = true
    				}
    			}
    			if len(miss) == 0 {
    				t.Log("no location with missing symbol info was sampled")
    			}
    
    			for _, m := range prof.Mapping {
    				if miss[m] && m.HasFunctions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    If you have tasks that are re-executing instead of loading their outputs from the cache, then it may point to a problem in your build.
    Techniques for debugging a cache miss are explained in the following section.
    
    == Helpful data for diagnosing a cache miss
    
    A cache miss happens when Gradle calculates a build cache key for a task which is different from any existing build cache key in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    			expectMatches:   true,
    			expectMatchKind: gvk("apps", "v1", "Deployment"),
    		},
    		{
    			name: "specific rules, match miss",
    			criteria: &v1.MatchResources{
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector:    &metav1.LabelSelector{},
    				ResourceRules: []v1.NamedRuleWithOperations{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheLocalLoadBuildOperationType.java

     */
    
    package org.gradle.caching.internal.operations;
    
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * A load operation from the local build cache.
     *
     * A load operation may HIT or MISS.
     * It may also fail.
     * Load operation results and failures are mutually exclusive.
     *
     * @since 8.6
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. build-logic/build.gradle.kts

    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
    }
    
    description = "Provides plugins that are used by Gradle subprojects"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    }
    
    val clean by tasks.registering {
        val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties")
        val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

            assertTrue(cache.asMap().containsKey(entry.getKey()));
            assertTrue(cache.asMap().containsValue(entry.getValue()));
            // this getUnchecked() call shouldn't be a cache miss; verified below
            assertEquals(entry.getValue(), cache.getUnchecked(entry.getKey()));
          }
          assertEquals(WARMUP_SIZE, cache.stats().missCount());
          checkValidState(cache);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top