Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GOENV (0.03 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    are recorded in a Go environment configuration file stored in the
    per-user configuration directory, as reported by os.UserConfigDir.
    The location of the configuration file can be changed by setting
    the environment variable GOENV, and 'go env GOENV' prints the
    effective location, but 'go env -w' cannot change the default location.
    See 'go help env' for details.
    
    General-purpose environment variables:
    
    	GO111MODULE
    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. Makefile.core.mk

    # Target: environment and tools
    #-----------------------------------------------------------------------------
    .PHONY: show.env show.goenv
    
    show.env: ; $(info $(H) environment variables...)
    	$(Q) printenv
    
    show.goenv: ; $(info $(H) go environment...)
    	$(Q) $(GO) version
    	$(Q) $(GO) env
    
    # show makefile variables. Usage: make show.<variable-name>
    show.%: ; $(info $* $(H) $($*))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // per-user configuration directory, as reported by os.UserConfigDir.
    // The location of the configuration file can be changed by setting
    // the environment variable GOENV, and 'go env GOENV' prints the
    // effective location, but 'go env -w' cannot change the default location.
    // See 'go help env' for details.
    //
    // General-purpose environment variables:
    //
    //	GO111MODULE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top