Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 279 for Miss (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    // It serializes the object and writes the result to given io.Writer trying
    // to first use the already cached result and falls back to a given encode
    // function in case of cache miss.
    // It assumes that for a given identifier, the encode function always encodes
    // each input object into the same output format.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/gc.go

    	for i := increment; i < maxTarget; i += increment {
    		target <- i
    
    		// Check to make sure the memory limit is maintained.
    		// We're just sampling here so if it transiently goes over we might miss it.
    		// The internal accounting is inconsistent anyway, so going over by a few
    		// pages is certainly possible. Just make sure we're within some bound.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  3. pkg/kube/kclient/client.go

    	// so the timing is quick.
    	// If we do this outside the lock, we can hit a subtle race condition where we have started processing items before they
    	// are registered (in n.registeredHandlers); this can cause the dynamic filtering to miss events
    	reg, err := n.informer.AddEventHandler(fh)
    	if err != nil {
    		// Should only happen if its already stopped. We should exit early.
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                if (name.startsWith(scriptSource.getClassName())) {
                    // Synchronized to avoid multiple threads attempting to define the same class on a lookup miss
                    synchronized (this) {
                        Class<?> cl = findLoadedClass(name);
                        if (cl == null) {
                            cl = findClass(name);
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	createPod("128.0.0.1", "new-pod")
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.1"), []types.NamespacedName{{Name: "new-pod", Namespace: "ns"}})
    
    	// A new pod is created with the same IP. This happens with hostNetwork, or maybe we miss an update somehow.
    	createPod("128.0.0.1", "another-pod")
    	assert.Equal(t, sets.New(c.pods.getPodKeys("128.0.0.1")...), sets.New(
    		types.NamespacedName{Name: "new-pod", Namespace: "ns"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/volume_binding.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
    - 16.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/branchelim.go

    		// Previously it would only be control-dependent on the condition, which is faster
    		// if the branch predicts well (or possibly even if it doesn't, if the load will
    		// be an expensive cache miss).
    		// See issue #26306.
    		return false
    	}
    	if arch == "loong64" {
    		// We should not generate conditional moves if neither of the arguments is constant zero,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds.go

    // and push skipping. This is because an secret potentially has a dependency on the same secret with or without
    // the -cacert suffix. By including this dependency we ensure we do not miss any updates.
    // This is important for cases where we have a compound secret. In this case, the `foo` secret may update,
    // but we need to push both the `foo` and `foo-cacert` resource name, or they will fall out of sync.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.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
    - 324.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

              "in": "query",
              "name": "continue",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top