forked from ytsaurus/ytsaurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mapping.json
1192 lines (1192 loc) · 66.7 KB
/
.mapping.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
{
".":"yt/opensource/repos/ytsaurus/github_toplevel",
".github/pull_request_template.md":"yt/opensource/repos/ytsaurus/github_toplevel/.github/pull_request_template.md",
".github/workflows/build-jobs.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/build-jobs.yaml",
".github/workflows/check-jobs.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/check-jobs.yaml",
".github/workflows/chyt_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/chyt_release.yaml",
".github/workflows/cpp.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/cpp.yaml",
".github/workflows/docker-jobs.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/docker-jobs.yaml",
".github/workflows/go.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/go.yaml",
".github/workflows/issue_notifications.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/issue_notifications.yaml",
".github/workflows/java.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/java.yaml",
".github/workflows/java_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/java_release.yaml",
".github/workflows/pr_notifications.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/pr_notifications.yaml",
".github/workflows/python_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/python_release.yaml",
".github/workflows/query_tracker_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/query_tracker_release.yaml",
".github/workflows/queue_agent_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/queue_agent_release.yaml",
".github/workflows/spyt_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/spyt_release.yaml",
".github/workflows/strawberry_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/strawberry_release.yaml",
".github/workflows/systest.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/systest.yaml",
".github/workflows/ya_make.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/ya_make.yaml",
".github/workflows/ytsaurus_release.yaml":"yt/opensource/repos/ytsaurus/github_toplevel/.github/workflows/ytsaurus_release.yaml",
".gitignore":"yt/opensource/repos/ytsaurus/github_toplevel/.gitignore",
"AUTHORS":"yt/opensource/repos/ytsaurus/github_toplevel/AUTHORS",
"BUILD.md":"yt/opensource/repos/ytsaurus/github_toplevel/BUILD.md",
"CMakeLists.linux-x86_64.txt":"",
"CMakeLists.txt":"",
"CODE_OF_CONDUCT.md":"yt/opensource/repos/ytsaurus/github_toplevel/CODE_OF_CONDUCT.md",
"CONTRIBUTING.md":"yt/opensource/repos/ytsaurus/github_toplevel/CONTRIBUTING.md",
"LICENSE":"yt/opensource/repos/ytsaurus/github_toplevel/LICENSE",
"README.md":"yt/opensource/repos/ytsaurus/github_toplevel/README.md",
"SECURITY.md":"yt/opensource/repos/ytsaurus/github_toplevel/SECURITY.md",
"build.gradle.kts":"",
"build/internal/conf/internal.conf":"yt/go/opensource_conf_internal.conf",
"build/mapping.conf.json":"devtools/ya/opensource/mapping.conf.json",
"build/scripts/export_script_gen.py":"",
"build/scripts/generate_vcs_info.py":"",
"build/scripts/split_unittest.py":"",
"build/ya.conf.json":"devtools/ya/opensource/ya.conf.json",
"certs/CMakeLists.txt":"",
"clang.toolchain":"yt/opensource/repos/ytsaurus/github_toplevel/clang.toolchain",
"cmake/archive.cmake":"",
"cmake/bison.cmake":"",
"cmake/common.cmake":"",
"cmake/conan.cmake":"",
"cmake/fbs.cmake":"",
"cmake/global_flags.cmake":"",
"cmake/global_flags.compiler.gnu.cmake":"",
"cmake/global_flags.compiler.gnu.march.cmake":"",
"cmake/global_flags.compiler.msvc.cmake":"",
"cmake/global_flags.linker.gnu.cmake":"",
"cmake/global_flags.linker.msvc.cmake":"",
"cmake/global_vars.cmake":"",
"cmake/llvm-tools.cmake":"",
"cmake/protobuf.cmake":"",
"cmake/shared_libs.cmake":"",
"conanfile.txt":"",
"connectors":"yt/connectors",
"connectors/import.py":"yt/connectors/import.py",
"connectors/pom.xml":"yt/connectors/pom.xml",
"contrib/CMakeLists.txt":"",
"contrib/clickhouse/CMakeLists.txt":"",
"contrib/clickhouse/base/CMakeLists.txt":"",
"contrib/clickhouse/base/base/CMakeLists.txt":"",
"contrib/clickhouse/base/widechar_width/CMakeLists.txt":"",
"contrib/clickhouse/contrib/CMakeLists.txt":"",
"contrib/clickhouse/contrib/cctz-cmake/CMakeLists.txt":"",
"contrib/clickhouse/src/CMakeLists.txt":"",
"contrib/clickhouse/src/Common/CMakeLists.txt":"",
"contrib/clickhouse/src/Parsers/CMakeLists.txt":"",
"contrib/deprecated/CMakeLists.txt":"",
"contrib/deprecated/clickhouse_data_streams_compat/CMakeLists.txt":"",
"contrib/libs/CMakeLists.txt":"",
"contrib/libs/apache/CMakeLists.txt":"",
"contrib/libs/apache/arrow/CMakeLists.txt":"",
"contrib/libs/apache/avro/CMakeLists.txt":"",
"contrib/libs/apache/orc-format/CMakeLists.txt":"",
"contrib/libs/apache/orc/CMakeLists.txt":"",
"contrib/libs/aws-sdk-cpp/CMakeLists.txt":"",
"contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/CMakeLists.txt":"",
"contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/CMakeLists.txt":"",
"contrib/libs/backtrace/CMakeLists.txt":"",
"contrib/libs/base64/CMakeLists.txt":"",
"contrib/libs/base64/avx2/CMakeLists.txt":"",
"contrib/libs/base64/neon32/CMakeLists.txt":"",
"contrib/libs/base64/neon64/CMakeLists.txt":"",
"contrib/libs/base64/plain32/CMakeLists.txt":"",
"contrib/libs/base64/plain64/CMakeLists.txt":"",
"contrib/libs/base64/ssse3/CMakeLists.txt":"",
"contrib/libs/brotli/CMakeLists.txt":"",
"contrib/libs/brotli/common/CMakeLists.txt":"",
"contrib/libs/brotli/dec/CMakeLists.txt":"",
"contrib/libs/brotli/enc/CMakeLists.txt":"",
"contrib/libs/c-ares/CMakeLists.txt":"",
"contrib/libs/cctz/CMakeLists.txt":"",
"contrib/libs/cctz/tzdata/CMakeLists.txt":"",
"contrib/libs/croaring/CMakeLists.txt":"",
"contrib/libs/curl/CMakeLists.txt":"",
"contrib/libs/cxxsupp/CMakeLists.txt":"",
"contrib/libs/cxxsupp/builtins/CMakeLists.txt":"",
"contrib/libs/cxxsupp/libcxx/CMakeLists.txt":"",
"contrib/libs/cxxsupp/libcxxabi-parts/CMakeLists.txt":"",
"contrib/libs/cxxsupp/libcxxrt/CMakeLists.txt":"",
"contrib/libs/double-conversion/CMakeLists.txt":"",
"contrib/libs/expat/CMakeLists.txt":"",
"contrib/libs/farmhash/CMakeLists.txt":"",
"contrib/libs/farmhash/arch/CMakeLists.txt":"",
"contrib/libs/farmhash/arch/sse41/CMakeLists.txt":"",
"contrib/libs/farmhash/arch/sse42/CMakeLists.txt":"",
"contrib/libs/farmhash/arch/sse42_aesni/CMakeLists.txt":"",
"contrib/libs/fastlz/CMakeLists.txt":"",
"contrib/libs/fastops/fastops/core/CMakeLists.txt":"",
"contrib/libs/flatbuffers/CMakeLists.txt":"",
"contrib/libs/flatbuffers/flatc/CMakeLists.txt":"",
"contrib/libs/fmath/CMakeLists.txt":"",
"contrib/libs/fmt/CMakeLists.txt":"",
"contrib/libs/grpc/CMakeLists.txt":"",
"contrib/libs/grpc/src/CMakeLists.txt":"",
"contrib/libs/grpc/src/compiler/CMakeLists.txt":"",
"contrib/libs/grpc/src/compiler/grpc_plugin_support/CMakeLists.txt":"",
"contrib/libs/grpc/third_party/CMakeLists.txt":"",
"contrib/libs/grpc/third_party/address_sorting/CMakeLists.txt":"",
"contrib/libs/grpc/third_party/upb/CMakeLists.txt":"",
"contrib/libs/h3/CMakeLists.txt":"",
"contrib/libs/icu/CMakeLists.txt":"",
"contrib/libs/isa-l/CMakeLists.txt":"",
"contrib/libs/isa-l/erasure_code/CMakeLists.txt":"",
"contrib/libs/libbz2/CMakeLists.txt":"",
"contrib/libs/libc_compat/CMakeLists.txt":"",
"contrib/libs/libdivide/CMakeLists.txt":"",
"contrib/libs/libevent/CMakeLists.txt":"",
"contrib/libs/libevent/event_core/CMakeLists.txt":"",
"contrib/libs/libevent/event_extra/CMakeLists.txt":"",
"contrib/libs/libevent/event_openssl/CMakeLists.txt":"",
"contrib/libs/libevent/event_thread/CMakeLists.txt":"",
"contrib/libs/libunwind/CMakeLists.txt":"",
"contrib/libs/liburing/CMakeLists.txt":"",
"contrib/libs/linux-headers/CMakeLists.txt":"",
"contrib/libs/llvm16/CMakeLists.txt":"",
"contrib/libs/llvm16/include/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Analysis/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/AsmParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/BinaryFormat/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Bitcode/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Bitcode/Reader/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Bitcode/Writer/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Bitstream/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Bitstream/Reader/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/CodeGen/AsmPrinter/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/CodeGen/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/CodeGen/GlobalISel/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/CodeGen/MIRParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/CodeGen/SelectionDAG/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/DebugInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/DebugInfo/CodeView/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/DebugInfo/DWARF/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/DebugInfo/MSF/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/DebugInfo/PDB/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/DebugInfo/Symbolize/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Demangle/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ExecutionEngine/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ExecutionEngine/JITLink/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ExecutionEngine/MCJIT/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ExecutionEngine/Orc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ExecutionEngine/Orc/Shared/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ExecutionEngine/Orc/TargetProcess/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Frontend/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Frontend/OpenMP/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/IR/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/IRPrinter/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/IRReader/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Linker/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/MC/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/MC/MCDisassembler/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/MC/MCParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Object/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Option/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Passes/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/ProfileData/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Remarks/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Support/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/TableGen/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/AArch64/AsmParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/AArch64/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/AArch64/Disassembler/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/AArch64/TargetInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/AArch64/Utils/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/ARM/AsmParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/ARM/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/ARM/Disassembler/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/ARM/MCTargetDesc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/ARM/TargetInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/ARM/Utils/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/BPF/AsmParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/BPF/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/BPF/Disassembler/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/BPF/MCTargetDesc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/BPF/TargetInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/NVPTX/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/NVPTX/MCTargetDesc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/NVPTX/TargetInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/PowerPC/AsmParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/PowerPC/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/PowerPC/Disassembler/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/PowerPC/TargetInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/WebAssembly/AsmParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/WebAssembly/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/WebAssembly/Disassembler/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/WebAssembly/MCTargetDesc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/WebAssembly/TargetInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/WebAssembly/Utils/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/X86/AsmParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/X86/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/X86/Disassembler/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/X86/MCTargetDesc/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Target/X86/TargetInfo/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/TargetParser/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/TextAPI/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/AggressiveInstCombine/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/CFGuard/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/Coroutines/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/IPO/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/InstCombine/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/Instrumentation/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/ObjCARC/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/Scalar/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/Utils/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/Transforms/Vectorize/CMakeLists.txt":"",
"contrib/libs/llvm16/lib/WindowsDriver/CMakeLists.txt":"",
"contrib/libs/llvm16/utils/CMakeLists.txt":"",
"contrib/libs/llvm16/utils/TableGen/CMakeLists.txt":"",
"contrib/libs/llvm16/utils/TableGen/GlobalISel/CMakeLists.txt":"",
"contrib/libs/lz4/CMakeLists.txt":"",
"contrib/libs/lzma/CMakeLists.txt":"",
"contrib/libs/lzmasdk/CMakeLists.txt":"",
"contrib/libs/metrohash/CMakeLists.txt":"",
"contrib/libs/miniselect/CMakeLists.txt":"",
"contrib/libs/msgpack/CMakeLists.txt":"",
"contrib/libs/nayuki_md5/CMakeLists.txt":"",
"contrib/libs/nghttp2/CMakeLists.txt":"",
"contrib/libs/openssl/CMakeLists.txt":"",
"contrib/libs/openssl/crypto/CMakeLists.txt":"",
"contrib/libs/pcre/CMakeLists.txt":"",
"contrib/libs/pcre/pcre16/CMakeLists.txt":"",
"contrib/libs/pcre/pcre32/CMakeLists.txt":"",
"contrib/libs/pdqsort/CMakeLists.txt":"",
"contrib/libs/pfr/CMakeLists.txt":"",
"contrib/libs/poco/CMakeLists.txt":"",
"contrib/libs/poco/Crypto/CMakeLists.txt":"",
"contrib/libs/poco/Data/CMakeLists.txt":"",
"contrib/libs/poco/Foundation/CMakeLists.txt":"",
"contrib/libs/poco/JSON/CMakeLists.txt":"",
"contrib/libs/poco/MongoDB/CMakeLists.txt":"",
"contrib/libs/poco/Net/CMakeLists.txt":"",
"contrib/libs/poco/NetSSL_OpenSSL/CMakeLists.txt":"",
"contrib/libs/poco/Redis/CMakeLists.txt":"",
"contrib/libs/poco/Util/CMakeLists.txt":"",
"contrib/libs/poco/XML/CMakeLists.txt":"",
"contrib/libs/protobuf/CMakeLists.txt":"",
"contrib/libs/protoc/CMakeLists.txt":"",
"contrib/libs/pycxx/CMakeLists.txt":"",
"contrib/libs/rapidjson/CMakeLists.txt":"",
"contrib/libs/re2/CMakeLists.txt":"",
"contrib/libs/snappy/CMakeLists.txt":"",
"contrib/libs/sparsehash/CMakeLists.txt":"",
"contrib/libs/tcmalloc/CMakeLists.txt":"",
"contrib/libs/tcmalloc/default/CMakeLists.txt":"",
"contrib/libs/tcmalloc/malloc_extension/CMakeLists.txt":"",
"contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt":"",
"contrib/libs/utf8proc/CMakeLists.txt":"",
"contrib/libs/wyhash/CMakeLists.txt":"",
"contrib/libs/xdelta3/CMakeLists.txt":"",
"contrib/libs/xxhash/CMakeLists.txt":"",
"contrib/libs/yajl/CMakeLists.txt":"",
"contrib/libs/zlib/CMakeLists.txt":"",
"contrib/libs/zstd/CMakeLists.txt":"",
"contrib/libs/zstd06/CMakeLists.txt":"",
"contrib/restricted/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/algorithm/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/base/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/container/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/debugging/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/flags/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/functional/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/hash/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/memory/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/meta/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/numeric/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/profiling/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/random/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/status/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/strings/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/synchronization/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/time/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/types/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp-tstring/y_absl/utility/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/algorithm/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/functional/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/log/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/memory/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/meta/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/numeric/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt":"",
"contrib/restricted/abseil-cpp/absl/utility/CMakeLists.txt":"",
"contrib/restricted/aws/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-auth/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-cal/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-common/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-compression/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-event-stream/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-http/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-io/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-mqtt/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-s3/CMakeLists.txt":"",
"contrib/restricted/aws/aws-c-sdkutils/CMakeLists.txt":"",
"contrib/restricted/aws/aws-checksums/CMakeLists.txt":"",
"contrib/restricted/aws/aws-crt-cpp/CMakeLists.txt":"",
"contrib/restricted/aws/s2n/CMakeLists.txt":"",
"contrib/restricted/boost/CMakeLists.txt":"",
"contrib/restricted/boost/algorithm/CMakeLists.txt":"",
"contrib/restricted/boost/align/CMakeLists.txt":"",
"contrib/restricted/boost/any/CMakeLists.txt":"",
"contrib/restricted/boost/array/CMakeLists.txt":"",
"contrib/restricted/boost/asio/CMakeLists.txt":"",
"contrib/restricted/boost/assert/CMakeLists.txt":"",
"contrib/restricted/boost/atomic/CMakeLists.txt":"",
"contrib/restricted/boost/bind/CMakeLists.txt":"",
"contrib/restricted/boost/chrono/CMakeLists.txt":"",
"contrib/restricted/boost/circular_buffer/CMakeLists.txt":"",
"contrib/restricted/boost/concept_check/CMakeLists.txt":"",
"contrib/restricted/boost/config/CMakeLists.txt":"",
"contrib/restricted/boost/container/CMakeLists.txt":"",
"contrib/restricted/boost/container_hash/CMakeLists.txt":"",
"contrib/restricted/boost/context/CMakeLists.txt":"",
"contrib/restricted/boost/context/fcontext_impl/CMakeLists.txt":"",
"contrib/restricted/boost/context/impl_common/CMakeLists.txt":"",
"contrib/restricted/boost/conversion/CMakeLists.txt":"",
"contrib/restricted/boost/convert/CMakeLists.txt":"",
"contrib/restricted/boost/core/CMakeLists.txt":"",
"contrib/restricted/boost/coroutine/CMakeLists.txt":"",
"contrib/restricted/boost/crc/CMakeLists.txt":"",
"contrib/restricted/boost/date_time/CMakeLists.txt":"",
"contrib/restricted/boost/describe/CMakeLists.txt":"",
"contrib/restricted/boost/detail/CMakeLists.txt":"",
"contrib/restricted/boost/dynamic_bitset/CMakeLists.txt":"",
"contrib/restricted/boost/endian/CMakeLists.txt":"",
"contrib/restricted/boost/exception/CMakeLists.txt":"",
"contrib/restricted/boost/filesystem/CMakeLists.txt":"",
"contrib/restricted/boost/format/CMakeLists.txt":"",
"contrib/restricted/boost/function/CMakeLists.txt":"",
"contrib/restricted/boost/function_types/CMakeLists.txt":"",
"contrib/restricted/boost/functional/CMakeLists.txt":"",
"contrib/restricted/boost/fusion/CMakeLists.txt":"",
"contrib/restricted/boost/geometry/CMakeLists.txt":"",
"contrib/restricted/boost/heap/CMakeLists.txt":"",
"contrib/restricted/boost/integer/CMakeLists.txt":"",
"contrib/restricted/boost/interprocess/CMakeLists.txt":"",
"contrib/restricted/boost/intrusive/CMakeLists.txt":"",
"contrib/restricted/boost/io/CMakeLists.txt":"",
"contrib/restricted/boost/iostreams/CMakeLists.txt":"",
"contrib/restricted/boost/iterator/CMakeLists.txt":"",
"contrib/restricted/boost/lexical_cast/CMakeLists.txt":"",
"contrib/restricted/boost/locale/CMakeLists.txt":"",
"contrib/restricted/boost/math/CMakeLists.txt":"",
"contrib/restricted/boost/move/CMakeLists.txt":"",
"contrib/restricted/boost/mp11/CMakeLists.txt":"",
"contrib/restricted/boost/mpl/CMakeLists.txt":"",
"contrib/restricted/boost/multi_index/CMakeLists.txt":"",
"contrib/restricted/boost/multiprecision/CMakeLists.txt":"",
"contrib/restricted/boost/numeric_conversion/CMakeLists.txt":"",
"contrib/restricted/boost/optional/CMakeLists.txt":"",
"contrib/restricted/boost/parameter/CMakeLists.txt":"",
"contrib/restricted/boost/phoenix/CMakeLists.txt":"",
"contrib/restricted/boost/polygon/CMakeLists.txt":"",
"contrib/restricted/boost/pool/CMakeLists.txt":"",
"contrib/restricted/boost/predef/CMakeLists.txt":"",
"contrib/restricted/boost/preprocessor/CMakeLists.txt":"",
"contrib/restricted/boost/program_options/CMakeLists.txt":"",
"contrib/restricted/boost/proto/CMakeLists.txt":"",
"contrib/restricted/boost/qvm/CMakeLists.txt":"",
"contrib/restricted/boost/random/CMakeLists.txt":"",
"contrib/restricted/boost/range/CMakeLists.txt":"",
"contrib/restricted/boost/ratio/CMakeLists.txt":"",
"contrib/restricted/boost/rational/CMakeLists.txt":"",
"contrib/restricted/boost/regex/CMakeLists.txt":"",
"contrib/restricted/boost/serialization/CMakeLists.txt":"",
"contrib/restricted/boost/smart_ptr/CMakeLists.txt":"",
"contrib/restricted/boost/spirit/CMakeLists.txt":"",
"contrib/restricted/boost/static_assert/CMakeLists.txt":"",
"contrib/restricted/boost/system/CMakeLists.txt":"",
"contrib/restricted/boost/thread/CMakeLists.txt":"",
"contrib/restricted/boost/throw_exception/CMakeLists.txt":"",
"contrib/restricted/boost/tokenizer/CMakeLists.txt":"",
"contrib/restricted/boost/tti/CMakeLists.txt":"",
"contrib/restricted/boost/tuple/CMakeLists.txt":"",
"contrib/restricted/boost/type_index/CMakeLists.txt":"",
"contrib/restricted/boost/type_traits/CMakeLists.txt":"",
"contrib/restricted/boost/typeof/CMakeLists.txt":"",
"contrib/restricted/boost/unordered/CMakeLists.txt":"",
"contrib/restricted/boost/utility/CMakeLists.txt":"",
"contrib/restricted/boost/variant/CMakeLists.txt":"",
"contrib/restricted/boost/variant2/CMakeLists.txt":"",
"contrib/restricted/boost/winapi/CMakeLists.txt":"",
"contrib/restricted/cityhash-1.0.2/CMakeLists.txt":"",
"contrib/restricted/clickhouse-deps/CMakeLists.txt":"",
"contrib/restricted/clickhouse-deps/morton-nd/CMakeLists.txt":"",
"contrib/restricted/dragonbox/CMakeLists.txt":"",
"contrib/restricted/fast_float/CMakeLists.txt":"",
"contrib/restricted/google/CMakeLists.txt":"",
"contrib/restricted/google/benchmark/CMakeLists.txt":"",
"contrib/restricted/googletest/CMakeLists.txt":"",
"contrib/restricted/googletest/googlemock/CMakeLists.txt":"",
"contrib/restricted/googletest/googletest/CMakeLists.txt":"",
"contrib/restricted/http-parser/CMakeLists.txt":"",
"contrib/restricted/magic_enum/CMakeLists.txt":"",
"contrib/restricted/murmurhash/CMakeLists.txt":"",
"contrib/restricted/patched/CMakeLists.txt":"",
"contrib/restricted/patched/replxx/CMakeLists.txt":"",
"contrib/restricted/thrift/CMakeLists.txt":"",
"contrib/restricted/turbo_base64/CMakeLists.txt":"",
"contrib/restricted/uriparser/CMakeLists.txt":"",
"contrib/restricted/wavm/CMakeLists.txt":"",
"contrib/restricted/wavm/Lib/CMakeLists.txt":"",
"contrib/tools/CMakeLists.txt":"",
"contrib/tools/bison/CMakeLists.txt":"",
"contrib/tools/bison/bison/CMakeLists.txt":"",
"contrib/tools/bison/bison/induced/CMakeLists.txt":"",
"contrib/tools/flatc/CMakeLists.txt":"",
"contrib/tools/protoc/CMakeLists.txt":"",
"contrib/tools/protoc/bin/CMakeLists.txt":"",
"contrib/tools/protoc/plugins/CMakeLists.txt":"",
"contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.txt":"",
"contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.txt":"",
"gradle/wrapper/gradle-wrapper.jar":"",
"gradle/wrapper/gradle-wrapper.properties":"",
"gradlew":"",
"gradlew.bat":"",
"library/CMakeLists.txt":"",
"library/cpp/CMakeLists.txt":"",
"library/cpp/blockcodecs/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/brotli/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/bzip/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/fastlz/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/legacy_zstd06/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/lz4/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/lzma/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/snappy/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/zlib/CMakeLists.txt":"",
"library/cpp/blockcodecs/codecs/zstd/CMakeLists.txt":"",
"library/cpp/blockcodecs/core/CMakeLists.txt":"",
"library/cpp/build_info/CMakeLists.txt":"",
"library/cpp/case_insensitive_string/CMakeLists.txt":"",
"library/cpp/cgiparam/CMakeLists.txt":"",
"library/cpp/clickhouse_deps/CMakeLists.txt":"",
"library/cpp/clickhouse_deps/h3_compat/CMakeLists.txt":"",
"library/cpp/clickhouse_deps/incbin_stub/CMakeLists.txt":"",
"library/cpp/clickhouse_deps/re2_st_stub/CMakeLists.txt":"",
"library/cpp/colorizer/CMakeLists.txt":"",
"library/cpp/consistent_hashing/CMakeLists.txt":"",
"library/cpp/containers/CMakeLists.txt":"",
"library/cpp/containers/paged_vector/CMakeLists.txt":"",
"library/cpp/containers/stack_array/CMakeLists.txt":"",
"library/cpp/cppparser/CMakeLists.txt":"",
"library/cpp/cpuid_check/CMakeLists.txt":"",
"library/cpp/dbg_output/CMakeLists.txt":"",
"library/cpp/deprecated/CMakeLists.txt":"",
"library/cpp/deprecated/atomic/CMakeLists.txt":"",
"library/cpp/diff/CMakeLists.txt":"",
"library/cpp/digest/CMakeLists.txt":"",
"library/cpp/digest/lower_case/CMakeLists.txt":"",
"library/cpp/digest/md5/CMakeLists.txt":"",
"library/cpp/digest/murmur/CMakeLists.txt":"",
"library/cpp/dwarf_backtrace/CMakeLists.txt":"",
"library/cpp/erasure/CMakeLists.txt":"",
"library/cpp/getopt/CMakeLists.txt":"",
"library/cpp/getopt/small/CMakeLists.txt":"",
"library/cpp/http/CMakeLists.txt":"",
"library/cpp/http/io/CMakeLists.txt":"",
"library/cpp/http/misc/CMakeLists.txt":"",
"library/cpp/http/server/CMakeLists.txt":"",
"library/cpp/int128/CMakeLists.txt":"",
"library/cpp/iterator/CMakeLists.txt":"",
"library/cpp/json/CMakeLists.txt":"",
"library/cpp/json/common/CMakeLists.txt":"",
"library/cpp/json/fast_sax/CMakeLists.txt":"",
"library/cpp/json/writer/CMakeLists.txt":"",
"library/cpp/lcs/CMakeLists.txt":"",
"library/cpp/lfalloc/CMakeLists.txt":"",
"library/cpp/lfalloc/yt/CMakeLists.txt":"",
"library/cpp/logger/CMakeLists.txt":"",
"library/cpp/malloc/CMakeLists.txt":"",
"library/cpp/malloc/api/CMakeLists.txt":"",
"library/cpp/malloc/tcmalloc/CMakeLists.txt":"",
"library/cpp/monlib/CMakeLists.txt":"",
"library/cpp/monlib/encode/CMakeLists.txt":"",
"library/cpp/monlib/encode/buffered/CMakeLists.txt":"",
"library/cpp/monlib/encode/json/CMakeLists.txt":"",
"library/cpp/monlib/encode/prometheus/CMakeLists.txt":"",
"library/cpp/monlib/encode/spack/CMakeLists.txt":"",
"library/cpp/monlib/exception/CMakeLists.txt":"",
"library/cpp/monlib/metrics/CMakeLists.txt":"",
"library/cpp/openssl/CMakeLists.txt":"",
"library/cpp/openssl/holders/CMakeLists.txt":"",
"library/cpp/openssl/init/CMakeLists.txt":"",
"library/cpp/openssl/io/CMakeLists.txt":"",
"library/cpp/openssl/method/CMakeLists.txt":"",
"library/cpp/pop_count/CMakeLists.txt":"",
"library/cpp/porto/CMakeLists.txt":"",
"library/cpp/porto/proto/CMakeLists.txt":"",
"library/cpp/protobuf/CMakeLists.txt":"",
"library/cpp/protobuf/interop/CMakeLists.txt":"",
"library/cpp/regex/CMakeLists.txt":"",
"library/cpp/regex/pcre/CMakeLists.txt":"",
"library/cpp/resource/CMakeLists.txt":"",
"library/cpp/sanitizer/CMakeLists.txt":"",
"library/cpp/sanitizer/include/CMakeLists.txt":"",
"library/cpp/sighandler/CMakeLists.txt":"",
"library/cpp/skiff/CMakeLists.txt":"",
"library/cpp/sse/CMakeLists.txt":"",
"library/cpp/streams/CMakeLists.txt":"",
"library/cpp/streams/brotli/CMakeLists.txt":"",
"library/cpp/streams/bzip2/CMakeLists.txt":"",
"library/cpp/streams/lz/CMakeLists.txt":"",
"library/cpp/streams/lz/lz4/CMakeLists.txt":"",
"library/cpp/streams/lz/snappy/CMakeLists.txt":"",
"library/cpp/streams/lzma/CMakeLists.txt":"",
"library/cpp/streams/zstd/CMakeLists.txt":"",
"library/cpp/string_utils/CMakeLists.txt":"",
"library/cpp/string_utils/base64/CMakeLists.txt":"",
"library/cpp/string_utils/levenshtein_diff/CMakeLists.txt":"",
"library/cpp/string_utils/quote/CMakeLists.txt":"",
"library/cpp/string_utils/relaxed_escaper/CMakeLists.txt":"",
"library/cpp/string_utils/scan/CMakeLists.txt":"",
"library/cpp/string_utils/url/CMakeLists.txt":"",
"library/cpp/svnversion/CMakeLists.txt":"",
"library/cpp/tdigest/CMakeLists.txt":"",
"library/cpp/terminate_handler/CMakeLists.txt":"",
"library/cpp/testing/CMakeLists.txt":"",
"library/cpp/testing/common/CMakeLists.txt":"",
"library/cpp/testing/gbenchmark/CMakeLists.txt":"",
"library/cpp/testing/gmock_in_unittest/CMakeLists.txt":"",
"library/cpp/testing/gtest/CMakeLists.txt":"",
"library/cpp/testing/gtest_extensions/CMakeLists.txt":"",
"library/cpp/testing/gtest_main/CMakeLists.txt":"",
"library/cpp/testing/hook/CMakeLists.txt":"",
"library/cpp/testing/unittest/CMakeLists.txt":"",
"library/cpp/testing/unittest_main/CMakeLists.txt":"",
"library/cpp/threading/CMakeLists.txt":"",
"library/cpp/threading/blocking_queue/CMakeLists.txt":"",
"library/cpp/threading/cron/CMakeLists.txt":"",
"library/cpp/threading/equeue/CMakeLists.txt":"",
"library/cpp/threading/future/CMakeLists.txt":"",
"library/cpp/threading/future/subscription/CMakeLists.txt":"",
"library/cpp/threading/hot_swap/CMakeLists.txt":"",
"library/cpp/threading/skip_list/CMakeLists.txt":"",
"library/cpp/threading/thread_local/CMakeLists.txt":"",
"library/cpp/type_info/CMakeLists.txt":"",
"library/cpp/type_info/ut/CMakeLists.txt":"",
"library/cpp/xdelta3/CMakeLists.txt":"",
"library/cpp/xdelta3/proto/CMakeLists.txt":"",
"library/cpp/xdelta3/state/CMakeLists.txt":"",
"library/cpp/xdelta3/xdelta_codec/CMakeLists.txt":"",
"library/cpp/yson/CMakeLists.txt":"",
"library/cpp/yson/json/CMakeLists.txt":"",
"library/cpp/yson/node/CMakeLists.txt":"",
"library/cpp/yson_pull/CMakeLists.txt":"",
"library/cpp/yt/CMakeLists.txt":"",
"library/cpp/yt/assert/CMakeLists.txt":"",
"library/cpp/yt/backtrace/CMakeLists.txt":"",
"library/cpp/yt/backtrace/cursors/CMakeLists.txt":"",
"library/cpp/yt/backtrace/cursors/frame_pointer/CMakeLists.txt":"",
"library/cpp/yt/backtrace/cursors/interop/CMakeLists.txt":"",
"library/cpp/yt/backtrace/cursors/libunwind/CMakeLists.txt":"",
"library/cpp/yt/backtrace/symbolizers/CMakeLists.txt":"",
"library/cpp/yt/backtrace/symbolizers/dwarf/CMakeLists.txt":"",
"library/cpp/yt/coding/CMakeLists.txt":"",
"library/cpp/yt/containers/CMakeLists.txt":"",
"library/cpp/yt/cpu_clock/CMakeLists.txt":"",
"library/cpp/yt/exception/CMakeLists.txt":"",
"library/cpp/yt/logging/CMakeLists.txt":"",
"library/cpp/yt/logging/backends/CMakeLists.txt":"",
"library/cpp/yt/logging/backends/arcadia/CMakeLists.txt":"",
"library/cpp/yt/logging/backends/stream/CMakeLists.txt":"",
"library/cpp/yt/logging/plain_text_formatter/CMakeLists.txt":"",
"library/cpp/yt/malloc/CMakeLists.txt":"",
"library/cpp/yt/memory/CMakeLists.txt":"",
"library/cpp/yt/misc/CMakeLists.txt":"",
"library/cpp/yt/mlock/CMakeLists.txt":"",
"library/cpp/yt/phdr_cache/CMakeLists.txt":"",
"library/cpp/yt/small_containers/CMakeLists.txt":"",
"library/cpp/yt/stockpile/CMakeLists.txt":"",
"library/cpp/yt/string/CMakeLists.txt":"",
"library/cpp/yt/system/CMakeLists.txt":"",
"library/cpp/yt/threading/CMakeLists.txt":"",
"library/cpp/yt/yson/CMakeLists.txt":"",
"library/cpp/yt/yson_string/CMakeLists.txt":"",
"library/cpp/ytalloc/CMakeLists.txt":"",
"library/cpp/ytalloc/api/CMakeLists.txt":"",
"library/cpp/ytalloc/impl/CMakeLists.txt":"",
"library/go/blockcodecs/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/blockcodecs/go.mod",
"library/go/blockcodecs/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/blockcodecs/go.sum",
"library/go/core/log/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/core/log/go.mod",
"library/go/core/log/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/core/log/go.sum",
"library/go/core/metrics/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/core/metrics/go.mod",
"library/go/core/metrics/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/core/metrics/go.sum",
"library/go/core/xerrors/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/core/xerrors/go.mod",
"library/go/core/xerrors/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/core/xerrors/go.sum",
"library/go/httputil/headers/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/httputil/headers/go.mod",
"library/go/httputil/headers/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/httputil/headers/go.sum",
"library/go/httputil/middleware/httpmetrics/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/httputil/middleware/httpmetrics/go.mod",
"library/go/httputil/middleware/httpmetrics/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/httputil/middleware/httpmetrics/go.sum",
"library/go/ptr/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/ptr/go.mod",
"library/go/ptr/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/ptr/go.sum",
"library/go/test/testhelpers/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/test/testhelpers/go.mod",
"library/go/test/testhelpers/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/test/testhelpers/go.sum",
"library/go/x/xreflect/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/x/xreflect/go.mod",
"library/go/x/xreflect/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/x/xreflect/go.sum",
"library/go/x/xruntime/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/x/xruntime/go.mod",
"library/go/x/xruntime/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/x/xruntime/go.sum",
"library/go/x/xsync/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/x/xsync/go.mod",
"library/go/x/xsync/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/library/go/x/xsync/go.sum",
"settings.gradle.kts":"",
"tools/CMakeLists.txt":"",
"tools/enum_parser/CMakeLists.txt":"",
"tools/enum_parser/enum_parser/CMakeLists.txt":"",
"tools/enum_parser/enum_serialization_runtime/CMakeLists.txt":"",
"tools/enum_parser/parse_enum/CMakeLists.txt":"",
"tools/rescompiler/CMakeLists.txt":"",
"tools/rescompiler/bin/CMakeLists.txt":"",
"util/CMakeLists.txt":"",
"util/charset/CMakeLists.txt":"",
"util/draft/CMakeLists.txt":"",
"ya":"devtools/ya/opensource/ya",
"ya.conf":"devtools/ya/opensource/ya.conf",
"yt/CMakeLists.txt":"",
"yt/chyt/CMakeLists.txt":"",
"yt/chyt/client/CMakeLists.txt":"",
"yt/chyt/client/protos/CMakeLists.txt":"",
"yt/chyt/controller/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/yt/chyt/controller/go.mod",
"yt/chyt/controller/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/yt/chyt/controller/go.sum",
"yt/chyt/server/CMakeLists.txt":"",
"yt/chyt/server/bin/CMakeLists.txt":"",
"yt/chyt/server/protos/CMakeLists.txt":"",
"yt/chyt/server/unittests/CMakeLists.txt":"",
"yt/chyt/tests/CMakeLists.txt":"",
"yt/chyt/tests/dummy_logger/CMakeLists.txt":"",
"yt/cpp/CMakeLists.txt":"",
"yt/cpp/mapreduce/CMakeLists.txt":"",
"yt/cpp/mapreduce/client/CMakeLists.txt":"",
"yt/cpp/mapreduce/common/CMakeLists.txt":"",
"yt/cpp/mapreduce/common/ut/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/batch_request/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/dyntable_get_insert/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/job_statistics/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/join_reduce_tnode/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/map_tnode_with_file/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/mapreduce_lambda/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/mapreduce_protobuf/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/multiple_input_multiple_output_reduce_protobuf/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/multiple_input_multiple_output_reduce_tnode/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/multiple_input_reduce_tnode/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/operation_tracker/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/pass_table_as_file/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/prepare_operation/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/profile_cpu/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/profile_memory/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/protobuf_complex_types/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/simple_map_lambda/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/simple_map_protobuf/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/simple_map_tnode/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/simple_reduce_tnode/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/stateful_map_tnode/CMakeLists.txt":"",
"yt/cpp/mapreduce/examples/tutorial/table_read_write_tnode/CMakeLists.txt":"",
"yt/cpp/mapreduce/http/CMakeLists.txt":"",
"yt/cpp/mapreduce/http/ut/CMakeLists.txt":"",
"yt/cpp/mapreduce/interface/CMakeLists.txt":"",
"yt/cpp/mapreduce/interface/logging/CMakeLists.txt":"",
"yt/cpp/mapreduce/interface/logging/ut/CMakeLists.txt":"",
"yt/cpp/mapreduce/interface/ut/CMakeLists.txt":"",
"yt/cpp/mapreduce/io/CMakeLists.txt":"",
"yt/cpp/mapreduce/library/CMakeLists.txt":"",
"yt/cpp/mapreduce/library/blob_table/CMakeLists.txt":"",
"yt/cpp/mapreduce/library/lambda/CMakeLists.txt":"",
"yt/cpp/mapreduce/library/mock_client/CMakeLists.txt":"",
"yt/cpp/mapreduce/library/operation_tracker/CMakeLists.txt":"",
"yt/cpp/mapreduce/library/parallel_io/CMakeLists.txt":"",
"yt/cpp/mapreduce/library/table_schema/CMakeLists.txt":"",
"yt/cpp/mapreduce/raw_client/CMakeLists.txt":"",
"yt/cpp/mapreduce/raw_client/ut/CMakeLists.txt":"",
"yt/cpp/mapreduce/skiff/CMakeLists.txt":"",
"yt/cpp/mapreduce/util/CMakeLists.txt":"",
"yt/cpp/mapreduce/util/ut/CMakeLists.txt":"",
"yt/cpp/roren/CMakeLists.txt":"",
"yt/cpp/roren/examples/01_par_do/CMakeLists.txt":"",
"yt/cpp/roren/examples/02_group_by_key/CMakeLists.txt":"",
"yt/cpp/roren/examples/03_combine_by_key/CMakeLists.txt":"",
"yt/cpp/roren/examples/04_par_do_multiple_outputs/CMakeLists.txt":"",
"yt/cpp/roren/examples/05_co_group_by_key/CMakeLists.txt":"",
"yt/cpp/roren/examples/CMakeLists.txt":"",
"yt/cpp/roren/interface/CMakeLists.txt":"",
"yt/cpp/roren/library/CMakeLists.txt":"",
"yt/cpp/roren/library/timers/CMakeLists.txt":"",
"yt/cpp/roren/library/timers/timer/CMakeLists.txt":"",
"yt/cpp/roren/library/timers/timer/proto/CMakeLists.txt":"",
"yt/cpp/roren/yt/CMakeLists.txt":"",
"yt/cpp/roren/yt/proto/CMakeLists.txt":"",
"yt/examples/CMakeLists.txt":"",
"yt/examples/rpc_proxy_sample/CMakeLists.txt":"",
"yt/go/README.md":"yt/opensource/repos/ytsaurus/github_toplevel/yt/go/README.md",
"yt/go/go.mod":"yt/opensource/repos/ytsaurus/github_toplevel/yt/go/go.mod",
"yt/go/go.sum":"yt/opensource/repos/ytsaurus/github_toplevel/yt/go/go.sum",
"yt/java/annotations/build.gradle.kts":"",
"yt/java/skiff/build.gradle.kts":"",
"yt/java/type-info/build.gradle.kts":"",
"yt/java/type-info/src/test/resources":"library/cpp/type_info/ut/test-data",
"yt/java/type-info/src/test/resources/README.txt":"library/cpp/type_info/ut/test-data/README.txt",
"yt/java/type-info/src/test/resources/bad-types.txt":"library/cpp/type_info/ut/test-data/bad-types.txt",
"yt/java/type-info/src/test/resources/good-types.txt":"library/cpp/type_info/ut/test-data/good-types.txt",
"yt/java/yson-tree/build.gradle.kts":"",
"yt/java/yson/build.gradle.kts":"",
"yt/java/ytsaurus-client-core/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/cypress-operations-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/dynamic-table-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/map-entity-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/map-reduce-entity-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/map-reduce-ytree-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/map-ytree-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/read-write-entity-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/read-write-ytree-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/reduce-entity-example/build.gradle.kts":"",
"yt/java/ytsaurus-client-examples/reduce-ytree-example/build.gradle.kts":"",
"yt/java/ytsaurus-client/build.gradle.kts":"",
"yt/java/ytsaurus-testlib/build.gradle.kts":"",
"yt/java/ytsaurus-testlib/src/main/proto/build.gradle.kts":"",
"yt/odin/README.md":"yt/opensource/repos/ytsaurus/github_toplevel/yt/odin/README.md",
"yt/odin/requirements.txt":"yt/opensource/repos/ytsaurus/github_toplevel/yt/odin/requirements.txt",
"yt/odin/tests/requirements.txt":"yt/opensource/repos/ytsaurus/github_toplevel/yt/odin/tests/requirements.txt",
"yt/odin/tests/run_tests.sh":"yt/opensource/repos/ytsaurus/github_toplevel/yt/odin/tests/run_tests.sh",
"yt/python/README.md":"yt/opensource/repos/ytsaurus/github_toplevel/yt/python/README.md",
"yt/python/yt/wrapper/tests/pytest.ini":"yt/opensource/repos/ytsaurus/github_toplevel/yt/python/yt/wrapper/tests/pytest.ini",
"yt/systest/CMakeLists.txt":"",
"yt/systest/bin/CMakeLists.txt":"",
"yt/systest/proto/CMakeLists.txt":"",
"yt/systest/unittests/CMakeLists.txt":"",
"yt/yql/CMakeLists.txt":"",
"yt/yql/agent/CMakeLists.txt":"",
"yt/yql/agent/bin/CMakeLists.txt":"",
"yt/yql/agent/unittests/CMakeLists.txt":"",
"yt/yql/plugin/CMakeLists.txt":"",
"yt/yql/plugin/bridge/CMakeLists.txt":"",
"yt/yt/CMakeLists.txt":"",
"yt/yt/benchmarks/CMakeLists.txt":"",
"yt/yt/benchmarks/action_queue/CMakeLists.txt":"",
"yt/yt/benchmarks/bus/CMakeLists.txt":"",
"yt/yt/benchmarks/context_switch/CMakeLists.txt":"",
"yt/yt/benchmarks/exceptions/CMakeLists.txt":"",
"yt/yt/benchmarks/fair_share_action_queue/CMakeLists.txt":"",
"yt/yt/benchmarks/formats/CMakeLists.txt":"",
"yt/yt/benchmarks/insert/CMakeLists.txt":"",
"yt/yt/benchmarks/io/CMakeLists.txt":"",
"yt/yt/benchmarks/io_engine/CMakeLists.txt":"",
"yt/yt/benchmarks/joining_reader/CMakeLists.txt":"",
"yt/yt/benchmarks/logging/CMakeLists.txt":"",
"yt/yt/benchmarks/mpsc_sharded_queue/CMakeLists.txt":"",
"yt/yt/benchmarks/proto/CMakeLists.txt":"",
"yt/yt/benchmarks/queues/CMakeLists.txt":"",
"yt/yt/benchmarks/queues/run/CMakeLists.txt":"",
"yt/yt/benchmarks/rng/CMakeLists.txt":"",
"yt/yt/benchmarks/rpc/CMakeLists.txt":"",
"yt/yt/benchmarks/sendfile/CMakeLists.txt":"",
"yt/yt/benchmarks/skiff/CMakeLists.txt":"",
"yt/yt/benchmarks/versioned_block_format/CMakeLists.txt":"",
"yt/yt/build/CMakeLists.txt":"",
"yt/yt/client/CMakeLists.txt":"",
"yt/yt/client/arrow/CMakeLists.txt":"",
"yt/yt/client/arrow/fbs/CMakeLists.txt":"",
"yt/yt/client/cache/CMakeLists.txt":"",
"yt/yt/client/driver/CMakeLists.txt":"",
"yt/yt/client/federated/CMakeLists.txt":"",
"yt/yt/client/federated/unittests/CMakeLists.txt":"",
"yt/yt/client/formats/CMakeLists.txt":"",
"yt/yt/client/hedging/CMakeLists.txt":"",
"yt/yt/client/hedging/unittests/CMakeLists.txt":"",
"yt/yt/client/query_tracker_client/CMakeLists.txt":"",
"yt/yt/client/table_client/CMakeLists.txt":"",
"yt/yt/client/table_client/unittests/CMakeLists.txt":"",
"yt/yt/client/table_client/unittests/helpers/CMakeLists.txt":"",
"yt/yt/client/unittests/CMakeLists.txt":"",
"yt/yt/client/unittests/mock/CMakeLists.txt":"",
"yt/yt/contrib/CMakeLists.txt":"",
"yt/yt/contrib/cri-api/CMakeLists.txt":"",
"yt/yt/contrib/gogoproto/CMakeLists.txt":"",
"yt/yt/core/CMakeLists.txt":"",
"yt/yt/core/actions/CMakeLists.txt":"",
"yt/yt/core/actions/unittests/CMakeLists.txt":"",
"yt/yt/core/bus/CMakeLists.txt":"",
"yt/yt/core/bus/unittests/CMakeLists.txt":"",
"yt/yt/core/compression/CMakeLists.txt":"",
"yt/yt/core/compression/unittests/CMakeLists.txt":"",
"yt/yt/core/concurrency/CMakeLists.txt":"",
"yt/yt/core/concurrency/unittests/CMakeLists.txt":"",
"yt/yt/core/crypto/CMakeLists.txt":"",
"yt/yt/core/crypto/unittests/CMakeLists.txt":"",
"yt/yt/core/http/CMakeLists.txt":"",
"yt/yt/core/http/mock/CMakeLists.txt":"",
"yt/yt/core/http/unittests/CMakeLists.txt":"",
"yt/yt/core/https/CMakeLists.txt":"",
"yt/yt/core/json/CMakeLists.txt":"",
"yt/yt/core/json/unittests/CMakeLists.txt":"",
"yt/yt/core/logging/CMakeLists.txt":"",
"yt/yt/core/logging/unittests/CMakeLists.txt":"",
"yt/yt/core/misc/CMakeLists.txt":"",
"yt/yt/core/misc/isa_crc64/CMakeLists.txt":"",
"yt/yt/core/misc/isa_crc64/unittests/CMakeLists.txt":"",
"yt/yt/core/misc/isa_crc64/unittests/crc64_reference_test/CMakeLists.txt":"",
"yt/yt/core/misc/unittests/CMakeLists.txt":"",
"yt/yt/core/net/CMakeLists.txt":"",
"yt/yt/core/net/mock/CMakeLists.txt":"",
"yt/yt/core/net/unittests/CMakeLists.txt":"",
"yt/yt/core/profiling/CMakeLists.txt":"",
"yt/yt/core/profiling/unittests/CMakeLists.txt":"",
"yt/yt/core/rpc/CMakeLists.txt":"",
"yt/yt/core/rpc/grpc/CMakeLists.txt":"",
"yt/yt/core/rpc/unittests/CMakeLists.txt":"",
"yt/yt/core/rpc/unittests/allocation_tags/CMakeLists.txt":"",
"yt/yt/core/rpc/unittests/bin/CMakeLists.txt":"",
"yt/yt/core/rpc/unittests/lib/CMakeLists.txt":"",
"yt/yt/core/rpc/unittests/main/CMakeLists.txt":"",
"yt/yt/core/rpc/unittests/mock/CMakeLists.txt":"",
"yt/yt/core/rpc/unittests/shutdown/CMakeLists.txt":"",
"yt/yt/core/service_discovery/CMakeLists.txt":"",
"yt/yt/core/service_discovery/yp/CMakeLists.txt":"",
"yt/yt/core/test_framework/CMakeLists.txt":"",
"yt/yt/core/tracing/CMakeLists.txt":"",
"yt/yt/core/tracing/unittests/CMakeLists.txt":"",
"yt/yt/core/ypath/CMakeLists.txt":"",
"yt/yt/core/ypath/unittests/CMakeLists.txt":"",
"yt/yt/core/yson/CMakeLists.txt":"",
"yt/yt/core/yson/unittests/CMakeLists.txt":"",
"yt/yt/core/ytree/CMakeLists.txt":"",
"yt/yt/core/ytree/unittests/CMakeLists.txt":"",
"yt/yt/experiments/CMakeLists.txt":"",
"yt/yt/experiments/public/CMakeLists.txt":"",
"yt/yt/experiments/public/arithmetic_expression/CMakeLists.txt":"",
"yt/yt/experiments/public/bus_echo_client/CMakeLists.txt":"",
"yt/yt/experiments/public/bus_echo_server/CMakeLists.txt":"",
"yt/yt/experiments/public/check_schema_compatibility/CMakeLists.txt":"",
"yt/yt/experiments/public/chyt_query/CMakeLists.txt":"",
"yt/yt/experiments/public/collect_chunk_statistics/CMakeLists.txt":"",
"yt/yt/experiments/public/columnar_merge/CMakeLists.txt":"",
"yt/yt/experiments/public/concurrent_cache/CMakeLists.txt":"",
"yt/yt/experiments/public/cpp_api_demo/CMakeLists.txt":"",
"yt/yt/experiments/public/crash_handler_test/CMakeLists.txt":"",
"yt/yt/experiments/public/distributed_throttler/CMakeLists.txt":"",
"yt/yt/experiments/public/dns_test/CMakeLists.txt":"",
"yt/yt/experiments/public/dynamic_table_nbd_server/CMakeLists.txt":"",
"yt/yt/experiments/public/footprint/CMakeLists.txt":"",
"yt/yt/experiments/public/formats_test/CMakeLists.txt":"",
"yt/yt/experiments/public/grpc_test/CMakeLists.txt":"",
"yt/yt/experiments/public/gwp_asan_test/CMakeLists.txt":"",
"yt/yt/experiments/public/hydra_stress_test/CMakeLists.txt":"",
"yt/yt/experiments/public/in_memory_nbd_server/CMakeLists.txt":"",
"yt/yt/experiments/public/log_compression/CMakeLists.txt":"",
"yt/yt/experiments/public/log_compression/writer/CMakeLists.txt":"",
"yt/yt/experiments/public/lsm_simulator/CMakeLists.txt":"",
"yt/yt/experiments/public/lsm_simulator/bin/CMakeLists.txt":"",
"yt/yt/experiments/public/lsm_simulator/lib/CMakeLists.txt":"",
"yt/yt/experiments/public/moody_camel_skew/CMakeLists.txt":"",
"yt/yt/experiments/public/per_cpu_workload_model/CMakeLists.txt":"",
"yt/yt/experiments/public/periodic/CMakeLists.txt":"",
"yt/yt/experiments/public/rpc/CMakeLists.txt":"",
"yt/yt/experiments/public/stack_overflow_crash_handler/CMakeLists.txt":"",
"yt/yt/experiments/public/throttler/CMakeLists.txt":"",
"yt/yt/experiments/public/uring/CMakeLists.txt":"",
"yt/yt/experiments/public/value_dictionary_compression/CMakeLists.txt":"",
"yt/yt/experiments/public/ytserver_dummy/CMakeLists.txt":"",
"yt/yt/flow/CMakeLists.txt":"",
"yt/yt/flow/lib/CMakeLists.txt":"",
"yt/yt/flow/lib/client/CMakeLists.txt":"",
"yt/yt/flow/lib/native_client/CMakeLists.txt":"",
"yt/yt/library/CMakeLists.txt":"",
"yt/yt/library/arrow_parquet_adapter/CMakeLists.txt":"",
"yt/yt/library/auth/CMakeLists.txt":"",
"yt/yt/library/auth/unittests/CMakeLists.txt":"",
"yt/yt/library/auth_server/CMakeLists.txt":"",
"yt/yt/library/auth_server/unittests/CMakeLists.txt":"",
"yt/yt/library/backtrace_introspector/CMakeLists.txt":"",
"yt/yt/library/backtrace_introspector/http/CMakeLists.txt":"",
"yt/yt/library/backtrace_introspector/unittests/CMakeLists.txt":"",
"yt/yt/library/clickhouse_discovery/CMakeLists.txt":"",
"yt/yt/library/clickhouse_discovery/unittests/CMakeLists.txt":"",
"yt/yt/library/clickhouse_functions/CMakeLists.txt":"",
"yt/yt/library/codegen/CMakeLists.txt":"",
"yt/yt/library/column_converters/CMakeLists.txt":"",
"yt/yt/library/containers/CMakeLists.txt":"",
"yt/yt/library/containers/cri/CMakeLists.txt":"",
"yt/yt/library/containers/disk_manager/CMakeLists.txt":"",
"yt/yt/library/containers/unittests/CMakeLists.txt":"",
"yt/yt/library/coredumper/CMakeLists.txt":"",
"yt/yt/library/decimal/CMakeLists.txt":"",
"yt/yt/library/decimal/unittests/CMakeLists.txt":"",
"yt/yt/library/dns_over_rpc/CMakeLists.txt":"",
"yt/yt/library/dns_over_rpc/client/CMakeLists.txt":"",
"yt/yt/library/dns_over_rpc/server/CMakeLists.txt":"",
"yt/yt/library/dynamic_config/CMakeLists.txt":"",
"yt/yt/library/erasure/CMakeLists.txt":"",
"yt/yt/library/erasure/impl/CMakeLists.txt":"",
"yt/yt/library/erasure/impl/unittests/CMakeLists.txt":"",
"yt/yt/library/error_skeleton/CMakeLists.txt":"",
"yt/yt/library/error_skeleton/unittests/CMakeLists.txt":"",
"yt/yt/library/formats/CMakeLists.txt":"",
"yt/yt/library/formats/unittests/CMakeLists.txt":"",
"yt/yt/library/gpu/CMakeLists.txt":"",
"yt/yt/library/heavy_schema_validation/CMakeLists.txt":"",
"yt/yt/library/huggingface_client/CMakeLists.txt":"",
"yt/yt/library/monitoring/CMakeLists.txt":"",
"yt/yt/library/named_value/CMakeLists.txt":"",
"yt/yt/library/numeric/CMakeLists.txt":"",
"yt/yt/library/numeric/serialize/CMakeLists.txt":"",
"yt/yt/library/numeric/serialize/unittests/CMakeLists.txt":"",
"yt/yt/library/numeric/unittests/CMakeLists.txt":"",
"yt/yt/library/oom/CMakeLists.txt":"",
"yt/yt/library/oom/unittests/CMakeLists.txt":"",
"yt/yt/library/process/CMakeLists.txt":"",
"yt/yt/library/process/unittests/CMakeLists.txt":"",
"yt/yt/library/profiling/CMakeLists.txt":"",
"yt/yt/library/profiling/example/CMakeLists.txt":"",
"yt/yt/library/profiling/perf/CMakeLists.txt":"",
"yt/yt/library/profiling/resource_tracker/CMakeLists.txt":"",
"yt/yt/library/profiling/sensors_owner/CMakeLists.txt":"",
"yt/yt/library/profiling/sensors_owner/unittests/CMakeLists.txt":"",
"yt/yt/library/profiling/solomon/CMakeLists.txt":"",
"yt/yt/library/profiling/tcmalloc/CMakeLists.txt":"",
"yt/yt/library/profiling/unittests/CMakeLists.txt":"",
"yt/yt/library/profiling/unittests/deps/CMakeLists.txt":"",
"yt/yt/library/program/CMakeLists.txt":"",
"yt/yt/library/quantile_digest/CMakeLists.txt":"",
"yt/yt/library/query/CMakeLists.txt":"",
"yt/yt/library/query/base/CMakeLists.txt":"",
"yt/yt/library/query/engine/CMakeLists.txt":"",
"yt/yt/library/query/engine_api/CMakeLists.txt":"",
"yt/yt/library/query/misc/CMakeLists.txt":"",
"yt/yt/library/query/proto/CMakeLists.txt":"",
"yt/yt/library/query/row_comparer/CMakeLists.txt":"",
"yt/yt/library/query/row_comparer_api/CMakeLists.txt":"",
"yt/yt/library/query/unittests/CMakeLists.txt":"",
"yt/yt/library/query/unittests/udf/CMakeLists.txt":"",
"yt/yt/library/random/CMakeLists.txt":"",
"yt/yt/library/re2/CMakeLists.txt":"",
"yt/yt/library/safe_assert/CMakeLists.txt":"",
"yt/yt/library/skiff_ext/CMakeLists.txt":"",
"yt/yt/library/sparse_coredump/CMakeLists.txt":"",
"yt/yt/library/sparse_coredump/unittests/CMakeLists.txt":"",
"yt/yt/library/syncmap/CMakeLists.txt":"",
"yt/yt/library/syncmap/unittests/CMakeLists.txt":"",
"yt/yt/library/tracing/CMakeLists.txt":"",
"yt/yt/library/tracing/example/CMakeLists.txt":"",
"yt/yt/library/tracing/jaeger/CMakeLists.txt":"",
"yt/yt/library/tracing/unittests/CMakeLists.txt":"",
"yt/yt/library/tvm/CMakeLists.txt":"",
"yt/yt/library/tvm/service/CMakeLists.txt":"",
"yt/yt/library/tvm/service/mock/CMakeLists.txt":"",
"yt/yt/library/undumpable/CMakeLists.txt":"",
"yt/yt/library/undumpable/unittests/CMakeLists.txt":"",
"yt/yt/library/vector_hdrf/CMakeLists.txt":"",
"yt/yt/library/vector_hdrf/unittests/CMakeLists.txt":"",
"yt/yt/library/web_assembly/CMakeLists.txt":"",
"yt/yt/library/web_assembly/api/CMakeLists.txt":"",
"yt/yt/library/web_assembly/engine/CMakeLists.txt":"",
"yt/yt/library/web_assembly/unittests/CMakeLists.txt":"",
"yt/yt/library/xor_filter/CMakeLists.txt":"",
"yt/yt/library/xor_filter/unittests/CMakeLists.txt":"",
"yt/yt/library/ytprof/CMakeLists.txt":"",
"yt/yt/library/ytprof/allocation_tag_profiler/CMakeLists.txt":"",
"yt/yt/library/ytprof/api/CMakeLists.txt":"",
"yt/yt/library/ytprof/http/CMakeLists.txt":"",
"yt/yt/library/ytprof/proto/CMakeLists.txt":"",