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
e5c1f387
Commit
e5c1f387
authored
Jan 19, 2012
by
Olivier Duperray
Committed by
Rob Pike
Jan 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pkg: Add & fix Copyright of "hand generated" files
R=golang-dev, r CC=golang-dev
https://golang.org/cl/5554064
parent
bc0139b4
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
62 additions
and
0 deletions
+62
-0
src/pkg/crypto/ocsp/ocsp_test.go
src/pkg/crypto/ocsp/ocsp_test.go
+4
-0
src/pkg/encoding/gob/debug.go
src/pkg/encoding/gob/debug.go
+4
-0
src/pkg/encoding/gob/dump.go
src/pkg/encoding/gob/dump.go
+4
-0
src/pkg/exp/gotype/testdata/test1.go
src/pkg/exp/gotype/testdata/test1.go
+4
-0
src/pkg/exp/norm/trie_test.go
src/pkg/exp/norm/trie_test.go
+4
-0
src/pkg/go/build/pkgtest/sqrt_test.go
src/pkg/go/build/pkgtest/sqrt_test.go
+4
-0
src/pkg/go/build/pkgtest/xsqrt_test.go
src/pkg/go/build/pkgtest/xsqrt_test.go
+4
-0
src/pkg/old/regexp/regexp.go
src/pkg/old/regexp/regexp.go
+1
-0
src/pkg/patch/textdiff.go
src/pkg/patch/textdiff.go
+4
-0
src/pkg/regexp/exec.go
src/pkg/regexp/exec.go
+4
-0
src/pkg/regexp/regexp.go
src/pkg/regexp/regexp.go
+1
-0
src/pkg/regexp/syntax/compile.go
src/pkg/regexp/syntax/compile.go
+4
-0
src/pkg/regexp/syntax/prog.go
src/pkg/regexp/syntax/prog.go
+4
-0
src/pkg/regexp/syntax/prog_test.go
src/pkg/regexp/syntax/prog_test.go
+4
-0
src/pkg/runtime/gc_test.go
src/pkg/runtime/gc_test.go
+4
-0
src/pkg/syscall/zsysnum_linux_arm.go
src/pkg/syscall/zsysnum_linux_arm.go
+4
-0
src/pkg/time/format.go
src/pkg/time/format.go
+4
-0
No files found.
src/pkg/crypto/ocsp/ocsp_test.go
View file @
e5c1f387
// Copyright 2010 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
ocsp
import
(
...
...
src/pkg/encoding/gob/debug.go
View file @
e5c1f387
// Copyright 2009 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
gob
// This file is not normally included in the gob package. Used only for debugging the package itself.
...
...
src/pkg/encoding/gob/dump.go
View file @
e5c1f387
// Copyright 2009 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
main
// Need to compile package gob with debug.go to build this program.
...
...
src/pkg/exp/gotype/testdata/test1.go
View file @
e5c1f387
// Copyright 2011 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
p
func
_
()
{
...
...
src/pkg/exp/norm/trie_test.go
View file @
e5c1f387
// Copyright 2011 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
norm
import
(
...
...
src/pkg/go/build/pkgtest/sqrt_test.go
View file @
e5c1f387
// Copyright 2011 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
pkgtest
import
"fmt"
...
...
src/pkg/go/build/pkgtest/xsqrt_test.go
View file @
e5c1f387
// Copyright 2011 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
pkgtest_test
import
"pkgtest"
...
...
src/pkg/old/regexp/regexp.go
View file @
e5c1f387
// Copyright 2010 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.
...
...
src/pkg/patch/textdiff.go
View file @
e5c1f387
// Copyright 2009 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
patch
import
(
...
...
src/pkg/regexp/exec.go
View file @
e5c1f387
// Copyright 2011 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
import
(
...
...
src/pkg/regexp/regexp.go
View file @
e5c1f387
// Copyright 2009 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.
...
...
src/pkg/regexp/syntax/compile.go
View file @
e5c1f387
// Copyright 2011 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
syntax
import
"unicode"
...
...
src/pkg/regexp/syntax/prog.go
View file @
e5c1f387
// Copyright 2011 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
syntax
import
(
...
...
src/pkg/regexp/syntax/prog_test.go
View file @
e5c1f387
// Copyright 2011 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
syntax
import
(
...
...
src/pkg/runtime/gc_test.go
View file @
e5c1f387
// Copyright 2011 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
runtime_test
import
(
...
...
src/pkg/syscall/zsysnum_linux_arm.go
View file @
e5c1f387
// Copyright 2009 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.
// hand generated
package
syscall
...
...
src/pkg/time/format.go
View file @
e5c1f387
// Copyright 2010 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
time
import
"errors"
...
...
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