Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 250m (0.1 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	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")
    	mem200M := resource.MustParse("200Mi")
    	mem250M := resource.MustParse("250Mi")
    	mem300M := resource.MustParse("300Mi")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. plugin/pkg/admission/limitranger/admission_test.go

    					Max:  getComputeResourceList("200m", "4Gi"),
    					Min:  getComputeResourceList("50m", "2Mi"),
    				},
    				{
    					Type:           api.LimitTypeContainer,
    					Max:            getComputeResourceList("100m", "2Gi"),
    					Min:            getComputeResourceList("25m", "1Mi"),
    					Default:        getComputeResourceList("75m", "10Mi"),
    					DefaultRequest: getComputeResourceList("50m", "5Mi"),
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    		makeBasePod(t, nodeName, "test-1", "100m", "500", "", []v1.ContainerPort{{HostIP: "127.0.0.1", HostPort: 80, Protocol: "TCP"}}),
    		makeBasePod(t, nodeName, "test-2", "200m", "1Ki", "", []v1.ContainerPort{{HostIP: "127.0.0.1", HostPort: 8080, Protocol: "TCP"}}),
    		makeBasePod(t, nodeName, "test-3", "200m", "1Ki", "", []v1.ContainerPort{{HostIP: "127.0.0.1", HostPort: 8080, Protocol: "TCP"}}),
    	}
    	now := time.Now()
    	defaultTTL := 10 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	defer listCancel()
    
    	result := &example.PodList{}
    	err = cacher.GetList(listCtx, "/pods/ns", opts, result)
    	if err != nil && apierrors.IsTooManyRequests(err) {
    		t.Errorf("Unexpected 429 error without ResilientWatchCacheInitialization feature for List")
    	}
    
    	watchCtx, watchCancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer watchCancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top