Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for stopped_ (0.2 sec)

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

    	{17, "SIGSTOP", "suspended (signal)"},
    	{18, "SIGTSTP", "suspended"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{24, "SIGXCPU", "cputime limit exceeded"},
    	{25, "SIGXFSZ", "filesize limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	core    = 0x80
    	exited  = 0x00
    	stopped = 0x7F
    	shift   = 8
    )
    
    func (w WaitStatus) Exited() bool { return w&mask == exited }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
    
    func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
    
    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/syscall/zerrors_openbsd_arm64.go

    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "urgent I/O condition",
    	17: "suspended (signal)",
    	18: "suspended",
    	19: "continued",
    	20: "child exited",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "I/O possible",
    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    	28: "window size changes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 66.4K bytes
    - Viewed (0)
  4. src/syscall/zerrors_openbsd_mips64.go

    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "urgent I/O condition",
    	17: "suspended (signal)",
    	18: "suspended",
    	19: "continued",
    	20: "child exited",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "I/O possible",
    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    	28: "window size changes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 66.7K bytes
    - Viewed (0)
  5. src/syscall/zerrors_openbsd_ppc64.go

    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "urgent I/O condition",
    	17: "suspended (signal)",
    	18: "suspended",
    	19: "continued",
    	20: "child exited",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "I/O possible",
    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    	28: "window size changes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  6. src/syscall/zerrors_openbsd_riscv64.go

    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "urgent I/O condition",
    	17: "suspended (signal)",
    	18: "suspended",
    	19: "continued",
    	20: "child exited",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "I/O possible",
    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    	28: "window size changes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	})).ts
    
    	c := ts.Client()
    	_, err := c.Get(ts.URL)
    	if e, g := `Get "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    		t.Errorf("with default client Get, expected error %q, got %q", e, g)
    	}
    
    	// HEAD request should also have the ability to follow redirects.
    	_, err = c.Head(ts.URL)
    	if e, g := `Head "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	{17, "SIGSTOP", "suspended (signal)"},
    	{18, "SIGTSTP", "suspended"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{24, "SIGXCPU", "cputime limit exceeded"},
    	{25, "SIGXFSZ", "filesize limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	// context as opposed to a "best effort" context. The tracebacks with
    	// callbacks only happen when everything is stopped nicely.
    	// At other times, such as when gathering a stack for a profiling signal
    	// or when printing a traceback during a crash, everything may not be
    	// stopped nicely, and the stack walk may not be able to complete.
    	gp := u.g.ptr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go

    	{17, "SIGSTOP", "suspended (signal)"},
    	{18, "SIGTSTP", "suspended"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{24, "SIGXCPU", "cputime limit exceeded"},
    	{25, "SIGXFSZ", "filesize limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
Back to top