Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 9G (0.13 sec)

  1. test/fixedbugs/issue9355.go

    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	f.Close()
    
    	out := run("go", "tool", "compile", "-p=p", "-o", f.Name(), "-S", "a.go")
    	os.Remove(f.Name())
    
    	// 6g/8g print the offset as dec, but 5g/9g print the offset as hex.
    	patterns := []string{
    		`rel 0\+\d t=R_ADDR p\.x\+8\r?\n`,       // y = &x.b
    		`rel 0\+\d t=R_ADDR p\.x\+(28|1c)\r?\n`, // z = &x.d.q
    		`rel 0\+\d t=R_ADDR p\.b\+5\r?\n`,       // c = &b[5]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/validation/validation_test.go

    		requirements: v1.ResourceRequirements{
    			Requests: v1.ResourceList{
    				v1.ResourceName(v1.ResourceCPU):    resource.MustParse("9"),
    				v1.ResourceName(v1.ResourceMemory): resource.MustParse("9G"),
    				v1.ResourceName("my.org/resource"): resource.MustParse("9"),
    			},
    			Limits: v1.ResourceList{
    				v1.ResourceName(v1.ResourceCPU):    resource.MustParse("10"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/a.out.go

    	REGG    = REG_R30 /* G */
    	REGTMP  = REG_R31 /* used by the linker */
    	FREGRET = REG_F0
    	FREGMIN = REG_F17 /* first register variable */
    	FREGMAX = REG_F26 /* last register variable for 9g only */
    	FREGEXT = REG_F26 /* first external register */
    )
    
    // OpenPOWER ABI for Linux Supplement Power Architecture 64-Bit ELF V2 ABI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

     * Initial tree setup.
     */
    
    // The old tools that no longer live in $GOBIN or $GOROOT/bin.
    var oldtool = []string{
    	"5a", "5c", "5g", "5l",
    	"6a", "6c", "6g", "6l",
    	"8a", "8c", "8g", "8l",
    	"9a", "9c", "9g", "9l",
    	"6cov",
    	"6nm",
    	"6prof",
    	"cgo",
    	"ebnflint",
    	"goapi",
    	"gofix",
    	"goinstall",
    	"gomake",
    	"gopack",
    	"gopprof",
    	"gotest",
    	"gotype",
    	"govet",
    	"goyacc",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top