Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for Thresholds (0.18 sec)

  1. pkg/kubelet/eviction/threshold_notifier_linux.go

    // to receive notifications from the cgroup when the threshold is crossed in either direction.
    func NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	// cgroupv2 does not support monitoring cgroup memory thresholds using cgroup.event_control.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    	"fmt"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    // The two thresholds are used as bounds for the image score range. They correspond to a reasonable size range for
    // container images compressed and stored in registries; 90%ile of images on dockerhub drops into this range.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. docs/en/docs/fastapi-people.md

    Here I'm also highlighting contributions from sponsors.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/compress/flate/deflatefast.go

    // assembly implementation can fast-path some 16-bytes-at-a-time copies. They
    // aren't necessary in the pure Go implementation, as we don't use those same
    // optimizations, but using the same thresholds doesn't really hurt.
    const (
    	inputMargin            = 16 - 1
    	minNonLiteralBlockSize = 1 + 1 + inputMargin
    )
    
    type tableEntry struct {
    	val    uint32 // Value at destination
    	offset int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/memory_threshold_notifier_test.go

    	}
    	return &statsapi.Summary{
    		Node: statsapi.NodeStats{
    			Memory: &memoryStats,
    		},
    	}
    }
    
    func newTestMemoryThresholdNotifier(threshold evictionapi.Threshold, factory NotifierFactory, handler func(string)) *memoryThresholdNotifier {
    	return &memoryThresholdNotifier{
    		threshold:  threshold,
    		cgroupPath: testCgroupPath,
    		events:     make(chan struct{}),
    		factory:    factory,
    		handler:    handler,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. test/fixedbugs/issue29329.go

    	}
    }
    
    // A DouglasPeuckerSimplifier wraps the DouglasPeucker function.
    type DouglasPeuckerSimplifier struct {
    	Threshold float64
    }
    
    // DouglasPeucker creates a new DouglasPeuckerSimplifier.
    func DouglasPeucker(threshold float64) *DouglasPeuckerSimplifier {
    	return &DouglasPeuckerSimplifier{
    		Threshold: threshold,
    	}
    }
    
    func (s *DouglasPeuckerSimplifier) LineString(ls LineString) LineString {
    	return lineString(s, ls)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top