Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 159 for scaleIO (0.14 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.json

                "type": "typeValue",
                "value": "0",
                "averageValue": "0",
                "averageUtilization": 4
              }
            }
          }
        ],
        "behavior": {
          "scaleUp": {
            "stabilizationWindowSeconds": 3,
            "selectPolicy": "selectPolicyValue",
            "policies": [
              {
                "type": "typeValue",
                "value": 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml

    spec:
      behavior:
        scaleDown:
          policies:
          - periodSeconds: 3
            type: typeValue
            value: 2
          selectPolicy: selectPolicyValue
          stabilizationWindowSeconds: 3
        scaleUp:
          policies:
          - periodSeconds: 3
            type: typeValue
            value: 2
          selectPolicy: selectPolicyValue
          stabilizationWindowSeconds: 3
      maxReplicas: 3
      metrics:
      - containerResource:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/math_test.go

    		value  int64
    		max    int64
    		result int64
    		scale  int32
    	}{
    		{100, 10, 1, 2},
    		{100, 10, 1, 2},
    		{100, 100, 1, 1},
    		{1, 10, 1, 0},
    	} {
    		r, s := removeInt64Factors(test.value, test.max)
    		if r != test.result {
    			t.Errorf("%v: unexpected result: %d", test, r)
    		}
    		if s != test.scale {
    			t.Errorf("%v: unexpected scale: %d", test, s)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 5.1K bytes
    - Viewed (0)
  4. src/image/color/color.go

    	// overflow.
    	//
    	// An alpha-premultiplied color component c has been scaled by alpha (a),
    	// so has valid values 0 <= c <= a.
    	RGBA() (r, g, b, a uint32)
    }
    
    // RGBA represents a traditional 32-bit alpha-premultiplied color, having 8
    // bits for each of red, green, blue and alpha.
    //
    // An alpha-premultiplied color component C has been scaled by alpha (A), so
    // has valid values 0 <= C <= A.
    type RGBA struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/tests/rewrite_quantized_io.mlir

    tfr.func @tf__my_requantize(%input: !tfr.tensor) -> !tfr.tensor {
      %raw_data = tfr.quant_raw_data(%input) : (!tfr.tensor) -> !tfr.tensor
      %scale, %zp = tfr.quant_qparam(%input) : (!tfr.tensor) -> (!tfr.tensor, !tfr.tensor)
      %result = tfr.call @tf__requantize(%raw_data, %scale, %zp) : (!tfr.tensor, !tfr.tensor, !tfr.tensor) -> !tfr.tensor
      tfr.return %result : !tfr.tensor
    }
    
    // CHECK-LABEL: @tf__intermediate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. cluster/addons/metrics-server/metrics-server-deployment.yaml

              - --container=metrics-server
              - --poll-period=30000
              - --estimator=exponential
              # Specifies the smallest cluster (defined in number of nodes)
              # resources will be scaled to.
              - --minClusterSize={{ metrics_server_min_cluster_size }}
              # Use kube-apiserver metrics to avoid periodically listing nodes.
              - --use-metrics=true
          volumes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. docs/multi-tenancy/README.md

    1. [Standalone Deployment](#standalone-deployment)
    2. [Distributed Deployment](#distributed-deployment)
    3. [Cloud Scale Deployment](#cloud-scale-deployment)
    
    ## 1. Standalone Deployment
    
    To host multiple tenants on a single machine, run one MinIO Server per tenant with a dedicated HTTPS port, configuration, and data directory.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int_test.go

    import (
    	"math"
    	"math/big"
    	"testing"
    )
    
    func TestScaledValueInternal(t *testing.T) {
    	tests := []struct {
    		unscaled *big.Int
    		scale    int
    		newScale int
    
    		want int64
    	}{
    		// remain scale
    		{big.NewInt(1000), 0, 0, 1000},
    
    		// scale down
    		{big.NewInt(1000), 0, -3, 1},
    		{big.NewInt(1000), 3, 0, 1},
    		{big.NewInt(0), 3, 0, 0},
    
    		// always round up
    		{big.NewInt(999), 3, 0, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 11 03:04:14 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  9. docs/orchestration/README.md

    MinIO is a cloud-native application designed to scale in a sustainable manner in multi-tenant environments. Orchestration platforms provide perfect launchpad for MinIO to scale. Below is the list of MinIO deployment documents for various orchestration platforms:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/fuzzer/fuzzer.go

    				},
    			}
    			stabilizationWindow := int32(c.RandUint64())
    			maxPolicy := autoscaling.MaxPolicySelect
    			minPolicy := autoscaling.MinPolicySelect
    			s.Behavior = &autoscaling.HorizontalPodAutoscalerBehavior{
    				ScaleUp: &autoscaling.HPAScalingRules{
    					StabilizationWindowSeconds: &stabilizationWindow,
    					SelectPolicy:               &maxPolicy,
    					Policies: []autoscaling.HPAScalingPolicy{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top