Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 279 for Miss (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    	key := keyFunc(a.hashPool, auds, token)
    	if record, ok := a.cache.get(key); ok {
    		// Record cache hit
    		doneAuthenticating(true)
    		return record
    	}
    
    	// Record cache miss
    	doneBlocking := stats.blocking(ctx)
    	defer doneBlocking()
    	defer doneAuthenticating(false)
    
    	c := a.group.DoChan(key, func() (val interface{}, _ error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. cmd/data-scanner-metric.go

    func (p *scannerMetrics) getCurrentPaths() []string {
    	var res []string
    	prefix := globalLocalNodeName + "/"
    	p.currentPaths.Range(func(key, value interface{}) bool {
    		// We are a bit paranoid, but better miss an entry than crash.
    		name, ok := key.(string)
    		if !ok {
    			return true
    		}
    		obj, ok := value.(*currentPathTracker)
    		if !ok {
    			return true
    		}
    		strptr := (*string)(atomic.LoadPointer(obj.name))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/httproute.go

    	node *model.Proxy,
    	req *model.PushRequest,
    	routeNames []string,
    ) ([]*discovery.Resource, model.XdsLogDetails) {
    	var routeConfigurations model.Resources
    
    	efw := req.Push.EnvoyFilters(node)
    	hit, miss := 0, 0
    	switch node.Type {
    	case model.SidecarProxy, model.Waypoint:
    		vHostCache := make(map[int][]*route.VirtualHost)
    		// dependent envoyfilters' key, calculate in front once to prevent calc for each route.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2.go

    		// TODO: Since we don't set LastScheduleTime when not scheduling, we are going to keep noticing
    		// the miss every cycle.  In order to avoid sending multiple events, and to avoid processing
    		// the cj again and again, we could set a Status.LastMissedTime when we notice a miss.
    		// Then, when we call getRecentUnmetScheduleTimes, we can take max(creationTimestamp,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            if (isAccessibleConstant(access, value)) {
                // we need to compute a hash for a constant, which is based on the name of the constant + its value
                // otherwise we miss the case where a class defines several constants with the same value, or when
                // two values are switched
                constants.add((name + '|' + value).hashCode()); //non-private const
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    NOTE: This must be seen as a _performance optimization_: instead of having to do 2 network requests, one to get Gradle Module Metadata, then one to get the POM/Ivy file in case of a miss, Gradle will first look at the file which is most likely to be present, then only perform a 2nd request if the module was actually published with Gradle Module Metadata.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "in": "query",
                "name": "continue",
                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

            def receivedInput = null
            cache.load(key) { input ->
                receivedInput = input.text
            }
    
            then:
            receivedInput == "Data"
        }
    
        def "reports cache miss on 404"() {
            server.expectGetMissing("/cache/${key.hashCode}")
    
            when:
            def fromCache = cache.load(key) { input ->
                throw new RuntimeException("That should never be called")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    By default, Gradle performs _optimistic upgrades_, meaning that if version `1.1` and `1.3` are found in the graph, we resolve to the highest version, `1.3`.
    However, it is easy to miss that some dependencies are upgraded because of a transitive dependency.
    In the example above, if `1.1` was a version used in your build script and `1.3` a version brought transitively, you could use `1.3` without actually noticing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    	// - Which means that b.buffer is closed and cannot accept any new events anymore.
    	// - Because processEvents is called synchronously from the Run goroutine, the waitgroup has its final value.
    	// Hence wg.Wait will not miss any more outgoing batches.
    	b.wg.Wait()
    
    	b.delegateBackend.Shutdown()
    }
    
    // processIncomingEvents runs a loop that collects events from the buffer. When
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top