diff options
38 files changed, 76 insertions, 0 deletions
diff --git a/content/go-maps-in-action/list.go b/content/go-maps-in-action/list.go index 09feeae..02bea2c 100644 --- a/content/go-maps-in-action/list.go +++ b/content/go-maps-in-action/list.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build OMIT + package main import "fmt" diff --git a/content/go-maps-in-action/people.go b/content/go-maps-in-action/people.go index e724915..ff5d9e3 100644 --- a/content/go-maps-in-action/people.go +++ b/content/go-maps-in-action/people.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build OMIT + package main import "fmt" diff --git a/content/pipelines/bounded.go b/content/pipelines/bounded.go index 3936a29..3977bef 100644 --- a/content/pipelines/bounded.go +++ b/content/pipelines/bounded.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/parallel.go b/content/pipelines/parallel.go index e9ad43c..5ca3e76 100644 --- a/content/pipelines/parallel.go +++ b/content/pipelines/parallel.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/serial.go b/content/pipelines/serial.go index 3afda91..024ef47 100644 --- a/content/pipelines/serial.go +++ b/content/pipelines/serial.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/sqbuffer.go b/content/pipelines/sqbuffer.go index 45e7f6f..386790c 100644 --- a/content/pipelines/sqbuffer.go +++ b/content/pipelines/sqbuffer.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/sqdone1.go b/content/pipelines/sqdone1.go index 5d47514..e77818a 100644 --- a/content/pipelines/sqdone1.go +++ b/content/pipelines/sqdone1.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/sqdone2.go b/content/pipelines/sqdone2.go index 86b2487..c6712c8 100644 --- a/content/pipelines/sqdone2.go +++ b/content/pipelines/sqdone2.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/sqdone3.go b/content/pipelines/sqdone3.go index 7000744..5540a42 100644 --- a/content/pipelines/sqdone3.go +++ b/content/pipelines/sqdone3.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/sqfan.go b/content/pipelines/sqfan.go index b5702cd..be5138c 100644 --- a/content/pipelines/sqfan.go +++ b/content/pipelines/sqfan.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/sqleak.go b/content/pipelines/sqleak.go index a0d22ee..4333205 100644 --- a/content/pipelines/sqleak.go +++ b/content/pipelines/sqleak.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/pipelines/square.go b/content/pipelines/square.go index 07c9523..e558bae 100644 --- a/content/pipelines/square.go +++ b/content/pipelines/square.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import "fmt" diff --git a/content/pipelines/square2.go b/content/pipelines/square2.go index 4530fea..a4108ee 100644 --- a/content/pipelines/square2.go +++ b/content/pipelines/square2.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import "fmt" diff --git a/content/playground/net.go b/content/playground/net.go index 2728055..eb8b759 100644 --- a/content/playground/net.go +++ b/content/playground/net.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/playground/os.go b/content/playground/os.go index a73beb0..cf0cd32 100644 --- a/content/playground/os.go +++ b/content/playground/os.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/playground/time.go b/content/playground/time.go index 987620a..fb1f314 100644 --- a/content/playground/time.go +++ b/content/playground/time.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/race-detector/blackhole.go b/content/race-detector/blackhole.go index 304665c..d95912a 100644 --- a/content/race-detector/blackhole.go +++ b/content/race-detector/blackhole.go @@ -1,3 +1,5 @@ +// +build OMIT + package main var blackHole [4096]byte // shared buffer diff --git a/content/race-detector/timer-fixed.go b/content/race-detector/timer-fixed.go index a46ca3a..279067b 100644 --- a/content/race-detector/timer-fixed.go +++ b/content/race-detector/timer-fixed.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/race-detector/timer.go b/content/race-detector/timer.go index e6c9df9..298233d 100644 --- a/content/race-detector/timer.go +++ b/content/race-detector/timer.go @@ -1,3 +1,5 @@ +// +build OMIT + package main import ( diff --git a/content/slices/prog010.go b/content/slices/prog010.go index 8434e21..5fffa11 100644 --- a/content/slices/prog010.go +++ b/content/slices/prog010.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog020.go b/content/slices/prog020.go index 472f68a..548225c 100644 --- a/content/slices/prog020.go +++ b/content/slices/prog020.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog030.go b/content/slices/prog030.go index ac34787..426ef04 100644 --- a/content/slices/prog030.go +++ b/content/slices/prog030.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog040.go b/content/slices/prog040.go index d917402..a05e765 100644 --- a/content/slices/prog040.go +++ b/content/slices/prog040.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog050.go b/content/slices/prog050.go index b5e77b4..3994e6b 100644 --- a/content/slices/prog050.go +++ b/content/slices/prog050.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog060.go b/content/slices/prog060.go index 5ce46dc..0fdf9e6 100644 --- a/content/slices/prog060.go +++ b/content/slices/prog060.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog070.go b/content/slices/prog070.go index 55f6095..782848a 100644 --- a/content/slices/prog070.go +++ b/content/slices/prog070.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog080.go b/content/slices/prog080.go index 71f9324..3886288 100644 --- a/content/slices/prog080.go +++ b/content/slices/prog080.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog090.go b/content/slices/prog090.go index 0509da3..5cb410c 100644 --- a/content/slices/prog090.go +++ b/content/slices/prog090.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog100.go b/content/slices/prog100.go index 1a67e79..4e61725 100644 --- a/content/slices/prog100.go +++ b/content/slices/prog100.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog110.go b/content/slices/prog110.go index 5bee1c4..2503602 100644 --- a/content/slices/prog110.go +++ b/content/slices/prog110.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog120.go b/content/slices/prog120.go index af58549..d9a4b2e 100644 --- a/content/slices/prog120.go +++ b/content/slices/prog120.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog130.go b/content/slices/prog130.go index ff514b5..de3e009 100644 --- a/content/slices/prog130.go +++ b/content/slices/prog130.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog140.go b/content/slices/prog140.go index ab04d97..6a2b9c7 100644 --- a/content/slices/prog140.go +++ b/content/slices/prog140.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/slices/prog150.go b/content/slices/prog150.go index 986b1ce..f73bfa7 100644 --- a/content/slices/prog150.go +++ b/content/slices/prog150.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/strings/basic.go b/content/strings/basic.go index 7397067..886e294 100644 --- a/content/strings/basic.go +++ b/content/strings/basic.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/strings/encoding.go b/content/strings/encoding.go index c0f15a4..729b0e5 100644 --- a/content/strings/encoding.go +++ b/content/strings/encoding.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/strings/range.go b/content/strings/range.go index 1cd4da0..e0039fb 100644 --- a/content/strings/range.go +++ b/content/strings/range.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. diff --git a/content/strings/utf8.go b/content/strings/utf8.go index d9fa091..491a446 100644 --- a/content/strings/utf8.go +++ b/content/strings/utf8.go @@ -1,3 +1,5 @@ +// +build OMIT + // 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. |