Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gotPings (0.34 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    		// and used as the new base register and the offset field in the instruction
    		// can be set to zero.
    
    		// This same problem can happen with gostrings since the final offset is not
    		// known yet, but could be unaligned after the relocation is resolved.
    		// So gostrings are handled the same way.
    
    		// This allows the MOVDload and MOVWload to be generated in more cases and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    }
    
    type G int
    
    func (g G) GoString() string {
    	return Sprintf("GoString(%d)", int(g))
    }
    
    type S struct {
    	F F // a struct field that Formats
    	G G // a struct field that GoStrings
    }
    
    type SI struct {
    	I any
    }
    
    // P is a type with a String method with pointer receiver for testing %p.
    type P int
    
    var pValue P
    
    func (p *P) String() string {
    	return "String(p)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top