Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,579 for perror (0.07 sec)

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

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/ppc64le/include /tmp/ppc64le/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc64le && linux
    
    package unix
    
    const (
    	SYS_RESTART_SYSCALL         = 0
    	SYS_EXIT                    = 1
    	SYS_FORK                    = 2
    	SYS_READ                    = 3
    	SYS_WRITE                   = 4
    	SYS_OPEN                    = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/ppc/include /tmp/ppc/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc && linux
    
    package unix
    
    const (
    	SYS_RESTART_SYSCALL              = 0
    	SYS_EXIT                         = 1
    	SYS_FORK                         = 2
    	SYS_READ                         = 3
    	SYS_WRITE                        = 4
    	SYS_OPEN                         = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/net/tcpsock.go

    // local system is assumed.
    func DialTCP(network string, laddr, raddr *TCPAddr) (*TCPConn, error) {
    	switch network {
    	case "tcp", "tcp4", "tcp6":
    	default:
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: UnknownNetworkError(network)}
    	}
    	if raddr == nil {
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: nil, Err: errMissingAddress}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/net/net.go

    	// Dial, Read, or Write, Addr is the remote address of that
    	// connection.
    	Addr Addr
    
    	// Err is the error that occurred during the operation.
    	// The Error method panics if the error is nil.
    	Err error
    }
    
    func (e *OpError) Unwrap() error { return e.Err }
    
    func (e *OpError) Error() string {
    	if e == nil {
    		return "<nil>"
    	}
    	s := e.Op
    	if e.Net != "" {
    		s += " " + e.Net
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{66, "EREMOTE", "object is remote"},
    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "EMULTIHOP", "multihop attempted"},
    	{73, "EDOTDOT", "RFS specific error"},
    	{74, "EBADMSG", "bad message"},
    	{75, "EOVERFLOW", "value too large for defined data type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	{66, "EREMOTE", "object is remote"},
    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "EMULTIHOP", "multihop attempted"},
    	{73, "EDOTDOT", "RFS specific error"},
    	{74, "EBADMSG", "bad message"},
    	{75, "EOVERFLOW", "value too large for defined data type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	{66, "EREMOTE", "object is remote"},
    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "EMULTIHOP", "multihop attempted"},
    	{73, "EDOTDOT", "RFS specific error"},
    	{74, "EBADMSG", "bad message"},
    	{75, "EOVERFLOW", "value too large for defined data type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    // cgo -godefs -objdir=/tmp/s390x/cgo -- -Wall -Werror -static -I/tmp/s390x/include -fsigned-char linux/types.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build s390x && linux
    
    package unix
    
    const (
    	SizeofPtr  = 0x8
    	SizeofLong = 0x8
    )
    
    type (
    	_C_long int64
    )
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go

    // cgo -godefs -objdir=/tmp/sparc64/cgo -- -Wall -Werror -static -I/tmp/sparc64/include linux/types.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build sparc64 && linux
    
    package unix
    
    const (
    	SizeofPtr  = 0x8
    	SizeofLong = 0x8
    )
    
    type (
    	_C_long int64
    )
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    // cgo -godefs -objdir=/tmp/amd64/cgo -- -Wall -Werror -static -I/tmp/amd64/include -m64 linux/types.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && linux
    
    package unix
    
    const (
    	SizeofPtr  = 0x8
    	SizeofLong = 0x8
    )
    
    type (
    	_C_long int64
    )
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top