Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for acceptAll (0.25 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    func (wc *watchChan) filter(obj runtime.Object) bool {
    	if wc.internalPred.Empty() {
    		return true
    	}
    	matched, err := wc.internalPred.Matches(obj)
    	return err == nil && matched
    }
    
    func (wc *watchChan) acceptAll() bool {
    	return wc.internalPred.Empty()
    }
    
    // transform transforms an event into a result for user if not filtered.
    func (wc *watchChan) transform(e *event) (res *watch.Event) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top