Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAllEventsSinceLocked (0.29 sec)

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

    func (w *watchCache) isIndexValidLocked(index int) bool {
    	return index >= w.startIndex
    }
    
    // getAllEventsSinceLocked returns a watchCacheInterval that can be used to
    // retrieve events since a certain resourceVersion. This function assumes to
    // be called under the watchCache lock.
    func (w *watchCache) getAllEventsSinceLocked(resourceVersion uint64, key string, opts storage.ListOptions) (*watchCacheInterval, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	return result, nil
    }
    
    func (w *testWatchCache) getCacheIntervalForEvents(resourceVersion uint64, opts storage.ListOptions) (*watchCacheInterval, error) {
    	w.RLock()
    	defer w.RUnlock()
    
    	return w.getAllEventsSinceLocked(resourceVersion, "", opts)
    }
    
    // newTestWatchCache just adds a fake clock.
    func newTestWatchCache(capacity int, indexers *cache.Indexers) *testWatchCache {
    	keyFunc := func(obj runtime.Object) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// underlying watchCache is calling processEvent under its lock.
    	c.watchCache.RLock()
    	defer c.watchCache.RUnlock()
    
    	var cacheInterval *watchCacheInterval
    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    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