Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 279 for Miss (0.22 sec)

  1. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "in": "query",
                "name": "continue",
                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller.go

    		// TODO: Please note that this will delete an endpoint when a
    		// service is deleted. However, if we're down at the time when
    		// the service is deleted, we will miss that deletion, so this
    		// doesn't completely solve the problem. See #6877.
    		err = e.client.CoreV1().Endpoints(namespace).Delete(ctx, name, metav1.DeleteOptions{})
    		if err != nil && !errors.IsNotFound(err) {
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ServiceManager.java

              stopwatch = Stopwatch.createStarted();
              startupTimers.put(service, stopwatch);
            }
            if (to.compareTo(RUNNING) >= 0 && stopwatch.isRunning()) {
              // N.B. if we miss the STARTING event then we may never record a startup time.
              stopwatch.stop();
              if (!(service instanceof NoOpService)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. src/runtime/proc_test.go

    }
    
    func big(stop chan int) int {
    	n := 0
    	for {
    		// delay so that gc is sure to have asked for a preemption
    		for i := 0; i < 1e9; i++ {
    			n++
    		}
    
    		// call bigframe, which used to miss the preemption in its prologue.
    		bigframe(stop)
    
    		// check if we've been asked to stop.
    		select {
    		case <-stop:
    			return n
    		}
    	}
    }
    
    func bigframe(stop chan int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                match.setAccessible(true);
                return Optional.of(match);
            }
    
            @Override
            public String toString() {
                return "Cache size: " + store.size() + " Hits: " + cacheHit + " Miss: " + cacheMiss + " Evicted: " + evict;
            }
        }
    
        private static class ReflectionMethodInvoker implements MethodInvoker {
            private final MethodInvocationCache lookupCache = new MethodInvocationCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    	if err != nil {
    		return ""
    	}
    	return buildid.HashToString(sum)
    }
    
    var (
    	counterCacheHit  = telemetry.NewCounter("go/buildcache/hit")
    	counterCacheMiss = telemetry.NewCounter("go/buildcache/miss")
    
    	onceIncStdlibRecompiled sync.Once
    	stdlibRecompiled        = telemetry.NewCounter("go/buildcache/stdlib-recompiled")
    )
    
    // useCache tries to satisfy the action a, which has action ID actionHash,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/cache/secretcache.go

    	// Try adding file watcher and if it fails start a retry loop.
    	if err := sc.tryAddFileWatcher(file, resourceName); err == nil {
    		return
    	}
    	// RetryWithContext file watcher as some times it might fail to add and we will miss change
    	// notifications on those files. For now, retry for ever till the watcher is added.
    	// TODO(ramaraochavali): Think about tieing these failures to liveness probe with a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	}
    
    	result, rv, index, err = func() ([]interface{}, uint64, string, error) {
    		// This isn't the place where we do "final filtering" - only some "prefiltering" is happening here. So the only
    		// requirement here is to NOT miss anything that should be returned. We can return as many non-matching items as we
    		// want - they will be filtered out later. The fact that we return less things is only further performance improvement.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    		if len(stats)%2 != 0 {
    			goto Miss
    		}
    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    	Miss:
    	}
    
    	// Validation failed. Compute a new description (in buf) and compiler ID (in h).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

        or newer.
    
        ```kotlin
        implementation("com.squareup.okio:okio:1.17.3")
        ```
    
     *  Fix: Don't miss cancels when sending HTTP/2 request headers.
     *  Fix: Don't miss whole operation timeouts when calls redirect.
     *  Fix: Don't leak connections if web sockets have malformed responses or if `onOpen()` throws.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top