Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startedStaticPodsByFullname (0.29 sec)

  1. pkg/kubelet/pod_workers_test.go

    			}
    
    			// if maps are neither nil nor empty
    			if len(podWorkers.startedStaticPodsByFullname) != 0 ||
    				len(podWorkers.startedStaticPodsByFullname) != len(tc.expectedStartedStaticPodsByFullname) {
    				if !reflect.DeepEqual(
    					podWorkers.startedStaticPodsByFullname,
    					tc.expectedStartedStaticPodsByFullname) {
    					t.Errorf("startedStaticPodsByFullname: expected %v, got %v",
    						tc.expectedStartedStaticPodsByFullname,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	}
    	status.finished = true
    	status.working = false
    	status.terminatedAt = p.clock.Now()
    
    	if p.startedStaticPodsByFullname[status.fullname] == pod.UID {
    		delete(p.startedStaticPodsByFullname, status.fullname)
    	}
    }
    
    // startPodSync is invoked by each pod worker goroutine when a message arrives on the pod update channel.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top