Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 51 of 51 for subresource (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	return c.stopped
    }
    
    // Stop implements the graceful termination.
    func (c *Cacher) Stop() {
    	c.stopLock.Lock()
    	if c.stopped {
    		// avoid stopping twice (note: cachers are shared with subresources)
    		c.stopLock.Unlock()
    		return
    	}
    	c.stopped = true
    	c.ready.stop()
    	c.stopLock.Unlock()
    	close(c.stopCh)
    	c.stopWg.Wait()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top