Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for c000 (0.06 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_test.go

    	// This offset offsetCRI is to distinguish it from Cadvisor stats
    	offsetCRI = 1000
    )
    
    const (
    	seedRoot       = 0
    	seedKubelet    = 200
    	seedMisc       = 300
    	seedSandbox0   = 1000
    	seedContainer0 = 2000
    	seedSandbox1   = 3000
    	seedContainer1 = 4000
    	seedContainer2 = 5000
    	seedSandbox2   = 6000
    	seedContainer3 = 7000
    	seedSandbox3   = 8000
    )
    
    const (
    	pName0 = "pod0"
    	pName1 = "pod1"
    	pName2 = "pod2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    					},
    					Allocatable: v1.ResourceList{
    						v1.ResourceCPU:              *resource.NewMilliQuantity(2000, resource.DecimalSI),
    						v1.ResourceMemory:           *resource.NewQuantity(1024, resource.BinarySI),
    						v1.ResourcePods:             *resource.NewQuantity(110, resource.DecimalSI),
    						v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}{
    		{
    			totalObjectNum:  5000,
    			expectObjectNum: 50,
    		},
    		{
    			totalObjectNum:  5000,
    			expectObjectNum: 500,
    		},
    		{
    			totalObjectNum:  5000,
    			expectObjectNum: 1000,
    		},
    		{
    			totalObjectNum:  5000,
    			expectObjectNum: 2500,
    		},
    		{
    			totalObjectNum:  5000,
    			expectObjectNum: 5000,
    		},
    	}
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    		Generic: &cmoptions.GenericControllerManagerConfigurationOptions{
    			GenericControllerManagerConfiguration: &cmconfig.GenericControllerManagerConfiguration{
    				Address:         "0.0.0.0", // Note: This field should have no effect in CM now, and "0.0.0.0" is the default value.
    				MinResyncPeriod: metav1.Duration{Duration: 8 * time.Hour},
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					Kubeconfig:  "/kubeconfig",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    									"minimum": 1000,
    								},
    							},
    						},
    					}},
    				applyPatchOperation{
    					"updating validating field num2 to another validating value, but rachet invalid field num1",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"nums": map[string]interface{}{
    							"num1": 1,
    							"num2": 2000,
    						},
    					}},
    				expectError{applyPatchOperation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar_test.go

    	port8000 = []*Port{
    		{
    			Name:     "uds",
    			Port:     8000,
    			Protocol: "HTTP",
    		},
    	}
    
    	port9000 = []*Port{
    		{
    			Name: "port1",
    			Port: 9000,
    		},
    	}
    
    	twoPorts = []*Port{
    		{
    			Name:     "uds",
    			Port:     8000,
    			Protocol: "HTTP",
    		},
    		{
    			Name:     "uds",
    			Port:     7000,
    			Protocol: "HTTP",
    		},
    	}
    
    	allPorts = []*Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_mounter_test.go

    			readOnly:   false,
    			fsType:     "",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    			name: "fstype, fsgroup, RWM, ROM provided (should not apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteMany,
    				corev1.ReadOnlyMany,
    			},
    			fsType:     "ext4",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. src/net/netip/netip_test.go

    		{mustIP("::1"), mustIP("::2"), true},
    		{mustIP("::1"), mustIP("::1%foo"), true},
    		{mustIP("::1%foo"), mustIP("::2"), true},
    		{mustIP("::2"), mustIP("::3"), true},
    
    		{mustIP("::"), mustIP("0.0.0.0"), false},
    		{mustIP("0.0.0.0"), mustIP("::"), true},
    
    		{mustIP("::1%a"), mustIP("::1%b"), true},
    		{mustIP("::1%a"), mustIP("::1%a"), false},
    		{mustIP("::1%b"), mustIP("::1%a"), false},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    		if l := findListenerByPort(listeners, 3306); !isMysqlListener(l) {
    			t.Fatalf("expected MySQL listener on port 3306, found %v", l)
    		}
    
    		if l := findListenerByPort(listeners, 9000); !isHTTPListener(l) {
    			t.Fatalf("expected HTTP listener on port 9000, found TCP\n%v", l)
    		}
    
    		l = findListenerByPort(listeners, 8888)
    		if len(l.FilterChains) != 1 {
    			t.Fatalf("expected %d filter chains, found %d", 1, len(l.FilterChains))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top