Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for retracted$ (0.14 sec)

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

    ! exists $GOPATH/pkg/mod/cache/download/example.com/retract/@v/v1.1.0.mod
    
    # Importing a package from a module with a retracted latest version will
    # select the latest non-retracted version.
    go get ./use_self_prev
    go list -m example.com/retract/self/prev
    stdout '^example.com/retract/self/prev v1.1.0$'
    exists $GOPATH/pkg/mod/cache/download/example.com/retract/self/prev/@v/v1.9.0.mod
    
    -- go.mod --
    module example.com/use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_retract_pseudo_base.txt

    # as the base.
    # Verifies golang.org/issue/41700.
    
    [short] skip
    [!git] skip
    env GOPROXY=direct
    env GOSUMDB=off
    go mod init m
    
    # Control: check that v1.0.0 is the only version and is retracted.
    go list -m -versions vcs-test.golang.org/git/retract-pseudo.git
    stdout '^vcs-test.golang.org/git/retract-pseudo.git$'
    go list -m -versions -retracted vcs-test.golang.org/git/retract-pseudo.git
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v1.0.0-bad.txt

    See example.com_retract_self_pseudo_v1.9.0.txt.
    
    This version is retracted.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-bad"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 196 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_missingmod_v1.0.0.txt

    This version should be retracted, but the go.mod file for the version that would
    contain the retraction is not available.
    -- .mod --
    module example.com/retract/missingmod
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0"}
    -- missingmod.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 252 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.1.0.txt

    See example.com_retract_self_pref_v1.9.0.txt.
    
    This version is the latest (only) non-retracted version.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    -- .info --
    {"Version":"v1.1.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 218 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.0.0-bad.txt

    See example.com_retract_self_prev_v1.9.0.txt.
    
    This version is retracted.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-bad"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 192 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0.txt

    example.com/cmd contains main packages.
    
    v1.0.0 is the latest non-retracted version. Other versions contain errors or
    detectable problems.
    
    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    -- a/a.go --
    package main
    
    import "fmt"
    
    func main() { fmt.Println("a@v1.0.0") }
    -- b/b.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 16:11:09 UTC 2021
    - 476 bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/mod_retract_fix_version.txt

    # Verifies #44494.
    go mod edit -module=rsc.io/quote/v2
    ! go list -m all
    stderr '^go: updates to go.mod needed; to update it:\n\tgo mod tidy$'
    go mod tidy
    go list -m all
    cmp go.mod go.mod.want
    
    # If a retracted version doesn't match the module's major version suffx,
    # an error should be reported.
    ! go mod edit -retract=v3.0.1
    stderr '^go: -retract=v3.0.1: version "v3.0.1" invalid: should be v2, not v3$'
    cp go.mod.mismatch-v2 go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top