Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,281 for terminator (0.18 sec)

  1. pkg/envoy/agent.go

    			}
    		}
    	} else {
    		log.Infof("Graceful termination period is %v, starting...", a.terminationDrainDuration)
    		select {
    		case status := <-a.statusCh:
    			log.Infof("Envoy exited with status %v", status.err)
    			log.Infof("Graceful termination logic ended prematurely, envoy process terminated early")
    			return
    		case <-time.After(a.terminationDrainDuration):
    			log.Infof("Graceful termination period complete, terminating remaining proxies.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/flag/flag.go

    called 0, false, etc. You must use the -flag=false form to turn
    off a boolean flag.
    
    Flag parsing stops just before the first non-flag argument
    ("-" is a non-flag argument) or after the terminator "--".
    
    Integer flags accept 1234, 0664, 0x1234 and may be negative.
    Boolean flags may be:
    
    	1, 0, t, f, T, F, true, false, TRUE, FALSE, True, False
    
    Duration flags accept any input valid for time.ParseDuration.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

            continue;
          }
          // Check if the same extern value is returned in each branch.
          for (Region* region : branches.drop_front()) {
            Operation* terminator = region->front().getTerminator();
            if (terminator->getOperand(index) != returned_val) return failure();
          }
          result_to_extern_value[result] = returned_val;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	ERROR_NO_SUCH_INTERFACE_DEVICE               Errno = ERROR_NO_SUCH_DEVICE_INTERFACE
    )
    
    const (
    	MAX_DEVICE_ID_LEN   = 200
    	MAX_DEVNODE_ID_LEN  = MAX_DEVICE_ID_LEN
    	MAX_GUID_STRING_LEN = 39 // 38 chars + terminator null
    	MAX_CLASS_NAME_LEN  = 32
    	MAX_PROFILE_LEN     = 80
    	MAX_CONFIG_VALUE    = 9999
    	MAX_INSTANCE_VALUE  = 9999
    	CONFIGMG_VERSION    = 0x0400
    )
    
    // Maximum string length constants
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      Operation& yield = control_node.GetBody().back();
      if (!isa<YieldOp>(yield))
        return yield.emitOpError()
               << "invalid TFL.control_node terminator, yield expected";
    
      // Ensure that the terminator's operands and the control_node results match in
      // types.
      const int result_count =
          control_node.getNumResults() - 1;  // 1 for control token
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. src/runtime/testdata/testwinsignal/main.go

    	//
    	// (In https://go.dev/issue/41884 the handler returned immediately,
    	// which caused Windows to terminate the program before the goroutine
    	// that received the SIGTERM had a chance to actually clean up.)
    	time.Sleep(time.Second)
    
    	// Print the signal's name: "terminated" makes the test succeed.
    	fmt.Println(sig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker.go

    // it terminates. If the worker doesn't terminate after a short time, stop
    // signals it with os.Interrupt (where supported), then os.Kill.
    //
    // stop returns the error the process terminated with, if any (same as
    // w.waitErr).
    //
    // stop must be called at least once after start returns successfully, even if
    // the worker process terminates unexpectedly.
    func (w *worker) stop() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	// Intended for use by subsystem sync loops to avoid performing background setup
    	// after termination has been requested for a pod. Callers must ensure that the
    	// syncPod method is non-blocking when their data is absent.
    	ShouldPodBeFinished(uid types.UID) bool
    	// IsPodTerminationRequested returns true when pod termination has been requested
    	// until the termination completes and the pod is removed from config. This should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. src/internal/testenv/exec.go

    			// grace periods to clean up: one for the delay between the first
    			// termination signal being sent (via the Cancel callback when the Context
    			// expires) and the process being forcibly terminated (via the WaitDelay
    			// field), and a second one for the delay between the process being
    			// terminated and the test logging its output for debugging.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. pilot/pkg/server/instance.go

    	go func() {
    		for {
    			select {
    			case <-stop:
    				// Wait for any tasks that are required for termination.
    				i.requiredTerminations.Wait()
    
    				// Indicate that this instance is not terminated.
    				shutdown()
    				return
    			case next := <-i.components:
    				t0 := time.Now()
    				if err := next.task(stop); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top