Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GOVCS (0.02 sec)

  1. src/cmd/go/internal/modget/get.go

    variable; otherwise it is public.
    
    If no rules in the GOVCS variable match a particular module or import path,
    the 'go get' command applies its default rule, which can now be summarized
    in GOVCS notation as 'public:git|hg,private:all'.
    
    To allow unfettered use of any version control system for any package, use:
    
    	GOVCS=*:all
    
    To disable all use of version control, use:
    
    	GOVCS=*:off
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	"cmd/go/internal/work"
    	"cmd/internal/sys"
    
    	cmdgo "cmd/go"
    )
    
    func init() {
    	// GOVCS defaults to public:git|hg,private:all,
    	// which breaks many tests here - they can't use non-git, non-hg VCS at all!
    	// Change to fully permissive.
    	// The tests of the GOVCS setting itself are in ../../testdata/script/govcs.txt.
    	os.Setenv("GOVCS", "*:all")
    }
    
    var (
    	canRace = false // whether we can run the race detector
    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