Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for move (0.26 sec)

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

    Use "go help{{with .LongName}} {{.}}{{end}} <command>" for more information about a command.
    {{if eq (.UsageLine) "go"}}
    Additional help topics:
    {{range .Commands}}{{if and (not .Runnable) (not .Commands)}}
    	{{.Name | printf "%-15s"}} {{.Short}}{{end}}{{end}}
    
    Use "go help{{with .LongName}} {{.}}{{end}} <topic>" for more information about that topic.
    {{end}}
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/help.go

    // license that can be found in the LICENSE file.
    
    package modload
    
    import "cmd/go/internal/base"
    
    var HelpModules = &base.Command{
    	UsageLine: "modules",
    	Short:     "modules, module versions, and more",
    	Long: `
    Modules are how Go manages dependencies.
    
    A module is a collection of packages that are released, versioned, and
    distributed together. Modules may be downloaded directly from version control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
Back to top