Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cannotMultipleRunBackend (0.43 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/union_test.go

    			}
    		}
    	}
    }
    
    type cannotMultipleRunBackend struct {
    	started chan struct{}
    }
    
    func (b *cannotMultipleRunBackend) ProcessEvents(events ...*auditinternal.Event) bool {
    	return true
    }
    
    func (b *cannotMultipleRunBackend) Run(stopCh <-chan struct{}) error {
    	close(b.started)
    	return nil
    }
    
    func (b *cannotMultipleRunBackend) Shutdown() {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 20 09:51:25 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top