Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Indiana (0.33 sec)

  1. lib/time/zoneinfo.zip

    Europe/Vienna Europe/Vilnius Europe/Volgograd Europe/Warsaw Europe/Zagreb Europe/Zaporozhye Europe/Zurich Factory GB GB-Eire GMT GMT+0 GMT-0 GMT0 Greenwich HST Hongkong Iceland Indian/Antananarivo Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Indian/Reunion Iran Israel Jamaica Japan Kwajalein Libya MET MST MST7MDT Mexico/BajaNorte Mexico/BajaSur Mexico/General NZ NZ-CHAT Navajo PRC PST8PDT Pacific/Apia Pacific/Auckland...
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  2. 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
    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)
  3. 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)
  4. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PR_CAPBSET_READ ideal-int
    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)
  5. src/archive/tar/strconv.go

    func (p *parser) parseNumeric(b []byte) int64 {
    	// Check for base-256 (binary) format first.
    	// If the first bit is set, then all following bits constitute a two's
    	// complement encoded number in big-endian byte order.
    	if len(b) > 0 && b[0]&0x80 != 0 {
    		// Handling negative numbers relies on the following identity:
    		//	-a-1 == ^a
    		//
    		// If the number is negative, we use an inversion mask to invert the
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (linux-386), const PR_CAPBSET_DROP ideal-int
    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
    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)
  7. misc/cgo/gmp/gmp.go

    // making zero values useful and gmp's decision not to.
    func (z *Int) doinit() {
    	if z.init {
    		return
    	}
    	z.init = true
    	C.mpz_init(&z.i[0])
    }
    
    // Bytes returns z's representation as a big-endian byte array.
    func (z *Int) Bytes() []byte {
    	b := make([]byte, (z.Len()+7)/8)
    	n := C.size_t(len(b))
    	C.mpz_export(unsafe.Pointer(&b[0]), &n, 1, 1, 1, 0, &z.i[0])
    	return b[0:n]
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  8. doc/go1.22.html

    </p>
    
    <h3 id="openbsd">OpenBSD</h3>
    <p><!-- CL 517935 -->
      Go 1.22 adds an experimental port to OpenBSD on big-endian 64-bit PowerPC
      (<code>openbsd/ppc64</code>).
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top