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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
|
# File format ($ symbol means the beginning of a line):
#
# $ # this message
# $ # =======================
# $ # comments (all commentaries should starts with some number of spaces and # symbol)
# ${action} {license id} {license text hash}
# $BELONGS ./ya/make/file/relative/path/1/ya.make ./ya/make/2/ya.make
# ${all_file_action} filename
# $ # user commentaries (many lines)
# $ generated description - files with this license, license text... (some number of lines that starts with some number of spaces, do not modify)
# ${action} {license spdx} {license text hash}
# $BELONGS ./ya/make/file/relative/path/3/ya.make
# ${all_file_action} filename
# $ # user commentaries
# $ generated description
# $ ...
#
# You can modify action, all_file_action and add commentaries
# Available actions:
# keep - keep license in contrib and use in credits
# skip - skip license
# remove - remove all files with this license
# rename - save license text/links into licenses texts file, but not store SPDX into LINCENSE macro. You should store correct license id into devtools.license.spdx.txt file
#
# {all file action} records will be generated when license text contains filename that exists on filesystem (in contrib directory)
# We suppose that that files can contain some license info
# Available all file actions:
# FILE_IGNORE - ignore file (do nothing)
# FILE_INCLUDE - include all file data into licenses text file
# =======================
KEEP COPYRIGHT_SERVICE_LABEL 02a6d7053964d22012085134f3cdccc4
BELONGS ya.make
License text:
* Copyright (C) 2007 The Guava Authors
* https://github.com/google/guava
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [49:50]
KEEP COPYRIGHT_SERVICE_LABEL 062cc1aeab0c1abc305964e8124f4115
BELONGS ya.make
License text:
Copyright (c) 2009-present, Homebrew contributors
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [2040:2041]
KEEP COPYRIGHT_SERVICE_LABEL 07bb8632fe90582f097391db4b909913
BELONGS ya.make
License text:
copyright (c) Google inc and (c) The Chromium Authors and licensed under the
Apache 2.0 License or the under the 3-clause BSD license:
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [280:281]
KEEP COPYRIGHT_SERVICE_LABEL 0811f5522217ff18ba6144de0ef16810
BELONGS ya.make
License text:
Copyright (C) 2007-2012 Mozilla Foundation. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [451:451]
KEEP COPYRIGHT_SERVICE_LABEL 0931600c1c6bfc8a8863a63cbdc0aece
BELONGS ya.make
License text:
Copyright 2016 Cloudera Inc.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [512:512]
KEEP COPYRIGHT_SERVICE_LABEL 0e2d962ceecf6f10031d0239dcc354a7
BELONGS ya.make
License text:
Copyright 2013 Sharvil Nanavati
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [208:208]
KEEP COPYRIGHT_SERVICE_LABEL 0f31d80c927e2b616daedd08d5b35078
BELONGS ya.make
License text:
Copyright (c) Austin Appleby (aappleby (AT) gmail)
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [266:266]
KEEP COPYRIGHT_SERVICE_LABEL 1050d39974838d9e4a3ebfa807befa85
BELONGS ya.make
License text:
Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [633:633]
KEEP COPYRIGHT_SERVICE_LABEL 10fa53fe3220c3b3f37695fcb7d52b4e
BELONGS ya.make
License text:
* Copyright (c) Facebook, Inc. and its affiliates.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/ProducerConsumerQueue.h [4:4]
KEEP COPYRIGHT_SERVICE_LABEL 15db7edc412ec75a60118463702bdcef
BELONGS ya.make
License text:
// Copyright 2018 Nemanja Trifunovic
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/utfcpp/cpp11.h [1:1]
KEEP COPYRIGHT_SERVICE_LABEL 16d77374d4f3ba25a3fdfa4958bf4c49
BELONGS ya.make
License text:
Copyright 2006-2011, the V8 project authors. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [720:720]
KEEP COPYRIGHT_SERVICE_LABEL 1d42d552901b54037d78f435b26f76f8
BELONGS ya.make
License text:
Copyright (c) 2009 The Go Authors. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [478:478]
KEEP COPYRIGHT_SERVICE_LABEL 1fe72fe51558c5a41c937c279c752359
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/date.h [6:11]
KEEP COPYRIGHT_SERVICE_LABEL 20fe293eda8f906ba46db857bd55be95
BELONGS ya.make
License text:
// Copyright (c) 2015, 2016 Howard Hinnant
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/tz_private.h [6:6]
KEEP COPYRIGHT_SERVICE_LABEL 21d419b06e057fd073eece04d054aff1
BELONGS ya.make
License text:
// Copyright (c) 2008-2010 Bjoern Hoehrmann <bjoern@hoehrmann.de>
// See http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ for details.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/util/utf8.cc [38:39]
cpp/src/arrow/util/utf8.h [49:50]
KEEP COPYRIGHT_SERVICE_LABEL 247dcc3a30dcbb2f92c97ca04aa03164
BELONGS ya.make
License text:
// Copyright 2017 Asylo authors
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/result.h [2:2]
cpp/src/arrow/result_internal.h [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 25f909dde7cb2b432b9631287a825adb
BELONGS ya.make
License text:
Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1773:1773]
KEEP COPYRIGHT_SERVICE_LABEL 273212e34b861a3a897a3b3d79010d78
BELONGS ya.make
License text:
Copyright 1998 by the Massachusetts Institute of Technology.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1753:1753]
KEEP COPYRIGHT_SERVICE_LABEL 27f6bc2f1161c9b16462f839abb6f97b
BELONGS ya.make
License text:
Copyright (c) 2006-2010, Salvatore Sanfilippo <antirez at gmail dot com>
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [226:227]
KEEP COPYRIGHT_SERVICE_LABEL 292f00c236f0d18782c54ab62a60615b
BELONGS ya.make
License text:
Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi> and contributors
All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1680:1681]
KEEP COPYRIGHT_SERVICE_LABEL 2933b5480b1e6f76da1757c45228a477
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/date.h [6:11]
KEEP COPYRIGHT_SERVICE_LABEL 2cb3334fb125e9233675e041bd4c507c
BELONGS ya.make
License text:
* Copyright (C) 2015 Dato, Inc.
* Copyright (c) 2009 Carnegie Mellon University.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [8:9]
KEEP COPYRIGHT_SERVICE_LABEL 34bd9b473803a867ffb626a6b81fe652
BELONGS ya.make
License text:
Copyright 2015 Microsoft Corporation. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [429:429]
KEEP COPYRIGHT_SERVICE_LABEL 3601729d82d228b2405808f9ac43ab72
BELONGS ya.make
License text:
Copyright 2016-2019 The Apache Software Foundation
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 3e16528bde34bd6e7e3e9019aef6e4d4
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/tz.cpp [3:9]
KEEP COPYRIGHT_SERVICE_LABEL 3e397a76b9105b24df6203017ac369ab
BELONGS ya.make
License text:
* Copyright 2001-2009 Kitware, Inc.
* Copyright 2012-2014 Continuum Analytics, Inc.
* All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [33:35]
KEEP COPYRIGHT_SERVICE_LABEL 4073ab1d76027acaf5947aafb420b63b
BELONGS ya.make
License text:
Copyright (c) 2019 Omer Ozarslan
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [921:921]
KEEP COPYRIGHT_SERVICE_LABEL 409f1a8627df4b24b0b66a8097ad82fe
BELONGS ya.make
License text:
Copyright (c) Copyright 2017 Asylo authors
Homepage: https://asylo.dev/
License: Apache 2.0
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [987:989]
KEEP COPYRIGHT_SERVICE_LABEL 41706d00f08ee9a3fb5061b804d357c7
BELONGS ya.make
License text:
Copyright (C) 2011-12, Dynamic NDArray Developers
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1986:1987]
KEEP COPYRIGHT_SERVICE_LABEL 4664852aafea41007caf9dbfd4517316
BELONGS ya.make
License text:
Copyright (C) 2004-2017 René Nyffenegger
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [2070:2070]
cpp/src/arrow/vendored/base64.cpp [8:8]
KEEP COPYRIGHT_SERVICE_LABEL 48e1382598b24e6c53d47c303b81e500
BELONGS ya.make
License text:
Copyright (c) 2015, 2016, 2017 Howard Hinnant
Copyright (c) 2016 Adrian Colomitchi
Copyright (c) 2017 Florian Dang
Copyright (c) 2017 Paul Thompson
Copyright (c) 2018 Tomasz Kamiński
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [603:607]
cpp/src/arrow/vendored/datetime/date.h [6:11]
KEEP COPYRIGHT_SERVICE_LABEL 4cadc42f09334926b6f64f38fa2e2dad
BELONGS ya.make
License text:
// Copyright (c) 2015, 2016, 2017 Howard Hinnant
// Copyright (c) 2017 Jiangang Zhuang
// Copyright (c) 2017 Aaron Bishop
// Copyright (c) 2017 Tomasz Kamiński
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/tz.h [6:9]
KEEP COPYRIGHT_SERVICE_LABEL 4fddbf6ee8350218a32ae55a42c2095a
BELONGS ya.make
License text:
Copyright: 2013 Daniel Lemire
Home page: http://lemire.me/en/
Project page: https://github.com/lemire/FrameOfReference
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [317:319]
KEEP COPYRIGHT_SERVICE_LABEL 5004d990e89284bd48e9ce9bb40b3a5b
BELONGS ya.make
License text:
Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS
file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1750:1751]
KEEP COPYRIGHT_SERVICE_LABEL 522505e5894778a882702849ee07b13a
BELONGS ya.make
License text:
Copyright 2011, Google Inc.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1551:1552]
KEEP COPYRIGHT_SERVICE_LABEL 55285dfc952ea7b0fc71adc3cb4a7f5e
BELONGS ya.make
License text:
Copyright: 2016 manylinux
Homepage: https://github.com/pypa/manylinux
License: The MIT License (MIT)
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [910:912]
KEEP COPYRIGHT_SERVICE_LABEL 5574984ffce22690a854ba364d6e738c
BELONGS ya.make
License text:
* Copyright (C) 2015 Dato, Inc.
* Copyright (c) 2009 Carnegie Mellon University.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [8:9]
KEEP COPYRIGHT_SERVICE_LABEL 577658687915dc25d90db7aabd6f78df
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/tz.cpp [3:9]
KEEP COPYRIGHT_SERVICE_LABEL 58b7390a1692c4372f7220b3953fc3b1
BELONGS ya.make
License text:
Copyright (c) 2006, Google Inc.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1610:1611]
KEEP COPYRIGHT_SERVICE_LABEL 61d95fdb12eec79e818df0df95667b7f
BELONGS ya.make
License text:
Copyright (c) 2015, 2016, 2017 Howard Hinnant
Copyright (c) 2016 Adrian Colomitchi
Copyright (c) 2017 Florian Dang
Copyright (c) 2017 Paul Thompson
Copyright (c) 2018 Tomasz Kamiński
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [603:607]
cpp/src/arrow/vendored/datetime/date.h [6:11]
KEEP COPYRIGHT_SERVICE_LABEL 6311a72ce758031e9216e6c32d64ca94
BELONGS ya.make
License text:
Copyright (c) 2008, Google Inc.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1644:1645]
KEEP COPYRIGHT_SERVICE_LABEL 64f680c19b2530ac0e770568283d4c61
BELONGS ya.make
License text:
Copyright 2014 gRPC authors.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1278:1278]
KEEP COPYRIGHT_SERVICE_LABEL 6518b015a67ef080ce14d2b770875d6a
BELONGS ya.make
License text:
Copyright 2014 Google Inc.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [411:411]
KEEP COPYRIGHT_SERVICE_LABEL 69abe630ff56f0d38f9b6964427759bd
BELONGS ya.make
License text:
Copyright (c) 2009 The RE2 Authors. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1715:1715]
KEEP COPYRIGHT_SERVICE_LABEL 71679980ec1a2a820b969398da5ac6e9
BELONGS ya.make
License text:
Copyright: 2016 The Apache Software Foundation.
Home page: https://kudu.apache.org/
License: http://www.apache.org/licenses/LICENSE-2.0
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [856:858]
LICENSE.txt [866:869]
LICENSE.txt [878:880]
NOTICE.txt [64:64]
KEEP COPYRIGHT_SERVICE_LABEL 73d3519c7332168c80ee6f17a055e682
BELONGS ya.make
License text:
Copyright 2015 The TensorFlow Authors. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [326:326]
KEEP COPYRIGHT_SERVICE_LABEL 76395c89957476f85264bdbe23f33f34
BELONGS ya.make
License text:
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1867:1868]
KEEP COPYRIGHT_SERVICE_LABEL 794823b7a9a2d577add38be318b8ecd2
BELONGS ya.make
License text:
* Copyright (C) 2017-2018 Dremio Corporation
* https://github.com/dremio/dremio-oss
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [45:46]
KEEP COPYRIGHT_SERVICE_LABEL 797b3d42a4550d9890a46f7c3a368009
BELONGS ya.make
License text:
Copyright (c) 2015, 2016, 2017 Howard Hinnant
Copyright (c) 2016 Adrian Colomitchi
Copyright (c) 2017 Florian Dang
Copyright (c) 2017 Paul Thompson
Copyright (c) 2018 Tomasz Kamiński
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [603:607]
cpp/src/arrow/vendored/datetime/date.h [6:11]
cpp/src/arrow/vendored/datetime/tz.cpp [3:9]
KEEP COPYRIGHT_SERVICE_LABEL 7afe0992310223cc0f62602274d88ef2
BELONGS ya.make
License text:
Copyright 2006-2018 Nemanja Trifunovic
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [826:826]
KEEP COPYRIGHT_SERVICE_LABEL 7b24563929422447294323b01db4537e
BELONGS ya.make
License text:
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1350:1350]
KEEP COPYRIGHT_SERVICE_LABEL 7ddb2995f48012001146c0eb94d23367
BELONGS ya.make
License text:
Copyright 2008 Google Inc. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [997:997]
KEEP COPYRIGHT_SERVICE_LABEL 80d180ebff6dfe994c92db51b74538e3
BELONGS ya.make
License text:
Copyright (c) 2017, Jeroen Ooms and Jim Hester
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [554:554]
KEEP COPYRIGHT_SERVICE_LABEL 827abbffe88aa838015f2ca2d65d6b8f
BELONGS ya.make
License text:
Copyright (c) 2011-2012, Lambda Foundry, Inc. and PyData Development Team
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1944:1945]
KEEP COPYRIGHT_SERVICE_LABEL 82b58372cd9653b3971bc1586f7f201a
BELONGS ya.make
License text:
Copyright (c) 2005-2017, NumPy Developers.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [348:349]
KEEP COPYRIGHT_SERVICE_LABEL 85d1d53ab44f275e0a066b1adcdc8c12
BELONGS ya.make
License text:
Copyright (c) 2019, Jeroen Ooms
License: MIT
Homepage: https://github.com/jeroen/autobrew
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [2030:2032]
KEEP COPYRIGHT_SERVICE_LABEL 88f72d02b992309be51624d56763d01f
BELONGS ya.make
License text:
Copyright (C) 2009-2017 Facebook, Inc. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [452:452]
KEEP COPYRIGHT_SERVICE_LABEL 8a0cc24f130999af25d83e711cbf586c
BELONGS ya.make
License text:
Copyright © 2005-2020 Rich Felker, et al.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [2140:2140]
cpp/src/arrow/vendored/musl/README.md [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 8c61523a557231487f52814509f259b7
BELONGS ya.make
License text:
Copyright (c) 2015, 2016, 2017 Howard Hinnant
Copyright (c) 2016 Adrian Colomitchi
Copyright (c) 2017 Florian Dang
Copyright (c) 2017 Paul Thompson
Copyright (c) 2018 Tomasz Kamiński
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [603:607]
cpp/src/arrow/vendored/datetime/date.h [6:11]
cpp/src/arrow/vendored/datetime/tz.cpp [3:9]
cpp/src/arrow/vendored/datetime/tz.h [6:9]
KEEP COPYRIGHT_SERVICE_LABEL 9033a569e0f045ca74896843f3fbaf0e
BELONGS ya.make
License text:
Copyright (C) 2006 - 2019, The Apache Software Foundation
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1298:1298]
KEEP COPYRIGHT_SERVICE_LABEL 91d7eb03b1bab4692a8e52c6106c79a2
BELONGS ya.make
License text:
// Copyright 2006 Nemanja Trifunovic
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/utfcpp/core.h [1:1]
KEEP COPYRIGHT_SERVICE_LABEL 926366bfdb88ea43ea0d61441d8fe672
BELONGS ya.make
License text:
* Copyright 2000-2019 Kitware, Inc. and Contributors
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [54:54]
KEEP COPYRIGHT_SERVICE_LABEL 93ebab08ca0f174629dd3a2bd9e43bf0
BELONGS ya.make
License text:
Copyright (C) 2007, Weijia Song <songweijia@gmail.com>
Copyright (C) 2007, Sebastian Pipping <sebastian@pipping.org>
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [754:756]
KEEP COPYRIGHT_SERVICE_LABEL 983a6784ef2a68075ca8d485fa869436
BELONGS ya.make
License text:
Copyright (c) 2016 Giles Hall
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [530:530]
KEEP COPYRIGHT_SERVICE_LABEL 9de38fd07e2bf693e375096431eb96c9
BELONGS ya.make
License text:
Copyright (c) 2015, 2016, 2017 Howard Hinnant
Copyright (c) 2016 Adrian Colomitchi
Copyright (c) 2017 Florian Dang
Copyright (c) 2017 Paul Thompson
Copyright (c) 2018 Tomasz Kamiński
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [603:607]
KEEP COPYRIGHT_SERVICE_LABEL 9e088e8c6a2451bfc48e25efee8e403b
BELONGS ya.make
License text:
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [283:283]
KEEP COPYRIGHT_SERVICE_LABEL 9f5495c74f996123d7f0f605b3f5eed8
BELONGS ya.make
License text:
Copyright (c) 2019 Cristian Adam
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [2169:2169]
KEEP COPYRIGHT_SERVICE_LABEL a29ac0accd5113629b2d795bbd9e3021
BELONGS ya.make
License text:
Copyright (c) 2012-2014, Yann Collet
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [687:688]
KEEP COPYRIGHT_SERVICE_LABEL a7f832eb6aedc9f83b4f4cb9a199aaa7
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/tz.cpp [3:9]
cpp/src/arrow/vendored/datetime/tz.h [6:9]
KEEP COPYRIGHT_SERVICE_LABEL a8b2f783ca855aca98dcfec34df9c4c8
BELONGS ya.make
License text:
* Copyright https://code.google.com/p/mman-win32/
* Licensed under the MIT License;
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [24:25]
cpp/src/arrow/io/mman.h [1:1]
KEEP COPYRIGHT_SERVICE_LABEL a93fae665b20c0b437c4ebda06d31480
BELONGS ya.make
License text:
Copyright (C) 2002-2017 Jason Evans <jasone@canonware.com>.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [449:450]
KEEP COPYRIGHT_SERVICE_LABEL a9917a406fd66e1bcbfd16c00848be5f
BELONGS ya.make
License text:
Copyright: Copyright (c) Facebook, Inc. and its affiliates.
Home page: https://github.com/facebook/folly
License: http://www.apache.org/licenses/LICENSE-2.0
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [2132:2134]
KEEP COPYRIGHT_SERVICE_LABEL ab1166231a6e48cec58426cc098e784d
BELONGS ya.make
License text:
Copyright (c) 2008-2011 AQR Capital Management, LLC
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1947:1948]
KEEP COPYRIGHT_SERVICE_LABEL b04931ece9bba8495ad84698ddea074d
BELONGS ya.make
License text:
* Copyright (c) 2011 The LevelDB Authors. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [28:28]
cpp/src/arrow/status.cc [1:1]
cpp/src/arrow/status.h [1:1]
KEEP COPYRIGHT_SERVICE_LABEL b2f5c2275db3e186e0b19e130d37e315
BELONGS ya.make
License text:
// (c) Daniel Lemire 2013
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/util/bpacking_default.h [25:25]
KEEP COPYRIGHT_SERVICE_LABEL b36b93d74ea5379a9e5846b4d61cea25
BELONGS ya.make
License text:
// Copyright 2017-2020 by Martin Moene
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/string_view.hpp [3:3]
KEEP COPYRIGHT_SERVICE_LABEL b517ed8cdd29e8132beffd8df906e313
BELONGS ya.make
License text:
Copyright (c) 2011-2016, Yann Collet
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1383:1384]
KEEP COPYRIGHT_SERVICE_LABEL b65b0b99c25d99c6f1ca36f2d804e399
BELONGS ya.make
License text:
- fireworks.jpeg is Copyright 2013 Steinar H. Gunderson, and
is licensed under the Creative Commons Attribution 3.0 license
(CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1583:1585]
KEEP COPYRIGHT_SERVICE_LABEL b6ae51c2413c2d9ad4e94508305e113c
BELONGS ya.make
License text:
Copyright: Copyright (c) 2013 - 2019, Алексей and Jeroen Ooms.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1931:1932]
KEEP COPYRIGHT_SERVICE_LABEL b80cd91be957408d7700fad9bc3fdcb0
BELONGS ya.make
License text:
* Copyright (c) 2013-2016, Matt Terry and Matthew Brett; all rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [38:38]
KEEP COPYRIGHT_SERVICE_LABEL b9134efde20a92a863fab9b2e2ce26b7
BELONGS ya.make
License text:
Copyright 2013-2019 The Apache Software Foundation
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1321:1321]
NOTICE.txt [78:78]
KEEP COPYRIGHT_SERVICE_LABEL bcd08809ceaa7530b5ef6db2599cfe64
BELONGS ya.make
License text:
Copyright (c) 2009 - 2013 by the mingw-w64 project
Homepage: https://mingw-w64.org
License: Zope Public License (ZPL) Version 2.1.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [977:979]
KEEP COPYRIGHT_SERVICE_LABEL c23e5e5a5fe9683697eb779ab2118e99
BELONGS ya.make
License text:
Copyright (c) 2016 Ray Project (https://github.com/ray-project/ray)
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [580:580]
KEEP COPYRIGHT_SERVICE_LABEL ca11120e252b7a3a248c4559c19ed278
BELONGS ya.make
License text:
* Copyright (c) 2009 Google Inc. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [21:21]
KEEP COPYRIGHT_SERVICE_LABEL cf167f8e5cef47afa68bbcbe684c35e1
BELONGS ya.make
License text:
Copyright: 2009 Google Inc. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [888:888]
LICENSE.txt [899:899]
KEEP COPYRIGHT_SERVICE_LABEL cfd2f1152c535d9145ada194dbe285ca
BELONGS ya.make
License text:
Copyright (c) 2002 JSON.org
All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1493:1494]
LICENSE.txt [1497:1498]
KEEP COPYRIGHT_SERVICE_LABEL d25f00ed0e56feb634e3fb2d253a1e3d
BELONGS ya.make
License text:
Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip.
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1441:1442]
KEEP COPYRIGHT_SERVICE_LABEL d67c1a70cf29dac1d09ca72a6c7427f0
BELONGS ya.make
License text:
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1811:1811]
KEEP COPYRIGHT_SERVICE_LABEL d73f33a516f5e4a9b5ce47f967383cfb
BELONGS ya.make
License text:
This product includes software developed by Hewlett-Packard:
(c) Copyright [2014-2015] Hewlett-Packard Development Company, L.P
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1326:1327]
NOTICE.txt [83:84]
KEEP COPYRIGHT_SERVICE_LABEL d745de277b7b04ad77de282cfd271ac7
BELONGS ya.make
License text:
* Copyright 2001-2009 Kitware, Inc.
* Copyright 2012-2014 Continuum Analytics, Inc.
* All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [33:35]
KEEP COPYRIGHT_SERVICE_LABEL d83fcba4c514234b5ae9a1a5dbb607d5
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/tz.cpp [3:9]
KEEP COPYRIGHT_SERVICE_LABEL dc546ac6f116e23a5572cd498b804b23
BELONGS ya.make
License text:
Copyright (C) 2007, Weijia Song <songweijia@gmail.com>
Copyright (C) 2007, Sebastian Pipping <sebastian@pipping.org>
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [754:756]
KEEP COPYRIGHT_SERVICE_LABEL dd0bfe31829ae2c1fa60fd3e22c73f24
BELONGS ya.make
License text:
// Copyright 2006-2016 Nemanja Trifunovic
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/utfcpp/checked.h [1:1]
KEEP COPYRIGHT_SERVICE_LABEL dfe2a8f2e05441501cfc8ea516f3d1d7
BELONGS ya.make
License text:
Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1412:1412]
KEEP COPYRIGHT_SERVICE_LABEL ea5db1fc81faf6ea90aceaa70afb3122
BELONGS ya.make
License text:
Copyright: 2012 Cloudera, Inc.
Copyright: 2016 The Apache Software Foundation.
Home page: http://impala.apache.org/
License: http://www.apache.org/licenses/LICENSE-2.0
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [866:869]
KEEP COPYRIGHT_SERVICE_LABEL ebed53083d3648d028f650e9586bc9b7
BELONGS ya.make
License text:
Copyright 2014-2019 Melissa O'Neill <oneill@pcg-random.org>,
and the PCG Project contributors.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [2230:2231]
KEEP COPYRIGHT_SERVICE_LABEL ebf8b3c45e9ca079f817c3cdef8c1163
BELONGS ya.make
License text:
* Copyright (c) 2015 Cloudera, Inc.
* https://github.com/cloudera/ibis
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
NOTICE.txt [41:42]
KEEP COPYRIGHT_SERVICE_LABEL ee1a81d2156d549bf4ffe7a463a2ac3d
BELONGS ya.make
License text:
Copyright (c) 2015-2018, conda-forge
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [794:795]
KEEP COPYRIGHT_SERVICE_LABEL efae35a17378bd3ac9d39d5158cb9b5a
BELONGS ya.make
License text:
// Copyright (c) 2016 Alexander Kormanovsky
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/ios.h [7:7]
cpp/src/arrow/vendored/datetime/ios.mm [4:4]
cpp/src/arrow/vendored/datetime/tz.cpp [3:9]
KEEP COPYRIGHT_SERVICE_LABEL f556407274c01ef8e47714e8cc0bc9f8
BELONGS ya.make
License text:
Copyright (c) 2006-2013 Alexander Chemeris
All rights reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [1462:1463]
KEEP COPYRIGHT_SERVICE_LABEL f71a2e2c00355121db396b1494969cf6
BELONGS ya.make
License text:
// Copyright (c) 2015, 2016, 2017 Howard Hinnant
// Copyright (c) 2017 Jiangang Zhuang
// Copyright (c) 2017 Aaron Bishop
// Copyright (c) 2017 Tomasz Kamiński
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cpp/src/arrow/vendored/datetime/tz.h [6:9]
KEEP COPYRIGHT_SERVICE_LABEL f8f2f9c153298daeb47b474093662695
BELONGS ya.make
License text:
Copyright 2019 RStudio, Inc.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.txt [948:948]
|