Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 279 for Miss (0.68 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. docs/features/caching.md

    containing a query.
    
     - CallStart
     - **CacheHit**
     - CallEnd
     
    ### Cache Miss
    
    Under a cache miss the normal request events are seen but an additional event shows the presence of the cache.
    Cache Miss will be typical if the item has not been read from the network, is uncacheable, or is past it's 
    lifetime based on Response cache headers.
    
     - CallStart 
    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. maven-model-builder/src/test/resources/poms/factory/complex.xml

                    </property>
                    <file>
                        <missing>simple.xml</missing>
                    </file>
                </activation>
                <properties>
                    <profile.miss>activated-2</profile.miss>
                </properties>
            </profile>
        </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue5470.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5470: exported data for inlining may miss
    // the type argument of make.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 07:01:43 UTC 2013
    - 273 bytes
    - Viewed (0)
  9. test/fixedbugs/issue5755.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5755: exported data for inlining may miss
    // named types when used in string conversions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 28 21:29:13 UTC 2013
    - 291 bytes
    - Viewed (0)
  10. 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)
Back to top