Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for isShutdown (0.26 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		&v1core.EventSinkImpl{
    			Interface: v1core.New(nc.kubeClient.CoreV1().RESTClient()).Events(""),
    		})
    	defer nc.broadcaster.Shutdown()
    
    	// Close node update queue to cleanup go routine.
    	defer nc.nodeUpdateQueue.ShutDown()
    	defer nc.podUpdateQueue.ShutDown()
    
    	logger.Info("Starting node controller")
    	defer logger.Info("Shutting down node controller")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * ```
     *
     * ## Shutdown Isn't Necessary
     *
     * The threads and connections that are held will be released automatically if they remain idle. But
     * if you are writing a application that needs to aggressively release unused resources you may do
     * so.
     *
     * Shutdown the dispatcher's executor service with [shutdown()][ExecutorService.shutdown]. This will
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

                }
              }
              return result
            }
    
            override fun peek(): MockResponse = queueDispatcher.peek()
    
            override fun shutdown() {
              queueDispatcher.shutdown()
            }
          }
        client =
          client.newBuilder()
            .proxy(server.toProxyAddress())
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/syscall/zerrors_solaris_amd64.go

    	EPROTOTYPE      = Errno(0x62)
    	ERANGE          = Errno(0x22)
    	EREMCHG         = Errno(0x52)
    	EREMOTE         = Errno(0x42)
    	ERESTART        = Errno(0x5b)
    	EROFS           = Errno(0x1e)
    	ESHUTDOWN       = Errno(0x8f)
    	ESOCKTNOSUPPORT = Errno(0x79)
    	ESPIPE          = Errno(0x1d)
    	ESRCH           = Errno(0x3)
    	ESRMNT          = Errno(0x45)
    	ESTALE          = Errno(0x97)
    	ESTRPIPE        = Errno(0x5c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    }
    
    // Deleting the temporary backend and stopping the server.
    func (testServer TestServer) Stop() {
    	testServer.cancel()
    	testServer.Server.Close()
    	testServer.Obj.Shutdown(context.Background())
    	os.RemoveAll(testServer.Root)
    	for _, ep := range testServer.Disks {
    		for _, disk := range ep.Endpoints {
    			os.RemoveAll(disk.Path)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	listen(s Handle, backlog int32) (err error) [failretval==socket_error] = ws2_32.listen
    //sys	shutdown(s Handle, how int32) (err error) [failretval==socket_error] = ws2_32.shutdown
    //sys	Closesocket(s Handle) (err error) [failretval==socket_error] = ws2_32.closesocket
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	}
    
    	tc.informerFactory.Start(tc.ctx.Done())
    	t.Cleanup(func() {
    		// Need to cancel before waiting for the shutdown.
    		tCtx.Cancel("test is done")
    		// Now we can wait for all goroutines to stop.
    		tc.informerFactory.Shutdown()
    	})
    
    	tc.informerFactory.WaitForCacheSync(tc.ctx.Done())
    
    	for _, node := range nodes {
    		nodeInfo := framework.NewNodeInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. cmd/erasure-healing_test.go

    func TestHealing(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	obj, fsDirs, err := prepareErasure16(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer obj.Shutdown(context.Background())
    
    	// initialize the server and obtain the credentials and root.
    	// credentials are necessary to sign the HTTP request.
    	if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    }
    
    func (z *erasureServerPools) Shutdown(ctx context.Context) error {
    	g := errgroup.WithNErrs(len(z.serverPools))
    
    	for index := range z.serverPools {
    		index := index
    		g.Go(func() error {
    			return z.serverPools[index].Shutdown(ctx)
    		}, index)
    	}
    
    	for _, err := range g.Wait() {
    		if err != nil {
    			storageLogIf(ctx, err)
    		}
    		// let's the rest shutdown
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    	dsc.eventBroadcaster.StartStructuredLogging(3)
    	dsc.eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: dsc.kubeClient.CoreV1().Events("")})
    	defer dsc.eventBroadcaster.Shutdown()
    
    	defer dsc.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting daemon sets controller")
    	defer logger.Info("Shutting down daemon sets controller")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top