Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for buildtags (0.42 sec)

  1. src/cmd/vet/vet_test.go

    	cmd.Env = os.Environ()
    	return cmd
    }
    
    func TestVet(t *testing.T) {
    	t.Parallel()
    	for _, pkg := range []string{
    		"appends",
    		"asm",
    		"assign",
    		"atomic",
    		"bool",
    		"buildtag",
    		"cgo",
    		"composite",
    		"copylock",
    		"deadcode",
    		"directive",
    		"httpresponse",
    		"lostcancel",
    		"method",
    		"nilfunc",
    		"print",
    		"shift",
    		"slog",
    		"structtag",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows_test.go

    }
    
    func getCallbackTestFuncs() []cbFunc {
    	if regs := runtime.SetIntArgRegs(-1); regs > 0 {
    		return cbFuncsRegABI
    	}
    	return cbFuncs
    }
    
    type cbDLL struct {
    	name      string
    	buildArgs func(out, src string) []string
    }
    
    func (d *cbDLL) makeSrc(t *testing.T, path string) {
    	f, err := os.Create(path)
    	if err != nil {
    		t.Fatalf("failed to create source file: %v", err)
    	}
    	defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top