Merge component 'cli' from git@github.com:docker/cli master

This commit is contained in:
GordonTheTurtle
2018-01-04 16:41:22 +00:00
3 changed files with 11 additions and 7 deletions

View File

@ -764,6 +764,7 @@ The options you can specify are:
<th>Long syntax</th>
<th>Description</th>
</tr>
</thead>
<tr>
<td>published and target port </td>
<td><tt></tt></td>

View File

@ -5,9 +5,10 @@
package v1beta1
import (
reflect "reflect"
conversion "k8s.io/apimachinery/pkg/conversion"
runtime "k8s.io/apimachinery/pkg/runtime"
reflect "reflect"
)
// Deprecated: register deep-copy functions.

View File

@ -5,9 +5,10 @@
package compose
import (
reflect "reflect"
conversion "k8s.io/apimachinery/pkg/conversion"
runtime "k8s.io/apimachinery/pkg/runtime"
reflect "reflect"
)
// Deprecated: register deep-copy functions.
@ -103,12 +104,13 @@ func (x *Owner) DeepCopy() *Owner {
}
func (x *Owner) DeepCopyObject() runtime.Object {
if c := x.DeepCopy(); c != nil {
return c
} else {
return nil
}
if c := x.DeepCopy(); c != nil {
return c
} else {
return nil
}
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OwnerList) DeepCopyInto(out *OwnerList) {
*out = *in