Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 398 for 300m (0.1 sec)

  1. 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)
  2. cmd/kubeadm/app/util/image/image_test.go

    		"example.com:3000/kindest/node":         "",
    		"example.com:3000/kindest/node:latest":  "latest",
    		"example.com:3000/kindest/node:v1.17.0": "v1.17.0",
    		"example.com:3000/kindest/node:v1.17.0@sha256:9512edae126da271b66b990b6fff768fbb7cd786c7d39e86bdf55906352fdf62": "v1.17.0",
    		"example.com:3000/kindest/node@sha256:9512edae126da271b66b990b6fff768fbb7cd786c7d39e86bdf55906352fdf62":         "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 30 13:28:45 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. test/stack.go

    		panic("fail")
    	}
    }
    
    func f0() {
    	// likely to make a new stack for f0,
    	// because the call to f1 puts 3000 bytes
    	// in our frame.
    	f1()
    }
    
    func f1() [3000]byte {
    	// likely to make a new stack for f1,
    	// because 3000 bytes were used by f0
    	// and we need 3000 more for the call
    	// to f2.  if the call to morestack in f1
    	// does not pass the frame size, the new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    		add element ip kube-proxy service-ips { 1.2.3.4 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    		add element ip kube-proxy service-nodeports { tcp . 3001 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    
    		add element ip kube-proxy no-endpoint-nodeports { tcp . 3001 comment "ns2/svc2:p80" : drop }
    		add element ip kube-proxy no-endpoint-services { 1.2.3.4 . tcp . 80 comment "ns2/svc2:p80" : drop }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    //
    // Examples:
    //
    // quantity("200M").compareTo(quantity("0.2G")) // returns 0
    // 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
    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. pilot/pkg/model/context_test.go

    	if port := model.ParsePort("localhost:3000"); port != 3000 {
    		t.Errorf("ParsePort(localhost:3000) => Got %d, want 3000", port)
    	}
    	if port := model.ParsePort("localhost"); port != 0 {
    		t.Errorf("ParsePort(localhost) => Got %d, want 0", port)
    	}
    	if port := model.ParsePort("127.0.0.1:3000"); port != 3000 {
    		t.Errorf("ParsePort(127.0.0.1:3000) => Got %d, want 3000", port)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission_test.go

    				corev1.ResourceCPU: "100m",
    			}),
    			expected: "cpu=100m",
    		},
    		{
    			input: toResourceList(map[corev1.ResourceName]string{
    				corev1.ResourcePods:                   "10",
    				corev1.ResourceServices:               "10",
    				corev1.ResourceReplicationControllers: "10",
    				corev1.ResourceServicesNodePorts:      "10",
    				corev1.ResourceRequestsCPU:            "100m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/node_container_manager_linux_test.go

    		hardThreshold  evictionapi.ThresholdValue
    	}{
    		{
    			kubeReserved:   getResourceList("100m", "100Mi"),
    			systemReserved: getResourceList("50m", "50Mi"),
    			capacity:       getResourceList("10", "10Gi"),
    			expected:       getResourceList("150m", "150Mi"),
    		},
    		{
    			kubeReserved:   getResourceList("100m", "100Mi"),
    			systemReserved: getResourceList("50m", "50Mi"),
    			hardThreshold: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
Back to top