Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,776 for example2 (0.21 sec)

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

    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/deprecated/b
    
    go 1.17
    -- go.mod --
    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
    - 160 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_join_subpkg_v1.1.0.txt

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

    See example.com_retract_self_pref_v1.9.0.txt.
    
    This version is the latest (only) non-retracted version.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    -- .info --
    {"Version":"v1.1.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 218 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_self_all_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version.
    
    No unretracted versions are available.
    
    -- .mod --
    module example.com/retract/self/all
    
    go 1.15
    
    retract v1.9.0 // bad
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 241 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_nest_v1.0.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is the top-level module.
    
    -- .mod --
    module example.com/nest
    -- .info --
    {"Version": "v1.0.0"}
    -- go.mod --
    module example.com/nest
    -- sub/x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 244 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_nest_v1.1.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is the top-level module.
    
    -- .mod --
    module example.com/nest
    -- .info --
    {"Version": "v1.1.0"}
    -- go.mod --
    module example.com/nest
    -- sub/x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 244 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_undeprecated_v1.0.1.txt

    -- .info --
    {"Version":"v1.0.1"}
    -- .mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- go.mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- undeprecated.go --
    package undeprecated
    
    -- 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
    - 316 bytes
    - Viewed (0)
  9. src/cmd/go/internal/web/url_windows_test.go

    	// URLs to non-ASCII strings.
    	{
    		url:          `file:///C:/exampleㄓ.txt`,
    		filePath:     `C:\exampleㄓ.txt`,
    		canonicalURL: `file:///C:/example%E3%84%93.txt`,
    	},
    	{
    		url:      `file:///C:/example%E3%84%93.txt`,
    		filePath: `C:\exampleㄓ.txt`,
    	},
    
    	// Examples from RFC 8089:
    
    	// We allow the drive-letter variation from section E.2, because it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. src/go/doc/example_test.go

    			for _, f := range archive.Files {
    				golden[f.Name] = strings.TrimSpace(string(f.Data))
    			}
    
    			// Collect the results of doc.Examples in a map keyed by example name.
    			examples := map[string]*doc.Example{}
    			for _, e := range doc.Examples(astFile) {
    				examples[e.Name] = e
    				// Treat missing sections in the golden as empty.
    				for _, kind := range []string{"Play", "Output"} {
    					key := e.Name + "." + kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top