Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 221 for gofmt (0.03 sec)

  1. src/cmd/gofmt/testdata/rewrite8.input

    //gofmt -r=interface{}->int
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check that literal type expression rewrites are accepted.
    // Was issue 4406.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 300 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/Makefile

    tables.go: ../armmap/map.go ../arm.csv 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 149 bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/stdin6.golden

    	//gofmt -stdin
    
    	if err != nil {
    		source := strings.NewReader(`line 1.
    line 2.
    `)
    		return source
    	}
    
    	f := func(hat, tail string) {
    
    		fmt.Println(hat+`
    foo
    
    
    `+tail,
    			"more",
    			"and more")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 30 00:04:48 UTC 2014
    - 199 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/Makefile

    tables.go: ../x86map/map.go ../x86.csv 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 150 bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/blank.txt

    -- input --
    	$
    	Blank line at start and end.
    	$
    -- gofmt --
    Blank line at start and end.
    -- text --
    Blank line at start and end.
    -- markdown --
    Blank line at start and end.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:40 UTC 2022
    - 216 bytes
    - Viewed (0)
  6. src/cmd/gofmt/testdata/tabs.golden

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //gofmt
    
    package main
    
    var _ = []struct {
    	S       string
    	Integer int
    }{
    	{
    		S:       "Hello World",
    		Integer: 42,
    	},
    	{
    		S:       "\t",
    		Integer: 42,
    	},
    	{
    		S:       "	", // an actual <tab>
    		Integer: 42,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 480 bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/link3.txt

    -- input --
    Doc text.
    
    [Go home page]: https://go.dev
    -- gofmt --
    Doc text.
    
    [Go home page]: https://go.dev
    -- text --
    Doc text.
    -- markdown --
    Doc text.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 178 bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/head2.txt

    -- input --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    ✦
    -- gofmt --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    # A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 232 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-arm64.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-arm64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 300 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-amd64.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.openbsd-amd64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 302 bytes
    - Viewed (0)
Back to top