func()

in secretcache/cacheItem.go [46:52]


func (ci *secretCacheItem) isRefreshNeeded() bool {
	if ci.cacheObject.isRefreshNeeded() {
		return true
	}

	return ci.nextRefreshTime <= time.Now().UnixNano()
}