Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 166 for Percentage (0.22 sec)

  1. pkg/controller/nodeipam/ipam/cidrset/metrics.go

    		},
    		[]string{"clusterCIDR"},
    	)
    	cidrSetUsage = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      nodeIpamSubsystem,
    			Name:           "cidrset_usage_cidrs",
    			Help:           "Gauge measuring percentage of allocated CIDRs.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"clusterCIDR"},
    	)
    	cidrSetAllocationTriesPerRequest = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      nodeIpamSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 05 15:18:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one.go

    	var percentage int32
    	if percentageOfNodesToScore != nil {
    		percentage = *percentageOfNodesToScore
    	} else {
    		percentage = sched.percentageOfNodesToScore
    	}
    
    	if percentage == 0 {
    		percentage = int32(50) - numAllNodes/125
    		if percentage < minFeasibleNodesPercentageToFind {
    			percentage = minFeasibleNodesPercentageToFind
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/metrics/utilization.go

    limitations under the License.
    */
    
    package metrics
    
    import (
    	"fmt"
    )
    
    // GetResourceUtilizationRatio takes in a set of metrics, a set of matching requests,
    // and a target utilization percentage, and calculates the ratio of
    // desired to actual utilization (returning that, the actual utilization, and the raw average value)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 22 08:59:02 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. cmd/metrics-v3-system-cpu.go

    	sysCPUAvgIOWaitMD = NewGaugeMD(sysCPUAvgIOWait, "Average CPU IOWait time")
    	sysCPULoadMD      = NewGaugeMD(sysCPULoad, "CPU load average 1min")
    	sysCPULoadPercMD  = NewGaugeMD(sysCPULoadPerc, "CPU load average 1min (percentage)")
    	sysCPUNiceMD      = NewGaugeMD(sysCPUNice, "CPU nice time")
    	sysCPUStealMD     = NewGaugeMD(sysCPUSteal, "CPU steal time")
    	sysCPUSystemMD    = NewGaugeMD(sysCPUSystem, "CPU system time")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 23 23:56:12 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pilot/pkg/features/telemetry.go

    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define telemetry related features here.
    var (
    	traceSamplingVar = env.Register(
    		"PILOT_TRACE_SAMPLING",
    		1.0,
    		"Sets the mesh-wide trace sampling percentage. Should be 0.0 - 100.0. Precision to 0.01. "+
    			"Default is 1.0.",
    	)
    
    	TraceSampling = func() float64 {
    		f := traceSamplingVar.Get()
    		if f < 0.0 || f > 100.0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. cmd/metrics-v3-system-memory.go

    )
    
    var (
    	memTotalMD     = NewGaugeMD(memTotal, "Total memory on the node")
    	memUsedMD      = NewGaugeMD(memUsed, "Used memory on the node")
    	memUsedPercMD  = NewGaugeMD(memUsedPerc, "Used memory percentage on the node")
    	memFreeMD      = NewGaugeMD(memFree, "Free memory on the node")
    	memBuffersMD   = NewGaugeMD(memBuffers, "Buffers memory on the node")
    	memCacheMD     = NewGaugeMD(memCache, "Cache memory on the node")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:10:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"maxUnavailable": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. security/pkg/util/certutil_test.go

    			cert:        []byte(`INVALIDCERT`),
    			now:         time.Date(2017, time.August, 23, 21, 0, 0, 40, time.UTC),
    			expectedErr: "invalid PEM encoded certificate",
    		},
    	}
    
    	cu := NewCertUtil(50) // Grace period percentage is set to 50
    	for id, c := range testCases {
    		waitTime, err := cu.GetWaitTime(c.cert, c.now)
    		if c.expectedErr != "" {
    			if err == nil {
    				t.Errorf("%s: no error is returned.", id)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/generated.proto

    message RollingUpdateDeployment {
      // The maximum number of pods that can be unavailable during the update.
      // Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
      // Absolute number is calculated from percentage by rounding down.
      // This can not be 0 if MaxSurge is 0.
      // Defaults to 25%.
      // Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. pkg/controller/daemon/util/daemonset_util.go

    	return err == nil && maxSurge > 0
    }
    
    // SurgeCount returns 0 if surge is not requested, the expected surge number to allow
    // out of numberToSchedule if surge is configured, or an error if the surge percentage
    // requested is invalid.
    func SurgeCount(ds *apps.DaemonSet, numberToSchedule int) (int, error) {
    	if ds.Spec.UpdateStrategy.Type != apps.RollingUpdateDaemonSetStrategyType {
    		return 0, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 11:54:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top