text
stringlengths
11
6.3k
embedding
listlengths
768
768
func (r *immutableRange) Open() Cursor { return &basicCursor{ next: 0, elements: r.elements, } }
[ -1.5457613468170166, -0.4789840281009674, 0.13062313199043274, 0.03069397620856762, -0.38991665840148926, 0.33268314599990845, 0.4234458804130554, 0.899107038974762, 0.10151832550764084, -0.2934191823005676, -0.11840523034334183, 0.6689236760139465, -0.9253115653991699, 0.2095058262348175,...
func (r *immutableRange) Partition(e Element, o Order) (SortedRange, SortedRange) { if len(r.elements) == 0 { return emptyRange, emptyRange } found := func() int { lower := 0 upper := len(r.elements) for lower < upper { mid := (lower + upper) / 2 sortsLeft := o(r.elements[mid], e) sortsRight := o(e,...
[ -0.44193902611732483, -0.16707085072994232, 0.7360345125198364, 0.34349408745765686, -0.2620801329612732, -0.4085121154785156, -0.09280677884817123, -0.3306674659252167, 0.586135745048523, -0.006211209110915661, -0.10214440524578094, -0.057027801871299744, -0.8723441958427429, 0.5683947801...
func CreateStartScripts(cssInfo chan map[string]string, machine string, pbsLaunchChannel chan string, done chan struct{}) { if Debug { defer debug.TimeMe(time.Now()) } var ( infoMap map[string]string err error // common error container currentDir string // current local directory ...
[ 0.14664176106452942, -0.5027493834495544, 0.6198348999023438, -0.09388670325279236, 0.14709272980690002, 0.574303150177002, -0.5685206055641174, -0.5498642325401306, -0.47156965732574463, 0.00020941146067343652, 0.06081083416938782, 0.695010781288147, -0.4148317873477936, 1.182117581367492...
func NewApp() *App { v := new(App) v.opened = false v.simType = "runreset" v.status = "Stopped" v.mode = "Main" v.incSize = 10.0 v.decSize = 10.0 v.keyMaps = make([]IKeyMap, 10) v.keyMaps[0] = NewKeyMap0(v) v.keyMaps[1] = NewKeyMap1(v) return v }
[ 0.2778530716896057, -0.27708566188812256, 0.4639666676521301, 0.7551952600479126, -0.9526795744895935, 0.5489272475242615, 0.5040981769561768, -0.1232253909111023, 0.31937000155448914, 0.662083089351654, -0.37663033604621887, -0.15882238745689392, -0.24847747385501862, -0.13054296374320984...
func (v *App) Open() { v.initialize() v.opened = true }
[ 0.010784595273435116, 0.043787188827991486, -0.05741611868143082, 0.2370675951242447, -0.672252893447876, 1.383622407913208, 0.28191325068473816, 1.3845359086990356, 0.5092094540596008, -0.18813984096050262, -0.12816792726516724, 0.49629509449005127, 0.20406991243362427, 0.4424493312835693...
func (v *App) SetFont(fontPath string, size int) { v.nFont = NewFont(fontPath, size) }
[ 0.6027666330337524, -0.2825690805912018, 0.1450519859790802, 0.26845788955688477, -0.2225637137889862, -0.3968775272369385, 0.2888391613960266, -0.5140155553817749, 0.9104943871498108, -0.6438602209091187, -0.7532152533531189, 0.3557949662208557, 0.11720184981822968, 0.25588345527648926, ...
func (v *App) Run() { // log.Println("Starting App polling") v.running = true sdl.SetEventFilterFunc(v.filterEvent, nil) // sdl.SetHint(sdl.HINT_RENDER_SCALE_QUALITY, "linear") v.renderer.SetDrawColor(64, 64, 64, 255) v.renderer.Clear() // v.pointsGraph.SetSeries(v.pointsGraph.Accessor()) v.spikeGraph.SetSeri...
[ -0.04986819624900818, -0.12545232474803925, 0.5552376508712769, 0.4037885367870331, -0.29607442021369934, 0.6997007727622986, 1.036217451095581, 0.23668721318244934, 0.361676961183548, 0.5318782925605774, -0.033003486692905426, -0.30303671956062317, -0.20459190011024475, 0.3291139900684356...
func (v *App) Quit() { v.running = false }
[ 0.2528901696205139, -0.360591322183609, -0.07765313982963562, -0.17249126732349396, 0.16950057446956635, 1.87144935131073, 0.36888742446899414, -0.7025840878486633, -0.6635224223136902, 0.7485922574996948, 0.0587788000702858, 0.41462743282318115, -0.42749518156051636, 0.1130472868680954, ...
func (v *App) Close() { if !v.opened { return } log.Println("\nClosing App...") log.Println("Destroying font") v.nFont.Destroy() log.Println("Destroying text(s)") v.txtSimStatus.Destroy() // v.dynaTxt.Destroy() v.txtActiveProperty.Destroy() log.Println("Destroying graphs") v.spikeGraph.Destroy() v.exp...
[ 0.24162977933883667, -0.25882643461227417, 0.718835175037384, 0.5435906648635864, -0.7445154190063477, 0.48238605260849, 0.7382982969284058, -0.8771917819976807, 0.29682400822639465, -0.24806953966617584, 0.5765872597694397, -0.227064311504364, -0.1852196305990219, 1.0326718091964722, 0....
func (v *App) Configure() { fmt.Println("App configuring...") v.txtSimStatus = NewText(v.nFont, v.renderer) err := v.txtSimStatus.SetText("Status: "+v.status, sdl.Color{R: 127, G: 64, B: 0, A: 255}) if err != nil { v.Close() panic(err) } v.txtActiveProperty = NewField(v.nFont, v.renderer) v.txtActiveProper...
[ 0.08516187220811844, 0.03159921616315842, 0.5989823341369629, 0.07643583416938782, -0.13290780782699585, 0.4082638919353485, 0.16446149349212646, 0.3017961382865906, -0.32212385535240173, 0.07168431580066681, -0.4276113510131836, -0.7045437693595886, 0.08437205106019974, 0.29393270611763, ...
func (v *App) Command(args []string) { switch args[0] { case "quit": v.shutdown() case "set": v.target = args[1] case "type": v.simType = args[1] fmt.Printf("Type switched to `%s`\n", v.simType) case "con": v.connect() case "ping": v.runResetSim.Send("ping") case "start": v.start() case "go": go...
[ -0.4195038378238678, -0.09496523439884186, 0.6794759631156921, 0.7850651741027832, 1.1702262163162231, 0.5771756768226624, -0.10844587534666061, -0.5627138018608093, 0.6081907153129578, 0.20338444411754608, 0.2188718169927597, 0.5582139492034912, -0.40172094106674194, -0.021236948668956757...
func (v *App) pollForMessage() { var response string fmt.Print("Waiting for messages from sim...\n") for response != "Stopped" { response = <-v.statusComm // Wait for response v.status = response msg := "Status: " + v.status v.txtSimStatus.SetText(msg, sdl.Color{R: 255, G: 127, B: 0, A: 255}) } fmt.Prin...
[ 0.0406801775097847, 0.01909809187054634, 0.462486207485199, -0.9265114665031433, 0.29768967628479004, 0.4108228385448456, -0.07727149873971939, -0.1626022607088089, -0.2470412403345108, 0.19872792065143585, 0.396472305059433, -0.5783682465553284, -0.15233387053012848, 1.0163308382034302, ...
func NewInlineResponse200115() *InlineResponse200115 { this := InlineResponse200115{} return &this }
[ -0.10285930335521698, -1.3314768075942993, -0.005579253658652306, -0.17321942746639252, 0.2223316729068756, 0.04398370906710625, 0.7155567407608032, 0.7418515086174011, 0.1529979556798935, -0.5445370674133301, -1.7753345966339111, -1.046677589416504, -1.0538352727890015, -0.502477824687957...
func NewInlineResponse200115WithDefaults() *InlineResponse200115 { this := InlineResponse200115{} return &this }
[ -0.4012288749217987, -0.525766909122467, 0.17689387500286102, -0.26870816946029663, 1.1370774507522583, -0.04930511862039566, -0.07780379801988602, 0.5312453508377075, 0.261087030172348, -0.7232155203819275, -1.6665576696395874, -1.9094504117965698, -1.1771900653839111, -0.5070122480392456...
func (o *InlineResponse200115) GetAttachments() []map[string]interface{} { if o == nil || o.Attachments == nil { var ret []map[string]interface{} return ret } return *o.Attachments }
[ -0.27333828806877136, 0.17677147686481476, 0.5191349983215332, 0.5960615873336792, -0.05074859410524368, -0.646429181098938, 0.694691002368927, -0.8893886208534241, 1.3525141477584839, -0.5799014568328857, 0.15486711263656616, -1.4318978786468506, -0.6429924964904785, 1.0523710250854492, ...
func (o *InlineResponse200115) GetAttachmentsOk() (*[]map[string]interface{}, bool) { if o == nil || o.Attachments == nil { return nil, false } return o.Attachments, true }
[ 0.2660329043865204, 0.10100792348384857, 0.40009641647338867, 0.400012344121933, -0.5696653723716736, -0.6122332811355591, 1.0648096799850464, -1.259386420249939, 0.498685747385025, 0.32141950726509094, -0.7085937857627869, -0.7729191184043884, 0.2177964746952057, 0.22297005355358124, 0....
func (o *InlineResponse200115) HasAttachments() bool { if o != nil && o.Attachments != nil { return true } return false }
[ 0.3681037127971649, 0.7757242918014526, 0.30332377552986145, 0.09705560654401779, 0.11102467030286789, -0.3166303038597107, 0.3427974283695221, -0.21492619812488556, 0.7373729348182678, -1.1464799642562866, -0.2834905683994293, -1.1715348958969116, -0.2856449782848358, 0.41001883149147034,...
func (o *InlineResponse200115) GetAttachmentsCount() string { if o == nil || o.AttachmentsCount == nil { var ret string return ret } return *o.AttachmentsCount }
[ 0.6429799199104309, 0.6017356514930725, 0.18279412388801575, 0.21755456924438477, -0.3642120659351349, -0.4919487237930298, 0.5679426789283752, -0.7986511588096619, 0.5845392942428589, -0.8063728213310242, 0.3808766305446625, -1.593841552734375, -0.308860719203949, 0.30731475353240967, 0...
func (o *InlineResponse200115) GetAttachmentsCountOk() (*string, bool) { if o == nil || o.AttachmentsCount == nil { return nil, false } return o.AttachmentsCount, true }
[ 0.8259404301643372, 0.38304048776626587, 0.4748995006084442, 0.37549182772636414, -0.28738999366760254, 0.02911335788667202, 0.8632020950317383, -0.48725053668022156, -0.2944355309009552, 0.20945647358894348, -0.693861186504364, -1.1427597999572754, 0.5971841812133789, 0.10928166657686234,...
func (o *InlineResponse200115) HasAttachmentsCount() bool { if o != nil && o.AttachmentsCount != nil { return true } return false }
[ 0.7665743231773376, 0.6053358912467957, 0.17767071723937988, -0.3266769349575043, 0.1525702327489853, -0.6743707656860352, 0.2240806221961975, -0.36260223388671875, 0.03322668746113777, -1.3661350011825562, -0.5110644102096558, -1.002701759338379, 0.2449137419462204, 0.4232662320137024, ...
func (o *InlineResponse200115) SetAttachmentsCount(v string) { o.AttachmentsCount = &v }
[ 0.8249284029006958, -0.29626262187957764, -0.3980500400066376, -0.46370911598205566, -1.0021584033966064, -0.3722859025001526, 0.3447515666484833, -1.5523194074630737, -0.09320706874132156, -0.5323904156684875, -0.10750428587198257, -0.31816980242729187, -0.14288224279880524, -0.6308504343...
func (o *InlineResponse200115) GetAuthor() InlineResponse200115Author { if o == nil || o.Author == nil { var ret InlineResponse200115Author return ret } return *o.Author }
[ 0.3386702537536621, 0.20931805670261383, 0.3213934004306793, 1.3497681617736816, -0.17325808107852936, -0.44329795241355896, 1.6818815469741821, 0.10836869478225708, 1.3812402486801147, -0.8962624669075012, -0.46360933780670166, -1.1930686235427856, -0.7259109616279602, 0.4529811143875122,...
func (o *InlineResponse200115) GetAuthorOk() (*InlineResponse200115Author, bool) { if o == nil || o.Author == nil { return nil, false } return o.Author, true }
[ 0.14467215538024902, -0.4057343602180481, 0.37444058060646057, 1.2074625492095947, 0.2990783751010895, -0.012707212939858437, 1.5782475471496582, 1.0307213068008423, 0.21494868397712708, 0.263191282749176, -0.39466506242752075, -0.1549837738275528, 0.20111823081970215, 0.26600342988967896,...
func (o *InlineResponse200115) HasAuthor() bool { if o != nil && o.Author != nil { return true } return false }
[ 0.45175543427467346, -0.027361351996660233, 0.2096446305513382, 0.6663153171539307, 0.31726741790771484, -0.5179866552352905, 0.7626039981842041, 1.116727352142334, 0.5437595248222351, -0.8587779402732849, -0.5866212248802185, -0.9776338338851929, -0.0939110741019249, 0.44848906993865967, ...
func (o *InlineResponse200115) SetAuthor(v InlineResponse200115Author) { o.Author = &v }
[ 0.21987348794937134, -0.774510383605957, -0.1037948802113533, 0.8243505954742432, -0.438045471906662, -0.04934679716825485, 0.9269179105758667, -0.3615662753582001, 0.8032031655311584, -0.38333696126937866, -0.7030936479568481, 0.013891289941966534, 0.20635810494422913, -0.5114392042160034...
func (o *InlineResponse200115) GetBody() string { if o == nil || o.Body == nil { var ret string return ret } return *o.Body }
[ 0.24488137662410736, 0.5355430841445923, 0.2794181704521179, 0.8958861231803894, 0.6342543959617615, -0.1253236085176468, 0.7468811273574829, -0.7422139048576355, 1.8744151592254639, -0.45391541719436646, 0.007986938580870628, -1.407151460647583, -0.5833608508110046, 0.637127697467804, 1...
func (o *InlineResponse200115) GetBodyOk() (*string, bool) { if o == nil || o.Body == nil { return nil, false } return o.Body, true }
[ 0.26753154397010803, 0.3292134404182434, 0.3784978687763214, 0.7293517589569092, 0.2831456661224365, 0.4828000068664551, 0.562643826007843, 0.2601947486400604, 0.7116772532463074, 0.8218854069709778, -1.0268899202346802, -0.8411508202552795, 0.08101950585842133, 0.5984209775924683, 0.386...
func (o *InlineResponse200115) HasBody() bool { if o != nil && o.Body != nil { return true } return false }
[ 0.27088338136672974, 0.49648013710975647, 0.30001676082611084, 0.47765442728996277, 1.2010592222213745, -0.1550753265619278, 0.2128634750843048, 0.1017685979604721, 1.5681387186050415, -0.6938878893852234, -0.5571697950363159, -1.3705629110336304, -0.3363508880138397, 0.32611966133117676, ...
func (o *InlineResponse200115) SetBody(v string) { o.Body = &v }
[ 0.021733438596129417, -0.22529324889183044, -0.21856918931007385, 0.37661850452423096, -0.5943983793258667, -0.1900576502084732, 0.11868184804916382, -1.2457458972930908, 0.9730156064033508, -0.06264378130435944, -0.5502347946166992, 0.4444071352481842, -0.6737078428268433, -0.538943648338...
func (o *InlineResponse200115) GetCanDelete() bool { if o == nil || o.CanDelete == nil { var ret bool return ret } return *o.CanDelete }
[ 0.21272839605808258, -0.13270626962184906, 0.2807488441467285, 1.2630329132080078, -0.13155682384967804, 0.2383030354976654, 0.5461293458938599, 0.6052097082138062, 0.39667826890945435, -0.10777328908443451, 0.315017431974411, -0.8909464478492737, -0.5868011116981506, 0.3651981055736542, ...
func (o *InlineResponse200115) GetCanDeleteOk() (*bool, bool) { if o == nil || o.CanDelete == nil { return nil, false } return o.CanDelete, true }
[ 0.40181857347488403, -0.5827351808547974, 0.2167699933052063, 1.0942583084106445, -0.017829440534114838, 0.7574458718299866, 0.7641369700431824, 1.3140192031860352, -0.15650729835033417, 0.5756666660308838, -0.12010298669338226, -0.23305535316467285, 0.5645503401756287, 0.9465171694755554,...
func (o *InlineResponse200115) HasCanDelete() bool { if o != nil && o.CanDelete != nil { return true } return false }
[ 1.0805121660232544, 0.2383229285478592, 0.27356424927711487, 0.7470987439155579, 0.8149780631065369, -0.8455708026885986, 0.027043599635362625, 1.0634486675262451, -0.3550454080104828, -0.07810595631599426, -0.31522610783576965, -0.7581312656402588, 0.22277942299842834, 0.4300881326198578,...
func (o *InlineResponse200115) SetCanDelete(v bool) { o.CanDelete = &v }
[ 0.5189297199249268, 0.15247231721878052, -0.3341026306152344, 1.0246775150299072, -0.39419254660606384, 0.008022140711545944, 0.2565871477127075, -0.36471882462501526, -0.7089411020278931, 0.6971019506454468, 0.2569589912891388, 0.2632935643196106, -0.15966056287288666, -0.5663781762123108...
func (o *InlineResponse200115) GetCanEditContents() bool { if o == nil || o.CanEditContents == nil { var ret bool return ret } return *o.CanEditContents }
[ -0.7234074473381042, 0.05945141240954399, 0.40948906540870667, 0.5729107856750488, -0.73872971534729, 0.3243972063064575, 0.8539965748786926, -0.2874128818511963, -0.24883915483951569, -0.427625447511673, 0.3119620382785797, -0.9141263365745544, -0.8300461173057556, -0.1975404918193817, ...
func (o *InlineResponse200115) GetCanEditContentsOk() (*bool, bool) { if o == nil || o.CanEditContents == nil { return nil, false } return o.CanEditContents, true }
[ -0.5926299691200256, -0.646122932434082, 0.3712747097015381, 0.2798687219619751, -0.5101896524429321, -0.15137992799282074, 0.8192275166511536, -0.27727872133255005, -0.2754378914833069, -0.09906870126724243, -0.42355531454086304, -0.58030104637146, 0.3843066394329071, 0.12422459572553635,...
func (o *InlineResponse200115) HasCanEditContents() bool { if o != nil && o.CanEditContents != nil { return true } return false }
[ -0.24976390600204468, 0.12920516729354858, 0.2584470212459564, 0.056622087955474854, -0.023807547986507416, -0.8113693594932556, 0.6221397519111633, 0.10007082670927048, -0.5001641511917114, -0.6821760535240173, -0.35478267073631287, -0.7844918966293335, 0.007130770478397608, 0.32096546888...
func (o *InlineResponse200115) SetCanEditContents(v bool) { o.CanEditContents = &v }
[ -0.8353719115257263, -0.24247634410858154, -0.02793482318520546, 0.21871252357959747, -0.8974516987800598, 0.28517284989356995, 0.6974917650222778, -0.7503494024276733, -0.8047649264335632, 0.01709885522723198, 0.24220649898052216, -0.3773804306983948, -0.553559422492981, -0.69136995077133...
func (o *InlineResponse200115) GetCategory() InlineResponse2002Column { if o == nil || o.Category == nil { var ret InlineResponse2002Column return ret } return *o.Category }
[ 0.4522136449813843, 0.012278580106794834, 0.26246175169944763, 0.9893946647644043, 0.15908819437026978, -0.7993075251579285, 1.1663520336151123, -0.22367268800735474, 0.9031890034675598, -1.4736615419387817, 0.15399011969566345, -1.2155486345291138, 0.16756804287433624, 0.320422887802124, ...
func (o *InlineResponse200115) GetCategoryOk() (*InlineResponse2002Column, bool) { if o == nil || o.Category == nil { return nil, false } return o.Category, true }
[ -0.27112287282943726, 0.4938752353191376, 0.304425984621048, 0.6613333225250244, 0.4140888452529907, -0.8848722577095032, 0.8236602544784546, 0.5121324062347412, -0.08024871349334717, -0.8657457232475281, -0.5550683736801147, -0.7693960666656494, 0.8250203132629395, 0.5994839072227478, -...
func (o *InlineResponse200115) HasCategory() bool { if o != nil && o.Category != nil { return true } return false }
[ 0.4848634600639343, 0.3488747477531433, 0.044737618416547775, 0.4219014048576355, 0.6845762133598328, -0.4193135201931, 0.06604664027690887, 0.5412657856941223, 0.5805581212043762, -1.383135199546814, 0.014710643328726292, -1.1373096704483032, 0.1156543716788292, 0.5312551856040955, 0.33...
func (o *InlineResponse200115) SetCategory(v InlineResponse2002Column) { o.Category = &v }
[ 0.4826289117336273, -0.8422099351882935, 0.04219068959355354, 0.5630508661270142, -0.14444521069526672, -0.4552384614944458, 0.6325848698616028, -0.478546142578125, -0.150453582406044, -1.0529875755310059, -0.21323126554489136, 0.6077395677566528, 0.6770602464675903, -0.70975661277771, 0...
func (o *InlineResponse200115) GetCommentsCount() string { if o == nil || o.CommentsCount == nil { var ret string return ret } return *o.CommentsCount }
[ 0.6293348670005798, 0.25263917446136475, 0.19719284772872925, 0.4277884066104889, -0.23593086004257202, -0.5134088397026062, 0.24222330749034882, -1.1278655529022217, 0.3348206877708435, -0.5090779662132263, 0.30674880743026733, -1.6029694080352783, -0.9905601739883423, 0.39045995473861694...
func (o *InlineResponse200115) GetCommentsCountOk() (*string, bool) { if o == nil || o.CommentsCount == nil { return nil, false } return o.CommentsCount, true }
[ 0.868235170841217, 0.18308484554290771, 0.7955920696258545, 0.5330227017402649, -0.30122533440589905, 0.04640625789761543, 0.5179734230041504, -0.608519434928894, -0.5516752600669861, 0.8063312768936157, -0.8441897630691528, -1.2241406440734863, -0.2890535593032837, 0.6896059513092041, -...
func (o *InlineResponse200115) HasCommentsCount() bool { if o != nil && o.CommentsCount != nil { return true } return false }
[ 0.8923672437667847, 0.6120365262031555, 0.26296427845954895, -0.03715166077017784, 0.19160756468772888, -0.9585562944412231, 0.153938889503479, -0.626982569694519, -0.27994105219841003, -0.801826536655426, -0.4867602288722992, -1.1049165725708008, -0.5291678309440613, 0.5959177017211914, ...
func (o *InlineResponse200115) SetCommentsCount(v string) { o.CommentsCount = &v }
[ 0.8227167129516602, -0.3641510009765625, -0.34088942408561707, -0.3216872811317444, -0.882649302482605, -0.750379204750061, 0.10259848088026047, -1.7648423910140991, -0.3860533833503723, -0.13472411036491394, -0.2651733160018921, -0.023468799889087677, -0.9055976271629333, -0.5127692222595...
func (o *InlineResponse200115) GetCompany() InlineResponse200115Company { if o == nil || o.Company == nil { var ret InlineResponse200115Company return ret } return *o.Company }
[ 0.27151885628700256, 0.38207730650901794, 0.5630746483802795, 1.3086286783218384, 0.4304502308368683, -0.11776893585920334, 1.1027562618255615, 0.034999869763851166, 0.986932098865509, -0.6486541032791138, -0.02598605304956436, -1.560363531112671, -0.6489698886871338, 0.6319780349731445, ...
func (o *InlineResponse200115) GetCompanyOk() (*InlineResponse200115Company, bool) { if o == nil || o.Company == nil { return nil, false } return o.Company, true }
[ -0.2577108144760132, 0.27805301547050476, 0.6065325736999512, 1.4127322435379028, 0.5620319843292236, -0.25246378779411316, 0.7183982729911804, 0.5058953166007996, -0.2902672588825226, 0.028373509645462036, -0.7681131362915039, -0.7413750886917114, 0.3981083929538727, 0.4551842212677002, ...
func (o *InlineResponse200115) HasCompany() bool { if o != nil && o.Company != nil { return true } return false }
[ 0.371716171503067, 0.2841893136501312, 0.3056766390800476, 1.2253897190093994, 0.9401456713676453, -0.45674508810043335, -0.07163798809051514, 0.801002025604248, 0.0053702546283602715, -0.8175592422485352, -0.2790994346141815, -1.3814164400100708, -0.3698655068874359, 0.3386925458908081, ...
func (o *InlineResponse200115) SetCompany(v InlineResponse200115Company) { o.Company = &v }
[ 0.2043243795633316, -0.2982224225997925, 0.13965068757534027, 0.9231435656547546, 0.05518130213022232, 0.3326205313205719, 0.3633939325809479, -0.4867958426475525, 0.08516531437635422, -0.08674522489309311, -0.05919482186436653, -0.3333890736103058, -0.22225505113601685, -0.442657530307769...
func (o *InlineResponse200115) GetContentType() string { if o == nil || o.ContentType == nil { var ret string return ret } return *o.ContentType }
[ 0.8242659568786621, -0.069903664290905, 0.0038814041763544083, 0.6815780401229858, 0.07358986884355545, -0.47845643758773804, 0.5567954182624817, -0.3291495442390442, 0.8423587679862976, -0.1962214559316635, 0.13604040443897247, -1.5253937244415283, -1.14474356174469, 0.6826454401016235, ...
func (o *InlineResponse200115) GetContentTypeOk() (*string, bool) { if o == nil || o.ContentType == nil { return nil, false } return o.ContentType, true }
[ 0.18279395997524261, -0.1811826378107071, 0.0956774428486824, 0.40333622694015503, -0.026644974946975708, -0.14539985358715057, 0.5345425009727478, 0.22438488900661469, -0.1257505565881729, 0.7847853899002075, -0.8598685264587402, -1.0284391641616821, -0.3244037628173828, 0.732460975646972...
func (o *InlineResponse200115) HasContentType() bool { if o != nil && o.ContentType != nil { return true } return false }
[ 1.155979871749878, -0.1103677749633789, -0.16011951863765717, -0.10753142833709717, 0.6001067161560059, -1.1152613162994385, -0.16330619156360626, 0.10790039598941803, 0.16246604919433594, 0.10464299470186234, -0.730327308177948, -1.2352641820907593, -0.8242793679237366, 0.7761746644973755...
func (o *InlineResponse200115) SetContentType(v string) { o.ContentType = &v }
[ 1.2692168951034546, -0.7041217684745789, -0.5954619646072388, -0.19106295704841614, -0.5439660549163818, -0.5370663404464722, 0.10146508365869522, -0.8984459638595581, 0.08889742195606232, 0.3001696467399597, 0.16514703631401062, 0.3717060685157776, -0.962094783782959, -0.6015899777412415,...
func (o *InlineResponse200115) GetContributingUsers() []InlineResponse200115ContributingUsers { if o == nil || o.ContributingUsers == nil { var ret []InlineResponse200115ContributingUsers return ret } return *o.ContributingUsers }
[ 0.04077528044581413, -0.09251148998737335, 0.149580717086792, 0.5870136618614197, 0.20894505083560944, 0.38651329278945923, 1.1055715084075928, 0.4397375285625458, 0.4553230106830597, -0.33916693925857544, 0.15479324758052826, -1.333530068397522, -1.4065712690353394, 0.6152786016464233, ...
func (o *InlineResponse200115) GetContributingUsersOk() (*[]InlineResponse200115ContributingUsers, bool) { if o == nil || o.ContributingUsers == nil { return nil, false } return o.ContributingUsers, true }
[ 0.21161329746246338, 0.7290487289428711, 0.28982505202293396, 0.618884265422821, -0.07462462037801743, 0.4294789731502533, 0.6220794916152954, 0.9237772822380066, -0.20063680410385132, 0.4320107400417328, -0.2147631049156189, -1.025471568107605, -0.23198923468589783, 0.5720346570014954, ...
func (o *InlineResponse200115) HasContributingUsers() bool { if o != nil && o.ContributingUsers != nil { return true } return false }
[ 0.49108901619911194, 0.228894904255867, -0.12193196266889572, 0.0771743655204773, 0.5487240552902222, 0.15319883823394775, 0.732246994972229, 1.0760958194732666, -0.45567786693573, -0.18109388649463654, -0.2588670253753662, -1.54592764377594, -0.7686533331871033, 1.2137748003005981, -0.6...
func (o *InlineResponse200115) SetContributingUsers(v []InlineResponse200115ContributingUsers) { o.ContributingUsers = &v }
[ -0.13953617215156555, -0.7393755912780762, -0.18088757991790771, 0.14149853587150574, 0.08707254379987717, 0.9335398077964783, 1.1660315990447998, 0.29323816299438477, 0.046586450189352036, 0.24142509698867798, 0.060913652181625366, -0.8110725283622742, -0.9335635900497437, 0.2033626735210...
func (o *InlineResponse200115) GetFollowerIds() string { if o == nil || o.FollowerIds == nil { var ret string return ret } return *o.FollowerIds }
[ 0.04404210299253464, -0.16977675259113312, 0.0574633814394474, 0.38984617590904236, -0.6655635237693787, 0.4727311432361603, 0.36344853043556213, -0.5039398074150085, 0.4862983822822571, -0.10544735193252563, -0.3200511932373047, -0.42242032289505005, -1.2123101949691772, 0.736210167407989...
func (o *InlineResponse200115) GetFollowerIdsOk() (*string, bool) { if o == nil || o.FollowerIds == nil { return nil, false } return o.FollowerIds, true }
[ 0.09497171640396118, -0.5056107640266418, 0.20348168909549713, -0.48337990045547485, -0.8270990252494812, 0.08729666471481323, 0.3141384422779083, -0.431953489780426, -0.30763310194015503, 0.9718074202537537, -1.331458568572998, 0.03515727072954178, 0.16271954774856567, 0.6785502433776855,...
func (o *InlineResponse200115) HasFollowerIds() bool { if o != nil && o.FollowerIds != nil { return true } return false }
[ 0.05564037710428238, 0.16343814134597778, 0.09194651991128922, -0.35096481442451477, -0.09341093897819519, -0.15700772404670715, -0.2817404568195343, 0.29510828852653503, -0.2760206162929535, -0.16872867941856384, -0.9335081577301025, -0.551871657371521, -0.19791077077388763, 0.67616522312...
func (o *InlineResponse200115) SetFollowerIds(v string) { o.FollowerIds = &v }
[ 0.3432837128639221, -0.35630926489830017, -0.1931697130203247, -0.7993842363357544, -1.1075356006622314, 0.09050846099853516, 0.0892823189496994, -0.9190049767494202, -0.14920440316200256, 0.45244935154914856, -0.5757313370704651, 0.7106771469116211, -0.8651065230369568, -0.668296873569488...
func (o *InlineResponse200115) GetHasEditExpired() bool { if o == nil || o.HasEditExpired == nil { var ret bool return ret } return *o.HasEditExpired }
[ 0.10505930334329605, 0.48604339361190796, 0.8697590231895447, 0.1222582533955574, -0.5115751624107361, -0.01736290752887726, -1.052248239517212, 0.034728121012449265, 0.08754312992095947, -0.1169300228357315, -1.5018789768218994, -0.5806726217269897, -0.17073404788970947, 0.441943407058715...
func (o *InlineResponse200115) GetHasEditExpiredOk() (*bool, bool) { if o == nil || o.HasEditExpired == nil { return nil, false } return o.HasEditExpired, true }
[ 0.05370613560080528, -0.046897824853658676, 0.7975987195968628, 0.04125545173883438, 0.09579185396432877, 0.191693514585495, -0.6325948238372803, 0.7126100063323975, -0.31530794501304626, 0.25785568356513977, -1.600728154182434, -0.6129322052001953, 0.6835223436355591, 0.9555545449256897, ...
func (o *InlineResponse200115) HasHasEditExpired() bool { if o != nil && o.HasEditExpired != nil { return true } return false }
[ 0.4669201672077179, 0.30022966861724854, 0.7407695055007935, -0.2113196700811386, 0.573146402835846, -0.021565988659858704, -1.2645162343978882, 0.29378414154052734, -0.49120113253593445, 0.0725213959813118, -1.0969899892807007, -0.11570662260055542, 0.36870259046554565, 0.3902097344398498...
func (o *InlineResponse200115) SetHasEditExpired(v bool) { o.HasEditExpired = &v }
[ 0.5983802080154419, 0.013059671968221664, 0.34257182478904724, -0.3925703763961792, 0.1569850593805313, 0.1510213017463684, -0.818658709526062, -0.296070396900177, -1.1763731241226196, 0.22757762670516968, -1.031632423400879, 0.665804386138916, 0.13938100636005402, -0.9094840884208679, -...
func (o *InlineResponse200115) GetId() string { if o == nil || o.Id == nil { var ret string return ret } return *o.Id }
[ 0.9525527954101562, 0.03094562143087387, 0.1832793653011322, 0.9215624928474426, 0.42443931102752686, 0.289255291223526, 0.9782474637031555, -0.4142276644706726, 1.80030357837677, -0.6613674163818359, -0.27698615193367004, -1.3511607646942139, -0.8356817960739136, 0.5029354691505432, 1.2...
func (o *InlineResponse200115) GetIdOk() (*string, bool) { if o == nil || o.Id == nil { return nil, false } return o.Id, true }
[ -0.5822523236274719, 0.6346056461334229, 0.29029619693756104, 1.1294454336166382, 0.45587724447250366, 0.03631843999028206, 0.7710961103439331, 0.4963272213935852, 1.1227917671203613, -0.3973064720630646, -1.0266714096069336, -0.7219730615615845, -0.23967494070529938, -0.09892742335796356,...
func (o *InlineResponse200115) HasId() bool { if o != nil && o.Id != nil { return true } return false }
[ 1.0558066368103027, -0.2963448464870453, 0.3192172944545746, 0.6424791216850281, 0.62891685962677, 0.5500211119651794, 0.33387088775634766, 0.4669093191623688, 1.584729552268982, -0.8122655749320984, -0.6460947394371033, -1.0747740268707275, -0.8219892382621765, -0.12396161258220673, 0.2...
func (o *InlineResponse200115) SetId(v string) { o.Id = &v }
[ 0.6340887546539307, -0.6133886575698853, -0.3228779435157776, 0.2213062047958374, -0.8012339472770691, 0.5518246293067932, 0.20883122086524963, -0.5443970561027527, 1.2402997016906738, 0.09993262588977814, -0.5894814729690552, 0.34141963720321655, -0.48412656784057617, -0.7733288407325745,...
func (o *InlineResponse200115) GetIsOriginal() string { if o == nil || o.IsOriginal == nil { var ret string return ret } return *o.IsOriginal }
[ -0.029553767293691635, -0.19499167799949646, 0.6510910391807556, 0.647293210029602, -0.6541476249694824, -0.13043251633644104, 0.44633156061172485, 0.8317487239837646, -0.3649192750453949, -0.35489922761917114, 0.0773475244641304, -0.42503708600997925, -0.9300293922424316, -0.8408899307250...
func (o *InlineResponse200115) GetIsOriginalOk() (*string, bool) { if o == nil || o.IsOriginal == nil { return nil, false } return o.IsOriginal, true }
[ -0.01538163423538208, -0.5079649090766907, 0.7697812914848328, 0.5641807913780212, -0.2269148826599121, 0.10607321560382843, 0.8614426255226135, 1.5596818923950195, -0.6618672609329224, 0.3053372800350189, -0.0715809240937233, -0.3553096354007721, 0.08801472187042236, -0.7367541790008545, ...
func (o *InlineResponse200115) HasIsOriginal() bool { if o != nil && o.IsOriginal != nil { return true } return false }
[ 0.0033569415099918842, 0.00628615589812398, 0.3855094015598297, -0.19411784410476685, 0.5121292471885681, -0.45028427243232727, 0.3437565565109253, 1.467520833015442, -0.6908496618270874, -0.5726794004440308, -0.31267666816711426, -0.5263596773147583, -0.48250535130500793, -0.7922497987747...
func (o *InlineResponse200115) SetIsOriginal(v string) { o.IsOriginal = &v }
[ -0.11762860417366028, -0.7568402290344238, 0.1087234765291214, -0.25789621472358704, -1.0972381830215454, -0.11925675719976425, 0.07735925167798996, 0.37106162309646606, -0.45452529191970825, 0.06809577345848083, 0.14129900932312012, 0.9503207802772522, -0.40317991375923157, -1.70280253887...
func (o *InlineResponse200115) GetIsRead() string { if o == nil || o.IsRead == nil { var ret string return ret } return *o.IsRead }
[ 0.7315740585327148, -0.09815860539674759, 0.4365420341491699, 0.6023532152175903, -0.20982040464878082, 0.13216449320316315, 0.04210700839757919, 0.09575574845075607, 1.145529866218567, -0.8943163752555847, 0.265298992395401, -0.21818989515304565, -0.9995825886726379, -0.25807878375053406,...
func (o *InlineResponse200115) GetIsReadOk() (*string, bool) { if o == nil || o.IsRead == nil { return nil, false } return o.IsRead, true }
[ 0.1690884828567505, 0.36879658699035645, 0.5358521342277527, 0.42962679266929626, 0.5529379844665527, 0.1324305683374405, 0.4537968635559082, 0.49993664026260376, 0.8594743013381958, -0.82899010181427, -0.37132808566093445, -0.06972628086805344, -0.16210320591926575, -0.23077532649040222, ...
func (o *InlineResponse200115) HasIsRead() bool { if o != nil && o.IsRead != nil { return true } return false }
[ 1.0371586084365845, 0.2435889095067978, 0.1049126535654068, -0.018362097442150116, 0.6945285201072693, 0.15233655273914337, -0.40033474564552307, 0.5805993676185608, 0.8212161064147949, -0.9947081804275513, -0.1865987777709961, -0.5170692205429077, -0.5532393455505371, -0.519216775894165, ...
func (o *InlineResponse200115) SetIsRead(v string) { o.IsRead = &v }
[ 0.5008861422538757, -0.5617458820343018, -0.396880179643631, -0.40682411193847656, -0.7328033447265625, 0.08644555509090424, -0.4624040424823761, -0.7112521529197693, 0.6774843335151672, -0.3089824914932251, 0.05695345625281334, 1.129852294921875, -0.8516582250595093, -1.3403048515319824, ...
func (o *InlineResponse200115) GetLastChangedOn() string { if o == nil || o.LastChangedOn == nil { var ret string return ret } return *o.LastChangedOn }
[ 0.7032483816146851, -0.31757351756095886, 0.602752149105072, -0.55857914686203, -1.0156570672988892, -0.05872234329581261, -0.09943795949220657, 0.7059468030929565, 0.5737707018852234, -0.05405989661812782, -1.0447492599487305, -0.6214510202407837, -0.606955349445343, 1.1145883798599243, ...
func (o *InlineResponse200115) GetLastChangedOnOk() (*string, bool) { if o == nil || o.LastChangedOn == nil { return nil, false } return o.LastChangedOn, true }
[ 0.10945110768079758, -0.2621426582336426, 0.797913134098053, -0.4782074987888336, -0.4992135763168335, 0.49820592999458313, 0.0991581454873085, 0.5418022871017456, 0.5441792011260986, 0.3077753782272339, -1.5778580904006958, -0.6646977663040161, -0.05222306028008461, 0.9539967775344849, ...
func (o *InlineResponse200115) HasLastChangedOn() bool { if o != nil && o.LastChangedOn != nil { return true } return false }
[ 0.8979343175888062, -0.04333409667015076, 0.7229635119438171, -1.3992646932601929, 0.019112808629870415, -0.4687185287475586, -0.5247018337249756, 1.566288948059082, 0.2085115909576416, -0.03499230369925499, -1.8281047344207764, -0.4444023072719574, -0.106442391872406, 1.4179538488388062, ...
func (o *InlineResponse200115) SetLastChangedOn(v string) { o.LastChangedOn = &v }
[ 0.6107119917869568, -0.5842012763023376, 0.09608614444732666, -1.615501046180725, -1.1476233005523682, -0.013586906716227531, -0.6902691721916199, 0.3358950912952423, 0.37738484144210815, 0.08271357417106628, -1.243910551071167, 0.43704015016555786, -0.5992659330368042, 0.03107587993144989...
func (o *InlineResponse200115) GetLastCommentDate() string { if o == nil || o.LastCommentDate == nil { var ret string return ret } return *o.LastCommentDate }
[ 0.5896345376968384, -0.2990647554397583, 0.361503005027771, -0.005576802417635918, -0.2854550778865814, -0.5046740174293518, 0.2538580596446991, -0.19333499670028687, 0.9088597893714905, 0.18794681131839752, 0.30581632256507874, -1.3514899015426636, -0.9412329196929932, 0.4732232689857483,...
func (o *InlineResponse200115) GetLastCommentDateOk() (*string, bool) { if o == nil || o.LastCommentDate == nil { return nil, false } return o.LastCommentDate, true }
[ 0.18110980093479156, -0.5664888620376587, 0.5519310832023621, -0.605185866355896, -0.18619482219219208, -0.12250577658414841, 0.3979454040527344, 0.48075607419013977, 0.6476098299026489, 0.8262220025062561, -0.7467958927154541, -1.2736892700195312, -0.4170777499675751, 0.8607252836227417, ...
func (o *InlineResponse200115) HasLastCommentDate() bool { if o != nil && o.LastCommentDate != nil { return true } return false }
[ 0.6563493013381958, -0.014584057033061981, 0.5796010494232178, -0.9767805337905884, 0.7281884551048279, -1.1791795492172241, 0.14500565826892853, 0.666793942451477, 0.2880357801914215, 0.0804411843419075, -0.5351133942604065, -1.2220563888549805, -0.17743173241615295, 0.9637874364852905, ...
func (o *InlineResponse200115) SetLastCommentDate(v string) { o.LastCommentDate = &v }
[ 0.7155407071113586, -0.5666261315345764, 0.10665254294872284, -1.1859031915664673, -0.34832555055618286, -0.6067250370979309, 0.19540683925151825, 0.17672109603881836, 0.6742949485778809, 0.41187986731529236, -0.07154914736747742, -0.04593202844262123, -0.9461023807525635, -0.5093556642532...
func (o *InlineResponse200115) GetMessageStatus() string { if o == nil || o.MessageStatus == nil { var ret string return ret } return *o.MessageStatus }
[ 0.26201459765434265, -0.1637394279241562, 0.06158219650387764, -0.36753278970718384, -0.11616502702236176, -0.26163074374198914, -0.2987925708293915, -0.35453149676322937, 0.8630043268203735, -0.35534316301345825, -0.08726239204406738, -1.0809731483459473, -0.6224871277809143, 1.1374907493...
func (o *InlineResponse200115) GetMessageStatusOk() (*string, bool) { if o == nil || o.MessageStatus == nil { return nil, false } return o.MessageStatus, true }
[ -0.03293869271874428, 0.3315751254558563, 0.42014533281326294, -0.04250680282711983, -0.14979952573776245, -0.3863602876663208, 0.028468653559684753, -0.3219662308692932, 0.043735478073358536, -0.33754271268844604, -0.6096583604812622, -0.17442993819713593, 0.3093257546424866, 0.6669022440...
func (o *InlineResponse200115) HasMessageStatus() bool { if o != nil && o.MessageStatus != nil { return true } return false }
[ 0.56180739402771, -0.37043750286102295, 0.3059362769126892, -0.8955525159835815, 0.17591115832328796, -0.7872481346130371, -0.9004205465316772, 0.11484496295452118, 0.33301326632499695, -0.7644648551940918, -0.906999945640564, -0.7921102046966553, 0.31161805987358093, 1.4526933431625366, ...
func (o *InlineResponse200115) SetMessageStatus(v string) { o.MessageStatus = &v }
[ 0.4446411728858948, -0.527770459651947, -0.357443630695343, -1.1699033975601196, -0.677400529384613, -0.45976722240448, -0.6868367791175842, -0.8080428242683411, 0.14773400127887726, -0.045384373515844345, -0.6445183157920837, 0.12672322988510132, -0.5052465796470642, 0.03810817748308182, ...
func (o *InlineResponse200115) GetNumNotified() string { if o == nil || o.NumNotified == nil { var ret string return ret } return *o.NumNotified }
[ 0.5429418087005615, 0.12012162059545517, 0.1882776916027069, 0.8045284152030945, 0.17196190357208252, -0.6855735182762146, 0.6492152810096741, 0.13611534237861633, 0.4330171048641205, -0.7154088616371155, -1.8046709299087524, -0.7386951446533203, 0.0019898037426173687, 0.2688164710998535, ...
func (o *InlineResponse200115) GetNumNotifiedOk() (*string, bool) { if o == nil || o.NumNotified == nil { return nil, false } return o.NumNotified, true }
[ 0.5257587432861328, 0.08432389050722122, 0.44750338792800903, 0.8580278754234314, 0.11155156046152115, 0.05492137745022774, 0.5558294057846069, 0.6306907534599304, -0.4429509937763214, 0.051069971174001694, -2.174144983291626, -0.6328951120376587, 0.6373870372772217, 0.8312073349952698, ...
func (o *InlineResponse200115) HasNumNotified() bool { if o != nil && o.NumNotified != nil { return true } return false }
[ 0.7757335901260376, 0.46901190280914307, 0.2522754371166229, 0.44437503814697266, 0.9775069952011108, -1.0126471519470215, 0.31947213411331177, 0.8059819340705872, 0.21846027672290802, -0.5309427976608276, -2.5754597187042236, -1.039629578590393, 0.45306602120399475, 0.4563639163970947, ...
func (o *InlineResponse200115) SetNumNotified(v string) { o.NumNotified = &v }
[ 0.28089475631713867, -0.30789610743522644, -0.1942327618598938, 0.2474612295627594, -0.309769868850708, -1.1791605949401855, -0.17379720509052277, -0.38663145899772644, 0.11116591095924377, -0.34845319390296936, -2.126433849334717, 0.5189844369888306, 0.13205143809318542, -0.60199213027954...
func (o *InlineResponse200115) GetPostId() string { if o == nil || o.PostId == nil { var ret string return ret } return *o.PostId }
[ 1.0453484058380127, 0.2970984876155853, 0.22691375017166138, 0.8904708027839661, 0.034518271684646606, 0.5776280760765076, 0.35150471329689026, 0.0070144059136509895, 1.1387956142425537, -0.1872442215681076, -0.059078577905893326, -1.4834152460098267, -0.5686006546020508, 0.731495499610900...
func (o *InlineResponse200115) GetPostIdOk() (*string, bool) { if o == nil || o.PostId == nil { return nil, false } return o.PostId, true }
[ 0.1855492740869522, 0.6018500328063965, 0.38947638869285583, 0.8542267084121704, 0.253379225730896, 0.7378137111663818, 0.5160667896270752, 1.0342062711715698, 0.3278253376483917, 0.13872244954109192, -0.699787974357605, -0.9087107181549072, -0.18489333987236023, 0.5311154723167419, -0.6...
func (o *InlineResponse200115) HasPostId() bool { if o != nil && o.PostId != nil { return true } return false }
[ 1.2489532232284546, 0.35473230481147766, 0.12110926955938339, 0.37957215309143066, 0.3656182289123535, 0.1795603185892105, -0.5603826642036438, 0.8086957335472107, 0.5665934681892395, 0.1301935911178589, -0.4767015874385834, -1.2123500108718872, -0.03757167607545853, 0.5041618943214417, ...
func (o *InlineResponse200115) SetPostId(v string) { o.PostId = &v }
[ 1.1968967914581299, -0.37996727228164673, -0.18598639965057373, 0.34916308522224426, -1.1116522550582886, 0.788259744644165, -0.4496798515319824, -0.5156493186950684, 0.4539283514022827, 0.34600958228111267, -0.14515094459056854, -0.0002922662242781371, -0.2215908169746399, -0.432124435901...
func (o *InlineResponse200115) GetPostStatus() string { if o == nil || o.PostStatus == nil { var ret string return ret } return *o.PostStatus }
[ 0.5851571559906006, 0.30966517329216003, -0.23324105143547058, 0.389287531375885, -0.0753915086388588, -0.08625901490449905, -0.3382856547832489, -0.023063573986291885, 0.20298562943935394, -0.8891856074333191, -0.8199256062507629, -1.436480164527893, -0.6144333481788635, 0.184828594326972...
func (o *InlineResponse200115) GetPostStatusOk() (*string, bool) { if o == nil || o.PostStatus == nil { return nil, false } return o.PostStatus, true }
[ 0.3497364819049835, -0.03151611611247063, 0.3265124559402466, 0.49489036202430725, -0.38734516501426697, 0.5827125906944275, -0.19946810603141785, 0.8271003365516663, -0.7361807823181152, 0.26570677757263184, -1.4747838973999023, -1.126899003982544, 0.6445983052253723, 0.1494007706642151, ...
func (o *InlineResponse200115) HasPostStatus() bool { if o != nil && o.PostStatus != nil { return true } return false }
[ 0.7382225394248962, 0.23499566316604614, -0.008510876446962357, -0.01656191237270832, 0.5630660057067871, -0.4335494041442871, -1.1313345432281494, 0.6238734722137451, -0.22825510799884796, -0.9880427122116089, -1.5077475309371948, -1.5285614728927612, 0.21574465930461884, 0.15731079876422...