text stringlengths 11 6.3k | embedding listlengths 768 768 |
|---|---|
func RegisterAction() {
engine.RegisterAction("cron", NewCron)
} | [
0.5705785751342773,
-0.825626015663147,
0.45363470911979675,
0.5847300291061401,
1.8431047201156616,
-0.20198795199394226,
0.45385393500328064,
0.3078556954860687,
-0.0345422625541687,
0.8034090995788574,
-0.8615808486938477,
1.346426248550415,
0.4218282103538513,
0.5928446054458618,
-0.... |
func (c *Cron) Start() error {
return nil
} | [
1.720064640045166,
-0.7167537808418274,
0.32131168246269226,
0.9880934357643127,
0.5507245063781738,
-0.2181060016155243,
0.5148757696151733,
0.8199934363365173,
-0.7333847284317017,
-0.6544889807701111,
-1.396873950958252,
1.1383730173110962,
-0.26576584577560425,
0.26158401370048523,
-... |
func (c *Cron) Stop() error {
return nil
} | [
0.7983238101005554,
-0.48991674184799194,
0.2683006525039673,
0.3126676380634308,
0.7399873733520508,
0.31599780917167664,
0.49303290247917175,
0.6532769799232483,
-1.0474557876586914,
-0.5709946751594543,
-1.3544787168502808,
0.6739094257354736,
-0.9384018182754517,
-0.11617879569530487,
... |
func AppendQuote(dest []byte, s string) []byte {
return appendQuote(dest, s, false)
} | [
-0.10380376130342484,
0.20817507803440094,
0.5574807524681091,
0.5194503664970398,
-0.6583353877067566,
-0.5654639601707458,
-2.0087344646453857,
0.5239922404289246,
0.285810261964798,
0.3399839997291565,
-0.16383638978004456,
0.14930842816829681,
-0.4185660779476166,
0.49477913975715637,
... |
func AppendQuoteEscapeHTML(dest []byte, s string) []byte {
return appendQuote(dest, s, true)
} | [
-0.5599350333213806,
1.1167352199554443,
0.3770197927951813,
1.210851788520813,
-0.4262673854827881,
-0.23426507413387299,
-1.4554694890975952,
0.09749896079301834,
-0.2552888095378876,
0.3762020766735077,
-0.7156822085380554,
0.21461333334445953,
-0.1527893990278244,
0.31849533319473267,
... |
func appendQuote(dest []byte, s string, escapeHTML bool) []byte {
dest = append(dest, '"')
start := 0
for i := 0; i < len(s); {
if b := s[i]; b < utf8.RuneSelf {
if htmlSafeSet[b] || (!escapeHTML && safeSet[b]) {
i++
continue
}
if start < i {
dest = append(dest, s[start:i]...)
}
dest = a... | [
-0.47099271416664124,
-0.248408704996109,
1.0262352228164673,
-0.3013722598552704,
-0.8572443723678589,
-1.2091351747512817,
-0.9491721391677856,
0.10018669068813324,
0.07448868453502655,
0.7950047850608826,
-0.23876072466373444,
-0.0909838005900383,
0.17024241387844086,
-0.027863526716828... |
func AppendQuoteBytes(dest, s []byte) []byte {
return appendQuoteBytes(dest, s, false)
} | [
-1.037793517112732,
0.4286743998527527,
0.5239313840866089,
0.0728221982717514,
-0.4448598623275757,
-0.16940057277679443,
-1.599395513534546,
0.014861466363072395,
0.8627902865409851,
0.2090526521205902,
-0.8336307406425476,
0.38520553708076477,
-0.5152119994163513,
0.6115475296974182,
... |
func AppendQuoteBytesEscapeHTML(dest, s []byte) []byte {
return appendQuoteBytes(dest, s, true)
} | [
-0.4864489734172821,
1.0909453630447388,
0.3601837158203125,
1.0593239068984985,
-0.48554033041000366,
-0.15177921950817108,
-1.1991114616394043,
0.09487860649824142,
0.2512189447879791,
0.17805573344230652,
-0.8084512948989868,
0.11770205944776535,
-0.5244057774543762,
0.6101551055908203,... |
func appendQuoteBytes(dest, s []byte, escapeHTML bool) []byte {
dest = append(dest, '"')
start := 0
for i := 0; i < len(s); {
if b := s[i]; b < utf8.RuneSelf {
if htmlSafeSet[b] || (!escapeHTML && safeSet[b]) {
i++
continue
}
if start < i {
dest = append(dest, s[start:i]...)
}
dest = app... | [
-0.6510737538337708,
-0.20149913430213928,
0.9208444952964783,
-0.560455858707428,
-0.8390136361122131,
-0.7892763018608093,
-0.8515443801879883,
-0.08425474911928177,
0.37139400839805603,
0.5496333241462708,
-0.45337772369384766,
-0.06281153857707977,
0.09242850542068481,
-0.1248508617281... |
func Quote(s string) []byte {
return appendQuote(nil, s, false)
} | [
0.3939904272556305,
0.22902671992778778,
0.3498174846172333,
0.4039461314678192,
-0.5727964043617249,
-1.1395618915557861,
-1.0321639776229858,
-0.6051243543624878,
1.174399733543396,
-0.513327956199646,
-0.28496620059013367,
0.6640562415122986,
-0.6887766718864441,
0.5122737884521484,
0... |
func QuoteEscapeHTML(s string) []byte {
return appendQuote(nil, s, true)
} | [
0.09891683608293533,
1.2424325942993164,
0.08771643787622452,
1.2100005149841309,
0.03944798558950424,
-0.9791653156280518,
-0.5047422647476196,
-0.6512428522109985,
0.30888694524765015,
0.10113463550806046,
-1.012486457824707,
0.15484297275543213,
-0.4392363727092743,
0.23924203217029572,... |
func QuoteBytes(s []byte) []byte {
return appendQuoteBytes(nil, s, false)
} | [
0.027465885505080223,
0.503313422203064,
0.21645957231521606,
-0.24139337241649628,
0.14566753804683685,
-0.5698469877243042,
-0.7693033218383789,
-0.529198944568634,
1.4071025848388672,
0.06555213034152985,
-0.5686555504798889,
0.5211702585220337,
-1.1285845041275024,
0.6818566918373108,
... |
func QuoteBytesEscapeHTML(s []byte) []byte {
return appendQuoteBytes(nil, s, true)
} | [
0.06748393177986145,
1.0961765050888062,
0.023321302607655525,
0.959744393825531,
-0.20861700177192688,
-0.3906668424606323,
-0.4769798219203949,
-0.3449755609035492,
0.7161887288093567,
0.03691982477903366,
-1.009367823600769,
0.18539626896381378,
-0.9051333069801331,
0.6054348349571228,
... |
func (conn SplunkConnection) SendMessage(message *Message) (string, error) {
data := make(url.Values)
data.Add("name", message.Name)
data.Add("value", message.Content.Message)
data.Add("severity", string(message.Content.Severity))
response, err := conn.HTTPPost(fmt.Sprintf("%s/services/messages", conn.BaseURL), &d... | [
-0.9611755609512329,
0.7450369596481323,
0.6434230804443359,
0.2906424403190613,
-0.14965493977069855,
-0.5031075477600098,
-0.36056697368621826,
0.15497338771820068,
-0.2747654616832733,
0.5000588297843933,
-0.09407158941030502,
0.401457279920578,
-1.5425519943237305,
0.7407007813453674,
... |
func (conn SplunkConnection) GetMessage(name string) ([]Message, error) {
data := make(url.Values)
data.Add("name", name)
data.Add("output_mode", "json")
response, err := conn.HTTPGet(fmt.Sprintf("%s/services/messages/%s", conn.BaseURL, name), &data)
if err != nil {
return []Message{}, err
}
bytes := []byte(... | [
-1.4488084316253662,
0.0070432862266898155,
0.8721107244491577,
0.3086935877799988,
0.4540446698665619,
-1.1908588409423828,
-0.8933354616165161,
-0.3873845636844635,
-0.015606456436216831,
0.6126411557197571,
-0.21691524982452393,
0.7090342044830322,
-1.3146194219589233,
0.775362670421600... |
func HNSEndpointRequest(method, path, request string) (*HNSEndpoint, error) {
endpoint := &HNSEndpoint{}
err := hnsCall(method, "/endpoints/"+path, request, &endpoint)
if err != nil {
return nil, err
}
return endpoint, nil
} | [
-1.3145649433135986,
0.10499019920825958,
0.49456343054771423,
1.0153212547302246,
-0.2738492786884308,
-0.3659546375274658,
-0.45130857825279236,
-0.5315854549407959,
0.11207348853349686,
0.4607485234737396,
0.608707845211029,
0.5320001840591431,
-0.25734081864356995,
0.119228795170784,
... |
func HNSListEndpointRequest() ([]HNSEndpoint, error) {
var endpoint []HNSEndpoint
err := hnsCall("GET", "/endpoints/", "", &endpoint)
if err != nil {
return nil, err
}
return endpoint, nil
} | [
-1.0914984941482544,
-0.1712593287229538,
0.3289031684398651,
0.750251829624176,
0.5288163423538208,
-0.25858232378959656,
-0.9211094975471497,
0.17985203862190247,
0.6111392378807068,
0.3102366626262665,
-0.012464507482945919,
0.9587761759757996,
-0.5868397951126099,
0.9241483807563782,
... |
func hnsEndpointStatsRequest(id string) (*EndpointStats, error) {
var stats EndpointStats
err := hnsCall("GET", "/endpointstats/"+id, "", &stats)
if err != nil {
return nil, err
}
return &stats, nil
} | [
-1.1426246166229248,
1.019623875617981,
0.5213963389396667,
-0.27643686532974243,
-0.006028434727340937,
-0.048552725464105606,
-0.9582800269126892,
-1.262959361076355,
0.361265629529953,
-0.0956680178642273,
0.25181248784065247,
0.6126649379730225,
-0.2109287530183792,
0.42217499017715454... |
func GetHNSEndpointByID(endpointID string) (*HNSEndpoint, error) {
return HNSEndpointRequest("GET", endpointID, "")
} | [
-0.39451244473457336,
-0.08271586149930954,
0.09244507551193237,
1.2138965129852295,
0.09667450934648514,
-0.6828500032424927,
-0.7801437377929688,
-1.2298356294631958,
0.13356080651283264,
0.8185502290725708,
-0.7742294669151306,
0.2166820764541626,
-0.7078743577003479,
0.7717369198799133... |
func GetHNSEndpointStats(endpointID string) (*EndpointStats, error) {
return hnsEndpointStatsRequest(endpointID)
} | [
-0.7885332107543945,
0.5704390406608582,
0.20343486964702606,
0.5672316551208496,
0.42710477113723755,
-0.11933626979589462,
-0.8706418871879578,
-0.8597255945205688,
0.22567522525787354,
0.22559471428394318,
-0.7075893878936768,
0.1947881132364273,
-0.40427055954933167,
0.5840445756912231... |
func GetHNSEndpointByName(endpointName string) (*HNSEndpoint, error) {
hnsResponse, err := HNSListEndpointRequest()
if err != nil {
return nil, err
}
for _, hnsEndpoint := range hnsResponse {
if hnsEndpoint.Name == endpointName {
return &hnsEndpoint, nil
}
}
return nil, EndpointNotFoundError{EndpointName... | [
-0.23137640953063965,
-0.4108021855354309,
0.3383976221084595,
0.7113503813743591,
0.10269176959991455,
-0.5693395137786865,
-0.6808840036392212,
-0.914911150932312,
-0.004277728497982025,
0.9816007614135742,
-0.6625913381576538,
-0.03697410970926285,
-0.6768208146095276,
0.515280663967132... |
func (endpoint *HNSEndpoint) Create() (*HNSEndpoint, error) {
operation := "Create"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
jsonString, err := json.Marshal(endpoint)
if err != nil {
return nil, err
}
return HNSEndpointRequest("POST", "", string(jsonString))
} | [
-0.998241126537323,
0.2707959711551666,
0.35522890090942383,
1.1706839799880981,
0.6603224277496338,
-0.027987824752926826,
-0.5364852547645569,
-0.1946636438369751,
-0.41776663064956665,
0.7988499999046326,
-0.30111125111579895,
0.08359549194574356,
-0.8847458362579346,
0.0861044079065322... |
func (endpoint *HNSEndpoint) Delete() (*HNSEndpoint, error) {
operation := "Delete"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
return HNSEndpointRequest("DELETE", endpoint.Id, "")
} | [
-0.23237298429012299,
0.2081122100353241,
0.3685259222984314,
1.531942367553711,
0.5407735109329224,
-0.5815938711166382,
-0.18724709749221802,
0.26406562328338623,
0.46695390343666077,
0.6951850056648254,
-0.2289639711380005,
0.607148289680481,
-1.0838018655776978,
-0.532612144947052,
0... |
func (endpoint *HNSEndpoint) ApplyACLPolicy(policies ...*ACLPolicy) error {
operation := "ApplyACLPolicy"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
for _, policy := range policies {
if policy == nil {
continue
}
jsonString, err := json.Marshal(policy)
if er... | [
-0.06453776359558105,
-0.5673624277114868,
0.33195874094963074,
-0.23865364491939545,
0.24301153421401978,
0.8506658673286438,
-0.754252552986145,
0.009493628516793251,
0.47056180238723755,
0.6251561045646667,
0.1442628800868988,
-0.3781968355178833,
-0.36939486861228943,
-0.05105874314904... |
func (endpoint *HNSEndpoint) ApplyProxyPolicy(policies ...*ProxyPolicy) error {
operation := "ApplyProxyPolicy"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
for _, policy := range policies {
if policy == nil {
continue
}
jsonString, err := json.Marshal(policy)
... | [
-0.684273898601532,
-0.24183569848537445,
0.381447970867157,
0.14520955085754395,
0.8388135433197021,
0.8481786847114563,
-0.41984832286834717,
0.6477566361427307,
0.022094223648309708,
0.12205932289361954,
-0.18473456799983978,
-0.27870234847068787,
-0.7806459665298462,
0.4975573122501373... |
func (endpoint *HNSEndpoint) ContainerAttach(containerID string, compartmentID uint16) error {
operation := "ContainerAttach"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
requestMessage := &EndpointAttachDetachRequest{
ContainerID: containerID,
CompartmentID: compa... | [
-0.9590770602226257,
-0.25420451164245605,
0.7127327919006348,
0.24371890723705292,
0.18000370264053345,
-0.4859378933906555,
-0.17409661412239075,
-0.44378891587257385,
0.05960680916905403,
0.6791631579399109,
0.09027794003486633,
0.6782712340354919,
-0.46093297004699707,
0.22619454562664... |
func (endpoint *HNSEndpoint) ContainerDetach(containerID string) error {
operation := "ContainerDetach"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
requestMessage := &EndpointAttachDetachRequest{
ContainerID: containerID,
SystemType: ContainerType,
}
response := ... | [
-0.9607895612716675,
0.19293396174907684,
0.5563885569572449,
0.012731269933283329,
0.06805308908224106,
-0.4204159677028656,
0.38405129313468933,
-0.3921091854572296,
0.4387587606906891,
0.8020374774932861,
-0.10762164741754532,
0.4500683546066284,
-0.7222914695739746,
0.28410202264785767... |
func (endpoint *HNSEndpoint) HostAttach(compartmentID uint16) error {
operation := "HostAttach"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
requestMessage := &EndpointAttachDetachRequest{
CompartmentID: compartmentID,
SystemType: HostType,
}
response := &Endpoin... | [
-0.7201112508773804,
-0.22526144981384277,
0.697494626045227,
0.34431496262550354,
-0.21556662023067474,
0.5150471329689026,
0.05476799234747887,
0.06633210182189941,
-0.5426278114318848,
0.6177144646644592,
-0.12862667441368103,
0.4412248134613037,
-0.7692187428474426,
-0.1149979233741760... |
func (endpoint *HNSEndpoint) HostDetach() error {
operation := "HostDetach"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
requestMessage := &EndpointAttachDetachRequest{
SystemType: HostType,
}
response := &EndpointResquestResponse{}
jsonString, err := json.Marshal(r... | [
-0.4769020974636078,
0.30465441942214966,
0.6022214889526367,
0.21905829012393951,
-0.31955546140670776,
0.5041784644126892,
0.2347063273191452,
0.35568156838417053,
-0.49656689167022705,
0.5492060780525208,
-0.28854042291641235,
0.3602697253227234,
-0.9507256150245667,
-0.184934601187706,... |
func (endpoint *HNSEndpoint) VirtualMachineNICAttach(virtualMachineNICName string) error {
operation := "VirtualMachineNicAttach"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
requestMessage := &EndpointAttachDetachRequest{
VirtualNICName: virtualMachineNICName,
System... | [
-0.3157942295074463,
-0.2529863715171814,
0.4890742301940918,
0.3553706407546997,
-0.090396448969841,
0.16639985144138336,
-0.3093684911727905,
-0.5272479057312012,
-0.1808941811323166,
0.8497005701065063,
-0.1324853152036667,
0.44846779108047485,
-0.9031522870063782,
-0.35093387961387634,... |
func (endpoint *HNSEndpoint) VirtualMachineNICDetach() error {
operation := "VirtualMachineNicDetach"
title := "hcsshim::HNSEndpoint::" + operation
logrus.Debugf(title+" id=%s", endpoint.Id)
requestMessage := &EndpointAttachDetachRequest{
SystemType: VirtualMachineType,
}
response := &EndpointResquestResponse{... | [
-0.20594611763954163,
0.06174985691905022,
0.3872857391834259,
0.02943142130970955,
-0.23429261147975922,
-0.28930988907814026,
-0.498935341835022,
-0.6668515801429749,
-0.34835705161094666,
1.0084234476089478,
-0.30247217416763306,
0.20238856971263885,
-1.065447211265564,
-0.2631328999996... |
func TestSubsequencePatternMatching() {
fmt.Println(subsequencePatternMatchingDpFast("baxmx", "ax"))
fmt.Println(subsequencePatternMatchingDpFast("tomorrow", "tor"))
} | [
0.2746964693069458,
0.31230583786964417,
0.6885765790939331,
0.9363080263137817,
-0.8994174599647522,
0.1085396558046341,
-0.18817180395126343,
0.7453476786613464,
0.5470390319824219,
-1.0487052202224731,
-0.7869607210159302,
0.4509021043777466,
0.05523576959967613,
-0.5228950381278992,
... |
func (w imageReadWriter) readImage() (*storedImage, error) {
ref, err := w.readRef()
if err != nil {
return nil, err
}
desc, err := w.readDescriptor()
if err != nil {
return nil, err
}
cfg, err := w.readConfig()
if err != nil {
return nil, err
}
filterBytes, err := w.readFilter()
if err != nil {
retu... | [
-0.4959871768951416,
0.393514484167099,
0.3999548554420471,
0.40771499276161194,
0.19644767045974731,
-0.027054840698838234,
0.3863421678543091,
-0.36330363154411316,
-0.5356553196907043,
-0.22307324409484863,
1.4194668531417847,
0.10452613979578018,
-0.21439100801944733,
0.654409885406494... |
func (p *FileTtlQ) Enq(uid interface{}, data []byte, ttl ...uint32) error {
q := p.getQ(uid)
k := string(uuid.NewUUID().String()) //16 byte
q.Enqueue(k)
t := int64(-1) //never ood (out of day)
if len(ttl) > 0 {
t = utee.TickSec() + int64(ttl[0])
}
qv := QValue{
Data: data,
Dod: t,
}
b, err := json.Marsh... | [
-0.7890049815177917,
0.0020005854312330484,
0.638336181640625,
-0.41787028312683105,
-0.15429718792438507,
0.5536426901817322,
-0.7381967902183533,
-0.00682921102270484,
-0.4536767303943634,
0.5137795805931091,
-0.775459885597229,
0.15285469591617584,
0.4409734308719635,
0.4551095962524414... |
func (o GetServiceTopicsResultOutput) Id() pulumi.StringOutput {
return o.ApplyT(func(v GetServiceTopicsResult) string { return v.Id }).(pulumi.StringOutput)
} | [
-0.02085554599761963,
-0.17357711493968964,
0.1521415114402771,
-0.47173774242401123,
0.5737119317054749,
1.1708589792251587,
0.16211223602294922,
0.21022392809391022,
0.6374248266220093,
-0.42150261998176575,
-0.5633155703544617,
-0.12001867592334747,
-0.23447081446647644,
-1.116169214248... |
func (o GetServiceTopicsResultOutput) Names() pulumi.StringArrayOutput {
return o.ApplyT(func(v GetServiceTopicsResult) []string { return v.Names }).(pulumi.StringArrayOutput)
} | [
-0.9933916330337524,
0.0846395492553711,
0.24264472723007202,
-0.6164553761482239,
0.6977446675300598,
0.9470396637916565,
-0.4960486888885498,
-0.6272669434547424,
0.08515377342700958,
-0.06292668730020523,
-1.2548545598983765,
-0.20556077361106873,
0.558548092842102,
-0.455786794424057,
... |
func (o GetServiceTopicsResultOutput) TopicName() pulumi.StringPtrOutput {
return o.ApplyT(func(v GetServiceTopicsResult) *string { return v.TopicName }).(pulumi.StringPtrOutput)
} | [
-0.19351869821548462,
-0.29026344418525696,
0.22632455825805664,
-0.47470521926879883,
0.0549258291721344,
0.9877198934555054,
0.14467661082744598,
0.04574248567223549,
-0.01344595942646265,
-0.2829788029193878,
0.4540571868419647,
-0.3875158131122589,
0.3322957456111908,
-1.33763909339904... |
func (o GetServiceTopicsResultOutput) Topics() GetServiceTopicsTopicArrayOutput {
return o.ApplyT(func(v GetServiceTopicsResult) []GetServiceTopicsTopic { return v.Topics }).(GetServiceTopicsTopicArrayOutput)
} | [
-0.7268285155296326,
-0.02776540257036686,
0.26042166352272034,
-0.26123282313346863,
0.38571444153785706,
0.6775028109550476,
-0.14416928589344025,
-0.5929123759269714,
0.6225098967552185,
-0.7327759265899658,
-0.09941882640123367,
-0.30195480585098267,
0.5011665225028992,
-0.422800689935... |
func NewMultiKeychain(kcs ...Keychain) Keychain {
return &multiKeychain{keychains: kcs}
} | [
-0.3865024447441101,
-0.5384334921836853,
0.17668437957763672,
1.0419397354125977,
-0.7988944053649902,
-0.17564590275287628,
-1.5896998643875122,
-0.9482290148735046,
0.44981974363327026,
-0.010052439756691456,
-1.5940061807632446,
0.09445028752088547,
-0.33152568340301514,
0.928091645240... |
func RegisterConversions(s *runtime.Scheme) error {
if err := s.AddGeneratedConversionFunc((*ClusterResourceSet)(nil), (*v1beta1.ClusterResourceSet)(nil), func(a, b interface{}, scope conversion.Scope) error {
return Convert_v1alpha3_ClusterResourceSet_To_v1beta1_ClusterResourceSet(a.(*ClusterResourceSet), b.(*v1bet... | [
-0.8122982978820801,
0.041084080934524536,
0.9527969360351562,
-0.10980033129453659,
0.2503302991390228,
-0.7978132963180542,
0.954112708568573,
-1.195822834968567,
0.21068035066127777,
0.20900596678256989,
-0.0931481197476387,
0.017495088279247284,
0.06848011910915375,
0.505918025970459,
... |
func Convert_v1alpha3_ClusterResourceSet_To_v1beta1_ClusterResourceSet(in *ClusterResourceSet, out *v1beta1.ClusterResourceSet, s conversion.Scope) error {
return autoConvert_v1alpha3_ClusterResourceSet_To_v1beta1_ClusterResourceSet(in, out, s)
} | [
0.07023295015096664,
-0.4336971342563629,
0.456991583108902,
-0.6554004549980164,
0.5253922343254089,
0.44288259744644165,
0.058156780898571014,
-0.29785025119781494,
0.8747684955596924,
0.8094964027404785,
0.768242597579956,
0.42505714297294617,
-0.19638000428676605,
-0.7782350778579712,
... |
func Convert_v1beta1_ClusterResourceSet_To_v1alpha3_ClusterResourceSet(in *v1beta1.ClusterResourceSet, out *ClusterResourceSet, s conversion.Scope) error {
return autoConvert_v1beta1_ClusterResourceSet_To_v1alpha3_ClusterResourceSet(in, out, s)
} | [
-0.44200003147125244,
-0.022569390013813972,
0.14194567501544952,
-0.38168999552726746,
-0.3000811040401459,
-0.011771785095334053,
0.16125454008579254,
-0.37258413434028625,
0.33282190561294556,
0.9112966656684875,
0.8675259351730347,
-0.053712185472249985,
-0.23477283120155334,
-0.330329... |
func Convert_v1alpha3_ClusterResourceSetBinding_To_v1beta1_ClusterResourceSetBinding(in *ClusterResourceSetBinding, out *v1beta1.ClusterResourceSetBinding, s conversion.Scope) error {
return autoConvert_v1alpha3_ClusterResourceSetBinding_To_v1beta1_ClusterResourceSetBinding(in, out, s)
} | [
-0.08689059317111969,
-0.08119624853134155,
0.6610806584358215,
0.03311614319682121,
-0.0020297474693506956,
0.7608706951141357,
0.09630826860666275,
-0.40046024322509766,
0.7029989361763,
0.7991107106208801,
0.26827123761177063,
0.12768439948558807,
0.26957443356513977,
-0.666154205799102... |
func Convert_v1beta1_ClusterResourceSetBinding_To_v1alpha3_ClusterResourceSetBinding(in *v1beta1.ClusterResourceSetBinding, out *ClusterResourceSetBinding, s conversion.Scope) error {
return autoConvert_v1beta1_ClusterResourceSetBinding_To_v1alpha3_ClusterResourceSetBinding(in, out, s)
} | [
-0.6538351774215698,
0.3519895374774933,
0.41948485374450684,
0.17221975326538086,
-0.6095460653305054,
0.3868787884712219,
0.345419317483902,
-0.8204586505889893,
0.3060619831085205,
0.8738941550254822,
0.3269902467727661,
-0.12445894628763199,
0.20049653947353363,
-0.25728192925453186,
... |
func Convert_v1alpha3_ClusterResourceSetBindingList_To_v1beta1_ClusterResourceSetBindingList(in *ClusterResourceSetBindingList, out *v1beta1.ClusterResourceSetBindingList, s conversion.Scope) error {
return autoConvert_v1alpha3_ClusterResourceSetBindingList_To_v1beta1_ClusterResourceSetBindingList(in, out, s)
} | [
-0.594887375831604,
-0.008107367902994156,
0.5267015695571899,
0.4487825930118561,
0.11427372694015503,
0.6503707766532898,
0.2893727719783783,
-0.2510458827018738,
0.0670732781291008,
1.1415766477584839,
-0.07077080011367798,
-0.45126810669898987,
0.4355529546737671,
-0.43150654435157776,... |
func Convert_v1beta1_ClusterResourceSetBindingList_To_v1alpha3_ClusterResourceSetBindingList(in *v1beta1.ClusterResourceSetBindingList, out *ClusterResourceSetBindingList, s conversion.Scope) error {
return autoConvert_v1beta1_ClusterResourceSetBindingList_To_v1alpha3_ClusterResourceSetBindingList(in, out, s)
} | [
-1.2102134227752686,
0.35103198885917664,
0.16883279383182526,
0.6716673970222473,
-0.5373899340629578,
0.44474419951438904,
0.3261283338069916,
-0.42645326256752014,
-0.16896072030067444,
1.3750826120376587,
0.08848214894533157,
-0.5312297940254211,
0.44135504961013794,
0.2453964203596115... |
func Convert_v1alpha3_ClusterResourceSetBindingSpec_To_v1beta1_ClusterResourceSetBindingSpec(in *ClusterResourceSetBindingSpec, out *v1beta1.ClusterResourceSetBindingSpec, s conversion.Scope) error {
return autoConvert_v1alpha3_ClusterResourceSetBindingSpec_To_v1beta1_ClusterResourceSetBindingSpec(in, out, s)
} | [
-0.15263336896896362,
-0.034083131700754166,
0.5109407901763916,
-0.10676510632038116,
0.3417016565799713,
1.1378921270370483,
-0.014434834942221642,
-0.4415178596973419,
0.03151045739650726,
0.934844434261322,
0.6196478009223938,
0.0850834921002388,
0.9573788642883301,
-0.8924278616905212... |
func Convert_v1beta1_ClusterResourceSetBindingSpec_To_v1alpha3_ClusterResourceSetBindingSpec(in *v1beta1.ClusterResourceSetBindingSpec, out *ClusterResourceSetBindingSpec, s conversion.Scope) error {
return autoConvert_v1beta1_ClusterResourceSetBindingSpec_To_v1alpha3_ClusterResourceSetBindingSpec(in, out, s)
} | [
-0.7059424519538879,
0.23136958479881287,
0.1921186000108719,
-0.08977699279785156,
-0.3123423457145691,
0.8905596733093262,
0.10846041142940521,
-0.7422004342079163,
-0.12165042757987976,
1.0761767625808716,
0.9401375651359558,
-0.04638223350048065,
0.8775954246520996,
-0.4153911173343658... |
func Convert_v1alpha3_ClusterResourceSetList_To_v1beta1_ClusterResourceSetList(in *ClusterResourceSetList, out *v1beta1.ClusterResourceSetList, s conversion.Scope) error {
return autoConvert_v1alpha3_ClusterResourceSetList_To_v1beta1_ClusterResourceSetList(in, out, s)
} | [
-0.30570369958877563,
-0.09449786692857742,
0.5041344165802002,
0.3610652983188629,
0.16047272086143494,
0.7125392556190491,
0.32223090529441833,
-0.06854026764631271,
0.5857749581336975,
1.266779899597168,
-0.22045940160751343,
0.05805697292089462,
0.22517187893390656,
-0.4204412996768951... |
func Convert_v1beta1_ClusterResourceSetList_To_v1alpha3_ClusterResourceSetList(in *v1beta1.ClusterResourceSetList, out *ClusterResourceSetList, s conversion.Scope) error {
return autoConvert_v1beta1_ClusterResourceSetList_To_v1alpha3_ClusterResourceSetList(in, out, s)
} | [
-0.9510125517845154,
0.27513667941093445,
0.16017787158489227,
0.45610174536705017,
-0.49814489483833313,
0.3251544237136841,
0.4245307743549347,
-0.13557280600070953,
0.12855634093284607,
1.4740924835205078,
-0.08849946409463882,
-0.05417833849787712,
0.28562790155410767,
0.16941344738006... |
func Convert_v1alpha3_ClusterResourceSetSpec_To_v1beta1_ClusterResourceSetSpec(in *ClusterResourceSetSpec, out *v1beta1.ClusterResourceSetSpec, s conversion.Scope) error {
return autoConvert_v1alpha3_ClusterResourceSetSpec_To_v1beta1_ClusterResourceSetSpec(in, out, s)
} | [
0.16533055901527405,
-0.13907933235168457,
0.6449270248413086,
-0.2818532884120941,
-0.027127349749207497,
0.8493255376815796,
0.1363099068403244,
-0.0917920172214508,
0.3511008620262146,
1.068625569343567,
0.43895867466926575,
0.43022289872169495,
0.947334349155426,
-0.8143497705459595,
... |
func Convert_v1beta1_ClusterResourceSetSpec_To_v1alpha3_ClusterResourceSetSpec(in *v1beta1.ClusterResourceSetSpec, out *ClusterResourceSetSpec, s conversion.Scope) error {
return autoConvert_v1beta1_ClusterResourceSetSpec_To_v1alpha3_ClusterResourceSetSpec(in, out, s)
} | [
-0.28660836815834045,
0.1926460713148117,
0.3509379029273987,
-0.19455759227275848,
-0.6784260869026184,
0.49632149934768677,
0.42093536257743835,
-0.44152572751045227,
-0.01881144382059574,
1.2906261682510376,
0.6199114322662354,
0.30966511368751526,
0.820227861404419,
-0.4084498584270477... |
func Convert_v1alpha3_ClusterResourceSetStatus_To_v1beta1_ClusterResourceSetStatus(in *ClusterResourceSetStatus, out *v1beta1.ClusterResourceSetStatus, s conversion.Scope) error {
return autoConvert_v1alpha3_ClusterResourceSetStatus_To_v1beta1_ClusterResourceSetStatus(in, out, s)
} | [
-0.14404581487178802,
-0.5438653826713562,
0.46994999051094055,
-0.6966633200645447,
0.0540977418422699,
0.6518309116363525,
-0.35505416989326477,
0.3787144720554352,
0.27778226137161255,
1.1780139207839966,
-0.4399360120296478,
0.5032256245613098,
0.6301738619804382,
-0.660955548286438,
... |
func Convert_v1beta1_ClusterResourceSetStatus_To_v1alpha3_ClusterResourceSetStatus(in *v1beta1.ClusterResourceSetStatus, out *ClusterResourceSetStatus, s conversion.Scope) error {
return autoConvert_v1beta1_ClusterResourceSetStatus_To_v1alpha3_ClusterResourceSetStatus(in, out, s)
} | [
-0.6866733431816101,
-0.16542604565620422,
0.15367703139781952,
-0.6465803384780884,
-0.37967610359191895,
0.12829327583312988,
-0.1640201061964035,
0.07647611945867538,
-0.20900118350982666,
1.261440634727478,
-0.10020159184932709,
0.31784918904304504,
0.653033435344696,
-0.22781512141227... |
func Convert_v1alpha3_ResourceBinding_To_v1beta1_ResourceBinding(in *ResourceBinding, out *v1beta1.ResourceBinding, s conversion.Scope) error {
return autoConvert_v1alpha3_ResourceBinding_To_v1beta1_ResourceBinding(in, out, s)
} | [
-0.29095256328582764,
-0.37071678042411804,
0.5633738040924072,
-0.33501431345939636,
-0.06931225955486298,
0.9350060820579529,
-0.15261000394821167,
-0.2758663594722748,
1.6831947565078735,
0.9265149235725403,
0.20627449452877045,
0.07298171520233154,
0.15647929906845093,
-0.2874985337257... |
func Convert_v1beta1_ResourceBinding_To_v1alpha3_ResourceBinding(in *v1beta1.ResourceBinding, out *ResourceBinding, s conversion.Scope) error {
return autoConvert_v1beta1_ResourceBinding_To_v1alpha3_ResourceBinding(in, out, s)
} | [
-0.9731305241584778,
0.21210436522960663,
0.2536413073539734,
0.14421576261520386,
-0.8269194960594177,
0.6275659799575806,
0.23652152717113495,
-0.632574737071991,
0.8083851337432861,
1.0965287685394287,
0.3107188642024994,
-0.19192174077033997,
0.07899883389472961,
0.2859189808368683,
... |
func Convert_v1alpha3_ResourceRef_To_v1beta1_ResourceRef(in *ResourceRef, out *v1beta1.ResourceRef, s conversion.Scope) error {
return autoConvert_v1alpha3_ResourceRef_To_v1beta1_ResourceRef(in, out, s)
} | [
0.09254850447177887,
-0.7680167555809021,
0.43947046995162964,
-0.9494351148605347,
0.26110824942588806,
0.7763291001319885,
0.011944280005991459,
0.06674766540527344,
1.1774719953536987,
1.2840278148651123,
0.31858211755752563,
0.12393663823604584,
0.07258309423923492,
-0.3317663073539734... |
func Convert_v1beta1_ResourceRef_To_v1alpha3_ResourceRef(in *v1beta1.ResourceRef, out *ResourceRef, s conversion.Scope) error {
return autoConvert_v1beta1_ResourceRef_To_v1alpha3_ResourceRef(in, out, s)
} | [
-0.5943168997764587,
-0.2598722577095032,
-0.05100032687187195,
-0.6286858320236206,
-0.49493685364723206,
0.3142170011997223,
0.3287932574748993,
0.13804006576538086,
0.18822798132896423,
1.4626765251159668,
0.3856404721736908,
-0.07650505751371384,
-0.03812837973237038,
0.076532587409019... |
func Convert_v1alpha3_ResourceSetBinding_To_v1beta1_ResourceSetBinding(in *ResourceSetBinding, out *v1beta1.ResourceSetBinding, s conversion.Scope) error {
return autoConvert_v1alpha3_ResourceSetBinding_To_v1beta1_ResourceSetBinding(in, out, s)
} | [
-0.25520744919776917,
-0.22274062037467957,
0.3998491168022156,
-0.5879164338111877,
-0.11674181371927261,
0.77801913022995,
-0.15866445004940033,
-0.877622127532959,
1.2131673097610474,
0.6483842730522156,
0.6059303283691406,
0.24742254614830017,
0.42382368445396423,
-0.18188132345676422,... |
func Convert_v1beta1_ResourceSetBinding_To_v1alpha3_ResourceSetBinding(in *v1beta1.ResourceSetBinding, out *ResourceSetBinding, s conversion.Scope) error {
return autoConvert_v1beta1_ResourceSetBinding_To_v1alpha3_ResourceSetBinding(in, out, s)
} | [
-0.8985095024108887,
0.2764802873134613,
0.21527576446533203,
-0.22676658630371094,
-0.8273263573646545,
0.5614850521087646,
0.16249676048755646,
-1.3653448820114136,
0.4349896311759949,
0.791818380355835,
0.6779018640518188,
0.12304241210222244,
0.4912102222442627,
0.3631611764431,
0.07... |
func (a *Agi) WaitForDigit(wait int) (*Resp, int) {
resp := a.exec(WaitForDigit, strconv.Itoa(wait))
if resp.Err != nil {
return resp, -1
}
pattern := regexp.MustCompile("^\\d+\\s*result=(\\d+)")
groups := pattern.FindStringSubmatch(resp.Payload)
ascii, _ := strconv.Atoi(groups[1])
digit, _ := strconv.Atoi(st... | [
-0.8149465918540955,
-0.3646675646305084,
0.6015962362289429,
-1.1366585493087769,
-0.4461105763912201,
-0.9502493739128113,
0.5651881694793701,
-0.8697845339775085,
-0.585640549659729,
-0.4745638966560364,
-0.904140830039978,
-0.5716865062713623,
0.009483317844569683,
0.3861179053783417,
... |
func (a *Agi) SetPripority(pr string) *Resp {
return a.exec(SetPripority, pr)
} | [
-0.7269765734672546,
0.06943705677986145,
0.5923951268196106,
0.8103306293487549,
0.33981600403785706,
-0.37489596009254456,
-0.19346019625663757,
-0.4084872901439667,
0.7239744663238525,
-0.15227706730365753,
0.166052907705307,
0.06106548383831978,
-1.231337070465088,
-0.16371242702007294... |
func (a *Agi) SendText(text string) *Resp {
return a.exec(SendText, text)
} | [
0.11644376814365387,
0.5386102795600891,
0.3750264346599579,
0.8999598622322083,
-0.49333447217941284,
-0.530517041683197,
-0.2642458379268646,
-0.8820570111274719,
1.04517662525177,
0.7556524276733398,
0.14592589437961578,
-0.40458184480667114,
-1.295686960220337,
-0.7239995002746582,
-... |
func (a *Agi) DBDel(familiy, key string) *Resp {
return a.exec(DBDel, familiy, key)
} | [
-0.24069948494434357,
0.9275565147399902,
0.5583435297012329,
0.6912999749183655,
0.478902667760849,
-0.4390133023262024,
-1.0950062274932861,
-0.5859806537628174,
0.09360483288764954,
0.791900634765625,
0.7974511981010437,
-0.04802105948328972,
-0.7733194231987,
-0.203982874751091,
0.63... |
func (a *Agi) DBPut(family, key, val string) *Resp {
return a.exec(DBPut, family, key, val)
} | [
-0.45444339513778687,
0.9620618224143982,
0.2577875554561615,
0.05736018344759941,
-0.15362149477005005,
-0.5419929027557373,
-0.46772801876068115,
-0.738134503364563,
-0.35404181480407715,
0.42479339241981506,
0.43559345602989197,
-0.6361855864524841,
-0.855643630027771,
-0.64217078685760... |
func (a *Agi) DBGet(family, key string) (*Resp, string) {
return a.readVarFromResp(a.exec(DBGet, family, key))
} | [
-0.9933915138244629,
0.6745860576629639,
0.41199201345443726,
0.034609995782375336,
0.22481060028076172,
-0.9487983584403992,
-1.2012784481048584,
-1.0738922357559204,
-0.7301026582717896,
-0.011404391378164291,
0.5121520757675171,
-0.12471801042556763,
-1.200283408164978,
-0.4245090484619... |
func NewCreateRouteRequest(destinationIpRange string, routeTableId string) *CreateRouteRequest {
this := CreateRouteRequest{}
this.DestinationIpRange = destinationIpRange
this.RouteTableId = routeTableId
return &this
} | [
-0.9395447969436646,
-0.4937443733215332,
0.562325656414032,
0.6974279880523682,
-0.1981360912322998,
-0.014658031985163689,
0.12249846011400223,
-0.005136714316904545,
-0.7952659130096436,
0.15605291724205017,
-0.19880008697509766,
0.37734293937683105,
0.10088535398244858,
0.4918784201145... |
func NewCreateRouteRequestWithDefaults() *CreateRouteRequest {
this := CreateRouteRequest{}
return &this
} | [
-0.5584299564361572,
-0.35977235436439514,
0.22491498291492462,
0.5653648972511292,
0.9127328991889954,
-0.009739822708070278,
-0.1453166902065277,
-0.5752227902412415,
-0.4770360589027405,
-0.6367443203926086,
-0.6636986136436462,
-0.8943451046943665,
-0.3674475848674774,
1.31159555912017... |
func (o *CreateRouteRequest) GetDestinationIpRange() string {
if o == nil {
var ret string
return ret
}
return o.DestinationIpRange
} | [
-1.5475867986679077,
0.3966306149959564,
-0.06351679563522339,
0.2790084779262543,
-0.14037202298641205,
0.7879038453102112,
0.19809596240520477,
-0.1771146059036255,
-0.6980504393577576,
-0.34370332956314087,
0.19641393423080444,
-1.5672976970672607,
0.019241342321038246,
-0.6231934428215... |
func (o *CreateRouteRequest) GetDestinationIpRangeOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.DestinationIpRange, true
} | [
-2.144320487976074,
1.0339208841323853,
0.43470463156700134,
0.2316066175699234,
0.403257817029953,
0.07448437809944153,
0.5589498281478882,
0.7444984912872314,
-0.662775456905365,
0.5005729794502258,
-0.477235347032547,
-1.4517420530319214,
0.9472909569740295,
-0.5876981019973755,
-0.80... |
func (o *CreateRouteRequest) SetDestinationIpRange(v string) {
o.DestinationIpRange = v
} | [
-1.7957918643951416,
-0.14985737204551697,
-0.10264687240123749,
-0.5973625779151917,
-0.6624408960342407,
0.6003574132919312,
0.050136592239141464,
-0.13396625220775604,
-1.1192193031311035,
0.2506606876850128,
-0.2070009708404541,
-0.8675101399421692,
0.3897029161453247,
-0.5797114372253... |
func (o *CreateRouteRequest) GetDryRun() bool {
if o == nil || o.DryRun == nil {
var ret bool
return ret
}
return *o.DryRun
} | [
-0.8068931698799133,
0.4214492440223694,
0.48747944831848145,
0.1278078705072403,
-0.22684939205646515,
0.7762166261672974,
0.6131464242935181,
0.12027399986982346,
-0.19604243338108063,
-0.8465784788131714,
-0.5885657072067261,
-0.7213308215141296,
-1.1343024969100952,
0.7026292085647583,... |
func (o *CreateRouteRequest) GetDryRunOk() (*bool, bool) {
if o == nil || o.DryRun == nil {
return nil, false
}
return o.DryRun, true
} | [
-0.6311237215995789,
0.2213219404220581,
0.7107334136962891,
-0.05513220280408859,
0.05236823856830597,
1.0530372858047485,
0.5609659552574158,
1.0460354089736938,
-0.7202524542808533,
0.12406697124242783,
-1.0961809158325195,
-0.1271165907382965,
0.3538917303085327,
0.5142243504524231,
... |
func (o *CreateRouteRequest) HasDryRun() bool {
if o != nil && o.DryRun != nil {
return true
}
return false
} | [
-0.4223267734050751,
0.39610955119132996,
0.08537126332521439,
-0.5075615644454956,
0.7420169711112976,
0.06187206506729126,
0.01433546096086502,
0.6234458088874817,
-0.8765690326690674,
-1.3003818988800049,
-0.9832941889762878,
-0.7797085046768188,
-0.23599857091903687,
1.1489923000335693... |
func (o *CreateRouteRequest) SetDryRun(v bool) {
o.DryRun = &v
} | [
-0.5531110167503357,
0.5706403255462646,
0.12980172038078308,
-0.43667033314704895,
-0.226446270942688,
0.675643801689148,
0.18998154997825623,
-0.35783350467681885,
-0.9443215131759644,
-0.17701636254787445,
-0.7753258347511292,
0.31937265396118164,
-0.31034231185913086,
0.506265282630920... |
func (o *CreateRouteRequest) GetGatewayId() string {
if o == nil || o.GatewayId == nil {
var ret string
return ret
}
return *o.GatewayId
} | [
1.3384124040603638,
-0.11338324844837189,
0.21636947989463806,
0.8191214203834534,
-0.1640027016401291,
0.3046180307865143,
0.3939378261566162,
-0.4738450348377228,
1.4878801107406616,
0.15252651274204254,
0.1338471919298172,
-0.5106098651885986,
-1.1193805932998657,
1.7285956144332886,
... |
func (o *CreateRouteRequest) GetGatewayIdOk() (*string, bool) {
if o == nil || o.GatewayId == nil {
return nil, false
}
return o.GatewayId, true
} | [
0.9338151216506958,
-0.11195080727338791,
0.3038109838962555,
0.5909373164176941,
0.5209177732467651,
0.6463127732276917,
0.7502731680870056,
0.2988545000553131,
0.25395467877388,
0.4473470151424408,
-0.7198622822761536,
-0.18986494839191437,
-0.8476579189300537,
1.3372740745544434,
-1.0... |
func (o *CreateRouteRequest) HasGatewayId() bool {
if o != nil && o.GatewayId != nil {
return true
}
return false
} | [
1.5612027645111084,
-0.1338024139404297,
0.06201939657330513,
0.1124345064163208,
0.06573081761598587,
-0.3216214179992676,
-0.3273899257183075,
0.4030299484729767,
0.6806828379631042,
0.04878402128815651,
-0.11518684774637222,
-0.27105215191841125,
-0.39891451597213745,
1.7104800939559937... |
func (o *CreateRouteRequest) SetGatewayId(v string) {
o.GatewayId = &v
} | [
1.5284050703048706,
-0.20877303183078766,
-0.28851577639579773,
-0.052235256880521774,
-0.9433520436286926,
0.3871707320213318,
-0.4265199899673462,
-0.7188208699226379,
0.3684982657432556,
0.6091200113296509,
0.15071386098861694,
1.013570785522461,
-0.7423545718193054,
0.9782397747039795,... |
func (o *CreateRouteRequest) GetNatServiceId() string {
if o == nil || o.NatServiceId == nil {
var ret string
return ret
}
return *o.NatServiceId
} | [
0.09806479513645172,
-0.20894551277160645,
0.09291744232177734,
0.0323997363448143,
-0.2068655639886856,
0.4922913908958435,
-0.753886878490448,
-1.0232517719268799,
0.08227959275245667,
-0.45572662353515625,
0.22792001068592072,
-0.12091421335935593,
-0.4234636723995209,
1.430765390396118... |
func (o *CreateRouteRequest) GetNatServiceIdOk() (*string, bool) {
if o == nil || o.NatServiceId == nil {
return nil, false
}
return o.NatServiceId, true
} | [
-0.45679304003715515,
0.7771734595298767,
0.497663289308548,
0.05142875015735626,
0.6279873847961426,
0.8384423851966858,
-0.13038139045238495,
-0.14490146934986115,
-0.539539635181427,
-0.5829817056655884,
-0.35838407278060913,
-0.09948426485061646,
0.6165405511856079,
1.2033733129501343,... |
func (o *CreateRouteRequest) HasNatServiceId() bool {
if o != nil && o.NatServiceId != nil {
return true
}
return false
} | [
0.055282726883888245,
0.22391337156295776,
-0.012900905683636665,
-0.6289503574371338,
-0.1881130039691925,
0.18022309243679047,
-1.1359243392944336,
-0.5647237300872803,
-0.3504652678966522,
-0.24360089004039764,
0.07724162936210632,
0.25350573658943176,
0.2105150818824768,
2.006669044494... |
func (o *CreateRouteRequest) SetNatServiceId(v string) {
o.NatServiceId = &v
} | [
0.04555664584040642,
-0.41865071654319763,
-0.19710907340049744,
-0.8572245240211487,
-0.8896106481552124,
0.6884551644325256,
-1.0092086791992188,
-0.8552958965301514,
-0.2864648103713989,
0.37066876888275146,
0.3473438620567322,
1.1975096464157104,
-0.09816295653581619,
0.977925181388855... |
func (o *CreateRouteRequest) GetNetPeeringId() string {
if o == nil || o.NetPeeringId == nil {
var ret string
return ret
}
return *o.NetPeeringId
} | [
0.21381348371505737,
0.4168774485588074,
0.04279719293117523,
0.5192682147026062,
-0.4728536903858185,
0.8871371746063232,
-0.6034968495368958,
-0.5924204587936401,
0.6143932342529297,
0.4228365123271942,
-0.7002203464508057,
-1.80031156539917,
-0.835821807384491,
0.8837670087814331,
0.0... |
func (o *CreateRouteRequest) GetNetPeeringIdOk() (*string, bool) {
if o == nil || o.NetPeeringId == nil {
return nil, false
}
return o.NetPeeringId, true
} | [
-0.6699630618095398,
0.7623406052589417,
0.32289808988571167,
0.2465285211801529,
0.17822541296482086,
0.9566620588302612,
-0.13928833603858948,
-0.01102062314748764,
-0.010801487602293491,
0.8740514516830444,
-1.0827829837799072,
-1.2663885354995728,
-0.4550543427467346,
0.938400506973266... |
func (o *CreateRouteRequest) HasNetPeeringId() bool {
if o != nil && o.NetPeeringId != nil {
return true
}
return false
} | [
-0.19853749871253967,
0.5978972315788269,
0.46748024225234985,
-0.33227047324180603,
0.37312546372413635,
-0.03828514367341995,
-0.6119080781936646,
0.1639326959848404,
-0.6234972476959229,
0.9512326717376709,
-0.5878337621688843,
-1.1079155206680298,
-0.2555272877216339,
0.992236852645874... |
func (o *CreateRouteRequest) SetNetPeeringId(v string) {
o.NetPeeringId = &v
} | [
-0.07208026945590973,
0.14691419899463654,
-0.08115570992231369,
-0.5206204056739807,
-1.5381138324737549,
0.7223724722862244,
-0.8658684492111206,
-0.5821753144264221,
-0.15643048286437988,
1.0360766649246216,
-0.2965552508831024,
-0.4367886483669281,
-0.645434558391571,
0.316578894853591... |
func (o *CreateRouteRequest) GetNicId() string {
if o == nil || o.NicId == nil {
var ret string
return ret
}
return *o.NicId
} | [
0.908689558506012,
0.2117982804775238,
0.21317870914936066,
0.9675909280776978,
0.29673051834106445,
-0.05588741973042488,
0.3899582624435425,
-0.7252138257026672,
0.6302824020385742,
0.1655062884092331,
-0.2947029173374176,
-1.5304996967315674,
-0.7012773156166077,
0.0873606875538826,
0... |
func (o *CreateRouteRequest) GetNicIdOk() (*string, bool) {
if o == nil || o.NicId == nil {
return nil, false
}
return o.NicId, true
} | [
0.05541779100894928,
0.16626635193824768,
0.21863117814064026,
0.9775717258453369,
0.968062698841095,
0.1386781632900238,
0.5716756582260132,
0.06711440533399582,
-0.00819210521876812,
0.24182452261447906,
-1.2185767889022827,
-0.9272347092628479,
-0.6843439340591431,
0.18946348130702972,
... |
func (o *CreateRouteRequest) HasNicId() bool {
if o != nil && o.NicId != nil {
return true
}
return false
} | [
1.2945575714111328,
-0.0726000964641571,
-0.07098476588726044,
0.32721978425979614,
0.6136326789855957,
0.12353548407554626,
-0.014370029792189598,
0.03237943351268768,
-0.026770152151584625,
0.409367173910141,
-0.031244242563843727,
-0.8990626931190491,
-0.6966674327850342,
0.011702227406... |
func (o *CreateRouteRequest) SetNicId(v string) {
o.NicId = &v
} | [
1.1375501155853271,
-0.3332946300506592,
-0.13977502286434174,
0.043561942875385284,
-0.482276976108551,
0.012520343996584415,
-0.43860378861427307,
-1.0389509201049805,
-0.12493155896663666,
0.6903097629547119,
-0.23454171419143677,
0.36175382137298584,
-0.23532512784004211,
-0.5508743524... |
func (o *CreateRouteRequest) GetRouteTableId() string {
if o == nil {
var ret string
return ret
}
return o.RouteTableId
} | [
0.4710938632488251,
0.09131703525781631,
0.39671194553375244,
0.6256682872772217,
0.2790767550468445,
1.0763790607452393,
0.7735211849212646,
-0.06321357935667038,
0.2932300269603729,
0.3649347126483917,
-0.5189875960350037,
-0.13865521550178528,
-0.676531195640564,
0.0695563480257988,
-... |
func (o *CreateRouteRequest) GetRouteTableIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.RouteTableId, true
} | [
-0.16905146837234497,
0.935593843460083,
0.8055819272994995,
0.7242540717124939,
0.7351969480514526,
0.5999264121055603,
0.6195157766342163,
0.5434592962265015,
-0.33388572931289673,
0.3407880663871765,
-1.442602515220642,
-1.015201210975647,
-0.1423577070236206,
0.6047889590263367,
-0.7... |
func (o *CreateRouteRequest) SetRouteTableId(v string) {
o.RouteTableId = v
} | [
-0.035050198435783386,
-0.13732768595218658,
-0.03057827800512314,
0.11766474694013596,
-0.4111144244670868,
0.6236552596092224,
0.6693770885467529,
-0.3758171796798706,
-0.2827146649360657,
1.1221694946289062,
-0.6429769396781921,
0.3663528561592102,
-0.6417247653007507,
0.625201940536499... |
func (o *CreateRouteRequest) GetVmId() string {
if o == nil || o.VmId == nil {
var ret string
return ret
}
return *o.VmId
} | [
0.8054584860801697,
-0.4398663341999054,
0.009389251470565796,
1.0336008071899414,
0.17343337833881378,
0.7649340629577637,
-0.27264630794525146,
-0.3875829577445984,
1.4646492004394531,
0.1927165538072586,
0.7236300110816956,
-0.7441163063049316,
-1.168660283088684,
0.5489556193351746,
... |
func (o *CreateRouteRequest) GetVmIdOk() (*string, bool) {
if o == nil || o.VmId == nil {
return nil, false
}
return o.VmId, true
} | [
0.11626429855823517,
0.2926155626773834,
0.2210869938135147,
0.6808094382286072,
0.42345771193504333,
0.6099564433097839,
-0.07959283143281937,
0.7656565308570862,
0.5941967368125916,
0.23013947904109955,
-0.3473617434501648,
-0.2756905257701874,
-0.5054042339324951,
0.6083656549453735,
... |
func (o *CreateRouteRequest) HasVmId() bool {
if o != nil && o.VmId != nil {
return true
}
return false
} | [
1.0899492502212524,
-0.22177059948444366,
-0.07968419790267944,
0.3492732048034668,
0.7905465960502625,
-0.004888946656137705,
-0.9560878276824951,
0.5271225571632385,
0.7680508494377136,
0.4044339656829834,
0.00258614681661129,
-0.4749387204647064,
-0.8795178532600403,
0.5146679878234863,... |
func (o *CreateRouteRequest) SetVmId(v string) {
o.VmId = &v
} | [
0.7409757375717163,
-0.6665039658546448,
-0.19361232221126556,
0.06850589066743851,
-0.30674874782562256,
0.6717413663864136,
-1.3309284448623657,
-0.6830403804779053,
0.9581010937690735,
0.7880141735076904,
0.6969867944717407,
1.0459798574447632,
-0.8871904611587524,
-0.18506012856960297,... |
func NewSubPool() *SubPool {
return &SubPool{
Subscribers: make([]*Subscriber, 0),
Register: make(chan *Subscriber),
Broadcast: make(chan Message),
StopChan: make(chan struct{}),
}
} | [
0.13773009181022644,
-0.3404306173324585,
0.3813520073890686,
0.3758558928966522,
-0.5730540752410889,
-0.41063910722732544,
0.2306462973356247,
-0.6653478145599365,
-0.02730773761868477,
-0.1496250331401825,
-0.8030557632446289,
1.081087589263916,
-0.4020780324935913,
0.18072867393493652,... |
func (pool *SubPool) Start() {
for {
select {
case sub := <-pool.Register:
log.Printf("Registering subscriber %v to pool", sub.ID)
pool.Subscribers = append(pool.Subscribers, sub)
log.Printf("Successfully registered subscriber %v to pool", sub.ID)
case message := <-pool.Broadcast:
log.Printf("Broadca... | [
-0.34191012382507324,
-0.5971167683601379,
0.5177208185195923,
-0.13902059197425842,
0.6467264890670776,
0.05350887030363083,
0.5006584525108337,
-0.1874823123216629,
-1.0706909894943237,
0.1027475968003273,
-0.2538113296031952,
1.6978890895843506,
-0.18153046071529388,
0.7792856097221375,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.