Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for 416 (0.42 sec)

  1. src/net/netip/netip.go

    			if ellipsis < 0 && i != 12 {
    				// Not the right place.
    				return Addr{}, parseAddrError{in: in, msg: "embedded IPv4 address must replace the final 2 fields of the address", at: s}
    			}
    			if i+4 > 16 {
    				// Not enough room.
    				return Addr{}, parseAddrError{in: in, msg: "too many hex fields to fit an embedded IPv4 at the end of the address", at: s}
    			}
    
    			end := len(in)
    			if len(zone) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. kotlin-js-store/yarn.lock

      dependencies:
        fs.realpath "^1.0.0"
        inflight "^1.0.4"
        inherits "2"
        minimatch "^3.1.1"
        once "^1.3.0"
        path-is-absolute "^1.0.0"
    
    graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
      version "4.2.10"
      resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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