Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AssertStartedContainers (0.43 sec)

  1. pkg/kubelet/container/testing/fake_runtime.go

    }
    
    func (f *FakeRuntime) AssertKilledPods(pods []string) bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.assertList(pods, f.KilledPods)
    }
    
    func (f *FakeRuntime) AssertStartedContainers(containers []string) bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.assertList(containers, f.StartedContainers)
    }
    
    func (f *FakeRuntime) AssertKilledContainers(containers []string) bool {
    	f.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top