Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 108 for needMin (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	IgnoreChangesAndAdditions bool
    	// IgnoreDeletions indicates if we keep the deletions in the patch.
    	IgnoreDeletions bool
    	// We introduce a new value retainKeys for patchStrategy.
    	// It indicates that all fields needing to be preserved must be
    	// present in the `retainKeys` list.
    	// And the fields that are present will be merged with live object.
    	// All the missing fields will be cleared when patching.
    	BuildRetainKeysDirective bool
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		t.Helper()
    		retry.UntilSuccessOrFail(t, func() error {
    			controller.pods.RLock()
    			defer controller.pods.RUnlock()
    			if len(controller.pods.needResync) != expected {
    				return fmt.Errorf("expected %d pods needing resync, got %d", expected, len(controller.pods.needResync))
    			}
    			return nil
    		}, retry.Timeout(time.Second))
    	}
    
    	// standard ordering
    	addService("svc")
    	addPod("pod1", "172.0.1.1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    			return res, osErrToFileErr(err)
    		}
    		diskHealthCheckOK(ctx, err)
    	}
    
    	// If we have oldDataDir then we must preserve current xl.meta
    	// as backup, in-case needing renames().
    	if res.OldDataDir != "" {
    		if contextCanceled(ctx) {
    			return res, ctx.Err()
    		}
    
    		// preserve current xl.meta inside the oldDataDir.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. pkg/kubelet/pod_workers.go

    	for uid, status := range p.podSyncStatuses {
    		// We retain the worker history of any pod that is still desired according to
    		// its UID. However, there are two scenarios during a sync that result in us
    		// needing to purge the history:
    		//
    		// 1. The pod is no longer desired (the local version is orphaned)
    		// 2. The pod received a kill update and then a subsequent create, which means
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // If you are working in the directory containing the code imported as
    // "unicode" and want to run the tests for "unicode/utf8", you can type
    // "go test ./utf8" instead of needing to specify the full path.
    // Similarly, in the reverse situation, "go test .." will test "unicode" from
    // the "unicode/utf8" directory. Relative patterns are also allowed, like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    				rt = objabi.R_RISCV_PCREL_STYPE
    				addr = &p.To
    			} else {
    				break
    			}
    			if p.As == AAUIPC {
    				if p.Link == nil {
    					ctxt.Diag("AUIPC needing PC-relative reloc missing following instruction")
    					break
    				}
    				addr = &p.RestArgs[0].Addr
    			}
    			if addr.Sym == nil {
    				ctxt.Diag("PC-relative relocation missing symbol")
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    // needm is limited in what routines it can call. In particular
    // it can only call nosplit functions (textflag 7) and cannot
    // do any scheduling that requires an m.
    //
    // In order to avoid needing heavy lifting here, we adopt
    // the following strategy: there is a stack of available m's
    // that can be stolen. Using compare-and-swap
    // to pop from the stack has ABA races, so we simulate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		klog.V(3).InfoS("Resize is not feasible as request exceeds allocatable node resources", "pod", podCopy.Name)
    		return false, podCopy, v1.PodResizeStatusInfeasible
    	}
    
    	// Treat the existing pod needing resize as a new pod with desired resources seeking admit.
    	// If desired resources don't fit, pod continues to run with currently allocated resources.
    	activePods := kl.GetActivePods()
    	for _, p := range activePods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.15.md

    of a resource (for example, `apps/v1 deployments`) and be called when any other version of that resource is modified (for example `extensions/v1beta1 deployments`). This allows new versions of a resource to be handled by admission webhooks without needing to update every webhook to understand the new version. See the API documentation for the `matchPolicy: Equivalent` option in MutatingWebhookConfiguration and ValidatingWebhookConfiguration types. ([#78135](https://github.com/kubernetes/kubernetes/pull/78135),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      return absl::OkStatus();
    }
    
    Status CopyStackTraces(const Graph& from, Graph* to) {
      // Copy over the stack traces.
      // TODO(jpienaar): This really shouldn't be needed, copying the Graph above
      // and then needing these traversals is unfortunate.
      std::unordered_map<string, Node*> node_map = from.BuildNodeNameIndex();
      for (Node* node : to->nodes()) {
        if (const Node* old_node = node_map[node->name()]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top