Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for Thresholds (0.74 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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