Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Road (0.2 sec)

  1. misc/chrome/gophertool/README.txt

    To install:
    
    1) chrome://extensions/
    2) click "[+] Developer Mode" in top right
    3) "Load unpacked extension..."
    4) pick $GOROOT/misc/chrome/gophertool
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon May 23 21:27:51 GMT 2011
    - 194 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/mips64.s

    //
    // floating point conditional branch
    //
    //	LBRA rel
    label4:
    	BFPT	1(PC)	// BFPT 1(PC)			// 4501000100000000
    	BFPT	label4	// BFPT 24			// 4501fffd00000000
    
    //inst:
    //
    // load ints and bytes
    //
    //	LMOVV rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVV	R25, R17	// 00198825
    	MOVV	R1, R2		// 00011025
    	MOVV	LO, R1		// 00000812
    	MOVV	HI, R1		// 00000810
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/s390x.s

    	LAX	R7, R8, (R9)          // eb87900000f7
    	LAXG	R10, R11, (R12)       // ebbac00000e7
    	LAO	R1, R2, (R3)          // eb21300000f6
    	LAOG	R4, R5, (R6)          // eb54600000e6
    
    	// load and store multiple
    	LMG	n-8(SP), R3, R4         // eb34f0100004
    	LMG	-5(R5), R3, R4          // eb345ffbff04
    	LMY	n-8(SP), R3, R4         // 9834f010
    	LMY	4096(R1), R3, R4        // eb3410000198
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	MOV	$0, 0(SP)			// ERROR "constant load must target register"
    	MOV	$0, 8(SP)			// ERROR "constant load must target register"
    	MOV	$1234, 0(SP)			// ERROR "constant load must target register"
    	MOV	$1234, 8(SP)			// ERROR "constant load must target register"
    	MOVB	$1, X5				// ERROR "unsupported constant load"
    	MOVH	$1, X5				// ERROR "unsupported constant load"
    	MOVW	$1, X5				// ERROR "unsupported constant load"
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Apr 07 03:32:27 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/archive/zip/register.go

    		panic("compressor already registered")
    	}
    }
    
    func compressor(method uint16) Compressor {
    	ci, ok := compressors.Load(method)
    	if !ok {
    		return nil
    	}
    	return ci.(Compressor)
    }
    
    func decompressor(method uint16) Decompressor {
    	di, ok := decompressors.Load(method)
    	if !ok {
    		return nil
    	}
    	return di.(Decompressor)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			}
    			strs[n] = data[:strlen]
    		}
    	}
    
    	if f, err := macho.Open(gccTmp()); err == nil {
    		defer f.Close()
    		d, err := f.DWARF()
    		if err != nil {
    			fatalf("cannot load DWARF output from %s: %v", gccTmp(), err)
    		}
    		bo := f.ByteOrder
    		if f.Symtab != nil {
    			for i := range f.Symtab.Syms {
    				s := &f.Symtab.Syms[i]
    				switch {
    				case isDebugInts(s.Name):
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	$-0x10000(RSP), RSP           // MOVD	$-65536(RSP), RSP           // ff4340d1
    	MOVW	R1, R2
    	MOVW	ZR, R1
    	MOVW	R1, ZR
    	MOVD	R1, R2
    	MOVD	ZR, R1
    
    // store and load
    //
    // LD1/ST1
    	VLD1	(R8), [V1.B16, V2.B16]                          // 01a1404c
    	VLD1.P	(R3), [V31.H8, V0.H8]                           // 7fa4df4c
    	VLD1.P	(R8)(R20), [V21.B16, V22.B16]                   // 15a1d44c
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg debug/macho, type FileHeader struct, SubCpu uint32
    pkg debug/macho, type FileHeader struct, Type Type
    pkg debug/macho, type FormatError struct
    pkg debug/macho, type Load interface { Raw }
    pkg debug/macho, type Load interface, Raw() []uint8
    pkg debug/macho, type LoadBytes []uint8
    pkg debug/macho, type LoadCmd uint32
    pkg debug/macho, type Nlist32 struct
    pkg debug/macho, type Nlist32 struct, Desc uint16
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. misc/chrome/gophertool/popup.js

        var url = links[i].getAttribute("url");
        if (url)
          links[i].addEventListener("click", function () {
            openURL(this.getAttribute("url"));
          });
      }
    }
    
    window.addEventListener("load", function () {
      addLinks();
      console.log("hacking gopher pop-up loaded.");
      document.getElementById("inputbox").focus();
    });
    
    window.addEventListener("submit", function () {
      console.log("submitting form");
    JavaScript
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Oct 21 17:05:21 GMT 2012
    - 1020 bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg debug/elf, const PF_X = 1
    pkg debug/elf, const PT_DYNAMIC = 2
    pkg debug/elf, const PT_HIOS = 1879048191
    pkg debug/elf, const PT_HIPROC = 2147483647
    pkg debug/elf, const PT_INTERP = 3
    pkg debug/elf, const PT_LOAD = 1
    pkg debug/elf, const PT_LOOS = 1610612736
    pkg debug/elf, const PT_LOPROC = 1879048192
    pkg debug/elf, const PT_NOTE = 4
    pkg debug/elf, const PT_NULL = 0
    pkg debug/elf, const PT_PHDR = 6
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top