Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,776 for example2 (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/mod/example.com_missingpkg_v1.0.0.txt

    The deprecated package is present in this version (which is @latest) but
    is deleted in a newer prerelease version.
    
    -- .mod --
    module example.com/missingpkg
    -- .info --
    {"Version":"v1.0.0"}
    -- lib.go --
    package lib
    -- deprecated/deprecated.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 265 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_join_v1.0.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 137 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_v1.0.0.txt

    Written by hand.
    Test case for module at root of domain.
    
    -- .mod --
    module example.com
    -- .info --
    {"Version": "v1.0.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 143 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_retract_ambiguous_v1.0.0.txt

    -- .mod --
    module example.com/retract/ambiguous
    
    go 1.16
    -- .info --
    {"Version":"v1.0.0"}
    -- nested/nested.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 15:31:11 UTC 2020
    - 129 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/patch.example.com_direct_v1.1.0.txt

    patch.example.com/direct v1.1.0
    written by hand
    
    -- .mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- .info --
    {"Version":"v1.1.0"}
    -- go.mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- direct.go --
    package direct
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 336 bytes
    - Viewed (0)
  10. 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)
Back to top