Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for stabilize (0.42 sec)

  1. pkg/kubelet/eviction/eviction_manager.go

    }
    
    // Admit rejects a pod if its not safe to admit for node stability.
    func (m *managerImpl) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	m.RLock()
    	defer m.RUnlock()
    	if len(m.nodeConditions) == 0 {
    		return lifecycle.PodAdmitResult{Admit: true}
    	}
    	// Admit Critical pods even under resource pressure since they are required for system stability.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. src/slices/sort_test.go

    	SortStableFunc(data, intPairCmp)
    	if !IsSortedFunc(data, intPairCmp) {
    		t.Errorf("Stable shuffled sorted %d ints (order)", n)
    	}
    	if !data.inOrder(false) {
    		t.Errorf("Stable shuffled sorted %d ints (stability)", n)
    	}
    
    	// sorted reversed
    	for i := 0; i < len(data); i++ {
    		data[i].a = len(data) - i
    	}
    	data.initB()
    	SortStableFunc(data, intPairCmp)
    	if !IsSortedFunc(data, intPairCmp) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. docs/it/docs/index.md

    **Spoiler alert**: il tutorial - Guida Utente include:
    
    * Dichiarazione di **parameters** da altri posti diversi come: **headers**, **cookies**, **form fields** e **files**.
    * Come stabilire **vincoli di validazione** come `maximum_length` o `regex`.
    * Un sistema di **<abbr title="detto anche components, resources, providers, services, injectables">Dependency Injection</abbr>** facile da usare e molto potente.
    e potente.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/sort/sort_test.go

    	}
    
    	// already sorted
    	data.initB()
    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable shuffled sorted %d ints (order)", n)
    	}
    	if !data.inOrder() {
    		t.Errorf("Stable shuffled sorted %d ints (stability)", n)
    	}
    
    	// sorted reversed
    	for i := 0; i < len(data); i++ {
    		data[i].a = len(data) - i
    	}
    	data.initB()
    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable didn't sort %d ints", n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule.go

    			return c > 0 // smaller args come later
    		}
    	}
    	if c := x.Uses - y.Uses; c != 0 {
    		return c > 0 // smaller uses come later
    	}
    	// These comparisons are fairly arbitrary.
    	// The goal here is stability in the face
    	// of unrelated changes elsewhere in the compiler.
    	if c := x.AuxInt - y.AuxInt; c != 0 {
    		return c < 0
    	}
    	if cmp := x.Type.Compare(y.Type); cmp != types.CMPeq {
    		return cmp == types.CMPlt
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. cluster/gce/config-default.sh

    # Optional: Enable Metrics Server. Metrics Server should be enable everywhere,
    # since it's a critical component, but in the first release we need a way to disable
    # this in case of stability issues.
    # TODO(piosz) remove this option once Metrics Server became a stable thing.
    export ENABLE_METRICS_SERVER="${KUBE_ENABLE_METRICS_SERVER:-true}"
    
    # Optional: Metadata agent to setup as part of the cluster bring up:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// May only be set when `deprecated` is true.
    	// The default warning indicates this version is deprecated and recommends use
    	// of the newest served version of equal or greater stability, if one exists.
    	DeprecationWarning *string
    	// Schema describes the schema for CustomResource used in validation, pruning, and defaulting.
    	// Top-level and per-version schemas are mutually exclusive.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. cluster/gce/config-test.sh

    # Optional: Enable Metrics Server. Metrics Server should be enable everywhere,
    # since it's a critical component, but in the first release we need a way to disable
    # this in case of stability issues.
    # TODO(piosz) remove this option once Metrics Server became a stable thing.
    export ENABLE_METRICS_SERVER=${KUBE_ENABLE_METRICS_SERVER:-true}
    
    # Optional: Metadata agent to setup as part of the cluster bring up:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

             "resource-type input.");
      bool change = false;
      // Copy ID set because function `AddValueUniqueIDMapping` below is not
      // guaranteed to preserve pointer stability (see b/243813657).
      const llvm::SmallSet<int64_t, 8> id_set = operand_it->second;
      assert(operand != result);
      for (int64_t id : id_set)
        change = AddValueUniqueIDMapping(result, id) || change;
      return change;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/generated.proto

    // the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
    // it may be subject to name and representation changes in future releases, and clients should not
    // depend on its stability. It is primarily for internal use by controllers.
    message ControllerRevision {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top