Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,775 for example1 (0.16 sec)

  1. src/cmd/go/testdata/mod/example.com_deprecated_b_v1.9.0.txt

    -- .info --
    {"Version":"v1.9.0"}
    -- .mod --
    // Deprecated: in example.com/deprecated/b@v1.9.0
    module example.com/deprecated/b
    
    go 1.17
    -- go.mod --
    // Deprecated: in example.com/deprecated/b@v1.9.0
    module example.com/deprecated/b
    
    go 1.17
    -- b.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 09 18:20:48 UTC 2021
    - 260 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_generics_v1.0.0.txt

    example.com/generics v1.0.0
    written by hand
    
    -- .mod --
    module example.com/generics
    
    go 1.18
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/generics
    
    go 1.18
    -- generics.go --
    package generics
    
    type Int interface {
    	~int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 20:37:36 UTC 2022
    - 255 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.net_ambiguous_nested_v0.1.0.txt

    with the same version.
    
    -- .mod --
    module example.net/ambiguous/nested
    
    go 1.16
    -- .info --
    {"Version": "v0.1.0"}
    -- go.mod --
    module example.net/ambiguous/nested
    
    go 1.16
    -- 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
    - 402 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_invalidpath_v1_v1.0.0.txt

    example.com/invalidpath/v1 v1.0.0
    written by hand
    
    -- .mod --
    module example.com/invalidpath/v1
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/invalidpath/v1
    -- version.go --
    package version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 18:48:02 UTC 2018
    - 229 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_badchain_a_v1.0.0.txt

    example.com/badchain/a v1.0.0
    
    -- .mod --
    module example.com/badchain/a
    
    require example.com/badchain/b v1.0.0
    -- .info --
    {"Version":"v1.0.0"}
    -- a.go --
    package a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:00:56 UTC 2019
    - 200 bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/mod/example.com_cmd_v1.9.0.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.9.0"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    // this is a bad version
    retract v1.9.0
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    // this is a bad version
    retract v1.9.0
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 381 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_downgrade_v2_v2.0.1.txt

    example.com/downgrade/v2 v2.0.1
    written by hand
    
    -- .mod --
    module example.com/downgrade/v2
    
    require rsc.io/quote v1.5.2
    -- .info --
    {"Version":"v2.0.1"}
    -- go.mod --
    module example.com/downgrade/v2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 228 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_latemigrate_v2_v2.0.0.txt

    example.com/latemigrate/v2 v2.0.0
    written by hand
    
    This repository migrated to modules in v2.0.1 after v2.0.0 was already tagged.
    All versions require rsc.io/quote so we can test downgrades.
    
    v2.0.0 is technically part of example.com/latemigrate as v2.0.0+incompatible.
    Proxies may serve it as part of the version list for example.com/latemigrate/v2.
    'go get' must be able to ignore these versions.
    
    -- .mod --
    module example.com/latemigrate
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 475 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.net_ambiguous_v0.2.0.txt

    with the same version.
    
    -- .mod --
    module example.net/ambiguous
    
    go 1.16
    -- .info --
    {"Version": "v0.2.0"}
    -- go.mod --
    module example.net/ambiguous
    
    go 1.16
    -- nested/pkg/README.txt --
    // Package pkg no longer exists in this module at v0.2.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 30 18:07:21 UTC 2020
    - 402 bytes
    - Viewed (0)
Back to top