Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for Thresholds (0.91 sec)

  1. pkg/kubelet/apis/config/types.go

    	MaxParallelImagePulls *int32
    	// Map of signal names to quantities that defines hard eviction thresholds. For example: {"memory.available": "300Mi"}.
    	// Some default signals are Linux only: nodefs.inodesFree
    	EvictionHard map[string]string
    	// Map of signal names to quantities that defines soft eviction thresholds.  For example: {"memory.available": "300Mi"}.
    	EvictionSoft map[string]string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/metrics.go

    	// so as to be roughly exponential but still round numbers in everyday units. This is to minimise the number
    	// of buckets while allowing accurate measurement of thresholds which might be used in SLOs
    	// e.g. x% of pods start up within 30 seconds, or 15 minutes, etc.
    	PodStartSLIDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TopKSelector.java

          // uncheckedCastNullableTToT is safe because bufferSize > 0.
          if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) > 0) {
            threshold = elem;
          }
          // uncheckedCastNullableTToT is safe because bufferSize > 0.
        } else if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) < 0) {
          // Otherwise, we can ignore elem; we've seen k better elements.
          buffer[bufferSize++] = elem;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TopKSelector.java

          // uncheckedCastNullableTToT is safe because bufferSize > 0.
          if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) > 0) {
            threshold = elem;
          }
          // uncheckedCastNullableTToT is safe because bufferSize > 0.
        } else if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) < 0) {
          // Otherwise, we can ignore elem; we've seen k better elements.
          buffer[bufferSize++] = elem;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    				{name: "c", phase: v1.PodFailed},
    			},
    			threshold:                     1,
    			deletedPodNames:               sets.New("a", "b"),
    			enablePodDisruptionConditions: true,
    		},
    		{
    			name: "threshold = 0, disables terminated pod deletion",
    			pods: []nameToPhase{
    				{name: "a", phase: v1.PodFailed},
    				{name: "b", phase: v1.PodSucceeded},
    			},
    			threshold: 0,
    			// threshold = 0 disables terminated pod deletion
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. istioctl/pkg/wait/wait.go

    				return fmt.Errorf("--for must be 'delete' or 'distribution', got: %s", forFlag)
    			}
    			if proxyFlag != "" && threshold != 1 {
    				printVerbosef(cmd, "both the proxy and threshold options were provided; the threshold option is being ignored.")
    				threshold = 1
    			}
    			var w *watcher
    			ctx, cancel := context.WithTimeout(context.Background(), timeout)
    			defer cancel()
    			if generation == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        primaryCredentials(PasswordCredentials){
            username = 'uname'
            password = 'hunter2'
        }
    
        nullCredentials(PasswordCredentials) { }
        numbers(Numbers){
            value = 5
            threshold = 0.8
        }
        unsetNumbers(Numbers) { }
    }
    
    """
            buildFile
            when:
            run "model"
    
            then:
            ModelReportOutput.from(output).hasNodeStructure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayMap.java

            }
        }
    
        @Override
        public Object clone() {
            final ArrayMap<K, V> copy = new ArrayMap<>();
            copy.threshold = threshold;
            copy.mapTable = Arrays.copyOf(mapTable, size);
            copy.listTable = Arrays.copyOf(listTable, size);
            copy.size = size;
            return copy;
        }
    
        /**
         * エントリのインデックスを返します。
         *
         * @param entry
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    		},
    		{
    			// Pod: gcr.io/4000 gcr.io/10
    
    			// Node1
    			// Image: gcr.io/4000:latest 2000MB
    			// Score: 100 (4000 * 1/2 >= 1000M * 2, max-threshold)
    
    			// Node2
    			// Image: gcr.io/10:latest 10MB
    			// Score: 0 (10M/2 < 23M, min-threshold)
    			pod:          &v1.Pod{Spec: testMinMax},
    			nodes:        []*v1.Node{makeImageNode("node1", node400030), makeImageNode("node2", node25010)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    	return m.recorder
    }
    
    // NewCgroupNotifier mocks base method.
    func (m *MockNotifierFactory) NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "NewCgroupNotifier", path, attribute, threshold)
    	ret0, _ := ret[0].(CgroupNotifier)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top