Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 297 for Thresholds (0.14 sec)

  1. maven-slf4j-wrapper/src/main/java/org/apache/maven/logwrapper/LogLevelRecorder.java

        public LogLevelRecorder(String threshold) {
            logThreshold = determineThresholdLevel(threshold);
        }
    
        private Level determineThresholdLevel(String input) {
            final Level result = ACCEPTED_LEVELS.get(input);
            if (result == null) {
                String message = String.format(
                        "%s is not a valid log severity threshold. Valid severities are WARN/WARNING and ERROR.", input);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. releasenotes/notes/46073.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
      **Added** `--output-threshold` flag in `istioctl experimental precheck` to control message output threshold.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 15:34:39 UTC 2023
    - 277 bytes
    - Viewed (0)
  3. tests/integration/pilot/mirror_test.go

    				absent:     true,
    				percentage: 100.0,
    				threshold:  0.0,
    			},
    			{
    				name:       "mirror-50",
    				percentage: 50.0,
    				threshold:  10.0,
    			},
    			{
    				name:       "mirror-10",
    				percentage: 10.0,
    				threshold:  5.0,
    			},
    			{
    				name:       "mirror-0",
    				percentage: 0.0,
    				threshold:  0.0,
    			},
    		},
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategyTest.groovy

        private static final long ONE_GIG = 1024 * 1024 * 1024
        private static final long MAX_MEMORY = 16 * ONE_GIG
        private final OsMemoryStatus mockMemoryStatus = Mock(OsMemoryStatus)
    
        def "minimum threshold is enforced"() {
            given:
            def expirationStrategy = new LowMemoryDaemonExpirationStrategy(0)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/api/types.go

    	Percentage float32
    }
    
    // Threshold defines a metric for when eviction should occur.
    type Threshold struct {
    	// Signal defines the entity that was measured.
    	Signal Signal
    	// Operator represents a relationship of a signal to a value.
    	Operator ThresholdOperator
    	// Value is the threshold the resource is evaluated against.
    	Value ThresholdValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	fs.Int32Var(&o.LargeClusterSizeThreshold, "large-cluster-size-threshold", 50, fmt.Sprintf("Number of nodes from which %s treats the cluster as large for the eviction logic purposes. --secondary-node-eviction-rate is implicitly overridden to 0 for clusters this size or smaller. Notice: If nodes reside in multiple zones, this threshold will be considered as zone node size threshold for each zone to determine node eviction rate independently.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/internal/zstd/fse.go

    			continue
    		}
    
    		max := (2*threshold - 1) - remaining
    		var count int
    		if int(br.bits&uint32(threshold-1)) < max {
    			// A small value.
    			count = int(br.bits & uint32((threshold - 1)))
    			br.bits >>= bitsNeeded - 1
    			br.cnt -= uint32(bitsNeeded - 1)
    		} else {
    			// A large value.
    			count = int(br.bits & uint32((2*threshold - 1)))
    			if count >= threshold {
    				count -= max
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top