text stringlengths 7 2.39k | embedding listlengths 768 768 |
|---|---|
recursively search for a node with value d and return it or nil if not found | [
0.2542707026004791,
0.6614953875541687,
0.8142387270927429,
0.17262957990169525,
-0.8843486309051514,
0.01499167736619711,
-0.02810380607843399,
-1.2032912969589233,
0.13817107677459717,
-0.48414722084999084,
1.1508492231369019,
0.2671315371990204,
0.5499079823493958,
1.1527745723724365,
... |
4.12 Paths with Sum: You are given a binary tree in which each node contains an integer value (which might be positive or negative). Design an algorithm to count the number of paths that sum to a given value. The path does not need to start or end at the root or a leaf, but it must go downwards (traveling only from par... | [
0.2685222625732422,
-0.1598716676235199,
0.769499659538269,
1.0816614627838135,
-0.49228188395500183,
0.22820763289928436,
1.3594403266906738,
-0.10948780179023743,
0.02173593081533909,
0.4653407335281372,
-0.8639281988143921,
-0.6226912140846252,
0.3005821108818054,
0.308714359998703,
-... |
Option 1. Bruteforce via DSL. Runtime is O(N log N) in a balanced tree. Traverse to each node. At each node, we recursively try all paths downwards, tracking the sum as we go. As soon as we hit our target sum, we increment the total. | [
-0.09659422934055328,
1.1577965021133423,
0.7187895774841309,
1.267672061920166,
0.6670215725898743,
-0.8488662242889404,
1.4686543941497803,
-0.1429539918899536,
-0.11258113384246826,
-0.3741346597671509,
-0.6314821839332581,
-0.3529883027076721,
0.6068921089172363,
0.3116379678249359,
... |
Returns the number of paths with this sum starting from this node | [
0.5974093675613403,
0.14390558004379272,
0.6227872371673584,
1.350700855255127,
0.3511335253715515,
-0.25469720363616943,
2.121260643005371,
0.047795914113521576,
0.7747117877006531,
-0.7897224426269531,
-0.891930341720581,
-0.06693535298109055,
-0.1292492002248764,
-0.13936150074005127,
... |
DFS / DepthFirst Search | [
-0.06273473799228668,
1.918042778968811,
0.616703450679779,
0.020465068519115448,
-0.22524088621139526,
-0.7086417078971863,
1.2670743465423584,
0.23575174808502197,
0.006661960389465094,
-1.011242151260376,
0.5865795612335205,
-0.020977837964892387,
0.3726843595504761,
0.49609798192977905... |
BFS / BreadthFirst Search ...it uses a queue. In BFS, node a visits each of a's neighbors before visiting any of their neighbors. You can think of this as searching level by level out from a. An iterative solution involving a queue usually works best. | [
0.6105261445045471,
0.2214467078447342,
0.7767133712768555,
0.22711165249347687,
-0.0441824346780777,
-0.5500617027282715,
-0.1395852267742157,
-0.14523926377296448,
-0.20212453603744507,
-0.5378000140190125,
-0.076542928814888,
0.8056971430778503,
0.41974833607673645,
0.812263011932373,
... |
NewSample returns a pointer to a new sample. | [
0.6291524171829224,
-1.2294007539749146,
0.41777509450912476,
0.23606136441230774,
-1.736877202987671,
-0.6776710152626038,
-0.6814376711845398,
-1.2048237323760986,
0.206802099943161,
-0.759448766708374,
0.20566026866436005,
0.6790550351142883,
-0.5702768564224243,
-0.21439065039157867,
... |
Save inserting or updating User struct into user table. It will updating if this struct has valid Id if not, will inserting a new row to user. The field parameter is an field that will be saved, it is usefull for partial updating data. | [
-1.0660396814346313,
0.41847124695777893,
0.8354318737983704,
0.6876755952835083,
-0.48828306794166565,
0.5541669130325317,
0.8502631783485413,
-0.21955884993076324,
-0.08845642954111099,
-0.050767987966537476,
-1.689509630203247,
-1.105671763420105,
-0.9723840951919556,
0.2542532086372375... |
Delete permanently deleting user data this also will truncated all data from all table that have relation with this user. | [
0.9283264875411987,
0.36093878746032715,
0.3660217225551605,
0.9602190852165222,
-0.4605279862880707,
0.7089729309082031,
0.7056760787963867,
-0.16128624975681305,
0.48312705755233765,
-0.2709786891937256,
-0.9065440893173218,
-0.12056142091751099,
0.30032381415367126,
0.29841506481170654,... |
Read execute select based on data struct that already assigned. | [
-0.28330573439598083,
-1.2516937255859375,
0.1029517874121666,
0.30137091875076294,
0.7434892654418945,
-0.5739794969558716,
0.2526339590549469,
-1.793403148651123,
0.641572117805481,
-0.48312366008758545,
0.8029479384422302,
0.5120616555213928,
0.007049377541989088,
-0.7029550075531006,
... |
GetUser is used by jwtUser to get model user | [
-0.788806140422821,
-0.3517717719078064,
0.5428721904754639,
1.0913467407226562,
-0.23559463024139404,
0.3460199236869812,
0.406983345746994,
-0.9165088534355164,
-0.07179247587919235,
-0.09994514286518097,
-1.3860328197479248,
-0.1982017457485199,
0.7980625629425049,
0.014056829735636711,... |
TestFile basic test case | [
1.191171407699585,
0.11838313192129135,
0.21244114637374878,
1.4719898700714111,
0.9588925242424011,
1.3775572776794434,
1.057731032371521,
0.019219091162085533,
-1.156754732131958,
-0.9739034175872803,
0.040321432054042816,
-0.6308301687240601,
-0.8411456942558289,
-0.16845928132534027,
... |
New returns a new database | [
-0.38513585925102234,
-0.7948262691497803,
0.40266337990760803,
0.8557640910148621,
-0.7804821133613586,
-0.27126309275627136,
-1.3765734434127808,
0.02389054000377655,
-0.6177922487258911,
-0.7575730681419373,
-0.8629491925239563,
-0.14651982486248016,
-0.6387673020362854,
0.7499985098838... |
ReadFullDB reads from a file, returns the file contents or error | [
0.3723452687263489,
-0.18114523589611053,
0.8585724830627441,
0.7499914169311523,
-1.3254057168960571,
0.47791406512260437,
-0.9917944073677063,
-0.0716002807021141,
-0.569257915019989,
0.16468846797943115,
0.6973657608032227,
-0.7968372106552124,
-0.5223187208175659,
-0.12241148203611374,... |
DefaultPointInPolygonHierarchyResolverUpdateCallback returns a `PointInPolygonHierarchyResolverUpdateCallback` function that will return a dictionary containing the following properties: wof:parent_id, wof:country, wof:hierarchy | [
0.5988907217979431,
-0.9059091806411743,
0.32827550172805786,
0.07705303281545639,
0.052792876958847046,
0.1468697041273117,
-0.10604272037744522,
0.2874261736869812,
0.11046957224607468,
-0.5937761068344116,
-0.5109817981719971,
-1.0433886051177979,
-0.5408734679222107,
-0.882274627685546... |
NewPointInPolygonHierarchyResolver returns a `PointInPolygonHierarchyResolver` instance for 'spatial_db' and 'ms_client'. The former is used to perform point in polygon operations and the latter is used to determine a "reverse geocoding" centroid to use for pointinpolygon operations. | [
1.1722042560577393,
-0.8977232575416565,
0.4017746150493622,
0.9274470210075378,
-0.018335679545998573,
0.20753714442253113,
-0.24723121523857117,
0.7475566267967224,
-0.30364471673965454,
-0.24929434061050415,
-0.34411025047302246,
0.38633018732070923,
-0.6495944857597351,
-0.555196523666... |
PointInPolygon will perform a pointinpolygon (reverse geocoding) operation for 'body' using zero or more 'inputs' as query filters. | [
-0.542752742767334,
-0.5048431158065796,
0.422976016998291,
0.5144805908203125,
0.43441537022590637,
0.4224543869495392,
-0.282678484916687,
-0.2464834749698639,
0.40329277515411377,
0.0071578300558030605,
-0.2141694277524948,
0.5110711455345154,
-1.3611385822296143,
-0.797132670879364,
... |
PointInPolygonCentroid derives an orb.Point (or "centroid") to use for pointinpolygon operations. | [
1.6974531412124634,
-1.256639838218689,
0.2140837013721466,
0.36001208424568176,
0.177224263548851,
0.9457020163536072,
0.11892369389533997,
0.1476518213748932,
1.401641607284546,
-0.36821460723876953,
0.39186951518058777,
0.03328447416424751,
-0.003607626538723707,
-1.5499862432479858,
... |
testResource writes a default file | [
0.7322077751159668,
-0.8363895416259766,
0.2736044228076935,
0.6327797174453735,
1.466989278793335,
0.20153850317001343,
1.46267831325531,
0.5485665798187256,
-0.37778663635253906,
-0.4622156322002411,
-0.014547258615493774,
-1.3311948776245117,
-0.8390433192253113,
0.21019744873046875,
... |
GenerateTokens generates at most requestedTokensCount unique random tokens, none of which clashes with the given allTakenTokens, representing the set of all tokens currently present in the ring. Generated tokens are sorted. | [
-0.8199676871299744,
0.02378106117248535,
0.4899139702320099,
-0.21895842254161835,
0.004490849561989307,
-0.010405818931758404,
-0.09980721026659012,
-0.23504950106143951,
0.4149430990219116,
-1.1973470449447632,
-0.7694709897041321,
-0.024872945621609688,
-0.14002567529678345,
-0.1738429... |
GetConnectionURL constructs the Postgres connection URL | [
-0.41463884711265564,
-0.3092285692691803,
0.25984469056129456,
0.8130879998207092,
0.42787453532218933,
-0.05513361841440201,
-0.4801875054836273,
1.2379560470581055,
-1.7690900564193726,
0.7296711206436157,
0.7393327355384827,
-0.5437885522842407,
-0.1584995537996292,
-0.0451598986983299... |
Connect initiates a connection to a Postgres database | [
0.0187272597104311,
0.37203699350357056,
0.49286505579948425,
0.750083327293396,
-0.36552122235298157,
0.280195951461792,
-1.2453017234802246,
0.11284118890762329,
-1.701281189918518,
0.3864414691925049,
-0.17535199224948883,
0.11951977759599686,
-0.4147464632987976,
0.34515491127967834,
... |
astNodeVariableDeclaration is basically an assignment with loads of verification | [
0.3061986267566681,
0.22124671936035156,
0.5121711492538452,
0.6819708347320557,
0.07973476499319077,
-0.09648910164833069,
0.49084243178367615,
-0.07334265112876892,
-0.0901162400841713,
0.1830335557460785,
0.1988249272108078,
0.7988970875740051,
0.35641518235206604,
1.3816332817077637,
... |
TestTimeTZRoundTripRobust demonstrates how the TIMESTAMPTZ data type does not drop a nonUTC offset when storing. Thus, a time survives the round trip regardless of what the time.Time's Location. | [
-0.8545206785202026,
-0.09406664967536926,
0.36975544691085815,
-0.46195220947265625,
-0.20914649963378906,
1.3504232168197632,
0.8608304858207703,
-0.7715680003166199,
0.5586849451065063,
-0.13473597168922424,
-0.47819337248802185,
-1.0389894247055054,
0.4001486301422119,
0.13308224081993... |
TestTimeTZRoundTripCorrectTimeDef ensures that the TimeDef Value and Scan implementations are also compatible with TIMESTAMPTZ. | [
-0.020911674946546555,
-0.3344160318374634,
0.17967607080936432,
0.4674353003501892,
-0.4974686801433563,
0.45137307047843933,
0.580963671207428,
-0.22342178225517273,
0.7285181879997253,
0.39786627888679504,
-0.15069682896137238,
-0.5370984077453613,
0.51645427942276,
1.4888174533843994,
... |
TestMultiLedgerHappy runs an endtoend test of the multiledger functionality in the optimistic case for the implementation specified in the test setup. nolint:revive // test.Test... stutters but this is OK in this special case. | [
-0.313070684671402,
0.11543433368206024,
0.8222686052322388,
0.3037111759185791,
0.843978762626648,
-0.049425624310970306,
-0.3616562485694885,
-0.05936483293771744,
0.13643358647823334,
0.822279691696167,
-0.35910317301750183,
-0.016211766749620438,
0.2820896506309509,
1.1965558528900146,... |
GetToEatAndUserFunds Metodo che richiama il servizio remoto gettoeatanduserfunds | [
-0.059231579303741455,
-0.5799214839935303,
0.23483958840370178,
-0.009280703961849213,
-0.5233822464942932,
-0.554458498954773,
0.9974420666694641,
0.4920474588871002,
-0.28234437108039856,
-0.5252345204353333,
-0.34339913725852966,
0.6816496849060059,
0.7877476215362549,
-0.1987831145524... |
Start is called after Init. This method must be nonblocking. | [
0.838484525680542,
-0.36096909642219543,
0.38804247975349426,
0.8993420004844666,
0.016140302643179893,
0.5828401446342468,
0.6334283351898193,
0.26089009642601013,
-0.3862045407295227,
-0.3105938732624054,
-0.8676294684410095,
0.7115722894668579,
-0.8136283159255981,
0.7672255635261536,
... |
Stop is called in response to syscall.SIGINT, syscall.SIGTERM, or when a Windows Service is stopped. | [
0.10974866896867752,
-0.5893571972846985,
0.3025175929069519,
0.41313865780830383,
-0.6747298240661621,
0.03625166788697243,
-0.16470490396022797,
-0.07789546996355057,
0.29465553164482117,
-0.379991739988327,
-0.34584131836891174,
0.17471493780612946,
-0.23004691302776337,
0.4791444242000... |
/ Complete the 'encryption' function below. The function is expected to return a STRING. The function accepts STRING s as parameter. | [
-0.1258527785539627,
0.2690601348876953,
0.22374099493026733,
0.2970268428325653,
-1.1830202341079712,
-0.663707435131073,
1.3565372228622437,
-0.32940447330474854,
0.4834873378276825,
0.5218890309333801,
-0.6475046873092651,
0.5670316815376282,
-0.1278856247663498,
-1.180945634841919,
0... |
encode this link frame to a writer | [
-0.5848791003227234,
-0.1329118311405182,
0.15803900361061096,
0.13227695226669312,
1.0184279680252075,
-1.1056454181671143,
0.7243250608444214,
-0.26375967264175415,
0.9211422204971313,
-1.4179229736328125,
-0.40227413177490234,
0.7247846126556396,
-0.30387747287750244,
-0.204571470618247... |
turn frame into bytes | [
0.07965424656867981,
0.906819224357605,
0.24795499444007874,
-0.03865157812833786,
0.35277676582336426,
-0.7680898308753967,
-1.1130934953689575,
-0.9661507606506348,
0.6140977144241333,
-1.4830366373062134,
-0.8138188719749451,
0.6288374662399292,
-0.8038578033447266,
-0.19418632984161377... |
decode from reader into this frame | [
-0.6758881211280823,
-0.8822472095489502,
0.14499232172966003,
-0.29410016536712646,
-0.5208990573883057,
-0.6682769656181335,
0.1484488546848297,
0.025610720738768578,
0.9972138404846191,
-1.187475562095642,
-0.14386889338493347,
0.24176938831806183,
-0.5301182866096497,
0.192558392882347... |
get parameter as byteslice | [
-0.6710264086723328,
-0.2913172245025635,
0.43843182921409607,
-0.3150104582309723,
0.41523846983909607,
-0.5730226635932922,
-0.7979032397270203,
-1.0388879776000977,
0.38079872727394104,
0.8501688241958618,
0.1174776554107666,
0.3910748064517975,
-0.608285129070282,
-0.20771975815296173,... |
get parameter as int | [
-1.0825772285461426,
-0.6889792680740356,
0.34966516494750977,
-0.9923057556152344,
0.503002405166626,
-0.7363146543502808,
0.14333957433700562,
-0.8636739253997803,
0.031165413558483124,
0.5168882012367249,
0.07753463834524155,
0.7736573219299316,
0.22771744430065155,
-0.3910744786262512,... |
does this link frame have ip packets? | [
-0.6431049108505249,
0.00800149142742157,
0.21895234286785126,
-0.22225181758403778,
-0.1710984855890274,
-0.7684798240661621,
-0.6808587908744812,
0.6281604766845703,
1.1197271347045898,
-1.1215547323226929,
0.15734857320785522,
-0.14549478888511658,
-0.454023152589798,
-0.775173544883728... |
reads packets from byteslice returns nil if format invalid | [
0.20395611226558685,
-0.3237820565700531,
0.5043731331825256,
0.053829021751880646,
-0.7856639623641968,
-0.7057931423187256,
-1.3343197107315063,
-0.8402005434036255,
0.5857643485069275,
-0.10835906118154526,
0.5372065901756287,
-0.3105650544166565,
-0.16978108882904053,
-0.57142102718353... |
create RELAY_TUN_DATA frame from a bunch of ip packets for tunnel given its id | [
-0.8730962872505188,
0.771170437335968,
0.07047116756439209,
-1.0592267513275146,
-0.163370281457901,
-0.3989553451538086,
-0.7597585320472717,
0.01176014356315136,
0.1909230798482895,
-0.8211220502853394,
-0.1076376810669899,
0.934478759765625,
0.6199578046798706,
-1.2003151178359985,
-... |
create a reply to a CLIENT_TUN_NEW frame | [
0.01387716643512249,
0.34201034903526306,
0.43385109305381775,
-0.42756152153015137,
0.10246355086565018,
-1.0383764505386353,
-0.01592995971441269,
-1.575884461402893,
-0.10151819884777069,
-0.6560904383659363,
-0.8344355821609497,
0.5356744527816772,
-0.3658876121044159,
-0.5330919027328... |
parse a link message from bytes | [
0.610335648059845,
-0.2629827857017517,
0.10336773842573166,
-0.6922590136528015,
1.1651370525360107,
-0.42460760474205017,
0.12465263158082962,
-0.08908776193857193,
0.5922225117683411,
-1.206406831741333,
-0.2593303918838501,
0.752276599407196,
-1.7095026969909668,
-0.35067060589790344,
... |
CreateTopic invokes the alikafka.CreateTopic API synchronously | [
0.08509232848882675,
0.9521875381469727,
0.31088849902153015,
1.0106534957885742,
0.8475527167320251,
0.03500489145517349,
-0.20826609432697296,
-0.5999226570129395,
-0.7125978469848633,
-0.7653672695159912,
0.3631826341152191,
-0.0249987430870533,
-0.4671899974346161,
-0.5669779777526855,... |
CreateTopicWithChan invokes the alikafka.CreateTopic API asynchronously | [
0.06253338605165482,
0.19973087310791016,
0.26163631677627563,
-0.038159675896167755,
0.727941632270813,
0.14326636493206024,
-0.7617297172546387,
-0.7785133123397827,
-0.7569393515586853,
-0.2947997748851776,
0.29087868332862854,
0.005685080774128437,
-0.2970956265926361,
0.00453690346330... |
CreateTopicWithCallback invokes the alikafka.CreateTopic API asynchronously | [
0.830450177192688,
0.6903202533721924,
0.4769618809223175,
0.5013868808746338,
0.4403267204761505,
-0.04997364804148674,
-0.3986959755420685,
-0.5331377387046814,
0.1115318015217781,
-0.2542971074581146,
0.5190765857696533,
-1.1536738872528076,
0.45507875084877014,
-0.39248600602149963,
... |
CreateCreateTopicRequest creates a request to invoke CreateTopic API | [
-0.29822486639022827,
0.23016506433486938,
0.2956434488296509,
-0.10718552023172379,
0.09864245355129242,
0.026957252994179726,
-0.10858239233493805,
-0.7555747032165527,
-0.9748181104660034,
0.16334564983844757,
0.6845569610595703,
0.4453243315219879,
-0.09121862053871155,
0.3122393190860... |
CreateCreateTopicResponse creates a response to parse from CreateTopic response | [
0.8803799152374268,
-1.30646812915802,
0.09645639359951019,
-0.6044141054153442,
-0.03587006404995918,
0.10297344624996185,
-0.029428133741021156,
-1.1253489255905151,
-0.13961470127105713,
0.059359777718782425,
-0.06887008994817734,
-0.9400498270988464,
-0.3934704661369324,
-0.88540428876... |
Run runs the core logic of the CLI | [
-0.39983782172203064,
0.10611110180616379,
0.2672487497329712,
0.5414097905158997,
0.637938916683197,
0.6955820918083191,
1.1083691120147705,
0.17438490688800812,
-0.7998483777046204,
-0.05247941240668297,
-0.008481661789119244,
-0.027654357254505157,
-0.6694449782371521,
0.240953207015991... |
ParseArgs checks if a single positional argument was defined and extracts this the root. If no positional arguments are defined, the it is assumed that the root is specified as a flag. | [
0.44040003418922424,
0.45463982224464417,
0.743910014629364,
0.8566493988037109,
0.6199200749397278,
-0.5540587902069092,
-0.1305890828371048,
0.5110920071601868,
-0.15231195092201233,
0.24259459972381592,
0.6893923878669739,
0.24190640449523926,
-1.1813615560531616,
1.0888053178787231,
... |
Create creates an MTLS credential in Kong If an ID is specified, it will be used to create a MTLS in Kong, otherwise an ID is autogenerated. | [
0.3262591063976288,
-0.64545738697052,
0.2231069952249527,
1.1353631019592285,
-0.7426662445068359,
0.7179574966430664,
-1.2242778539657593,
0.514499306678772,
0.05291011556982994,
-0.14829978346824646,
-0.40208134055137634,
-0.3929270803928375,
-0.4625023901462555,
0.5285968780517578,
-... |
Get fetches an MTLS credential from Kong. | [
0.4300423562526703,
-0.5198055505752563,
0.02783413790166378,
0.4660889804363251,
-1.1889156103134155,
-0.08240693062543869,
-1.7028015851974487,
0.5669893622398376,
-0.36667442321777344,
0.4577399492263794,
0.27050960063934326,
0.1640937328338623,
0.21924591064453125,
-0.2359015792608261,... |
Update updates an MTLS credential in Kong | [
0.3630243241786957,
-1.798089623451233,
0.10492446273565292,
0.4086068272590637,
-1.7174233198165894,
0.8001837730407715,
-1.1748571395874023,
0.8633899688720703,
0.4001931846141815,
0.8445746302604675,
0.22384749352931976,
-0.3960607945919037,
-0.4114151895046234,
-0.38892897963523865,
... |
Delete deletes an MTLS credential in Kong | [
1.1685351133346558,
-0.9926022887229919,
0.23945565521717072,
0.5498068928718567,
-1.0704509019851685,
0.40248578786849976,
-1.0211223363876343,
1.3811978101730347,
0.2676072120666504,
0.8094268441200256,
0.27353549003601074,
-0.012528725899755955,
-0.4385029077529907,
-0.1466807872056961,... |
List fetches a list of MTLS credentials in Kong. opt can be used to control pagination. | [
0.07056885957717896,
-0.3480113744735718,
0.5205786228179932,
0.37942782044410706,
-1.1547666788101196,
-0.13689622282981873,
-1.4212566614151,
0.24498599767684937,
0.12947815656661987,
0.5918834209442139,
-0.23233912885189056,
-0.3847694396972656,
0.14170855283737183,
0.530246376991272,
... |
ListAll fetches all MTLS credentials in Kong. This method can take a while if there a lot of MTLS credentials present. | [
0.11406181007623672,
-0.6861015558242798,
0.38891059160232544,
0.9227781295776367,
-1.205963373184204,
0.2551211714744568,
-1.657297968864441,
0.2562442421913147,
-0.03572814166545868,
0.2741721570491791,
0.471219927072525,
0.12136233597993851,
0.24619078636169434,
1.3728936910629272,
-1... |
ListForConsumer fetches a list of mtls credentials in Kong associated with a specific consumer. opt can be used to control pagination. | [
0.19649574160575867,
-0.4163987338542938,
0.530826985836029,
0.8640078902244568,
-0.7131811380386353,
-0.571639358997345,
-1.153997540473938,
-0.18124419450759888,
-0.31273970007896423,
0.6825199723243713,
0.4595120847225189,
-0.5255265831947327,
0.3014947175979614,
0.5433178544044495,
-... |
getProgressReader returns a new Reader which, when read from, will display a progress bar to stderr. | [
0.5409456491470337,
-0.679279088973999,
0.494890958070755,
0.05879588425159454,
-0.9723063707351685,
0.6793500185012817,
0.1599089354276657,
-1.0846331119537354,
-0.5672634243965149,
-1.2261337041854858,
1.5468895435333252,
0.23694942891597748,
-0.455957293510437,
-0.08734314888715744,
0... |
step performs a besteffort cleanup. See the following methods for more specifics. Run periodically performs a besteffort cleanup process. See the following methods for more specifics: cleanOldUploads, removeOrphanedDumps, and freeSpace. | [
0.21781893074512482,
0.18953415751457214,
0.21128268539905548,
0.0686819851398468,
0.12239959836006165,
-0.217336043715477,
0.9485921263694763,
-0.18821105360984802,
-0.5346966981887817,
-1.5184047222137451,
-0.990416407585144,
0.0379057340323925,
0.4915542006492615,
1.2304534912109375,
... |
AppConfigParse App Config Parse | [
0.8611876368522644,
-0.46631360054016113,
0.29474565386772156,
1.5404510498046875,
-0.9084507822990417,
0.47299063205718994,
-0.836876392364502,
1.1679842472076416,
-1.0865325927734375,
0.6435259580612183,
0.027181308716535568,
-1.2310097217559814,
0.3277093172073364,
1.0214825868606567,
... |
ReverseList reverses a linked list | [
-0.5381618738174438,
0.49468281865119934,
0.018269047141075134,
-0.30353519320487976,
0.4821228086948395,
-0.8036209344863892,
-1.3401628732681274,
1.7987737655639648,
-0.12348338961601257,
-0.004455132409930229,
-1.269504189491272,
0.018337855115532875,
-0.3654044270515442,
0.019627435132... |
GetRow returns nth row in pascals triangle | [
-0.03381265327334404,
1.0686421394348145,
0.11476947367191315,
-0.1705332249403,
0.3449021577835083,
-0.07292219251394272,
-0.4298059940338135,
-0.5341734290122986,
0.7997815608978271,
-1.1131212711334229,
0.6821182370185852,
-0.4610386788845062,
0.5423995852470398,
-0.5551018118858337,
... |
NewDeploymentsRepository creates and returns a DeploymentsRepository instance | [
-0.39998966455459595,
-0.14871619641780853,
0.22505895793437958,
-0.8688668608665466,
-1.002650260925293,
-0.838725745677948,
-0.3416837453842163,
0.08637870848178864,
1.2544118165969849,
0.10771456360816956,
-0.1366712749004364,
-2.0363612174987793,
0.3588467240333557,
0.48758089542388916... |
FindFirst gets the first ClusterBackupDeploymentsModel for a cluster (normally there must only be one per cluster) | [
0.6702524423599243,
0.1505415439605713,
0.5485143661499023,
0.7183610796928406,
1.2105343341827393,
-0.41685330867767334,
0.05662158504128456,
-0.19844351708889008,
-0.38716480135917664,
0.7907997965812683,
0.042526260018348694,
-1.1185359954833984,
-0.3641037046909332,
0.29094186425209045... |
Persist creates and persists a ClusterBackupDeploymentsModel by a PersistDeploymentRequest | [
-0.7018610239028931,
0.1665014922618866,
0.5034538507461548,
0.48466455936431885,
0.781852126121521,
0.610721230506897,
0.6368515491485596,
0.5190777778625488,
0.8787018656730652,
0.5929338335990906,
-0.24175164103507996,
-1.5662050247192383,
-0.5993598103523254,
-0.5195395946502686,
1.4... |
Delete deletes a ClusterBackupDeploymentsModel | [
0.4217507839202881,
0.2977312207221985,
0.3903031647205353,
0.9429053664207458,
0.47347307205200195,
-0.05775091424584389,
0.36142614483833313,
1.352789044380188,
0.49664556980133057,
1.3412442207336426,
-0.4120660424232483,
-1.2343494892120361,
-0.416873961687088,
-1.023636817932129,
0.... |
UpdateStatus updates the status of a ClusterBackupDeploymentsModel | [
-0.7269740700721741,
-0.4205382764339447,
0.26898473501205444,
0.631978452205658,
-0.36538898944854736,
0.3016227185726166,
-0.07264035940170288,
1.6707618236541748,
0.6459692120552063,
1.554864525794983,
-0.979044497013092,
-0.7441496253013611,
0.05540718510746956,
-0.38212934136390686,
... |
NewReaderWithProgress creates a new instance of ReaderWithProgress. The parameter inner is the inner stream whose read progress needs to be tracked, sizeInBytes is the total size of the inner stream in bytes, progressIntervalInSeconds is the interval at which the read progress needs to be send to ProgressChan channel. ... | [
0.0569312609732151,
-1.5741037130355835,
0.6506198048591614,
-0.7569301724433899,
-0.9763126373291016,
0.32317957282066345,
-0.015122340060770512,
-0.3436594605445862,
-1.086572289466858,
-0.8700405359268188,
0.35726282000541687,
-0.25686219334602356,
-1.5101203918457031,
0.106171682476997... |
Read reads up to len(b) bytes from the inner stream. It returns the number of bytes read and an error, if any. EOF is signaled when no more data to read and n will set to 0. | [
-0.4652225077152252,
0.34218016266822815,
0.9209750890731812,
0.06531587243080139,
-0.2506365478038788,
-0.35162997245788574,
-0.13149163126945496,
0.12416937202215195,
-0.06652018427848816,
-0.36694303154945374,
-0.06047559529542923,
0.09547694027423859,
-0.7051846385002136,
0.35261946916... |
Close closes the inner stream and stop reporting read progress in the ProgressChan chan. | [
0.01508047804236412,
-1.3532991409301758,
0.5303567051887512,
-1.4529668092727661,
-0.36489880084991455,
0.9739371538162231,
0.8831220865249634,
-0.5892024040222168,
-1.6185369491577148,
-1.8432611227035522,
0.9065487384796143,
-0.24991868436336517,
-1.8304038047790527,
0.45039987564086914... |
Equal checks identity attributes (Msp id, cert subject and cert issuer) equality | [
0.8738968372344971,
-1.0794026851654053,
0.3196967840194702,
1.028297781944275,
-0.09409024566411972,
0.7587363719940186,
-0.5802965760231018,
0.11920443177223206,
1.3000857830047607,
0.4581036865711212,
-0.4317797124385834,
-0.267377644777298,
-0.7038072943687439,
-0.8671128153800964,
0... |
CertEqual checks certificate equality | [
0.8372188806533813,
-1.0363478660583496,
0.2765178382396698,
1.5575430393218994,
0.551072895526886,
0.2783159911632538,
-0.5661091804504395,
-0.8664636611938477,
-0.4893144965171814,
1.0667893886566162,
-0.9043350219726562,
-0.38580936193466187,
0.15784712135791779,
-0.5434141755104065,
... |
CreateBgpNeighbor creates BGP Neighbor with the given configuration | [
0.6067335605621338,
-0.35288339853286743,
0.4313271641731262,
1.6904959678649902,
-0.5757150053977966,
1.3502647876739502,
0.07986101508140564,
0.21528582274913788,
-0.8670394420623779,
0.7154538631439209,
-0.7121134400367737,
0.28309524059295654,
-1.291002631187439,
0.44179779291152954,
... |
GetAllBgpNeighbors retrieves all BGP Neighbors with an optional filter | [
-0.1439323127269745,
0.4219108819961548,
0.6490150094032288,
1.6585279703140259,
-0.6550940275192261,
0.46939364075660706,
-0.9880884289741516,
0.07182040810585022,
-0.47398069500923157,
0.4548029899597168,
-0.22450882196426392,
1.8742111921310425,
-0.959010899066925,
0.8166807293891907,
... |
GetBgpNeighborById retrieves BGP Neighbor By ID | [
0.706546425819397,
-0.5893269181251526,
0.40495017170906067,
1.030609130859375,
-0.693082869052887,
0.5048294067382812,
-0.3806748390197754,
-0.4775218665599823,
-0.7140614986419678,
0.865436851978302,
-0.42816177010536194,
1.1899088621139526,
-1.3808164596557617,
0.7171030044555664,
0.1... |
Update updates existing BGP Neighbor with new configuration and returns it | [
-0.8385187983512878,
-1.2311182022094727,
0.343422532081604,
0.9393400549888611,
-1.3830389976501465,
0.7563799619674683,
-0.43016642332077026,
0.004201933741569519,
-0.18999366462230682,
1.1283111572265625,
-0.38602137565612793,
0.18677043914794922,
-1.649779200553894,
-0.3099485635757446... |
Delete deletes existing BGP Neighbor | [
1.1831870079040527,
-0.11567080020904541,
0.3129405081272125,
1.2265281677246094,
-0.04693569615483284,
0.8795257210731506,
-0.20268532633781433,
0.530552864074707,
-0.2181907743215561,
1.2232340574264526,
-0.07112203538417816,
0.7687411308288574,
-1.7408815622329712,
0.06567338854074478,
... |
NewRelayDiscovery new relay discovery | [
1.2969121932983398,
-0.310808926820755,
0.19391067326068878,
-0.25421610474586487,
-0.5903919339179993,
-0.5266884565353394,
1.0255550146102905,
0.25677379965782166,
0.5224124193191528,
-0.8640549778938293,
-0.9199646711349487,
0.11029449850320816,
-0.01817951537668705,
0.6823143362998962,... |
observeSchedulerConfig syncs the scheduler policyconfig from the openshiftconfig namespace to the kubescheduler, if set | [
0.5621548891067505,
-0.5741631388664246,
0.2605978548526764,
0.01921359822154045,
-0.3554784059524536,
0.3812444508075714,
-0.8863881230354309,
-0.4629437029361725,
0.43617427349090576,
1.2227641344070435,
0.13193149864673615,
0.5636561512947083,
0.7084768414497375,
1.2406294345855713,
0... |
newNodeRegistry creates a new registry for nodes. | [
-1.0476045608520508,
0.8034040331840515,
-0.05892543867230415,
-0.6063809394836426,
0.056579940021038055,
-0.7669928669929504,
0.25343456864356995,
-0.4187297523021698,
-0.37807050347328186,
-0.5374791026115417,
-0.7502210140228271,
1.420564889907837,
-0.38742339611053467,
0.20745986700057... |
CreateFileView returns a view on the given file identified by the given URI. | [
0.35103926062583923,
-0.22198878228664398,
0.3346037268638611,
-0.4533313512802124,
-0.5543516874313354,
-0.09724190831184387,
-0.5590983033180237,
0.147455096244812,
-1.3655729293823242,
-1.5535049438476562,
1.1641284227371216,
0.37360337376594543,
0.03796136751770973,
-0.3321241140365600... |
GetNodeClient returns a client for the given node or nil of no such node is found. | [
-0.2663330137729645,
-0.01794496178627014,
0.4246501624584198,
-0.9268684387207031,
0.20343513786792755,
-0.745143711566925,
-0.07798343896865845,
-1.0566034317016602,
-0.07812251895666122,
0.17883256077766418,
0.3905552923679352,
1.2460981607437134,
-0.0748714879155159,
-0.493785083293914... |
Map returns a map version of the update | [
-1.023648977279663,
-2.486114501953125,
0.5134710669517517,
-0.3110785484313965,
-1.5729055404663086,
0.6051487326622009,
-1.32765531539917,
0.45184236764907837,
1.3286610841751099,
0.5385778546333313,
0.29929977655410767,
-0.44233953952789307,
0.6594117879867554,
-1.1243516206741333,
-1... |
ZeroValue returns whether the struct has not had any fields set. | [
0.02053770236670971,
0.200280100107193,
0.36860138177871704,
-0.5551586151123047,
0.7818666696548462,
-0.05468673259019852,
-0.0032438114285469055,
-0.00830724835395813,
-0.9521885514259338,
-1.3277806043624878,
-0.8125617504119873,
-0.2361861765384674,
-0.46559637784957886,
0.295608460903... |
TerminalState returns true if a workflow state is terminal | [
-0.7067404985427856,
-1.148037075996399,
0.28616708517074585,
-0.39263853430747986,
-0.001175018958747387,
-0.4992431104183197,
-0.8729957342147827,
-0.04681442305445671,
1.1871023178100586,
0.3677496016025543,
0.2330949604511261,
-0.4356672167778015,
-0.12172574549913406,
-0.4972876906394... |
NewTrmConfig creates and returns a TrmConfig struct after making slices for NoseRadii and RadiusCoefs | [
0.5269516110420227,
-0.07567958533763885,
0.00025853622355498374,
-0.7714490294456482,
-0.4530218243598938,
-0.7013316750526428,
-0.020461300387978554,
-0.5747594237327576,
-0.03693466633558273,
0.022308887913823128,
-0.7335127592086792,
-0.20148949325084686,
-0.34266397356987,
-0.09524570... |
Load will be passed data/en/trm_control_model.config or equivalent file | [
0.5927693843841553,
-0.20979845523834229,
0.32214924693107605,
-0.39195287227630615,
0.47957494854927063,
0.9372506141662598,
-0.1344332993030548,
-0.36044737696647644,
-1.0610718727111816,
0.6051661372184753,
-0.8584221601486206,
-1.479061484336853,
0.3885868787765503,
-0.6041030287742615... |
OpenJSON opens model config from a JSONformatted file (i.e. model params) | [
-1.4826536178588867,
-0.9872492551803589,
0.32341840863227844,
-0.640812337398529,
-1.2744311094284058,
0.7884517312049866,
0.0859675481915474,
0.6925703287124634,
-1.1078835725784302,
1.2133764028549194,
-1.0666583776474,
-0.4296230971813202,
0.8200066685676575,
0.7145205736160278,
-0.2... |
Identity returns the identity of the objects in the list. | [
-1.5573474168777466,
-1.2779756784439087,
0.5049147605895996,
1.4741365909576416,
1.5168838500976562,
0.6709199547767639,
0.19566428661346436,
0.05551411584019661,
1.1573432683944702,
0.22319620847702026,
-2.173419713973999,
-0.992900013923645,
-0.7581294775009155,
0.42887401580810547,
-... |
Copy returns a pointer to a copy the EnforcerReportsList. | [
0.33055734634399414,
-0.4435412585735321,
0.5328168272972107,
-0.08939041197299957,
0.5791422128677368,
0.9802423119544983,
0.3740691840648651,
-0.7143088579177856,
0.8974153399467468,
-0.09191321581602097,
-0.11073782294988632,
-0.2879853844642639,
-1.6860096454620361,
-0.4851390123367309... |
Append appends the objects to the a new copy of the EnforcerReportsList. | [
0.09382010251283646,
-0.1666555106639862,
0.2907603085041046,
-0.21212027966976166,
1.3232849836349487,
0.8228089213371277,
0.07016625255346298,
-0.0793982744216919,
-0.04220712184906006,
-0.14395415782928467,
-0.3264541029930115,
-0.4920583963394165,
-0.9867796897888184,
0.143184944987297... |
List converts the object to an elemental.IdentifiablesList. | [
-0.9600858688354492,
-0.30214112997055054,
0.23277226090431213,
-0.2363506257534027,
0.9523658156394958,
0.8807448148727417,
-0.5574077367782593,
0.3838338255882263,
1.7640103101730347,
0.5025593638420105,
-1.7199052572250366,
-0.014203635975718498,
0.8071708679199219,
-0.1913297176361084,... |
DefaultOrder returns the default ordering fields of the content. | [
-0.6482998728752136,
0.2232590913772583,
0.15296271443367004,
0.47396111488342285,
1.2243592739105225,
-0.17157921195030212,
-0.5715826749801636,
-0.7590720057487488,
-0.29285162687301636,
-0.5427820086479187,
-1.5687730312347412,
-1.6658227443695068,
-0.9715242385864258,
0.572170376777648... |
ToSparse returns the EnforcerReportsList converted to SparseEnforcerReportsList. Objects in the list will only contain the given fields. No field means entire field set. | [
0.32368844747543335,
1.067496657371521,
0.42812660336494446,
-0.23543991148471832,
1.5484483242034912,
-0.03870483860373497,
-0.13346728682518005,
-0.21627773344516754,
0.40018343925476074,
0.13010071218013763,
-0.8382627964019775,
-0.43038278818130493,
-1.6659446954727173,
-0.180831298232... |
Version returns the version of the content. | [
-0.0020267143845558167,
-1.2441658973693848,
0.09488457441329956,
-0.06660096347332001,
0.4097178876399994,
0.16992966830730438,
0.5500401258468628,
-0.6270068883895874,
-0.5982562899589539,
0.6791269779205322,
-0.6349872350692749,
-0.5798310041427612,
-0.9640215039253235,
-0.0687538832426... |
NewEnforcerReport returns a new EnforcerReport | [
0.37924566864967346,
0.1338932365179062,
0.18877948820590973,
-0.660569965839386,
0.688830554485321,
-1.3643178939819336,
0.3281209468841553,
0.029854724183678627,
-0.18131650984287262,
-0.9851232171058655,
-0.663715660572052,
-1.2196468114852905,
-2.22581148147583,
0.4921242296695709,
-... |
Identity returns the Identity of the object. | [
-0.8581191301345825,
-1.3812037706375122,
0.5761336088180542,
1.5363119840621948,
0.9365175366401672,
0.8697841167449951,
0.7980798482894897,
-1.1907985210418701,
1.47340989112854,
-0.49796533584594727,
-1.5679118633270264,
-0.3858628571033478,
-0.010754957795143127,
-1.006609320640564,
... |
Identifier returns the value of the object's unique identifier. | [
-0.4694364070892334,
-0.9613295793533325,
0.6105800867080688,
-0.16315627098083496,
-0.051591210067272186,
0.19157859683036804,
0.7355109453201294,
0.5430997610092163,
1.187980055809021,
-0.6133586168289185,
-1.4855856895446777,
0.049500226974487305,
0.35673773288726807,
-0.968970537185669... |
SetIdentifier sets the value of the object's unique identifier. | [
-0.650966465473175,
-0.7124879956245422,
0.36741137504577637,
0.05471213534474373,
-0.2188844233751297,
0.9483810067176819,
0.8196902275085449,
0.6249292492866516,
0.5925881266593933,
-0.1381109654903412,
-1.8922903537750244,
0.10359315574169159,
0.7457306385040283,
0.021384546533226967,
... |
GetBSON implements the bson marshaling interface. This is used to transparently convert ID to MongoDBID as ObectID. | [
-0.16205400228500366,
-0.15549048781394958,
0.550056517124176,
0.1793619990348816,
0.1714877039194107,
0.30355292558670044,
-0.24578720331192017,
-0.16097669303417206,
1.8386250734329224,
-0.9652994275093079,
0.5482439994812012,
0.9261605739593506,
-0.3160775899887085,
-0.00700245611369609... |
SetBSON implements the bson marshaling interface. This is used to transparently convert ID to MongoDBID as ObectID. | [
-0.37723228335380554,
-0.3958483040332794,
0.3969792127609253,
0.10089442133903503,
-0.16202835738658905,
0.5435289144515991,
-0.263464093208313,
-0.10207336395978928,
1.517702341079712,
-0.5953258275985718,
0.20559218525886536,
0.997705340385437,
-0.3588419258594513,
0.40581557154655457,
... |
Version returns the hardcoded version of the model. | [
-0.3388679623603821,
-1.2214012145996094,
0.04859277606010437,
0.6236059069633484,
0.5751096606254578,
1.2737253904342651,
0.42161670327186584,
-0.04793591424822807,
-0.15058059990406036,
0.7452157735824585,
-1.6071122884750366,
-0.4795745313167572,
0.5358558893203735,
0.19901494681835175,... |
BleveType implements the bleve.Classifier Interface. | [
0.03472669795155525,
-0.21193164587020874,
0.24915559589862823,
1.092283010482788,
1.6636236906051636,
0.5362924337387085,
0.8952186107635498,
0.1116562932729721,
-0.534685492515564,
0.6156362891197205,
-0.34913894534111023,
0.7281235456466675,
-0.8321071863174438,
1.4451431035995483,
0.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.