Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Racine (0.24 sec)

  1. src/bootstrap.bash

    #
    #	GOOS=linux GOARCH=ppc64 bootstrap.bash
    #
    # this script cross-compiles a toolchain for that GOOS/GOARCH
    # combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap.
    # That tree can be copied to a machine of the given target type
    # and used as $GOROOT_BOOTSTRAP to bootstrap a local build.
    #
    # Only changes that have been committed to Git (at least locally,
    # not necessary reviewed and submitted to master) are included in the tree.
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Jan 20 17:52:26 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/flags/flags.go

    	flag.BoolVar(&DebugV, "v", false, "print debug output")
    	flag.Var(objabi.NewDebugFlag(&DebugFlags, nil), "d", "enable debugging settings; try -d help")
    	objabi.AddVersionFlag() // -V
    	objabi.Flagcount("S", "print assembly and machine code", &PrintOut)
    }
    
    // MultiFlag allows setting a value multiple times to collect a list, as in -I=dir1 -I=dir2.
    type MultiFlag []string
    
    func (m *MultiFlag) String() string {
    	if len(*m) == 0 {
    		return ""
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 19:18:23 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  3. api/go1.12.txt

    pkg crypto/tls, type RecordHeaderError struct, Conn net.Conn
    pkg debug/elf, const R_RISCV_32_PCREL = 57
    pkg debug/elf, const R_RISCV_32_PCREL R_RISCV
    pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT = 452
    pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT ideal-int
    pkg expvar, method (*Map) Delete(string)
    pkg go/doc, const PreserveAST = 4
    pkg go/doc, const PreserveAST Mode
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 02 21:21:53 GMT 2019
    - 13.5K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg debug/pe, const IMAGE_FILE_MACHINE_AM33 = 467
    pkg debug/pe, const IMAGE_FILE_MACHINE_AMD64 = 34404
    pkg debug/pe, const IMAGE_FILE_MACHINE_ARM = 448
    pkg debug/pe, const IMAGE_FILE_MACHINE_EBC = 3772
    pkg debug/pe, const IMAGE_FILE_MACHINE_I386 = 332
    pkg debug/pe, const IMAGE_FILE_MACHINE_IA64 = 512
    pkg debug/pe, const IMAGE_FILE_MACHINE_M32R = 36929
    pkg debug/pe, const IMAGE_FILE_MACHINE_MIPS16 = 614
    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)
  5. api/go1.11.txt

    pkg debug/elf, const EM_C166 = 116
    pkg debug/elf, const EM_C166 Machine
    pkg debug/elf, const EM_CDP = 215
    pkg debug/elf, const EM_CDP Machine
    pkg debug/elf, const EM_CE = 119
    pkg debug/elf, const EM_CE Machine
    pkg debug/elf, const EM_CLOUDSHIELD = 192
    pkg debug/elf, const EM_CLOUDSHIELD Machine
    pkg debug/elf, const EM_COGE = 216
    pkg debug/elf, const EM_COGE Machine
    pkg debug/elf, const EM_COOL = 217
    pkg debug/elf, const EM_COOL Machine
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  6. api/go1.19.txt

    pkg debug/pe, const IMAGE_COMDAT_SELECT_SAME_SIZE ideal-int #51868
    pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 = 25138 #46229
    pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 ideal-int #46229
    pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH64 = 25188 #46229
    pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH64 ideal-int #46229
    pkg debug/pe, const IMAGE_SCN_CNT_CODE = 32 #51868
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  7. src/cmd/asm/internal/asm/endtoend_test.go

    			// spurious blank caused by Split on "\n"
    			output = output[1:]
    			continue
    		}
    		t.Errorf("unexpected output: %q", output[0])
    		output = output[1:]
    	}
    
    	// Checked printing.
    	// Now check machine code layout.
    
    	top := pList.Firstpc
    	var text *obj.LSym
    	ok = true
    	ctxt.DiagFunc = func(format string, args ...interface{}) {
    		t.Errorf(format, args...)
    		ok = false
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  8. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Utsname struct
    pkg syscall (linux-arm-cgo), type Utsname struct, Domainname [65]uint8
    pkg syscall (linux-arm-cgo), type Utsname struct, Machine [65]uint8
    pkg syscall (linux-arm-cgo), type Utsname struct, Nodename [65]uint8
    pkg syscall (linux-arm-cgo), type Utsname struct, Release [65]uint8
    pkg syscall (linux-arm-cgo), type Utsname struct, Sysname [65]uint8
    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)
  9. doc/asm.html

    describes the peculiarities that apply when writing assembly code to interact with Go.
    </p>
    
    <p>
    The most important thing to know about Go's assembler is that it is not a direct representation of the underlying machine.
    Some of the details map precisely to the machine, but some do not.
    This is because the compiler suite (see
    <a href="https://9p.io/sys/doc/compiler.html">this description</a>)
    needs no assembler pass in the usual pipeline.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg debug/elf, const EM_MIPS_X Machine
    pkg debug/elf, const EM_MMA Machine
    pkg debug/elf, const EM_NCPU Machine
    pkg debug/elf, const EM_NDR1 Machine
    pkg debug/elf, const EM_NONE Machine
    pkg debug/elf, const EM_PARISC Machine
    pkg debug/elf, const EM_PCP Machine
    pkg debug/elf, const EM_PPC Machine
    pkg debug/elf, const EM_PPC64 Machine
    pkg debug/elf, const EM_RCE Machine
    pkg debug/elf, const EM_RH32 Machine
    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)
Back to top