Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 983 for hand (0.14 sec)

  1. src/cmd/go/testdata/mod/rsc.io_fortune_v1.0.0.txt

    rsc.io/fortune v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/fortune
    -- .info --
    {"Version":"v1.0.0"}
    -- fortune.go --
    package main
    
    import "rsc.io/quote"
    
    func main() {
    	println(quote.Hello())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:25 UTC 2018
    - 199 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/patch.example.com_indirect_v1.0.0.txt

    patch.example.com/indirect v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/indirect
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/indirect
    -- direct.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 209 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_pseudoupgrade_v0.1.0.txt

    example.com/pseudoupgrade v0.1.0
    written by hand
    
    -- .mod --
    module example.com/pseudoupgrade
    
    -- .info --
    {"Version":"v0.1.0","Name":"","Short":"","Time":"2019-04-29T07:30:30Z"}
    
    -- pseudoupgrade.go --
    package pseudoupgrade
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 14:47:22 UTC 2019
    - 238 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_needgo118_v0.0.1.txt

    rsc.io/needgo118 0.0.1
    written by hand
    
    -- .mod --
    module rsc.io/needgo118
    go 1.18
    
    -- go.mod --
    module rsc.io/needgo118
    go 1.18
    
    -- .info --
    {"Version":"v0.0.1"}
    -- p.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 197 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_needgo121_v0.0.1.txt

    rsc.io/needgo121 0.0.1
    written by hand
    
    -- .mod --
    module rsc.io/needgo121
    go 1.21
    
    -- go.mod --
    module rsc.io/needgo121
    go 1.21
    
    -- .info --
    {"Version":"v0.0.1"}
    -- p.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 197 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/patch.example.com_direct_v1.0.1.txt

    patch.example.com/direct v1.0.1
    written by hand
    
    -- .mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    	patch.example.com/depofdirectpatch v1.0.0
    )
    -- .info --
    {"Version":"v1.0.1"}
    -- go.mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    	patch.example.com/depofdirectpatch 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
    - 533 bytes
    - Viewed (0)
  7. test/varerr.go

    // Does not compile.
    
    package main
    
    func main() {
    	_ = asdf	// ERROR "undefined.*asdf"
    
    	new = 1	// ERROR "use of builtin new not in function call|invalid left hand side|must be called"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 449 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_badfile4_v1.0.0.txt

    rsc.io/badfile4 v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/badfile4
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module rsc.io/badfile4
    -- x/Y.go --
    package x
    -- x/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 18 02:08:59 UTC 2018
    - 191 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/gopkg.in_dummy.v2-unstable_v2.0.0.txt

    gopkg.in/dummy.v2-unstable v2.0.0
    written by hand
    
    -- .mod --
    module gopkg.in/dummy.v2-unstable
    -- .info --
    {"Version":"v2.0.0"}
    -- dummy.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:31 UTC 2018
    - 158 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_latemigrate_v2_v2.0.1.txt

    example.com/latemigrate/v2 v2.0.1
    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.1 belongs to example.com/latemigrate/v2.
    
    -- .mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    -- .info --
    {"Version":"v2.0.1"}
    -- go.mod --
    module example.com/latemigrate/v2
    
    require rsc.io/quote v1.3.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 449 bytes
    - Viewed (0)
Back to top