Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for GOINSECURE (0.36 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/alldocs.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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    		fmt.Fprintf(os.Stderr, "go: -fix flag is a no-op\n")
    	}
    	if *getM {
    		base.Fatalf("go: -m flag is no longer supported")
    	}
    	if *getInsecure {
    		base.Fatalf("go: -insecure flag is no longer supported; use GOINSECURE instead")
    	}
    
    	modload.ForceUseModules = true
    
    	// Do not allow any updating of go.mod until we've applied
    	// all the requested changes and checked that the result matches
    	// what was requested.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top