Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for Thresholds (0.16 sec)

  1. pkg/controller/podgc/doc.go

    // PodGCController, that runs in the controller manager. If the number of pods
    // in terminated phases (right now either Failed or Succeeded) surpasses a
    // configurable threshold, the controller will delete pods in terminated state
    // until the system reaches the allowed threshold again. The PodGCController
    // prioritizes pods to delete by sorting by creation timestamp and deleting the
    // oldest objects first. The PodGCController will not delete non-terminated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/testFixtures/groovy/org/gradle/quality/integtest/fixtures/CodeNarcCoverage.groovy

            } else {
                return CURRENT_GROOVY_SUPPORTED
            }
        }
    
        private static List<String> versionsAboveInclusive(List<String> versionsToFilter, String threshold) {
            versionsToFilter.findAll { VersionNumber.parse(it) >= VersionNumber.parse(threshold) }.asImmutable()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 11:24:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/internal/bio/buf_mmap.go

    	}
    }
    
    func (r *Reader) sliceOS(length uint64) ([]byte, bool) {
    	// For small slices, don't bother with the overhead of a
    	// mapping, especially since we have no way to unmap it.
    	const threshold = 16 << 10
    	if length < threshold {
    		return nil, false
    	}
    
    	// Have we reached the mmap limit?
    	if atomic.AddInt32(&mmapLimit, -1) < 0 {
    		atomic.AddInt32(&mmapLimit, 1)
    		return nil, false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            private static final int THRESHOLD = 80;
            private Map xaxis;
            private String color;
    
            static BackgroundColor ofConfidence(List<Number> xy) {
                double index = xy.get(0).doubleValue();
                double confidencePercentage = xy.get(1).doubleValue();
    
                if (Math.abs(confidencePercentage) >= THRESHOLD) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java

         */
        public int getThreshold() {
            return 0;
        }
    
        /**
         * <b>Warning</b>: ignored.
         */
        public void setThreshold(int threshold) {}
    
        /**
         * <b>Warning</b>: ignored.
         */
        public void setThresholds(int threshold) {}
    
        /**
         * <b>Warning</b>: ignored (always return <code>0</code>).
         */
        public int getActiveLoggerCount() {
            return 0;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_s390x.go

    // vectorizedCastagnoli.
    func archUpdateCastagnoli(crc uint32, p []byte) uint32 {
    	if !hasVX {
    		panic("not available")
    	}
    	// Use vectorized function if data length is above threshold.
    	if len(p) >= vxMinLen {
    		aligned := len(p) & ^vxAlignMask
    		crc = vectorizedCastagnoli(crc, p[:aligned])
    		p = p[aligned:]
    	}
    	if len(p) == 0 {
    		return crc
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

        int chunk2 = dataSize - chunk1;
    
        // Write just enough to not trip the threshold
        if (chunk1 > 0) {
          write(out, data, 0, chunk1, singleByte);
          assertTrue(ByteSource.wrap(data).slice(0, chunk1).contentEquals(source));
        }
        File file = out.getFile();
        assertNull(file);
    
        // Write data to go over the threshold
        if (chunk2 > 0) {
          if (JAVA_IO_TMPDIR.value().equals("/sdcard")) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

        int chunk2 = dataSize - chunk1;
    
        // Write just enough to not trip the threshold
        if (chunk1 > 0) {
          write(out, data, 0, chunk1, singleByte);
          assertTrue(ByteSource.wrap(data).slice(0, chunk1).contentEquals(source));
        }
        File file = out.getFile();
        assertNull(file);
    
        // Write data to go over the threshold
        if (chunk2 > 0) {
          if (JAVA_IO_TMPDIR.value().equals("/sdcard")) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoCoverage.groovy

                    return filter(cutoff.value)
                }
            }
            return filter(JacocoVersion.SUPPORTS_JDK_8)
        }
    
        private static List<String> filter(JacocoVersion threshold) {
            ALL.findAll { new JacocoVersion(it) >= threshold }.asImmutable()
        }
    
        private static class JacocoVersion implements Comparable<JacocoVersion> {
            // Release notes: https://www.jacoco.org/jacoco/trunk/doc/changes.html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:50:44 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/pleg.go

    type PodLifeCycleEventType string
    
    type RelistDuration struct {
    	// The period for relisting.
    	RelistPeriod time.Duration
    	// The relisting threshold needs to be greater than the relisting period +
    	// the relisting time, which can vary significantly. Set a conservative
    	// threshold to avoid flipping between healthy and unhealthy.
    	RelistThreshold time.Duration
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top