Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for CMD (0.03 sec)

  1. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    go install example.com/cmd/a@v1.0.0 example.com/cmd/nomatch...@v1.0.0
    stderr '^go: warning: "example.com/cmd/nomatch\.\.\." matched no packages$'
    
    # If a wildcard matches only non-main packages, we should see a different warning.
    go install example.com/cmd/err...@v1.0.0
    stderr '^go: warning: "example.com/cmd/err\.\.\." matched only non-main packages$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/README.vendor

    Vendoring in std and cmd
    ========================
    
    The Go command maintains copies of external packages needed by the
    standard library in the src/vendor and src/cmd/vendor directories.
    
    There are two modules, std and cmd, defined in src/go.mod and
    src/cmd/go.mod. When a package outside std or cmd is imported
    by a package inside std or cmd, the import path is interpreted
    as if it had a "vendor/" prefix. For example, within "crypto/tls",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    ! go run example.com/cmd/err@v1.0.0
    stderr '^package example.com/cmd/err is not a main package$'
    
    
    # 'go run pkg@version' should report errors if the module contains
    # replace or exclude directives.
    go mod download example.com/cmd@v1.0.0-replace
    ! go run example.com/cmd/a@v1.0.0-replace
    cmp stderr replace-err
    
    go mod download example.com/cmd@v1.0.0-exclude
    ! go run example.com/cmd/a@v1.0.0-exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. doc/next/3-tools.md

    by any [`//go:build` constraints](https://pkg.go.dev/cmd/go#hdr-Build_constraints)
    in the file.)
    
    For example, it will report a diagnostic for a reference to the
    `reflect.TypeFor` function (introduced in go1.22) from a file in a
    module whose go.mod file specifies `go 1.21`.
    
    ### Cgo {#cgo}
    
    <!-- go.dev/issue/66456 -->
    [cmd/cgo] supports the new `-ldflags` flag for passing flags to the C linker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_undeprecated_v1.0.1.txt

    -- .mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- go.mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- undeprecated.go --
    package undeprecated
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 316 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_undeprecated_v1.0.0.txt

    -- .mod --
    // Deprecated: in v1.0.0
    module example.com/undeprecated
    
    go 1.17
    -- go.mod --
    // Deprecated: in v1.0.0
    module example.com/undeprecated
    
    go 1.17
    -- undeprecated.go --
    package undeprecated
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 318 bytes
    - Viewed (0)
  7. src/cmd/go.mod

    module cmd
    
    go 1.23
    
    require (
    	github.com/google/pprof v0.0.0-20240528025155-186aa0362fba
    	golang.org/x/arch v0.8.0
    	golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    	golang.org/x/mod v0.18.0
    	golang.org/x/sync v0.7.0
    	golang.org/x/sys v0.21.0
    	golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b
    	golang.org/x/term v0.20.0
    	golang.org/x/tools v0.21.1-0.20240604144337-208808308b70
    )
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 595 bytes
    - Viewed (0)
  8. doc/next/9-todo.md

    a few x/tools CLs tagged and deleted the golang.org/x/tools/cmd/guru command per accepted proposal https://go.dev/issue/65880; an unreleased change and not something that's in scope of Go 1.23 release notes
    CL 580076 - seemingly internal cmd/go change to propagate module information for accepted proposal https://go.dev/issue/66315; doesn't seem to warrant a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_deprecated_a_v1.0.0.txt

    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/deprecated/a
    
    go 1.17
    -- go.mod --
    module example.com/deprecated/a
    
    go 1.17
    -- a.go --
    package a
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 246 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_deprecated_a_v1.9.0.txt

    module example.com/deprecated/a
    
    go 1.17
    -- go.mod --
    // Deprecated: in example.com/deprecated/a@v1.9.0
    module example.com/deprecated/a
    
    go 1.17
    -- a.go --
    package a
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 346 bytes
    - Viewed (0)
Back to top