mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
update vendor to latest kubernetes 1.14.0
some of the kubernetes independent packages are moved out of the tree to new projects. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
committed by
mergify[bot]
parent
3f35bfd4d7
commit
f60a07ae82
Gopkg.lockGopkg.toml
pkg
cephfs
csi-common
rbd
vendor
github.com
container-storage-interface
spec
lib
go
csi
davecgh
gogo
protobuf
golang
protobuf
proto
decode.godeprecated.goequal.goextensions.golib.gomessage_set.gopointer_reflect.gopointer_unsafe.goproperties.gotable_marshal.gotable_unmarshal.go
protoc-gen-go
descriptor
ptypes
google
gregjones
httpcache
imdario
json-iterator
kubernetes-csi
csi-lib-utils
release-tools
petar
peterbourgon
golang.org
x
crypto
ssh
terminal
net
oauth2
sys
unix
asm_netbsd_arm64.smksyscall.gomksyscall_aix_ppc64.gomksyscall_solaris.gosockcmsg_unix.gosyscall_aix.gosyscall_darwin.gosyscall_dragonfly.gosyscall_linux.gosyscall_linux_386.gosyscall_linux_amd64.gosyscall_linux_arm.gosyscall_linux_arm64.gosyscall_linux_mips64x.gosyscall_linux_mipsx.gosyscall_linux_ppc64x.gosyscall_linux_riscv64.gosyscall_linux_s390x.gosyscall_linux_sparc64.gosyscall_netbsd_arm64.gosyscall_openbsd.gosyscall_unix.gotypes_darwin.gotypes_openbsd.gozerrors_linux_386.gozerrors_linux_amd64.gozerrors_linux_arm.gozerrors_linux_arm64.gozerrors_linux_mips.gozerrors_linux_mips64.gozerrors_linux_mips64le.gozerrors_linux_mipsle.gozerrors_linux_ppc64.gozerrors_linux_ppc64le.gozerrors_linux_riscv64.gozerrors_linux_s390x.gozerrors_linux_sparc64.gozerrors_netbsd_arm64.gozsyscall_aix_ppc64.gozsyscall_aix_ppc64_gc.gozsyscall_aix_ppc64_gccgo.gozsyscall_darwin_amd64.gozsyscall_darwin_amd64.szsyscall_dragonfly_amd64.gozsyscall_linux_386.gozsyscall_linux_amd64.gozsyscall_linux_arm.gozsyscall_linux_arm64.gozsyscall_linux_mips.gozsyscall_linux_mips64.gozsyscall_linux_mips64le.gozsyscall_linux_mipsle.gozsyscall_linux_ppc64.gozsyscall_linux_ppc64le.gozsyscall_linux_riscv64.gozsyscall_linux_s390x.gozsyscall_linux_sparc64.gozsyscall_netbsd_arm64.gozsyscall_solaris_amd64.gozsysnum_darwin_amd64.gozsysnum_freebsd_arm64.gozsysnum_linux_arm64.gozsysnum_linux_riscv64.gozsysnum_linux_sparc64.gozsysnum_netbsd_arm64.goztypes_darwin_386.goztypes_darwin_amd64.goztypes_darwin_arm.goztypes_darwin_arm64.goztypes_linux_386.goztypes_linux_amd64.goztypes_linux_arm.goztypes_linux_arm64.goztypes_linux_mips.goztypes_linux_mips64.goztypes_linux_mips64le.goztypes_linux_mipsle.goztypes_linux_ppc64.goztypes_linux_ppc64le.goztypes_linux_riscv64.goztypes_linux_s390x.goztypes_linux_sparc64.goztypes_netbsd_arm64.goztypes_openbsd_386.goztypes_openbsd_amd64.goztypes_openbsd_arm.go
windows
google.golang.org
appengine
internal
genproto
googleapis
rpc
status
grpc
backoff.go
balancer
balancer_conn_wrappers.gobalancer_v1_wrapper.gocall.goclientconn.goconnectivity
credentials
dialoptions.gointernal
keepalive
naming
picker_wrapper.goresolver
resolver_conn_wrapper.gorpc_util.goserver.gostream.goversion.gok8s.io
api
admissionregistration
v1alpha1
v1beta1
apps
v1
v1beta1
v1beta2
auditregistration
v1alpha1
authentication
authorization
autoscaling
batch
certificates
v1beta1
coordination
v1
v1beta1
core
v1
events
v1beta1
extensions
networking
v1
v1beta1
node
v1alpha1
v1beta1
policy
rbac
scheduling
v1
v1alpha1
v1beta1
settings
storage
apimachinery
pkg
api
apis
meta
runtime
types
util
client-go
discovery
kubernetes
clientset.go
scheme
typed
admissionregistration
v1alpha1
coordination
networking
node
v1alpha1
v1beta1
scheduling
storage
pkg
apis
clientauthentication
v1alpha1
plugin
pkg
client
auth
exec
rest
tools
clientcmd
transport
util
klog
kubernetes
Godeps
pkg
util
staging
utils
integer
io
keymutex
nsenter
path
third_party
31
vendor/github.com/golang/protobuf/proto/properties.go
generated
vendored
31
vendor/github.com/golang/protobuf/proto/properties.go
generated
vendored
@ -334,9 +334,6 @@ func GetProperties(t reflect.Type) *StructProperties {
|
||||
sprop, ok := propertiesMap[t]
|
||||
propertiesMu.RUnlock()
|
||||
if ok {
|
||||
if collectStats {
|
||||
stats.Chit++
|
||||
}
|
||||
return sprop
|
||||
}
|
||||
|
||||
@ -346,17 +343,20 @@ func GetProperties(t reflect.Type) *StructProperties {
|
||||
return sprop
|
||||
}
|
||||
|
||||
type (
|
||||
oneofFuncsIface interface {
|
||||
XXX_OneofFuncs() (func(Message, *Buffer) error, func(Message, int, int, *Buffer) (bool, error), func(Message) int, []interface{})
|
||||
}
|
||||
oneofWrappersIface interface {
|
||||
XXX_OneofWrappers() []interface{}
|
||||
}
|
||||
)
|
||||
|
||||
// getPropertiesLocked requires that propertiesMu is held.
|
||||
func getPropertiesLocked(t reflect.Type) *StructProperties {
|
||||
if prop, ok := propertiesMap[t]; ok {
|
||||
if collectStats {
|
||||
stats.Chit++
|
||||
}
|
||||
return prop
|
||||
}
|
||||
if collectStats {
|
||||
stats.Cmiss++
|
||||
}
|
||||
|
||||
prop := new(StructProperties)
|
||||
// in case of recursive protos, fill this in now.
|
||||
@ -391,13 +391,14 @@ func getPropertiesLocked(t reflect.Type) *StructProperties {
|
||||
// Re-order prop.order.
|
||||
sort.Sort(prop)
|
||||
|
||||
type oneofMessage interface {
|
||||
XXX_OneofFuncs() (func(Message, *Buffer) error, func(Message, int, int, *Buffer) (bool, error), func(Message) int, []interface{})
|
||||
var oots []interface{}
|
||||
switch m := reflect.Zero(reflect.PtrTo(t)).Interface().(type) {
|
||||
case oneofFuncsIface:
|
||||
_, _, _, oots = m.XXX_OneofFuncs()
|
||||
case oneofWrappersIface:
|
||||
oots = m.XXX_OneofWrappers()
|
||||
}
|
||||
if om, ok := reflect.Zero(reflect.PtrTo(t)).Interface().(oneofMessage); ok {
|
||||
var oots []interface{}
|
||||
_, _, _, oots = om.XXX_OneofFuncs()
|
||||
|
||||
if len(oots) > 0 {
|
||||
// Interpret oneof metadata.
|
||||
prop.OneofTypes = make(map[string]*OneofProperties)
|
||||
for _, oot := range oots {
|
||||
|
Reference in New Issue
Block a user