Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GOINSECURE (0.1 sec)

  1. src/internal/cfg/cfg.go

    	FC
    	GCCGO
    	GO111MODULE
    	GO386
    	GOAMD64
    	GOARCH
    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    	GOMIPS64
    	GOMODCACHE
    	GONOPROXY
    	GONOSUMDB
    	GOOS
    	GOPATH
    	GOPPC64
    	GOPRIVATE
    	GOPROXY
    	GORISCV64
    	GOROOT
    	GOSUMDB
    	GOTMPDIR
    	GOTOOLCHAIN
    	GOTOOLDIR
    	GOVCS
    	GOWASM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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