Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for littlest (0.29 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHER_TYPE_LEN = 2
    pkg syscall (netbsd-arm64-cgo), const ETHER_TYPE_LEN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LITTLE = 32864
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LITTLE ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOGICRAFT = 33096
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_LOGICRAFT 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)
  2. doc/go1.17_spec.html

    </p>
    <pre class="ebnf">
    rune_lit         = "'" ( unicode_value | byte_value ) "'" .
    unicode_value    = unicode_char | little_u_value | big_u_value | escaped_char .
    byte_value       = octal_byte_value | hex_byte_value .
    octal_byte_value = `\` octal_digit octal_digit octal_digit .
    hex_byte_value   = `\` "x" hex_digit hex_digit .
    little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit .
    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)
  3. api/go1.1.txt

    pkg syscall (linux-386), const PR_CAPBSET_DROP = 24
    pkg syscall (linux-386), const PR_CAPBSET_READ = 23
    pkg syscall (linux-386), const PR_ENDIAN_BIG = 0
    pkg syscall (linux-386), const PR_ENDIAN_LITTLE = 1
    pkg syscall (linux-386), const PR_ENDIAN_PPC_LITTLE = 2
    pkg syscall (linux-386), const PR_FPEMU_NOPRINT = 1
    pkg syscall (linux-386), const PR_FPEMU_SIGFPE = 2
    pkg syscall (linux-386), const PR_FP_EXC_ASYNC = 2
    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. doc/go_spec.html

    <pre class="ebnf">
    rune_lit         = "'" ( unicode_value | byte_value ) "'" .
    unicode_value    = unicode_char | little_u_value | big_u_value | escaped_char .
    byte_value       = octal_byte_value | hex_byte_value .
    octal_byte_value = `\` octal_digit octal_digit octal_digit .
    hex_byte_value   = `\` "x" hex_digit hex_digit .
    little_u_value   = `\` "u" hex_digit hex_digit hex_digit hex_digit .
    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)
  5. src/cmd/asm/internal/asm/testdata/riscv64.s

    	// Privileged ISA
    
    	// 3.2.1: Environment Call and Breakpoint
    	ECALL						// 73000000
    	SCALL						// 73000000
    	EBREAK						// 73001000
    	SBREAK						// 73001000
    
    	// Arbitrary bytes (entered in little-endian mode)
    	WORD	$0x12345678	// WORD $305419896	// 78563412
    	WORD	$0x9abcdef0	// WORD $2596069104	// f0debc9a
    
    	// MOV pseudo-instructions
    	MOV	X5, X6					// 13830200
    	MOV	$2047, X5				// 9302f07f
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  6. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PR_CLEAR_SECCOMP_FILTER ideal-int
    pkg syscall (linux-arm-cgo), const PR_ENDIAN_BIG ideal-int
    pkg syscall (linux-arm-cgo), const PR_ENDIAN_LITTLE ideal-int
    pkg syscall (linux-arm-cgo), const PR_ENDIAN_PPC_LITTLE ideal-int
    pkg syscall (linux-arm-cgo), const PR_FPEMU_NOPRINT ideal-int
    pkg syscall (linux-arm-cgo), const PR_FPEMU_SIGFPE ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  7. src/cmd/cgo/gcc.go

    			C:     tr,
    		}
    	case *dwarf.TypedefType:
    		// C has much more relaxed rules than Go for
    		// implicit type conversions. When the parameter
    		// is type T defined as *X, simulate a little of the
    		// laxness of C by making the argument *X instead of T.
    		if ptr, ok := base(dt.Type).(*dwarf.PtrType); ok {
    			// Unless the typedef happens to point to void* since
    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.txt

    pkg syscall (linux-386), const PR_CAPBSET_READ ideal-int
    pkg syscall (linux-386), const PR_ENDIAN_BIG ideal-int
    pkg syscall (linux-386), const PR_ENDIAN_LITTLE ideal-int
    pkg syscall (linux-386), const PR_ENDIAN_PPC_LITTLE ideal-int
    pkg syscall (linux-386), const PR_FPEMU_NOPRINT ideal-int
    pkg syscall (linux-386), const PR_FPEMU_SIGFPE ideal-int
    pkg syscall (linux-386), const PR_FP_EXC_ASYNC 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)
  9. src/bufio/scan_test.go

    }
    
    var testError = errors.New("testError")
    
    // Test the correct error is returned when the split function errors out.
    func TestSplitError(t *testing.T) {
    	// Create a split function that delivers a little data, then a predictable error.
    	numSplits := 0
    	const okCount = 7
    	errorSplit := func(data []byte, atEOF bool) (advance int, token []byte, err error) {
    		if atEOF {
    			panic("didn't get enough data")
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 22 16:22:42 GMT 2023
    - 14.3K bytes
    - Viewed (0)
Back to top