Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for escape (0.26 sec)

  1. src/cmd/asm/internal/lex/input.go

    			}
    		}
    	}
    	var tokens []Token
    	// Scan to newline. Backslashes escape newlines.
    	for tok != '\n' {
    		if tok == scanner.EOF {
    			in.Error("missing newline in definition for macro:", name)
    		}
    		if tok == '\\' {
    			tok = in.Stack.Next()
    			if tok != '\n' && tok != '\\' {
    				in.Error(`can only escape \ or \n in definition for macro:`, name)
    			}
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    the digits in the corresponding base.
    </p>
    
    <p>
    Although these representations all result in an integer, they have
    different valid ranges.  Octal escapes must represent a value between
    0 and 255 inclusive.  Hexadecimal escapes satisfy this condition
    by construction. The escapes <code>\u</code> and <code>\U</code>
    represent Unicode code points so within them some values are illegal,
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (linux-386), const RT_CLASS_UNSPEC = 0
    pkg syscall (linux-386), const RT_SCOPE_HOST = 254
    pkg syscall (linux-386), const RT_SCOPE_LINK = 253
    pkg syscall (linux-386), const RT_SCOPE_NOWHERE = 255
    pkg syscall (linux-386), const RT_SCOPE_SITE = 200
    pkg syscall (linux-386), const RT_SCOPE_UNIVERSE = 0
    pkg syscall (linux-386), const RT_TABLE_COMPAT = 252
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. src/bytes/buffer.go

    	//	return append(b, make([]byte, n)...)
    	// This avoids unnecessary zero-ing of the first len(b) bytes of the
    	// allocated slice, but this pattern causes b to escape onto the heap.
    	//
    	// Instead use the append-make pattern with a nil slice to ensure that
    	// we allocate buffers rounded up to the closest size class.
    	c := len(b) + n // ensure enough space for n elements
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const ESHUTDOWN = 58 #53466
    pkg syscall (freebsd-riscv64), const ESOCKTNOSUPPORT = 44 #53466
    pkg syscall (freebsd-riscv64), const ESPIPE = 29 #53466
    pkg syscall (freebsd-riscv64), const ESRCH = 3 #53466
    pkg syscall (freebsd-riscv64), const ESTALE = 70 #53466
    pkg syscall (freebsd-riscv64), const ETIMEDOUT = 60 #53466
    pkg syscall (freebsd-riscv64), const ETOOMANYREFS = 59 #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    the digits in the corresponding base.
    </p>
    
    <p>
    Although these representations all result in an integer, they have
    different valid ranges.  Octal escapes must represent a value between
    0 and 255 inclusive.  Hexadecimal escapes satisfy this condition
    by construction. The escapes <code>\u</code> and <code>\U</code>
    represent Unicode code points so within them some values are illegal,
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    func splitQuoted(s string) (r []string, err error) {
    	var args []string
    	arg := make([]rune, len(s))
    	escaped := false
    	quoted := false
    	quote := '\x00'
    	i := 0
    	for _, r := range s {
    		switch {
    		case escaped:
    			escaped = false
    		case r == '\\':
    			escaped = true
    			continue
    		case quote != 0:
    			if r == quote {
    				quote = 0
    				continue
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ESHUTDOWN = 58
    pkg syscall (netbsd-arm64-cgo), const ESOCKTNOSUPPORT = 44
    pkg syscall (netbsd-arm64-cgo), const ESPIPE = 29
    pkg syscall (netbsd-arm64-cgo), const ESRCH = 3
    pkg syscall (netbsd-arm64-cgo), const ESTALE = 70
    pkg syscall (netbsd-arm64-cgo), const ETHER_ADDR_LEN = 6
    pkg syscall (netbsd-arm64-cgo), const ETHER_ADDR_LEN ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg syscall (linux-386), const RT_CLASS_UNSPEC ideal-int
    pkg syscall (linux-386), const RT_SCOPE_HOST ideal-int
    pkg syscall (linux-386), const RT_SCOPE_LINK ideal-int
    pkg syscall (linux-386), const RT_SCOPE_NOWHERE ideal-int
    pkg syscall (linux-386), const RT_SCOPE_SITE ideal-int
    pkg syscall (linux-386), const RT_SCOPE_UNIVERSE ideal-int
    pkg syscall (linux-386), const RT_TABLE_COMPAT ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. api/go1.16.txt

    pkg syscall (darwin-arm64), const ESHUTDOWN = 58
    pkg syscall (darwin-arm64), const ESOCKTNOSUPPORT = 44
    pkg syscall (darwin-arm64), const ESPIPE = 29
    pkg syscall (darwin-arm64), const ESRCH = 3
    pkg syscall (darwin-arm64), const ESTALE = 70
    pkg syscall (darwin-arm64), const ETIME = 101
    pkg syscall (darwin-arm64), const ETIME Errno
    pkg syscall (darwin-arm64), const ETIMEDOUT = 60
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top