Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 50M (0.03 sec)

  1. pkg/kubelet/cm/node_container_manager_linux_test.go

    			systemReserved: getResourceList("50m", "50Mi"),
    			capacity:       getResourceList("10", "10Gi"),
    			expected:       getResourceList("50m", "150Mi"),
    		},
    
    		{
    			kubeReserved:   getResourceList("50m", "100Mi"),
    			systemReserved: getResourceList("", "50Mi"),
    			capacity:       getResourceList("10", "10Gi"),
    			expected:       getResourceList("50m", "150Mi"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
  2. cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml

            command: ["/usr/bin/nvidia-gpu-device-plugin", "-logtostderr"]
            name: nvidia-gpu-device-plugin
            resources:
              requests:
                cpu: 50m
                memory: 10Mi
              limits:
                cpu: 50m
                memory: 10Mi
            securityContext:
              privileged: true
            volumeMounts:
            - name: device-plugin
              mountPath: /device-plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/quantity_test.go

    			name:        "quantity_less",
    			expr:        `quantity("50M").isLessThan(quantity("50Mi"))`,
    			expectValue: trueVal,
    		},
    		{
    			name:        "quantity_less_obvious",
    			expr:        `quantity("50M").isLessThan(quantity("100M"))`,
    			expectValue: trueVal,
    		},
    		{
    			name:        "quantity_less_false",
    			expr:        `quantity("100M").isLessThan(quantity("50M"))`,
    			expectValue: falseVal,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. cluster/addons/addon-manager/kube-addons-test.sh

      limitrange="${limitrange//100m/50m}"
      create_resource_from_string "${limitrange}" "10" "1" "limitrange.yaml" "${TEST_NS}"
      if kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "100m"; then
        error "failed to update resource, still has 100m"
        return 1
      elif ! (kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "50m"); then
        error "failed to update resource, 50m limit was not reflected"
        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)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_proto_test.go

    		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}},
    	}
    	for _, testCase := range table {
    		q := MustParse(testCase.quantity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 07:12:11 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  6. plugin/pkg/admission/limitranger/admission_test.go

    					Min:  getComputeResourceList("50m", "2Mi"),
    				},
    				{
    					Type:           api.LimitTypeContainer,
    					Max:            getComputeResourceList("100m", "2Gi"),
    					Min:            getComputeResourceList("25m", "1Mi"),
    					Default:        getComputeResourceList("75m", "10Mi"),
    					DefaultRequest: getComputeResourceList("50m", "5Mi"),
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // quantity("50M").compareTo(quantity("50Mi")) // returns -1
    // quantity("50Mi").compareTo(quantity("50M")) // returns 1
    // quantity("150Mi").isGreaterThan(quantity("100Mi")) // returns true
    // quantity("50Mi").isGreaterThan(quantity("100Mi")) // returns false
    // quantity("50M").isLessThan(quantity("100M")) // returns true
    // quantity("100M").isLessThan(quantity("50M")) // returns false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

                - name: HOST_IP
                  valueFrom:
                    fieldRef:
                      fieldPath: status.hostIP
              resources:
                requests:
                  cpu: 50m
                limits:
                  memory: 30Mi
              volumeMounts:
    __EXTRA_VOL_MNTS__
                - mountPath: /var/run/secrets/tokens
                  name: konnectivity-agent-token
              livenessProbe:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. manifests/charts/istio-operator/values.yaml

      # Operator resource defaults
      operator:
        monitoring:
          host: 127.0.0.1
          port: 15014
        resources:
          limits:
            cpu: 200m
            memory: 256Mi
          requests:
            cpu: 50m
            memory: 128Mi
        # Set to `type: RuntimeDefault` to use the default profile if available.
        seccompProfile: {}
    
      # Node labels for pod assignment
      nodeSelector: {}
    
      # Tolerations for pod assignment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    				for i := 0; i < 4; i++ {
    					podSpec := resourcePodSpec("node1", "50M", "50m")
    					pods = append(pods, &v1.Pod{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: fmt.Sprintf("pod_%d", i),
    						},
    						Spec: podSpec,
    					})
    				}
    				return pods
    			}(),
    			deletedPod: func() *v1.Pod {
    				podSpec := resourcePodSpec("node1", "50M", "50m")
    				return &v1.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top