Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unsetInitialized (0.21 sec)

  1. pkg/kubelet/util/manager/watch_based_manager.go

    	return i.stopThreadUnsafe()
    }
    
    func (i *objectCacheItem) stopThreadUnsafe() bool {
    	if i.stopped {
    		return false
    	}
    	i.stopped = true
    	close(i.stopCh)
    	if !i.immutable {
    		i.store.unsetInitialized()
    	}
    	return true
    }
    
    func (i *objectCacheItem) setLastAccessTime(time time.Time) {
    	i.lock.Lock()
    	defer i.lock.Unlock()
    	i.lastAccessTime = time
    }
    
    func (i *objectCacheItem) setImmutable() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top