Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
64379b85
Commit
64379b85
authored
Dec 17, 2013
by
ChaiShushan
Committed by
Ian Lance Taylor
Dec 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all: add missing copyright
R=golang-dev, iant CC=golang-dev
https://golang.org/cl/43290043
parent
d35b22d1
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
68 additions
and
2 deletions
+68
-2
src/pkg/bytes/compare_test.go
src/pkg/bytes/compare_test.go
+4
-0
src/pkg/compress/flate/fixedhuff.go
src/pkg/compress/flate/fixedhuff.go
+4
-0
src/pkg/crypto/md5/gen.go
src/pkg/crypto/md5/gen.go
+4
-1
src/pkg/crypto/md5/md5block.go
src/pkg/crypto/md5/md5block.go
+4
-0
src/pkg/image/color/palette/gen.go
src/pkg/image/color/palette/gen.go
+4
-0
src/pkg/image/color/palette/palette.go
src/pkg/image/color/palette/palette.go
+4
-0
src/pkg/image/gif/reader_test.go
src/pkg/image/gif/reader_test.go
+4
-0
src/pkg/os/signal/example_test.go
src/pkg/os/signal/example_test.go
+4
-0
src/pkg/path/filepath/path_windows_test.go
src/pkg/path/filepath/path_windows_test.go
+4
-0
src/pkg/regexp/example_test.go
src/pkg/regexp/example_test.go
+4
-0
src/pkg/regexp/syntax/make_perl_groups.pl
src/pkg/regexp/syntax/make_perl_groups.pl
+4
-0
src/pkg/regexp/syntax/perl_groups.go
src/pkg/regexp/syntax/perl_groups.go
+4
-0
src/pkg/strconv/isprint.go
src/pkg/strconv/isprint.go
+4
-0
src/pkg/strconv/makeisprint.go
src/pkg/strconv/makeisprint.go
+3
-0
src/pkg/unicode/maketables.go
src/pkg/unicode/maketables.go
+5
-1
src/pkg/unicode/tables.go
src/pkg/unicode/tables.go
+4
-0
src/pkg/unicode/utf8/example_test.go
src/pkg/unicode/utf8/example_test.go
+4
-0
No files found.
src/pkg/bytes/compare_test.go
View file @
64379b85
// 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.
package
bytes_test
import
(
...
...
src/pkg/compress/flate/fixedhuff.go
View file @
64379b85
// 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.
package
flate
// autogenerated by gen.go, DO NOT EDIT
...
...
src/pkg/crypto/md5/gen.go
View file @
64379b85
...
...
@@ -160,7 +160,10 @@ var data = Data{
},
}
var
program
=
`
var
program
=
`// 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.
// DO NOT EDIT.
// Generate with: go run gen.go{{if .Full}} -full{{end}} | gofmt >md5block.go
...
...
src/pkg/crypto/md5/md5block.go
View file @
64379b85
// 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.
// DO NOT EDIT.
// Generate with: go run gen.go -full | gofmt >md5block.go
...
...
src/pkg/image/color/palette/gen.go
View file @
64379b85
...
...
@@ -14,6 +14,10 @@ import (
)
func
main
()
{
fmt
.
Println
(
`// 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.`
)
fmt
.
Println
()
fmt
.
Println
(
"// generated by go run gen.go; DO NOT EDIT"
)
fmt
.
Println
()
fmt
.
Println
(
"// Package palette provides standard color palettes."
)
...
...
src/pkg/image/color/palette/palette.go
View file @
64379b85
// 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.
// generated by go run gen.go; DO NOT EDIT
// Package palette provides standard color palettes.
...
...
src/pkg/image/gif/reader_test.go
View file @
64379b85
// 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.
package
gif
import
(
...
...
src/pkg/os/signal/example_test.go
View file @
64379b85
// 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.
package
signal_test
import
(
...
...
src/pkg/path/filepath/path_windows_test.go
View file @
64379b85
// 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.
package
filepath_test
import
(
...
...
src/pkg/regexp/example_test.go
View file @
64379b85
// 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.
package
regexp_test
import
(
...
...
src/pkg/regexp/syntax/make_perl_groups.pl
View file @
64379b85
...
...
@@ -92,6 +92,10 @@ sub PrintClasses($@) {
}
print
<<EOF;
// 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.
// GENERATED BY make_perl_groups.pl; DO NOT EDIT.
// make_perl_groups.pl >perl_groups.go
...
...
src/pkg/regexp/syntax/perl_groups.go
View file @
64379b85
// 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.
// GENERATED BY make_perl_groups.pl; DO NOT EDIT.
// make_perl_groups.pl >perl_groups.go
...
...
src/pkg/strconv/isprint.go
View file @
64379b85
// 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.
// DO NOT EDIT. GENERATED BY
// go run makeisprint.go >x && mv x isprint.go
...
...
src/pkg/strconv/makeisprint.go
View file @
64379b85
...
...
@@ -122,6 +122,9 @@ func main() {
}
}
fmt
.
Printf
(
`// 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.`
+
"
\n\n
"
)
fmt
.
Printf
(
"// DO NOT EDIT. GENERATED BY
\n
"
)
fmt
.
Printf
(
"// go run makeisprint.go >x && mv x isprint.go
\n\n
"
)
fmt
.
Printf
(
"package strconv
\n\n
"
)
...
...
src/pkg/unicode/maketables.go
View file @
64379b85
...
...
@@ -386,7 +386,11 @@ func loadCasefold() {
}
}
const
progHeader
=
`// Generated by running
const
progHeader
=
`// 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.
// Generated by running
// maketables --tables=%s --data=%s --casefolding=%s
// DO NOT EDIT
...
...
src/pkg/unicode/tables.go
View file @
64379b85
// 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.
// Generated by running
// maketables --tables=all --data=http://www.unicode.org/Public/6.2.0/ucd/UnicodeData.txt --casefolding=http://www.unicode.org/Public/6.2.0/ucd/CaseFolding.txt
// DO NOT EDIT
...
...
src/pkg/unicode/utf8/example_test.go
View file @
64379b85
// 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.
package
utf8_test
import
(
...
...
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