Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for 2500m (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			expectRemainingBudget:    pointer.Int64(0),
    		},
    		{
    			name: "Extended library cost: quantity",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "quantity(\"200M\") == quantity(\"0.2G\") && quantity(\"0.2G\") == quantity(\"200M\")",
    				},
    			},
    			attributes:               newValidAttribute(nil, false),
    			hasParamKind:             false,
    			exceedBudget:             false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

            failureThreshold: 600 # 10 minutes
          # Resources for the sidecar.
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
            limits:
              cpu: 2000m
              memory: 1024Mi
          # Default port for Pilot agent health checks. A value of 0 will disable health checking.
          statusPort: 15020
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

            failureThreshold: 600 # 10 minutes
    
          # Resources for the sidecar.
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
            limits:
              cpu: 2000m
              memory: 1024Mi
    
          # Default port for Pilot agent health checks. A value of 0 will disable health checking.
          statusPort: 15020
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. docs/site-replication/run-replication-with-checksum-header.sh

    ./mc ready minio1 --insecure
    ./mc ready minio2 --insecure
    
    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello World" >/tmp/data/obj
    touch /tmp/data/mpartobj
    shred -s 500M /tmp/data/mpartobj
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    sleep 30
    
    # Create bucket in source cluster
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    			newObjectFunc:     generateBigPod,
    			newListObjectFunc: func() runtime.Object { return &examplev1.PodList{} },
    		},
    		{
    			name:              "pick 2500 pods out of 5000 pod",
    			objectNum:         5000,
    			expectNum:         2500,
    			selector:          labels.SelectorFromSet(map[string]string{"foo": "bar"}),
    			newObjectFunc:     generateBigPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent_test.go

    			a.ProxyConfig.StatusPort = 25020
    			a.ProxyConfig.ProxyAdminPort = 25000
    			a.AgentConfig.EnvoyPrometheusPort = 25090
    			a.AgentConfig.EnvoyStatusPort = 25021
    			a.AgentConfig.ProxyXDSDebugViaAgent = false // uses a fixed port
    			return a
    		}).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    		envoyReady(t, "second agent", 25000)
    	})
    	t.Run("gRPC XDS bootstrap", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption_test.go

    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    )
    
    var (
    	midPriority, highPriority = int32(100), int32(1000)
    
    	veryLargeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "500m",
    		v1.ResourceMemory: "500",
    	}
    )
    
    type FakePostFilterPlugin struct {
    	numViolatingVictim int
    }
    
    func (pl *FakePostFilterPlugin) SelectVictimsOnNode(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    		},
    		{name: "quantity",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    			valid: []string{
    				"isQuantity(self.val1)",
    				"isQuantity(self.val2)",
    				`isQuantity("20Mi")`,
    				`quantity(self.val2) == quantity("0.2G") && quantity("0.2G") == quantity("200M")`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. pkg/volume/util/util_test.go

    	}
    }
    
    func TestCalculateTimeoutForVolume(t *testing.T) {
    	pv := &v1.PersistentVolume{
    		Spec: v1.PersistentVolumeSpec{
    			Capacity: v1.ResourceList{
    				v1.ResourceName(v1.ResourceStorage): resource.MustParse("500M"),
    			},
    		},
    	}
    
    	timeout := CalculateTimeoutForVolume(50, 30, pv)
    	if timeout != 50 {
    		t.Errorf("Expected 50 for timeout but got %v", timeout)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(10, 0, BinarySI), -1, decQuantity(-10, 0, BinarySI), true},
    		{decQuantity(-50, 0, DecimalSI), 0, decQuantity(0, 0, DecimalSI), true},
    		{decQuantity(-50, 0, DecimalSI), -50, decQuantity(2500, 0, DecimalSI), true},
    		{Quantity{Format: DecimalSI}, -50, decQuantity(0, 0, DecimalSI), true},
    		{decQuantity(mostPositive, 0, DecimalSI), 0, decQuantity(0, 1, DecimalSI), true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top