Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for 250m (0.04 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			true,
    			v1.ResourceList{v1.ResourceCPU: resource.MustParse("200m"), v1.ResourceMemory: resource.MustParse("500Mi")},
    			v1.ResourceList{v1.ResourceCPU: resource.MustParse("200m"), v1.ResourceMemory: resource.MustParse("500Mi")},
    			[]v1.ContainerStatus{
    				{
    					Name:               "c1",
    					AllocatedResources: v1.ResourceList{v1.ResourceCPU: resource.MustParse("200m"), v1.ResourceMemory: resource.MustParse("500Mi")},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			requestedPod: st.MakePod().Container("container").Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "250m", "memory": "1000Mi"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "250m", "memory": "1000Mi"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Container("container").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    		expectedList framework.NodeScoreList
    		name         string
    	}{
    		{
    			// Pod: gcr.io/40 gcr.io/250
    
    			// Node1
    			// Image: gcr.io/40:latest 40MB
    			// Score: 0 (40M/2 < 23M, min-threshold)
    
    			// Node2
    			// Image: gcr.io/250:latest 250MB
    			// Score: 100 * (250M/2 - 23M)/(1000M * 2 - 23M) = 5
    			pod:          &v1.Pod{Spec: test40250},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/manifests.go

    			StartupProbe:    staticpodutil.StartupProbe(staticpodutil.GetAPIServerProbeAddress(endpoint), "/livez", endpoint.BindPort, v1.URISchemeHTTPS, componentHealthCheckTimeout),
    			Resources:       staticpodutil.ComponentResources("250m"),
    			Env:             kubeadmutil.MergeKubeadmEnvVars(proxyEnvs, cfg.APIServer.ExtraEnvs),
    		}, mounts.GetVolumes(kubeadmconstants.KubeAPIServer),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils_test.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    )
    
    func TestComponentResources(t *testing.T) {
    	a := ComponentResources("250m")
    	if a.Requests == nil {
    		t.Errorf(
    			"failed componentResources, return value was nil",
    		)
    	}
    }
    
    func TestGetAPIServerProbeAddress(t *testing.T) {
    	tests := []struct {
    		desc     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    			expected: corev1.ResourceList{corev1.ResourceCPU: resource.MustParse("150m")},
    		},
    		"matching(reverse)": {
    			a:        corev1.ResourceList{corev1.ResourceCPU: resource.MustParse("150m")},
    			b:        corev1.ResourceList{corev1.ResourceCPU: resource.MustParse("100m")},
    			expected: corev1.ResourceList{corev1.ResourceCPU: resource.MustParse("150m")},
    		},
    		"matching-equal": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  7. pkg/quota/v1/evaluator/core/pods_test.go

    				corev1.ResourceRequestsCPU:    resource.MustParse("150m"),
    				corev1.ResourceLimitsCPU:      resource.MustParse("200m"),
    				corev1.ResourceRequestsMemory: resource.MustParse("250Mi"),
    				corev1.ResourceLimitsMemory:   resource.MustParse("400Mi"),
    				corev1.ResourcePods:           resource.MustParse("1"),
    				corev1.ResourceCPU:            resource.MustParse("150m"),
    				corev1.ResourceMemory:         resource.MustParse("250Mi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. docs/bucket/replication/setup_3site_replication.sh

    fi
    
    sleep 5
    
    head -c 221227088 </dev/urandom >200M
    ./mc.RELEASE.2021-03-12T03-36-59Z cp --config-dir ~/.mc --encrypt "sitea" --quiet 200M "sitea/bucket/200M-enc-v1"
    ./mc.RELEASE.2021-03-12T03-36-59Z cp --config-dir ~/.mc --quiet 200M "sitea/bucket/200M-v1"
    
    ./mc cp --enc-s3 "sitea" --quiet 200M "sitea/bucket/200M-enc-v2"
    ./mc cp --quiet 200M "sitea/bucket/200M-v2"
    
    sleep 10
    
    echo "Verifying ETag for all objects"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSA

    000000a0  55 04 0a 13 02 47 6f 31  10 30 0e 06 03 55 04 03  |U....Go1.0...U..|
    000000b0  13 07 47 6f 20 52 6f 6f  74 30 1e 17 0d 31 36 30  |..Go Root0...160|
    000000c0  31 30 31 30 30 30 30 30  30 5a 17 0d 32 35 30 31  |101000000Z..2501|
    000000d0  30 31 30 30 30 30 30 30  5a 30 1a 31 0b 30 09 06  |01000000Z0.1.0..|
    000000e0  03 55 04 0a 13 02 47 6f  31 0b 30 09 06 03 55 04  |.U....Go1.0...U.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/helpers_linux_test.go

    		},
    		"burstable-with-limits": {
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Resources: getResourceRequirements(getResourceList("100m", "100Mi"), getResourceList("200m", "200Mi")),
    						},
    					},
    				},
    			},
    			enforceCPULimits: true,
    			quotaPeriod:      defaultQuotaPeriod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top