text
stringlengths
11
6.3k
embedding
listlengths
768
768
func init() { secretstores.Add("docker", func(id string) telegraf.SecretStore { return &Docker{ID: id} }) }
[ 0.5919129848480225, 0.8927134275436401, 0.10102871060371399, 0.05818815156817436, 0.2431127429008484, 0.575221836566925, -0.8691117167472839, 0.6530160307884216, 0.6521692872047424, -0.2954319417476654, -0.7139886617660522, 0.5078845024108887, 0.10648579150438309, 0.7145609259605408, 0.3...
func (t Type) GetAttrFrom(inst Instance, atomValue uint8) Value { for instanceIndex, atomIndex := range t.Attributes { if atomIndex == atomValue { return inst.Attributes[instanceIndex] } } panic("Could not get attribute from instance!") }
[ 0.19670675694942474, 0.024986324831843376, 0.44174009561538696, -0.5170957446098328, -0.2769111394882202, 0.12999160587787628, -0.007344703655689955, -0.41072213649749756, -0.42346203327178955, 0.09034846723079681, 1.0137510299682617, 0.9072280526161194, 0.04866352677345276, -0.49808189272...
func apply(n Node, v reflect.Value) { if n == nil { v = indirect(v) v.Set(reflect.Zero(v.Type())) return } n.apply(v) }
[ -0.030455173924565315, 0.6713042855262756, 0.3462464213371277, -0.4930291771888733, 0.021426761522889137, 0.20596633851528168, 0.10324517637491226, 0.924006462097168, 0.2883620858192444, 0.28764772415161133, -0.22307662665843964, 0.8858994245529175, -0.21115487813949585, 0.9774017930030823...
func equal(n, other Node) bool { if n == nil { return other == nil } return n.equal(other) }
[ -0.4891749620437622, 0.5627068877220154, 0.3473545014858246, 0.2245822250843048, 0.7528290748596191, -0.661609411239624, -0.7327691316604614, -0.17351801693439484, 0.11961754411458969, 0.7349099516868591, -0.9725168943405151, -0.008967733010649681, -0.1729901134967804, 1.0817161798477173, ...
func (s Scalar) apply(v reflect.Value) { v = indirect(v) switch v.Kind() { case reflect.String: v.SetString(s.String()) case reflect.Int64: i, err := strconv.ParseInt(s.String(), 10, 64) if err != nil { s.error(InvalidInt64Error{Value: s, Err: err}) } v.SetInt(i) case reflect.Uint64: u, err := strco...
[ -0.3014777600765228, -0.4387493133544922, 0.8293645977973938, -0.21483363211154938, -0.8984339833259583, 0.06175031512975693, 0.12494590133428574, 0.3572167754173279, 0.27205801010131836, 0.5899410247802734, 0.13344749808311462, 1.2968509197235107, 0.3884519934654236, 0.2642674446105957, ...
func (s Sequence) apply(v reflect.Value) { v = indirect(v) switch v.Kind() { case reflect.Slice: if v.Cap() >= len(s.elements) { v.SetLen(len(s.elements)) } else { v.Set(reflect.MakeSlice(v.Type(), len(s.elements), len(s.elements))) } case reflect.Array: if v.Len() != len(s.elements) { s.error(Inva...
[ -0.9193264245986938, -0.4271927773952484, 0.6503946781158447, -0.35637640953063965, -0.5331254005432129, 0.14569422602653503, 0.5816296339035034, 0.7400475740432739, 0.8928401470184326, 0.5304081439971924, -0.33949196338653564, 0.8135034441947937, 0.33955302834510803, 0.7741409540176392, ...
func (s Sequence) equal(other Node) bool { o, ok := other.(Sequence) if !ok || len(s.elements) != len(o.elements) || s.path != o.path { return false } if s.elements == nil || o.elements == nil { return s.elements == nil && o.elements == nil } for i, v := range o.elements { if !equal(s.elements[i], v) { r...
[ -0.9258983135223389, -0.4874623119831085, 0.6371840834617615, -0.2030847817659378, 0.5306552052497864, -0.6777384877204895, 0.35787051916122437, -0.10841374844312668, 0.587851345539093, 0.8979825973510742, -1.2508330345153809, 0.05003940314054489, -0.07115024328231812, 0.6044816970825195, ...
func (m Mapping) apply(v reflect.Value) { v = indirect(v) switch v.Kind() { case reflect.Struct: for k, n := range m.pairs { var f reflect.Value // Try an exact match first. if exported(k) { f = v.FieldByName(k) } // Otherwise try case-insensitive comparison. if !f.IsValid() { lk := str...
[ -0.8655909895896912, -0.06646008789539337, 0.8618242740631104, -0.20192527770996094, -0.9092646241188049, 0.17637047171592712, 0.43014147877693176, 0.4783528745174408, 0.0026157747488468885, -0.18528497219085693, 0.1458922177553177, -0.03460847958922386, 0.4733302593231201, 0.2659279704093...
func (m Mapping) equal(other Node) bool { o, ok := other.(Mapping) if !ok || len(m.pairs) != len(o.pairs) || m.path != o.path { return false } if m.pairs == nil || o.pairs == nil { return m.pairs == nil && o.pairs == nil } for k, v := range o.pairs { if !equal(m.pairs[k], v) { return false } } return...
[ -0.9338964223861694, 0.2739839553833008, 0.9162774682044983, -0.22667481005191803, -0.41598081588745117, -0.05233859270811081, 0.45690083503723145, 0.21304240822792053, 0.07297209650278091, 0.6585215926170349, -0.12509211897850037, -0.32388705015182495, -0.09482599049806595, 0.550665557384...
func indirect(p reflect.Value) (v reflect.Value) { v = p for { if v.Kind() != reflect.Ptr { return } if v.IsNil() { v.Set(reflect.New(v.Type().Elem())) } v = v.Elem() } }
[ 0.021027779206633568, -0.0063177309930324554, 0.40778544545173645, -1.1373443603515625, -0.6463929414749146, 0.7395926117897034, -0.18695779144763947, -1.3006614446640015, -0.42651957273483276, 0.6200826168060303, -0.04657987877726555, 1.1220483779907227, -0.29384279251098633, 0.0112355276...
func exported(name string) bool { r, _ := utf8.DecodeRuneInString(name) return unicode.IsUpper(r) }
[ -0.5970339775085449, 0.2197069376707077, 0.7282525897026062, 0.3164995014667511, -1.2127474546432495, -0.025337187573313713, -0.9562849998474121, 0.13060905039310455, 1.028870701789856, 0.6712130308151245, -1.3330520391464233, -0.09542401880025864, -0.4308810532093048, -0.10964102298021317...
func (s *Server) Shutdown(fns ...func()) *Server { s.shutdown = fns return s }
[ -1.0827417373657227, 0.39717474579811096, 0.47935110330581665, 0.5335549116134644, 0.7051671147346497, 0.9882409572601318, -0.0934300571680069, 0.37705275416374207, 0.6699447631835938, -0.9844123721122742, -1.2510679960250854, 0.9816650748252869, -0.14581073820590973, -0.012397578917443752...
func (fn GetMoveHandlerFunc) Handle(params GetMoveParams) middleware.Responder { return fn(params) }
[ 0.1868339627981186, -0.16292189061641693, 0.588603138923645, 0.8400748372077942, 0.4184210002422333, 0.09496578574180603, 0.4443010091781616, 0.03244471177458763, 0.03762933984398842, -0.08493170887231827, 0.22541387379169464, 0.16259725391864777, -0.5915604829788208, -0.3286077082157135, ...
func NewGetMove(ctx *middleware.Context, handler GetMoveHandler) *GetMove { return &GetMove{Context: ctx, Handler: handler} }
[ 0.25782063603401184, -0.26096487045288086, 0.4695930480957031, 0.9579474925994873, -0.07696989923715591, -0.32049283385276794, -0.7540370225906372, -0.4189300537109375, 0.018554234877228737, -0.07190459221601486, -0.38742029666900635, 0.5985177755355835, -0.48116639256477356, 0.14489679038...
func damageResolve (team teamL/*[]lookup*/, teamD []teamDamage, dmg []float64, msg *orbs) (res []teamDamage) { //NOTE, dmg = multiplier for that colour. var comboMulti float64 var comboCount float64 comboMulti, comboCount=0,0 tpacount := []float64{0,0,0,0,0} //two prong, ugh for x, y := range msg.Orbs { fo...
[ -0.4485170841217041, -0.24896425008773804, 1.0198551416397095, -1.217126727104187, 0.20170196890830994, -0.2802121937274933, 0.6803262829780579, -0.18114113807678223, -0.05826420709490776, 0.594657301902771, -0.46648573875427246, -0.6511706113815308, -0.19093778729438782, -0.18136563897132...
func (b Book) URL() string { return fmt.Sprintf("https://www.goodreads.com/book/show/%d", b.ID) }
[ -0.14624392986297607, -0.4396823048591614, 0.14347468316555023, 0.43121087551116943, 0.6299381852149963, 1.3684667348861694, -0.9408875703811646, 0.8556349277496338, -0.15151402354240417, 0.30810603499412537, 0.033247243613004684, 0.6232415437698364, -0.532423734664917, -0.3033634722232818...
func (b Book) Icon() *aw.Icon { switch b.Status { case Unpublished: return iconUnpublished case Read: return iconRead default: return iconUnread } }
[ -0.42589300870895386, -0.739605724811554, 0.3162711262702942, 0.6140889525413513, -0.5953065156936646, 0.6837125420570374, -0.32079818844795227, 1.3928732872009277, -0.2230592519044876, -0.07774753868579865, 0.4550436735153198, 0.2441207766532898, 0.5958436131477356, -1.0589238405227661, ...
func (s Books) Less(i, j int) bool { a, b := s[i], s[j] if a.Status != b.Status { return a.Status < b.Status } return s.Keywords(i) < s.Keywords(j) }
[ 0.2159319669008255, -0.5763666033744812, 0.3317948877811432, -0.36861997842788696, -0.9576704502105713, 0.33135801553726196, -0.8132005333900452, -1.009900450706482, -0.6511736512184143, -0.42250123620033264, -0.22880123555660248, -0.30624935030937195, -0.5438076257705688, 0.42858701944351...
func filterBooks(books []Book, query string) []Book { // Per-status groups groups := make([][]Book, 3) // Fuzzy-sort books, then add them to the appropriate groups for i, r := range fuzzy.Sort(Books(books), query) { if !r.Match { // Matching items sort to start, so ignore all books from here break } boo...
[ -0.40026751160621643, -0.28657716512680054, 0.5103700757026672, 1.0049405097961426, -0.6733911037445068, 0.6080514788627625, -0.6089032888412476, 0.27967527508735657, -0.5092262029647827, 0.5528087019920349, 0.8216707110404968, -0.3864316940307617, -0.8842307925224304, 0.001059348229318857...
func (s *BasevhdlListener) VisitTerminal(node antlr.TerminalNode) {}
[ -0.6328007578849792, -0.7101998329162598, 0.41419658064842224, -0.6086817979812622, -0.5391086935997009, 0.45902499556541443, -0.3536610007286072, 0.23509091138839722, -0.20360049605369568, 1.215309739112854, 0.4374176263809204, 1.3467811346054077, -0.19284312427043915, 0.7503497004508972,...
func (s *BasevhdlListener) EnterEveryRule(ctx antlr.ParserRuleContext) {}
[ 0.3293284773826599, 0.07756399363279343, 0.2748417854309082, -0.35921812057495117, 1.2190126180648804, 0.5660398602485657, -0.1813153773546219, -0.18039381504058838, -0.6673465371131897, -0.14825451374053955, 0.6744575500488281, 0.7200253009796143, -1.5460761785507202, 1.8209885358810425, ...
func (s *BasevhdlListener) ExitEveryRule(ctx antlr.ParserRuleContext) {}
[ 0.1549978107213974, -0.3090342879295349, 0.2586694359779358, -0.36561939120292664, 0.818577766418457, 0.6689973473548889, -0.3534131646156311, 0.13861005008220673, -0.8251451849937439, 0.38052308559417725, 0.056200455874204636, -0.0490366593003273, -1.3749241828918457, 1.8875786066055298, ...
func (s *BasevhdlListener) EnterAbstract_literal(ctx *Abstract_literalContext) {}
[ -0.003561849007382989, -0.8295605778694153, 0.47086554765701294, -0.8738022446632385, -0.08618295937776566, 1.6306400299072266, 0.14685866236686707, -0.2824171483516693, -0.6645022630691528, 1.1080231666564941, 0.443228542804718, 0.6308929324150085, 0.6599971055984497, 0.9321509599685669, ...
func (s *BasevhdlListener) ExitAbstract_literal(ctx *Abstract_literalContext) {}
[ -0.13172131776809692, -1.0551824569702148, 0.5852283835411072, -1.0990474224090576, -0.48610156774520874, 1.6421382427215576, -0.16661135852336884, 0.3235606551170349, -0.9934067130088806, 1.6291579008102417, 0.26296722888946533, -0.2905382215976715, 0.48113909363746643, 0.5266796350479126...
func (s *BasevhdlListener) EnterAccess_type_definition(ctx *Access_type_definitionContext) {}
[ 0.8838788866996765, -0.5731257796287537, 0.31432902812957764, 0.49028363823890686, 0.7868292927742004, -0.347847044467926, 0.6200951933860779, -0.8791927099227905, -0.6210924983024597, 0.5554645657539368, 0.5833661556243896, 1.058436632156372, -0.0951085090637207, 0.9140918850898743, 0.9...
func (s *BasevhdlListener) ExitAccess_type_definition(ctx *Access_type_definitionContext) {}
[ 0.8342452645301819, -0.8298947811126709, 0.40236523747444153, 0.11723026633262634, 0.024538444355130196, -0.01220975536853075, 0.6461910605430603, -0.24278904497623444, -0.5587319731712341, 1.3312708139419556, 0.4428955018520355, 0.5693579316139221, -0.18810178339481354, 0.6730444431304932...
func (s *BasevhdlListener) EnterAcross_aspect(ctx *Across_aspectContext) {}
[ 0.3075616955757141, -1.2836419343948364, 0.5609849095344543, -0.6402875781059265, 0.3994372487068176, 0.34864503145217896, 0.41908448934555054, -0.8970863223075867, 0.26413092017173767, 0.1953764259815216, 0.4057369828224182, 0.5778864026069641, -0.5470781922340393, 1.3036935329437256, 0...
func (s *BasevhdlListener) ExitAcross_aspect(ctx *Across_aspectContext) {}
[ 0.13200810551643372, -1.6038445234298706, 0.5763130187988281, -0.9994071125984192, -0.19446255266666412, 0.8348724246025085, 0.33069729804992676, -0.31533360481262207, 0.28529950976371765, 0.8410887718200684, 0.13733641803264618, -0.5204113721847534, -0.524747908115387, 1.3341487646102905,...
func (s *BasevhdlListener) EnterActual_designator(ctx *Actual_designatorContext) {}
[ -0.7217495441436768, -0.8273859620094299, 0.15732577443122864, -0.2719425559043884, 0.18466229736804962, 0.4496830403804779, 0.23392559587955475, 0.12320061028003693, -0.004298594780266285, 0.2746965289115906, 0.22168898582458496, 0.284666508436203, 0.698980987071991, 1.2637468576431274, ...
func (s *BasevhdlListener) ExitActual_designator(ctx *Actual_designatorContext) {}
[ -0.9732023477554321, -1.1261574029922485, 0.28509920835494995, -0.20708896219730377, -0.3108702003955841, 0.6620333194732666, -0.007080685347318649, 0.425344318151474, -0.07698420435190201, 0.7599462866783142, 0.1255183219909668, -0.5820940136909485, 0.9526760578155518, 0.8176040649414062,...
func (s *BasevhdlListener) EnterActual_parameter_part(ctx *Actual_parameter_partContext) {}
[ -0.029406419023871422, -1.1512670516967773, 0.14119695127010345, 0.09509309381246567, 0.5991019010543823, 0.7061461806297302, -0.1226021945476532, -0.6415680646896362, -0.5203715562820435, 1.153523325920105, 0.6750278472900391, 0.2434975951910019, -0.233101949095726, 0.8863715529441833, ...
func (s *BasevhdlListener) ExitActual_parameter_part(ctx *Actual_parameter_partContext) {}
[ -0.05794097110629082, -1.6223894357681274, 0.31238123774528503, 0.0705743357539177, 0.07794355601072311, 0.8280507922172546, -0.5047657489776611, -0.024087583646178246, -0.7301729321479797, 1.6027863025665283, 0.6072188019752502, -0.43322527408599854, -0.36803552508354187, 0.53607380390167...
func (s *BasevhdlListener) EnterActual_part(ctx *Actual_partContext) {}
[ 0.3102215826511383, -0.9422968626022339, 0.1658134013414383, -0.10438328981399536, 0.6174700260162354, 0.9611548185348511, -0.09763140231370926, -0.565064013004303, -0.4118088483810425, 1.0374783277511597, 0.4437994956970215, -0.06133190169930458, -0.40822261571884155, 0.9602088928222656, ...
func (s *BasevhdlListener) ExitActual_part(ctx *Actual_partContext) {}
[ 0.2638412117958069, -1.4540871381759644, 0.22715917229652405, -0.05835345759987831, 0.03582694008946419, 1.0915836095809937, -0.41970306634902954, 0.05490616336464882, -0.5765920877456665, 1.4954628944396973, 0.30941542983055115, -0.7367722988128662, -0.4032987952232361, 0.720932126045227,...
func (s *BasevhdlListener) EnterAdding_operator(ctx *Adding_operatorContext) {}
[ 0.10978976637125015, 0.4273008704185486, 0.062077075242996216, 0.6807036399841309, 0.031816091388463974, -0.04144653305411339, 0.038051359355449677, -0.694862425327301, -0.23075002431869507, 0.5990561246871948, 0.11083569377660751, 0.25588661432266235, -0.7071699500083923, 0.91984945535659...
func (s *BasevhdlListener) ExitAdding_operator(ctx *Adding_operatorContext) {}
[ 0.03806757181882858, 0.18054834008216858, -0.07747887074947357, 0.46711763739585876, -0.8629350066184998, 0.5373876094818115, -0.40277019143104553, -0.5239923000335693, -0.1761738806962967, 1.3588396310806274, -0.38189512491226196, -0.37591591477394104, -0.42145827412605286, 0.822648167610...
func (s *BasevhdlListener) EnterAggregate(ctx *AggregateContext) {}
[ 0.1388118416070938, 0.3422791659832001, 0.5629898309707642, 0.3392787575721741, 0.926939070224762, -0.5834590792655945, -0.18500292301177979, -0.6928020119667053, -0.20638436079025269, 0.14454293251037598, 1.0781145095825195, 0.3415506184101105, -1.3766968250274658, 0.9791704416275024, -...
func (s *BasevhdlListener) ExitAggregate(ctx *AggregateContext) {}
[ -0.4389916956424713, 0.010608366690576077, 0.4177494943141937, -0.013642506673932076, 0.18172290921211243, -0.5001985430717468, -0.4026199281215668, -0.1488538235425949, -0.40077364444732666, 1.0304332971572876, 0.5552547574043274, -0.7087945342063904, -1.0086193084716797, 1.09126651287078...
func (s *BasevhdlListener) EnterAlias_declaration(ctx *Alias_declarationContext) {}
[ 1.3528327941894531, -0.6340476274490356, 0.4328944683074951, -0.30353039503097534, 0.21412809193134308, 0.3512580692768097, 0.7171188592910767, 0.9987905621528625, -0.2923561632633209, 0.29102617502212524, 0.05670364946126938, 1.1638295650482178, 0.09371421486139297, 1.2289700508117676, ...
func (s *BasevhdlListener) ExitAlias_declaration(ctx *Alias_declarationContext) {}
[ 1.1540952920913696, -0.9231408834457397, 0.41377633810043335, -0.7034714818000793, -0.4659886062145233, 0.6099660992622375, 0.5552294254302979, 1.6372438669204712, -0.18544790148735046, 0.9120862483978271, -0.10989080369472504, 0.43382585048675537, 0.6463618278503418, 1.0255026817321777, ...
func (s *BasevhdlListener) EnterAlias_designator(ctx *Alias_designatorContext) {}
[ 0.32601863145828247, -0.043920453637838364, 0.23786242306232452, -0.18919439613819122, 0.07978471368551254, 0.4203084409236908, -0.027942217886447906, 0.41548773646354675, -0.012341233901679516, 0.22119958698749542, -0.049897607415914536, 0.5198676586151123, 0.7421090006828308, 1.226106882...
func (s *BasevhdlListener) ExitAlias_designator(ctx *Alias_designatorContext) {}
[ -0.06614052504301071, -0.19993625581264496, 0.23972292244434357, -0.3907696604728699, -0.5173365473747253, 0.5514299869537354, -0.27929195761680603, 0.7204070091247559, -0.005725337658077478, 0.7834490537643433, -0.14089642465114594, -0.3537719249725342, 1.3415849208831787, 0.9811651110649...
func (s *BasevhdlListener) EnterAlias_indication(ctx *Alias_indicationContext) {}
[ 0.1842668503522873, -0.5267635583877563, 0.16225780546665192, -0.3843817114830017, -0.3605223298072815, 0.8244722485542297, 0.08391433209180832, 0.8927801847457886, -0.5964547395706177, 0.8868130445480347, -0.4897790551185608, 0.21356958150863647, -0.26314693689346313, 1.1628636121749878, ...
func (s *BasevhdlListener) ExitAlias_indication(ctx *Alias_indicationContext) {}
[ -0.027511615306138992, -0.7490060329437256, 0.16355489194393158, -0.6053072810173035, -1.0312882661819458, 0.8736056685447693, 0.00997537188231945, 1.3851181268692017, -0.5185089111328125, 1.5331488847732544, -0.5386109352111816, -0.5897517800331116, 0.2046462893486023, 0.8382574915885925,...
func (s *BasevhdlListener) EnterAllocator(ctx *AllocatorContext) {}
[ -0.16154542565345764, -0.32423490285873413, 0.20943066477775574, -0.0896284282207489, -0.3254285454750061, 0.46844327449798584, 0.2542126178741455, -0.6599271297454834, 1.2523540258407593, 0.34401413798332214, 1.0834261178970337, 0.2435985505580902, -0.2567578852176666, 0.6793368458747864,...
func (s *BasevhdlListener) ExitAllocator(ctx *AllocatorContext) {}
[ -0.6683090925216675, -0.632636547088623, 0.22186653316020966, -0.280959814786911, -1.0400789976119995, 0.43987950682640076, -0.05696623772382736, 0.04286859557032585, 1.3083523511886597, 0.9391846656799316, 0.42274007201194763, -0.7997648119926453, 0.11806215345859528, 0.7177470326423645, ...
func (s *BasevhdlListener) EnterArchitecture_body(ctx *Architecture_bodyContext) {}
[ -0.17383678257465363, 0.7430065274238586, 0.2628117799758911, -0.04203856363892555, 1.3744537830352783, 0.2721560597419739, 1.1597899198532104, -0.27577006816864014, 0.7720043659210205, 1.0217256546020508, -0.08870801329612732, 0.5506023168563843, 0.23954284191131592, 0.6703120470046997, ...
func (s *BasevhdlListener) ExitArchitecture_body(ctx *Architecture_bodyContext) {}
[ -0.5508458614349365, 0.5019926428794861, 0.13956528902053833, 0.12553001940250397, 0.6264597773551941, 0.5205203294754028, 0.891185998916626, 0.0623478963971138, 0.7529184818267822, 1.667568325996399, -0.3687760531902313, -0.11488693952560425, 0.17931996285915375, 0.6020890474319458, 0.2...
func (s *BasevhdlListener) EnterArchitecture_declarative_part(ctx *Architecture_declarative_partContext) { }
[ 0.7103720903396606, 0.6228000521659851, 0.14934708178043365, -0.18546980619430542, 0.629193902015686, 1.1909842491149902, 0.08178331702947617, -0.17288798093795776, 0.08502894639968872, 0.4244122803211212, 0.6975036859512329, 0.43970441818237305, 0.6972159743309021, 0.20781093835830688, ...
func (s *BasevhdlListener) ExitArchitecture_declarative_part(ctx *Architecture_declarative_partContext) { }
[ 0.5006455183029175, 0.22293438017368317, 0.10846886038780212, -0.05652295798063278, -0.061983633786439896, 1.3468132019042969, -0.14293332397937775, 0.1778448522090912, 0.006446111015975475, 0.8334155082702637, 0.4653518497943878, -0.3217087686061859, 0.48889675736427307, 0.272475808858871...
func (s *BasevhdlListener) EnterArchitecture_statement(ctx *Architecture_statementContext) {}
[ -0.4689042866230011, 0.4654388725757599, 0.2342795431613922, 0.023579837754368782, 0.9941215515136719, 0.11904326826334, 1.1551501750946045, -0.5097821950912476, 0.8725934028625488, 0.9704059362411499, 0.018891463056206703, 0.5835176110267639, 0.32760292291641235, -0.12074233591556549, 0...
func (s *BasevhdlListener) ExitArchitecture_statement(ctx *Architecture_statementContext) {}
[ -0.7837845087051392, 0.27025067806243896, 0.1991576850414276, 0.10537052899599075, 0.22518585622310638, 0.2924206554889679, 1.0301395654678345, 0.04249568283557892, 0.8322842121124268, 1.813351035118103, -0.25850242376327515, -0.05879269167780876, 0.5295660495758057, -0.19983293116092682, ...
func (s *BasevhdlListener) EnterArchitecture_statement_part(ctx *Architecture_statement_partContext) { }
[ 0.21548981964588165, 0.24305099248886108, 0.024284077808260918, -0.15638601779937744, 0.6642285585403442, 0.3595821261405945, 0.3141952455043793, -0.725525975227356, 0.1588784009218216, 0.9928120374679565, 0.5538842082023621, 0.17172616720199585, 0.1039583757519722, 0.10773546993732452, ...
func (s *BasevhdlListener) ExitArchitecture_statement_part(ctx *Architecture_statement_partContext) {}
[ 0.032757606357336044, -0.12274858355522156, 0.05738493427634239, -0.16916094720363617, -0.12632372975349426, 0.6062483787536621, 0.03950690105557442, -0.1379794478416443, 0.12316131591796875, 1.4467285871505737, 0.35155487060546875, -0.4464085102081299, -0.012233943678438663, 0.08475694060...
func (s *BasevhdlListener) EnterArray_nature_definition(ctx *Array_nature_definitionContext) {}
[ 0.4782949686050415, -0.39115652441978455, 0.4991002082824707, 0.525561511516571, 1.1200584173202515, 0.052991680800914764, -0.6156587600708008, -0.674891471862793, -0.6576432585716248, 0.26604172587394714, 0.44566595554351807, 1.9095875024795532, -0.10820633172988892, 0.6710255742073059, ...
func (s *BasevhdlListener) ExitArray_nature_definition(ctx *Array_nature_definitionContext) {}
[ -0.06754056364297867, -0.6387073993682861, 0.43859702348709106, 0.29208022356033325, 0.6512099504470825, 0.5124163031578064, -0.5033190250396729, -0.08583971112966537, -0.7604401707649231, 1.1106626987457275, 0.49375027418136597, 1.1012065410614014, -0.11731637269258499, 0.6742827296257019...
func (s *BasevhdlListener) EnterArray_type_definition(ctx *Array_type_definitionContext) {}
[ 0.9845494627952576, -0.25417381525039673, 0.5635499954223633, 0.7438053488731384, 1.2088422775268555, -0.6152829527854919, -0.3212090730667114, -0.846584141254425, -0.49983441829681396, 0.5850216150283813, -0.06476538628339767, 1.1284937858581543, 0.16760779917240143, 0.8177366852760315, ...
func (s *BasevhdlListener) ExitArray_type_definition(ctx *Array_type_definitionContext) {}
[ 0.5036302208900452, -0.5336366891860962, 0.5270418524742126, 0.6208670735359192, 0.6195981502532959, -0.18367715179920197, -0.13697457313537598, -0.22671625018119812, -0.496072381734848, 1.319090485572815, -0.08988351374864578, 0.3397313356399536, 0.09529819339513779, 0.7817603945732117, ...
func (s *BasevhdlListener) EnterAssertion(ctx *AssertionContext) {}
[ 0.18805614113807678, -1.0887815952301025, 0.22013969719409943, 0.1965227574110031, 0.4884931445121765, 0.49774831533432007, 1.225150227546692, 0.14774058759212494, 0.3308843672275543, 0.44433310627937317, 0.509299635887146, 0.3591880202293396, -1.5829706192016602, 1.3168712854385376, -0....
func (s *BasevhdlListener) ExitAssertion(ctx *AssertionContext) {}
[ -0.5608670115470886, -1.2423580884933472, 0.16676509380340576, -0.3500652313232422, -0.3254535496234894, 0.7777773141860962, 0.8912899494171143, 0.9537621140480042, 0.14359687268733978, 1.1428390741348267, -0.13455697894096375, -0.3319524824619293, -1.2316595315933228, 1.0651180744171143, ...
func (s *BasevhdlListener) EnterAssertion_statement(ctx *Assertion_statementContext) {}
[ -0.14623814821243286, -0.6461432576179504, 0.2552686631679535, 0.34460851550102234, 0.39035168290138245, -0.0411665216088295, 0.9995983242988586, -0.5994346737861633, 0.485446959733963, 0.46564167737960815, 0.7284504175186157, 0.21486620604991913, -0.7327303886413574, 0.6710507273674011, ...
func (s *BasevhdlListener) ExitAssertion_statement(ctx *Assertion_statementContext) {}
[ -0.2011507749557495, -0.7408925890922546, 0.2764625549316406, 0.2290797233581543, -0.6137973666191101, 0.338506281375885, 0.8357096910476685, -0.006401451770216227, 0.40513181686401367, 1.2610979080200195, 0.5722259879112244, -0.18038447201251984, -0.2510679364204407, 0.3769077956676483, ...
func (s *BasevhdlListener) EnterAssociation_element(ctx *Association_elementContext) {}
[ 0.06787775456905365, 0.047301966696977615, 0.08220211416482925, 0.9124040007591248, 1.266481637954712, 0.467265248298645, 1.000931739807129, -0.4674816429615021, -0.1975332647562027, 0.3571721911430359, 0.9915100336074829, 0.4422685205936432, -0.062070440500974655, 0.5910400748252869, 1....
func (s *BasevhdlListener) ExitAssociation_element(ctx *Association_elementContext) {}
[ -0.18182481825351715, -0.17292802035808563, 0.1321340650320053, 0.722874641418457, 0.40779730677604675, 0.7260963916778564, 0.9151566624641418, -0.0646522045135498, -0.18030695617198944, 1.2043485641479492, 0.9440165758132935, -0.2884107232093811, 0.021206939592957497, 0.46333837509155273,...
func (s *BasevhdlListener) EnterAssociation_list(ctx *Association_listContext) {}
[ -0.3599187433719635, 0.05254758149385452, 0.04892385005950928, 0.573984682559967, 1.2741074562072754, -0.11978166550397873, 0.7333360314369202, 0.13173875212669373, 0.1330053061246872, 0.8822198510169983, 0.42764219641685486, -0.3307167589664459, 0.07040049135684967, 0.3607531785964966, ...
func (s *BasevhdlListener) ExitAssociation_list(ctx *Association_listContext) {}
[ -0.596198320388794, -0.13642561435699463, 0.13667121529579163, 0.4984845817089081, 0.34428325295448303, 0.26307034492492676, 0.6385542750358582, 0.5593452453613281, 0.09325318783521652, 1.5652083158493042, 0.06121889129281044, -0.9849427342414856, 0.18039454519748688, 0.26220130920410156, ...
func (s *BasevhdlListener) EnterAttribute_declaration(ctx *Attribute_declarationContext) {}
[ 0.9222970604896545, -0.7862009406089783, 0.49264073371887207, -0.31894004344940186, 0.8463399410247803, 0.10988416522741318, 0.8323997259140015, 0.22005920112133026, 0.025611810386180878, -0.05649225786328316, 0.724047839641571, 1.5688461065292358, 0.09351468086242676, 0.6956989765167236, ...
func (s *BasevhdlListener) ExitAttribute_declaration(ctx *Attribute_declarationContext) {}
[ 0.558313250541687, -1.0644822120666504, 0.43854767084121704, -0.5651829242706299, 0.2265576869249344, 0.4246153235435486, 0.8556730151176453, 0.7498363256454468, 0.0019080797210335732, 0.7478232979774475, 0.41864311695098877, 0.7379953861236572, 0.2985914647579193, 0.48336711525917053, 0...
func (s *BasevhdlListener) EnterAttribute_designator(ctx *Attribute_designatorContext) {}
[ -0.1990300863981247, -0.14506544172763824, 0.2404012233018875, -0.34512266516685486, 0.46557196974754333, -0.05313820019364357, 0.2922150194644928, -0.31234708428382874, 0.30078327655792236, 0.019838955253362656, 0.47269773483276367, 0.5443804264068604, 0.6110544204711914, 0.72212809324264...
func (s *BasevhdlListener) ExitAttribute_designator(ctx *Attribute_designatorContext) {}
[ -0.6401809453964233, -0.267403244972229, 0.2157098352909088, -0.2857043743133545, -0.11828963458538055, 0.25570666790008545, 0.20176827907562256, 0.010380121879279613, 0.18462103605270386, 0.5840185880661011, 0.26045921444892883, -0.4152180254459381, 0.7596190571784973, 0.5603797435760498,...
func (s *BasevhdlListener) EnterAttribute_specification(ctx *Attribute_specificationContext) {}
[ 0.22970467805862427, -0.4784111976623535, 0.18341602385044098, -0.7623870372772217, 0.970499575138092, -0.29178157448768616, 0.33787408471107483, -0.31134897470474243, -0.3026106357574463, 0.6763907074928284, -0.04476231709122658, 0.6960955262184143, 0.9453791379928589, 0.23640361428260803...
func (s *BasevhdlListener) ExitAttribute_specification(ctx *Attribute_specificationContext) {}
[ -0.03442668169736862, -0.8334702849388123, 0.15517714619636536, -0.9044374227523804, 0.28588443994522095, 0.024642569944262505, 0.45341187715530396, 0.4144730567932129, -0.40147021412849426, 1.393815040588379, -0.024886945262551308, 0.07519032061100006, 1.0328059196472168, 0.10223254561424...
func (s *BasevhdlListener) EnterBase_unit_declaration(ctx *Base_unit_declarationContext) {}
[ -0.016353024169802666, -0.49176040291786194, 0.5113237500190735, -0.1911877691745758, 1.0816397666931152, 0.5701366066932678, 0.6748683452606201, 0.011144153773784637, -0.517016589641571, -0.5640047788619995, 0.3266344964504242, 1.6571965217590332, -0.6094056367874146, 0.4196881651878357, ...
func (s *BasevhdlListener) ExitBase_unit_declaration(ctx *Base_unit_declarationContext) {}
[ -0.1270560920238495, -0.6165208220481873, 0.5239918231964111, -0.31217190623283386, 0.3801671266555786, 0.8529669046401978, 0.4324778914451599, 0.6056088209152222, -0.35842180252075195, 0.06120890751481056, 0.02154098078608513, 0.6602645516395569, -0.5661308765411377, 0.3265223205089569, ...
func (s *BasevhdlListener) EnterBinding_indication(ctx *Binding_indicationContext) {}
[ -0.4884021282196045, -0.548457682132721, 0.1572871208190918, 0.3778062164783478, -0.4115397036075592, 1.284693956375122, 0.4579954147338867, 0.2428336888551712, -0.29155856370925903, 0.5546082854270935, -0.16165874898433685, 0.17419400811195374, -0.5297367572784424, 1.112551212310791, 0....
func (s *BasevhdlListener) ExitBinding_indication(ctx *Binding_indicationContext) {}
[ -0.6579442620277405, -0.6514011025428772, 0.16360460221767426, 0.2325824350118637, -1.0508970022201538, 1.5174331665039062, 0.5223289132118225, 0.707505464553833, -0.2688632905483246, 1.3951889276504517, -0.42658278346061707, -0.44554752111434937, -0.3681577444076538, 0.7186496257781982, ...
func (s *BasevhdlListener) EnterBlock_configuration(ctx *Block_configurationContext) {}
[ 0.5693454742431641, 0.6310096979141235, 0.49218663573265076, 0.8576520681381226, 0.9310408234596252, -0.857582151889801, 0.6463474631309509, -0.7819622755050659, -0.5429782867431641, 1.1433740854263306, -0.10437407344579697, 0.46494364738464355, -0.7803859114646912, 0.8717042803764343, 0...
func (s *BasevhdlListener) ExitBlock_configuration(ctx *Block_configurationContext) {}
[ 0.09023096412420273, 0.5269660353660583, 0.39687567949295044, 0.6216786503791809, 0.3808893859386444, -0.5861942172050476, 0.6761372685432434, -0.061922166496515274, -0.5995376110076904, 1.6077240705490112, -0.33718186616897583, -0.08581250160932541, -0.7123984098434448, 0.8395196795463562...
func (s *BasevhdlListener) EnterBlock_declarative_item(ctx *Block_declarative_itemContext) {}
[ 0.24437914788722992, 0.3512534499168396, 0.5197178721427917, 1.6963086128234863, 0.6821829080581665, 0.861024022102356, -0.16669303178787231, 0.07696781307458878, -0.6827118992805481, -0.04908280447125435, 0.6695846915245056, 0.7175756096839905, -0.1530042588710785, 0.19694049656391144, ...
func (s *BasevhdlListener) ExitBlock_declarative_item(ctx *Block_declarative_itemContext) {}
[ -0.18644912540912628, 0.0816013440489769, 0.6009932160377502, 1.3171032667160034, 0.027839774265885353, 0.6668298840522766, -0.10501690953969955, 0.406164288520813, -0.6971421837806702, 0.3626168668270111, 0.5306389927864075, -0.021557757630944252, -0.11292396485805511, 0.29721125960350037...
func (s *BasevhdlListener) EnterBlock_declarative_part(ctx *Block_declarative_partContext) {}
[ 0.7103658318519592, 0.4025181829929352, 0.5288025736808777, 0.913847804069519, 0.6493170857429504, 0.8189582228660583, -0.37057533860206604, -0.5905340313911438, -0.8979911804199219, 0.05865096300840378, 0.9673730134963989, 0.596368670463562, -0.706570565700531, 0.538036048412323, 1.0179...
func (s *BasevhdlListener) ExitBlock_declarative_part(ctx *Block_declarative_partContext) {}
[ 0.32179492712020874, 0.056953251361846924, 0.5065994262695312, 0.6879355311393738, 0.10560239106416702, 0.9269180297851562, -0.401041716337204, -0.12559029459953308, -1.108327865600586, 0.3011762499809265, 0.895890474319458, -0.17375119030475616, -0.6870020627975464, 0.670722246170044, 0...
func (s *BasevhdlListener) EnterBlock_header(ctx *Block_headerContext) {}
[ 0.2737393081188202, 0.2636570334434509, 0.6869933605194092, 1.0408533811569214, 0.7865129709243774, -0.5836238265037537, 0.3630874454975128, -0.9276567697525024, -0.5948301553726196, 1.0070340633392334, 0.27308329939842224, 0.7432405352592468, -0.9565472602844238, 0.16133785247802734, 0....
func (s *BasevhdlListener) ExitBlock_header(ctx *Block_headerContext) {}
[ -0.10072128474712372, -0.033790282905101776, 0.6537083387374878, 0.846903383731842, 0.0896313264966011, -0.3427523970603943, 0.09601704031229019, -0.24649998545646667, -0.656727135181427, 1.7076776027679443, -0.2091423124074936, 0.11533083766698837, -1.0143482685089111, 0.22695773839950562...
func (s *BasevhdlListener) EnterBlock_specification(ctx *Block_specificationContext) {}
[ 0.6761894822120667, -0.06192082539200783, 0.5095943212509155, 0.43286430835723877, 0.8978436589241028, -0.7252503037452698, 0.013448689132928848, -0.3891562223434448, -0.7025724649429321, 0.9400116205215454, -0.044511619955301285, 0.7772014141082764, -0.23204883933067322, 0.413632661104202...
func (s *BasevhdlListener) ExitBlock_specification(ctx *Block_specificationContext) {}
[ 0.11740376055240631, -0.24605180323123932, 0.434233695268631, 0.21340623497962952, 0.303223192691803, -0.5637906789779663, 0.10010450333356857, 0.4527095556259155, -0.8447607159614563, 1.4517468214035034, -0.28164729475975037, 0.19983430206775665, -0.02222186140716076, 0.3908539116382599, ...
func (s *BasevhdlListener) EnterBlock_statement(ctx *Block_statementContext) {}
[ -0.07975909858942032, 0.3554038405418396, 0.6127908229827881, 0.906568706035614, 0.7475100159645081, -0.6515681743621826, 0.3555048108100891, -1.2772985696792603, 0.17039231956005096, 1.1275962591171265, 0.34420764446258545, 0.6700540781021118, -1.253902792930603, -0.04712923988699913, 0...
func (s *BasevhdlListener) ExitBlock_statement(ctx *Block_statementContext) {}
[ -0.3728758990764618, 0.25668472051620483, 0.5910604000091553, 0.6420776844024658, 0.3031821846961975, -0.6991251707077026, 0.23207931220531464, -0.45216503739356995, 0.03889351710677147, 1.594146966934204, -0.007340700831264257, 0.1548183560371399, -1.0076723098754883, -0.05489818006753921...
func (s *BasevhdlListener) EnterBlock_statement_part(ctx *Block_statement_partContext) {}
[ 0.5636249780654907, -0.1763438731431961, 0.3019946217536926, 0.8667153120040894, 0.5226125717163086, -0.28504258394241333, -0.28494471311569214, -1.248213291168213, -0.5881832838058472, 0.7223159074783325, 0.904637336730957, 0.20177218317985535, -1.5040245056152344, 0.3084048628807068, 0...
func (s *BasevhdlListener) ExitBlock_statement_part(ctx *Block_statement_partContext) {}
[ 0.3910025656223297, -0.3597494065761566, 0.4007352590560913, 0.6645309925079346, -0.07049839943647385, -0.09133119136095047, -0.40206629037857056, -0.44169408082962036, -0.6143540740013123, 1.1600494384765625, 0.6528231501579285, -0.38369375467300415, -1.5854341983795166, 0.240267187356948...
func (s *BasevhdlListener) EnterBranch_quantity_declaration(ctx *Branch_quantity_declarationContext) { }
[ 0.9531421065330505, -0.6347071528434753, 0.6532446146011353, 0.15918485820293427, 0.6392183303833008, 0.0073379892855882645, 0.7635486125946045, -0.5421978831291199, -0.9113094210624695, -0.7386619448661804, -0.01082406472414732, 1.5349586009979248, -0.4604896903038025, 0.15710319578647614...
func (s *BasevhdlListener) ExitBranch_quantity_declaration(ctx *Branch_quantity_declarationContext) {}
[ 0.7942221164703369, -0.8668674230575562, 0.6499029397964478, -0.11926167458295822, 0.08461826294660568, 0.3197019696235657, 0.4284677505493164, 0.17072400450706482, -0.9223263263702393, 0.11376131325960159, -0.24685345590114594, 0.7126191258430481, -0.6004027128219604, 0.0605538971722126, ...
func (s *BasevhdlListener) EnterBreak_element(ctx *Break_elementContext) {}
[ -0.425718754529953, 0.5386025309562683, 0.34473374485969543, 1.4215598106384277, 0.8433113694190979, 0.4213264286518097, 0.6704949736595154, -0.7118628621101379, -0.2866606116294861, 0.13229160010814667, -0.39954063296318054, 1.1090673208236694, -0.6230428218841553, 0.7150759100914001, 0...
func (s *BasevhdlListener) ExitBreak_element(ctx *Break_elementContext) {}
[ -0.5695765018463135, 0.5248751044273376, 0.49262645840644836, 1.3845064640045166, 0.04124565050005913, 0.8002431392669678, 0.6495205163955688, -0.2923317551612854, -0.34572547674179077, 0.9019019603729248, -0.7373239994049072, 0.20336796343326569, -0.7058306336402893, 0.5319898128509521, ...
func (s *BasevhdlListener) EnterBreak_list(ctx *Break_listContext) {}
[ -0.4604698717594147, 0.19898977875709534, 0.1794777512550354, 0.8104164600372314, 0.8639093637466431, 0.07301559299230576, 0.5104674696922302, -0.4397242069244385, -0.03845548629760742, 0.7094784379005432, -1.2549492120742798, 0.09989199042320251, -0.12028522789478302, 0.563249409198761, ...
func (s *BasevhdlListener) ExitBreak_list(ctx *Break_listContext) {}
[ -0.40522801876068115, 0.3572300672531128, 0.30510303378105164, 0.8770428895950317, 0.0374179370701313, 0.44871029257774353, 0.5095898509025574, -0.07869245857000351, -0.21652750670909882, 1.351192831993103, -1.7642438411712646, -0.6632535457611084, -0.3244069814682007, 0.4089193642139435, ...
func (s *BasevhdlListener) EnterBreak_selector_clause(ctx *Break_selector_clauseContext) {}
[ -1.0828795433044434, -0.542752742767334, 0.2642713785171509, 0.07676608115434647, 1.1383857727050781, 0.06388265639543533, 0.2033669799566269, -0.9764183163642883, -0.17320331931114197, 0.809834361076355, -0.032606273889541626, 0.904026985168457, -0.5787544250488281, -0.512015700340271, ...
func (s *BasevhdlListener) ExitBreak_selector_clause(ctx *Break_selector_clauseContext) {}
[ -0.8155055046081543, -0.6718938946723938, 0.3985660970211029, 0.19373707473278046, 0.2402220368385315, 0.5511291027069092, 0.10199041664600372, -0.5725312232971191, -0.12296987324953079, 1.5454130172729492, -0.5365919470787048, 0.004436565563082695, -0.5539724230766296, -0.7922322750091553...
func (s *BasevhdlListener) EnterBreak_statement(ctx *Break_statementContext) {}
[ -0.662049412727356, 0.1503477394580841, 0.3536711037158966, 0.8129065632820129, 0.4722694158554077, -0.14350195229053497, 0.3710359036922455, -1.1675962209701538, 0.3038226068019867, 0.9813059568405151, -0.5080994367599487, 0.8463700413703918, -0.593104362487793, -0.08979366719722748, 0....
func (s *BasevhdlListener) ExitBreak_statement(ctx *Break_statementContext) {}
[ -0.7744442820549011, 0.23949401080608368, 0.4707435369491577, 0.7229516506195068, -0.352077454328537, 0.20719757676124573, 0.3942292034626007, -0.5752629041671753, 0.1052536815404892, 1.7789403200149536, -1.0235852003097534, 0.07891318202018738, -0.5277737975120544, -0.328478068113327, 0...