Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
1cbd302f
Commit
1cbd302f
authored
Nov 12, 2015
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16854 from wojtek-t/deep_copy_generator
Auto commit by PR queue bot
parents
a752dad1
68d2824a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
1 deletion
+47
-1
deepcopy.go
cmd/libs/go2idl/deepcopy-gen/generators/deepcopy.go
+0
-0
main.go
cmd/libs/go2idl/deepcopy-gen/main.go
+41
-0
sets.go
cmd/libs/go2idl/set-gen/generators/sets.go
+1
-1
types.go
cmd/libs/go2idl/types/types.go
+5
-0
No files found.
cmd/libs/go2idl/deepcopy-gen/generators/deepcopy.go
0 → 100644
View file @
1cbd302f
This diff is collapsed.
Click to expand it.
cmd/libs/go2idl/deepcopy-gen/main.go
0 → 100644
View file @
1cbd302f
/*
Copyright 2015 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// deepcopy-gen is a tool for auto-generating DeepCopy functions.
//
// Structs in the input directories with the below line in their comments
// will be ignored during generation.
// // +gencopy=false
package
main
import
(
"k8s.io/kubernetes/cmd/libs/go2idl/args"
"k8s.io/kubernetes/cmd/libs/go2idl/deepcopy-gen/generators"
"github.com/golang/glog"
)
func
main
()
{
arguments
:=
args
.
Default
()
if
err
:=
arguments
.
Execute
(
generators
.
NameSystems
(),
generators
.
DefaultNameSystem
(),
generators
.
Packages
,
);
err
!=
nil
{
glog
.
Fatalf
(
"Error: %v"
,
err
)
}
}
cmd/libs/go2idl/set-gen/generators/sets.go
View file @
1cbd302f
...
...
@@ -39,7 +39,7 @@ func NameSystems() namer.NameSystems {
}
}
//
NameSystems
returns the default name system for ordering the types to be
//
DefaultNameSystem
returns the default name system for ordering the types to be
// processed by the generators in this package.
func
DefaultNameSystem
()
string
{
return
"public"
...
...
cmd/libs/go2idl/types/types.go
View file @
1cbd302f
...
...
@@ -195,6 +195,11 @@ func (t *Type) String() string {
return
t
.
Name
.
String
()
}
// IsAssignable returns whether the type is assignable.
func
(
t
*
Type
)
IsAssignable
()
bool
{
return
t
.
Kind
==
Builtin
||
(
t
.
Kind
==
Alias
&&
t
.
Underlying
.
Kind
==
Builtin
)
}
// A single struct member
type
Member
struct
{
// The name of the member.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment