Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AssertStartedPods (0.12 sec)

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

    		f.T.Errorf("AssertCallCounts: expected %s to be called %d times, but was actually called %d times.", funcName, expectedCount, actualCount)
    		return false
    	}
    	return true
    }
    
    func (f *FakeRuntime) AssertStartedPods(pods []string) bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.assertList(pods, f.StartedPods)
    }
    
    func (f *FakeRuntime) AssertKilledPods(pods []string) bool {
    	f.Lock()
    	defer f.Unlock()
    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