Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for biases (0.18 sec)

  1. src/go/types/api_test.go

    		{"var X int; var Y int", true},
    		{"var X int; var Y string", false},
    
    		// TODO: add more tests for complex types.
    
    		// Named types.
    		{"type X int; type Y int", false},
    
    		// Aliases.
    		{"type X = int; type Y = int", true},
    
    		// Functions.
    		{`func X(int) string { return "" }; func Y(int) string { return "" }`, true},
    		{`func X() string { return "" }; func Y(int) string { return "" }`, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    // #defines that gcc encountered while processing the input
    // and its included files.
    func (p *Package) gccDefines(stdin []byte) string {
    	base := append(gccBaseCmd, "-E", "-dM", "-xc")
    	base = append(base, p.gccMachine()...)
    	stdout, _ := runGcc(stdin, append(append(base, p.GccOptions...), "-"))
    	return stdout
    }
    
    // gccErrors runs gcc over the C program stdin and returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top