Ai
1 Star 0 Fork 0

powerpaas/kontainer-engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
drivers.pb.go 21.22 KB
一键复制 编辑 原始数据 按行查看 历史
Daishan Peng 提交于 2017-11-16 06:27 +08:00 . fix bugs
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: drivers.proto
/*
Package drivers is a generated protocol buffer package.
It is generated from these files:
drivers.proto
It has these top-level messages:
Empty
DriverFlags
Flag
DriverOptions
StringSlice
ClusterInfo
*/
package drivers
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
type Empty struct {
}
func (m *Empty) Reset() { *m = Empty{} }
func (m *Empty) String() string { return proto.CompactTextString(m) }
func (*Empty) ProtoMessage() {}
func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
type DriverFlags struct {
Options map[string]*Flag `protobuf:"bytes,1,rep,name=options" json:"options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *DriverFlags) Reset() { *m = DriverFlags{} }
func (m *DriverFlags) String() string { return proto.CompactTextString(m) }
func (*DriverFlags) ProtoMessage() {}
func (*DriverFlags) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
func (m *DriverFlags) GetOptions() map[string]*Flag {
if m != nil {
return m.Options
}
return nil
}
type Flag struct {
Type string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
Usage string `protobuf:"bytes,2,opt,name=usage" json:"usage,omitempty"`
Value string `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"`
}
func (m *Flag) Reset() { *m = Flag{} }
func (m *Flag) String() string { return proto.CompactTextString(m) }
func (*Flag) ProtoMessage() {}
func (*Flag) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
func (m *Flag) GetType() string {
if m != nil {
return m.Type
}
return ""
}
func (m *Flag) GetUsage() string {
if m != nil {
return m.Usage
}
return ""
}
func (m *Flag) GetValue() string {
if m != nil {
return m.Value
}
return ""
}
type DriverOptions struct {
BoolOptions map[string]bool `protobuf:"bytes,1,rep,name=bool_options,json=boolOptions" json:"bool_options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
StringOptions map[string]string `protobuf:"bytes,2,rep,name=string_options,json=stringOptions" json:"string_options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
IntOptions map[string]int64 `protobuf:"bytes,3,rep,name=int_options,json=intOptions" json:"int_options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
StringSliceOptions map[string]*StringSlice `protobuf:"bytes,4,rep,name=string_slice_options,json=stringSliceOptions" json:"string_slice_options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *DriverOptions) Reset() { *m = DriverOptions{} }
func (m *DriverOptions) String() string { return proto.CompactTextString(m) }
func (*DriverOptions) ProtoMessage() {}
func (*DriverOptions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
func (m *DriverOptions) GetBoolOptions() map[string]bool {
if m != nil {
return m.BoolOptions
}
return nil
}
func (m *DriverOptions) GetStringOptions() map[string]string {
if m != nil {
return m.StringOptions
}
return nil
}
func (m *DriverOptions) GetIntOptions() map[string]int64 {
if m != nil {
return m.IntOptions
}
return nil
}
func (m *DriverOptions) GetStringSliceOptions() map[string]*StringSlice {
if m != nil {
return m.StringSliceOptions
}
return nil
}
type StringSlice struct {
Value []string `protobuf:"bytes,1,rep,name=value" json:"value,omitempty"`
}
func (m *StringSlice) Reset() { *m = StringSlice{} }
func (m *StringSlice) String() string { return proto.CompactTextString(m) }
func (*StringSlice) ProtoMessage() {}
func (*StringSlice) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
func (m *StringSlice) GetValue() []string {
if m != nil {
return m.Value
}
return nil
}
type ClusterInfo struct {
Version string `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
ServiceAccountToken string `protobuf:"bytes,2,opt,name=service_account_token,json=serviceAccountToken" json:"service_account_token,omitempty"`
Endpoint string `protobuf:"bytes,3,opt,name=endpoint" json:"endpoint,omitempty"`
Username string `protobuf:"bytes,4,opt,name=username" json:"username,omitempty"`
Password string `protobuf:"bytes,5,opt,name=password" json:"password,omitempty"`
RootCaCertificate string `protobuf:"bytes,6,opt,name=root_ca_certificate,json=rootCaCertificate" json:"root_ca_certificate,omitempty"`
ClientCertificate string `protobuf:"bytes,7,opt,name=client_certificate,json=clientCertificate" json:"client_certificate,omitempty"`
ClientKey string `protobuf:"bytes,8,opt,name=client_key,json=clientKey" json:"client_key,omitempty"`
NodeCount int64 `protobuf:"varint,9,opt,name=node_count,json=nodeCount" json:"node_count,omitempty"`
Metadata map[string]string `protobuf:"bytes,10,rep,name=metadata" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *ClusterInfo) Reset() { *m = ClusterInfo{} }
func (m *ClusterInfo) String() string { return proto.CompactTextString(m) }
func (*ClusterInfo) ProtoMessage() {}
func (*ClusterInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
func (m *ClusterInfo) GetVersion() string {
if m != nil {
return m.Version
}
return ""
}
func (m *ClusterInfo) GetServiceAccountToken() string {
if m != nil {
return m.ServiceAccountToken
}
return ""
}
func (m *ClusterInfo) GetEndpoint() string {
if m != nil {
return m.Endpoint
}
return ""
}
func (m *ClusterInfo) GetUsername() string {
if m != nil {
return m.Username
}
return ""
}
func (m *ClusterInfo) GetPassword() string {
if m != nil {
return m.Password
}
return ""
}
func (m *ClusterInfo) GetRootCaCertificate() string {
if m != nil {
return m.RootCaCertificate
}
return ""
}
func (m *ClusterInfo) GetClientCertificate() string {
if m != nil {
return m.ClientCertificate
}
return ""
}
func (m *ClusterInfo) GetClientKey() string {
if m != nil {
return m.ClientKey
}
return ""
}
func (m *ClusterInfo) GetNodeCount() int64 {
if m != nil {
return m.NodeCount
}
return 0
}
func (m *ClusterInfo) GetMetadata() map[string]string {
if m != nil {
return m.Metadata
}
return nil
}
func init() {
proto.RegisterType((*Empty)(nil), "drivers.Empty")
proto.RegisterType((*DriverFlags)(nil), "drivers.DriverFlags")
proto.RegisterType((*Flag)(nil), "drivers.Flag")
proto.RegisterType((*DriverOptions)(nil), "drivers.DriverOptions")
proto.RegisterType((*StringSlice)(nil), "drivers.StringSlice")
proto.RegisterType((*ClusterInfo)(nil), "drivers.ClusterInfo")
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// Client API for Driver service
type DriverClient interface {
Create(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error)
Update(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error)
Get(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ClusterInfo, error)
PostCheck(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error)
Remove(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error)
GetDriverCreateOptions(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*DriverFlags, error)
GetDriverUpdateOptions(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*DriverFlags, error)
SetDriverOptions(ctx context.Context, in *DriverOptions, opts ...grpc.CallOption) (*Empty, error)
}
type driverClient struct {
cc *grpc.ClientConn
}
func NewDriverClient(cc *grpc.ClientConn) DriverClient {
return &driverClient{cc}
}
func (c *driverClient) Create(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/drivers.Driver/Create", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *driverClient) Update(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/drivers.Driver/Update", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *driverClient) Get(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ClusterInfo, error) {
out := new(ClusterInfo)
err := grpc.Invoke(ctx, "/drivers.Driver/Get", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *driverClient) PostCheck(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/drivers.Driver/PostCheck", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *driverClient) Remove(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/drivers.Driver/Remove", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *driverClient) GetDriverCreateOptions(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*DriverFlags, error) {
out := new(DriverFlags)
err := grpc.Invoke(ctx, "/drivers.Driver/GetDriverCreateOptions", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *driverClient) GetDriverUpdateOptions(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*DriverFlags, error) {
out := new(DriverFlags)
err := grpc.Invoke(ctx, "/drivers.Driver/GetDriverUpdateOptions", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *driverClient) SetDriverOptions(ctx context.Context, in *DriverOptions, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/drivers.Driver/SetDriverOptions", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for Driver service
type DriverServer interface {
Create(context.Context, *Empty) (*Empty, error)
Update(context.Context, *Empty) (*Empty, error)
Get(context.Context, *Empty) (*ClusterInfo, error)
PostCheck(context.Context, *Empty) (*Empty, error)
Remove(context.Context, *Empty) (*Empty, error)
GetDriverCreateOptions(context.Context, *Empty) (*DriverFlags, error)
GetDriverUpdateOptions(context.Context, *Empty) (*DriverFlags, error)
SetDriverOptions(context.Context, *DriverOptions) (*Empty, error)
}
func RegisterDriverServer(s *grpc.Server, srv DriverServer) {
s.RegisterService(&_Driver_serviceDesc, srv)
}
func _Driver_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).Create(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/Create",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).Create(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Driver_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).Update(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/Update",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).Update(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Driver_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).Get(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/Get",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).Get(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Driver_PostCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).PostCheck(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/PostCheck",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).PostCheck(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Driver_Remove_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).Remove(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/Remove",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).Remove(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Driver_GetDriverCreateOptions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).GetDriverCreateOptions(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/GetDriverCreateOptions",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).GetDriverCreateOptions(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Driver_GetDriverUpdateOptions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).GetDriverUpdateOptions(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/GetDriverUpdateOptions",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).GetDriverUpdateOptions(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _Driver_SetDriverOptions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DriverOptions)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DriverServer).SetDriverOptions(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/drivers.Driver/SetDriverOptions",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DriverServer).SetDriverOptions(ctx, req.(*DriverOptions))
}
return interceptor(ctx, in, info, handler)
}
var _Driver_serviceDesc = grpc.ServiceDesc{
ServiceName: "drivers.Driver",
HandlerType: (*DriverServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Create",
Handler: _Driver_Create_Handler,
},
{
MethodName: "Update",
Handler: _Driver_Update_Handler,
},
{
MethodName: "Get",
Handler: _Driver_Get_Handler,
},
{
MethodName: "PostCheck",
Handler: _Driver_PostCheck_Handler,
},
{
MethodName: "Remove",
Handler: _Driver_Remove_Handler,
},
{
MethodName: "GetDriverCreateOptions",
Handler: _Driver_GetDriverCreateOptions_Handler,
},
{
MethodName: "GetDriverUpdateOptions",
Handler: _Driver_GetDriverUpdateOptions_Handler,
},
{
MethodName: "SetDriverOptions",
Handler: _Driver_SetDriverOptions_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "drivers.proto",
}
func init() { proto.RegisterFile("drivers.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 672 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xdd, 0x6e, 0xd3, 0x30,
0x14, 0xc7, 0xe9, 0xd2, 0xaf, 0x9c, 0xac, 0x63, 0x78, 0x65, 0x44, 0x95, 0x90, 0x46, 0x27, 0xc1,
0x98, 0xb4, 0x5c, 0x94, 0x1b, 0xc4, 0x60, 0x1a, 0x94, 0x6d, 0x1a, 0x08, 0x31, 0x75, 0x70, 0xc5,
0x45, 0xf1, 0x52, 0x6f, 0x44, 0x4b, 0xed, 0xc8, 0x76, 0x8b, 0xfa, 0x20, 0xbc, 0x05, 0x2f, 0xc2,
0x0b, 0x71, 0x8d, 0x6c, 0x27, 0x99, 0xd3, 0x0f, 0xd6, 0xdd, 0xf5, 0x9c, 0xff, 0xdf, 0xbf, 0x9e,
0x73, 0x7c, 0x92, 0x40, 0x63, 0xc0, 0xa3, 0x31, 0xe1, 0x22, 0x48, 0x38, 0x93, 0x0c, 0xd5, 0xd2,
0xb0, 0x5d, 0x83, 0xca, 0xd1, 0x30, 0x91, 0x93, 0xf6, 0xaf, 0x12, 0x78, 0xef, 0x75, 0xf2, 0x38,
0xc6, 0x57, 0x02, 0xed, 0x43, 0x8d, 0x25, 0x32, 0x62, 0x54, 0xf8, 0xa5, 0x2d, 0x67, 0xc7, 0xeb,
0x3c, 0x09, 0x32, 0x84, 0x65, 0x0b, 0x3e, 0x1b, 0xcf, 0x11, 0x95, 0x7c, 0xd2, 0xcb, 0x4e, 0xb4,
0x4e, 0x61, 0xd5, 0x16, 0xd0, 0x3a, 0x38, 0xd7, 0x64, 0xe2, 0x97, 0xb6, 0x4a, 0x3b, 0x6e, 0x4f,
0xfd, 0x44, 0xdb, 0x50, 0x19, 0xe3, 0x78, 0x44, 0xfc, 0x95, 0xad, 0xd2, 0x8e, 0xd7, 0x69, 0xe4,
0x70, 0x85, 0xed, 0x19, 0xed, 0xd5, 0xca, 0xcb, 0x52, 0xfb, 0x18, 0xca, 0x2a, 0x85, 0x10, 0x94,
0xe5, 0x24, 0x21, 0x29, 0x43, 0xff, 0x46, 0x4d, 0xa8, 0x8c, 0x04, 0xbe, 0x32, 0x10, 0xb7, 0x67,
0x02, 0x95, 0x35, 0x68, 0xc7, 0x64, 0x75, 0xd0, 0xfe, 0x5b, 0x86, 0x86, 0x29, 0x3c, 0xad, 0x0c,
0x7d, 0x80, 0xd5, 0x0b, 0xc6, 0xe2, 0x7e, 0xb1, 0xcd, 0x67, 0x53, 0x6d, 0xa6, 0xee, 0xe0, 0x1d,
0x63, 0x71, 0xa1, 0x59, 0xef, 0xe2, 0x26, 0x83, 0xce, 0x60, 0x4d, 0x48, 0x1e, 0xd1, 0xab, 0x9c,
0xb6, 0xa2, 0x69, 0xcf, 0x17, 0xd0, 0xce, 0xb5, 0xb9, 0xc0, 0x6b, 0x08, 0x3b, 0x87, 0x4e, 0xc0,
0x8b, 0xa8, 0xcc, 0x71, 0x8e, 0xc6, 0x3d, 0x5d, 0x80, 0x3b, 0xa5, 0xb2, 0xc0, 0x82, 0x28, 0x4f,
0xa0, 0xef, 0xd0, 0x4c, 0x4b, 0x13, 0x71, 0x14, 0x92, 0x9c, 0x58, 0xd6, 0xc4, 0xe0, 0xbf, 0x05,
0x9e, 0xab, 0x13, 0x05, 0x32, 0x12, 0x33, 0x42, 0xeb, 0x00, 0xd6, 0xa7, 0xa7, 0x33, 0xe7, 0xc6,
0x9b, 0xf6, 0x8d, 0xd7, 0xad, 0x2b, 0x6e, 0x1d, 0x02, 0x9a, 0x9d, 0xc7, 0x6d, 0x04, 0xd7, 0x26,
0xbc, 0x81, 0xfb, 0x53, 0x23, 0xb8, 0xed, 0xb8, 0x63, 0x1f, 0xff, 0x06, 0x8f, 0x16, 0xf4, 0x3b,
0x07, 0xb3, 0x5b, 0xdc, 0xdc, 0x66, 0x3e, 0x40, 0x0b, 0x61, 0x2f, 0xf0, 0x36, 0x78, 0x96, 0x72,
0x53, 0x85, 0x5a, 0xb7, 0x7c, 0x3b, 0xff, 0x38, 0xe0, 0x75, 0xe3, 0x91, 0x90, 0x84, 0x9f, 0xd2,
0x4b, 0x86, 0x7c, 0xa8, 0x29, 0x66, 0xc4, 0x68, 0xfa, 0xd7, 0x59, 0x88, 0x3a, 0xf0, 0x50, 0x10,
0x3e, 0x56, 0x37, 0x89, 0xc3, 0x90, 0x8d, 0xa8, 0xec, 0x4b, 0x76, 0x4d, 0x68, 0x3a, 0x94, 0x8d,
0x54, 0x7c, 0x6b, 0xb4, 0x2f, 0x4a, 0x42, 0x2d, 0xa8, 0x13, 0x3a, 0x48, 0x58, 0x44, 0x65, 0xfa,
0x50, 0xe4, 0xb1, 0xd2, 0x46, 0x82, 0x70, 0x8a, 0x87, 0xc4, 0x2f, 0x1b, 0x2d, 0x8b, 0x95, 0x96,
0x60, 0x21, 0x7e, 0x32, 0x3e, 0xf0, 0x2b, 0x46, 0xcb, 0x62, 0x14, 0xc0, 0x06, 0x67, 0x4c, 0xf6,
0x43, 0xdc, 0x0f, 0x09, 0x97, 0xd1, 0x65, 0x14, 0x62, 0x49, 0xfc, 0xaa, 0xb6, 0x3d, 0x50, 0x52,
0x17, 0x77, 0x6f, 0x04, 0xb4, 0x07, 0x28, 0x8c, 0x23, 0x42, 0x65, 0xc1, 0x5e, 0x33, 0x76, 0xa3,
0xd8, 0xf6, 0xc7, 0x00, 0xa9, 0x5d, 0x8d, 0xbf, 0xae, 0x6d, 0xae, 0xc9, 0x7c, 0x24, 0x13, 0x25,
0x53, 0x36, 0x20, 0x7d, 0xdd, 0xa4, 0xef, 0xea, 0x0b, 0x75, 0x55, 0xa6, 0xab, 0x12, 0xe8, 0x00,
0xea, 0x43, 0x22, 0xf1, 0x00, 0x4b, 0xec, 0x83, 0xde, 0xf3, 0x76, 0x7e, 0x4d, 0xd6, 0x98, 0x83,
0x4f, 0xa9, 0xc9, 0xec, 0x76, 0x7e, 0xa6, 0xb5, 0x0f, 0x8d, 0x82, 0x74, 0x97, 0x65, 0xec, 0xfc,
0x76, 0xa0, 0x6a, 0x1e, 0x26, 0xb4, 0x0b, 0xd5, 0x2e, 0x27, 0xaa, 0x9f, 0xb5, 0xfc, 0xff, 0xf5,
0xeb, 0xb6, 0x35, 0x15, 0xb7, 0xef, 0x29, 0xef, 0xd7, 0x64, 0xb0, 0x9c, 0x77, 0x0f, 0x9c, 0x13,
0x22, 0x67, 0x8c, 0xcd, 0x79, 0x4d, 0x6a, 0xbb, 0x7b, 0xc6, 0x84, 0xec, 0xfe, 0x20, 0xe1, 0xf5,
0x72, 0x95, 0xf4, 0xc8, 0x90, 0x8d, 0x97, 0xa9, 0xe4, 0x10, 0x36, 0x4f, 0x88, 0x34, 0xed, 0x9a,
0x56, 0xb3, 0xf7, 0xce, 0xe2, 0xe2, 0xac, 0xef, 0xc7, 0x14, 0xc1, 0x0c, 0xe0, 0xae, 0x84, 0xd7,
0xb0, 0x7e, 0x9e, 0x11, 0xb2, 0xb3, 0x9b, 0xf3, 0xdf, 0x6b, 0xb3, 0x1d, 0x5c, 0x54, 0xf5, 0x17,
0xf1, 0xc5, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x85, 0xcb, 0x62, 0x22, 0x07, 0x00, 0x00,
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/powerpaas/kontainer-engine.git
git@gitee.com:powerpaas/kontainer-engine.git
powerpaas
kontainer-engine
kontainer-engine
v0.0.4-dev

搜索帮助