Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Percentage (0.52 sec)

  1. pilot/pkg/networking/core/route/route.go

    		return nil
    	}
    
    	out := xdshttpfault.HTTPFault{}
    	if in.Delay != nil {
    		out.Delay = &xdsfault.FaultDelay{}
    		if in.Delay.Percentage != nil {
    			out.Delay.Percentage = translatePercentToFractionalPercent(in.Delay.Percentage)
    		} else {
    			out.Delay.Percentage = translateIntegerToFractionalPercent(in.Delay.Percent) // nolint: staticcheck
    		}
    		switch d := in.Delay.HttpDelayType.(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// 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 up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/minio-dashboard.json

                    "result": {
                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "percentage",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  }
                ]
              },
              "unit": "dtdurations"
            },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    	rs.Spec.Replicas = pointer.Int32(5)
    	update(t, dc.rsStore, rs)
    
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 1, 3, 5, map[string]metav1.Time{})
    }
    
    // Verify that an percentage MaxUnavailable will recompute allowed disruptions when the scale of
    // the selected pod's controller is modified.
    func TestPercentageMaxUnavailableWithScaling(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"available": integerType,
    			}),
    			expectCost: map[string]int64{
    				// validate that if 'min' is a string that it is a percentage
    				`type(self.min) == string && self.min.matches(r'(\d+(\.\d+)?%)')`: 10,
    				// validate that 'min' can be either a exact value minimum, or a minimum as a percentage of 'available'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	metricNameProposal = fmt.Sprintf("%s resource utilization (percentage of request)", resourceName)
    	if sourceType == autoscalingv2.ContainerResourceMetricSourceType {
    		metricNameProposal = fmt.Sprintf("%s container resource utilization (percentage of request)", resourceName)
    	}
    	status := autoscalingv2.MetricValueStatus{
    		AverageUtilization: &percentageProposal,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	closed bool
    
    	nsLister listersv1.NamespaceLister
    
    	metricsRecorder metrics.MetricAsyncRecorder
    	// pluginMetricsSamplePercent is the percentage of plugin metrics to be sampled.
    	pluginMetricsSamplePercent int
    
    	// isSchedulingQueueHintEnabled indicates whether the feature gate for the scheduling queue is enabled.
    	isSchedulingQueueHintEnabled bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    	}
    	return setDriveCounts
    }
    
    type serverPoolsAvailableSpace []poolAvailableSpace
    
    type poolAvailableSpace struct {
    	Index      int
    	Available  uint64 // in bytes
    	MaxUsedPct int    // Used disk percentage of most filled disk, rounded down.
    }
    
    // TotalAvailable - total available space
    func (p serverPoolsAvailableSpace) TotalAvailable() uint64 {
    	total := uint64(0)
    	for _, z := range p {
    		total += z.Available
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    			//	    |               |                   |
    			//	  print          print              print
    			//
    			// When -coverpkg=<pattern> is in effect, we want to
    			// express the coverage percentage for each package as a
    			// fraction of *all* the statements that match the
    			// pattern, hence if "c" doesn't import "a", we need to
    			// pass as meta-data file for "a" (emitted during the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/runtime/map.go

    //        7.00        27.14        10.15         4.50         7.00
    //        7.50        34.03         9.73         4.75         7.50
    //        8.00        41.10         9.40         5.00         8.00
    //
    // %overflow   = percentage of buckets which have an overflow bucket
    // bytes/entry = overhead bytes used per key/elem pair
    // hitprobe    = # of entries to check when looking up a present key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top