Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,866 for continued (0.17 sec)

  1. src/net/textproto/reader.go

    func (r *Reader) ReadResponse(expectCode int) (code int, message string, err error) {
    	code, continued, message, err := r.readCodeLine(expectCode)
    	multi := continued
    	for continued {
    		line, err := r.ReadLine()
    		if err != nil {
    			return 0, "", err
    		}
    
    		var code2 int
    		var moreMessage string
    		code2, continued, moreMessage, err = parseCodeLine(line, 0)
    		if err != nil || code2 != code {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/siginfo_linux.go

    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    	_CLD_STOPPED         = 5
    	_CLD_CONTINUED       = 6
    
    	// These are the same as in syscall/syscall_linux.go.
    	core      = 0x80
    	stopped   = 0x7f
    	continued = 0xffff
    )
    
    // WaitStatus converts SiginfoChild, as filled in by the waitid syscall,
    // to syscall.WaitStatus.
    func (s *SiginfoChild) WaitStatus() (ws syscall.WaitStatus) {
    	switch s.Code {
    	case _CLD_EXITED:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. releasenotes/notes/46901.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 43312
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 17:53:29 UTC 2023
    - 227 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/testdata/libgo4/libgo4.go

    //
    //export TestSEGV
    func TestSEGV() {
    	defer func() {
    		if recover() == nil {
    			fmt.Fprintln(os.Stderr, "no panic from segv")
    			os.Exit(1)
    		}
    	}()
    	*P = 0
    	fmt.Fprintln(os.Stderr, "continued after segv")
    	os.Exit(1)
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 864 bytes
    - Viewed (0)
  5. docs/en/docs/deployment/cloud.md

    ## Cloud Providers - Sponsors
    
    Some cloud providers ✨ [**sponsor FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, this ensures the continued and healthy **development** of FastAPI and its **ecosystem**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jan 31 22:13:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/os/exec_posix.go

    		res = "stop signal: " + status.StopSignal().String()
    		if status.StopSignal() == syscall.SIGTRAP && status.TrapCause() != 0 {
    			res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"
    		}
    	case status.Continued():
    		res = "continued"
    	}
    	if status.CoreDump() {
    		res += " (core dumped)"
    	}
    	return res
    }
    
    // ExitCode returns the exit code of the exited process, or -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    //
    //export TestSEGV
    func TestSEGV() {
    	defer func() {
    		if recover() == nil {
    			fmt.Fprintln(os.Stderr, "no panic from segv")
    			os.Exit(1)
    		}
    	}()
    	*P = 0
    	fmt.Fprintln(os.Stderr, "continued after segv")
    	os.Exit(1)
    }
    
    // Noop ensures that the Go runtime is initialized.
    //
    //export Noop
    func Noop() {
    }
    
    // Raise SIGPIPE.
    //
    //export GoRaiseSIGPIPE
    func GoRaiseSIGPIPE() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/index.md

    Some course providers ✨ [**sponsor FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, this ensures the continued and healthy **development** of FastAPI and its **ecosystem**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

     *  condition is detected in the CUnit framework.
     *  @see CU_set_error_action()
     *  @see CU_get_error_action()
     */
    typedef enum CU_ErrorAction {
      CUEA_IGNORE,    /**< Runs should be continued when an error condition occurs (if possible). */
      CUEA_FAIL,      /**< Runs should be stopped when an error condition occurs. */
      CUEA_ABORT      /**< The application should exit() when an error conditions occurs. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/syscall/syscall_wasip1.go

    	case SIGPIPE:
    		return "broken pipe"
    	case SIGALRM:
    		return "alarm clock"
    	case SIGTERM:
    		return "terminated"
    	case SIGCHLD:
    		return "child exited"
    	case SIGCONT:
    		return "continued"
    	case SIGSTOP:
    		return "stopped (signal)"
    	case SIGTSTP:
    		return "stopped"
    	case SIGTTIN:
    		return "stopped (tty input)"
    	case SIGTTOU:
    		return "stopped (tty output)"
    	case SIGURG:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top