Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for 200M (0.07 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. 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)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				`type(ip("192.168.0.1")) == net.IP`,
    				`cidr("192.168.0.0/24").containsIP(ip("192.168.0.1"))`,
    				`cidr("192.168.0.0/24").containsCIDR("192.168.0.0/25")`,
    				`cidr("2001:db8::/32").containsCIDR(cidr("2001:db8::/33"))`,
    				`type(cidr("2001:db8::/32").ip()) == net.IP`,
    				`cidr('192.168.0.0/24') == cidr('192.168.0.0/24').masked()`,
    				`cidr('192.168.0.0/16').prefixLength() == 16`,
    				`cidr('::1/128').ip().family() == 6`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. 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)
  6. cluster/gce/gci/configure-helper.sh

      sed -i -e "s@{{cpurequest}}@${KUBE_SCHEDULER_CPU_REQUEST}@g" "${src_file}"
      sed -i -e "s@{{runAsUser}}@${KUBE_SCHEDULER_RUNASUSER:-2001}@g" "${src_file}"
      sed -i -e "s@{{runAsGroup}}@${KUBE_SCHEDULER_RUNASGROUP:-2001}@g" "${src_file}"
      cp "${src_file}" /etc/kubernetes/manifests
    }
    
    # Starts cluster autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_FWPRINTF                        = 0x7D1 // 2001
    	SYS_WPRINTF                         = 0x7D2 // 2002
    	SYS_VFWPRINT                        = 0x7D3 // 2003
    	SYS_VFWPRINTF                       = 0x7D3 // 2003
    	SYS_VWPRINTF                        = 0x7D4 // 2004
    	SYS_FWSCANF                         = 0x7D5 // 2005
    	SYS_WSCANF                          = 0x7D6 // 2006
    	SYS_WCTRANS                         = 0x7D7 // 2007
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    					v1.ResourceCPU:              *resource.NewMilliQuantity(200, resource.DecimalSI),
    					v1.ResourceMemory:           *resource.NewQuantity(100e6, resource.BinarySI),
    					v1.ResourceEphemeralStorage: *resource.NewQuantity(2000, resource.BinarySI),
    				},
    				capacity: v1.ResourceList{
    					v1.ResourceCPU:              *resource.NewMilliQuantity(2000, resource.DecimalSI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    KUBE_SCHEDULER_RUNASUSER: 2001
    KUBE_SCHEDULER_RUNASGROUP: 2001
    KUBE_ADDON_MANAGER_RUNASUSER: 2002
    KUBE_ADDON_MANAGER_RUNASGROUP: 2002
    KUBE_CONTROLLER_MANAGER_RUNASUSER: 2003
    KUBE_CONTROLLER_MANAGER_RUNASGROUP: 2003
    KUBE_API_SERVER_RUNASUSER: 2004
    KUBE_API_SERVER_RUNASGROUP: 2004
    KUBE_PKI_READERS_GROUP: 2005
    ETCD_RUNASUSER: 2006
    ETCD_RUNASGROUP: 2006
    KUBE_POD_LOG_READERS_GROUP: 2007
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier_test.go

    				}),
    			},
    			nodeIPs:           []string{"2001:db8::1:1", "2001:db8::1:2"},
    			nodePortAddresses: []string{},
    			expectedIPVS: &ipvstest.FakeIPVS{
    				Services: map[ipvstest.ServiceKey]*utilipvs.VirtualServer{
    					{
    						IP:       "2001:db8::1:1",
    						Port:     3001,
    						Protocol: "SCTP",
    					}: {
    						Address:   netutils.ParseIPSloppy("2001:db8::1:1"),
    						Protocol:  "SCTP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top