Update containerd and k8s.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu
2018-06-27 22:47:55 +00:00
parent bc99f7a7e8
commit 88c5165bfd
111 changed files with 6126 additions and 4549 deletions

15
vendor/github.com/modern-go/concurrent/go_above_19.go generated vendored Normal file
View File

@@ -0,0 +1,15 @@
//+build go1.9
package concurrent
import "sync"
// Map is a wrapper for sync.Map introduced in go1.9
type Map struct {
sync.Map
}
// NewMap creates a thread safe Map
func NewMap() *Map {
return &Map{}
}