Merge pull request #29042 from dims/fixup-imports

Automatic merge from submit-queue

Use Go canonical import paths

Add canonical imports only in existing doc.go files.
https://golang.org/doc/go1.4#canonicalimports

Fixes #29014
This commit is contained in:
k8s-merge-robot
2016-07-18 07:23:38 -07:00
committed by GitHub
280 changed files with 280 additions and 280 deletions

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package annotations defines annotation keys that shared between server and client
package annotations
package annotations // import "k8s.io/kubernetes/pkg/api/annotations"

View File

@@ -21,4 +21,4 @@ limitations under the License.
// The contract presented to clients is located in the versioned packages,
// which are sub-directories. The first one is "v1". Those packages
// describe how a particular version is serialized to storage/network.
package api
package api // import "k8s.io/kubernetes/pkg/api"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package errors provides detailed error types for api field validation.
package errors
package errors // import "k8s.io/kubernetes/pkg/api/errors"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package etcd provides conversion of etcd errors to API errors.
package storage
package storage // import "k8s.io/kubernetes/pkg/api/errors/storage"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// Package meta provides functions for retrieving API metadata from objects
// belonging to the Kubernetes API
package meta
package meta // import "k8s.io/kubernetes/pkg/api/meta"

View File

@@ -15,4 +15,4 @@ limitations under the License.
*/
// Package rest defines common logic around changes to Kubernetes resources.
package rest
package rest // import "k8s.io/kubernetes/pkg/api/rest"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// +k8s:deepcopy-gen=package
package unversioned
package unversioned // import "k8s.io/kubernetes/pkg/api/unversioned"

View File

@@ -18,4 +18,4 @@ limitations under the License.
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/api
// Package v1 is the v1 version of the API.
package v1
package v1 // import "k8s.io/kubernetes/pkg/api/v1"

View File

@@ -16,4 +16,4 @@ limitations under the License.
// Package validation has functions for validating the correctness of api
// objects and explaining what is wrong with them when they aren't valid.
package validation
package validation // import "k8s.io/kubernetes/pkg/api/validation"