Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,637 for 100m (0.1 sec)

  1. pkg/kubelet/cm/helpers_linux_test.go

    							Resources: getResourceRequirements(getResourceList("100m", "100m"), getResourceList("100m", "100Mi")),
    						},
    						{
    							Resources: getResourceRequirements(getResourceList("100m", "100m"), getResourceList("", "")),
    						},
    					},
    					InitContainers: []v1.Container{
    						{
    							Resources: getResourceRequirements(getResourceList("100m", "100m"), getResourceList("100m", "100Mi")),
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. cluster/addons/addon-manager/kube-addons-test.sh

        return 1
      fi
    
      # the users configuration must be respected
      echo_blue "User configuration will be persisted for EnsureExists"
      EDITOR="sed -i 's/100m/600m/'" kubectl edit limits/limits -n ${TEST_NS}
      if kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "100m"; then
        error "failed to edit resource with sed -- test is broken"
        return 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/helper/qos/qos_test.go

    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    			}),
    			expected: v1.PodQOSGuaranteed,
    		},
    		{
    			pod: newPod("guaranteed-guaranteed", []v1.Container{
    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    			}),
    			expected: v1.PodQOSGuaranteed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    		},
    		"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": {
    			a:        corev1.ResourceList{corev1.ResourceCPU: resource.MustParse("100m")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission_test.go

    				corev1.ResourceLimitsCPU:              "100m",
    				corev1.ResourceLimitsMemory:           "100Mi",
    			}),
    			expected: "limits.cpu=100m,limits.memory=100Mi,pods=10,replicationcontrollers=10,requests.cpu=100m,requests.memory=100Mi,services=10,services.nodeports=10",
    		},
    	}
    	for i, testCase := range testCases {
    		result := prettyPrint(testCase.input)
    		if result != testCase.expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/node_container_manager_linux_test.go

    			expected:       getResourceList("150m", "150Mi"),
    		},
    		{
    			kubeReserved:   getResourceList("100m", "100Mi"),
    			systemReserved: getResourceList("50m", "50Mi"),
    			hardThreshold: evictionapi.ThresholdValue{
    				Quantity: &memoryEvictionThreshold,
    			},
    			capacity: getResourceList("10", "10Gi"),
    			expected: getResourceList("150m", "250Mi"),
    		},
    		{
    			kubeReserved:   getResourceList("100m", "100Mi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/deepcopy_test.go

    	x := &v1alpha12.ResourceMetricSource{}
    	err := yaml.UnmarshalStrict([]byte("targetAverageValue: 100m"), x)
    	t.Log(x)
    	if err != nil {
    		t.Fatal(err)
    	}
    	y := &v1alpha12.MetricSpec{}
    	err = yaml.UnmarshalStrict([]byte(`
    type: Resource
    resource:
      targetAverageValue: 100m`), y)
    	t.Log(y)
    	if err != nil {
    		t.Fatal(err)
    	}
    	z := &v1alpha12.HorizontalPodAutoscalerSpec{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 05 23:34:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_proto_test.go

    	// Test when d is nil
    	table := []struct {
    		quantity string
    		expect   Quantity
    	}{
    		{"0", Quantity{i: int64Amount{value: 0, scale: 0}, s: "0", Format: DecimalSI}},
    		{"100m", Quantity{i: int64Amount{value: 100, scale: -3}, s: "100m", Format: DecimalSI}},
    		{"50m", Quantity{i: int64Amount{value: 50, scale: -3}, s: "50m", Format: DecimalSI}},
    		{"10000T", Quantity{i: int64Amount{value: 10000, scale: 12}, s: "10000T", Format: DecimalSI}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 07:12:11 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/eviction_manager_test.go

    				{name: "below-requests", priority: defaultPriority, requests: newResourceList("100m", "100Mi", ""), limits: newResourceList("200m", "1Gi", ""), logsFsUsed: "50Mi"},
    				{name: "above-requests", priority: defaultPriority, requests: newResourceList("100m", "100Mi", ""), limits: newResourceList("200m", "1Gi", ""), rootFsUsed: "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)
  10. samples/helloworld/helloworld.yaml

            app: helloworld
            version: v1
        spec:
          containers:
          - name: helloworld
            image: docker.io/istio/examples-helloworld-v1:1.0
            resources:
              requests:
                cpu: "100m"
            imagePullPolicy: IfNotPresent #Always
            ports:
            - containerPort: 5000
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      labels:
        app: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top