Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for exit_a (0.21 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. build/common.sh

    ${docker_output}
    
    To retry manually, run:
    
    DOCKER_CLI_EXPERIMENTAL=enabled ${build_cmd[*]}
    
    EOF
        return 1
      }
    }
    
    function kube::build::ensure_data_container() {
      # If the data container exists AND exited successfully, we can use it.
      # Otherwise nuke it and start over.
      local ret=0
      local code=0
    
      code=$(docker inspect \
          -f '{{.State.ExitCode}}' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_test.go

    				}
    			}
    
    			// Provide an explicit opportunity for this Go
    			// routine to change Ms.
    			runtime.Gosched()
    
    			if once {
    				// One waiter routine will have exited.
    				routines--
    			}
    
    			// Whatever M we are now running on, confirm
    			// we see the wanted value too.
    			if v, _, e := syscall.Syscall(syscall.SYS_PRCTL, PR_GET_KEEPCAPS, 0, 0); e != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/runtime/mfinal.go

    //
    // The finalizer is scheduled to run at some arbitrary time after the
    // program can no longer reach the object to which obj points.
    // There is no guarantee that finalizers will run before a program exits,
    // so typically they are useful only for releasing non-memory resources
    // associated with an object during a long-running program.
    // For example, an [os.File] object could use a finalizer to close the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/testing/benchmark.go

    // and deletes user-reported metrics.
    // It does not affect whether the timer is running.
    func (b *B) ResetTimer() {
    	if b.extra == nil {
    		// Allocate the extra map before reading memory stats.
    		// Pre-size it to make more allocation unlikely.
    		b.extra = make(map[string]float64, 16)
    	} else {
    		clear(b.extra)
    	}
    	if b.timerOn {
    		runtime.ReadMemStats(&memStats)
    		b.startAllocs = memStats.Mallocs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    //
    // Must be paired with a traceExitedSyscall call.
    func traceExitingSyscall() {
    	trace.exitingSyscall.Add(1)
    }
    
    // traceExitedSyscall marks a goroutine as having exited the syscall slow path.
    func traceExitedSyscall() {
    	trace.exitingSyscall.Add(-1)
    }
    
    // Gomaxprocs emits a ProcsChange event.
    func (tl traceLocker) Gomaxprocs(procs int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. src/runtime/crash_test.go

    		defer func() {
    			if r := recover(); r != nil {
    				// We expect to crash, so exit 0
    				// to indicate failure.
    				os.Exit(0)
    			}
    		}()
    		runtime.PanicForTesting(nil, 1)
    		// We expect to crash, so exit 0 to indicate failure.
    		os.Exit(0)
    	}
    	if os.Getenv("GO_TEST_RUNTIME_NPE_READMEMSTATS") == "1" {
    		runtime.ReadMemStats(nil)
    		os.Exit(0)
    	}
    	if os.Getenv("GO_TEST_RUNTIME_NPE_FUNCMETHOD") == "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// zero because the world is stopped and there are no available Ps for syscall-exited
    	// goroutines to run on.
    	//
    	// Because we set gen before checking this, and because exitingSyscall is always incremented
    	// *before* traceAcquire (which checks gen), we can be certain that when exitingSyscall is zero
    	// that any goroutine that goes to exit a syscall from then on *must* observe the new gen as
    	// well as trace.enabled being set to true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. internal/grid/connection.go

    		if rec := recover(); rec != nil {
    			gridLogIf(ctx, fmt.Errorf("handleMessages: panic recovered: %v", rec))
    			debug.PrintStack()
    		}
    		if debugPrint {
    			fmt.Println("handleMessages: write goroutine exited")
    		}
    		cancel(ErrDisconnected)
    		c.connChange.L.Lock()
    		if atomic.CompareAndSwapUint32((*uint32)(&c.state), StateConnected, StateConnectionError) {
    			c.connChange.Broadcast()
    		}
    		c.disconnected()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.s

    	MOVD	R0, R0	// NOP
    
    // prepGoExitFrame saves the current TOC pointer (i.e. the TOC pointer for the
    // module containing runtime) to the frame that goexit will execute in when
    // the goroutine exits. It's implemented in assembly mainly because that's the
    // easiest way to get access to R2.
    TEXT runtime·prepGoExitFrame(SB),NOSPLIT,$0-8
    	MOVD    sp+0(FP), R3
    	MOVD    R2, 24(R3)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top