-
Notifications
You must be signed in to change notification settings - Fork 0
/
stripcode.json
19020 lines (19020 loc) · 922 KB
/
stripcode.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"format.go": {
"golang/dep": [
"var stringerIface = reflect.TypeOf((*fmt.Stringer)(nil)).Elem()\n\n// Format formats the value v as a string.\n//\n// This is similar to fmt.Sprintf(\"%+v\", v) except this:\n//\t* Prints the type unless it can be elided\n//\t* Avoids printing struct fields that are zero\n//\t* Prints a nil-slice as being nil, not empty\n//\t* Prints map entries in deterministic order"
]
},
"item.rs": {
"lotabout/skim": [
"pub struct DefaultredactedItem {\n /// The text that will be output when user press `enter`\n /// `Some(..)` => the original input is transformed, could not output `text` directly\n /// `None` => that it is safe to output `text` directly\n orig_text: Option<String>,\n\n /// The text that will be shown on screen and matched.\n text: AnsiString<'static>,"
]
},
"WeakBag.hs": {
"reflex-frp/reflex": [
"#ifdef USE_redacted_OPTIMIZER\n{-# OPTIONS_GHC -fplugin=redacted.Optimizer #-}\n#endif\n-- | This module defines the 'WeakBag' type, which represents a mutable\n-- collection of items that does not cause the items to be retained in memory.\n-- This is useful for situations where a value needs to be inspected or modified\n-- if it is still alive, but can be ignored if it is dead."
]
},
"response.go": {
"labstack/echo": [
"type (\n\t// Response wraps an http.ResponseWriter and implements its interface to be used\n\t// by an HTTP handler to construct an HTTP response.\n\t// See: https://golang.org/pkg/net/http/#ResponseWriter\n\tResponse struct {\n\t\tredacted *redacted\n\t\tbeforeFuncs []func()"
]
},
"CodeBlock.hs": {
"mihaimaruseac/hindent": [
"module redacted.CodeBlock\n ( CodeBlock(..)\n , cppSplitBlocks\n ) where"
],
"jaspervdj/patat": [
"module redacted.Presentation.Display.CodeBlock\n ( prettyCodeBlock\n ) where"
]
},
"defaultValue.ts": {
"pixijs/pixi.js": [
"function booleanArray(size: number): Array<boolean>\n{\n const array = new Array(size);"
]
},
"File.hs": {
"ConsenSys/constellation": [
"module redacted.Util.File where"
],
"qfpl/applied-fp-course": [
"module Level07.Conf.File where"
]
},
"NptTlsTrustAnchor_Base_0064.cpp": {
"xbmc/xbmc": [
"|\n| Neptune - Trust Anchors\n|\n| This file is automatically generated by a script, do not edit!\n|\n| Copyright (c) 2002-2010, Axiomatic Systems, LLC.\n| All rights reserved."
]
},
"geohash.c": {
"redis/redis": [
"static inline uint64_t interleave64(uint32_t xlo, uint32_t ylo) {\n static const uint64_t B[] = {0x5555555555555555ULL, 0x3333333333333333ULL,\n 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,\n 0x0000FFFF0000FFFFULL};\n static const unsigned int S[] = {1, 2, 4, 8, 16};"
]
},
"Main.hs": {
"k-bx/owlcloud": [
"module Main where\n\nimport Control.Monad.Catch (throwM)\nimport qualified Data.Set as Set\nimport qualified Data.UUID as UUID\nimport qualified Data.UUID.V4 as UUID\nimport Import\nimport Network.Wai\nimport Network.Wai.Handler.Warp"
],
"NorfairKing/smos": [
"module Main where\n\nimport Criterion.Main as Criterion\nimport Cursor.Simple.Forest\nimport Data.GenValidity.Containers ()\nimport Data.GenValidity.Criterion\nimport Data.GenValidity.Path ()\nimport Data.Map (Map)\nimport Data.Set (Set)\nimport Data.Text (Text)\nimport Path\nimport redacted.Data\nimport redacted.Data.Gen ()\nimport redacted.Report.Agenda\nimport redacted.Report.Agenda.Gen ()\nimport redacted.Report.Filter\nimport redacted.Report.Filter.Gen ()\nimport redacted.Report.Time\n\nmain :: IO ()\nmain =\n Criterion.defaultMain\n [ bgroup\n \"Filter\"\n [ genValidBench @Part,\n genValidBench @Piece,\n genValidBench @Ast,\n genValidBench @(Filter Time),\n genValidBench @(Filter Tag),\n genValidBench @(Filter Header),\n genValidBench @(Filter TodoState),\n genValidBench @(Filter Timestamp),\n genValidBench @(Filter PropertyValue),\n genValidBench @(Filter Entry),\n genValidBench @(Filter (Maybe PropertyValue)),\n genValidBench @(Filter (Set Tag)),\n genValidBench @(Filter (Map PropertyName PropertyValue)),\n genValidBench @(Filter (ForestCursor Header)),\n genValidBench @(Filter (ForestCursor Entry)),\n genValidBench @(Filter (Path Rel File, ForestCursor Entry))\n ],\n bgroup\n \"Agenda\"\n [ genValidBench @AgendaEntry,\n genValidBench @(AgendaTableBlock Text),\n genValidBench @AgendaTodayReport,\n genValidBench @AgendaReport\n ]\n ]"
],
"finkel-lang/finkel": [
"module Main where\n\nimport Lib"
],
"lotz84/haskell": [
"module Main where"
],
"ConsenSys/constellation": [
"module redacted.Enclave.Keygen.Main where"
],
"itchyny/sjsp": [
"module Main where"
],
"2mol/pboy": [
"module Main where"
],
"iostreamer-X/FuncShell": [
"module Main where\n\nimport ArgumentParser\nimport System.Environment\nimport System.Exit\nimport DefaultParser as DP\nimport TableParser as TP\nimport ExternalParser as EP"
],
"mihaimaruseac/hindent": [
"module Main (main) where"
],
"cdepillabout/pretty-simple": [
"module Main where\n\n-- This is a small executable that will pretty-print anything from stdin.\n-- It can be installed to `~/.local/bin` if you enable the flag `buildexe` like so:\n--\n-- @\n-- $ stack install redacted-2.0.1.1 --flag redacted:buildexe\n-- @\n--"
],
"tweag/inline-java": [
"module Main where"
],
"alpacaaa/zero-bullshit-haskell": [
"main :: IO ()\nmain = do\n n <- System.Environment.getArgs\n case n of\n [\"01\"] -> Ex01StaticString.StaticString.main\n [\"02\"] -> Ex02Echo.Echo.main\n [\"03\"] -> Ex03CaseMatch.CaseMatch.main"
],
"dmjio/miso": [
"module Main where\n\nimport Data.Proxy\nimport Servant.API\n#if MIN_VERSION_servant(0,14,1)\nimport Servant.Links\n#elif MIN_VERSION_servant(0,10,0)\nimport Servant.Utils.Links\n#endif",
"module Main where\n\nimport redacted hiding (asyncCallback)\nimport redacted.String\nimport Control.Concurrent.MVar"
],
"reflex-frp/reflex": [
"module Main where"
],
"passy/givegif": [
"module Main where\n\nimport qualified Control.Error.Util as Err\nimport qualified Data.ByteString.Lazy as BSL\nimport qualified Data.ByteString.Lazy.Char8 as BS8\nimport qualified Data.Text as T\nimport qualified Data.Text.IO as TIO\nimport qualified Network.URI\nimport qualified Network.Wreq as Wreq"
],
"lettier/gifcurry": [
"redacted\n (C) 2016 David redacted\n redacted.com\n-}"
],
"theam/haskell-do": [
"module Main where"
],
"corsis/PortFusion": [
"OverloadedStrings, DeriveDataTypeable, PostfixOperators, TupleSections #-}"
],
"serokell/nixfmt": [
"module Main where"
],
"sdiehl/kaleidoscope": [
"module Main where"
],
"aviaviavi/legion": [
"module Main where"
],
"chrisdone/vado": [
"data Content\n = ElementContent !Text !Events !Style ![Content]\n | TextContent !Text\n | ImageContent !Text !(Maybe (V2 Double)) !(Maybe SDL.Surface) -- !(Maybe Text)"
],
"ennocramer/floskell": [
"module Main ( main ) where"
],
"samtay/tetris": [
"module Main where"
],
"quchen/articles": [
"module Main where"
],
"chrisdone/jl": [
"module Main where\n\nimport Control.Monad.Writer\nimport qualified Data.Aeson as Aeson\nimport qualified Data.Aeson.Encode.Pretty as Aeson\nimport qualified Data.Aeson.Parser as Aeson\nimport qualified Data.ByteString.Lazy as L\nimport qualified Data.ByteString.Lazy.Char8 as L8\nimport Data.Conduit ( ($=), ($$))\nimport Data.Conduit.Attoparsec\nimport qualified Data.Conduit.Binary as CB\nimport qualified Data.Conduit.List as CL\nimport qualified Data.Map.Strict as M\nimport qualified Data.Text as T\nimport qualified Data.Text.IO as T\nimport qualified Data.Vector as V\nimport redacted.Functions\nimport redacted.Inferer\nimport redacted.Interpreter\nimport redacted.Parser\nimport redacted.Printer\nimport redacted.Serializer\nimport redacted.Types\nimport Options.Applicative.Simple\nimport System.IO\n\nmain :: IO ()\nmain = do\n do hSetBuffering stdout LineBuffering\n hSetBuffering stdin LineBuffering\n ((inp, file, inarray, aslines, browse, markdown, pretty), ()) <-\n simpleOptions\n \"0.0.0\"\n \"redacted - JSON Lambda calculus\"\n \"Command-line language for querying and outputting JSON.\"\n ((,,,,,,) <$>\n strArgument\n (metavar \"CODE\" <>\n help \"redacted code; supports completion of function names\" <>\n completeWith (map (\\(Variable v) -> T.unpack v) (M.keys context))) <*>\n optional (strArgument (metavar \"FILE\")) <*>\n flag\n False\n True\n (short 'a' <> long \"array\" <>\n help \"Read each line of input as a single array\") <*>\n flag\n False\n True\n (short 'l' <> long \"lines\" <>\n help\n \"Output each element of arrays on a newline suitable for UNIX piping\") <*>\n flag\n False\n True\n (long \"browse\" <> help \"Prints out all available functions\") <*>\n flag\n False\n True\n (long \"browse-markdown\" <>\n help \"Prints out all available functions, in markdown format\") <*>\n flag\n False\n True\n (short 'p' <> long \"pretty\" <>\n help \"Outputs JSON in a human-friendly format\"))\n empty\n let block xs =\n if markdown\n then \"```haskell\\n\" <> xs <> \"\\n```\"\n else xs\n if browse || markdown\n then mapM_\n (\\(groupname, defs) ->\n T.putStrLn\n (((if markdown\n then \"## \"\n else \"\") <>\n groupname) <>\n \"\\n\\n\" <>\n T.unlines\n (map\n (\\def ->\n (let Variable v = definitionName def\n in block\n (v <> \" :: \" <>\n prettyType (definitionType def)) <>\n \"\\n\\n\" <>\n (if not markdown\n then \" \"\n else \"\") <>\n definitionDoc def <>\n \"\\n\"))\n defs)))\n functions\n else case parseText \"\" (T.pack inp) of\n Left err -> error (show err)\n Right expr0 -> do\n case file of\n Just fp -> do\n bytes <- L.readFile fp\n case Aeson.decode bytes of\n Nothing -> hPutStr stderr \"invalid input JSON\"\n Just j -> handleJson pretty expr0 aslines j\n Nothing -> process pretty expr0 inarray aslines\n where\n process pretty expr0 inarray aslines =\n CB.sourceHandle stdin $= CB.lines $= conduitParserEither Aeson.value $=\n (if inarray\n then do\n es <-\n CL.mapM (either (error . errorMessage) (return . snd)) $=\n CL.consume\n liftIO\n (handleJson pretty expr0 aslines (Aeson.Array (V.fromList es)))\n else CL.mapM_\n (either\n (hPutStrLn stderr . errorMessage)\n (handleJson pretty expr0 aslines . snd))) $$\n CL.sinkNull\n\n-- | Handle a JSON input, printing out one to many JSON values.\nhandleJson :: Bool -> Expression -> Bool -> Aeson.Value -> IO ()\nhandleJson pretty expr0 aslines j =\n let expr = ApplicationExpression expr0 (valueToExpression j)\n in case infer context expr (map TypeVariable [1 ..]) of\n !_ ->\n case eval\n (foldl\n (\\e (v, f) -> subst v f e)\n (desugar expr)\n (M.toList scope)) of\n v ->\n if aslines\n then mapM_\n L8.putStrLn\n (map Aeson.encode (V.toList (asArray (coreToValue v))))\n else L8.putStrLn (encode' (coreToValue v))\n where asArray =\n \\case\n Aeson.Array xs -> xs\n x -> V.singleton x\n encode' =\n if pretty\n then Aeson.encodePretty\n else Aeson.encode"
],
"wireapp/wire-server": [
"module Main where\n\nimport Cassandra.Schema\nimport Control.Exception (finally)\nimport Imports\nimport Options.Applicative\nimport qualified System.Logger.Extended as Log\nimport qualified V20\nimport qualified V21\nimport qualified V22\nimport qualified V23\nimport qualified V24\nimport qualified V25\nimport qualified V26\nimport qualified V27\nimport qualified V28"
]
},
"fluid.html": {
"desandro/masonry": [
"<!doctype html>\n<html>\n<head>\n <meta charset=\"utf-8\">"
]
},
"MTLValueTransformerInversionAdditionsSpec.m": {
"mantle/mantle": [
"@interface TestTransformer : NSValueTransformer\n@end"
]
},
"compare.go": {
"pingcap/tidb": [
"type CompareFunc = func(l Row, lCol int, r Row, rCol int) int"
]
},
"StateMachine.hs": {
"clash-lang/clash-compiler": [
"module I2C.BitMaster.StateMachine where"
]
},
"Internal.hs": {
"monadfix/microlens": [
"Module : Lens.Micro.GHC.Internal\nCopyright : (C) 2013-2016 Edward Kmett, 2015-2016 Artyom Kazak, 2018 redacted\nLicense : BSD-style (see the file LICENSE)\n-}\nmodule Lens.Micro.GHC.Internal\n(\n IsByteString(..),"
],
"haskell/network": [
"module redacted.Socket.ByteString.Internal\n (\n mkInvalidRecvArgError\n#if !defined(mingw32_HOST_OS)\n , c_writev\n#else\n , c_wsasend"
],
"pcapriotti/optparse-applicative": [
"module Options.Applicative.Internal\n ( P\n , MonadP(..)\n , ParseError(..)",
"module Options.Applicative.Builder.Internal (\n -- * Internals\n Mod(..),\n HasName(..),\n HasCompleter(..),\n HasValue(..),\n HasMetavar(..),"
],
"clash-lang/clash-compiler": [
"Copyright : (C) 2018, Google Inc.\nLicense : BSD2 (see the file LICENSE)\nMaintainer : Christiaan Baaij <christiaan.baaij@gmail.com>\n-}"
],
"Nike-Inc/hal": [
"Module : AWS.Lambda.Internal\nDescription : Internal redacted helper methods.\nCopyright : (c) Nike, Inc., 2018\nLicense : BSD3\nMaintainer : nathan.fairhurst@nike.com, fernando.freire@nike.com\nStability : unstable\n-}"
],
"huangz1990/real-world-haskell-cn": [
"module BloomFilter.Internal\n (\n Bloom(..)\n , MutBloom(..)\n ) where"
],
"reflex-frp/reflex-dom": [
"module Reflex.Dom.Internal\n ( module Main\n , run\n , mainWidget\n , mainWidgetWithHead, mainWidgetWithCss, mainWidgetWithHead', mainWidgetInElementById, runApp'\n , mainHydrationWidgetWithHead, mainHydrationWidgetWithHead'\n ) where"
],
"neovimhaskell/nvim-hs": [
"Module : Neovim.Plugin.Internal\nDescription : Split module that can import Neovim.Context without creating import circles\nCopyright : (c) Sebastian Witte\nLicense : Apache-2.0"
],
"tweag/inline-java": [
"module Foreign.JNI.Internal where"
],
"grin-compiler/grin": [
"module Reducer.Interpreter.Definitional.Internal where"
]
},
"cat.rs": {
"BurntSushi/xsv": [
"static USAGE: &'static str = \"\nConcatenates CSV data by column or by row."
]
},
"operations.js": {
"marcuswestin/store.js": [
"function operationsPlugin() {\n\treturn {\n\t\t// array\n\t\tpush: push,\n\t\tpop: pop,\n\t\tshift: shift,\n\t\tunshift: unshift,"
]
},
"getDraftEditorSelection.js": {
"facebook/draft-js": [
"const getDraftEditorSelectionWithNodes = require('getDraftEditorSelectionWithNodes');"
]
},
"fileToOutput.js": {
"gitbookio/gitbook": [
"function fileToOutput(output, filePath) {\n var book = output.getBook();\n var readme = book.getReadme();\n var fileReadme = readme.getFile();"
]
},
"Common.hs": {
"purescript/purescript": [
"module Language.redacted.CodeGen.JS.Common where"
],
"alexwl/haskell-code-explorer": [
"Module : CabalHelper.Shared.Common\nDescription : Shared utility functions\nLicense : GPL-3\n-}"
],
"theam/aws-lambda-haskell-runtime": [
"module Aws.Lambda.Meta.Common\n ( declarationName\n , expressionName\n , getFieldsFrom\n , constructorName\n ) where"
],
"jonschoning/espial": [
"module Handler.Common where"
]
},
"helper.rs": {
"redox-os/tfs": [
"pub fn read_int(buf: &[u8]) -> u64 {\n // Because we want to make sure that it is register allocated, we fetch this into a variable.\n // It will likely make no difference anyway, though.\n let ptr = buf.as_ptr();"
],
"sharkdp/pastel": [
"pub fn mod_positive(x: Scalar, y: Scalar) -> Scalar {\n (x % y + y) % y\n}"
]
},
"lib.rs": {
"clap-rs/clap": [
"extern crate proc_macro;"
],
"EmbarkStudios/rust-gpu": [
"trait Shape: Copy {\n /// Distances indicate where the point is in relation to the shape:\n /// * negative distance: the point is \"inside\" the shape\n /// * distance of `0.0`: the point is \"on\" the shape\n /// * positive distance: the point is \"outside\" the shape\n fn distance(self, p: Vec2) -> f32;",
"mod test;"
],
"weld-project/weld": [
"pub use redacted::runtime::ffi::*;"
],
"rusoto/rusoto": [
"html_logo_url = \"https://raw.githubusercontent.com/redacted/redacted/master/assets/logo-square.png\"\n)]\n//! <p><fullname>AWS CloudHSM Service</fullname> <p>This is documentation for <b>AWS CloudHSM Classic</b>. For more information, see <a href=\"http://aws.amazon.com/cloudhsm/faqs-classic/\">AWS CloudHSM Classic FAQs</a>, the <a href=\"http://docs.aws.amazon.com/cloudhsm/classic/userguide/\">AWS CloudHSM Classic User Guide</a>, and the <a href=\"http://docs.aws.amazon.com/cloudhsm/classic/APIReference/\">AWS CloudHSM Classic API Reference</a>.</p> <p> <b>For information about the current version of AWS CloudHSM</b>, see <a href=\"http://aws.amazon.com/cloudhsm/\">AWS CloudHSM</a>, the <a href=\"http://docs.aws.amazon.com/cloudhsm/latest/userguide/\">AWS CloudHSM User Guide</a>, and the <a href=\"http://docs.aws.amazon.com/cloudhsm/latest/APIReference/\">AWS CloudHSM API Reference</a>.</p></p>\n//!\n//! If you're using the service, you're probably looking for [CloudHsmClient](struct.CloudHsmClient.html) and [CloudHsm](trait.CloudHsm.html).",
"html_logo_url = \"https://raw.githubusercontent.com/redacted/redacted/master/assets/logo-square.png\"\n)]\n//! <p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on AWS without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. </p> <p>Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.</p>\n//!\n//! If you're using the service, you're probably looking for [EksClient](struct.EksClient.html) and [Eks](trait.Eks.html).",
"html_logo_url = \"https://raw.githubusercontent.com/redacted/redacted/master/assets/logo-square.png\"\n)]\n//! <p><p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p> <ul> <li> <p>Testing on desktop browsers</p> <p> Device Farm makes it possible for you to test your web applications on desktop browsers using Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For more information, see <a href=\"https://docs.aws.amazon.com/devicefarm/latest/testgrid/\">Testing Web Applications on Selenium with Device Farm</a>.</p> </li> <li> <p>Testing on real mobile devices</p> <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other devices in the cloud. For more information, see the <a href=\"https://docs.aws.amazon.com/devicefarm/latest/developerguide/\">Device Farm Developer Guide</a>.</p> </li> </ul></p>\n//!\n//! If you're using the service, you're probably looking for [DeviceFarmClient](struct.DeviceFarmClient.html) and [DeviceFarm](trait.DeviceFarm.html).",
"html_logo_url = \"https://raw.githubusercontent.com/redacted/redacted/master/assets/logo-square.png\"\n)]\n//! <p><fullname>AWS Auto Scaling</fullname> <p>Use AWS Auto Scaling to quickly discover all the scalable AWS resources for your application and configure dynamic scaling and predictive scaling for your resources using scaling plans. Use this service in conjunction with the Amazon EC2 Auto Scaling, Application Auto Scaling, Amazon CloudWatch, and AWS CloudFormation services. </p> <p>Currently, predictive scaling is only available for Amazon EC2 Auto Scaling groups.</p> <p>For more information about AWS Auto Scaling, including information about granting IAM users required permissions for AWS Auto Scaling actions, see the <a href=\"https://docs.aws.amazon.com/autoscaling/plans/userguide/what-is-aws-auto-scaling.html\">AWS Auto Scaling User Guide</a>.</p></p>\n//!\n//! If you're using the service, you're probably looking for [AutoscalingPlansClient](struct.AutoscalingPlansClient.html) and [AutoscalingPlans](trait.AutoscalingPlans.html).",
"html_logo_url = \"https://raw.githubusercontent.com/redacted/redacted/master/assets/logo-square.png\"\n)]\n//! <p>AWS IAM Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your AWS environment. An external principal can be another AWS account, a root user, an IAM user or role, a federated user, an AWS service, or an anonymous user. This guide describes the AWS IAM Access Analyzer operations that you can call programmatically. For general information about Access Analyzer, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/what-is-access-analyzer.html\">AWS IAM Access Analyzer</a> in the <b>IAM User Guide</b>.</p> <p>To start using Access Analyzer, you first need to create an analyzer.</p>\n//!\n//! If you're using the service, you're probably looking for [AccessAnalyzerClient](struct.AccessAnalyzerClient.html) and [AccessAnalyzer](trait.AccessAnalyzer.html)."
],
"rust-lang/rls": [
"extern crate env_logger;\nextern crate rustc_driver;\nextern crate rustc_interface;\nextern crate rustc_save_analysis;\nextern crate rustc_session;\nextern crate rustc_span;",
"pub mod config;\npub use config::Config;"
],
"LemmyNet/lemmy": [
"extern crate strum_macros;"
],
"toshi-search/Toshi": [
"pub use redacted_types::*;"
],
"MaterializeInc/materialize": [
"pub mod jemalloc;\npub mod time;"
],
"MaxBittker/sandspiel": [
"extern crate cfg_if;\nextern crate js_sys;\nextern crate wasm_bindgen;\nextern crate web_sys;"
],
"koute/stdweb": [
"extern crate proc_macro;\nextern crate proc_macro2;\n#[macro_use]\nextern crate syn;\n#[macro_use]\nextern crate quote;\nextern crate base_x;"
],
"rustwasm/wasm-pack": [
"extern crate cargo_metadata;\nextern crate console;\nextern crate strsim;\n#[macro_use]\nextern crate failure;\nextern crate glob;\nextern crate parking_lot;"
],
"pest-parser/pest": [
"extern crate ucd_trie;"
],
"tock/tock": [
"pub use stm32f4xx::{chip, dbg, dma1, exti, gpio, nvic, rcc, spi, syscfg, tim2, usart};"
],
"fdehau/tui-rs": [
"pub mod backend;\npub mod buffer;\npub mod layout;\npub mod style;\npub mod symbols;\npub mod terminal;\npub mod text;"
],
"sharkdp/hexyl": [
"pub(crate) mod input;\npub mod squeezer;"
],
"PyO3/pyo3": [
"build_derive_from_pyobject, build_py_class, build_py_function, build_py_methods,\n build_py_proto, get_doc, process_functions_in_module, py_init, PyClassArgs, PyFunctionAttr,\n};\nuse quote::quote;\nuse syn::parse_macro_input;"
],
"crossbeam-rs/crossbeam": [
"no_crate_inject,\n attr(\n deny(warnings, rust_2018_idioms),\n allow(dead_code, unused_assignments, unused_variables)\n )\n))]\n#![warn("
],
"yewstack/yew": [
"mod classes;\nmod derive_props;\nmod html_tree;\nmod props;\nmod stringify;"
],
"gluon-lang/gluon": [
"vm::{\n api::{CPrimitive, Getable, Hole, OpaqueValue, Pushable},\n stack,\n thread::{RootedThread, Status, Thread, ThreadInternal},\n types::{VmIndex, VmInt},\n },\n ThreadExt,"
],
"hecrj/iced": [
"pub use futures;"
],
"meilisearch/MeiliSearch": [
"pub mod data;\npub mod error;\npub mod helpers;\npub mod models;\npub mod option;\npub mod routes;\npub mod analytics;"
],
"bytecodealliance/lucet": [
"pub mod config;\npub use config::Config;"
],
"openethereum/parity-ethereum": [
"extern crate ansi_term;\nextern crate arrayvec;\nextern crate atty;\nextern crate env_logger;\nextern crate log as rlog;\nextern crate parking_lot;\nextern crate regex;"
],
"bevyengine/bevy": [
"mod axis;\npub mod gamepad;\nmod input;\npub mod keyboard;\npub mod mouse;\npub mod system;\npub mod touch;"
],
"amethyst/amethyst": [
"html_logo_url = \"https://redacted.rs/brand/logo-standard.svg\",\n html_root_url = \"https://docs.redacted.rs/stable\"\n)]\n#![warn(\n missing_debug_implementations,\n missing_docs,\n rust_2018_idioms,"
],
"hyperium/hyper": [
"pub use http;\n#[cfg(any(\n feature = \"http1\",\n feature = \"http2\",\n all(feature = \"client\", feature = \"tcp\")\n))]\n#[macro_use]"
]
},
"Lock3.java": {
"winterbe/java8-tutorial": [
"public class Lock3 {"
]
},
"Parser.hs": {
"smallhadroncollider/taskell": [
"module redacted.IO.Keyboard.Parser where"
],
"evincarofautumn/kitten": [
"Module : redacted.Parser\nDescription : Parsing utilities\nCopyright : (c) Jon Purdy, 2016\nLicense : MIT\nMaintainer : redacted@gmail.com\nStability : experimental\nPortability : GHC"
],
"joshuaclayton/unused": [
"module redacted.Parser\n ( parseResults\n ) where"
]
},
"huskc.hs": {
"justinethier/husk-scheme": [
"Module : Main\nCopyright : Justin Ethier\nLicence : MIT (see LICENSE in the distribution)"
]
},
"index.html": {
"prinzhorn/skrollr": [
"<!DOCTYPE html>\n<html>\n<head>\n\t<meta charset=\"utf-8\">"
],
"usablica/intro.js": [
"<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <title>Basic usage</title>\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <meta name=\"description\" content=\"redacted - Better introductions for websites and features with a step-by-step guide for your projects.\">",
"<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <title>Disable Interaction</title>\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <meta name=\"description\" content=\"redacted - Better introductions for websites and features with a step-by-step guide for your projects.\">",
"<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <title>Custom CSS Class</title>\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <meta name=\"description\" content=\"redacted - Better introductions for websites and features with a step-by-step guide for your projects.\">",
"<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <title>Multi-page introduction, Page 1</title>\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <meta name=\"description\" content=\"redacted - Better introductions for websites and features with a step-by-step guide for your projects.\">"
],
"google/web-starter-kit": [
"<!doctype html>\n<html lang=\"\">\n <head>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"description\" content=\"\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">"
],
"madrobby/zepto": [
"<!DOCTYPE html>\n<html>\n <head>\n <title>Let it snow with redacted.js</title>\n <meta name=\"name\" content=\"content\">\n <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\">\n <style>",
"<!DOCTYPE html>\n<html>\n <head>\n <title>iPhone.redacted</title>\n <link href=\"iphone.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\"/>\n <meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />"
],
"jeromeetienne/ar.js": [
"<!DOCTYPE html>\n<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0\">\n<style media='screen'>\n\tbody {\n\t\tbackground-color: #000;\n\t\tcolor: grey;\n\t}"
],
"polymer/polymer": [
"<!doctype html>\n<!--\nCopyright (c) 2017 The redacted Project Authors. All rights reserved.\nThis code may only be used under the BSD style license found at http://redacted.github.io/LICENSE.txt\nThe complete set of authors may be found at http://redacted.github.io/AUTHORS.txt\nThe complete set of contributors may be found at http://redacted.github.io/CONTRIBUTORS.txt\nCode distributed by Google as part of the redacted project is also"
],
"harvesthq/chosen": [
"<!doctype html>\n<html lang=\"en\">\n<head>\n <meta charset=\"utf-8\">\n <title>redacted: A jQuery Plugin by Harvest to Tame Unwieldy Select Boxes</title>\n <link rel=\"stylesheet\" href=\"docsupport/style.css\">\n <link rel=\"stylesheet\" href=\"docsupport/prism.css\">"
],
"swagger-api/swagger-codegen": [
"<!doctype html>\n<html>\n <head>\n <title>An <em>API</em> with more <strong>Markdown</strong> in summary, description, and other text</title>\n <style type=\"text/css\">\n body {\n\tfont-family: Trebuchet MS, sans-serif;"
],
"ripienaar/free-for-dev": [
"<!DOCTYPE html>\n<html>\n<head>\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\">\n <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n <meta charset=\"UTF-8\">\n <title>Free for developers</title>"
],
"twitter/twemoji": [
"<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <title>redacted Emoji (redacted)</title>\n <meta charset=\"utf-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
],
"teamstuq/skill-map": [
"<!DOCTYPE html>\n\n<html>\n <head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no\">\n <title>StuQ技能图谱v0.1.2</title>\n <link href=\"css/style.css\" rel=\"stylesheet\">\n <script>"
]
},
"ComponentRequestedSpec.hs": {
"haskell/cabal": [
"module Distribution.Types.ComponentRequestedSpec (\n -- $buildable_vs_enabled_components"
]
},
"profile_require_calls.rb": {
"elastic/logstash": [
"if ($DEBUGLIST || []).include?(\"require\")\n ROOT = File.dirname(__FILE__)\n module Kernel\n alias_method :require_debug, :require"
]
},
"updater.js": {
"karma-runner/karma": [
"function StatusUpdater (socket, titleElement, bannerElement, browsersElement) {\n function updateBrowsersInfo (browsers) {\n if (!browsersElement) {\n return\n }\n var status"
]
},
"OpenAPI.hs": {
"PostgREST/postgrest": [
"Module : redacted.OpenAPI\nDescription : Generates the OpenAPI output\n-}\n{-# LANGUAGE OverloadedStrings #-}"
]
},
"redacted.sh": {
"rupa/z": [
"[ -d \"${_redacted_DATA:-$HOME/.redacted}\" ] && {\n echo \"ERROR: redacted.sh's datafile (${_redacted_DATA:-$HOME/.redacted}) is a directory.\"\n}"
]
},
"resolve-slots.js": {
"vuejs/vue": [
"function isWhitespace (node: VNode): boolean {\n return node.isComment || node.text === ' '\n}"
]
},
"parse.js": {
"6to5/babel": [
"const parseRunner = gensync<[string, ?InputOptions], ParseResult | null>(\n function* parse(code, opts) {\n const config = yield* loadConfig(opts);"
]
},
"raspberrypi.rs": {
"rust-embedded/rust-raspberrypi-OS-tutorials": [
"pub mod console;\npub mod cpu;\npub mod driver;\npub mod memory;"
]
},
"status-bar-css-page.ts": {
"nativescript/nativescript": [
"function reset(page: Page) {\n\tpage.css = '';\n\tpage.actionBarHidden = false;\n\tpage.backgroundSpanUnderStatusBar = false;\n\tpage.actionBar.backgroundColor = unsetValue;\n}"
]
},
"shallowCompare.js": {
"infernojs/inferno": [
"function shallowDiffers(a, b) {\n\tfor (var i in a) if (!(i in b)) return true;\n\tfor (var i in b) if (a[ i ] !== b[ i ]) return true;\n\treturn false\n}"
]
},
"mode.rs": {
"rustwasm/wasm-pack": [
"pub enum InstallMode {\n /// Perform all the install steps.\n Normal,\n /// Don't install tools like `wasm-bindgen`, just use the global\n /// environment's existing versions to do builds.\n Noinstall,\n /// Skip the rustc version check"
]
},
"DotDrawing.hs": {
"advancedtelematic/quickcheck-state-machine": [
"module Test.StateMachine.DotDrawing\n ( GraphOptions (..)\n , GraphvizOutput (..)\n , Rose (..)\n , printDotGraph\n ) where"
]
},
"socket_bytes_sink.rs": {
"timberio/vector": [
"buffers::Acker,\n internal_events::{SocketEventsSent, SocketMode},\n};\nuse bytes::Bytes;\nuse futures::{ready, Sink};\nuse pin_project::{pin_project, pinned_drop};\nuse std::{\n io::{Error as IoError, ErrorKind},\n marker::Unpin,\n pin::Pin,\n task::{Context, Poll},\n};\nuse tokio::io::AsyncWrite;\nuse tokio_util::codec::{BytesCodec, FramedWrite};\n\nconst MAX_PENDING_ITEMS: usize = 1_000;\n\npub enum ShutdownCheck {\n Error(IoError),\n Close(&'static str),\n Alive,\n}\n\n/// [FramedWrite](https://docs.rs/tokio-util/0.3.1/tokio_util/codec/struct.FramedWrite.html) wrapper.\n/// Wrapper acts like [Sink](https://docs.rs/futures/0.3.7/futures/sink/trait.Sink.html) forwarding all\n/// calls to `FramedWrite`, but in addition:\n/// - Call `shutdown_check` on each `poll_flush`, so we can stop sending data if other side disconnected.\n/// - Flush all data on each `poll_ready` if total number of events in queue more than some limit.\n/// - Count event size on each `start_send`.\n/// - Ack all sent events on successful `poll_flush` and `poll_close` or on `Drop`.\n#[pin_project(PinnedDrop)]\npub struct BytesSink<T>\nwhere\n T: AsyncWrite + Unpin,\n{\n #[pin]\n inner: FramedWrite<T, BytesCodec>,\n shutdown_check: Box<dyn Fn(&mut T) -> ShutdownCheck + Send>,\n acker: Acker,\n socket_mode: SocketMode,\n events_total: usize,\n bytes_total: usize,\n}\n\nimpl<T> BytesSink<T>\nwhere\n T: AsyncWrite + Unpin,\n{\n pub(crate) fn new(\n inner: T,\n shutdown_check: impl Fn(&mut T) -> ShutdownCheck + Send + 'static,\n acker: Acker,\n socket_mode: SocketMode,\n ) -> Self {\n Self {\n inner: FramedWrite::new(inner, BytesCodec::new()),\n shutdown_check: Box::new(shutdown_check),\n events_total: 0,\n bytes_total: 0,\n acker,\n socket_mode,\n }\n }\n\n fn ack(&mut self) {\n if self.events_total > 0 {\n self.acker.ack(self.events_total);\n\n emit!(SocketEventsSent {\n mode: self.socket_mode,\n count: self.events_total as u64,\n byte_size: self.bytes_total,\n });\n\n self.events_total = 0;\n self.bytes_total = 0;\n }\n }\n}\n\n#[pinned_drop]\nimpl<T> PinnedDrop for BytesSink<T>\nwhere\n T: AsyncWrite + Unpin,\n{\n fn drop(self: Pin<&mut Self>) {\n self.get_mut().ack()\n }\n}\n\nimpl<T> Sink<Bytes> for BytesSink<T>\nwhere\n T: AsyncWrite + Unpin,\n{\n type Error = <FramedWrite<T, BytesCodec> as Sink<Bytes>>::Error;\n\n fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {\n if *self.as_mut().project().events_total >= MAX_PENDING_ITEMS {\n if let Err(error) = ready!(self.as_mut().poll_flush(cx)) {\n return Poll::Ready(Err(error));\n }\n }\n\n self.project().inner.poll_ready(cx)\n }\n\n fn start_send(self: Pin<&mut Self>, item: Bytes) -> Result<(), Self::Error> {\n let pinned = self.project();\n *pinned.events_total += 1;\n *pinned.bytes_total += item.len();\n pinned.inner.start_send(item)\n }\n\n fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {\n let pinned = self.as_mut().project();\n match (pinned.shutdown_check)(pinned.inner.get_mut().get_mut()) {\n ShutdownCheck::Error(error) => return Poll::Ready(Err(error)),\n ShutdownCheck::Close(reason) => {\n if let Err(error) = ready!(self.as_mut().poll_close(cx)) {\n return Poll::Ready(Err(error));\n }\n\n return Poll::Ready(Err(IoError::new(ErrorKind::Other, reason)));\n }\n ShutdownCheck::Alive => {}\n }\n\n let result = ready!(self.as_mut().project().inner.poll_flush(cx));\n self.as_mut().get_mut().ack();\n Poll::Ready(result)\n }\n\n fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {\n let result = ready!(self.as_mut().project().inner.poll_close(cx));\n self.as_mut().get_mut().ack();\n Poll::Ready(result)\n }\n}"
]
},
"file.js": {
"requirejs/requirejs": [
"function mkDir(dir) {\n if (!fs.existsSync(dir)) {\n fs.mkdirSync(dir, 0777);\n }\n}"
]
},
"decoder.go": {
"prometheus/prometheus": [
"var ErrDecodeToNil = errors.New(\"cannot Decode to nil value\")"
]
},
"oauth.js": {
"request/request": [
"function OAuth (redacted) {\n this.redacted = redacted\n this.params = null\n}"
]
},
"ijksdl_codec_android_mediacodec_internal.c": {
"bilibili/ijkplayer": [
"sdl_amedia_status_t SDL_AMediaCodec_FakeFifo_init(SDL_AMediaCodec_FakeFifo *fifo)\n{\n memset(fifo, 0, sizeof(SDL_AMediaCodec_FakeFifo));"
]
},
"index-FINISHED.html": {
"wesbos/javascript30": [
"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Type Ahead 👀</title>\n <link rel=\"stylesheet\" href=\"style.css\">\n</head>",
"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Scoped CSS Variables and JS</title>\n</head>\n<body>",
"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Speech Detection</title>\n</head>\n<body>",
"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <title>Array Cardio 💪💪</title>\n</head>\n<body>"
]
},
"AppDelegate.m": {
"cocoalumberjack/cocoalumberjack": [
"@implementation AppDelegate\n\n@synthesize window = _window;"
],
"svprogresshud/svprogresshud": [
"@interface AppDelegate ()"
],
"marcuswestin/webviewjavascriptbridge": [
"@implementation AppDelegate"
],
"matryer/bitbar": [
"@interface AppDelegate : NSObject <NSApplicationDelegate, NSURLDownloadDelegate, SUUpdaterDelegate>"
],
"vicc/chameleon": [
"@interface AppDelegate ()\n\n@end"
]
},
"CommentConvertingVisitorWrapper.cs": {
"icsharpcode/CodeConverter": [
"namespace redacted.redacted.VB\n{"
]
},
"functions.hs": {
"typeclasses/haskell-phrasebook": [
"next x = x + 1"
]
},
"syscall.rs": {
"chyyuu/os_kernel_lab": [
"pub const STDIN: usize = 0;\npub const STDOUT: usize = 1;"
]
},
"Class.hs": {
"haskell/mtl": [
"module Control.Monad.RWS.Class (\n MonadRWS,\n module Control.Monad.Reader.Class,\n module Control.Monad.State.Class,\n module Control.Monad.Writer.Class,\n ) where"
],
"snowleopard/alga": [
"module Algebra.Graph.HigherKinded.Class (\n -- * The core type class\n Graph (..), empty, vertex, overlay,"
],
"nstack/nstack": [
"module redacted.Settings.Class where\nimport Control.Monad.Classes -- from: monad-classes\nimport Control.Monad.Trans -- from: mtl\nimport GHC.Prim (Proxy#, proxy#) -- from: ghc-prim"
],
"barrucadu/dejafu": [
"module Control.Monad.STM.Class\n ( MonadSTM(..)\n , retry\n , check\n , orElse\n , throwSTM\n , catchSTM"
],
"kowainik/co-log": [
"Copyright: (c) 2018-2020 redacted\nSPDX-License-Identifier: MPL-2.0\nMaintainer: redacted <xrom.xkov@gmail.com>"
]
},
"errors.go": {
"kubernetes/kops": [
"var (\n\tErrBadJSONDoc = errors.New(\"invalid JSON document\")\n\tErrNoListOfLists = errors.New(\"lists of lists are not supported\")\n\tErrBadPatchFormatForPrimitiveList = errors.New(\"invalid patch format of primitive list\")\n\tErrBadPatchFormatForRetainKeys = errors.New(\"invalid patch format of retainKeys\")\n\tErrBadPatchFormatForSetElementOrderList = errors.New(\"invalid patch format of setElementOrder list\")\n\tErrPatchContentNotMatchRetainKeys = errors.New(\"patch content doesn't match retainKeys list\")"
],
"revel/revel": [
"type Error struct {\n\tSourceType string // The type of source that failed to build.\n\tTitle, Path, Description string // Description of the error, as presented to the user.\n\tLine, Column int // Where the error was encountered.\n\tSourceLines []string // The entire source file, split into lines.\n\tStack string // The raw stack trace string from debug.Stack().\n\tMetaError string // Error that occurred producing the error page."
]
},
"Asciify.hs": {
"jgm/pandoc": [
"Module : Text.redacted.Asciify\n Copyright : Copyright (C) 2013-2021 John MacFarlane\n License : GNU GPL, version 2 or above"
]
},
"phone-type-formatter.to.js": {
"nosir/cleave.js": [
"function x(a,c){var b;if(null!=a.a[c])b=w(a,c,void 0);else a:{b=a.f[c];if(void 0===b.f){var d=b.i;if(d===Boolean)b.f=!1;else if(d===Number)b.f=0;else if(d===String)b.f=b.h?\"0\":\"\";else{b=new d;break a}}b=b.f}return b}function y(a,c){return a.f[c].g?null!=a.a[c]?a.a[c].length:0:null!=a.a[c]?1:0}function r(a,c,b){a.a[c]=b;a.b&&(a.b[c]=b)}function z(a,c){var b=[],d;for(d in c)0!=d&&b.push(new ga(d,c[d]));return new ea(a,b)};/*"
]
},
"fixed-drawer-demo.html": {
"google/material-design-lite": [
"<style>\n.demo-layout.demo-layout__fixed-drawer {\n box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n width: 100%;\n position: relative;"
]
},
"Login.js": {
"freecodecamp/freecodecamp": [
"const mapStateToProps = createSelector(\n isSignedInSelector,\n isSignedIn => ({\n isSignedIn\n })\n);"
]
},
"index.ts": {
"facebook/docusaurus": [
"function toString(val: string | HtmlTagObject): string {\n return typeof val === 'string' ? val : htmlTagObjectToString(val);\n}"
],
"learn-anything/learn-anything": [
"let prisma: PrismaClient"
],
"angular/angular-cli": [
"function addScriptsToPackageJson(): Rule {\n return host => {\n const pkgJson = new JSONFile(host, 'package.json');\n const e2eScriptPath = ['scripts', 'e2e'];"
],
"facebook/jest": [
"function notEmpty<T>(value: T | null | undefined): value is T {\n return value != null;\n}"
],
"palantir/blueprint": [
"const HERO_SVGS: Record<string, string> = {\n alert: require(\"raw-loader!./alert.svg\").default,\n buttons: require(\"raw-loader!./buttons.svg\").default,\n calendar: require(\"raw-loader!./calendar.svg\").default,\n checkboxes: require(\"raw-loader!./checkboxes.svg\").default,\n \"file-upload\": require(\"raw-loader!./file-upload.svg\").default,\n \"input-groups\": require(\"raw-loader!./input-groups.svg\").default,"
],
"feathersjs/feathers": [
"const init = (_options: Partial<AuthenticationClientOptions> = {}) => {\n const options: AuthenticationClientOptions = Object.assign({}, defaults, _options);\n const { Authentication } = options;"
],
"eugeny/terminus": [
"const application = new Application()"
],
"reduxjs/redux": [
"function isCrushed() {}"
],
"reduxjs/redux-devtools": [
"const appState = {\n todoStore: {\n todos: [\n { title: 'd3' },\n { title: 'state' },\n { title: 'visualizer' },\n { title: 'tree' },"
]
},
"BinarySearch.swift": {
"raywenderlich/swift-algorithm-club": [
"/**\n Binary Search"
]
},
"cleanup.rs": {
"rust-unofficial/awesome-rust": [
"fn fix_dashes(lines: Vec<String>) -> Vec<String> {\n let mut fixed_lines: Vec<String> = Vec::with_capacity(lines.len());"
]
},
"build.js": {
"tencent/omi": [
"const fs = require('fs-extra')\nconst path = require('path')\nconst chalk = require('chalk')\nconst _ = require('lodash')"
],
"louischatriot/nedb": [
"function ensureDirExists (name) {\n try {\n fs.mkdirSync(path.join(__dirname, name));\n } catch (e) {\n if (e.code !== 'EEXIST') {\n console.log(\"Error ensuring that node_modules exists\");\n process.exit(1);"
],
"shopify/draggable": [
"const webpack = require('webpack');\nconst {isProd, useAnalyser} = require('./build/config');\nconst {createConfig: createDevelopmentConfig} = require('./build/development');\nconst {createConfig: createProductionConfig} = require('./build/production');\nconst {runner} = require('./build/utils');"
],
"vuejs/vue-router": [
"const fs = require('fs')\nconst path = require('path')\nconst zlib = require('zlib')\nconst terser = require('terser')\nconst rollup = require('rollup')\nconst configs = require('./configs')"
]
},
"folding-lists.hs": {
"typeclasses/haskell-phrasebook": [
"sum :: [Integer] -> Integer\nsum xs = foldr (+) 0 xs"
]
},
"row.rs": {
"curlpipe/ox": [
"pub struct Row {\n pub string: String, // For holding the contents of the row\n pub syntax: HashMap<usize, Token>, // Hashmap for syntax\n pub bg_syntax: HashMap<usize, Token>, // Hashmap for background syntax colour\n pub updated: bool, // Line needs to be redrawn\n regex: Exp, // For holding the regex expression\n}"
],
"launchbadge/sqlx": [
"pub struct AnyRow {\n pub(crate) kind: AnyRowKind,\n pub(crate) columns: Vec<AnyColumn>,\n}"
]
},
"mbfilter_tl_jisx0201_jisx0208.c": {
"php/php-src": [
"void\nmbfl_filt_tl_jisx0201_jisx0208_init(mbfl_convert_filter *filt)\n{\n\tmbfl_filt_conv_common_ctor(filt);\n}"
]
},
"DefaultForkedTransaction.java": {
"dianping/cat": [
"public class DefaultForkedTransaction extends DefaultTransaction implements ForkedTransaction {\n\tprivate String m_rootMessageId;"
]
},
"mock-server.js": {
"getify/functional-light-js": [
"function connectToServer() {\n\t// faking an event emitter attached to a server-event stream\n\treturn evtEmitter;\n}"
]
},
"RegexHelpers.cs": {
"JamesNK/Newtonsoft.Json.Schema": [
"namespace redacted.Infrastructure\n{\n internal static class RegexHelpers\n {\n private const RegexOptions Options = RegexOptions.ECMAScript;"
]
},
"multipart.js": {
"request/request": [
"function Multipart (redacted) {\n this.redacted = redacted\n this.boundary = uuid()\n this.chunked = false\n this.body = null\n}"
]
},
"bypass-login.php": {
"danielmiessler/seclists": [
"@unlink(__FILE__);"
]
},
"Attoparsec.hs": {
"mrkkrp/megaparsec": [
"module ParsersBench.Json.Attoparsec\n ( parseJson,\n )\nwhere"
]
},
"AlgebraicDataTypes.hs": {
"thma/WhyHaskellMatters": [
"module AlgebraicDataTypes where"
]
},
"Operation.hs": {
"morpheusgraphql/morpheus-graphql": [
"module Data.Morpheus.Parsing.Request.Operation\n ( parseOperation,\n )\nwhere"
]
},
"event.rs": {
"tokio-rs/mio": [
"pub struct Event {\n pub flags: u32,\n pub data: u64,\n}"
]
},
"basicfs_unix.go": {
"syncthing/syncthing": [
"func (BasicFilesystem) SymlinksSupported() bool {\n\treturn true\n}"
]
},
"proc_vmstat.c": {
"netdata/netdata": [
"int do_proc_vmstat(int update_every, usec_t dt) {\n (void)dt;"
]
},
"storeOptionsAsProperties-problem.js": {
"tj/commander.js": [
"const commander = require('../'); // include commander in git clone of commander repo\nconst program = new commander.Command();"
]
},
"Exception.hs": {
"nstack/nstack": [
"module redacted.Prelude.Exception\n ( TransientError(..)\n , throwTransientError\n , throwTransientErrorT\n , PermanentError(..)\n , throwPermanentError\n , throwPermanentErrorT"
],
"cachix/cachix": [
"module redacted.Client.Exception (redactedException (..)) where"
],
"tweag/asterius": [
", ExistentialQuantification\n , MagicHash\n , RecordWildCards\n , PatternSynonyms\n #-}\n{-# LANGUAGE TypeInType #-}\n{-# OPTIONS_HADDOCK not-home #-}"
],
"typelead/eta": [
"DataKinds, TypeFamilies, FlexibleContexts, MultiParamTypeClasses,\n ScopedTypeVariables, FlexibleInstances, UndecidableInstances,\n BangPatterns #-}\n-----------------------------------------------------------------------------\n-- |\n-- Module : Java.Execption\n-- Copyright : (c) Jyothsna Srinivas 2017"
]
},
"DefaultTypeBuilder.java": {
"apache/dubbo": [
"public final class DefaultTypeBuilder {"
]
},
"storage.go": {
"kubernetes/kubernetes": [
"type REST struct {\n\t*genericregistry.Store\n\tToken *TokenREST\n}"
]
},
"LongestPalindromicSubstring.java": {
"kdn251/interviews": [
"class LongestPalindromicSubstring {\n public String longestPalindrome(String s) {\n if(s == null || s.length() == 0) {\n return \"\";\n }"
]
},
"redacted.js": {
"verbalexpressions/jsverbalexpressions": [
"class VerbalExpression extends RegExp {\n /**\n * Creates an instance of VerbalExpression.\n * @constructor\n * @alias VerEx\n * @memberof VerbalExpression\n */",
"function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }"
],
"cheeriojs/cheerio": [
"function isNode(obj) {\n return (\n obj.name ||\n obj.type === 'root' ||\n obj.type === 'text' ||\n obj.type === 'comment'\n );"
],
"segmentio/nightmare": [
"const DEFAULT_GOTO_TIMEOUT = 30 * 1000\n// Standard timeout for wait(ms)\nconst DEFAULT_WAIT_TIMEOUT = 30 * 1000\n// Timeout between keystrokes for `.type()`\nconst DEFAULT_TYPE_INTERVAL = 100\n// timeout between `wait` polls\nconst DEFAULT_POLL_INTERVAL = 250"
],
"typicode/husky": [
"const pleaseUpgradeNode = require('please-upgrade-node')\nconst pkg = require('./package.json')"
],
"bevacqua/dragula": [
"function redacted (initialContainers, options) {\n var len = arguments.length;\n if (len === 1 && Array.isArray(initialContainers) === false) {\n options = initialContainers;\n initialContainers = [];\n }\n var _mirror; // mirror image",
"function lookupClass (className) {\n var cached = cache[className];\n if (cached) {\n cached.lastIndex = 0;\n } else {\n cache[className] = cached = new RegExp(start + className + end, 'g');\n }"
],
"enyo/dropzone": [
"function _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }"
],
"denysdovhan/wtfjs": [
"const fs = require(\"fs\");\nconst obj = require(\"through2\").obj;\nconst pager = require(\"default-pager\");\nconst msee = require(\"msee\");\nconst join = require(\"path\").join;\nconst boxen = require(\"boxen\");\nconst chalk = require(\"chalk\");"
],
"maxwellito/vivus": [
"function Pathformer(element) {\n // Test params\n if (typeof element === 'undefined') {\n throw new Error('Pathformer [constructor]: \"element\" parameter is required');\n }",
"function redacted(element, options, callback) {\n setupEnv();"
],
"designmodo/flat-ui": [
"function focusable( element, isTabIndexNotNaN ) {\n\tvar map, mapName, img,\n\t\tnodeName = element.nodeName.toLowerCase();\n\tif ( \"area\" === nodeName ) {\n\t\tmap = element.parentNode;\n\t\tmapName = map.name;\n\t\tif ( !element.href || !mapName || map.nodeName.toLowerCase() !== \"map\" ) {"
],
"riot/riot": [
"const { DOM_COMPONENT_INSTANCE_PROPERTY, COMPONENTS_IMPLEMENTATION_MAP, PLUGINS_SET } = globals"
],
"foreverjs/forever": [
"const fs = require(\"fs\");\nconst path = require(\"path\");\nconst events2 = require('eventemitter2');\nconst events = require(\"events\");\nconst exec = require(\"child_process\").exec;\nconst spawn = require(\"child_process\").spawn;\nconst cliff = require(\"cliff\");"
],
"jamiebuilds/the-super-tiny-compiler": [
"function tokenizer(input) {"
],
"wagerfield/parallax": [
"const rqAnFr = require('raf')\nconst objectAssign = require('object-assign')"
],
"github/fetch": [
"function isDataView(obj) {\n return obj && DataView.prototype.isPrototypeOf(obj)\n}"
],
"eslint/eslint": [
"function readStdin() {\n return new Promise((resolve, reject) => {\n let content = \"\";\n let chunk = \"\";"
]
},
"Dir.swift": {
"perfectlysoft/perfect": [
"#if os(Linux)\nimport LinuxBridge\n#else\nimport Darwin\n#endif"
]
},
"QueryName.java": {
"square/retrofit": [
"public @interface QueryName {\n /** Specifies whether the parameter is already URL encoded. */\n boolean encoded() default false;\n}"
]
},
"ShardingAlgorithmProvidedBeanRegistry.java": {
"apache/shardingsphere": [
"public final class ShardingAlgorithmProvidedBeanRegistry extends AbstractAlgorithmProvidedBeanRegistry<ShardingAlgorithm> {"
]
},
"vf_sr.c": {
"ffmpeg/ffmpeg": [
"typedef struct SRContext {\n const AVClass *class;"
]
},
"Transaction.hs": {
"agentm/project-m36": [
"module ProjectM36.Transaction where\nimport ProjectM36.Base\nimport qualified Data.Set as S\nimport qualified Data.UUID as U\nimport Data.Time.Clock\nimport qualified Data.List.NonEmpty as NE"
]
},
"mod.rs": {
"hyperium/tonic": [
"mod buffer;\nmod decode;\nmod encode;\n#[cfg(feature = \"prost\")]\nmod prost;"
],
"Qovery/engine": [
"pub mod application;\npub mod databases;\npub mod external_service;\npub mod kubernetes;\npub mod router;"
],
"weld-project/weld": [
"pub mod constants;"
],
"timvisee/ffsend": [
"pub mod debug;\npub mod delete;\npub mod download;\npub mod exists;\npub mod generate;\n#[cfg(feature = \"history\")]\npub mod history;",
"pub mod api;\npub mod basic_auth;\npub mod download_limit;\npub mod expiry_time;\npub mod gen_passphrase;\npub mod host;\npub mod owner;"
],
"federico-terzi/espanso": [
"pub mod windows;"
],
"dandavison/delta": [
"mod git_config_entry;",
"mod console_tests;\nmod iterator;"
],
"denisidoro/navi": [
"pub mod alfred;\npub mod terminal;"
],
"tikv/tikv": [
"Result as GrpcResult, RpcContext, RpcStatus, RpcStatusCode, ServerStreamingSink, UnarySink,\n WriteFlags,\n};\nuse kvproto::diagnosticspb::{\n Diagnostics, SearchLogRequest, SearchLogResponse, ServerInfoRequest, ServerInfoResponse,\n ServerInfoType,\n};"
],
"cloudflare/boringtun": [
"pub mod benchmark;\nuse self::benchmark::do_benchmark;\nuse super::crypto::x25519::*;\nuse super::noise::*;\nuse base64::{decode, encode};\nuse hex::encode as encode_hex;\nuse libc::{raise, SIGSEGV};"
],
"o2sh/onefetch": [
"crate::redacted::error::*,\n std::collections::HashMap,\n std::{ffi::OsStr, fs},\n};"
],
"LemmyNet/lemmy": [
"check_is_apub_id_valid,\n extensions::signatures::verify_signature,\n fetcher::get_or_fetch_and_upsert_actor,\n ActorType,\n};\nuse activitystreams::{\n activity::ActorAndObjectRefExt,"
],
"Peltoche/lsd": [
"mod date;\nmod filetype;\nmod indicator;\nmod inode;\npub mod name;\nmod owner;\nmod permissions;"
],
"citybound/citybound": [
"pub enum LogLevel {\n Debug,\n Info,\n Warning,\n Error,\n}"
],
"rust-lang/rust": [
"mod bufreader;\nmod bufwriter;\nmod linewriter;\nmod linewritershim;"
],
"tokio-rs/mio": [
"mod afd;\nmod io_status_block;"
],
"blockstack/stacks-blockchain": [
"extern crate regex;",
"pub mod leader_block_commit;\n/// This module contains all burn-chain operations\npub mod leader_key_register;\npub mod stack_stx;\npub mod transfer_stx;\npub mod user_burn_support;"
],
"sharkdp/hyperfine": [
"mod asciidoc;\nmod csv;\nmod json;\nmod markdown;"
],
"launchbadge/sqlx": [
"mod handle;\nmod r#virtual;\nmod worker;"
],
"EbTech/rust-algorithms": [
"pub mod fft;\npub mod num;"
],
"tokio-rs/tokio": [
"mod canonicalize;\npub use self::canonicalize::canonicalize;"
],
"XAMPPRocky/tokei": [
"pub mod language_type;\npub mod languages;\nmod syntax;"
],
"meilisearch/MeiliSearch": [
"mod deserializer;"
],
"RustScan/RustScan": [
"mod range_iterator;\nuse super::{PortRange, ScanOrder};\nuse rand::seq::SliceRandom;\nuse rand::thread_rng;\nuse range_iterator::RangeIterator;",
"mod socket_iterator;\nuse socket_iterator::SocketIterator;"
],
"gluon-lang/gluon": [
"ast::{\n self, Argument, AstAlloc, AstType, Expr, Lambda, Literal, Pattern, PatternField,\n SpannedExpr, SpannedPattern, TypeBinding, TypedIdent, ValueBinding,\n },\n metadata::Attribute,\n pos::{self, BytePos, Span},\n symbol::{Symbol, Symbols},"
],
"firecracker-microvm/firecracker": [
"mod dist_regs;\nmod icc_regs;\nmod redist_regs;"
],
"chyyuu/os_kernel_lab": [
"pub mod virtio_blk;"
],
"glium/glium": [
"extern crate redacted;\nextern crate libc;"
],
"wasmerio/wasmer": [
"attributes::{Attribute, AttributeLoc},\n builder::Builder,\n context::Context,\n targets::TargetMachine,\n types::FunctionType,\n values::{BasicValueEnum, CallSiteValue, FunctionValue, PointerValue},\n};",
"mod function;\nmod global;\nmod memory;\nmod table;"
],
"Geal/nom": [
"mod macros;"
],
"alacritty/alacritty": [
"mod bell;\nmod colors;\nmod scrolling;"
]
},
"out-grepable.c": {
"robertdavidgraham/masscan": [
"static unsigned\ncount_type(const struct RangeList *ports, int start_type, int end_type)\n{\n unsigned min_port = start_type;\n unsigned max_port = end_type;\n unsigned i;\n unsigned result = 0;"
]
},
"RetryMiddleware.php": {
"guzzle/guzzle": [
"class RetryMiddleware\n{\n /**\n * @var callable(RequestInterface, array): PromiseInterface\n */\n private $nextHandler;"
]
},
"ListViewAdapter.java": {
"daimajia/androidswipelayout": [
"public class ListViewAdapter extends BaseSwipeAdapter {"
]
},
"app.js": {
"nwjs/nw.js": [
"function App() {\n}\nrequire('util').inherits(App, exports.Base);"
],
"vuejs/vue-router": [
"const router = new VueRouter({\n mode: 'history',\n base: __dirname,\n routes: [\n { path: '/' },\n // params are denoted with a colon \":\"\n { path: '/params/:foo/:bar' },",
"const Home = { template: '<div>home</div>' }\nconst Foo = { template: '<div>foo</div>' }\nconst Bar = {\n template: `\n <div>\n bar\n <div style=\"height:500px\"></div>",
"let numPopstateListeners = 0\nconst listenerCountDiv = document.getElementById('popcount')\nlistenerCountDiv.textContent = 0"
],
"microsoft/web-dev-for-beginners": [
"class EventEmitter {\n\tconstructor() {\n\t\tthis.listeners = {};\n\t}",
"function loadTexture(path) {\n return new Promise((resolve) => {\n const img = new Image();\n img.src = path;\n img.onload = () => {\n resolve(img);\n };"
],
"docker/kitematic": [
"const remote = electron.remote;\nconst Menu = remote.Menu;\n// ipcRenderer is used as we're in the process\nconst ipcRenderer = electron.ipcRenderer;"
],
"ruanyf/react-demos": [
"function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }"
],
"sahat/hackathon-starter": [
"const express = require('express');\nconst compression = require('compression');\nconst session = require('express-session');\nconst bodyParser = require('body-parser');\nconst logger = require('morgan');\nconst chalk = require('chalk');\nconst errorHandler = require('errorhandler');"
],
"unitech/pm2": [
"const spawn = require('child_process').spawn\nvar fs = require('fs');"
]
},
"L.java": {
"nostra13/android-universal-image-loader": [
"public final class L {"
]
},
"webpack.config.js": {
"zenorocha/clipboard.js": [
"const pkg = require('./package.json');\nconst path = require('path');\nconst webpack = require('webpack');\nconst UglifyJSPlugin = require('uglifyjs-webpack-plugin');"
],
"microsoft/monaco-editor": [
"const path = require('path');"
],
"strml/react-grid-layout": [
"const webpack = require(\"webpack\");"
]
},
"Location.hs": {
"osener/markup.rocks": [
"module Widgets.Dialog.Location where"
]
},
"color.rs": {
"Peltoche/lsd": [
"pub enum Elem {\n /// Node type\n File {\n exec: bool,\n uid: bool,\n },\n SymLink,",
"pub struct Color {\n /// When to use color.\n pub when: ColorOption,\n}"
],
"dandavison/delta": [
"pub fn parse_color(s: &str, true_color: bool) -> Option<Color> {\n if s == \"normal\" {\n return None;\n }\n let die = || {\n eprintln!(\"Invalid color or style attribute: {}\", s);\n process::exit(1);"
]
},
"ParametricBufferGeometry.js": {
"mrdoob/three.js": [
"function ParametricBufferGeometry( func, slices, stacks ) {"
]
},
"plugin.rb": {
"jekyll/jekyll": [
"module redacted\n class Plugin\n PRIORITIES = {\n :low => -10,\n :highest => 100,\n :lowest => -100,\n :normal => 0,"
],
"hashicorp/vagrant": [
"module redactedPlugins\n module HostBSD\n class Plugin < redacted.plugin(\"2\")\n name \"BSD host\"\n description \"BSD host support.\""
]
},
"input.rs": {
"RustScan/RustScan": [
"const LOWEST_PORT_NUMBER: u16 = 1;\nconst TOP_PORT_NUMBER: u16 = 65535;"
],
"sharkdp/hexyl": [
"pub enum Input<'a> {\n File(fs::File),\n Stdin(io::StdinLock<'a>),\n}"
],
"koute/stdweb": [
"pub struct InputElement( Reference );"
],
"XAMPPRocky/tokei": [
"type LanguageMap = BTreeMap<LanguageType, Language>;"
],
"sharkdp/fd": [
"pub fn basename(path: &Path) -> &OsStr {\n path.file_name().unwrap_or_else(|| path.as_os_str())\n}"
]
},
"TimeoutManager.cpp": {
"facebook/folly": [
"namespace redacted {"
]
},
"HKC.hs": {
"hakaru-dev/hakaru": [
"module Main where"
]
},
"dibio.c": {
"facebook/zstd": [
"static const size_t g_maxMemory = (sizeof(size_t) == 4) ? (2 GB - 64 MB) : ((size_t)(512 MB) << sizeof(size_t));"
]
},
"transform-origin.ts": {
"niklasvh/html2canvas": [
"const DEFAULT_VALUE: LengthPercentage = {\n type: TokenType.PERCENTAGE_TOKEN,\n number: 50,\n flags: FLAG_INTEGER\n};\nconst DEFAULT: TransformOrigin = [DEFAULT_VALUE, DEFAULT_VALUE];"
]
},