Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 367 for exit_a (0.27 sec)

  1. pkg/envoy/agent.go

    }
    
    // Run starts the envoy and waits until it terminates.
    // There are a few exit paths:
    //  1. Envoy exits. In this case, we simply log and exit.
    //  2. /quitquitquit (on agent, not Envoy) is called. We will set skipDrain and cancel the context, which triggers us to exit immediately.
    //  3. SIGTERM. We will drain, wait termination drain duration, then exit. This is the standard pod shutdown; SIGTERM arrives when pod shutdown starts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_container_deletor.go

    			}
    		}
    	}, 0, wait.NeverStop)
    
    	return &podContainerDeletor{
    		worker:           buffer,
    		containersToKeep: containersToKeep,
    	}
    }
    
    // getContainersToDeleteInPod returns the exited containers in a pod whose name matches the name inferred from filterContainerId (if not empty), ordered by the creation time from the latest to the earliest.
    // If filterContainerID is empty, all dead containers in the pod are returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/base/base.go

    			Error(e)
    		}
    		return
    	}
    	Errorf("go: %v", err)
    }
    
    func Fatal(err error) {
    	Error(err)
    	Exit()
    }
    
    var exitStatus = 0
    var exitMu sync.Mutex
    
    func SetExitStatus(n int) {
    	exitMu.Lock()
    	if exitStatus < n {
    		exitStatus = n
    	}
    	exitMu.Unlock()
    }
    
    func GetExitStatus() int {
    	return exitStatus
    }
    
    // Run runs the command, with stdout and stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis_test.cc

                .ok());
        exits[i] = ops::internal::Exit(root.WithOpName(absl::StrCat("exit_", i)),
                                       iv.output);
      }
    
      FixupSourceAndSinkEdges(root.graph());
    
      {
        PredicateMapTy predicate_map;
        TF_ASSERT_OK(ComputePredicates(*root.graph(), &predicate_map));
    
        EXPECT_NE(predicate_map[ControlOutputFor(exits[0])],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. src/runtime/signal_windows_test.go

    	}
    	if err := cmd.Start(); err != nil {
    		t.Fatalf("Start failed: %v", err)
    	}
    	defer func() {
    		cmd.Process.Kill()
    		cmd.Wait()
    	}()
    
    	// check child exited gracefully, did not timeout
    	if err := cmd.Wait(); err != nil {
    		t.Fatalf("Program exited with error: %v\n%s", err, &stderr)
    	}
    
    	// check child received, handled SIGTERM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. src/syscall/syscall_bsd.go

    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	stopped = 0x7F
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. misc/wasm/wasm_exec_node.js

    go.argv = process.argv.slice(2);
    go.env = Object.assign({ TMPDIR: require("os").tmpdir() }, process.env);
    go.exit = process.exit;
    WebAssembly.instantiate(fs.readFileSync(process.argv[2]), go.importObject).then((result) => {
    	process.on("exit", (code) => { // Node.js exits if no event handler is pending
    		if (code === 0 && !go.exited) {
    			// deadlock, make Go print error and stack traces
    			go._pendingEvent = { id: 0 };
    			go._resume();
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:49:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/toolchain/exec.go

    		err := cmd.Run()
    		if err != nil {
    			if e, ok := err.(*exec.ExitError); ok && e.ProcessState != nil {
    				if e.ProcessState.Exited() {
    					os.Exit(e.ProcessState.ExitCode())
    				}
    				base.Fatalf("exec %s: %s", gotoolchain, e.ProcessState)
    			}
    			base.Fatalf("exec %s: %s", exe, err)
    		}
    		os.Exit(0)
    	}
    	err := syscall.Exec(exe, os.Args, os.Environ())
    	base.Fatalf("exec %s: %v", gotoolchain, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/asan_test.go

    						!strings.Contains(out, noSymbolizer) &&
    						compilerSupportsLocation() {
    
    						t.Errorf("%#q exited without expected location of the error\n%s; got failure\n%s", strings.Join(cmd.Args, " "), tc.errorLocation, out)
    					}
    					return
    				}
    				t.Fatalf("%#q exited without expected memory access error\n%s; got failure\n%s", strings.Join(cmd.Args, " "), tc.memoryAccessError, out)
    			}
    			mustRun(t, cmd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	killed  = 9
    	stopped = 0x7F
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top