Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // GRPCMaxMessageSize is the maximum message size of a grpc message // the option is then passed to the grpc client connection, and // is set in bytes. GRPCMaxMessageSize = 512 * 1024 * 1024 GRPCMaxMessage = grpc.WithDefaultCallOptions( grpc.MaxCallRecvMsgSize(GRPCMaxMessageSize), grpc.MaxCallSendMsgSize(GRPCMaxMessageSize), ) GRPCMaxServer = []grpc.ServerOption{ grpc.MaxRecvMsgSize(GRPCMaxMessageSize), grpc.MaxSendMsgSize(GRPCMaxMessageSize), } )
View Source
var (
MonitorEtcdServer bool = true
)
Functions ¶
func ApplyPatch ¶ added in v1.1.39
func ApplyPatch(from, to []string, strat *portal.PatchStrategy) []string
func InitLogging ¶ added in v1.0.1
func InitLogging()
func InitReconciler ¶ added in v1.1.28
func InitReconciler()
func MzidToString ¶ added in v1.1.38
Types ¶
type Mzid ¶
func MzidFromString ¶
type Set ¶
func (Set) DelAnyElement ¶
delete an arbitrary element from the set and return it
func (Set) DelElement ¶
delete a specific element from the set
func (Set) GetAnyElement ¶
Click to show internal directories.
Click to hide internal directories.