Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for inactivePodClaims (0.31 sec)

  1. pkg/kubelet/cm/dra/manager.go

    		uid        types.UID
    		namespace  string
    		claimNames []string
    	}
    	inactivePodClaims := make(map[string]*podClaims)
    	m.cache.RLock()
    	for _, claimInfo := range m.cache.claimInfo {
    		for podUID := range claimInfo.PodUIDs {
    			if activePods.Has(podUID) {
    				continue
    			}
    			if inactivePodClaims[podUID] == nil {
    				inactivePodClaims[podUID] = &podClaims{
    					uid:        types.UID(podUID),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top