Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for shutdownRes (0.21 sec)

  1. src/net/http/serve_test.go

    	var once sync.Once
    	statesRes := make(chan map[ConnState]int, 1)
    	shutdownRes := make(chan error, 1)
    	gotOnShutdown := make(chan struct{})
    	handler := HandlerFunc(func(w ResponseWriter, r *Request) {
    		first := false
    		once.Do(func() {
    			statesRes <- cst.ts.Config.ExportAllConnsByState()
    			go func() {
    				shutdownRes <- cst.ts.Config.Shutdown(context.Background())
    			}()
    			first = true
    		})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. docs/changelogs/changelog_3x.md

        implementation("org.conscrypt:conscrypt-openjdk-uber:1.4.0")
        implementation("com.squareup.okio:okio:1.15.0")
        ```
    
     *  Fix: Handle dispatcher executor shutdowns gracefully. When there aren't any threads to carry a
        call its callback now gets a `RejectedExecutionException`.
     *  Fix: Don't permanently cache responses with `Cache-Control: immutable`. We misunderstood the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.20.md

    ### Introducing Graceful Node Shutdown (Alpha)
    
    The `GracefulNodeShutdown` feature is now in Alpha. This allows kubelet to be aware of node system shutdowns, enabling graceful termination of pods during a system shutdown. This feature can be [enabled through feature gate](https://docs.k8s.io/concepts/architecture/nodes/#graceful-node-shutdown).
    
    ### Runtime log sanitation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.9.md

    * Backport Cloud CIDR allocator fixes to 1.9 ([#61797](https://github.com/kubernetes/kubernetes/pull/61797), [@satyasm](https://github.com/satyasm))
    * openstack cinder detach problem is fixed if nova is shutdowned ([#56846](https://github.com/kubernetes/kubernetes/pull/56846), [@zetaab](https://github.com/zetaab))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

    * Remove deprecated container-linux support in gce kube-up.sh.  ([#58098](https://github.com/kubernetes/kubernetes/pull/58098), [@mikedanese](https://github.com/mikedanese))
    * openstack cinder detach problem is fixed if nova is shutdowned ([#56846](https://github.com/kubernetes/kubernetes/pull/56846), [@zetaab](https://github.com/zetaab))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. RELEASE.md

        not reload checkpoints for evaluation.
    *   `RunConfig` now sets device_filters to restrict how workers and PS can
        communicate. This can speed up training and ensure clean shutdowns in some
        situations. But if you have jobs that require communication between workers,
        you will have to set custom session_options in your `RunConfig`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top