Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GOINSECURE (0.12 sec)

  1. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOEXPERIMENT", Value: cfg.RawGOEXPERIMENT},
    
    		{Name: "GOFLAGS", Value: cfg.Getenv("GOFLAGS")},
    		{Name: "GOHOSTARCH", Value: runtime.GOARCH},
    		{Name: "GOHOSTOS", Value: runtime.GOOS},
    		{Name: "GOINSECURE", Value: cfg.GOINSECURE},
    		{Name: "GOMODCACHE", Value: cfg.GOMODCACHE, Changed: cfg.GOMODCACHEChanged},
    		{Name: "GONOPROXY", Value: cfg.GONOPROXY, Changed: cfg.GONOPROXYChanged},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cfg/cfg.go

    	GOPRIVATE                   = Getenv("GOPRIVATE")
    	GONOPROXY, GONOPROXYChanged = EnvOrAndChanged("GONOPROXY", GOPRIVATE)
    	GONOSUMDB, GONOSUMDBChanged = EnvOrAndChanged("GONOSUMDB", GOPRIVATE)
    	GOINSECURE                  = Getenv("GOINSECURE")
    	GOVCS                       = Getenv("GOVCS")
    )
    
    // EnvOrAndChanged returns the environment variable value
    // and reports whether it differs from the default value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    		are applied after this list and therefore override it.
    	GOINSECURE
    		Comma-separated list of glob patterns (in the syntax of Go's path.Match)
    		of module path prefixes that should always be fetched in an insecure
    		manner. Only applies to dependencies that are being fetched directly.
    		GOINSECURE does not disable checksum database validation. GOPRIVATE or
    		GONOSUMDB may be used to achieve that.
    	GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/repo.go

    	errUseProxy error = notExistErrorf("path does not match GOPRIVATE/GONOPROXY")
    )
    
    func lookupDirect(ctx context.Context, path string) (Repo, error) {
    	security := web.SecureOnly
    
    	if module.MatchPrefixPatterns(cfg.GOINSECURE, path) {
    		security = web.Insecure
    	}
    	rr, err := vcs.RepoRootForImportPath(path, vcs.PreferMod, security)
    	if err != nil {
    		// We don't know where to find code for a module with this path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top