Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for 120m (0.05 sec)

  1. 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)
  2. pkg/scheduler/internal/cache/cache_test.go

    func TestAssumePodScheduled(t *testing.T) {
    	nodeName := "node"
    	testPods := []*v1.Pod{
    		makeBasePod(t, nodeName, "test-resource-request-and-port-0", "100m", "500", "", []v1.ContainerPort{{HostIP: "127.0.0.1", HostPort: 80, Protocol: "TCP"}}),
    		makeBasePod(t, nodeName, "test-resource-request-and-port-1", "100m", "500", "", []v1.ContainerPort{{HostIP: "127.0.0.1", HostPort: 80, Protocol: "TCP"}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  3. src/runtime/zcallback_windows_arm64.s

    	MOVD	$1199, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1200, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1201, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1202, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1203, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1204, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1205, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1206, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1207, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission_test.go

    			limitRange: createLimitRange(api.LimitTypeContainer, getComputeResourceList("50m", ""), api.ResourceList{}, api.ResourceList{}, api.ResourceList{}, api.ResourceList{}),
    		},
    		{
    			pod:        validPod("ctr-min-cpu-request-limit", 1, getResourceRequirements(getComputeResourceList("100m", ""), getComputeResourceList("200m", ""))),
    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. src/runtime/zcallback_windows_arm.s

    	MOVW	$1199, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1200, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1201, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1202, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1203, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1204, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1205, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1206, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1207, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  6. plugin/pkg/admission/resourcequota/admission_test.go

    	}
    
    	informerFactory.Core().V1().ResourceQuotas().Informer().GetIndexer().Add(resourceQuota)
    	newPod := validPod("123", 1, getResourceRequirements(getResourceList("100m", "2Gi"), getResourceList("", "")))
    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. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	}
    }
    
    func TestQuantityCmp(t *testing.T) {
    	// Test when d is nil
    	table := []struct {
    		x      string
    		y      string
    		expect int
    	}{
    		{"0", "0", 0},
    		{"100m", "50m", 1},
    		{"50m", "100m", -1},
    		{"10000T", "100Gi", 1},
    	}
    	for _, testCase := range table {
    		q1 := MustParse(testCase.x)
    		q2 := MustParse(testCase.y)
    		if result := q1.Cmp(q2); result != testCase.expect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    			concurrencyLimit: 1,
    			totSeatsInUse:    0,
    			robinIndex:       -1,
    			queues: []*queue{
    				{
    					nextDispatchR: fcrequest.SeatsTimesDuration(1, 200*time.Second),
    					requestsWaiting: newFIFO(
    						&request{workEstimate: qs0.completeWorkEstimate(&fcrequest.WorkEstimate{InitialSeats: 1})},
    					),
    					requestsExecuting: sets.New[*request](),
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    		{0, 0, 0, 0, '+', (*Float).Add},
    		{0, 1, 2, 3, '+', (*Float).Add},
    		{1, 2, 0, 2, '+', (*Float).Add},
    		{2, 0, 1, 1, '+', (*Float).Add},
    
    		{0, 0, 0, 0, '-', (*Float).Sub},
    		{0, 1, 2, -1, '-', (*Float).Sub},
    		{1, 2, 0, 2, '-', (*Float).Sub},
    		{2, 0, 1, -1, '-', (*Float).Sub},
    
    		{0, 0, 0, 0, '*', (*Float).Mul},
    		{0, 1, 2, 2, '*', (*Float).Mul},
    		{1, 2, 0, 0, '*', (*Float).Mul},
    		{2, 0, 1, 0, '*', (*Float).Mul},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. kotlin-js-store/yarn.lock

    body-parser@^1.19.0:
      version "1.20.0"
      resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5"
      integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==
      dependencies:
        bytes "3.1.2"
        content-type "~1.0.4"
        debug "2.6.9"
        depd "2.0.0"
        destroy "1.2.0"
        http-errors "2.0.0"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
Back to top