Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for updateRelistTime (0.11 sec)

  1. pkg/kubelet/pleg/generic.go

    	}
    }
    
    func (g *GenericPLEG) getRelistTime() time.Time {
    	val := g.relistTime.Load()
    	if val == nil {
    		return time.Time{}
    	}
    	return val.(time.Time)
    }
    
    func (g *GenericPLEG) updateRelistTime(timestamp time.Time) {
    	g.relistTime.Store(timestamp)
    }
    
    // Relist queries the container runtime for list of pods/containers, compare
    // with the internal pods/containers, and generates events accordingly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top