text
stringlengths
7
2.39k
embedding
listlengths
768
768
GetNotifacationsByTrade gets all notifications for specific trade
[ -0.17252856492996216, 0.08666767179965973, 0.42786046862602234, 0.009804845787584782, 0.03101382777094841, -1.0720335245132446, 0.9790247082710266, -1.0466053485870361, -0.3162403404712677, 0.879304051399231, -0.7998898029327393, 0.3194058835506439, 0.9576772451400757, 0.5916716456413269, ...
NotificationDismiss dismisses the notification
[ 1.6826002597808838, -0.3903685212135315, 0.07550275325775146, -0.08574876189231873, 0.5273725390434265, 0.5059785842895508, -0.16638880968093872, -0.6360331773757935, 0.463154673576355, -0.6694588661193848, -0.5526834726333618, -0.29859283566474915, 1.0098416805267334, 0.9694262742996216, ...
NewRoomDAO ... creates a new ruleset
[ 0.02210145816206932, -0.7323905825614929, 0.25421440601348877, 0.8597654104232788, 0.6069610118865967, 0.15846025943756104, 0.19449636340141296, 0.3503345251083374, -0.5976541042327881, -0.4606923758983612, 0.015931477770209312, 0.32658958435058594, 0.1149701476097107, 0.32152700424194336,...
FindByID ... finds a room by id
[ -0.027235325425863266, -0.6886767745018005, 0.199785977602005, 1.1454120874404907, 0.5593559145927429, -0.10657529532909393, 0.9439305663108826, -0.33275583386421204, -0.35704517364501953, 0.5490456819534302, -0.03505675494670868, 0.17580769956111908, -0.6106053590774536, 1.583710432052612...
FindAll ... find all rooms
[ 0.1723141223192215, -0.060355305671691895, 0.3413187861442566, 1.8761780261993408, 0.3333777189254761, 0.6177372336387634, 0.7181408405303955, 0.1150866150856018, -0.3680398166179657, 0.3174775242805481, -0.47515422105789185, 0.16135457158088684, -0.30893006920814514, 2.035633087158203, ...
Insert ... insert a room
[ -0.5867416262626648, 1.0688916444778442, 0.3490055501461029, 1.0078309774398804, 0.5690097808837891, 0.26457637548446655, 0.3905119299888611, 0.7146112322807312, -0.6832965016365051, 0.022830141708254814, -0.8596185445785522, -0.49012723565101624, -1.4768433570861816, 0.4457681179046631, ...
Delete ... delete a room
[ 0.4861704111099243, 0.510425865650177, 0.2696705758571625, 1.317374587059021, 1.0081640481948853, -0.3681168854236603, 0.055758874863386154, 1.1472104787826538, 0.21063315868377686, -0.28353336453437805, -0.21976254880428314, 0.2999850809574127, -1.1734367609024048, 0.7832863330841064, -...
Update ... update an existing room by id
[ -1.186421275138855, -1.2494313716888428, 0.24548232555389404, 1.443676233291626, -0.2375343292951584, 0.23375467956066132, 0.17436139285564423, 0.680487334728241, 0.03958916664123535, 0.17776313424110413, -0.3321680426597595, 0.3342916667461395, -0.8597940802574158, 0.4358747601509094, -...
Info logs a message at InfoLevel. The message includes any fields passed at the log site, as well as any fields accumulated on the logger.
[ 0.014317169785499573, -0.3563475012779236, 0.39345771074295044, -0.16399484872817993, 0.4776616394519806, -0.03644752874970436, -0.09144382923841476, -0.6527920365333557, -0.6738600134849548, -0.29894790053367615, -0.9097270965576172, 0.5617851614952087, 0.24301104247570038, 0.897390782833...
Warn logs a message at WarnLevel. The message includes any fields passed at the log site, as well as any fields accumulated on the logger.
[ -0.49028685688972473, 0.3251452147960663, 0.3308477997779846, -0.5189937949180603, -0.11721436679363251, -0.39644351601600647, 0.1276244968175888, -1.1141853332519531, -0.3185432255268097, -0.2491057813167572, -0.6408278346061707, 1.2869513034820557, 0.3767463266849518, 0.2533470094203949,...
IsUUID validates that the given string is a UUID value
[ 0.12085723876953125, -1.0283139944076538, 0.3241453170776367, 0.6769393682479858, -0.7153908014297485, 0.9161937832832336, -0.1622539609670639, 0.8531635999679565, 0.8232729434967041, -0.08423218131065369, 0.5207433700561523, 0.5625, -0.8181648850440979, -0.3754768669605255, -1.040934920...
AddEdge adds an edge to a graph. It can be useful for constructing undirected graphs. When n1 and n2 are distinct, it adds the arc n1>n2 and the reciprocal n2>n1. When n1 and n2 are the same, it adds a single arc loop. The pointer receiver allows the method to expand the graph as needed to include the values n1 and n2....
[ -0.4043984115123749, 0.8637257218360901, 0.8498945236206055, 0.8929415941238403, -0.07399705797433853, 0.5259237289428711, -0.0472806915640831, -0.41638481616973877, 0.5718156099319458, -1.1131230592727661, 0.0838954895734787, 0.5022987723350525, -0.7075955271720886, -0.23449720442295074, ...
RemoveEdge removes a single edge between nodes n1 and n2. It removes reciprocal arcs in the case of distinct n1 and n2 or removes a single arc loop in the case of n1 == n2. Returns true if the specified edge is found and successfully removed, false if the edge does not exist.
[ -1.1156972646713257, 1.0916473865509033, 0.7445449829101562, 0.3250308036804199, -0.21796397864818573, 0.35870933532714844, 0.03998143598437309, 0.15715059638023376, -0.32591357827186584, 0.27252471446990967, -0.3008224368095398, -0.7176762819290161, -0.9145702719688416, -0.574789762496948...
ArcDensity returns density for a simple directed graph. Parameter n is order, or number of nodes of a simple directed graph. Parameter a is the arc size, or number of directed arcs. Returned density is the fraction `a` over the total possible number of arcs or a / (n (n1)). See also Density for density of a simple undi...
[ 0.20131881535053253, 0.08396021276712418, 0.45195284485816956, -0.2711406648159027, 0.005585928447544575, -0.23257355391979218, 0.6310307383537292, -0.4573575258255005, 0.6262327432632446, -0.9626300930976868, 0.5872979760169983, 0.6555324196815491, 1.2028015851974487, -0.19944249093532562...
Density returns density for a simple undirected graph. Parameter n is order, or number of nodes of a simple undirected graph. Parameter m is the size, or number of undirected edges. Returned density is the fraction m over the total possible number of edges or m / ((n (n1))/2). See also ArcDensity for simple directed gr...
[ 0.24225354194641113, 0.08666729182004929, 0.5712236762046814, 0.2163981944322586, -0.2684474289417267, 0.02986808866262436, 0.6151655912399292, -0.42027267813682556, 0.35986119508743286, -0.8888047337532043, 0.22731439769268036, -0.22028613090515137, 0.4448085129261017, -0.2366178333759308...
Edges iterates over the edges of an undirected graph. Edge visitor v is called for each edge of the graph. That is, it is called once for each reciprocal arc pair and once for each loop. See also LabeledUndirected.Edges for a labeled version. See also Undirected.SimpleEdges for a version that emits only the simple subg...
[ -1.0227493047714233, -0.20660243928432465, 0.6997542977333069, -0.41654083132743835, -0.33616143465042114, -0.02462727203965187, 0.5388873219490051, 0.15545466542243958, 0.34479469060897827, -0.7424980401992798, 0.38294461369514465, 0.5424923300743103, 0.49409323930740356, -0.5500940680503...
HasEdge returns true if g has any edge between nodes n1 and n2. Also returned are indexes x1 and x2 such that g[n1][x1] == n2 and g[n2][x2] == n1. If no edge between n1 and n2 is present HasArc returns `has` == false. See also HasArc. If you are interested only in the boolean result and g is a well formed (passes IsUnd...
[ -0.07152518630027771, 0.3355298936367035, 0.6310269832611084, 0.20573663711547852, 0.6004276275634766, 0.31424838304519653, 0.4171636998653412, -0.298214852809906, -0.7855803370475769, -0.7785189747810364, -0.17344549298286438, 0.11896118521690369, 0.6937479376792908, 0.6879305243492126, ...
SimpleEdges iterates over the edges of the simple subgraph of an undirected graph. Edge visitor v is called for each pair of distinct nodes that is connected with an edge. That is, loops are ignored and parallel edges are reduced to a single edge. See also Undirected.Edges for a version that emits all edges.
[ -0.7880255579948425, 0.05271431803703308, 0.8394340872764587, 0.041550226509571075, -0.8121435642242432, 0.11673158407211304, 0.42534923553466797, 0.5715868473052979, 0.4551507532596588, -0.5649735927581787, -0.2993190288543701, 0.10538455098867416, 0.3867892920970917, -0.7881522178649902,...
TarjanBiconnectedComponents decomposes a graph into maximal biconnected components, components for which if any node were removed the component would remain connected. The receiver g must be a simple graph. The method calls the emit argument for each component identified, as long as emit returns true. If emit returns f...
[ -0.04014291614294052, 0.07164877653121948, 0.590481698513031, -0.41981562972068787, 0.34919530153274536, -0.01038606371730566, -0.36003339290618896, -0.36292004585266113, -0.4159483313560486, 0.011884551495313644, -0.7579194903373718, -0.4286080300807953, -0.034901607781648636, -0.14525589...
Edges iterates over the edges of a labeled undirected graph. Edge visitor v is called for each edge of the graph. That is, it is called once for each reciprocal arc pair and once for each loop. See also Undirected.Edges for an unlabeled version. See also the more simplistic LabeledAdjacencyList.ArcsAsEdges.
[ -1.0777267217636108, -0.6489828824996948, 0.6168075799942017, -0.7768410444259644, -0.15536746382713318, 0.04238661378622055, 0.5417397618293762, -0.08306813985109329, 0.6148103475570679, -0.19126646220684052, 0.49660271406173706, 0.5953276753425598, 0.7963141202926636, -0.4523395597934723...
RemoveEdge removes a single edge between nodes n1 and n2. It removes reciprocal arcs in the case of distinct n1 and n2 or removes a single arc loop in the case of n1 == n2. If the specified edge is found and successfully removed, RemoveEdge returns true and the label of the edge removed. If no edge exists between n1 an...
[ -1.4466042518615723, 0.6232682466506958, 0.6807396411895752, 0.09832552075386047, 0.05903686583042145, 0.36074045300483704, 0.0651080533862114, 0.5278463959693909, -0.20703577995300293, 0.7667748332023621, -0.44470924139022827, -0.4696229100227356, -0.5233753323554993, -0.3124302327632904,...
RemoveEdgeLabel removes a single edge between nodes n1 and n2 with label l. It removes reciprocal arcs in the case of distinct n1 and n2 or removes a single arc loop in the case of n1 == n2. Returns true if the specified edge is found and successfully removed, false if the edge does not exist.
[ -1.1952162981033325, 0.42157891392707825, 0.7724871635437012, 0.05548913776874542, -0.40207067131996155, 0.8220981359481812, -0.14246660470962524, -0.07464104145765305, 0.052135419100522995, 0.6031190752983093, -0.18262898921966553, -0.48535779118537903, -0.9400262236595154, -0.76241278648...
TarjanBiconnectedComponents decomposes a graph into maximal biconnected components, components for which if any node were removed the component would remain connected. The receiver g must be a simple graph. The method calls the emit argument for each component identified, as long as emit returns true. If emit returns f...
[ -0.11917947232723236, -0.017263522371649742, 0.5970935225486755, -0.4308011531829834, 0.34177452325820923, 0.05525868758559227, -0.30722445249557495, -0.34741997718811035, -0.3651452958583832, 0.033525023609399796, -0.7347076535224915, -0.45318105816841125, -0.05171521380543709, -0.1771786...
Logger wraps handlers with logging information
[ -0.4997371435165405, -1.1219067573547363, 0.25372153520584106, 0.42078155279159546, -0.5303528308868408, 0.23685753345489502, -0.29585495591163635, 0.3555881977081299, 0.5539436340332031, -1.441505789756775, -0.8619576692581177, -0.5435829162597656, 1.1424883604049683, 1.4863414764404297, ...
HealthCheckStatusHandler handles health check status requests
[ 0.04749128967523575, -1.2249884605407715, 0.11455030739307404, 1.0933923721313477, 0.8763505220413208, 0.323800653219223, -0.2653588056564331, 0.5683109760284424, 0.23446910083293915, -0.790459394454956, 0.43305155634880066, -0.8599220514297485, 1.0758874416351318, 0.5208559036254883, 0....
Uname returns the uname of the host machine.
[ -0.0348392128944397, 0.49667099118232727, 0.7096551656723022, 0.3464471995830536, -0.3616536855697632, 0.2890007495880127, 0.530183732509613, 1.2186579704284668, -1.218302845954895, 0.2738201320171356, 0.13481494784355164, -0.1927095353603363, -0.4590674936771393, -1.1245347261428833, 0....
New returns flusher instance for flushing classrooms to DB
[ -1.1823784112930298, -0.3937244415283203, 0.3859938681125641, 0.2672061622142792, -0.17749248445034027, 0.715735912322998, 0.010863524861633778, -0.17971274256706238, -0.7915332913398743, -0.6494401693344116, 0.04756287857890129, -1.2699944972991943, 0.22334718704223633, 1.5251760482788086...
Flush flushes classrooms to DB by small chunks and provides tracing
[ -0.8612037897109985, 0.5121753215789795, 0.18714216351509094, 0.5413928031921387, 0.37558886408805847, 0.8507251739501953, 1.7759056091308594, -0.8783572912216187, 0.08699516952037811, -0.41474461555480957, 0.14455311000347137, -0.5917877554893494, 0.24124005436897278, 0.7925196886062622, ...
SwapMapKeyValue returns new map by swapping keys and values in original map If original map contains repeated values returns error
[ -1.1009293794631958, -0.3663318157196045, 0.785667896270752, 0.6301888823509216, -1.1041486263275146, 0.4247153401374817, -0.10917805135250092, 0.8180509805679321, -0.04356985166668892, -0.1155342385172844, -0.14944633841514587, 0.36319243907928467, 0.810101330280304, -0.15653973817825317,...
GetRootPath returns the root directory of the project
[ 0.9633861184120178, 0.33390188217163086, 0.36422374844551086, 1.8040835857391357, 0.24805381894111633, 0.7779843211174011, 0.8111865520477295, -0.6461042165756226, 0.5111494064331055, -0.21861836314201355, 0.7725105285644531, 0.6656454801559448, -1.3090952634811401, 1.229445219039917, 0....
this method is now not available for public use
[ -0.6724576354026794, -0.5459364652633667, 0.36069321632385254, 0.1808420717716217, -1.0310101509094238, 0.327028751373291, 0.27641424536705017, -0.5804031491279602, -0.10172046720981598, -0.961254894733429, -0.3856821656227112, 0.9434719085693359, 0.019875381141901016, 0.38107556104660034,...
NewMethodsList renders method list
[ -0.2620612680912018, 0.04018843173980713, 0.141081765294075, 0.28630438446998596, -0.14518184959888458, -1.1201043128967285, -0.49161794781684875, -0.5545738339424133, 0.6879189610481262, -0.23929281532764435, -0.9535702466964722, -1.149709939956665, 0.35587984323501587, 1.7341810464859009...
SupportsMap determines if the extractor type requires a map
[ -1.2364389896392822, -0.14653342962265015, 0.7875136137008667, 0.5368971228599548, -0.6313821077346802, 0.45399755239486694, -0.531817615032196, 0.38945436477661133, 0.92718505859375, 0.206490620970726, 0.1592651605606079, -0.7488905787467957, -0.09818381071090698, 0.4179280996322632, -0...
Create creates a manager instance
[ -0.41364336013793945, -0.4959535300731659, 0.07857771962881088, 0.051310326904058456, 0.08420171588659286, 0.3080006539821625, -1.128235936164856, 0.48065343499183655, -0.4910907745361328, -1.3921979665756226, -0.13421735167503357, -0.143092080950737, -0.8146218657493591, 1.010570168495178...
MustInt try to extract value from request param by the givin key, if failed will raise a panic
[ -0.914260745048523, 0.6759602427482605, 0.7011445760726929, 0.9968670606613159, 0.17595180869102478, -0.34820201992988586, -0.5210437774658203, -1.0099077224731445, -1.013947606086731, 1.3510640859603882, 0.4073181748390198, -0.7970523834228516, -0.7309701442718506, 0.020826926454901695, ...
Int try to extract value from request param by the givin key, if failed the error will set and defaults will be returned (if exists)
[ -1.6751986742019653, 0.6174830198287964, 0.6546580791473389, 0.7172853946685791, 0.7377694249153137, -1.086977481842041, -0.12424101680517197, -0.8403751850128174, -1.2248973846435547, 0.9334801435470581, 0.198276087641716, -0.8609277009963989, -0.640062153339386, 0.07457076013088226, 0....
GetStatusOfSomeService returns a status of some systemd service unit
[ -0.4024682939052582, -0.2301957607269287, 0.3307130038738251, 0.04479021206498146, -0.7076976299285889, -0.48047032952308655, -1.2901568412780762, -0.27233409881591797, 0.39375928044319153, -0.9684412479400635, -0.32163313031196594, 0.5555609464645386, -0.36170831322669983, 0.2296248972415...
StartSomeService starts some systemd service unit
[ -0.3097213804721832, -0.6834802627563477, 0.29590582847595215, 0.6648306846618652, -0.2641381323337555, 0.012599446810781956, -0.849510669708252, -0.09919227659702301, 0.9861611723899841, -1.1077821254730225, -0.5713761448860168, 1.2375872135162354, -0.6349210739135742, 0.25633475184440613...
GetSpawnedPIDs gets a list of spawned by service subprocess process ids
[ 0.5883014798164368, -0.9733478426933289, 0.3913312554359436, 0.2561715841293335, -0.27280303835868835, 0.6193183660507202, -0.5901666879653931, -0.44596004486083984, 0.7323119044303894, -0.4763469696044922, -0.8217652440071106, 1.4915488958358765, -0.6216527223587036, -0.10727732628583908,...
NewGridfsStorage returns a new gridfs storage provider
[ 0.00842160265892744, 0.483528733253479, 0.028122678399086, 0.20786204934120178, -0.10481344163417816, -1.275521159172058, -0.31061869859695435, -0.8878655433654785, -0.44655337929725647, -0.4211104214191437, 0.3134031295776367, -0.8342893719673157, -0.7150731086730957, 0.27731892466545105,...
IsValidID will return true if id is a valid bson object id
[ 0.14799486100673676, -1.380767583847046, 0.6375174522399902, 1.3638417720794678, -0.04717542976140976, 1.5475549697875977, -0.6261106133460999, -0.5274966359138489, 1.4156067371368408, -0.28645268082618713, 0.059568364173173904, 0.42674705386161804, -0.7881459593772888, -0.3720170855522156...
FindImageByParentID returns either the resized image that actually exists, or the original if entry is nil
[ 0.3191918730735779, 0.30342933535575867, 0.37440672516822815, -0.08376935124397278, 0.04751139506697655, -0.5852451324462891, 0.0322013720870018, -0.21918708086013794, 0.45193201303482056, 0.787257194519043, 1.6790597438812256, -0.48593616485595703, -0.1805056929588318, 0.9895333647727966,...
FindImageByParentFilename returns either the resized image that actually exists, or the original if entry is nil
[ 0.49166417121887207, 0.1489597111940384, 0.44373083114624023, 0.03635590896010399, 0.06788838654756546, -0.33977290987968445, 0.4114936590194702, -0.08471017330884933, 0.034434545785188675, 0.483197420835495, 1.6778064966201782, -0.5084835290908813, -0.2691519856452942, 0.4581739008426666,...
StoreChildImage will create a new image from source
[ 0.027876228094100952, 0.5565869212150574, 0.2093435674905777, -0.06647614389657974, -1.0013980865478516, 0.24212996661663055, 0.42682892084121704, 0.5194524526596069, -0.31467944383621216, -0.8344914317131042, -1.8451842069625854, -0.02614443190395832, 0.3173091411590576, 0.228180021047592...
Marshal returns data as a single byte slice. Method is suboptimal as the data is likely to be copied from a chain of smaller chunks.
[ 0.3904893398284912, 0.43819618225097656, 0.5058138370513916, -0.0255900751799345, -0.5145715475082397, -0.03612007945775986, -1.0577234029769897, -0.16634421050548553, 0.38696470856666565, -0.9872627854347229, 0.6012951135635376, 1.1945619583129883, -0.26375943422317505, 0.4564520418643951...
MarshalToWriter marshals the data to an io.Writer.
[ 0.1740710437297821, 0.06746632605791092, 0.12216570228338242, -0.22127726674079895, 0.5578791499137878, -0.08970620483160019, -0.07963746786117554, -0.18167299032211304, -0.011712777428328991, -0.9659947156906128, 0.32874831557273865, 0.16483263671398163, 0.6423196196556091, 0.358156830072...
Unmarshal decodes the JSON in data into the object.
[ -0.7743092179298401, -0.3185845911502838, 0.4665685296058655, -1.3999109268188477, -0.14081284403800964, -0.5791622400283813, -0.45397576689720154, 0.41015559434890747, 0.6660904288291931, -1.1116183996200562, -0.3569069802761078, 0.12025053054094315, 0.3962517976760864, -1.103850245475769...
UnmarshalFromReader reads all the data in the reader and decodes as JSON into the object.
[ -0.32420414686203003, -1.1258325576782227, 0.5504292845726013, -1.1842396259307861, -1.100117564201355, -0.5740142464637756, -0.4119650721549988, 0.2534744143486023, -0.13738825917243958, -0.6060409545898438, 0.22025752067565918, -0.19240126013755798, 0.6435096859931946, -0.126835942268371...
Valid returns nil if a given ID is valid, a validation error is returned otherwise.
[ 0.2874583601951599, -0.5393107533454895, 0.46348169445991516, 0.8864862322807312, -0.4728875160217285, -0.19485409557819366, -0.8432355523109436, -0.08109866082668304, 0.24179397523403168, -0.039616625756025314, 0.5417687892913818, -0.19917583465576172, -0.31982436776161194, -0.33848476409...
genGreeting only waits for 1 seconds before abandoning the call to locale function
[ 0.3900073170661926, 1.7579023838043213, 0.14539659023284912, 0.6330264806747437, -0.5954269170761108, 1.2287530899047852, -0.5682275295257568, 0.1087896004319191, -1.540145993232727, 0.32164227962493896, -0.049848444759845734, -0.1963467001914978, -0.6521710157394409, 0.5005933046340942, ...
GetConfig parse string value to map[string]string object split config by ";" and value ":"
[ 0.2718140780925751, -0.657763659954071, 0.4909065067768097, 0.26795098185539246, -0.22649367153644562, -0.0006978160818107426, -0.7458816766738892, 1.4173760414123535, -0.1316298097372055, 1.3676965236663818, -1.3565433025360107, -0.7194817662239075, 0.3070179522037506, -0.6088494062423706...
We have to make sure the rank counting works reliably
[ 0.5160979628562927, 0.592219352722168, 0.3840101659297943, -0.09789375960826874, 1.44679856300354, -0.3194514513015747, 0.03756459429860115, 1.097084641456604, 0.33091557025909424, -0.272263765335083, -0.09128388017416, -0.0681520327925682, 0.09410881996154785, 0.44873547554016113, 1.133...
The same function but it returns an int, and gets rid of the http and response
[ -0.2256879061460495, -1.063707709312439, 0.7788481116294861, -0.36238083243370056, -0.5686123967170715, 0.0810663253068924, 0.5540221929550171, -0.16853593289852142, 0.5417073369026184, -0.686818540096283, -0.5671975612640381, -0.5709855556488037, -1.2027939558029175, 0.029420986771583557,...
GetContacts get all contacts
[ 0.036023855209350586, -0.9377347230911255, 0.5041240453720093, 0.4856286346912384, 0.7591420412063599, -0.5456790328025818, -0.6698309183120728, -0.7092264294624329, 0.306602418422699, -0.6419868469238281, -0.1821153610944748, -0.948249101638794, -0.39013224840164185, 0.8596301078796387, ...
CreateContact create an contact
[ 0.6928421854972839, -0.9442287683486938, 0.3038087487220764, 0.3578687906265259, 0.5796970725059509, 0.2973806858062744, -0.0741058886051178, -0.6699496507644653, -0.3483060300350189, 0.03547180816531181, 0.3092717230319977, -1.5964810848236084, -1.3593440055847168, 0.41365882754325867, ...
Debug prints a message if the debugging switch is on
[ 1.5625739097595215, 0.9975739121437073, 0.5534388422966003, 0.9199481010437012, 0.28482937812805176, 0.03529943898320198, -0.1377115100622177, 0.1083085834980011, 0.8599852323532104, 0.1678498238325119, 0.23708638548851013, 0.11600743234157562, -1.4804216623306274, 1.3549631834030151, -0...
InsertedPages is a public export of the embedded insertedPages human readable page numbers func
[ 0.43238264322280884, 0.09773148596286774, 0.47598233819007874, -0.5638424158096313, -0.2778666317462921, 0.5328328609466553, 0.8149862289428711, 0.7853488326072693, 0.2809998095035553, 0.053250547498464584, -0.3510138988494873, -0.33589181303977966, -0.7651381492614746, -0.1987334936857223...
pageNos shows humanreadable inserted page numbers
[ -0.09657561033964157, 0.20190326869487762, 0.3043701946735382, -0.8241450190544128, -0.2080707848072052, -0.31053289771080017, 0.15726520121097565, 0.8726103901863098, -0.730183482170105, 0.012401395477354527, -1.3542410135269165, 0.42543262243270874, 0.7744079828262329, 0.6821153163909912...
format which human readable pages are inserted
[ 0.9779391884803772, 0.1350054144859314, 0.5838085412979126, -1.3819324970245361, 0.3974948823451996, 0.4748614430427551, -0.3519526720046997, -0.09969954192638397, -0.33514493703842163, 0.1815633773803711, 0.9965909123420715, -1.2671444416046143, 0.13019900023937225, 0.13505840301513672, ...
PageIterate iterates over pages using the rmfile iterator which provides a page number and the pdf to use (either the annotated pdf or the template). For annotated pdfs with inserted pages one might receive the following output from the iterator: pageno | pdfPage | inserted | template | ++++ 0 | 0 | no | annotated.pdf ...
[ -0.13108506798744202, -1.1152069568634033, 0.40221330523490906, -0.2575031816959381, -0.17942234873771667, -0.6037053465843201, 0.2837859094142914, 0.37093597650527954, 0.21197086572647095, -0.24092449247837067, 1.5428918600082397, -0.49914729595184326, 0.0422624833881855, 0.45418578386306...
RMFile returns the fs.File pointing to the .rm file
[ 1.0510427951812744, -0.26316627860069275, 0.711441159248352, 0.10293586552143097, 0.10416024178266525, 0.28901931643486023, 0.4910270869731903, 0.48136645555496216, 0.7615850567817688, -0.7353603839874268, 1.4675880670547485, -0.3804762065410614, 0.22291073203086853, -0.7878439426422119, ...
RMFilePath returns the .rm file path
[ 0.9402613043785095, -0.30568742752075195, 0.2055085152387619, 0.11965495347976685, 0.5231984853744507, 0.3854321837425232, 0.021855099126696587, 0.6485123038291931, 0.1219344362616539, 0.5612857937812805, 0.6834791302680969, -0.6862195730209351, -0.9517828226089478, -0.13519854843616486, ...
Custom json decoder for unix epochs, with reference to
[ -0.6311829090118408, -0.6951948404312134, 0.44566166400909424, -0.6864429116249084, -1.2939386367797852, -1.066951036453247, -0.9201996326446533, -0.010591489262878895, -0.659413754940033, 0.2601906657218933, -1.2095577716827393, 1.041249394416809, 1.4802719354629517, 0.05751800909638405, ...
Custom json decoder for unix epochs: string representation
[ -0.579224169254303, -1.0850296020507812, 0.4495342969894409, -1.6992969512939453, -1.4465702772140503, -0.39872288703918457, -1.635634422302246, -0.19474589824676514, -0.4614684283733368, 0.15348362922668457, -0.9659187197685242, 0.5380390882492065, 1.4844062328338623, -0.5886181592941284,...
Custom json decoder for unix epochs: formatter
[ -0.830720067024231, -1.2912341356277466, 0.46680375933647156, -0.9802597761154175, -1.4158920049667358, -0.7490891218185425, -1.1630573272705078, -0.13021914660930634, -0.18696115911006927, -0.42083248496055603, -0.6525560021400452, 0.7453469038009644, 1.8337115049362183, 0.626101016998291...
Check if a file exists
[ 0.10860546678304672, -0.547246515750885, 0.5439309477806091, 0.6635077595710754, 1.8385099172592163, 0.714936375617981, -0.9593235850334167, 0.8098955154418945, -1.3621140718460083, -0.3942372798919678, 0.9853839874267578, -1.0468946695327759, 1.035180687904358, 0.3816016614437103, -2.16...
RMFiler collects information from the reMarkable files associated with the uuid of interest. Either a pdf at is expected, or a single A4 page template. If a template is not explicitly provided an embedded A4 template is used. This is managed by fs.go The uuid (identified by its filepath plus ), is used to collect infor...
[ -0.0859864354133606, -0.5733401775360107, 0.4886338412761688, -0.3373415172100067, 0.03183148056268692, -0.0917438417673111, 0.4477360248565674, 0.6278700232505798, -0.4296753406524658, -0.5438030362129211, 0.49064162373542786, -0.8521460890769958, 0.020546505227684975, -0.1378253996372223...
ToGitActionConfig converts the form to a gorm git action config model
[ 0.1829596757888794, -0.4303823411464691, 0.4066322147846222, -0.5527375340461731, 0.46903660893440247, 0.730464518070221, 0.09618403017520905, 0.9324777126312256, -0.4531906247138977, 0.38995853066444397, -0.4787510633468628, 0.030452530831098557, 0.3629840314388275, 0.8489350080490112, ...
convert string to integer
[ -0.08025284111499786, -1.1272857189178467, 0.03519493713974953, -0.6760358810424805, -0.20032495260238647, -0.5036660432815552, 0.3995073139667511, 0.09226967394351959, -0.7157614827156067, -0.201028972864151, -0.7909606695175171, 0.6364189386367798, -0.3839537501335144, -1.504767656326294...
ErrWriter returns an io.Writer that returns 0, err from all Write calls.
[ -0.49250638484954834, -0.24656757712364197, 0.11851336061954498, 0.2474210411310196, 0.8191072344779968, -0.8789635896682739, 0.6915425062179565, 0.2777838110923767, 0.34287503361701965, -0.8044450879096985, 0.24555888772010803, -0.8077821731567383, 0.05565827712416649, 0.8814117312431335,...
NewNetworkDns instantiates a new NetworkDns object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
[ -0.6950080394744873, -0.17934486269950867, 0.48764413595199585, 0.9028452634811401, 0.041990574449300766, 0.06860403716564178, -0.538703441619873, -0.22118635475635529, 0.19768103957176208, -0.8538196086883545, -1.7882938385009766, -0.6651600003242493, -0.6888177394866943, 0.61451321840286...
NewNetworkDnsWithDefaults instantiates a new NetworkDns object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
[ -0.43587854504585266, 0.2593590021133423, 0.039795514196157455, 0.6155831813812256, 0.6738888025283813, -0.3286932706832886, -0.9008446335792542, -0.6366187930107117, 0.7044326663017273, -0.7625621557235718, -1.9651230573654175, -1.594792366027832, -0.4345921277999878, 0.8543901443481445, ...
GetClassId returns the ClassId field value
[ 0.3072902262210846, 0.07338862866163254, 0.25145798921585083, 1.13381826877594, 0.8146650791168213, 0.9040855765342712, 0.9075857996940613, 0.45466348528862, 1.3388205766677856, -0.6950463056564331, 0.8685640692710876, -0.04794004186987877, -0.3980325758457184, 0.13781225681304932, 0.602...
GetClassIdOk returns a tuple with the ClassId field value and a boolean to check if the value has been set.
[ -0.7599396705627441, 0.6738703846931458, 0.8947086930274963, 1.357627272605896, 0.7632670998573303, 0.4502842426300049, 0.8878272771835327, 0.546222984790802, 0.4400966763496399, 0.1263676881790161, -0.725683867931366, -0.5319060683250427, -0.03644412010908127, 0.9752892255783081, -0.146...
SetClassId sets field value
[ -0.14678196609020233, -0.2733873724937439, 0.3080073595046997, 0.5442942380905151, 0.502201497554779, 0.72734534740448, 0.4439430236816406, -0.12110167741775513, 1.1402992010116577, 0.21291790902614594, 0.09022562205791473, -0.5914701223373413, 0.1419893205165863, 0.8507715463638306, 0.0...
GetObjectType returns the ObjectType field value
[ -0.26254794001579285, 0.7076117396354675, 0.3454909026622772, 0.46230122447013855, 1.2847267389297485, 0.6500516533851624, 0.5119386315345764, -0.5793812870979309, 0.3193453252315521, 0.7092164158821106, 0.10698810964822769, -1.0138949155807495, -0.8870177268981934, -1.1578973531723022, ...
GetObjectTypeOk returns a tuple with the ObjectType field value and a boolean to check if the value has been set.
[ -0.7243254780769348, 0.4434072971343994, 0.8747233152389526, 0.37518981099128723, 0.8893967270851135, 0.5693463683128357, 0.5119011998176575, 0.15118370950222015, -0.5261964797973633, 2.155991554260254, -1.3707337379455566, -1.681444525718689, -0.17191490530967712, -0.2755032181739807, 0...
SetObjectType sets field value
[ 0.017110904678702354, 0.039123229682445526, 0.48669496178627014, 0.056274451315402985, 0.7203838229179382, 1.2802435159683228, 0.4590195417404175, -0.7812210321426392, -0.37272903323173523, 0.7274242639541626, -1.029443383216858, -1.3565698862075806, 0.1843758076429367, -0.3502860367298126...
GetAdditionalDomains returns the AdditionalDomains field value if set, zero value otherwise (both if not set or set to explicit null).
[ -0.0672350823879242, -0.10583575814962387, 0.5645060539245605, -0.06251160055398941, -0.3417195677757263, 0.20997366309165955, 0.36678704619407654, -0.510136067867279, 1.7203928232192993, -1.0020768642425537, -0.19394446909427643, 0.10470914840698242, -0.127966970205307, 1.5753368139266968...
GetAdditionalDomainsOk returns a tuple with the AdditionalDomains field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned
[ -0.1912711262702942, 0.15582959353923798, 0.43984565138816833, -0.04254031926393509, -0.9164626598358154, 0.3212040662765503, 0.8246123790740967, -0.08332045376300812, 0.8276740312576294, 0.2242637574672699, -0.7366892695426941, -0.36850106716156006, 0.27146846055984497, 0.6049362421035767...
HasAdditionalDomains returns a boolean if a field has been set.
[ 0.6329596042633057, 0.9133932590484619, 0.5385416150093079, -0.6953005790710449, 0.12254194915294647, 0.3129093647003174, 0.0593327097594738, 0.37601178884506226, 0.9505634307861328, -1.0739744901657104, -0.6559162139892578, -0.07951252907514572, 0.35604962706565857, 1.257723093032837, -...
SetAdditionalDomains gets a reference to the given []string and assigns it to the AdditionalDomains field.
[ -0.5740665793418884, 0.11583178490400314, 0.46471497416496277, -0.77100670337677, -0.01961514726281166, 0.1822863668203354, 0.4031166434288025, -1.0576715469360352, 1.5445270538330078, -1.0790245532989502, -0.6176965236663818, 1.0632233619689941, -0.05068614333868027, 0.8034796714782715, ...
GetDefaultDomain returns the DefaultDomain field value if set, zero value otherwise.
[ -0.4947020709514618, 0.7615006566047668, 0.39690056443214417, 1.0082963705062866, 0.642754077911377, -0.0012249097926542163, 0.2597271502017975, -0.36804088950157166, 0.5397157073020935, -1.54521644115448, -0.044260911643505096, -0.06444604694843292, -0.9721781015396118, 1.4394581317901611...
GetDefaultDomainOk returns a tuple with the DefaultDomain field value if set, nil otherwise and a boolean to check if the value has been set.
[ -1.1321967840194702, 0.7589105367660522, 0.4069617986679077, 0.7781434059143066, 0.646903932094574, 0.3968161642551422, 0.643947958946228, -0.0462898313999176, 0.2462455928325653, -0.18690267205238342, -0.842826783657074, -0.4286481738090515, -0.631381094455719, 0.8400360345840454, -0.24...
HasDefaultDomain returns a boolean if a field has been set.
[ -0.3245721757411957, 1.2202516794204712, 0.31973665952682495, 0.37157461047172546, 1.4070791006088257, -0.07362473011016846, 0.20489026606082916, 0.15681219100952148, 0.1690906137228012, -1.526517629623413, -1.265639066696167, 0.04652825742959976, -0.6693106293678284, 1.434901237487793, ...
SetDefaultDomain gets a reference to the given string and assigns it to the DefaultDomain field.
[ -0.9531906247138977, 0.4118133783340454, 0.3601466417312622, -0.4777417778968811, 0.651100754737854, -0.3133049011230469, 0.4212821424007416, -0.5468658208847046, 0.5474764704704285, -1.470818281173706, -0.7418289184570312, 1.6565766334533691, -1.0664080381393433, 0.5409928560256958, 0.2...
GetNameServers returns the NameServers field value if set, zero value otherwise (both if not set or set to explicit null).
[ -0.7079660892486572, 0.2238360494375229, 0.7139261364936829, 0.4165828824043274, -0.20146280527114868, -0.25427737832069397, 0.06334231793880463, -1.5404397249221802, 1.4710975885391235, 0.1957702934741974, -1.4431557655334473, -1.0125508308410645, -0.9300134778022766, 1.3894308805465698, ...
GetNameServersOk returns a tuple with the NameServers field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned
[ -0.6992461681365967, 0.6867256760597229, 0.44932252168655396, 0.34395474195480347, -0.6567046642303467, 0.2512161135673523, 0.6215014457702637, -1.2002277374267578, 0.5973185300827026, 0.9011735916137695, -1.4744620323181152, -0.9717774391174316, -0.37961599230766296, 0.3235987722873688, ...
HasNameServers returns a boolean if a field has been set.
[ -0.31573233008384705, 1.0640162229537964, 0.5795859694480896, -0.36584654450416565, 0.1510360687971115, 0.4100220501422882, 0.17416508495807648, -1.0294541120529175, 0.5522439479827881, -0.15446896851062775, -1.6670749187469482, -0.8193655014038086, -0.9390257000923157, 0.9002452492713928,...
SetNameServers gets a reference to the given []string and assigns it to the NameServers field.
[ -1.1578800678253174, 0.4801490604877472, 0.5380914211273193, -0.22144925594329834, 0.05058976635336876, 0.11048687249422073, 0.14972712099552155, -1.926577091217041, 1.1950249671936035, 0.0892786756157875, -1.7034965753555298, 0.19286637008190155, -0.8980756998062134, 0.5770068168640137, ...
GetVrfName returns the VrfName field value if set, zero value otherwise.
[ -0.09783443063497543, -0.013286017812788486, 0.6318533420562744, 0.9041145443916321, -0.170013427734375, -1.201076626777649, -0.01775449886918068, -0.014705617912113667, -0.16839838027954102, -0.1058308407664299, -0.2777445316314697, -1.5285149812698364, -1.24825918674469, 0.01069045718759...
GetVrfNameOk returns a tuple with the VrfName field value if set, nil otherwise and a boolean to check if the value has been set.
[ 0.09373509883880615, 0.022076960653066635, 0.5093465447425842, 0.5568092465400696, -0.08257321268320084, -0.7424968481063843, 0.18190516531467438, 0.2960053086280823, -0.4415523409843445, 1.2028274536132812, -1.21327543258667, -1.4551191329956055, -0.6642204523086548, -0.23963257670402527,...
HasVrfName returns a boolean if a field has been set.
[ 0.5310606956481934, 0.7243310809135437, 0.4532225430011749, 0.09697142243385315, 0.7202162742614746, -0.9052729606628418, -0.44113925099372864, 0.6357815265655518, -0.8346217274665833, -0.2800929546356201, -1.0897266864776611, -1.246048092842102, -1.1041916608810425, 0.2313513606786728, ...
SetVrfName gets a reference to the given string and assigns it to the VrfName field.
[ 0.04272518306970596, -0.3136623501777649, 0.4395291209220886, -0.32034698128700256, -0.23781397938728333, -1.2268047332763672, 0.08408193290233612, -0.23572400212287903, -0.4657527506351471, -0.08116374909877777, -1.0456043481826782, 0.1518520712852478, -0.7270781397819519, -0.365964680910...
GetNetworkElement returns the NetworkElement field value if set, zero value otherwise.
[ -0.258647620677948, 0.6489707827568054, 0.9277809858322144, 1.056001901626587, 0.5629270672798157, 0.14306482672691345, 0.49152159690856934, -0.6481246948242188, 0.07413139194250107, -1.2325258255004883, -0.3222958445549011, -1.1260558366775513, -1.0070507526397705, 0.4599534571170807, 0...
GetNetworkElementOk returns a tuple with the NetworkElement field value if set, nil otherwise and a boolean to check if the value has been set.
[ -0.49463775753974915, 1.0330897569656372, 0.5701118111610413, 1.0893396139144897, 0.9151156544685364, 0.17405329644680023, 0.5414041876792908, 0.1283549964427948, -0.12970586121082306, -0.34245914220809937, -0.7457497715950012, -1.3018869161605835, -0.44995108246803284, 0.4729473292827606,...
HasNetworkElement returns a boolean if a field has been set.
[ -0.1660238653421402, 1.4828768968582153, 0.6135956645011902, -0.09728597104549408, 0.8330543041229248, 0.4003634452819824, 0.126753568649292, -0.4585880935192108, -0.8821954727172852, -0.7535285353660583, -1.2244982719421387, -1.6960110664367676, -0.46896684169769287, 0.7249162793159485, ...
SetNetworkElement gets a reference to the given NetworkElementRelationship and assigns it to the NetworkElement field.
[ 0.10916747152805328, 0.48433375358581543, 0.5550869107246399, 0.09749197214841843, 0.9194376468658447, 0.497103750705719, -0.017267175018787384, -0.48289406299591064, 0.32063958048820496, -1.0714201927185059, -0.6464870572090149, -0.1580452024936676, -0.7924338579177856, 0.2045873701572418...
GetRegisteredDevice returns the RegisteredDevice field value if set, zero value otherwise.
[ -0.0320548377931118, 1.7503719329833984, 0.6228007078170776, 1.6147762537002563, 0.8314183354377747, -0.6579422354698181, 1.276271939277649, -0.4025692939758301, 0.5602145791053772, -1.0823423862457275, 0.3722878396511078, -0.08641555160284042, -0.693779468536377, 1.0244680643081665, 0.5...
GetRegisteredDeviceOk returns a tuple with the RegisteredDevice field value if set, nil otherwise and a boolean to check if the value has been set.
[ -0.5134069323539734, 1.5818898677825928, 0.5285226702690125, 1.0308915376663208, 0.4866882264614105, -0.007827498018741608, 1.64972984790802, 0.4288439154624939, 0.1630111187696457, 0.5276332497596741, -0.3749930262565613, -0.463954359292984, -0.23520171642303467, 0.5054803490638733, 1.0...