Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for 250m (0.15 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    		{name: "burstable-below-requests", priority: defaultPriority, requests: newResourceList("100m", "100Mi", ""), limits: newResourceList("200m", "1Gi", ""), memoryWorkingSet: "50Mi"},
    		{name: "burstable-above-requests", priority: defaultPriority, requests: newResourceList("100m", "100Mi", ""), limits: newResourceList("200m", "1Gi", ""), memoryWorkingSet: "400Mi"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_CATAN                           = 0x9C4 // 2500
    	SYS___CATAN_B                       = 0x9C5 // 2501
    	SYS___CATAN_H                       = 0x9C6 // 2502
    	SYS_CATANF                          = 0x9C7 // 2503
    	SYS___CATANF_B                      = 0x9C8 // 2504
    	SYS___CATANF_H                      = 0x9C9 // 2505
    	SYS_CATANL                          = 0x9CA // 2506
    	SYS___CATANL_B                      = 0x9CB // 2507
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  3. pkg/api/pod/util_test.go

    								Limits:   api.ResourceList{api.ResourceCPU: resource.MustParse("200m")},
    							},
    						},
    						{
    							Name:  "c2",
    							Image: "image",
    							Resources: api.ResourceRequirements{
    								Requests: api.ResourceList{api.ResourceCPU: resource.MustParse("200m")},
    								Limits:   api.ResourceList{api.ResourceCPU: resource.MustParse("300m")},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    			newNode: func() *v1.Node {
    				node := newNode("node1", nil)
    				node.Status.Allocatable = allocatableResources("200M", "200m")
    				return node
    			}(),
    			ds: func() *apps.DaemonSet {
    				ds := newDaemonSet("ds")
    				ds.Spec.Template.Spec = resourcePodSpecWithoutNodeName("200M", "200m")
    				return ds
    			}(),
    			expectedEventsFunc: func(strategyType apps.DaemonSetUpdateStrategyType) int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kubelet/eviction/helpers_test.go

    	medium := newPod("medium-priority", 1, []v1.Container{
    		newContainer("medium-priority", newResourceList("100m", "100Mi", ""), newResourceList("200m", "200Mi", "")),
    	}, nil)
    	high := newPod("high-priority", 12534, []v1.Container{
    		newContainer("high-priority", newResourceList("200m", "200Mi", ""), newResourceList("200m", "200Mi", "")),
    	}, nil)
    
    	pods := []*v1.Pod{high, medium, low}
    	orderedBy(priority).Sort(pods)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+2480(SB)/8,$0x00000000bf6c8c90
    DATA ·IEEEConst+2488(SB)/8,$0x00000000e1d9177a
    
    	/* x^101440 mod p(x), x^101376 mod p(x) */
    DATA ·IEEEConst+2496(SB)/8,$0x00000001788b0504
    DATA ·IEEEConst+2504(SB)/8,$0x0000000105abc27c
    
    	/* x^100416 mod p(x), x^100352 mod p(x) */
    DATA ·IEEEConst+2512(SB)/8,$0x0000000038385d02
    DATA ·IEEEConst+2520(SB)/8,$0x00000000972e4a58
    
    	/* x^99392 mod p(x), x^99328 mod p(x) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/callback.go

    func stack2496() { var buf [2496]byte; use(buf[:]); C.callGoStackCheck() }
    func stack2500() { var buf [2500]byte; use(buf[:]); C.callGoStackCheck() }
    func stack2504() { var buf [2504]byte; use(buf[:]); C.callGoStackCheck() }
    func stack2508() { var buf [2508]byte; use(buf[:]); C.callGoStackCheck() }
    func stack2512() { var buf [2512]byte; use(buf[:]); C.callGoStackCheck() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    	om *fakeObjectManager,
    	invariants invariantFunc) error {
    	selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    	if err != nil {
    		return err
    	}
    
    	// Give up after 2 loops.
    	// 2 * 500 pods per loop = 1000 max pods <- this should be enough for all test cases.
    	// Anything slower than that (requiring more iterations) indicates a problem and should fail the test.
    	maxLoops := 2
    	loops := maxLoops
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      readonly KUBEDNS_AUTOSCALER="Deployment/kube-dns"
    
      # Resource requests of master components.
      CLOUD_CONTROLLER_MANAGER_CPU_REQUEST="${KUBE_CONTROLLER_MANAGER_CPU_REQUEST:-50m}"
      KUBE_CONTROLLER_MANAGER_CPU_REQUEST="${KUBE_CONTROLLER_MANAGER_CPU_REQUEST:-200m}"
      KUBE_SCHEDULER_CPU_REQUEST="${KUBE_SCHEDULER_CPU_REQUEST:-75m}"
    
      KUBE_HOME="/home/kubernetes"
      KUBE_BIN=${KUBE_HOME}/bin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top