Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 214 for Miss (0.53 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics_test.go

    			expectedValue: `
            # HELP apiserver_authentication_jwt_authenticator_latency_seconds [ALPHA] Latency of jwt authentication operations in seconds. This is the time spent authenticating a token for cache miss only (i.e. when the token is not found in the cache).
            # TYPE apiserver_authentication_jwt_authenticator_latency_seconds histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataContext.java

    class DefaultComponentMetadataContext implements ComponentMetadataContext {
    
        private final ComponentMetadataDetails details;
        // We keep this field for access from Groovy scripts, as we currently miss some public API: https://github.com/gradle/gradle/issues/12349
        private final ModuleComponentResolveMetadata metadata;
        private final MetadataDescriptorFactory descriptorFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/typed_xds_cache.go

    	xdsCacheMisses           = xdsCacheReads.With(typeTag.Value("miss"))
    	xdsCacheEvictionsOnClear = xdsCacheEvictions.With(typeTag.Value("clear"))
    	xdsCacheEvictionsOnSize  = xdsCacheEvictions.With(typeTag.Value("size"))
    )
    
    func hit() {
    	xdsCacheHits.Increment()
    }
    
    func miss() {
    	xdsCacheMisses.Increment()
    }
    
    func size(cs int) {
    	xdsCacheSize.Record(float64(cs))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteLoadBuildOperationType.java

     */
    
    package org.gradle.caching.internal.operations;
    
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * A load operation from a build cache.
     *
     * A load operation may HIT or MISS.
     * It may also fail.
     * Load operation results and failures are mutually exclusive.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer_test.go

    				},
    			},
    			backend: []result{
    				{
    					decision: authorizer.DecisionAllow,
    					reason:   "test reason",
    					error:    fmt.Errorf("test error"),
    				},
    			},
    		},
    		{
    			name: "miss due to different name",
    			calls: []invocation{
    				{
    					attributes: authorizer.AttributesRecord{Name: "alpha"},
    					expected: result{
    						decision: authorizer.DecisionAllow,
    						reason:   "test reason alpha",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/sync/map.go

    		m.mu.Lock()
    		// Avoid reporting a spurious miss if m.dirty got promoted while we were
    		// blocked on m.mu. (If further loads of the same key will not miss, it's
    		// not worth copying the dirty map for this key.)
    		read = m.loadReadOnly()
    		e, ok = read.m[key]
    		if !ok && read.amended {
    			e, ok = m.dirty[key]
    			// Regardless of whether the entry was present, record a miss: this key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

            };
        }
    
        /**
         * Copies the given resource to the test directory.
         */
        public void maybeCopy(String resource) {
            // Multi version tests append to the method name, making it miss the resources
            // Below is a dirty way to strip the added content
            if (resource.contains(" ")) {
                resource = resource.substring(0, resource.indexOf(' '));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics.go

    			Subsystem:      subsystem,
    			Name:           "jwt_authenticator_latency_seconds",
    			Help:           "Latency of jwt authentication operations in seconds. This is the time spent authenticating a token for cache miss only (i.e. when the token is not found in the cache).",
    			StabilityLevel: metrics.ALPHA,
    			// default histogram buckets with a 1ms starting point
    			Buckets: []float64{.001, .005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

         * @param gradleApiGroovy the Groovy system used by core Gradle API
         * @param antBuilderAdapterGroovy the Groovy system used by the Ant builder adapter
         * @param factory the factory to create a new class loader on cache miss
         * @param action the action to execute with the cached class loader
         */
        public void withCachedClassLoader(ClassPath libClasspath,
                                          GroovySystemLoader gradleApiGroovy,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. pkg/wasm/monitoring.go

    	)
    
    	wasmConfigConversionCount = monitoring.NewSum(
    		"wasm_config_conversion_count",
    		"number of Wasm config conversion count and results, including success, no remote load, marshal failure, remote fetch failure, miss remote fetch hint.",
    	)
    
    	wasmConfigConversionDuration = monitoring.NewDistribution(
    		"wasm_config_conversion_duration",
    		"Total time in milliseconds istio-agent spends on converting remote load in Wasm config.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top