Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 127 for Hangul (0.16 sec)

  1. src/syscall/zerrors_aix_ppc64.go

    	125: "multihop is not allowed",
    	126: "the server link has been severed",
    	127: "value too large to be stored in data type",
    }
    
    // Signal table
    var signals = [...]string{
    	1:   "hangup",
    	2:   "interrupt",
    	3:   "quit",
    	4:   "illegal instruction",
    	5:   "trace/BPT trap",
    	6:   "IOT/Abort trap",
    	7:   "EMT trap",
    	8:   "floating point exception",
    	9:   "killed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{1161, "EDC8161I", "The file system cannot currently be moved."},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGABT", "aborted"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGPOLL", "pollable event"},
    	{6, "SIGURG", "urgent I/O condition"},
    	{7, "SIGSTOP", "stop process"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	148: "no route to host",
    	149: "operation already in progress",
    	150: "operation now in progress",
    	151: "stale NFS file handle",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal Instruction",
    	5:  "trace/Breakpoint Trap",
    	6:  "abort",
    	7:  "emulation Trap",
    	8:  "arithmetic Exception",
    	9:  "killed",
    	10: "bus Error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{127, "EOVERFLOW", "value too large to be stored in data type"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/BPT trap"},
    	{6, "SIGIOT", "IOT/Abort trap"},
    	{7, "SIGEMT", "EMT trap"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  7. src/syscall/zerrors_darwin_amd64.go

    	102: "operation not supported on socket",
    	103: "policy not found",
    	104: "state not recoverable",
    	105: "previous owner died",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/BPT trap",
    	6:  "abort trap",
    	7:  "EMT trap",
    	8:  "floating point exception",
    	9:  "killed",
    	10: "bus error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    	const backendResponse = "I am the backend"
    	const backendStatus = 404
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if r.Method == "GET" && r.FormValue("mode") == "hangup" {
    			c, _, _ := w.(http.Hijacker).Hijack()
    			c.Close()
    			return
    		}
    		if len(r.TransferEncoding) > 0 {
    			t.Errorf("backend got unexpected TransferEncoding: %v", r.TransferEncoding)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/syscall/zerrors_freebsd_arm.go

    	93: "capabilities insufficient",
    	94: "not permitted in capability mode",
    	95: "state not recoverable",
    	96: "previous owner died",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/BPT trap",
    	6:  "abort trap",
    	7:  "EMT trap",
    	8:  "floating point exception",
    	9:  "killed",
    	10: "bus error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.3K bytes
    - Viewed (0)
  10. src/syscall/zerrors_freebsd_arm64.go

    	93: "capabilities insufficient",
    	94: "not permitted in capability mode",
    	95: "state not recoverable",
    	96: "previous owner died",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/BPT trap",
    	6:  "abort trap",
    	7:  "EMT trap",
    	8:  "floating point exception",
    	9:  "killed",
    	10: "bus error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
Back to top