Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for pod10 (0.39 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		{
    			podWithOtherFinalizers("pod12"),
    			nilOrphanOptions,
    			orphanDeleteStrategy,
    			false,
    			[]string{"foo.com/x", "bar.com/y", metav1.FinalizerOrphanDependents},
    		},
    		{
    			podWithNoFinalizer("pod13"),
    			nilOrphanOptions,
    			defaultDeleteStrategy,
    			true,
    			[]string{},
    		},
    		{
    			podWithNoFinalizer("pod14"),
    			nilOrphanOptions,
    			orphanDeleteStrategy,
    			false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. src/math/pow10.go

    var pow10negtab32 = [...]float64{
    	1e-00, 1e-32, 1e-64, 1e-96, 1e-128, 1e-160, 1e-192, 1e-224, 1e-256, 1e-288, 1e-320,
    }
    
    // Pow10 returns 10**n, the base-10 exponential of n.
    //
    // Special cases are:
    //
    //	Pow10(n) =    0 for n < -323
    //	Pow10(n) = +Inf for n > 308
    func Pow10(n int) float64 {
    	if 0 <= n && n <= 308 {
    		return pow10postab32[uint(n)/32] * pow10tab[uint(n)%32]
    	}
    
    	if -323 <= n && n <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    			},
    		},
    		{
    			name:                  "No CPU and memory, resource allocation exists",
    			pod:                   podWithUIDNameNsSpec("11", "pod11", "foo", *emptyPodSpec),
    			existingPodAllocation: podWithUIDNameNsSpec("11", "pod11", "foo", *emptyPodSpec),
    			expectedPodResourceAllocation: state.PodResourceAllocation{
    				"11": map[string]v1.ResourceList{
    					emptyPodSpec.Containers[0].Name: emptyPodSpec.Containers[0].Resources.Requests,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. hack/testdata/sorted-pods/sorted-pod1.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: sorted-pod1
      creationTimestamp: "2018-08-30T14:10:58Z"
      labels:
        name: sorted-pod3-label
    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	assert.Len(t, filteredInfos, 5)
    	assert.Len(t, allInfos, 11)
    	for _, c := range []string{"/pod0-i", "/pod0-c0"} {
    		if _, found := filteredInfos[c]; !found {
    			t.Errorf("%q is expected to be in the output\n", c)
    		}
    	}
    
    	expectedInfoKeys := []string{"pod0-i-terminated-1", "pod0-c0-terminated-1", "pod0-i-terminated-2", "pod0-c0-terminated-2", "pod0-i", "pod0-c0"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    func TestSyncServicePodSelection(t *testing.T) {
    	client, esController := newController(t, []string{"node-1"}, time.Duration(0))
    	ns := metav1.NamespaceDefault
    
    	pod1 := newPod(1, ns, true, 0, false)
    	esController.podStore.Add(pod1)
    
    	// ensure this pod will not match the selector
    	pod2 := newPod(2, ns, true, 0, false)
    	pod2.Labels["foo"] = "boo"
    	esController.podStore.Add(pod2)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    		Subsets: []v1.EndpointSubset{{
    			Addresses: []v1.EndpointAddress{
    				{
    					IP:        pod0.Status.PodIPs[0].IP,
    					NodeName:  &emptyNodeName,
    					TargetRef: &v1.ObjectReference{Kind: "Pod", Name: pod0.Name, Namespace: ns, ResourceVersion: "1"},
    				},
    			},
    			NotReadyAddresses: []v1.EndpointAddress{
    				{
    					IP:        pod1.Status.PodIPs[0].IP,
    					NodeName:  &emptyNodeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    				&fakeExtender{isBinder: true, interestedPodName: "pod0"},
    			},
    			wantBinderID: 1,
    		},
    		{
    			name:    "one of the extenders is a binder, but not interested in pod",
    			podName: "pod1",
    			extenders: []framework.Extender{
    				&fakeExtender{isBinder: false, interestedPodName: "pod1"},
    				&fakeExtender{isBinder: true, interestedPodName: "pod0"},
    			},
    			wantBinderID: -1, // default binding.
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			},
    		},
    	})
    	s.assertEvent(t, s.podXdsName("pod1"))
    	s.assertWaypointAddressForPod(t, "pod1", "10.0.0.1")
    
    	// label pod1 to use a different waypoint than the namespace specifies
    	s.labelPod(t, "pod1", testNS, map[string]string{constants.AmbientUseWaypointLabel: "waypoint-sa1"})
    	s.assertEvent(t, s.podXdsName("pod1"))
    	// assert that we're using the correct waypoint for pod1
    	s.assertWaypointAddressForPod(t, "pod1", "10.0.0.2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/taint_eviction_test.go

    			prevPod:     testutil.NewPod("pod1", ""),
    			newPod:      testutil.NewPod("pod1", "node1"),
    			taintedNodes: map[string][]corev1.Taint{
    				"node1": {createNoExecuteTaint(1)},
    			},
    			expectDelete: true,
    		},
    		{
    			description: "scheduling onto tainted Node with toleration",
    			prevPod:     addToleration(testutil.NewPod("pod1", ""), 1, -1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top