Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for 300m (0.07 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(1080, -3, DecimalSI), "1080m", "1.08"},
    		{decQuantity(108, -2, DecimalSI), "1080m", "1080000000n"},
    		{decQuantity(10800, -4, DecimalSI), "1080m", ""},
    		{decQuantity(300, 6, DecimalSI), "300M", ""},
    		{decQuantity(1, 12, DecimalSI), "1T", ""},
    		{decQuantity(1234567, 6, DecimalSI), "1234567M", ""},
    		{decQuantity(1234567, -3, BinarySI), "1234567m", ""},
    		{decQuantity(3, 3, DecimalSI), "3k", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	smallRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "100m",
    		v1.ResourceMemory: "100",
    	}
    	mediumRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "200m",
    		v1.ResourceMemory: "200",
    	}
    	largeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "300m",
    		v1.ResourceMemory: "300",
    	}
    	veryLargeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "500m",
    		v1.ResourceMemory: "500",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	m.machineInfo.MemoryCapacity = 17179860387 // 16GB
    	assert.NoError(t, err)
    
    	cpu100m := resource.MustParse("100m")
    	cpu150m := resource.MustParse("150m")
    	cpu200m := resource.MustParse("200m")
    	cpu250m := resource.MustParse("250m")
    	cpu300m := resource.MustParse("300m")
    	cpu350m := resource.MustParse("350m")
    	mem100M := resource.MustParse("100Mi")
    	mem150M := resource.MustParse("150Mi")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission_test.go

    	// pod with all resources enumerated should not merge anything
    	input = getResourceRequirements(getComputeResourceList("100m", "512Mi"), getComputeResourceList("200m", "1G"))
    	initInputs := []api.ResourceRequirements{getResourceRequirements(getComputeResourceList("200m", "1G"), getComputeResourceList("400m", "2G"))}
    	pod = validPodInit(validPod("limit-memory", 1, input), initInputs...)
    	expected = input
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/cache_test.go

    			Effect: v1.TaintEffectPreferNoSchedule,
    		},
    	}
    	imageStatus1 := map[string]int64{
    		"gcr.io/80:latest":  80 * mb,
    		"gcr.io/80:v1":      80 * mb,
    		"gcr.io/300:latest": 300 * mb,
    		"gcr.io/300:v1":     300 * mb,
    	}
    	imageStatus2 := map[string]int64{
    		"gcr.io/600:latest": 600 * mb,
    		"gcr.io/80:latest":  80 * mb,
    		"gcr.io/900:latest": 900 * mb,
    	}
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/resourcequota/admission_test.go

    	// verify all values are specified as required on the quota
    	newPod := validPod("not-allowed-pod", 1, getResourceRequirements(getResourceList("100m", "2Gi"), getResourceList("200m", "")))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/defaults_test.go

    	defaultValue := defaultLimit[v1.ResourceCPU]
    	if defaultValue.String() != "100m" {
    		t.Errorf("Expected default cpu: %s, got: %s", "100m", defaultValue.String())
    	}
    	// verify that default request was set to the limit
    	requestValue := defaultRequest[v1.ResourceCPU]
    	if requestValue.String() != "100m" {
    		t.Errorf("Expected request cpu: %s, got: %s", "100m", requestValue.String())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			},
    		},
    		{name: "quantity",
    			obj:    objs("20", "200M"),
    			schema: schemas(stringType, stringType),
    			expectCost: map[string]int64{
    				`isQuantity(self.val1)`: 3,
    				`isQuantity(self.val2)`: 3,
    				`isQuantity("200M")`:    1,
    				`isQuantity("20Mi")`:    1,
    				`quantity("200M") == quantity("0.2G") && quantity("0.2G") == quantity("200M")`:                                           6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter_test.go

    			readOnly:   false,
    			fsType:     "",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    			name: "fstype, fsgroup, RWM, ROM provided (should not apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteMany,
    				corev1.ReadOnlyMany,
    			},
    			fsType:     "ext4",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                    {
                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "outbound|3000||grafana.istio-system.svc.cluster.local",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
Back to top