Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 140 for socketio (0.48 sec)

  1. guava/src/com/google/common/io/ByteStreams.java

       * <ol>
       *   <li>Use sendfile(2) or equivalent. Requires that both the input channel and the output
       *       channel have their own file descriptors. Generally this only happens when both channels
       *       are files or sockets. This performs zero copies - the bytes never enter userspace.
       *   <li>Use mmap(2) or equivalent. Requires that either the input channel or the output channel
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_socket_trampoline_addr, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_socket_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_socket socket "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_socket_trampoline_addr, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_socket_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_socket socket "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_FSYNC                    = 95  // { int fsync(int fd); }
    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_FSYNC                    = 95  // { int fsync(int fd); }
    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_socket_trampoline_addr, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_socket_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_socket socket "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_socket_trampoline_addr, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_socket_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_socket socket "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_FSYNC                    = 95  // { int fsync(int fd); }
    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_FSYNC                    = 95  // { int fsync(int fd); }
    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    func socket(domain int, typ int, proto int) (fd int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_socket_trampoline_addr, uintptr(domain), uintptr(typ), uintptr(proto))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_socket_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_socket socket "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
Back to top