Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,789 for ExampleA (0.15 sec)

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

    example.com/newcycle/b v1.0.0
    
    -- .mod --
    module example.com/newcycle/b
    
    require example.com/newcycle/a v1.0.1
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:39:38 UTC 2019
    - 144 bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/testdata/mod/example.com_retract_ambiguous_other_v1.0.0.txt

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

    -- .mod --
    module example.com/fuzzfail
    
    go 1.18
    -- .info --
    {"Version":"v0.1.0"}
    -- go.mod --
    module example.com/fuzzfail
    
    go 1.18
    -- fuzzfail_test.go --
    package fuzzfail
    
    import "testing"
    
    func FuzzFail(f *testing.F) {
    	f.Fuzz(func(t *testing.T, b []byte) {
    		t.Fatalf("oops: %q", b)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 291 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_fuzzfail_v0.2.0.txt

    -- .mod --
    module example.com/fuzzfail
    
    go 1.18
    -- .info --
    {"Version":"v0.2.0"}
    -- go.mod --
    module example.com/fuzzfail
    
    go 1.18
    -- fuzzfail_test.go --
    package fuzzfail
    
    import "testing"
    
    func FuzzFail(f *testing.F) {
    	f.Fuzz(func(t *testing.T, b []byte) {
    		t.Fatalf("oops: %q", b)
    	})
    }
    -- testdata/fuzz/FuzzFail/bbb0c2d22aa1a24617301566dc7486f8b625d38024603ba62757c1124013b49a --
    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:39 UTC 2021
    - 416 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.9.0.txt

    Module example.com/retract/description retracts all versions of itself.
    The rationale comments have various problems.
    
    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    
    retract (
    	v1.0.0-empty
    
    	// short description
    	// more
    	//
    	// detail
    	v1.0.0-multiline1 // suffix
    	// after not included
    )
    
    // short description
    // more
    //
    // detail
    retract v1.0.0-multiline2 // suffix
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version, as well as an earlier version.
    
    A previous unretracted release version, v1.1.0, is still available.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    retract v1.0.0-bad // 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:12:37 UTC 2020
    - 351 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_incompatiblewithsub_v1.0.0.txt

    Module example.com/incompatiblewithsub has an incompatible version
    and a package in a subdirectory.
    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/incompatiblewithsub
    -- sub/sub.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 16:50:30 UTC 2020
    - 212 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_split_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
    
    require example.com/split/subpkg v1.1.0
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 204 bytes
    - Viewed (0)
Back to top