Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for 416 (1.56 sec)

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

    	SYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }
    	SYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }
    	SYS_SIGRETURN                = 417 // { int sigreturn(const struct __ucontext *sigcntxp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_arm64.go

    	SYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }
    	SYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }
    	SYS_SIGRETURN                = 417 // { int sigreturn( const struct __ucontext *sigcntxp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }
    	SYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }
    	SYS_SIGRETURN                = 417 // { int sigreturn( const struct __ucontext *sigcntxp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }
    	SYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }
    	SYS_SIGRETURN                = 417 // { int sigreturn(const struct __ucontext *sigcntxp); }
    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___MAC_EXECVE             = 415 // { int __mac_execve(char *fname, char **argv, char **envv, struct mac *mac_p); }
    	SYS_SIGACTION                = 416 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }
    	SYS_SIGRETURN                = 417 // { int sigreturn(const struct __ucontext *sigcntxp); }
    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/go/scanner/scanner.go

    		s.next()
    		return true
    	case '0', '1', '2', '3', '4', '5', '6', '7':
    		n, base, max = 3, 8, 255
    	case 'x':
    		s.next()
    		n, base, max = 2, 16, 255
    	case 'u':
    		s.next()
    		n, base, max = 4, 16, unicode.MaxRune
    	case 'U':
    		s.next()
    		n, base, max = 8, 16, unicode.MaxRune
    	default:
    		msg := "unknown escape sequence"
    		if s.ch < 0 {
    			msg = "escape sequence not terminated"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. src/net/http/fs.go

    		if size == 0 {
    			// Some clients add a Range header to all requests to
    			// limit the size of the response. If the file is empty,
    			// ignore the range header and respond with a 200 rather
    			// than a 416.
    			ranges = nil
    			break
    		}
    		w.Header().Set("Content-Range", fmt.Sprintf("bytes */%d", size))
    		fallthrough
    	default:
    		serveError(w, err.Error(), StatusRequestedRangeNotSatisfiable)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/crypto/aes/gcm_ppc64x.s

    	// Do VCIPHERLAST on the last for each encryption
    	// stream and XOR the result with the corresponding
    	// value from the input block.
    	VCIPHERLAST4_XOR_INPUT
    	// Store the results (4*16) and update BLK_OUT by 64.
    	STORE_OUTPUT_BLOCK64(BLK_OUT)
    	ADD	$-64, IN_LEN		// decrement input block length
    	CMP	IN_LEN, $0		// check for remaining length
    	BEQ	done
    block16_loop:
    	CMP	IN_LEN, $16		// More input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top