Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetPodByMirrorPod (0.41 sec)

  1. pkg/kubelet/pod/testing/mock_manager.go

    }
    
    // GetPodByMirrorPod mocks base method.
    func (m *MockManager) GetPodByMirrorPod(arg0 *v1.Pod) (*v1.Pod, bool) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPodByMirrorPod", arg0)
    	ret0, _ := ret[0].(*v1.Pod)
    	ret1, _ := ret[1].(bool)
    	return ret0, ret1
    }
    
    // GetPodByMirrorPod indicates an expected call of GetPodByMirrorPod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/pod_manager.go

    	// GetPodByUID provides the (non-mirror) pod that matches pod UID, as well as
    	// whether the pod is found.
    	GetPodByUID(types.UID) (*v1.Pod, bool)
    	// GetPodByMirrorPod returns the static pod for the given mirror pod and
    	// whether it was known to the pod manager.
    	GetPodByMirrorPod(*v1.Pod) (*v1.Pod, bool)
    	// GetMirrorPodByPod returns the mirror pod for the given static pod and
    	// whether it was known to the pod manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top