Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Rsv (0.1 sec)

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

    	SYS_SHUTDOWN             = 134 // { int|sys||shutdown(int s, int how); }
    	SYS_SOCKETPAIR           = 135 // { int|sys||socketpair(int domain, int type, int protocol, int *rsv); }
    	SYS_MKDIR                = 136 // { int|sys||mkdir(const char *path, mode_t mode); }
    	SYS_RMDIR                = 137 // { int|sys||rmdir(const char *path); }
    	SYS_SETSID               = 147 // { int|sys||setsid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_SHUTDOWN             = 134 // { int|sys||shutdown(int s, int how); }
    	SYS_SOCKETPAIR           = 135 // { int|sys||socketpair(int domain, int type, int protocol, int *rsv); }
    	SYS_MKDIR                = 136 // { int|sys||mkdir(const char *path, mode_t mode); }
    	SYS_RMDIR                = 137 // { int|sys||rmdir(const char *path); }
    	SYS_SETSID               = 147 // { int|sys||setsid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }
    	SYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }
    	SYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }
    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }
    	SYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }
    	SYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }
    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    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_arm64.go

    	SYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }
    	SYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }
    	SYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }
    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    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/zsysnum_freebsd_386.go

    	SYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }
    	SYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }
    	SYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }
    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_SHUTDOWN                 = 134 // { int shutdown(int s, int how); }
    	SYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, int protocol, int *rsv); }
    	SYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }
    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    		bit0  = 0x80
    		len7  = int64(125)
    		len16 = int64(^(uint16(0)))
    		len64 = int64(^(uint64(0)) >> 1)
    	)
    
    	bts := ww.tmp[:]
    	if f.Header.Fin {
    		bts[0] |= bit0
    	}
    	bts[0] |= f.Header.Rsv << 4
    	bts[0] |= byte(f.Header.OpCode)
    
    	var n int
    	switch {
    	case f.Header.Length <= len7:
    		bts[1] = byte(f.Header.Length)
    		n = 2
    
    	case f.Header.Length <= len16:
    		bts[1] = 126
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top