Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 297 for Thresholds (0.3 sec)

  1. pkg/kubelet/cm/node_container_manager_linux_test.go

    	for idx, tc := range cpuMemCases {
    		nc := NodeConfig{
    			NodeAllocatableConfig: NodeAllocatableConfig{
    				KubeReserved:   tc.kubeReserved,
    				SystemReserved: tc.systemReserved,
    				HardEvictionThresholds: []evictionapi.Threshold{
    					{
    						Signal:   evictionapi.SignalMemoryAvailable,
    						Operator: evictionapi.OpLessThan,
    						Value:    tc.hardThreshold,
    					},
    				},
    			},
    		}
    		cm := &containerManagerImpl{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/testdata/testprog/gc.go

    	// physical page. Assume the worst case: a full physical page out of each
    	// allocation.
    	threshold := 0.1 + float64(pageSize)/float64(allocChunk)
    	if overuse <= threshold {
    		fmt.Println("OK")
    		return
    	}
    	// Physical memory utilization exceeds the threshold, so heap-growth scavenging
    	// did not operate as expected.
    	//
    	// In the context of this test, this indicates a large amount of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. 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)
Back to top