Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for isShutdown (0.26 sec)

  1. pkg/test/framework/suite.go

    	// they see that this suite has been skipped.
    	_ = s.mRun(ctx)
    
    	// Return success.
    	return 0
    }
    
    func (s *suiteImpl) run() (errLevel int) {
    	tc, shutdown, err := tracing.InitializeFullBinary(s.testID)
    	if err != nil {
    		return 99
    	}
    	defer shutdown()
    	if err := initRuntime(s); err != nil {
    		scopes.Framework.Errorf("Error during test framework init: %v", err)
    		return exitCodeInitError
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            return new DefaultConnectionMetaData();
        }
    
        /**
         * This is used by consumers 2.2-rc-1 and later
         */
        @Override
        public void shutdown(ShutdownParameters parameters) {
            buildProcessState.close();
        }
    
        /**
         * This is used by consumers 2.1-rc-1 and later
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set.go

    	ssc.eventBroadcaster.StartStructuredLogging(3)
    	ssc.eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: ssc.kubeClient.CoreV1().Events("")})
    	defer ssc.eventBroadcaster.Shutdown()
    
    	defer ssc.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting stateful set controller")
    	defer logger.Info("Shutting down statefulset controller")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. cmd/server-main.go

    		Usage:  "bind to a specific ADDRESS:PORT for embedded Console UI, ADDRESS can be an IP or hostname",
    		EnvVar: "MINIO_CONSOLE_ADDRESS",
    	},
    	cli.DurationFlag{
    		Name:   "shutdown-timeout",
    		Value:  xhttp.DefaultShutdownTimeout,
    		Usage:  "shutdown timeout to gracefully shutdown server",
    		EnvVar: "MINIO_SHUTDOWN_TIMEOUT",
    		Hidden: true,
    	},
    	cli.DurationFlag{
    		Name:   "idle-timeout",
    		Value:  xhttp.DefaultIdleTimeout,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		if n != 1<<20 || err != nil {
    			t.Errorf("client read response body: %d, %v", n, err)
    		}
    		// This shutdown really should be automatic, but it isn't right now.
    		// Shutdown (rather than Close) ensures the handler is done before we return.
    		res.Body.Close()
    		cst.ts.Config.Shutdown(context.Background())
    	}
    }
    
    // Test that the HTTP/2 server handles Server.WriteTimeout (Issue 18437)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    	//
    	// Typically a custom Cancel will send a signal to the command's
    	// Process, but it may instead take other actions to initiate cancellation,
    	// such as closing a stdin or stdout pipe or sending a shutdown request on a
    	// network socket.
    	//
    	// If the command exits with a success status after Cancel is
    	// called, and Cancel does not return an error equivalent to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. 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)
  8. cni/pkg/nodeagent/net.go

    	s.iptablesConfigurator.DeleteHostRules()
    
    	log.Debug("destroying host ipset")
    	s.hostsideProbeIPSet.Flush()
    	if err := s.hostsideProbeIPSet.DestroySet(); err != nil {
    		log.Warnf("could not destroy host ipset on shutdown")
    	}
    	log.Debug("stopping ztunnel server")
    	s.ztunnelServer.Close()
    }
    
    func (s *NetServer) rescanPod(pod *corev1.Pod) error {
    	// this can happen if the pod was dynamically added to the mesh after it was created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            executorServiceTypeOnCurrentJvm()     | Executor                       | "java.util.concurrent.Executors.newSingleThreadExecutor().tap { shutdown() }"
            ByteArrayInputStream                  | InputStream                    | "new java.io.ByteArrayInputStream([] as byte[])"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  10. pilot/test/xds/fake.go

    	// Disable debounce to reduce test times
    	s.DebounceOptions.DebounceAfter = opts.DebounceTime
    	// Setup time to Now instead of process start to make logs not misleading
    	s.DiscoveryStartTime = time.Now()
    	t.Cleanup(s.Shutdown)
    
    	serviceHandler := func(_, curr *model.Service, _ model.Event) {
    		pushReq := &model.PushRequest{
    			Full:           true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top