text
stringlengths
11
6.3k
embedding
listlengths
768
768
func (pv *Providers) GetProvider(name provider.Name) (Provider, error) { pv.mu.RLock() defer pv.mu.RUnlock() // properly (in case internalProvider is Unknown) if name == provider.Unknown { return nil, errors.New("invalid provider") } if !name.IsExternal() { err := fmt.Errorf("invalid provider: %s", name) re...
[ -0.872864305973053, -0.15734383463859558, 0.5946224927902222, 0.31345847249031067, -0.6957502365112305, -0.13441939651966095, -0.6350663304328918, -0.2017827332019806, 0.6359477043151855, 0.23821164667606354, 0.6913114190101624, 0.1996392011642456, -0.9249047636985779, -0.06399752199649811...
func (pv *Providers) IsEnabled(name provider.Name) error { if pv.isInternal(name) { return nil } _, err := pv.GetProvider(name) return err }
[ -0.6602148413658142, 0.13027048110961914, 0.5139983892440796, 0.38341617584228516, -0.4305579364299774, -0.7779539227485657, -1.065970540046692, 0.43689075112342834, 1.5790784358978271, 1.1105469465255737, -1.1127985715866089, 0.4122786223888397, -0.7495498657226562, 0.09259488433599472, ...
func Reader(charset string, input io.Reader) (io.Reader, error) { charset = strings.ToLower(charset) // "ascii" is not in the spec but is common if charset == "utf-8" || charset == "us-ascii" || charset == "ascii" { return input, nil } if enc, ok := charsets[charset]; ok { return enc.NewDecoder().Reader(input)...
[ -0.0207644235342741, -0.48723429441452026, 0.21647027134895325, -0.5425708889961243, -1.1312543153762817, 0.1262880563735962, -0.22034050524234772, -0.7338870763778687, 0.230330228805542, -0.8090346455574036, 0.8404212594032288, 0.7617565989494324, 0.04698749631643295, -0.11356843262910843...
func RegisterEncoding(name string, enc encoding.Encoding) { charsets[name] = enc }
[ -0.4792337119579315, 0.6431037783622742, 0.22783403098583221, 0.07484468817710876, -0.24754150211811066, -0.6295673847198486, -0.7915993928909302, 0.07121815532445908, -0.3448648452758789, 0.35497042536735535, -1.7291011810302734, -0.16562680900096893, 0.2729734480381012, -0.03627046570181...
func (t *IndexedTerms) NormalizeDataField(fieldName string) string { segments := strings.Split(fieldName, ".") if len(segments) < 2 { return fieldName } return segments[1] }
[ -0.043336208909749985, 0.44565320014953613, 0.5102071762084961, -0.841418445110321, -0.36162832379341125, 0.15955345332622528, 0.18889592587947845, 0.33189889788627625, 0.23366647958755493, 0.02468211017549038, -0.12674784660339355, 0.20879067480564117, -0.6834554076194763, -0.954190373420...
func (f *clientFactory) NewDNSClient(region, accessKeyID, accessKeySecret string) (DNS, error) { client, err := alidns.NewClientWithAccessKey(region, accessKeyID, accessKeySecret) if err != nil { return nil, err } return &dnsClient{ Client: *client, accessKeyID: accessKeyID, doma...
[ 0.5227854251861572, 0.13910627365112305, 0.2114751935005188, 0.030898649245500565, -1.029515266418457, -0.7077350616455078, -0.7792477011680603, -0.8684256076812744, 0.7393844723701477, -0.3061710000038147, -0.22354647517204285, 1.0552539825439453, 0.8634026646614075, -0.5565424561500549, ...
func (d *dnsClient) GetDomainNames(ctx context.Context) (map[string]string, error) { domains, err := d.getDomainsWithCache(ctx) if err != nil { return nil, err } domainNames := make(map[string]string) for _, domain := range domains { domainNames[domain.DomainName] = CompositeDomainName(domain.DomainName, domai...
[ -1.2093825340270996, 0.7680266499519348, 0.3912414312362671, 0.2578376531600952, -0.01876097545027733, -0.10169001668691635, -0.9038145542144775, -0.5759583711624146, 0.6919050812721252, -0.09949281811714172, -0.8432662487030029, 0.6996376514434814, 0.1786416620016098, 0.9878332614898682, ...
func (d *dnsClient) GetDomainName(ctx context.Context, domainId string) (string, error) { domains, err := d.getDomainsWithCache(ctx) if err != nil { return "", err } domain, ok := domains[domainId] if !ok { return "", fmt.Errorf("DNS domain with id %s not found", domainId) } return CompositeDomainName(domain...
[ -0.7725424766540527, 0.7173449397087097, 0.48532599210739136, 0.13896560668945312, -0.43997910618782043, -0.6883008480072021, -0.4720005989074707, -0.5241360068321228, 0.9967092275619507, 0.3264347016811371, -0.15398424863815308, 0.7240135073661804, 0.31401869654655457, 1.0513216257095337,...
func (d *dnsClient) CreateOrUpdateDomainRecords(ctx context.Context, domainName, name, recordType string, values []string, ttl int64) error { domainName, _ = DomainNameAndId(domainName) rr, err := getRR(name, domainName) if err != nil { return err } records, err := d.getDomainRecords(ctx, domainName, rr, recordT...
[ -0.3132021427154541, 0.08616454899311066, 0.6710004806518555, 0.07664541900157928, 0.5273731350898743, -0.057753562927246094, -0.4574029743671417, -0.3715435564517975, 0.36182403564453125, 0.7482891082763672, 0.16334640979766846, -0.3765554428100586, -0.07848585397005081, 1.127613306045532...
func (d *dnsClient) DeleteDomainRecords(ctx context.Context, domainName, name, recordType string) error { domainName, _ = DomainNameAndId(domainName) rr, err := getRR(name, domainName) if err != nil { return err } records, err := d.getDomainRecords(ctx, domainName, rr, recordType) if err != nil { return err ...
[ -0.13375446200370789, -0.2401599884033203, 0.47862425446510315, 0.6117354035377502, 0.42777979373931885, -0.3282563388347626, 0.1163887158036232, -0.4292031526565552, 0.4524969160556793, 0.16180793941020966, -0.11833629757165909, 0.7163748145103455, -1.1998859643936157, 0.9521118402481079,...
func (d *dnsClient) getDomains(ctx context.Context) (map[string]alidns.Domain, error) { if err := d.waitForAliDNSRateLimiter(ctx); err != nil { return nil, err } domains := make(map[string]alidns.Domain) pageSize, pageNumber := 20, 1 req := alidns.CreateDescribeDomainsRequest() req.PageSize = requests.NewInteg...
[ -0.32495662569999695, 1.2898200750350952, 0.38397008180618286, -0.7743977308273315, 0.6952396631240845, -0.3060537874698639, -0.6353448629379272, -0.8137149810791016, 0.951857328414917, -0.9380106925964355, -0.33472883701324463, 1.213926911354065, -0.1617666333913803, 1.0340676307678223, ...
func (d *dnsClient) getDomainRecords(ctx context.Context, domainName, rr, recordType string) (map[string]alidns.Record, error) { if err := d.waitForAliDNSRateLimiter(ctx); err != nil { return nil, err } records := make(map[string]alidns.Record) pageSize, pageNumber := 20, 1 req := alidns.CreateDescribeDomainRec...
[ -0.3742142617702484, 1.0726982355117798, 0.7927111387252808, 0.0006195963360369205, 0.26213204860687256, -0.1333651840686798, -0.7959720492362976, -0.5204284191131592, -0.17047050595283508, -0.04117835313081741, 0.06650243699550629, 1.355263590812683, -1.109684944152832, 0.6170470118522644...
func CompositeDomainName(domainName, domainId string) string { if domainId != "" { return domainName + ":" + domainId } return domainName }
[ -0.6181367039680481, -0.3727252185344696, 0.4625418186187744, -0.1689314991235733, 0.11937229335308075, 0.9277389645576477, -0.7102500200271606, 0.33283308148384094, 0.5109996199607849, 0.7201787233352661, 0.2838321626186371, 0.8311789035797119, 0.07114917039871216, 0.503269612789154, -0...
func DomainNameAndId(compositeDomainName string) (string, string) { if parts := strings.Split(compositeDomainName, ":"); len(parts) == 2 { return parts[0], parts[1] } return compositeDomainName, "" }
[ -0.18783167004585266, -0.8547233939170837, 0.6376549005508423, -0.5758104920387268, -0.0976325124502182, 0.44472432136535645, -0.6178247332572937, 0.6620444655418396, 0.5371434092521667, 0.5380092859268188, -0.2302365005016327, 0.2757427394390106, -0.4488510489463806, 0.30468398332595825, ...
func (s PackageDescriptor) String() string { sm := make(sortedMap, 0, len(s)) for k, v := range s { sm = append(sm, mapValue{key: k, value: v}) } sort.Sort(sm) var str string for _, v := range sm { str += fmt.Sprintf("%s:%v ", v.key, v.value) } return strings.TrimSpace(str) }
[ 0.3204011619091034, -1.0817745923995972, 0.4473317265510559, -0.8142462968826294, -0.7709015607833862, 0.5177825093269348, 0.05096440389752388, -0.2169407159090042, -0.440080851316452, 0.3041404187679291, 0.43668806552886963, 0.5119614601135254, 1.1311489343643188, 0.21981272101402283, -...
func (tr Row) Str(nn int) (str string) { switch data := tr[nn].(type) { case nil: // str = "" case []byte: str = string(data) case time.Time: str = TimeString(data) case time.Duration: str = DurationString(data) default: str = fmt.Sprint(data) } return }
[ -0.1538369506597519, 0.43669548630714417, 0.3019522428512573, 0.004303910303860903, -0.36935803294181824, -0.25804322957992554, -0.6011587381362915, -1.0882399082183838, 0.07014435529708862, 0.31032463908195496, 0.3615613579750061, -0.20526756346225739, 0.058496568351984024, 0.612891614437...
func (tr Row) IntErr(nn int) (val int, err error) { switch data := tr[nn].(type) { case nil: // nop case int32: val = int(data) case int16: val = int(data) case uint16: val = int(data) case int8: val = int(data) case uint8: val = int(data) case []byte: val, err = strconv.Atoi(string(data)) case i...
[ -0.4281069040298462, 0.08908703923225403, 0.8193923830986023, -0.5364672541618347, -0.6615225672721863, -0.5209453105926514, -0.16230633854866028, -0.43740323185920715, -0.3979248106479645, -0.44047850370407104, 0.5410081148147583, -0.2244209200143814, -0.34809327125549316, 0.2252485901117...
func (tr Row) Int(nn int) (val int) { val, err := tr.IntErr(nn) if err != nil { panic(err) } return }
[ 0.32979118824005127, 0.9715601205825806, 0.25861895084381104, -0.39042508602142334, -0.22346167266368866, -0.07998832315206528, -0.00926890503615141, -0.9517581462860107, -0.8302918672561646, 0.14579874277114868, -0.2676360011100769, -0.8942920565605164, 0.16693992912769318, 0.139123767614...
func (tr Row) ForceInt(nn int) (val int) { val, _ = tr.IntErr(nn) return }
[ -0.4082004427909851, 0.8999958634376526, 0.21371811628341675, -0.3245331346988678, 0.1545720249414444, -0.41007348895072937, -0.11464138329029083, -1.319722056388855, -0.7174621820449829, -0.33774334192276, -0.5970891714096069, -0.9472272396087646, -0.7844564318656921, 0.3269904553890228, ...
func (tr Row) UintErr(nn int) (val uint, err error) { switch data := tr[nn].(type) { case nil: // nop case uint32: val = uint(data) case uint16: val = uint(data) case uint8: val = uint(data) case []byte: var v uint64 v, err = strconv.ParseUint(string(data), 0, 0) val = uint(v) case uint64: if dat...
[ -1.0067193508148193, -0.1167958602309227, 0.7401307821273804, -0.4343322217464447, -0.23411211371421814, -0.19739675521850586, 0.05153053626418114, -0.037798114120960236, 0.15943098068237305, -0.6588901877403259, 0.5633739829063416, -0.02146170660853386, -0.621658444404602, -0.002553995000...
func (tr Row) Uint(nn int) (val uint) { val, err := tr.UintErr(nn) if err != nil { panic(err) } return }
[ -0.6081562042236328, 0.4419727921485901, 0.3432568311691284, -0.8139721751213074, -0.21794575452804565, 0.009486168622970581, -0.13738887012004852, -0.6258130669593811, 0.027859516441822052, -0.6370738744735718, -0.13755415380001068, -0.21085728704929352, 0.32469138503074646, -0.1560323834...
func (tr Row) ForceUint(nn int) (val uint) { val, _ = tr.UintErr(nn) return }
[ -1.1282449960708618, 0.5572329163551331, 0.19347910583019257, -0.7488929033279419, 0.43744567036628723, -0.09846565127372742, -0.44144412875175476, -0.568744421005249, 0.05835588276386261, -0.9440532326698303, -0.8441992402076721, 0.04495757818222046, -0.23966217041015625, -0.0625940486788...
func (tr Row) DateErr(nn int) (val Date, err error) { switch data := tr[nn].(type) { case nil: // nop case Date: val = data case []byte: val, err = ParseDate(string(data)) } return }
[ -0.2742927670478821, 0.40072140097618103, 0.4010394215583801, 0.18628118932247162, -0.777168333530426, 0.01867065764963627, -1.080824375152588, -0.32415494322776794, 0.2901014983654022, -0.19173605740070343, -0.03275557979941368, -0.670193612575531, -0.1907331943511963, 0.6454281806945801,...
func (tr Row) Date(nn int) (val Date) { val, err := tr.DateErr(nn) if err != nil { panic(err) } return }
[ 0.5122621059417725, 0.8388445377349854, 0.2306038737297058, 0.4877440333366394, -0.4393058717250824, 0.2832484245300293, -0.5551480054855347, -1.139959454536438, 0.14912870526313782, -0.6502047777175903, -0.2628307342529297, -0.7749865055084229, -0.05874555557966232, 0.685764491558075, 0...
func (tr Row) ForceDate(nn int) (val Date) { val, _ = tr.DateErr(nn) return }
[ -0.10728102922439575, 1.1346317529678345, 0.19170135259628296, 0.19909535348415375, -0.2585166096687317, 0.3010821044445038, -0.7062799334526062, -0.921272337436676, 0.44256213307380676, -0.8181953430175781, -0.5074686408042908, -0.40770816802978516, -0.7472673058509827, 0.8988096117973328...
func (tr Row) TimeErr(nn int, loc *time.Location) (t time.Time, err error) { switch data := tr[nn].(type) { case nil: // nop case time.Time: if loc == time.Local { t = data } else { y, mon, d := data.Date() h, m, s := data.Clock() t = time.Date(y, mon, d, h, m, s, t.Nanosecond(), loc) } case Dat...
[ -0.26761239767074585, 0.08801105618476868, 0.516583263874054, -0.4560548663139343, -0.40046438574790955, -0.5572428703308105, -0.5460910201072693, -0.05694246664643288, 0.21061314642429352, 0.9244892001152039, -0.04320041835308075, -0.8279946446418762, 0.18111035227775574, 0.58436024188995...
func (tr Row) Time(nn int, loc *time.Location) (val time.Time) { val, err := tr.TimeErr(nn, loc) if err != nil { panic(err) } return }
[ -0.06542197614908218, 0.5361766219139099, 0.20941512286663055, -0.16021786630153656, 0.19241400063037872, -0.3026050627231598, -0.40856513381004333, -0.5676034092903137, 0.2338278591632843, 0.7368196249008179, -0.32332319021224976, -1.1935673952102661, 0.429016649723053, 0.3368096947669983...
func (tr Row) ForceTime(nn int, loc *time.Location) (val time.Time) { val, _ = tr.TimeErr(nn, loc) return }
[ -0.5327433943748474, 0.792269766330719, 0.18401522934436798, -0.2585625946521759, 0.7701854705810547, -0.07934590429067612, -0.6749852895736694, -0.3070254623889923, 0.24024471640586853, 0.9990699291229248, -0.21935459971427917, -0.8474700450897217, -0.3899564743041992, 0.47719261050224304...
func (tr Row) LocaltimeErr(nn int) (t time.Time, err error) { switch data := tr[nn].(type) { case nil: // nop case time.Time: t = data case Date: t = data.Time(time.Local) case []byte: t, err = ParseTime(string(data), time.Local) } return }
[ -0.19255952537059784, -0.09148234874010086, 0.2705981433391571, -0.48697274923324585, -0.6347274780273438, -0.7711164951324463, -1.0249425172805786, 0.13260503113269806, 0.19040098786354065, 1.2297683954238892, 0.06781502068042755, -0.8764312267303467, -0.12588246166706085, 0.7949745655059...
func (tr Row) Localtime(nn int) (val time.Time) { val, err := tr.LocaltimeErr(nn) if err != nil { panic(err) } return }
[ 0.2870563566684723, 0.862168550491333, 0.14604264497756958, 0.07394782453775406, -0.3592180907726288, -0.48666912317276, -0.22815276682376862, -0.7559348344802856, 0.49156975746154785, 0.8702265024185181, -0.14909081161022186, -1.411078691482544, -0.413457989692688, 0.4301571547985077, -...
func (tr Row) ForceLocaltime(nn int) (val time.Time) { val, _ = tr.LocaltimeErr(nn) return }
[ -0.028359197080135345, 0.7263281345367432, -0.013041336089372635, -0.10989902168512344, 0.04221770539879799, -0.03713265061378479, -0.6100575923919678, -0.2762889266014099, 0.42656928300857544, 0.4230996072292328, -0.34956008195877075, -0.7819856405258179, -0.29096564650535583, 1.349841237...
func (tr Row) DurationErr(nn int) (val time.Duration, err error) { switch data := tr[nn].(type) { case nil: case time.Duration: val = data case []byte: val, err = ParseDuration(string(data)) default: err = fmt.Errorf("Can't convert `%v` to time.Duration", data) } return }
[ -0.14749321341514587, -0.08683406561613083, 0.17251147329807281, 0.4320742189884186, -0.2546405792236328, -0.44575026631355286, -0.4967414140701294, -0.14013610780239105, 0.4474748969078064, 0.8973844647407532, 0.2920037806034088, -0.8138951659202576, 0.32874795794487, 0.6259061694145203, ...
func (tr Row) Duration(nn int) (val time.Duration) { val, err := tr.DurationErr(nn) if err != nil { panic(err) } return }
[ -0.10079716145992279, 0.7775830030441284, -0.006570551078766584, 0.6301784515380859, 0.346993088722229, -0.12399446219205856, 0.3941754400730133, -0.983015239238739, 0.6051675081253052, 0.5551010966300964, -0.1265246719121933, -0.6262804865837097, 0.5016378164291382, 0.5723862648010254, ...
func (tr Row) ForceDuration(nn int) (val time.Duration) { val, _ = tr.DurationErr(nn) return }
[ -0.5391261577606201, 1.0189955234527588, -0.0673941895365715, 0.5615231394767761, 0.1649421900510788, -0.04380684718489647, 0.30121034383773804, -0.9822928309440613, 0.3715921640396118, 0.08716500550508499, -0.7344183921813965, -0.6195279955863953, 0.12922056019306183, 1.3782505989074707, ...
func (tr Row) BoolErr(nn int) (val bool, err error) { switch data := tr[nn].(type) { case nil: // nop case int8: val = (data != 0) case int32: val = (data != 0) case int16: val = (data != 0) case int64: val = (data != 0) case uint8: val = (data != 0) case uint32: val = (data != 0) case uint16: ...
[ -0.3443118631839752, -0.6496789455413818, 0.8956447243690491, -0.7099100947380066, -0.8120453357696533, -0.24800698459148407, -0.5144193172454834, -0.1930294781923294, -0.5004683136940002, 0.3470980226993561, 0.25425466895103455, -0.550075352191925, -0.34375548362731934, 0.7395547032356262...
func (tr Row) Bool(nn int) (val bool) { val, err := tr.BoolErr(nn) if err != nil { panic(err) } return }
[ 0.25568148493766785, 0.8974674940109253, 0.2859208285808563, 0.04590336233377457, -0.023805124685168266, 0.577903151512146, 0.07189539074897766, -0.2808237671852112, -0.34608784317970276, 0.29428330063819885, -0.6038612127304077, -0.7693166732788086, 0.46611979603767395, -0.231916233897209...
func (tr Row) ForceBool(nn int) (val bool) { val, _ = tr.BoolErr(nn) return }
[ -0.602127194404602, 1.0920497179031372, 0.32066377997398376, 0.31713902950286865, 0.694778323173523, 0.4368288218975067, -0.30352166295051575, -0.6703025102615356, -0.7434276342391968, 0.03591987490653992, -0.9869464635848999, -0.5890907049179077, -0.04934704676270485, 0.46194905042648315,...
func (tr Row) Int64Err(nn int) (val int64, err error) { switch data := tr[nn].(type) { case nil: // nop case int64, int32, int16, int8: val = reflect.ValueOf(data).Int() case uint64, uint32, uint16, uint8: u := reflect.ValueOf(data).Uint() if u > math.MaxInt64 { err = strconv.ErrRange } else { val =...
[ -1.1910139322280884, -0.3352888226509094, 0.24100831151008606, -0.18810328841209412, -0.4879264533519745, -0.4499639868736267, -0.6642950177192688, 0.10943575948476791, 0.029883304610848427, 0.43862324953079224, 0.5182780027389526, -0.6127909421920776, -0.4249882400035858, 0.44236600399017...
func (tr Row) Int64(nn int) (val int64) { val, err := tr.Int64Err(nn) if err != nil { panic(err) } return }
[ -0.7847949862480164, 0.8516789674758911, 0.03444238007068634, 0.7037783861160278, 0.03369731083512306, -0.6870349049568176, -0.19440345466136932, -0.8422150015830994, -0.1101272851228714, 0.11708276718854904, 0.21750400960445404, -0.748051106929779, -0.18199649453163147, 0.3735289871692657...
func (tr Row) ForceInt64(nn int) (val int64) { val, _ = tr.Int64Err(nn) return }
[ -1.1985794305801392, 0.623310923576355, -0.01770877093076706, 0.7110181450843811, 0.3433820307254791, -0.6068671345710754, -0.14527961611747742, -0.7685658931732178, -0.01762118935585022, -0.08805117756128311, 0.18675194680690765, -0.5564024448394775, -0.8784458637237549, 0.620397567749023...
func (tr Row) Uint64Err(nn int) (val uint64, err error) { switch data := tr[nn].(type) { case nil: // nop case uint64, uint32, uint16, uint8: val = reflect.ValueOf(data).Uint() case int64, int32, int16, int8: i := reflect.ValueOf(data).Int() if i < 0 { err = strconv.ErrRange } else { val = uint64(i)...
[ -1.0000029802322388, -0.05068645253777504, 0.3278504014015198, -0.10067832469940186, -0.2867676019668579, -0.7037550806999207, -0.4576684236526489, 0.39009174704551697, 0.21363620460033417, -0.02047588862478733, 1.0473991632461548, -1.116990566253662, 0.04975575953722, 0.6221123337745667, ...
func (tr Row) Uint64(nn int) (val uint64) { val, err := tr.Uint64Err(nn) if err != nil { panic(err) } return }
[ -0.7903186678886414, 0.8876086473464966, 0.16810528934001923, 0.5823986530303955, 0.39289650321006775, -0.6782653331756592, 0.03915562108159065, -0.26396191120147705, -0.04297079145908356, -0.2805218994617462, 0.5088644027709961, -1.1846976280212402, 0.4403107762336731, 0.4023922085762024,...
func (tr Row) ForceUint64(nn int) (val uint64) { val, _ = tr.Uint64Err(nn) return }
[ -1.1900804042816162, 0.816164493560791, 0.026209812611341476, 0.42257317900657654, 0.7200390100479126, -0.6220457553863525, -0.6625344157218933, -0.46602898836135864, 0.06464061141014099, -0.7960959672927856, 0.18927554786205292, -0.7839810848236084, 0.17515073716640472, 0.8083816766738892...
func (tr Row) FloatErr(nn int) (val float64, err error) { switch data := tr[nn].(type) { case nil: // nop case float64, float32: val = reflect.ValueOf(data).Float() case int64, int32, int16, int8: i := reflect.ValueOf(data).Int() if i >= 2<<53 || i <= -(2<<53) { err = strconv.ErrRange } else { val =...
[ -0.2411455661058426, 0.0928027331829071, 0.47937050461769104, -0.10592974722385406, -0.5467507839202881, -0.6074689626693726, -0.05472281202673912, -0.3652084469795227, -0.254985511302948, -0.2733944058418274, 0.37879061698913574, -0.4491415321826935, -0.4250933527946472, 0.978911638259887...
func (tr Row) Float(nn int) (val float64) { val, err := tr.FloatErr(nn) if err != nil { panic(err) } return }
[ 0.0425531305372715, 1.394990086555481, 0.132333442568779, 0.3768407702445984, 0.5111428499221802, -0.324019193649292, 0.2321409434080124, -0.9102331399917603, -0.6593402624130249, -0.5247415900230408, 0.07094082236289978, -1.008423924446106, -0.2002066820859909, 0.9660980701446533, 0.022...
func (tr Row) ForceFloat(nn int) (val float64) { val, _ = tr.FloatErr(nn) return }
[ 0.0489722341299057, 1.3114122152328491, 0.19332243502140045, 0.018553229048848152, 0.9496237635612488, -0.388718843460083, 0.019147247076034546, -0.7762511372566223, -0.20640620589256287, -1.0272083282470703, -0.21817997097969055, -0.5293312668800354, -0.5185303688049316, 1.320201158523559...
func (v GetCharactersCharacterIdClonesOkList) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} easyjson13ace497EncodeGithubComAntihaxGoesiEsi(&w, v) return w.Buffer.BuildBytes(), w.Error }
[ -0.056435175240039825, 0.3336195945739746, 0.13677625358104706, 0.207785964012146, -0.2816729247570038, -0.9268652200698853, -0.07884936779737473, -0.08293599635362625, 0.03372429683804512, 0.5783511996269226, -0.8472199440002441, 1.2453830242156982, -0.7673775553703308, 0.5217071175575256...
func (v GetCharactersCharacterIdClonesOkList) MarshalEasyJSON(w *jwriter.Writer) { easyjson13ace497EncodeGithubComAntihaxGoesiEsi(w, v) }
[ -0.2763897180557251, 0.13769200444221497, 0.2149365097284317, -0.4688861668109894, -0.20317794382572174, -1.3444989919662476, -0.274275004863739, -0.7651909589767456, 0.4108310639858246, 0.27446699142456055, -0.9074960350990295, 1.0301926136016846, -0.18135102093219757, 0.8919199705123901,...
func (v *GetCharactersCharacterIdClonesOkList) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} easyjson13ace497DecodeGithubComAntihaxGoesiEsi(&r, v) return r.Error() }
[ -0.621581494808197, 0.4085260033607483, 0.1761883944272995, -0.495974600315094, -0.7730266451835632, -0.6218757033348083, -0.15374228358268738, -0.03541664406657219, 0.007391448598355055, 0.6357568502426147, -0.5524014830589294, 0.8707448244094849, -0.6290311813354492, 0.37368640303611755,...
func (v *GetCharactersCharacterIdClonesOkList) UnmarshalEasyJSON(l *jlexer.Lexer) { easyjson13ace497DecodeGithubComAntihaxGoesiEsi(l, v) }
[ -0.19216088950634003, 0.08457162976264954, 0.26554074883461, -0.5594074726104736, -0.4611766040325165, -1.3808059692382812, -0.07674896717071533, -0.10065241158008575, 0.33442050218582153, 0.4457743167877197, -0.7905754446983337, 0.6660498380661011, -0.16954851150512695, 0.8064998388290405...
func (v GetCharactersCharacterIdClonesOk) MarshalJSON() ([]byte, error) { w := jwriter.Writer{} easyjson13ace497EncodeGithubComAntihaxGoesiEsi1(&w, v) return w.Buffer.BuildBytes(), w.Error }
[ 0.2128143310546875, -0.08632870018482208, 0.054721515625715256, -0.02515246532857418, -0.38094449043273926, -0.5625635981559753, 0.14568202197551727, 0.29086169600486755, -0.2263319045305252, 0.827579915523529, -0.7052739262580872, 1.0319160223007202, -0.588650107383728, 0.2642418146133423...
func (v GetCharactersCharacterIdClonesOk) MarshalEasyJSON(w *jwriter.Writer) { easyjson13ace497EncodeGithubComAntihaxGoesiEsi1(w, v) }
[ 0.08759813010692596, -0.22803552448749542, 0.20104281604290009, -0.7288938164710999, -0.20252087712287903, -1.0772517919540405, -0.017597094178199768, -0.45893096923828125, 0.2150697112083435, 0.4720703363418579, -0.7875943183898926, 0.9166439771652222, -0.12330431491136551, 0.643002688884...
func (v *GetCharactersCharacterIdClonesOk) UnmarshalJSON(data []byte) error { r := jlexer.Lexer{Data: data} easyjson13ace497DecodeGithubComAntihaxGoesiEsi1(&r, v) return r.Error() }
[ -0.12437450885772705, 0.1501089185476303, 0.15285490453243256, -0.4796540439128876, -0.8721556067466736, -0.28871336579322815, -0.06266240030527115, 0.24920187890529633, -0.2833912968635559, 0.7342995405197144, -0.34211012721061707, 0.7383489608764648, -0.5499632954597473, 0.03398016095161...
func (v *GetCharactersCharacterIdClonesOk) UnmarshalEasyJSON(l *jlexer.Lexer) { easyjson13ace497DecodeGithubComAntihaxGoesiEsi1(l, v) }
[ 0.2756088674068451, -0.12079842388629913, 0.24765515327453613, -0.634230375289917, -0.5455392599105835, -1.0194441080093384, 0.15108266472816467, 0.2145632952451706, 0.023106571286916733, 0.47934186458587646, -0.6848869323730469, 0.5823731422424316, -0.10424773395061493, 0.4605304300785064...
func (_m *HostMemoryManager) GetArchiveMemoryUsageByTableShard() (map[string]map[string]*common.ColumnMemoryUsage, error) { ret := _m.Called() var r0 map[string]map[string]*common.ColumnMemoryUsage if rf, ok := ret.Get(0).(func() map[string]map[string]*common.ColumnMemoryUsage); ok { r0 = rf() } else { if ret....
[ 0.4866645634174347, -0.023234587162733078, 0.7774403691291809, 0.1696605086326599, -0.031667180359363556, -0.28820735216140747, 0.6565590500831604, 0.08187394589185715, -0.30130988359451294, -0.1544874757528305, -0.3121874928474426, 0.5868935585021973, 0.388426274061203, 0.4549675583839416...
func (_m *HostMemoryManager) ReportManagedObject(table string, shard int, batchID int, columnID int, bytes int64) { _m.Called(table, shard, batchID, columnID, bytes) }
[ 0.9404508471488953, 0.3212648034095764, 0.33502551913261414, 0.2339128851890564, 0.18234607577323914, 0.2778359055519104, 0.9183496832847595, -0.19751818478107452, -0.22608637809753418, -0.7136631011962891, -1.0239125490188599, 0.6991748809814453, -0.3453924357891083, 0.3258601725101471, ...
func (_m *HostMemoryManager) ReportUnmanagedSpaceUsageChange(bytes int64) { _m.Called(bytes) }
[ -0.2488819807767868, 0.7262060642242432, 0.08606407791376114, -0.6159387230873108, -0.07589246332645416, -0.3482813835144043, 0.9837319254875183, 0.04859011620283127, 0.45744848251342773, -0.426329106092453, -0.5914714932441711, 1.0738979578018188, -0.17473860085010529, 1.75191330909729, ...
func (_m *HostMemoryManager) Start() { _m.Called() }
[ 0.0082500409334898, 0.09939172863960266, 0.2484310269355774, 0.7423672676086426, 0.22486424446105957, 0.37909579277038574, 0.9606736898422241, 0.9271990656852722, -0.5792455673217773, 0.10431023687124252, -1.428987741470337, 1.341240644454956, 0.206792950630188, 0.164907306432724, -0.734...
func (_m *HostMemoryManager) Stop() { _m.Called() }
[ -0.9449326395988464, 0.2501935660839081, 0.34719356894493103, 0.21100151538848877, 0.08526460826396942, 0.8139416575431824, 1.1665678024291992, 0.7049560546875, -0.814258337020874, 0.4135441482067108, -1.1276397705078125, 0.8013875484466553, -0.30251389741897583, -0.06964262574911118, -0...
func (_m *HostMemoryManager) TriggerEviction() { _m.Called() }
[ -0.3128487169742584, 0.6917863488197327, 0.2663859724998474, 0.5626522898674011, 0.16223259270191193, -0.3005288541316986, 1.6138077974319458, 0.7464959621429443, 0.22340203821659088, 0.5114547610282898, -1.3501243591308594, 0.052170250564813614, -0.2970507740974426, 0.15181401371955872, ...
func (_m *HostMemoryManager) TriggerPreload(tableName string, columnID int, oldPreloadingDays int, newPreloadingDays int) { _m.Called(tableName, columnID, oldPreloadingDays, newPreloadingDays) }
[ -1.0226421356201172, 1.2807371616363525, 0.5024976134300232, 0.43236833810806274, -0.7957974672317505, -0.12263673543930054, 0.8542529344558716, -0.054313626140356064, -0.014952052384614944, 0.07428818941116333, -0.9394035339355469, 0.20336830615997314, 0.3811102509498596, 0.00015814974904...
func NewService(repo users.RepoUsers) RepoServiceAuth { return &service{ repoUser: repo, } }
[ -0.06025555357336998, -0.17681856453418732, -0.01848652772605419, 0.523816704750061, -0.9185431599617004, 0.27156028151512146, -0.39880961179733276, -0.39745572209358215, 0.22791148722171783, 0.5326398611068726, 0.0753428190946579, 0.5205293297767639, -0.3514633774757385, 0.547509789466857...
func (Testing) PatchRegistry(replacement *prometheus.Registry) func() { origValue := registry registry = replacement return func() { if registry != replacement { panic("reverting not possible because current value is not the former replacement") } registry = origValue } }
[ 0.5483884215354919, -0.16726940870285034, 0.3951558470726013, -0.5912061929702759, 0.009958243928849697, 0.6666446328163147, 1.0902565717697144, 0.04545033350586891, 0.5877482891082764, 0.12671616673469543, 0.2082640379667282, 1.0453652143478394, -0.4225025177001953, 0.003056436777114868, ...
func ParseUpdates(data []byte) ([]string, int) { var parsed interface{} err := json.Unmarshal(data, &parsed) if err != nil { // Silently ignore json errors return make([]string, 0), 0 } updates, ok := parsed.(map[string]interface{})["result"] if !ok { // By some reasons there is no updates in the message ...
[ -0.5303469300270081, -0.6992121934890747, 0.8357068300247192, -0.735481321811676, 0.2661585509777069, -0.8373781442642212, -0.2649383544921875, -0.32483333349227905, 0.22122755646705627, 0.7831674218177795, -0.17346641421318054, -0.7887564301490784, -1.0475099086761475, 0.5200491547584534,...
func TestLineServiceGetLineByID(t *testing.T) { // case 1 LineRepo.On("GetLineByID", int64(1)).Once().Return(&model.Line{Code: "123"}, nil) testutil.Play(t, LineSrv, "GetLineByID", int64(1)).Match(&model.Line{Code: "123"}, nil) // case 2 LineRepo.On("GetLineByID", int64(2)).Once().Return(nil, gorm.ErrRecordNotFou...
[ 0.30543917417526245, -0.14432556927204132, 0.5345935225486755, -0.04177647456526756, 1.1014924049377441, 0.22200235724449158, -0.40814849734306335, -0.5076494216918945, 0.029510987922549248, -0.5134546756744385, -0.9357748031616211, -0.4518652856349945, -0.37577614188194275, 0.375565320253...
func (sq *DcmSQElement) Read(stream *DcmFileStream, length int64, isExplicitVR bool, isReadValue bool) error { if isExplicitVR { return sq.ReadItemsWithExplicitVR(stream, length, isReadValue) } return sq.ReadItemsWithImplicitVR(stream) }
[ -0.05366194248199463, 0.029573699459433556, 0.2546393871307373, 0.17445124685764313, -0.719080924987793, 0.0522928461432457, -0.43146997690200806, 0.0727405697107315, 0.4525052011013031, -0.7516514658927917, 0.3605306148529053, 0.4080914258956909, 0.2745593786239624, 0.7665936946868896, ...
func (sq *DcmSQElement) ReadItemsWithExplicitVR(stream *DcmFileStream, length int64, isReadValue bool) error { startPos := stream.Position var delta int64 for !stream.Eos() && delta < length { var elem DcmElement elem.isReadValue = isReadValue err := elem.ReadDcmTag(stream) // log.Println("SQ :", elem, delt...
[ -0.029217859730124474, -0.319685697555542, 0.8229219913482666, 0.17148125171661377, -0.45147275924682617, 0.47496047616004944, -0.4972188472747803, 0.10722995549440384, 0.31264370679855347, 0.3832409381866455, -0.010875937528908253, 0.03657188639044762, 0.1552783101797104, 0.70883190631866...
func NewNamespaceCustomerManagedKey(ctx *pulumi.Context, name string, args *NamespaceCustomerManagedKeyArgs, opts ...pulumi.ResourceOption) (*NamespaceCustomerManagedKey, error) { if args == nil { return nil, errors.New("missing one or more required arguments") } if args.EventhubNamespaceId == nil { return nil...
[ 0.0876309871673584, 0.055938970297575, 0.4610637128353119, -0.004851994104683399, -0.8235704898834229, 0.45471420884132385, -0.9058053493499756, -0.9870463609695435, 0.8524296283721924, 0.11016130447387695, -0.37625348567962646, 0.5668584108352661, -0.46134406328201294, 0.9575248956680298,...
func GetNamespaceCustomerManagedKey(ctx *pulumi.Context, name string, id pulumi.IDInput, state *NamespaceCustomerManagedKeyState, opts ...pulumi.ResourceOption) (*NamespaceCustomerManagedKey, error) { var resource NamespaceCustomerManagedKey err := ctx.ReadResource("azure:eventhub/namespaceCustomerManagedKey:Namespa...
[ 0.09194318950176239, -0.011419241316616535, 0.3887883722782135, -0.3401191532611847, -0.7883989810943604, 0.07634221017360687, -0.9091214537620544, -0.9967815279960632, 1.4727627038955688, 0.07400280982255936, 0.1688750982284546, 1.427001714706421, -0.25932005047798157, 0.04239300265908241...
func (o NamespaceCustomerManagedKeyOutput) EventhubNamespaceId() pulumi.StringOutput { return o.ApplyT(func(v *NamespaceCustomerManagedKey) pulumi.StringOutput { return v.EventhubNamespaceId }).(pulumi.StringOutput) }
[ 1.257757306098938, -0.47457244992256165, 0.4206799864768982, 0.7445248365402222, -0.289083331823349, 1.048865795135498, -0.24960151314735413, 0.09604410082101822, 1.749779462814331, -0.7528329491615295, -0.05533142387866974, 0.22741542756557465, 0.2788996398448944, 0.5484968423843384, 0....
func (o NamespaceCustomerManagedKeyOutput) InfrastructureEncryptionEnabled() pulumi.BoolPtrOutput { return o.ApplyT(func(v *NamespaceCustomerManagedKey) pulumi.BoolPtrOutput { return v.InfrastructureEncryptionEnabled }).(pulumi.BoolPtrOutput) }
[ -0.5001223087310791, 1.145355224609375, 0.4042935371398926, 0.3429405689239502, 0.08131447434425354, 0.9356092810630798, 0.32119032740592957, -0.09308021515607834, 0.11390222609043121, 1.0555237531661987, -0.9496253132820129, 0.4364677965641022, -1.0369391441345215, 0.017250852659344673, ...
func (o NamespaceCustomerManagedKeyOutput) KeyVaultKeyIds() pulumi.StringArrayOutput { return o.ApplyT(func(v *NamespaceCustomerManagedKey) pulumi.StringArrayOutput { return v.KeyVaultKeyIds }).(pulumi.StringArrayOutput) }
[ 0.2971748113632202, -0.20413340628147125, 0.2682259976863861, 0.7811686992645264, -0.48970943689346313, 0.6593800783157349, -1.2293695211410522, -0.7566026449203491, 0.5784158110618591, 0.39620649814605713, -1.0677329301834106, 1.339546799659729, 0.18172727525234222, -0.24137045443058014, ...
func ValidateZookeeperClient(container ZkClientFacade, zkName string) error { lock := container.ZkClientLock() url := container.GetURL() lock.Lock() defer lock.Unlock() if container.ZkClient() == nil { // in dubbo, every registry only connect one node, so this is []string{r.Address} timeout := url.GetParamDu...
[ -0.20852342247962952, -0.28663232922554016, 0.5019375681877136, -0.09565602242946625, 0.12798771262168884, -0.42215853929519653, 1.2249884605407715, -0.1049606129527092, -0.10590827465057373, 0.14392024278640747, -0.6390622854232788, 0.4662615954875946, -0.3850225806236267, 0.3045853972434...
func DeployAccessControl(auth *bind.TransactOpts, backend bind.ContractBackend, newCooAddress common.Address, newCfoAddress common.Address) (common.Address, *types.Transaction, *AccessControl, error) { parsed, err := abi.JSON(strings.NewReader(AccessControlABI)) if err != nil { return common.Address{}, nil, nil, er...
[ 0.5891362428665161, -0.8582345247268677, 0.6718178391456604, -0.8305656909942627, -0.4890984892845154, -0.544202983379364, 0.4643827974796295, -0.15897507965564728, 0.1561388522386551, 0.7353008985519409, 0.3753381371498108, 0.3560691475868225, -0.07009060680866241, -0.21544581651687622, ...
func NewAccessControl(address common.Address, backend bind.ContractBackend) (*AccessControl, error) { contract, err := bindAccessControl(address, backend, backend, backend) if err != nil { return nil, err } return &AccessControl{AccessControlCaller: AccessControlCaller{contract: contract}, AccessControlTransactor...
[ 0.7106575965881348, -0.14765337109565735, 0.293246865272522, -0.5474932789802551, -1.3145259618759155, -0.8136938214302063, 0.6023541688919067, -0.42247429490089417, 0.7848560810089111, 0.4282642602920532, 0.234552264213562, 0.2948651909828186, 0.159698024392128, -0.2254967838525772, 0.7...
func NewAccessControlCaller(address common.Address, caller bind.ContractCaller) (*AccessControlCaller, error) { contract, err := bindAccessControl(address, caller, nil, nil) if err != nil { return nil, err } return &AccessControlCaller{contract: contract}, nil }
[ 0.6500768065452576, -0.6853452324867249, 0.3746427893638611, -0.31730327010154724, -1.1703405380249023, 0.029062708839774132, 0.38081124424934387, -0.32753774523735046, 0.9060457348823547, 0.4865742623806, 0.7402130365371704, 0.492044597864151, 0.2914030849933624, 0.4089702367782593, 1.1...
func NewAccessControlTransactor(address common.Address, transactor bind.ContractTransactor) (*AccessControlTransactor, error) { contract, err := bindAccessControl(address, nil, transactor, nil) if err != nil { return nil, err } return &AccessControlTransactor{contract: contract}, nil }
[ 0.895634114742279, -0.7978799939155579, 0.2840079367160797, -0.4531465172767639, -1.3344188928604126, -0.6518442630767822, 0.7923146486282349, -0.20366725325584412, 0.6247553825378418, 0.7746618390083313, -0.3745063841342926, 0.6484255790710449, -0.0016292952932417393, -0.35702547430992126...
func NewAccessControlFilterer(address common.Address, filterer bind.ContractFilterer) (*AccessControlFilterer, error) { contract, err := bindAccessControl(address, nil, nil, filterer) if err != nil { return nil, err } return &AccessControlFilterer{contract: contract}, nil }
[ 0.5987964868545532, -0.6591954231262207, 0.27602308988571167, 0.013687635771930218, -1.2808393239974976, -0.6063159704208374, 0.47418367862701416, -0.2731224298477173, 0.5437026619911194, 0.46897920966148376, 0.2919224500656128, 0.670562207698822, -0.07469888031482697, 0.3554982542991638, ...
func bindAccessControl(address common.Address, caller bind.ContractCaller, transactor bind.ContractTransactor, filterer bind.ContractFilterer) (*bind.BoundContract, error) { parsed, err := abi.JSON(strings.NewReader(AccessControlABI)) if err != nil { return nil, err } return bind.NewBoundContract(address, parsed,...
[ 0.10323385149240494, -0.6132121086120605, 0.3587813973426819, -0.6108062863349915, -0.9324966073036194, -0.481034517288208, 0.14724799990653992, -0.5205656290054321, 0.5310826301574707, -0.1920539140701294, 0.41523033380508423, 0.8612051010131836, 0.16550315916538239, -0.16128826141357422,...
func (_AccessControl *AccessControlRaw) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error { return _AccessControl.Contract.AccessControlCaller.contract.Call(opts, result, method, params...) }
[ -0.38524097204208374, 0.41120433807373047, 0.5251607298851013, 0.39135828614234924, -0.853338897228241, 0.11761859059333801, -0.2820022702217102, -0.8682491779327393, 0.6800144910812378, -0.025158818811178207, 0.541531503200531, -0.02447638474404812, -0.28903377056121826, -0.05147670954465...
func (_AccessControl *AccessControlRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _AccessControl.Contract.AccessControlTransactor.contract.Transfer(opts) }
[ 0.05907534435391426, -0.23717500269412994, 0.3532116115093231, 0.3135434687137604, -0.22444339096546173, 0.13569137454032898, 0.634130597114563, -0.5301063656806946, 0.9556230306625366, -0.5121109485626221, 0.11206566542387009, 0.17001335322856903, -0.20738010108470917, -0.5550432801246643...
func (_AccessControl *AccessControlRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _AccessControl.Contract.AccessControlTransactor.contract.Transact(opts, method, params...) }
[ -0.03798279911279678, 0.035934798419475555, 0.5205130577087402, -0.7906751036643982, 0.32900774478912354, -0.10631657391786575, 0.9907589554786682, -0.5542947053909302, 0.3869536817073822, -0.07217597961425781, 0.06461039930582047, 0.3196662664413452, 0.2482644021511078, -0.126279875636100...
func (_AccessControl *AccessControlCallerRaw) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error { return _AccessControl.Contract.contract.Call(opts, result, method, params...) }
[ -0.310352623462677, 0.3650384545326233, 0.5344107747077942, 0.7148906588554382, -0.9415107369422913, 0.47005757689476013, -0.3921131491661072, -0.7046098709106445, 0.5023558735847473, 0.12397485226392746, 0.6819226741790771, 0.11832232028245926, -0.3309613764286041, 0.05844626575708389, ...
func (_AccessControl *AccessControlTransactorRaw) Transfer(opts *bind.TransactOpts) (*types.Transaction, error) { return _AccessControl.Contract.contract.Transfer(opts) }
[ -0.21893927454948425, -0.13973014056682587, 0.3123345673084259, 0.6757217049598694, -0.27882927656173706, 0.165354385972023, 0.8344482779502869, -0.341400146484375, 1.0108087062835693, -0.7120882868766785, 0.02010100521147251, 0.14674024283885956, -0.2177908718585968, -0.4853286147117615, ...
func (_AccessControl *AccessControlTransactorRaw) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { return _AccessControl.Contract.contract.Transact(opts, method, params...) }
[ -0.40261420607566833, 0.19569440186023712, 0.4631102383136749, -0.49797049164772034, 0.1984281837940216, -0.009854186326265335, 1.1321027278900146, -0.39552411437034607, 0.44373399019241333, -0.22534115612506866, -0.025640029460191727, 0.31327685713768005, 0.19095127284526825, -0.163675874...
func (_AccessControl *AccessControlCaller) CeoAddress(opts *bind.CallOpts) (common.Address, error) { var ( ret0 = new(common.Address) ) out := ret0 err := _AccessControl.contract.Call(opts, out, "ceoAddress") return *ret0, err }
[ -0.4346780478954315, -0.11135135591030121, 0.6768606305122375, 0.8113935589790344, 0.6917782425880432, 0.4980345666408539, 0.6736791133880615, -0.020459067076444626, 0.6047425866127014, -0.6290872693061829, -0.4339655935764313, 0.6260696053504944, -0.969885528087616, -0.314117431640625, ...
func (_AccessControl *AccessControlSession) CeoAddress() (common.Address, error) { return _AccessControl.Contract.CeoAddress(&_AccessControl.CallOpts) }
[ -0.015147154219448566, -0.4236387610435486, 0.5936753749847412, 0.5528181791305542, 0.6882096529006958, 0.27374038100242615, 0.26078641414642334, -0.1584831029176712, 1.035651683807373, -0.6658124923706055, 0.27200421690940857, 0.7151088118553162, -0.6932528614997864, -0.8541482090950012, ...
func (_AccessControl *AccessControlCallerSession) CeoAddress() (common.Address, error) { return _AccessControl.Contract.CeoAddress(&_AccessControl.CallOpts) }
[ 0.04437923803925514, -0.4040643274784088, 0.55386883020401, 0.5470809936523438, 0.6497708559036255, 0.3374844491481781, 0.11952542513608932, 0.02565254271030426, 1.0294703245162964, -0.5880445837974548, 0.37725523114204407, 0.5821316242218018, -0.7694697976112366, -0.9595697522163391, 0....
func (_AccessControl *AccessControlCaller) CfoAddress(opts *bind.CallOpts) (common.Address, error) { var ( ret0 = new(common.Address) ) out := ret0 err := _AccessControl.contract.Call(opts, out, "cfoAddress") return *ret0, err }
[ -0.01221071183681488, 0.15538333356380463, 0.7345154881477356, 0.7983238697052002, -0.24593482911586761, 0.37110579013824463, 0.9964993000030518, -0.8985363841056824, 0.9540690779685974, -0.7222172617912292, -0.3424411714076996, 0.5729067921638489, -0.811191737651825, 0.4840793311595917, ...
func (_AccessControl *AccessControlSession) CfoAddress() (common.Address, error) { return _AccessControl.Contract.CfoAddress(&_AccessControl.CallOpts) }
[ 0.24024944007396698, -0.11551336199045181, 0.5370936393737793, 0.3191497325897217, -0.10516134649515152, 0.16780707240104675, 0.7058003544807434, -0.9624603986740112, 1.2520790100097656, -0.8875985145568848, 0.22249583899974823, 0.6500674486160278, -0.4972812533378601, 0.0855320543050766, ...
func (_AccessControl *AccessControlCallerSession) CfoAddress() (common.Address, error) { return _AccessControl.Contract.CfoAddress(&_AccessControl.CallOpts) }
[ 0.29757270216941833, -0.0173400416970253, 0.5228672623634338, 0.31461775302886963, -0.20806162059307098, 0.247482568025589, 0.5992527008056641, -0.8932316899299622, 1.3167426586151123, -0.8039778470993042, 0.2903987765312195, 0.4869997501373291, -0.6003591418266296, -0.05248884856700897, ...
func (_AccessControl *AccessControlCaller) CooAddress(opts *bind.CallOpts) (common.Address, error) { var ( ret0 = new(common.Address) ) out := ret0 err := _AccessControl.contract.Call(opts, out, "cooAddress") return *ret0, err }
[ -0.14223788678646088, -0.13831262290477753, 0.7368507385253906, 0.4216609597206116, 0.07920518517494202, 0.6078932285308838, 1.009835958480835, -0.7323668003082275, 0.4712556004524231, -0.12298467010259628, 0.020529694855213165, 0.7942593097686768, -0.6665168404579163, 0.0436011403799057, ...
func (_AccessControl *AccessControlSession) CooAddress() (common.Address, error) { return _AccessControl.Contract.CooAddress(&_AccessControl.CallOpts) }
[ 0.18340878188610077, -0.3810276687145233, 0.5561618804931641, -0.06349951773881912, 0.3351612687110901, 0.40922051668167114, 0.6201357245445251, -0.8267896175384521, 0.8299077749252319, -0.19114941358566284, 0.6408710479736328, 0.892845630645752, -0.33994975686073303, -0.22807994484901428,...
func (_AccessControl *AccessControlCallerSession) CooAddress() (common.Address, error) { return _AccessControl.Contract.CooAddress(&_AccessControl.CallOpts) }
[ 0.25122174620628357, -0.3160291910171509, 0.5240094065666199, -0.026996299624443054, 0.24474996328353882, 0.45547720789909363, 0.48835185170173645, -0.7159743905067444, 0.9532725811004639, -0.12698060274124146, 0.6899190545082092, 0.7276438474655151, -0.41853299736976624, -0.39155986905097...
func (_AccessControl *AccessControlTransactor) SetCeo(opts *bind.TransactOpts, newCeo common.Address) (*types.Transaction, error) { return _AccessControl.contract.Transact(opts, "setCeo", newCeo) }
[ 0.5986834168434143, 0.017393914982676506, 0.4026513397693634, 0.6705954074859619, -0.32811465859413147, -0.5418644547462463, 0.29774564504623413, 0.004271178971976042, -0.016635609790682793, 0.652990996837616, -0.6203799247741699, 0.39526256918907166, 0.17210771143436432, -0.08806886523962...
func (_AccessControl *AccessControlSession) SetCeo(newCeo common.Address) (*types.Transaction, error) { return _AccessControl.Contract.SetCeo(&_AccessControl.TransactOpts, newCeo) }
[ 0.7547528743743896, 0.09219273179769516, 0.5822967290878296, 0.5643244981765747, 0.04416557773947716, -0.7027427554130554, 0.5332443118095398, -0.03848022595047951, 0.2026432901620865, 0.5058485269546509, -0.44897934794425964, 0.2399352788925171, 0.4209437668323517, -0.21825753152370453, ...
func (_AccessControl *AccessControlTransactorSession) SetCeo(newCeo common.Address) (*types.Transaction, error) { return _AccessControl.Contract.SetCeo(&_AccessControl.TransactOpts, newCeo) }
[ 0.7674713134765625, -0.0162454042583704, 0.5291863083839417, 0.46008872985839844, 0.14041052758693695, -0.7062876224517822, 0.502254068851471, -0.07906300574541092, 0.11592267453670502, 0.5963778495788574, -0.38966187834739685, 0.1306396871805191, 0.3752976059913635, -0.28228262066841125, ...
func (_AccessControl *AccessControlTransactor) SetCfo(opts *bind.TransactOpts, newCfo common.Address) (*types.Transaction, error) { return _AccessControl.contract.Transact(opts, "setCfo", newCfo) }
[ 0.17427682876586914, -0.2621104121208191, 0.060811128467321396, -0.1922905594110489, -0.3781243860721588, -0.2782800495624542, 0.8284218311309814, 0.05548543110489845, -0.28716838359832764, 0.6623224020004272, -0.735042929649353, 0.0016079014167189598, -0.07478783279657364, 0.0705234855413...
func (_AccessControl *AccessControlSession) SetCfo(newCfo common.Address) (*types.Transaction, error) { return _AccessControl.Contract.SetCfo(&_AccessControl.TransactOpts, newCfo) }
[ 0.4593123197555542, -0.16762080788612366, 0.188306525349617, -0.208576500415802, -0.15562604367733002, -0.4738602340221405, 1.0740549564361572, 0.03775428608059883, -0.08446697890758514, 0.44800570607185364, -0.5230279564857483, -0.211875319480896, 0.2420707792043686, -0.12352172285318375,...
func (_AccessControl *AccessControlTransactorSession) SetCfo(newCfo common.Address) (*types.Transaction, error) { return _AccessControl.Contract.SetCfo(&_AccessControl.TransactOpts, newCfo) }
[ 0.47005054354667664, -0.22528739273548126, 0.14614489674568176, -0.3222956359386444, -0.1109091192483902, -0.4774309992790222, 0.9758772253990173, -0.01490091998130083, -0.18023645877838135, 0.5525180101394653, -0.5011743903160095, -0.29986894130706787, 0.19971521198749542, -0.173318669199...