Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 464 for Persian (2.17 sec)

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

    cp go.mod.orig go.mod
    ! go get github.com/pierrec/lz4@v2.0.8
    stderr 'go: github.com/pierrec/lz4@v2.0.8: invalid version: module contains a go.mod file, so module path must match major version \("github.com/pierrec/lz4/v2"\)$'
    
    # An invalid +incompatible suffix for a canonical version should error out,
    # not resolve to a pseudo-version.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor_auto.txt

    # example.com/version v1.0.0 => ./replacement-version
    example.com/version
    -- $WORK/modules-bad-1.13.txt --
    # example.com/printversion v1.1.0
    example.com/printversion
    # example.com/version v1.1.0
    example.com/version
    -- $WORK/auto/vendor/example.com/printversion/go.mod --
    module example.com/printversion
    
    require example.com/version v1.0.0
    replace example.com/version v1.0.0 => ../oops v0.0.0
    exclude example.com/version v1.0.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_version_v1.0.0.txt

    example.com/version v1.0.0
    written by hand
    
    -- .mod --
    module example.com/version
    -- .info --
    {"Version":"v1.0.0"}
    -- version.go --
    package version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 29 18:57:53 UTC 2018
    - 168 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_version_v1.0.1.txt

    example.com/version v1.0.1
    written by hand
    
    -- .mod --
    module example.com/version
    -- .info --
    {"Version":"v1.0.1"}
    -- version.go --
    package version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 29 18:57:53 UTC 2018
    - 168 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_deprecated_replace.txt

    cp go.mod.allreplaced go.mod
    go list -m -u -f '{{.Path}}@{{.Version}} <{{.Deprecated}}>{{with .Replace}} => {{.Path}}@{{.Version}} <{{.Deprecated}}>{{end}}' all
    stdout '^example.com/deprecated/a@v1.0.0 <> => example.com/deprecated/b@v1.0.0 <in example.com/deprecated/b@v1.9.0>$'
    
    # When one version is replaced, we should see a deprecation message.
    cp go.mod.onereplaced go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 09 18:20:48 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.0.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
    
    -- .info --
    {"Version":"v1.0.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 365 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_retract_replace.txt

    # If we replace that version, we should see retractions.
    go mod edit -replace=example.com/retract/missingmod@v1.9.0=./missingmod-v1.9.0
    go list -m -retracted -f '{{range .Retracted}}{{.}}{{end}}' example.com/retract/missingmod
    stdout '^bad version$'
    
    # If we replace the retracted version, we should not see a retraction.
    go mod edit -replace=example.com/retract/missingmod=./missingmod-v1.9.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    # higher version of itself.
    ! go install example.com/cmd/a@v1.0.0-newerself
    stderr '^go: example.com/cmd/a@v1.0.0-newerself: version constraints conflict:\n\texample.com/cmd@v1.0.0-newerself requires example.com/cmd@v1.0.0, but v1.0.0-newerself is requested$'
    
    
    # 'go install pkg@version' will only match a retracted version if it's
    # explicitly requested.
    env GO111MODULE=on
    go list -m -versions example.com/cmd
    ! stdout v1.9.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_lazy_self.txt

    # Regression test for https://golang.org/issue/46078:
    # 'go mod tidy' should not panic if the main module initially
    # requires an older version of itself.
    
    # A module may require an older version of itself without error. This is
    # inconsistent (the required version is never selected), but we still get
    # a reproducible build list.
    go list -m all
    stdout '^golang.org/issue/46078$'
    
    # 'go mod tidy' should fix this (and not crash).
    go mod tidy
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 20:06:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/gotoolchain_modcmds.txt

    # If the main module's go.mod file lists a version lower than the version
    # required by its dependencies, the commands that fetch and diagnose the module
    # graph (such as 'go mod graph' and 'go mod verify') should fail explicitly:
    # they can't interpret the graph themselves, and they aren't allowed to update
    # the go.mod file to record a specific, stable toolchain version that can.
    
    ! go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top