Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,353 for example1 (0.13 sec)

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

    example.com/cmd contains main packages.
    
    v1.0.0 is the latest non-retracted version. Other versions contain errors or
    detectable problems.
    
    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    -- a/a.go --
    package main
    
    import "fmt"
    
    func main() { fmt.Println("a@v1.0.0") }
    -- b/b.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 16:11:09 UTC 2021
    - 476 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab

    See example.com_retract_self_pseudo_v1.9.0.txt.
    
    This version is not retracted. It should be returned by the proxy's
    @latest endpoint. It should match the @latest version query.
    
    TODO(golang.org/issue/24031): the proxy and proxy.golang.org both return
    the highest release version from the @latest endpoint, even if that
    version is retracted, so there is no way for the go command to
    discover an unretracted pseudo-version.
    
    -- .mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 568 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_deprecated_a_v1.0.0.txt

    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/deprecated/a
    
    go 1.17
    -- go.mod --
    module example.com/deprecated/a
    
    go 1.17
    -- a.go --
    package a
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 246 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v1.9.0.txt

    Module example.com/retract/self/pseudo is a module that retracts its own
    latest version, as well as an earlier version.
    
    An unretracted pseudo-version is available.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 310 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_printversion_v0.1.0.txt

    example.com/printversion v0.1.0
    
    -- .mod --
    module example.com/printversion
    -- .info --
    {"Version":"v0.1.0"}
    -- README.txt --
    There is no go.mod file for this version of the module.
    -- printversion.go --
    package main
    
    import (
    	"fmt"
    	"os"
    	"runtime/debug"
    
    	_ "example.com/version"
    )
    
    func main() {
    	info, _ := debug.ReadBuildInfo()
    	fmt.Fprintf(os.Stdout, "path is %s\n", info.Path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 25 15:43:19 UTC 2020
    - 781 bytes
    - Viewed (0)
Back to top