Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for Thresholds (0.31 sec)

  1. 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)
  2. 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)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/DefaultPerformanceFlakinessDataProvider.java

            return SMALL_FLAKY_REGRESSION;
        }
    
        private boolean isBigRegression(PerformanceExperiment experiment, double regressionPercentage) {
            BigDecimal threshold = getFailureThreshold(experiment);
            return threshold != null && regressionPercentage / 100 > threshold.doubleValue();
        }
    
        private boolean isStableScenario(PerformanceExperiment experiment) {
            BigDecimal flakinessRate = getFlakinessRate(experiment);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

    import java.util.concurrent.locks.ReentrantLock;
    
    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.GRACEFUL_EXPIRE;
    
    /**
     * An expiry strategy which only triggers when system memory falls below a threshold.
     */
    public class LowMemoryDaemonExpirationStrategy implements DaemonExpirationStrategy, OsMemoryStatusListener {
        private ReentrantLock lock = new ReentrantLock();
        private OsMemoryStatus memoryStatus;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            }
    
            static FlakinessInfoTag createFailureThresholdTag(BigDecimal threshold) {
                return new FlakinessInfoTag(String.format("FAILURE-THRESHOLD(%.2f%%)", threshold.doubleValue() * 100), FAILURE_THRESHOLD_TITLE);
            }
    
            private FlakinessInfoTag(String name, String title) {
                this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/util/traffic/result.go

    	return float64(r.SuccessfulRequests) / float64(r.TotalRequests)
    }
    
    // CheckSuccessRate asserts that a minimum success threshold was met.
    func (r Result) CheckSuccessRate(t test.Failer, minimumPercent float64) {
    	if r.PercentSuccess() < minimumPercent {
    		t.Fatalf("Minimum success threshold, %f, was not met. %d/%d (%f) requests failed: %v",
    			minimumPercent, r.SuccessfulRequests, r.TotalRequests, r.PercentSuccess(), r.Error)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/object_count_tracker.go

    			return false, t.prune(pruneInterval)
    		}, stopCh)
    	klog.InfoS("StorageObjectCountTracker pruner is exiting")
    }
    
    func (t *objectCountTracker) prune(threshold time.Duration) error {
    	oldestLastUpdatedAtAllowed := t.clock.Now().Add(-threshold)
    
    	// lock for writing
    	t.lock.Lock()
    	defer t.lock.Unlock()
    
    	for groupResource, count := range t.counts {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 09:12:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. maven-slf4j-provider/src/test/java/org/apache/maven/slf4j/MavenLoggerFactoryTest.java

            assertFalse(logLevelRecorder.metThreshold());
    
            logger.warn("This should not hit the fail threshold");
            assertFalse(logLevelRecorder.metThreshold());
    
            logger.error("This should hit the fail threshold");
            assertTrue(logLevelRecorder.metThreshold());
    
            logger.warn("This should not reset the fail threshold");
            assertTrue(logLevelRecorder.metThreshold());
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

        protected static final String PREFIX = "curl4j-";
    
        protected static final String SUFFIX = ".tmp";
    
        protected boolean done = false;
    
        public ContentOutputStream(final int threshold, final File tmpDir) {
            super(threshold, PREFIX, SUFFIX, tmpDir);
        }
    
        @Override
        public File getFile() {
            done = true;
            return super.getFile();
        }
    
        @Override
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceFlakinessDataProvider.java

        /**
         * The failure threshold of flaky scenario, if a flaky scenario performance test's difference is higher than this value,
         * it will be recognized as a real failure.
         *
         * <pre>
         *  SELECT TESTID, TESTPROJECT, MAX(ABS((BASELINEMEDIAN-CURRENTMEDIAN)/BASELINEMEDIAN)) as THRESHOLD
         *  FROM TESTEXECUTION
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top