Update containerd to 129167132c.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu
2018-02-21 01:53:04 +00:00
parent 454f583d49
commit 45b6e75803
424 changed files with 59732 additions and 113 deletions

12
vendor/github.com/docker/go-metrics/unit.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
package metrics
// Unit represents the type or precision of a metric that is appended to
// the metrics fully qualified name
type Unit string
const (
Nanoseconds Unit = "nanoseconds"
Seconds Unit = "seconds"
Bytes Unit = "bytes"
Total Unit = "total"
)