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
7ec69c17
Commit
7ec69c17
authored
Dec 11, 2010
by
Mikio Hara
Committed by
Robert Griesemer
Dec 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gofmt -s -w src
R=golang-dev, gri CC=golang-dev
https://golang.org/cl/3592041
parent
055650da
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
file_test.go
src/pkg/debug/pe/file_test.go
+2
-2
dnsname_test.go
src/pkg/net/dnsname_test.go
+9
-9
inotify_linux.go
src/pkg/os/inotify/inotify_linux.go
+1
-1
No files found.
src/pkg/debug/pe/file_test.go
View file @
7ec69c17
...
@@ -16,7 +16,7 @@ type fileTest struct {
...
@@ -16,7 +16,7 @@ type fileTest struct {
}
}
var
fileTests
=
[]
fileTest
{
var
fileTests
=
[]
fileTest
{
fileTest
{
{
"testdata/gcc-386-mingw-obj"
,
"testdata/gcc-386-mingw-obj"
,
FileHeader
{
0x014c
,
0x000c
,
0x0
,
0x64a
,
0x1e
,
0x0
,
0x104
},
FileHeader
{
0x014c
,
0x000c
,
0x0
,
0x64a
,
0x1e
,
0x0
,
0x104
},
[]
*
SectionHeader
{
[]
*
SectionHeader
{
...
@@ -34,7 +34,7 @@ var fileTests = []fileTest{
...
@@ -34,7 +34,7 @@ var fileTests = []fileTest{
&
SectionHeader
{
".debug_aranges"
,
0
,
0
,
32
,
1408
,
1590
,
0
,
2
,
0
,
1108344832
},
&
SectionHeader
{
".debug_aranges"
,
0
,
0
,
32
,
1408
,
1590
,
0
,
2
,
0
,
1108344832
},
},
},
},
},
fileTest
{
{
"testdata/gcc-386-mingw-exec"
,
"testdata/gcc-386-mingw-exec"
,
FileHeader
{
0x014c
,
0x000f
,
0x4c6a1b60
,
0x3c00
,
0x282
,
0xe0
,
0x107
},
FileHeader
{
0x014c
,
0x000f
,
0x4c6a1b60
,
0x3c00
,
0x282
,
0xe0
,
0x107
},
[]
*
SectionHeader
{
[]
*
SectionHeader
{
...
...
src/pkg/net/dnsname_test.go
View file @
7ec69c17
...
@@ -16,15 +16,15 @@ type testCase struct {
...
@@ -16,15 +16,15 @@ type testCase struct {
var
tests
=
[]
testCase
{
var
tests
=
[]
testCase
{
// RFC2181, section 11.
// RFC2181, section 11.
testCase
{
"_xmpp-server._tcp.google.com"
,
true
},
{
"_xmpp-server._tcp.google.com"
,
true
},
testCase
{
"_xmpp-server._tcp.google.com"
,
true
},
{
"_xmpp-server._tcp.google.com"
,
true
},
testCase
{
"foo.com"
,
true
},
{
"foo.com"
,
true
},
testCase
{
"1foo.com"
,
true
},
{
"1foo.com"
,
true
},
testCase
{
"26.0.0.73.com"
,
true
},
{
"26.0.0.73.com"
,
true
},
testCase
{
"fo-o.com"
,
true
},
{
"fo-o.com"
,
true
},
testCase
{
"fo1o.com"
,
true
},
{
"fo1o.com"
,
true
},
testCase
{
"foo1.com"
,
true
},
{
"foo1.com"
,
true
},
testCase
{
"a.b..com"
,
false
},
{
"a.b..com"
,
false
},
}
}
func
getTestCases
(
ch
chan
<-
*
testCase
)
{
func
getTestCases
(
ch
chan
<-
*
testCase
)
{
...
...
src/pkg/os/inotify/inotify_linux.go
View file @
7ec69c17
...
@@ -88,7 +88,7 @@ func (w *Watcher) Close() os.Error {
...
@@ -88,7 +88,7 @@ func (w *Watcher) Close() os.Error {
// Send "quit" message to the reader goroutine
// Send "quit" message to the reader goroutine
w
.
done
<-
true
w
.
done
<-
true
for
path
,
_
:=
range
w
.
watches
{
for
path
:=
range
w
.
watches
{
w
.
RemoveWatch
(
path
)
w
.
RemoveWatch
(
path
)
}
}
...
...
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