Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 164 for gofmt (0.04 sec)

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

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

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

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

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.openbsd-arm"}
    -- 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
    - 298 bytes
    - Viewed (0)
  5. hack/lib/protoc.sh

    }
    
    # Formats $1/api.pb.go, adds the boilerplate comments and run gofmt on it
    # $1: Full path to the directory where the api.proto file is
    function kube::protoc::format() {
      local package=${1}
    
      # Update boilerplate for the generated file.
      cat hack/boilerplate/boilerplate.generatego.txt "${package}/api.pb.go" > tmpfile && mv tmpfile "${package}/api.pb.go"
    
      # Run gofmt to clean up the generated code.
      kube::golang::setup_env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/words.txt

    -- input --
    This is an italicword and a linkedword and Unicöde.
    -- gofmt --
    This is an italicword and a linkedword and Unicöde.
    -- text --
    This is an italicword and a linkedword and Unicöde.
    -- markdown --
    This is an *italicword* and a [*linkedword*](https://example.com/linkedword) and Unicöde.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 426 bytes
    - Viewed (0)
  7. src/runtime/race/mkcgo.sh

    // license that can be found in the LICENSE file.
    
    // Code generated by mkcgo.sh. DO NOT EDIT.
    
    //go:build race
    
    '
    
    convert() {
    	(echo "$hdr"; go tool cgo -dynpackage race -dynimport $1) | gofmt
    }
    
    convert race_darwin_arm64.syso >race_darwin_arm64.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 21:38:55 UTC 2022
    - 444 bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/code4.txt

    -- input --
    To test, run this command:
      go test -more
    
    Or, to test specific things, run this command:
    
    go test -more \
      -pkg first/package \
      -pkg second/package \
      -pkg third/package
    
    Happy testing!
    -- gofmt --
    To test, run this command:
    
    	go test -more
    
    Or, to test specific things, run this command:
    
    	go test -more \
    	  -pkg first/package \
    	  -pkg second/package \
    	  -pkg third/package
    
    Happy testing!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 623 bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/list5.txt

    -- input --
    Text.
    
      1. One
      999999999999999999999. Big
      1000000000000000000000. Bigger
      1000000000000000000001. Biggest
    
    -- gofmt --
    Text.
    
     1. One
     999999999999999999999. Big
     1000000000000000000000. Bigger
     1000000000000000000001. Biggest
    
    -- text --
    Text.
    
     1. One
     999999999999999999999. Big
     1000000000000000000000. Bigger
     1000000000000000000001. Biggest
    
    -- markdown --
    Text.
    
     1. One
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 590 bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/tabs.input

    // 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,
    	},
    	{
    		S: `	`, // an actual <tab>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 449 bytes
    - Viewed (0)
Back to top