Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shutdownRes (0.17 sec)

  1. pkg/kube/controllers/common.go

    	if e.DeleteFunc != nil {
    		e.DeleteFunc(Extract[T](obj))
    	}
    }
    
    var _ cache.ResourceEventHandler = EventHandler[Object]{}
    
    type Shutdowner interface {
    	ShutdownHandlers()
    }
    
    // ShutdownAll is a simple helper to shutdown all informers
    func ShutdownAll(s ...Shutdowner) {
    	for _, h := range s {
    		h.ShutdownHandlers()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pkg/windows/service/service.go

    				s <- c.CurrentStatus
    			case svc.Stop, svc.Shutdown:
    				klog.Infof("Service stopping")
    				// We need to translate this request into a signal that can be handled by the signal handler
    				// handling shutdowns normally (currently apiserver/pkg/server/signal.go).
    				// If we do not do this, our main threads won't be notified of the upcoming shutdown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 11:25:33 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top