Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 164 for gofmt (0.07 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.js-wasm.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.js-wasm"}
    -- 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
    - 290 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.linux-mips64x.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.linux-mips64x"}
    -- 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)
  3. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.linux-riscv64.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.linux-riscv64"}
    -- 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)
  4. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-mips64.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.openbsd-mips64"}
    -- 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
    - 304 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-386.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    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
    - 294 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-amd64.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-amd64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    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
    - 298 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.solaris-amd64.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.solaris-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)
  8. src/go/doc/comment/testdata/list.txt

    -- input --
    Text.
    - Not a list.
     - Here is the list.
         • Using multiple bullets.
              * Indentation does not matter.
         + Lots of bullets.
    More text.
    
    -- gofmt --
    Text.
    - Not a list.
      - Here is the list.
      - Using multiple bullets.
      - Indentation does not matter.
      - Lots of bullets.
    
    More text.
    
    -- text --
    Text. - Not a list.
      - Here is the list.
      - Using multiple bullets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 776 bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/list3.txt

    -- input --
    Text.
    
     1. Uno
     1. Dos
     1. Tres
     1. Quatro
    
    -- gofmt --
    Text.
    
     1. Uno
     1. Dos
     1. Tres
     1. Quatro
    
    -- markdown --
    Text.
    
     1. Uno
     1. Dos
     1. Tres
     1. Quatro
    
    -- html --
    <p>Text.
    <ol>
    <li>Uno
    <li value="1">Dos
    <li value="1">Tres
    <li value="1">Quatro
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 268 bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/hello.txt

    -- input --
    	Hello,
    	world
    
    	This is
    	a test.
    -- dump --
    Doc
    	Paragraph
    		Plain
    			"Hello,\n"
    			"world"
    	Paragraph
    		Plain
    			"This is\n"
    			"a test."
    -- gofmt --
    Hello,
    world
    
    This is
    a test.
    -- html --
    <p>Hello,
    world
    <p>This is
    a test.
    -- markdown --
    Hello, world
    
    This is a test.
    -- text --
    Hello, world
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 326 bytes
    - Viewed (0)
Back to top