Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 972 for retract (0.13 sec)

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

    # the main module).
    
    cp go.mod go.mod.orig
    
    go mod graph
    cp stdout graph-1.17.txt
    stdout '^example\.com/m example\.com/retract/incompatible@v1\.0\.0$'
    stdout '^example\.net/lazy@v0\.1\.0 example\.com/retract/incompatible@v1\.0\.0$'
    ! stdout 'example\.com/retract/incompatible@v2\.0\.0\+incompatible'
    
    go mod graph -go=1.17
    cmp stdout graph-1.17.txt
    
    cmp go.mod go.mod.orig
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_retract_rename.txt

    # Populate go.sum.
    go get
    
    # 'go list -m -retracted' should load retractions, even if the version
    # containing retractions has a different module path.
    go list -m -retracted -f '{{with .Retracted}}retracted{{end}}' example.com/retract/rename
    
    # 'go list -m -u' should load retractions, too.
    go list -m -u -f '{{with .Retracted}}retracted{{end}}' example.com/retract/rename
    
    # 'go get' should warn about the retracted version.
    go get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 863 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.0.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    retract v1.0.0 // bad
    retract v1.9.0 // self
    
    -- .info --
    {"Version":"v1.9.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 411 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_retract_incompatible_v1.0.0.txt

    The v1.0.0 release of example.com/retract/incompatible retracts
    v2.0.0+incompatible.
    
    -- .mod --
    module example.com/retract/incompatible
    
    go 1.16
    
    retract v2.0.0+incompatible
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/retract/incompatible
    
    go 1.16
    
    retract v2.0.0+incompatible
    -- incompatible.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 20 16:23:19 UTC 2020
    - 342 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v1.9.0.txt

    Module example.com/retract/self/pseudo is a module that retracts its own
    latest version, as well as an earlier version.
    
    An unretracted pseudo-version is available.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 310 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    
    # There are two ways for the module author to bring the two into alignment.
    # One is to *explicitly* 'exclude' the version that is already *implicitly*
    # pruned out under 1.17.
    
    go mod edit -exclude=example.com/retract/incompatible@v2.0.0+incompatible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_v1.1.0.txt

    -- .mod --
    module example.com/retract
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.0.0-unused // bad
    
    -- .info --
    {"Version":"v1.1.0"}
    
    -- retract.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 171 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_retract_versions.txt

    go list -m -e -f $FMT example.com/retract/self/pseudo
    stdout '^example.com/retract/self/pseudo: "module example.com/retract/self/pseudo: not a known dependency" ""$'
    
    go list -m -e -f $FMT example.com/retract/self/pseudo@latest
    stdout '^example.com/retract/self/pseudo: "module example.com/retract/self/pseudo: no matching versions for query \\"latest\\"" "latest"$'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 16:02:44 UTC 2021
    - 981 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_retract_ambiguous.txt

    ! go get example.com/retract/ambiguous/other
    stderr 'ambiguous import: found package example.com/retract/ambiguous/nested in multiple modules:'
    stderr '^go: warning: example.com/retract/ambiguous/nested@v1.9.0-bad: retracted by module author: nested modules are bad$'
    
    -- go.mod --
    module example.com/use
    
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 371 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_retract_noupgrade.txt

    go list -m -u example.com/retract/noupgrade
    stdout '^example.com/retract/noupgrade v1.0.0 \(retracted\)$'
    
    -- go.mod --
    module use
    
    go 1.19
    
    require example.com/retract/noupgrade v1.0.0
    -- go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 20:57:09 UTC 2022
    - 291 bytes
    - Viewed (0)
Back to top