Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
f9489bed
Commit
f9489bed
authored
Nov 08, 2011
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renaming_4: gofix -r everything/but/src/pkg
R=rsc CC=golang-dev
https://golang.org/cl/5338043
parent
45e3bcb3
Hide whitespace changes
Inline
Side-by-side
Showing
52 changed files
with
87 additions
and
87 deletions
+87
-87
final-noclosure.go
doc/codelab/wiki/final-noclosure.go
+2
-2
final-noerror.go
doc/codelab/wiki/final-noerror.go
+2
-2
final-parsetemplate.go
doc/codelab/wiki/final-parsetemplate.go
+2
-2
final-template.go
doc/codelab/wiki/final-template.go
+2
-2
final.go
doc/codelab/wiki/final.go
+2
-2
get.go
doc/codelab/wiki/get.go
+1
-1
htmlify.go
doc/codelab/wiki/htmlify.go
+2
-2
http-sample.go
doc/codelab/wiki/http-sample.go
+1
-1
index.html
doc/codelab/wiki/index.html
+1
-1
notemplate.go
doc/codelab/wiki/notemplate.go
+1
-1
part2.go
doc/codelab/wiki/part2.go
+1
-1
srcextract.go
doc/codelab/wiki/srcextract.go
+2
-2
markov.go
doc/codewalk/markov.go
+1
-1
pig.go
doc/codewalk/pig.go
+1
-1
urlpoll.go
doc/codewalk/urlpoll.go
+1
-1
eff_qr.go
doc/progs/eff_qr.go
+2
-2
balance.go
doc/talks/io2010/balance.go
+1
-1
tmpltohtml.go
doc/tmpltohtml.go
+1
-1
exec.go
misc/dashboard/builder/exec.go
+1
-1
http.go
misc/dashboard/builder/http.go
+3
-3
main.go
misc/dashboard/builder/main.go
+1
-1
goplay.go
misc/goplay/goplay.go
+3
-3
util.go
src/cmd/cgo/util.go
+1
-1
main.go
src/cmd/go/main.go
+1
-1
appinit.go
src/cmd/godoc/appinit.go
+1
-1
codewalk.go
src/cmd/godoc/codewalk.go
+4
-4
format.go
src/cmd/godoc/format.go
+1
-1
godoc.go
src/cmd/godoc/godoc.go
+2
-2
httpzip.go
src/cmd/godoc/httpzip.go
+1
-1
index.go
src/cmd/godoc/index.go
+1
-1
main.go
src/cmd/godoc/main.go
+3
-3
spec.go
src/cmd/godoc/spec.go
+1
-1
utils.go
src/cmd/godoc/utils.go
+1
-1
main.go
src/cmd/gofix/main.go
+1
-1
gofmt.go
src/cmd/gofmt/gofmt.go
+1
-1
rewrite.go
src/cmd/gofmt/rewrite.go
+1
-1
download.go
src/cmd/goinstall/download.go
+3
-3
main.go
src/cmd/goinstall/main.go
+1
-1
make.go
src/cmd/goinstall/make.go
+1
-1
gotest.go
src/cmd/gotest/gotest.go
+2
-2
govet.go
src/cmd/govet/govet.go
+1
-1
main.go
src/cmd/hgpatch/main.go
+1
-1
alias.go
test/alias.go
+7
-7
pidigits.go
test/bench/pidigits.go
+1
-1
select5.go
test/chan/select5.go
+1
-1
cmplxdivide.go
test/cmplxdivide.go
+7
-7
parser.go
test/garbage/parser.go
+3
-3
divconst.go
test/ken/divconst.go
+1
-1
modconst.go
test/ken/modconst.go
+1
-1
mallocrand.go
test/mallocrand.go
+1
-1
stringrange.go
test/stringrange.go
+1
-1
utf.go
test/utf.go
+1
-1
No files found.
doc/codelab/wiki/final-noclosure.go
View file @
f9489bed
...
...
@@ -2,10 +2,10 @@ package main
import
(
"errors"
"http"
"io/ioutil"
"net/http"
"regexp"
"template"
"te
xt/te
mplate"
)
type
Page
struct
{
...
...
doc/codelab/wiki/final-noerror.go
View file @
f9489bed
package
main
import
(
"http"
"io/ioutil"
"template"
"net/http"
"text/template"
)
type
Page
struct
{
...
...
doc/codelab/wiki/final-parsetemplate.go
View file @
f9489bed
package
main
import
(
"http"
"io/ioutil"
"net/http"
"regexp"
"template"
"te
xt/te
mplate"
)
type
Page
struct
{
...
...
doc/codelab/wiki/final-template.go
View file @
f9489bed
package
main
import
(
"http"
"io/ioutil"
"template"
"net/http"
"text/template"
)
type
Page
struct
{
...
...
doc/codelab/wiki/final.go
View file @
f9489bed
package
main
import
(
"http"
"io/ioutil"
"net/http"
"regexp"
"template"
"te
xt/te
mplate"
)
type
Page
struct
{
...
...
doc/codelab/wiki/get.go
View file @
f9489bed
package
main
import
(
"http"
"flag"
"fmt"
"io"
"log"
"net"
"net/http"
"os"
"strings"
)
...
...
doc/codelab/wiki/htmlify.go
View file @
f9489bed
package
main
import
(
"template"
"os"
"io/ioutil"
"os"
"text/template"
)
func
main
()
{
...
...
doc/codelab/wiki/http-sample.go
View file @
f9489bed
...
...
@@ -2,7 +2,7 @@ package main
import
(
"fmt"
"http"
"
net/
http"
)
func
handler
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
...
...
doc/codelab/wiki/index.html
View file @
f9489bed
...
...
@@ -237,7 +237,7 @@ package main
import (
"
fmt
"
"
http
"
"
net/
http
"
)
func handler(w http.ResponseWriter, r *http.Request) {
...
...
doc/codelab/wiki/notemplate.go
View file @
f9489bed
...
...
@@ -2,8 +2,8 @@ package main
import
(
"fmt"
"http"
"io/ioutil"
"net/http"
)
type
Page
struct
{
...
...
doc/codelab/wiki/part2.go
View file @
f9489bed
...
...
@@ -2,8 +2,8 @@ package main
import
(
"fmt"
"http"
"io/ioutil"
"net/http"
)
type
Page
struct
{
...
...
doc/codelab/wiki/srcextract.go
View file @
f9489bed
...
...
@@ -3,13 +3,13 @@ package main
import
(
"bytes"
"flag"
"go/ast"
"go/parser"
"go/printer"
"go/ast"
"go/token"
"log"
"template"
"os"
"text/template"
)
var
(
...
...
doc/codewalk/markov.go
View file @
f9489bed
...
...
@@ -50,8 +50,8 @@ import (
"flag"
"fmt"
"io"
"math/rand"
"os"
"rand"
"strings"
"time"
)
...
...
doc/codewalk/pig.go
View file @
f9489bed
...
...
@@ -6,7 +6,7 @@ package main
import
(
"fmt"
"rand"
"
math/
rand"
)
const
(
...
...
doc/codewalk/urlpoll.go
View file @
f9489bed
...
...
@@ -5,8 +5,8 @@
package
main
import
(
"http"
"log"
"net/http"
"time"
)
...
...
doc/progs/eff_qr.go
View file @
f9489bed
...
...
@@ -2,9 +2,9 @@ package main
import
(
"flag"
"http"
"log"
"template"
"net/http"
"text/template"
)
var
addr
=
flag
.
String
(
"addr"
,
":1718"
,
"http service address"
)
// Q=17, R=18
...
...
doc/talks/io2010/balance.go
View file @
f9489bed
...
...
@@ -8,7 +8,7 @@ import (
"container/heap"
"flag"
"fmt"
"rand"
"
math/
rand"
"time"
)
...
...
doc/tmpltohtml.go
View file @
f9489bed
...
...
@@ -27,7 +27,7 @@ import (
"os"
"regexp"
"strings"
"template"
"te
xt/te
mplate"
)
func
Usage
()
{
...
...
misc/dashboard/builder/exec.go
View file @
f9489bed
...
...
@@ -6,10 +6,10 @@ package main
import
(
"bytes"
"exec"
"io"
"log"
"os"
"os/exec"
"strings"
)
...
...
misc/dashboard/builder/http.go
View file @
f9489bed
...
...
@@ -6,13 +6,13 @@ package main
import
(
"bytes"
"encoding/json"
"errors"
"fmt"
"http"
"json"
"log"
"net/http"
"net/url"
"strconv"
"url"
)
type
param
map
[
string
]
string
...
...
misc/dashboard/builder/main.go
View file @
f9489bed
...
...
@@ -5,6 +5,7 @@
package
main
import
(
"encoding/xml"
"errors"
"flag"
"fmt"
...
...
@@ -17,7 +18,6 @@ import (
"strconv"
"strings"
"time"
"xml"
)
const
(
...
...
misc/goplay/goplay.go
View file @
f9489bed
...
...
@@ -5,16 +5,16 @@
package
main
import
(
"exec"
"flag"
"http"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"os/exec"
"runtime"
"strconv"
"template"
"te
xt/te
mplate"
)
var
(
...
...
src/cmd/cgo/util.go
View file @
f9489bed
...
...
@@ -5,11 +5,11 @@
package
main
import
(
"exec"
"fmt"
"go/token"
"io/ioutil"
"os"
"os/exec"
)
// run runs the command argv, feeding in stdin on standard input.
...
...
src/cmd/go/main.go
View file @
f9489bed
...
...
@@ -10,7 +10,7 @@ import (
"io"
"os"
"strings"
"template"
"te
xt/te
mplate"
)
// A Command is an implementation of a go command
...
...
src/cmd/godoc/appinit.go
View file @
f9489bed
...
...
@@ -9,8 +9,8 @@ package main
import
(
"archive/zip"
"http"
"log"
"net/http"
"path"
)
...
...
src/cmd/godoc/codewalk.go
View file @
f9489bed
...
...
@@ -13,19 +13,19 @@
package
main
import
(
"encoding/xml"
"errors"
"fmt"
"http"
"io"
"log"
"net/http"
"os"
"regexp"
"sort"
"strconv"
"strings"
"template"
"utf8"
"xml"
"text/template"
"unicode/utf8"
)
// Handler for /doc/codewalk/ and below.
...
...
src/cmd/godoc/format.go
View file @
f9489bed
...
...
@@ -17,7 +17,7 @@ import (
"io"
"regexp"
"strconv"
"template"
"te
xt/te
mplate"
)
// ----------------------------------------------------------------------------
...
...
src/cmd/godoc/godoc.go
View file @
f9489bed
...
...
@@ -13,9 +13,9 @@ import (
"go/doc"
"go/printer"
"go/token"
"http"
"io"
"log"
"net/http"
"os"
"path"
"path/filepath"
...
...
@@ -23,7 +23,7 @@ import (
"runtime"
"sort"
"strings"
"template"
"te
xt/te
mplate"
"time"
)
...
...
src/cmd/godoc/httpzip.go
View file @
f9489bed
...
...
@@ -26,8 +26,8 @@ package main
import
(
"archive/zip"
"fmt"
"http"
"io"
"net/http"
"os"
"path"
"sort"
...
...
src/cmd/godoc/index.go
View file @
f9489bed
...
...
@@ -40,12 +40,12 @@ package main
import
(
"bufio"
"bytes"
"encoding/gob"
"errors"
"go/ast"
"go/parser"
"go/scanner"
"go/token"
"gob"
"index/suffixarray"
"io"
"path/filepath"
...
...
src/cmd/godoc/main.go
View file @
f9489bed
...
...
@@ -34,10 +34,11 @@ import (
"fmt"
"go/ast"
"go/build"
"http"
_
"http/pprof"
// to serve /debug/pprof/*
"io"
"log"
"net/http"
_
"net/http/pprof"
// to serve /debug/pprof/*
"net/url"
"os"
"path"
"path/filepath"
...
...
@@ -45,7 +46,6 @@ import (
"runtime"
"strings"
"time"
"url"
)
const
defaultAddr
=
":6060"
// default webserver address
...
...
src/cmd/godoc/spec.go
View file @
f9489bed
...
...
@@ -14,7 +14,7 @@ import (
"bytes"
"fmt"
"io"
"scanner"
"
text/
scanner"
)
type
ebnfParser
struct
{
...
...
src/cmd/godoc/utils.go
View file @
f9489bed
...
...
@@ -15,7 +15,7 @@ import (
"strings"
"sync"
"time"
"utf8"
"u
nicode/u
tf8"
)
// An RWValue wraps a value and permits mutually exclusive
...
...
src/cmd/gofix/main.go
View file @
f9489bed
...
...
@@ -6,7 +6,6 @@ package main
import
(
"bytes"
"exec"
"flag"
"fmt"
"go/ast"
...
...
@@ -16,6 +15,7 @@ import (
"go/token"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"sort"
"strings"
...
...
src/cmd/gofmt/gofmt.go
View file @
f9489bed
...
...
@@ -6,7 +6,6 @@ package main
import
(
"bytes"
"exec"
"flag"
"fmt"
"go/ast"
...
...
@@ -17,6 +16,7 @@ import (
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"runtime/pprof"
"strings"
...
...
src/cmd/gofmt/rewrite.go
View file @
f9489bed
...
...
@@ -13,7 +13,7 @@ import (
"reflect"
"strings"
"unicode"
"utf8"
"u
nicode/u
tf8"
)
func
initRewrite
()
{
...
...
src/cmd/goinstall/download.go
View file @
f9489bed
...
...
@@ -8,12 +8,12 @@ package main
import
(
"bytes"
"encoding/json"
"errors"
"exec"
"fmt"
"http"
"json"
"net/http"
"os"
"os/exec"
"path/filepath"
"regexp"
"runtime"
...
...
src/cmd/goinstall/main.go
View file @
f9489bed
...
...
@@ -7,13 +7,13 @@ package main
import
(
"bytes"
"errors"
"exec"
"flag"
"fmt"
"go/build"
"go/token"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
// use for file system paths
"regexp"
"runtime"
...
...
src/cmd/goinstall/make.go
View file @
f9489bed
...
...
@@ -12,7 +12,7 @@ import (
"go/build"
"path"
// use for import paths
"strings"
"template"
"te
xt/te
mplate"
)
// domake builds the package in dir.
...
...
src/cmd/gotest/gotest.go
View file @
f9489bed
...
...
@@ -6,7 +6,6 @@ package main
import
(
"bufio"
"exec"
"fmt"
"go/ast"
"go/build"
...
...
@@ -15,12 +14,13 @@ import (
"go/token"
"io/ioutil"
"os"
"os/exec"
"runtime"
"sort"
"strings"
"time"
"unicode"
"utf8"
"u
nicode/u
tf8"
)
// Environment for commands.
...
...
src/cmd/govet/govet.go
View file @
f9489bed
...
...
@@ -20,7 +20,7 @@ import (
"reflect"
"strconv"
"strings"
"utf8"
"u
nicode/u
tf8"
)
var
verbose
=
flag
.
Bool
(
"v"
,
false
,
"verbose"
)
...
...
src/cmd/hgpatch/main.go
View file @
f9489bed
...
...
@@ -6,11 +6,11 @@ package main
import
(
"bytes"
"exec"
"flag"
"fmt"
"io/ioutil"
"os"
"os/exec"
"patch"
"path/filepath"
"sort"
...
...
test/alias.go
View file @
f9489bed
...
...
@@ -11,25 +11,25 @@ package main
import
(
"fmt"
"utf8"
"u
nicode/u
tf8"
)
func
f
(
byte
)
{}
func
f
(
byte
)
{}
func
g
(
uint8
)
{}
func
main
()
{
var
x
float64
f
(
x
)
// ERROR "byte"
g
(
x
)
// ERROR "uint8"
f
(
x
)
// ERROR "byte"
g
(
x
)
// ERROR "uint8"
// Test across imports.
var
ff
fmt
.
Formatter
var
fs
fmt
.
State
ff
.
Format
(
fs
,
x
)
// ERROR "rune"
ff
.
Format
(
fs
,
x
)
// ERROR "rune"
utf8
.
RuneStart
(
x
)
// ERROR "byte"
utf8
.
RuneStart
(
x
)
// ERROR "byte"
var
s
utf8
.
String
s
.
At
(
x
)
// ERROR "int"
s
.
At
(
x
)
// ERROR "int"
}
test/bench/pidigits.go
View file @
f9489bed
...
...
@@ -38,9 +38,9 @@ POSSIBILITY OF SUCH DAMAGE.
package
main
import
(
"big"
"flag"
"fmt"
"math/big"
)
var
n
=
flag
.
Int
(
"n"
,
27
,
"number of digits"
)
...
...
test/chan/select5.go
View file @
f9489bed
...
...
@@ -18,7 +18,7 @@ import (
"fmt"
"io"
"os"
"template"
"te
xt/te
mplate"
)
func
main
()
{
...
...
test/cmplxdivide.go
View file @
f9489bed
...
...
@@ -9,14 +9,14 @@
package
main
import
(
"cmath"
"fmt"
"math"
"math/cmplx"
)
type
Test
struct
{
f
,
g
complex128
out
complex128
type
Test
struct
{
f
,
g
complex128
out
complex128
}
var
nan
=
math
.
NaN
()
...
...
@@ -25,9 +25,9 @@ var negzero = math.Copysign(0, -1)
func
calike
(
a
,
b
complex128
)
bool
{
switch
{
case
cm
ath
.
IsInf
(
a
)
&&
cmath
.
IsInf
(
b
)
:
case
cm
plx
.
IsInf
(
a
)
&&
cmplx
.
IsInf
(
b
)
:
return
true
case
cm
ath
.
IsNaN
(
a
)
&&
cmath
.
IsNaN
(
b
)
:
case
cm
plx
.
IsNaN
(
a
)
&&
cmplx
.
IsNaN
(
b
)
:
return
true
}
return
a
==
b
...
...
@@ -36,7 +36,7 @@ func calike(a, b complex128) bool {
func
main
()
{
bad
:=
false
for
_
,
t
:=
range
tests
{
x
:=
t
.
f
/
t
.
g
x
:=
t
.
f
/
t
.
g
if
!
calike
(
x
,
t
.
out
)
{
if
!
bad
{
fmt
.
Printf
(
"BUG
\n
"
)
...
...
test/garbage/parser.go
View file @
f9489bed
...
...
@@ -12,14 +12,14 @@ import (
"go/ast"
"go/parser"
"go/token"
"log"
"net/http"
_
"net/http/pprof"
"os"
"path"
"runtime"
"strings"
"time"
"http"
_
"http/pprof"
"log"
)
var
serve
=
flag
.
String
(
"serve"
,
""
,
"serve http on this address at end"
)
...
...
test/ken/divconst.go
View file @
f9489bed
...
...
@@ -6,7 +6,7 @@
package
main
import
"rand"
import
"
math/
rand"
const
Count
=
1e5
...
...
test/ken/modconst.go
View file @
f9489bed
...
...
@@ -6,7 +6,7 @@
package
main
import
"rand"
import
"
math/
rand"
const
Count
=
1e5
...
...
test/mallocrand.go
View file @
f9489bed
...
...
@@ -10,7 +10,7 @@ package main
import
(
"flag"
"rand"
"
math/
rand"
"runtime"
"unsafe"
)
...
...
test/stringrange.go
View file @
f9489bed
...
...
@@ -9,7 +9,7 @@ package main
import
(
"fmt"
"os"
"utf8"
"u
nicode/u
tf8"
)
func
main
()
{
...
...
test/utf.go
View file @
f9489bed
...
...
@@ -6,7 +6,7 @@
package
main
import
"utf8"
import
"u
nicode/u
tf8"
func
main
()
{
var
chars
[
6
]
rune
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment