Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,521 for examplev1 (0.31 sec)

  1. src/cmd/go/testdata/mod/example.com_newcycle_a_v1.0.1.txt

    example.com/newcycle/a v1.0.1
    
    Transitively requires itself via example.com/newcycle/b
    
    -- .mod --
    module example.com/newcycle/a
    
    require example.com/newcycle/b v1.0.0
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:39:38 UTC 2019
    - 201 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_noroot_v1.0.1.txt

    A module which has no root package.
    
    -- .mod --
    module example.com/noroot
    -- .info --
    {"Version":"v1.0.1"}
    -- pkg/pkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 14 18:01:34 UTC 2019
    - 136 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_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)
  5. src/cmd/go/testdata/mod/example.com_split_subpkg_v1.1.0.txt

    Written by hand.
    Test case for getting a package that has been moved to a different module.
    
    -- .mod --
    module example.com/split/subpkg
    
    require example.com/split v1.1.0
    -- .info --
    {"Version": "v1.1.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 230 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_split_v1.0.0.txt

    Written by hand.
    Test case for getting a package that has been moved to a different module.
    
    -- .mod --
    module example.com/split
    -- .info --
    {"Version": "v1.0.0"}
    -- subpkg/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 196 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_tools_v1.0.0.txt

    -- .info --
    {"Version": "v1.0.0"}
    -- .mod --
    module example.com/tools
    -- cmd/hello/hello.go --
    package main
    
    import "fmt"
    
    func main() {
    	fmt.Println("hello")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 26 15:02:32 UTC 2019
    - 161 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt

    with the same version.
    
    -- .mod --
    module example.net/ambiguous
    
    go 1.16
    -- .info --
    {"Version": "v0.1.0"}
    -- go.mod --
    module example.net/ambiguous
    
    go 1.16
    -- nested/pkg/pkg.go --
    // Package pkg exists in both example.net/ambiguous v0.1.0
    // and example.net/ambiguous/nested v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 30 18:07:21 UTC 2020
    - 395 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.net_pkgadded_v1.0.0.txt

    Written by hand.
    Test module with a root package added in v1.1.0
    and a subpackage added in v1.2.0.
    
    -- .mod --
    module example.net/pkgadded
    
    go 1.16
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- README.txt --
    We will add the package example.net/pkgadded in v1.1.0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 347 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.net_pkgadded_v1.2.0.txt

    Written by hand.
    Test module with a root package added in v1.1.0
    and a subpackage added in v1.2.0.
    
    -- .mod --
    module example.net/pkgadded
    
    go 1.16
    -- .info --
    {"Version":"v1.2.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- pkgadded.go --
    // Package pkgadded was added in v1.1.0.
    package pkgadded
    -- subpkg/subpkg.go --
    // Package subpkg was added in v1.2.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 384 bytes
    - Viewed (0)
Back to top