Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for buildFlags (0.11 sec)

  1. src/go/build/build.go

    	// Clients creating a new context may customize BuildTags, which
    	// defaults to empty, but it is usually an error to customize ToolTags or ReleaseTags.
    	// ToolTags defaults to build tags appropriate to the current Go toolchain configuration.
    	// ReleaseTags defaults to the list of Go releases the current release is compatible with.
    	// BuildTags is not set for the Default build Context.
    	// In addition to the BuildTags, ToolTags, and ReleaseTags, build constraints
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    finds any problems, go test reports those and does not run the test
    binary. Only a high-confidence subset of the default go vet checks are
    used. That subset is: atomic, bool, buildtags, directive, errorsas,
    ifaceassert, nilfunc, printf, and stringintconv. You can see
    the documentation for these and other vet tests via "go doc cmd/vet".
    To disable the running of go vet, use the -vet=off flag. To run all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	}{
    		{"GOARCH", runtime.GOARCH},
    		{"GOOS", runtime.GOOS},
    		{"GOROOT", testGOROOT},
    		{"GOPATH", os.Getenv("GOPATH")},
    		{"CgoEnabled", ""},
    		{"UseAllFiles", ""},
    		{"Compiler", ""},
    		{"BuildTags", ""},
    		{"ReleaseTags", ""},
    		{"InstallSuffix", ""},
    	} {
    		tt := tt
    		t.Run(tt.v, func(t *testing.T) {
    			tg := testgo(t)
    			tg.parallel()
    			defer tg.cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top