Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for negligible (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    "minDomains":         "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // MinDomains indicates a minimum number of eligible domains.
      // When the number of eligible domains with matching topology keys is less than minDomains,
      // Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed.
      // And when the number of eligible domains with matching topology keys equals or greater than minDomains,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            }
    
            public MappedProperty map(String propertyName, Callable<?> value) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public void ineligible(String propertyName) {
    
            }
    
            public <T> T getConventionValue(T actualValue, String propertyName) {
                if (actualValue instanceof String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

    "description": "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if err != nil {
    		return err
    	}
    	span.AddEvent("Listed items from cache", attribute.Int("count", len(objs)))
    	// store pointer of eligible objects,
    	// Why not directly put object in the items of listObj?
    	//   the elements in ListObject are Struct type, making slice will bring excessive memory consumption.
    	//   so we try to delay this action as much as possible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// MinDomains indicates a minimum number of eligible domains.
    	// When the number of eligible domains with matching topology keys is less than minDomains,
    	// Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed.
    	// And when the number of eligible domains with matching topology keys equals or greater than minDomains,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	statsSeq atomic.Uint32
    
    	// Timer heap.
    	timers timers
    
    	// maxStackScanDelta accumulates the amount of stack space held by
    	// live goroutines (i.e. those eligible for stack scanning).
    	// Flushed to gcController.maxStackScan once maxStackScanSlack
    	// or -maxStackScanSlack is reached.
    	maxStackScanDelta int64
    
    	// gc-time statistics about current goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	goroutineProfile.active = true
    	goroutineProfile.records = p
    	goroutineProfile.labels = labels
    	// The finalizer goroutine needs special handling because it can vary over
    	// time between being a user goroutine (eligible for this profile) and a
    	// system goroutine (to be excluded). Pick one before restarting the world.
    	if fing != nil {
    		fing.goroutineProfiled.Store(goroutineProfileSatisfied)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Struct podAnnotations = 11 [deprecated = true];
    
      // Pod anti-affinity label selector.
      //
      // Specify the pod anti-affinity that allows you to constrain which nodes
      // your pod is eligible to be scheduled based on labels on pods that are
      // already running on the node rather than based on labels on nodes.
      // There are currently two types of anti-affinity:
      //    "requiredDuringSchedulingIgnoredDuringExecution"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		}
    
    		if compDiff := cmp.Diff(scenario.eligibleNodes, eligibleNodes, cmp.Comparer(func(a, b sets.Set[string]) bool {
    			return reflect.DeepEqual(a, b)
    		})); compDiff != "" {
    			t.Errorf("Unexpected eligible nodes (-want +got):\n%s", compDiff)
    		}
    	}
    
    	for name, scenario := range scenarios {
    		t.Run(name, func(t *testing.T) { run(t, scenario) })
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top