Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cpod3 (0.07 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    	pod2 := newPod("low-priority-low-usage", lowPriority, nil, nil)
    	pod3 := newPod("high-priority-high-usage", highPriority, nil, nil)
    	pod4 := newPod("high-priority-low-usage", highPriority, nil, nil)
    	stats := map[*v1.Pod]statsapi.PodStats{
    		pod1: newPodProcessStats(pod1, 20),
    		pod2: newPodProcessStats(pod2, 6),
    		pod3: newPodProcessStats(pod3, 20),
    		pod4: newPodProcessStats(pod4, 5),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    			},
    		},
    		{
    			name:                  "Having both memory and cpu, resource allocation exists (with different value)",
    			pod:                   podWithUIDNameNsSpec("3", "pod3", "foo", *cpu500mMem500MPodSpec),
    			existingPodAllocation: podWithUIDNameNsSpec("3", "pod3", "foo", *cpu800mMem800MPodSpec),
    			expectedPodResourceAllocation: state.PodResourceAllocation{
    				"3": map[string]v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    func Test_InFlightPods(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    	pod := st.MakePod().Name("targetpod").UID("pod1").Obj()
    	pod2 := st.MakePod().Name("targetpod2").UID("pod2").Obj()
    	pod3 := st.MakePod().Name("targetpod3").UID("pod3").Obj()
    	var poppedPod, poppedPod2 *framework.QueuedPodInfo
    
    	type action struct {
    		// ONLY ONE of the following should be set.
    		eventHappens *framework.ClusterEvent
    		podPopped    *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    		st.MakePod().Name("pod2").UID("pod2").SchedulerName("match-node2").Obj(),
    		st.MakePod().Name("pod3").UID("pod3").SchedulerName("match-node2").Obj(),
    		st.MakePod().Name("pod4").UID("pod4").SchedulerName("match-node3").Obj(),
    	}
    	wantBindings := map[string]string{
    		"pod1": "node3",
    		"pod2": "node2",
    		"pod3": "node2",
    		"pod4": "node3",
    	}
    	wantControllers := map[string]string{
    		"pod1": "match-node3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		{
    			podWithOtherFinalizers("pod2"),
    			orphanOptions,
    			defaultDeleteStrategy,
    			false,
    			[]string{"foo.com/x", "bar.com/y", metav1.FinalizerOrphanDependents},
    		},
    		{
    			podWithNoFinalizer("pod3"),
    			orphanOptions,
    			defaultDeleteStrategy,
    			false,
    			[]string{metav1.FinalizerOrphanDependents},
    		},
    		{
    			podWithOnlyOrphanFinalizer("pod4"),
    			orphanOptions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    				buildPod().name("pod3").ns(job.Namespace).Pod,
    				buildPod().name("pod4").job(job).Pod,
    			},
    			wantPods:          []string{"pod1", "pod4"},
    			wantPodsFinalizer: []string{"pod1"},
    		},
    		"adopt": {
    			pods: []*v1.Pod{
    				buildPod().name("pod1").job(job).Pod,
    				buildPod().name("pod2").job(job).clearOwner().Pod,
    				buildPod().name("pod3").job(otherJob).Pod,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top