Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetPodAllocation (0.17 sec)

  1. pkg/kubelet/status/testing/mock_pod_status_provider.go

    }
    
    // SetPodAllocation mocks base method.
    func (m *MockManager) SetPodAllocation(pod *v1.Pod) error {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "SetPodAllocation", pod)
    	ret0, _ := ret[0].(error)
    	return ret0
    }
    
    // SetPodAllocation indicates an expected call of SetPodAllocation.
    func (mr *MockManagerMockRecorder) SetPodAllocation(pod any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/kubelet/status/status_manager.go

    	// GetPodResizeStatus returns checkpointed PodStatus.Resize value
    	GetPodResizeStatus(podUID string) (v1.PodResizeStatus, bool)
    
    	// SetPodAllocation checkpoints the resources allocated to a pod's containers.
    	SetPodAllocation(pod *v1.Pod) error
    
    	// SetPodResizeStatus checkpoints the last resizing decision for the pod.
    	SetPodResizeStatus(podUID types.UID, resize v1.PodResizeStatus) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
Back to top