Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 279 for Miss (0.55 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    		// As a common problematic scenario,
    		// when a node is added but not ready, NodeAdd event is filtered out by preCheck and doesn't arrive.
    		// In such cases, this plugin may miss some events that actually make pods schedulable.
    		// As a workaround, we add UpdateNodeTaint event to catch the case.
    		// We can remove UpdateNodeTaint when we remove the preCheck feature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_shim_test.go

    	_                          = flag.Bool("on-resume-expect-no-ech-name-override", false, "")
    	expectedServerName         = flag.String("expect-server-name", "", "")
    
    	expectSessionMiss = flag.Bool("expect-session-miss", false, "")
    
    	_                       = flag.Bool("enable-early-data", false, "")
    	_                       = flag.Bool("on-resume-expect-accept-early-data", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "in": "query",
              "name": "continue",
              "type": "string",
              "uniqueItems": true
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheStats.java

        return (totalLoadCount == 0) ? 0.0 : (double) loadExceptionCount / totalLoadCount;
      }
    
      /**
       * Returns the total number of nanoseconds the cache has spent loading new values. This can be
       * used to calculate the miss penalty. This value is increased every time {@code loadSuccessCount}
       * or {@code loadExceptionCount} is incremented.
       */
      @SuppressWarnings("GoodTime") // should return a java.time.Duration
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheStats.java

        return (totalLoadCount == 0) ? 0.0 : (double) loadExceptionCount / totalLoadCount;
      }
    
      /**
       * Returns the total number of nanoseconds the cache has spent loading new values. This can be
       * used to calculate the miss penalty. This value is increased every time {@code loadSuccessCount}
       * or {@code loadExceptionCount} is incremented.
       */
      @SuppressWarnings("GoodTime") // should return a java.time.Duration
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/utils.go

    	for t := schedule.Next(potentialEarliest); !t.After(now); t = schedule.Next(t) {
    		mostRecentTime = t
    	}
    
    	// An object might miss several starts. For example, if
    	// controller gets wedged on friday at 5:01pm when everyone has
    	// gone home, and someone comes in on tuesday AM and discovers
    	// the problem and restarts the controller, then all the hourly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/go/types/builtins_test.go

    	for _, call := range builtinCalls {
    		testBuiltinSignature(t, call.name, call.src, call.sig)
    		seen[call.name] = true
    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for %s", name)
    		}
    	}
    	for _, name := range Unsafe.Scope().Names() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/informers.go

    			// and skip the event.
    			//
    			// This isn't perfect (someone could manually annotate an unready pod,
    			// then install Istio, then the pod goes ready, and we'd miss capture) - but that
    			// seems vanishingly unlikely
    			wasReady := kube.CheckPodReadyOrComplete(oldPod)
    			isReady := kube.CheckPodReadyOrComplete(newPod)
    			if wasReady != nil && isReady != nil && isAnnotated {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__rbac.authorization.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
    - 352.2K bytes
    - Viewed (0)
  10. src/sync/map_bench_test.go

    		perG: func(b *testing.B, pb *testing.PB, i int, m mapInterface) {
    			for ; pb.Next(); i++ {
    				j := i % (hits + misses)
    				if j < hits {
    					if _, ok := m.LoadOrStore(j, i); !ok {
    						b.Fatalf("unexpected miss for %v", j)
    					}
    				} else {
    					if v, loaded := m.LoadOrStore(i, i); loaded {
    						b.Fatalf("failed to store %v: existing value %v", i, v)
    					}
    				}
    			}
    		},
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top