Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 297 for Thresholds (0.13 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

                }
            """
    
            expect:
            succeeds("check")
            // Issue #881:
            // Checkstyle violations are reported even when build passing due to error/warning thresholds
            output.contains("Checkstyle rule violations were found. See the report at:")
            output.contains("Checkstyle files with violations: 2")
            output.contains("Checkstyle violations by severity: [error:2]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/metrics.go

    	// so as to be roughly exponential but still round numbers in everyday units. This is to minimise the number
    	// of buckets while allowing accurate measurement of thresholds which might be used in SLOs
    	// e.g. x% of pods start up within 30 seconds, or 15 minutes, etc.
    	PodStartSLIDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. src/compress/flate/deflate_test.go

    			}
    		}
    	}
    	t.Logf("got %d bytes", len(out1))
    }
    
    // TestBestSpeed tests that round-tripping through deflate and then inflate
    // recovers the original input. The Write sizes are near the thresholds in the
    // compressor.encSpeed method (0, 16, 128), as well as near maxStoreBlockSize
    // (65535).
    func TestBestSpeed(t *testing.T) {
    	t.Parallel()
    	abc := make([]byte, 128)
    	for i := range abc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	}
    	evictionConfig := eviction.Config{
    		PressureTransitionPeriod: kubeCfg.EvictionPressureTransitionPeriod.Duration,
    		MaxPodGracePeriodSeconds: int64(kubeCfg.EvictionMaxPodGracePeriod),
    		Thresholds:               thresholds,
    		KernelMemcgNotification:  kernelMemcgNotification,
    		PodCgroupRoot:            kubeDeps.ContainerManager.GetPodCgroupRoot(),
    	}
    
    	var serviceLister corelisters.ServiceLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.2.md

         * Custom Metrics for Autoscaling (HorizontalPodAutoscaler API in the Autoscaling
    API group): The Horizontal Pod Autoscaling feature now supports custom metrics
    (Alpha), allowing you to specify application-level metrics and thresholds to
    trigger scaling up and down the number of pods in your application.
      * <strong>New GUI</strong> (dashboard) allows you to get started quickly and enables the same
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    		if err != nil {
    			return fmt.Errorf("--system-reserved value failed to parse: %w", err)
    		}
    		var hardEvictionThresholds []evictionapi.Threshold
    		// If the user requested to ignore eviction thresholds, then do not set valid values for hardEvictionThresholds here.
    		if !s.ExperimentalNodeAllocatableIgnoreEvictionThreshold {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    * Fix detection of docker cgroup on RHEL ([#25907](https://github.com/kubernetes/kubernetes/pull/25907), [@ncdc](https://github.com/ncdc))
    * Kubelet evicts pods when available memory falls below configured eviction thresholds ([#25772](https://github.com/kubernetes/kubernetes/pull/25772), [@derekwaynecarr](https://github.com/derekwaynecarr))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/java/org/codelibs/curl/CurlRequest.java

                throw new CurlException("This method must be called before param method.");
            }
            this.encoding = encoding;
            return this;
        }
    
        public CurlRequest threshold(final int threshold) {
            this.threshold = threshold;
            return this;
        }
    
        public CurlRequest gzip() {
            return compression(GZIP);
        }
    
        public CurlRequest compression(final String compression) {
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top