-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsim_scores_limit_feature_07042021.txt
5201 lines (5201 loc) · 600 KB
/
sim_scores_limit_feature_07042021.txt
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
3644 https://github.com/bcgit/bc-java/commit/df0ef076d9ddb064b76e135a9b9d512634680c6b 59939 0.6072721682525597
1053 https://github.com/google/gson/commit/1103bda23acb1719364e834a4545739ec2f76cd0 233637 0.47994332616792057
1735 https://github.com/jenkinsci/jenkins/commit/9522c60f78c67b7a6e5878e04d5f24b29eea657d 217231 0.6252648791236007
4895 https://github.com/apache/jackrabbit/commit/a8ea71aaac37f0617a76a806c4aa4eaca480da1a 50913 0.5591006508255566
3122 https://github.com/cloudfoundry/uaa/commit/6972c263b5c4f6f1a7bab44cf605748413f0b98b 220063 0.6158189734616474
4881 https://github.com/apache/jackrabbit/commit/fabc1050567f8f8591d8450daeb182cbb83e6abf 130621 0.532175698266331
2228 https://github.com/apache/tomcat/commit/46f75c119d710c7a7530bd91319693b97629519f 69406 0.6801337033670737
3136 https://github.com/cloudfoundry/uaa/commit/2d373610f4e53e247ed658cfde536eb1a63832e6 100502 0.787729534644538
1721 https://github.com/jenkinsci/jenkins/commit/3022cf7f35b46789a78104e6eef9edd56e735b10 283099 0.8670251797675376
1047 https://github.com/apache/camel/commit/d853853469292cd54fd9662c3605030ab5a9566b 85435 0.7524612523315081
3650 https://github.com/bcgit/bc-java/commit/53940070854342a0eb25625bad571dae85751735 95363 0.6427416023678977
5221 https://github.com/apache/ofbiz/commit/c64d44ef8fc64a5e6610c03a383e70d10f3adbdf 147929 0.9692604796427402
6700 https://github.com/weld/core/commit/7d98bcf5a476287aae000ebb4ba89f9e54ec3c72 18960 0.832681805940942
3678 https://github.com/bcgit/bc-java/commit/f2ae4f6db13de434ed5d3503e67b9d4ba87f9398 112204 0.5283881705051543
2566 https://github.com/apache/tomcat/commit/5c9d85cc5364510f5453127295604072abddc04d 230406 0.5419551395300084
2200 https://github.com/apache/tomcat/commit/d82e80ec61ec5fa7bbefbe30f48bc8faea46bdfb 248988 0.668287340910763
1709 https://github.com/jenkinsci/jenkins/commit/8037908f596fbc4126c1b67c9dad6781c39f076e 166039 0.7377470509213061
6066 https://github.com/opennetworkinglab/onos/commit/db0d03fe512fc6c39fe5deda4f5ec4a117a4028c 65057 0.627372906751796
289 https://github.com/narkisr/nmap4j/commit/06b58aa3345d2f977553685a026b93e61f0c491e 61285 0.5730582923559627
2214 https://github.com/apache/tomcat/commit/1b15310784b747a53245cf85433874e26416a185 285362 0.46075441198343337
4103 https://github.com/apache/cxf/commit/7068e868cc9c00b144efda2b8652385ef4032be3 215297 0.8663699993100632
2572 https://github.com/apache/tomcat/commit/e991a6ead1235f6fcd7bc31b95fbe052b9343a1c 26136 0.49174505157918014
6927 https://github.com/apache/directory-ldap-api/commit/67a8e38c92934200ab889a353dad973a32f25ce8 211694 0.42172953888463693
1090 https://github.com/spring-projects/spring-amqp/commit/6e9e00bb5bf0aa88444146db3c2eae138cc7b0a 230067 0.6046700234053205
2599 https://github.com/apache/tomcat/commit/9cb59d02fd30508f09bac9092bf1e7013ddc2f9d 90313 0.4893475134724063
3687 https://github.com/FasterXML/jackson-databind/commit/1e575d6e7fcdeee9bab88d0c1930627ad28c84bf 175899 0.8245362254398497
5590 https://github.com/apache/commons-fileupload/commit/2b2aa182598d2227bbd83b94c6835a9df05465d9 76704 1.0
262 https://github.com/spring-projects/spring-framework/commit/c8649087792d07df209fc75e0f9e2e3284e09fe 278512 0.48346085277188683
6099 https://github.com/swagger-api/swagger-codegen/commit/b688a7f443113fc1ea14ca0e033847ca04db55d5 225521 0.5629194162509855
276 https://github.com/apache/tomcat/commit/0569aa6a01a74d51b93fd0027288358825fc03d5 215901 0.6360355461186346
5584 https://github.com/apache/commons-fileupload/commit/de63f42a27de967e0a302d9fcebc0b64d72832be 244438 0.5995988405693476
3693 https://github.com/FasterXML/jackson-databind/commit/d75f2e7976d1ee5e3088ba87440ba25feec304b1 260723 0.5255616962592919
510 https://github.com/apache/tika/commit/e82c2efd2b1ac731b6954634741b70ecf0ed6f01 205204 0.9522069865247798
3863 https://github.com/apache/struts/commit/f20570a470d3d1d6e3c5c26437d1b7b4031fc81f 135584 0.7275662836858481
1912 https://github.com/apache/tomcat/commit/5ccbc59f1823af22338f0efd9da32abe6f1919df 177395 0.6572228878428148
1906 https://github.com/apache/tomcat/commit/132e68bf4076a254dd96af9d93897924485a984c 219531 0.5874655446545033
3877 https://github.com/apache/struts/commit/cee2b773b1f612e1f0e53889bb28d3371bcda9f1 135614 0.7686905705156157
5989 https://github.com/vert-x3/vertx-web/commit/767f5b1b151892777140e4f39604800d44ec3834 82030 0.8172482771196503
5751 https://github.com/apache/tika/commit/841ede4a2e4fe65d57b84804843977db087f0417 113379 0.7257748286888068
6258 https://github.com/apereo/java-cas-client/commit/a5a7d3079175f9f19d5b163c5fde36bc5c717290 202501 0.7874337773380989
7146 https://github.com/apache/cassandra/commit/c9bbba13f5aacbd874e7d8731bdfc389c834f708 157801 0.5678726096923961
5037 https://github.com/spring-projects/spring-security/commit/57aee4e6056238af65ef51a52bbbe72ca4e2cb83 264400 0.7956515081899962
2758 https://github.com/apache/tomcat55/commit/6b1b6f7c8222075a9568e45d71ef919c9abca688 66161 0.3938983053288639
3446 https://github.com/spring-projects/spring-framework/commit/d9a4fb410d6608260a597b1d72b9153c585caa5d 87569 0.5047109004646435
2980 https://github.com/cloudfoundry/uaa/commit/64fa07b35b5b4eafd1dab87b368460167889b420 283110 0.7117941269049227
4329 https://github.com/sebfz1/wicket-jquery-ui/commit/928fefe1efad81097bfb3706dd0d865511d44580 8852 0.6019955171826973
5023 https://github.com/spring-projects/spring-security/commit/e398922f85ff0deeb91f4372860aae8fd59371e0 26130 0.9194664196955521
3452 https://github.com/apache/tomcat80/commit/94412439ea34e5cc201acd3f1477f56d2ff0c9dc 19446 0.47924241991897343
2994 https://github.com/cloudfoundry/uaa/commit/723b5d8b26cf16d8832fa46c35215a06945b269e 198919 0.3671926097023339
1245 https://github.com/apache/nifi/commit/28067a29fd13cdf8e21b440fc65c6dd67872522f 184457 0.7694383018983632
1523 https://github.com/apache/camel/commit/14c7eeff31c45cabb2fa4a7ad180ab7ea0579bdc 85402 0.8554940776039888
3334 https://github.com/spring-projects/spring-framework/commit/7f8966774e2096b9ddd55ee931643b48bfc30218 219934 0.5918982263717708
6264 https://github.com/seam2/jboss-seam/commit/e80f0eecbf235cbd05fc233d843b3512efb40f02 190971 0.7908689343849199
2002 https://github.com/apache/tomcat/commit/28d79f56c376a871c77397e1aa1b86aeb0366fdf 8460 0.5909156564748093
2764 https://github.com/apache/tomcat55/commit/bcb78c338548269ae7baa64cbc4dbb5ff15cc2a9 90313 0.5134828979272749
4315 https://github.com/apache/poi/commit/cef16bab946f425397b3513f6254dff3437f31af 255608 0.5403011335508575
921 https://github.com/apache/hadoop/commit/6d7d192e4799b51931e55217e02baec14d49607 135621 0.6283251752347486
6502 https://github.com/undertow-io/undertow/commit/2aa810c0be2f70a6002c141c98b71e5c51ddf71a 110593 0.7919129057159594
935 https://github.com/apache/tomcat/commit/516bda676ac8d0284da3e0295a7df70391315360 236954 0.4095250065826338
6516 https://github.com/undertow-io/undertow/commit/6c85933dd027aeb991dd1c90604f398ea2a9a405 37156 0.5960609437654388
2770 https://github.com/apache/tomcat55/commit/b708642f991018f0e252a3f2505b8722cfe53b06 41068 0.7607337220235724
4301 https://github.com/apache/poi/commit/a0770034fcc878a697b715d0b6a6e53406b2d02d 261178 0.41717801991360987
3308 https://github.com/spring-projects/spring-framework/commit/dda9762072bd4e1ceda3736740d25bb78de49f38 179376 0.565097865858648
2016 https://github.com/apache/tomcat/commit/fcc7bfa4e48eacb6ae46560806720a083ba580c8 192490 0.6685733036531416
5779 https://github.com/apache/santuario-java/commit/ed4368e30279bbcf303afcf464b833d63cb2dcec 2608 0.5571992669202229
6270 https://github.com/cloudfoundry-incubator/credhub/commit/7f57be81a75adbbd41b5511d690296f9b0539bb9 134128 0.6671962277803599
7185 https://github.com/dom4j/dom4j/commit/a9da11b1fcb3d0b3497e717272d5dd80119394ba 175449 0.7070592567388121
5792 https://github.com/apache/santuario-java/commit/c434a8ab4b56859875e5678c53caa2dc427cb776 232116 0.63028798766402
3485 https://github.com/apache/tomcat80/commit/46d8a72c6f30bba504061a27ef7e726f02f33ae0 95885 0.7339450436595052
2943 https://github.com/cloudfoundry/uaa/commit/d5f0c5e716784df7155c162b740f89202fca23ca 266965 0.8238214030671523
1292 https://github.com/pingidentity/ldapsdk/commit/58bff1a491ac4bbad74babc0f3d7ccebd50c99b7 157402 0.6779529019843614
706 https://github.com/apache/lucene-solr/commit/e3b0cfff396a7f92a4f621d598780116da916f3 176425 0.49120203098518483
712 https://github.com/apache/tomcat/commit/233dcc857e0faf8bc94325be5fb287aa70ee944f 60974 0.5669796757978551
3491 https://github.com/apache/tomcat80/commit/ef26e7f3a6ebb306bccd872640b8e2bf821ff8e5 261237 0.5931872551797579
2957 https://github.com/cloudfoundry/uaa/commit/c340cc8968cedfb8e32cccc8190f391511070b49 196484 0.6714257046313787
5786 https://github.com/apache/santuario-java/commit/99283c44de57a6ae69444e7ebcebe6f0f9e01f00 2651 0.631910391026491
7191 https://github.com/jenkinsci/mercurial-plugin/commit/52020689f64fc7c361c7e82302425b69b1db1ef1 120275 0.6834387791709752
5976 https://github.com/vert-x3/vertx-web/commit/c3f78f0d30c29854faaf0481a89d8219cf7a6602 202501 0.7121062120858003
5962 https://github.com/looly/hutool/commit/995bacc253918422a6fc3e5dc3bdb2e6e71ad7e6 17403 0.40843509229077707
3254 https://github.com/spring-projects/spring-framework/commit/0f54f686b26c9a49c83ed775166ad9a10b0990cc 260620 0.5741168943401362
7032 https://github.com/OpenTSDB/opentsdb/commit/2f57c91c665bcd510d4405bae03f51ae9551ccf0 4165 0.6839137287362341
29 https://github.com/sebfz1/wicket-jquery-ui/commit/3e8cfdcb0f8e6e0cf0da01e74501afb5c9bff0f 68242 0.711212031674405
869 https://github.com/apache/struts/commit/0d6442bab5b44d93c4c2e63c5335f0a331333b9 124377 0.6772208483467617
3532 https://github.com/apache/tomcat80/commit/81b2359a0d050fb8a79cdd0d075a26bcd84dd0c6 13995 0.4490042832111433
4249 https://github.com/hibernate/hibernate-validator/commit/6476b053916891cdf0df21fab85bbc8f3b669a09 176287 0.8053320733217151
3526 https://github.com/apache/tomcat80/commit/def73217f28700356c952d79e29ee5598cdf1535 44833 0.43614782445081485
2638 https://github.com/apache/tomcat/commit/b5877c2e420b792a583bc54826726594094b7f00 58023 0.4778636763859138
5157 https://github.com/apache/ofbiz/commit/1f4577abe9e280179dd8df3ecc4367922de84e8a 35772 0.6384053356648389
7026 https://github.com/umlet/umlet/commit/7555be52356775715fbd65434eabec8570a6932d 253223 0.5130531266007826
6338 https://github.com/rhuss/jolokia/commit/88b0888b9613e74c97ce32260dd627eb462f8cf0 141456 0.7983983271531261
3240 https://github.com/spring-projects/spring-framework/commit/0113ea91a3ba17dadab7d6321feb0dcf2d31ba99 84522 0.6751104041609459
6310 https://github.com/jenkinsci/git-plugin/commit/f9cfcb27e1df8f4b547b60ca03af5a1b9ae0c0c8 241430 0.7273328974986802
2176 https://github.com/apache/tomcat/commit/c53dc951c8b35590e436b2590431645dc33d9c0b 35518 0.5636664088251071
4507 https://github.com/apache/activemq/commit/257a4fa416ec2b5ad757d78c71504830ced70963 79212 0.5919595517272234
4261 https://github.com/apache/poi/commit/00b59a229a2263548542c646883440b85a4aca7e 234950 0.5718181435172403
2610 https://github.com/apache/tomcat/commit/9978adda9a337d15d1f64c460d95115dea918ff4 216850 0.6078617422349097
15 https://github.com/bcgit/bc-java/commit/843c2e60f67d71faf81d236f448ebbe56c62c647 179694 0.5314291454626753
1319 https://github.com/apache/camel/commit/112e5ecc543e61ad643dbe2c0438fe17626fd329 26130 0.9237255360928258
6462 https://github.com/kiegroup/jbpm-designer/commit/018f7eaf565de3ea3d0f8934050f4397fcac7b0b 48736 0.5157707227571214
841 https://github.com/apache/hadoop/commit/bbe3b0857d383c5e4dc4a7ade90a88a3e24338b 83991 0.590790601488217
4275 https://github.com/apache/poi/commit/996c2d53ab2bd20a8de1364d2cf87b1e95e9b013 255599 0.6436620210516887
2604 https://github.com/apache/tomcat/commit/b248604987681e0c9b1a8e36217624e8560f1c02 102363 0.4989389909384797
2162 https://github.com/apache/tomcat/commit/ec1974a45da9e234ce634d051162d5223d759d59 247346 0.5073664265757325
6304 https://github.com/spring-projects/spring-data-commons/commit/f6348a1bbec42bbae0a1027e272707103e4871ce 115113 0.5171484048167121
3297 https://github.com/spring-projects/spring-framework/commit/1815a6a7ebafb184b1f08de6245898b19de19c6a 202134 0.5207716999064307
2189 https://github.com/apache/tomcat/commit/1e78b48c82dd393f07e33a9c1bf9c10bdbb93573 122121 0.6482724472091382
5180 https://github.com/apache/ofbiz/commit/c84e3787251f3b269492a22dde87c539758807b2 35779 0.5679282895414395
6489 https://github.com/jenkinsci/pipeline-build-step-plugin/commit/4512e19480a513959c621b2ff3b0d180c8f484a5 154084 0.5843222388855313
672 https://github.com/jenkinsci/jenkins/commit/ef9583a24abc4de157e1570cb32d7a273d327f36 157125 0.7554898085861632
5194 https://github.com/apache/ofbiz/commit/f2e86c005d9ac89234e9fb8ce2e4f23b3500a077 65973 0.7474061803930246
3283 https://github.com/spring-projects/spring-framework/commit/cc379f1cc74124974d9261f94371da51433ffc15 179380 0.7012443975060428
100 https://github.com/apache/santuario-java/commit/a09b9042f7759d094f2d49f40fc7bcf145164b25 2636 0.584679798400868
5802 https://github.com/BigBadaboom/androidsvg/commit/b9416302a9cd03f5259070c7dd31932c1a649755 232543 0.9263011893372117
896 https://github.com/sebfz1/wicket-jquery-ui/commit/9f082950a276c8948a4078c2438e284a948ba15 90519 0.6119534812068849
882 https://github.com/apache/ofbiz/commit/ea604f84e4a21fe081d66bbdab454b1e8a7d09b3 257943 0.6496795459443585
5816 https://github.com/apache/lucene-solr/commit/a0bf23d762c7ac351a5f810c08699a787fb3d4e7 154970 0.7599705719305481
5341 https://github.com/eclipse/jetty.project/commit/84bc74754d800067fa78192231f59e931a0a92b5 64145 0.651851669901929
6890 https://github.com/jenkinsci/subversion-plugin/commit/b36b95a96b6c7e2ee3917c68247aedb0b7d5c8d6 249324 0.6623257386468502
6648 https://github.com/apache/storm/commit/f6915d45a61593f95bf779558a32f807d583932c 236916 0.5471023262348909
1899 https://github.com/apache/tomcat/commit/d5bbff4fbdfdc66ca6a2469e9ec09935ad45249b 191865 0.5682345302281324
7230 https://github.com/jenkinsci/saltstack-plugin/commit/980fca0529a3529035d4a4f75d7628ac297c27aa 166398 0.5912020025577014
4739 https://github.com/apache/commons-compress/commit/8ba08d8e1345b6db253ee305f9270b6fadd66779 53254 0.39778201904520555
3056 https://github.com/cloudfoundry/uaa/commit/aba342d0705b4a9ead0475f27dd89ec9b749a8bc 27243 0.6833250184525059
2348 https://github.com/apache/tomcat/commit/0ea4c7cb5b91cc8ad0ab9ee16fad676d5cad48de 41068 0.640660755747776
5427 https://github.com/apache/cxf-fediz/commit/61ebc3aa518b834202abd129235bf015b3caf08a 166290 0.4912244076502824
3042 https://github.com/cloudfoundry/uaa/commit/bca3371a3a7c79fe1c1f4b490efbc3a64a699bbd 117502 0.5092677495198205
5433 https://github.com/apache/cxf-fediz/commit/1f42f03a41915866d481ecc7fcefab9900f1b8a0 100840 0.5580875657675922
7224 https://github.com/jeremylong/DependencyCheck/commit/2f6e40f12331b6727844fe95691b2c986d83effe 76704 0.581172263832912
6884 https://github.com/apache/cayenne/commit/6759faa4e85e4e1f4c45318535052708eff057b5 255781 0.686412012908502
1133 https://github.com/apache/tomcat/commit/ce70ee6b8fe437a498a375215011056702b0c481 167490 0.48435923827249133
5355 https://github.com/spring-projects/spring-security-oauth/commit/bcdedc4187ba3dfadff0ba8ebcbfac92680e0738 145863 0.6970139249887244
3724 https://github.com/FasterXML/jackson-databind/commit/0b887a0dfdeb4c4d3dfeff2807f7ed0920c0e6f7 76704 0.809184575843265
6674 https://github.com/apache/storm/commit/34b1373d4a621ea0b9a18598a800c566e9fc25be 147277 0.8670256438849854
2412 https://github.com/apache/tomcat/commit/4372a43deb13381f99d7c9df2300056f6e6414fe 13949 0.636168826793767
4063 https://github.com/apache/cxf/commit/58c18e9d7fd0638d41820df12927c1444a6b50e4 83361 0.577669260105679
2374 https://github.com/apache/tomcat/commit/7429e94291e3036fe571fe8594830d654f3d76d0 232361 0.6904975335810897
6106 https://github.com/swagger-api/swagger-codegen/commit/89e150cfb295584bf80fc372fd29904e5c87d135 91770 1.0000000000000002
1669 https://github.com/jenkinsci/jenkins/commit/1ac4872ecdc500c63c0dbfce5e4beb5ce78369e5 94365 0.6378296426912007
7218 https://github.com/junrar/junrar/commit/b218bb973ae2ddbb59cae7ba7558b7accab70091 267262 0.6257607467856701
2360 https://github.com/apache/tomcat/commit/be191d8ad87c8075352566f190108bbb5c83a6f2 212298 0.8877074600187966
5369 https://github.com/spring-projects/spring-security-oauth/commit/95bb899d74fde987e210ab85dde29bb9d5c47040 206276 0.5824839352632452
2406 https://github.com/apache/tomcat/commit/5ce6d78c5661ddabed8012a3783901549674add7 41596 0.5216310300067201
3718 https://github.com/FasterXML/jackson-databind/commit/dcab085ffd8afbe401d27e90a0416535a1df2338 33800 1.0
4077 https://github.com/apache/cxf/commit/26991ec3deef801e452ac6ad0a65dee86d889419 212872 0.5958809477703665
470 https://github.com/spring-projects/spring-framework/commit/dac97f1b7dac3e70ff603fb6fc9f205b95dd6b01 216165 0.6381293739639745
6853 https://github.com/netty/netty/commit/e50a736c29c6af71d59a14465f985f991b6e557d 127302 0.6183671559948367
5382 https://github.com/spring-projects/spring-security-oauth/commit/befb023a5cd7ce6e4ee16c1eeab414895d01ab92 264370 0.5331038342436085
3095 https://github.com/cloudfoundry/uaa/commit/3e4df921889590e54e2c7c3ab7ace511e0f6f205 69186 0.6952246072110289
316 https://github.com/apache/tomcat/commit/cf181edc9a8c239cde704cffc3c503425bdcae2b 117825 0.5721497024346148
1696 https://github.com/jenkinsci/jenkins/commit/773d1078716b2f5b7dd013950ce2bdf49dab31fd 250492 0.6401735685672756
302 https://github.com/apache/tomcat80/commit/c39b7ffc2145644f7f3cf9e3cd4aada5048e56a0 255633 0.4697850883173908
4936 https://github.com/x-stream/xstream/commit/734caa8ce1def43677abd9b43a32b0176dfd4eb5 148265 0.7118249997834442
3081 https://github.com/cloudfoundry/uaa/commit/0add6d4b087ba3f1f64bc678088788cea0650203 10505 0.6606730496126196
4088 https://github.com/apache/cxf/commit/c71a4053ad5e82eb0c7183f02ac6bd861353cc54 121332 0.7718629027808583
464 https://github.com/apache/tomcat/commit/890a2f681ed2f3461b27983d7da9737375ff2ae4 282256 0.5298309085497892
6847 https://github.com/netty/netty/commit/4a45d23129e990bc7b13dd37df9a119d35e1e299 64340 0.5792732335190536
1866 https://github.com/apache/tomcat/commit/a6e099471e861608ee9238c187db3aff0c93aa3d 218731 0.5451366277406823
1872 https://github.com/apache/tomcat/commit/d028f33f908f3600ccdd68da29db6cb4fc50b244 202459 0.579217335909002
3903 https://github.com/apache/struts/commit/bdbe0bf7f95b452448f3e2554866b23d8948dddb 280513 0.6477871033059043
1873 https://github.com/apache/tomcat/commit/7a2232c619677d849c67bbe1cc60eda2c90def3e 60974 0.5070886606092458
459 https://github.com/apache/cxf/commit/1be97cb1 54440 0.47304992908946575
1867 https://github.com/apache/tomcat/commit/ffb1db7af766e2ebfffb341eb2d0327ee26c2e3e 135083 0.8176266220514613
3080 https://github.com/cloudfoundry/uaa/commit/526e9aabca98cd849dabe0139dccb981517d586e 283094 0.5500622132124968
4937 https://github.com/x-stream/xstream/commit/336d0316d5e485b6ec3eaed5585c522c7cbb62f6 3531 0.6193156202636619
1697 https://github.com/jenkinsci/jenkins/commit/61e4f6f55271d3687d29dee410253123d851ea73 9216 0.5366244927988345
6846 https://github.com/netty/netty/commit/4e989e20d4c12ce08b00aca4610e72ac3cf84cbe 52477 1.0
465 https://github.com/apache/openjpa/commit/ad5cd6fb86af8809b367f709b6e041218055de2f 142043 0.5169799783041374
5397 https://github.com/apache/cxf-fediz/commit/84e7f6edc07cbe344c82f2a375b44e1581f8af81 143987 0.7457224415169303
5383 https://github.com/spring-projects/spring-security-oauth/commit/03acafcfe06cd50c65dcc71cae6ab96058e80e90 26130 0.9060473771291453
6852 https://github.com/netty/netty/commit/80d30c3dd81a4409a3abaf04d7bff0525d4ad166 137080 0.682099580802288
471 https://github.com/apache/tomcat55/commit/863d77c7d321245de019ac32252828e0a025c5b4 199133 0.5411638196443734
1683 https://github.com/jenkinsci/jenkins/commit/b578b67f8c2e161c2bf5d3663a538833958f3d09 263085 0.69114516304322
317 https://github.com/apache/tomcat/commit/5ea5171b735ab0c636850e23e154fc957b0ab39d 101714 0.7408597583181187
3094 https://github.com/cloudfoundry/uaa/commit/1fffc691af72cac5f8a17bb2cb9ad411f9ef92c2 116018 0.48369731041931063
2361 https://github.com/apache/tomcat/commit/d43b59c1a5466f2e2beb8b4d304ff0303257a486 113718 0.5412132397199039
7219 https://github.com/junrar/junrar/commit/b721589640bdbf142b5e2daebe5fc0d5c8fab388 54334 0.6031311391136042
6107 https://github.com/swagger-api/swagger-codegen/commit/899af7a5fac5453954c6b6a1357e3d11c3c9a399 68889 0.8704983581651373
4076 https://github.com/apache/cxf/commit/779df5bd191188f02fe4956441194e4ad7309bbd 157020 0.8355290555623703
2407 https://github.com/apache/tomcat/commit/1ed1a6a90525e9acd772c1b64a2b7d1657c4a990 101173 0.4975641094592745
5368 https://github.com/spring-projects/spring-security-oauth/commit/c13b9ede3f485b68fd0040a32234aff929c49dcf 236892 0.44718162330849076
4062 https://github.com/apache/cxf/commit/8eaee76e2872077273b629cbdedb88a2deee0d89 156235 0.5469686335755518
2413 https://github.com/apache/tomcat/commit/cb4e89d3fb9667638c8019fb47b4c5775d64e298 22885 0.7573291463081004
6675 https://github.com/apache/storm/commit/235d6e785e21888cd258e2d120e997647c2d3320 141336 0.5727014337022611
2375 https://github.com/apache/tomcat/commit/3aa603feff0db55f97fc14644eaefef26ea294ca 193988 0.812515112629948
7225 https://github.com/jeremylong/DependencyCheck/commit/275d1bdbf9e92e5a3c680a777b540388ec00fe9a 240160 0.5538494069089642
1654 https://github.com/apache/camel/commit/ed53b9018226f8e4432b431a59f0e8e45e60c20d 203383 0.6258473563465802
5432 https://github.com/apache/cxf-fediz/commit/6cf386c5f0fc0cb67e92541b5979698e351f0cca 81308 0.6117580631286043
3043 https://github.com/cloudfoundry/uaa/commit/2a5ea411713edbb021de6041fc6f65e3b697e4ee 52900 0.6099130562872223
3725 https://github.com/FasterXML/jackson-databind/commit/3de2de0d97d8edd87ec3d4311dd174a7f3aa58c3 7530 0.7822276640031139
5354 https://github.com/spring-projects/spring-security-oauth/commit/16a40ae98cfc211502ffaabb86b59e1e0a597069 202273 0.6488873740520936
6885 https://github.com/apache/cayenne/commit/1bd07c05e566aadf2089f39fc87c726b64d5d67d 19104 0.4966890202468781
1126 https://github.com/apache/camel/commit/24eefa559fe6b310629d2bf00663d2679ec81b9 191637 0.8076675261468369
6891 https://github.com/jenkinsci/subversion-plugin/commit/aa6210d2d3aeee513728b20dc2fac9ef34b52f4a 180517 0.599968203812765
5340 https://github.com/eclipse/jetty.project/commit/60f409e4fff79df88f331d3fa0e16438636ede72 249005 0.6628199546300918
5426 https://github.com/apache/cxf-fediz/commit/f49b28e67dfc12943442fa0ed67528c488ad8ef5 4436 1.0
2349 https://github.com/apache/tomcat/commit/b81d25f98a45043728ed53b7aa3cb2c381d6ab9e 212298 0.5673520319163832
3057 https://github.com/cloudfoundry/uaa/commit/586f2ab51137bddaf37129cf7f9d3d2e0c3d79cd 27243 0.7746543417056806
4738 https://github.com/apache/commons-compress/commit/ac525fed0064649fc02796e291b58d52e7c0b15d 277373 0.5507301784810741
1898 https://github.com/apache/tomcat/commit/7d7f75734b3d2bce3eed0c4d7bfd8c811fea009a 22992 0.5249144018442556
883 https://github.com/sebfz1/wicket-jquery-ui/commit/82d81bf704bef90b42f62aecbcc7e8c460814b6 68242 0.711212031674405
129 https://github.com/apache/cordova-plugin-file-transfer/commit/8fcdb1aa3deb892691b44bdf57e8d780da09e2a4 30426 0.7395148720222946
5803 https://github.com/BigBadaboom/androidsvg/commit/566ad9dc4a9787ca1c7982c203509805b41121ef 165770 0.7688457314391562
2822 https://github.com/apache/spark/commit/5231cd5acaae69d735ba3209531705cc222f3cfb 265628 0.6048569935728628
5195 https://github.com/apache/ofbiz/commit/1171dcddb0e859ba2e0ecbd1be5d46a5c626c06a 266149 0.7538292149524364
101 https://github.com/apache/struts/commit/8a04e80f01350c90f053d71366d5e0c2186fded 275714 0.7862756611703604
3282 https://github.com/spring-projects/spring-framework/commit/a7f81201640e1448bc587b7e9471f5053ade8a73 76704 0.809184575843265
2188 https://github.com/apache/tomcat/commit/f07426ff92ad75e5d5f8617f5b12b862d2c5b78b 12648 0.5620175826746308
115 https://github.com/apache/struts/commit/15857a69e7baf3675804495a5954cd0756ac8364 22134 0.7697475942376524
673 https://github.com/apache/struts/commit/6dd6e5cfb7b5e020abffe7e8091bd63fe97c10a 8622 0.6115706559140864
6488 https://github.com/jenkinsci/pipeline-build-step-plugin/commit/71306850cdf0442fccb520acd0d613cf36419085 213646 0.5486304426125289
5181 https://github.com/apache/ofbiz/commit/0a3a044b9aa1d1e5c81784cbc1caa6d7a79f6c65 39591 0.5192144065200797
2605 https://github.com/apache/tomcat/commit/687c71f93d5f0112bbb4774966cf3be21a13a40a 281112 0.7274348627454176
4274 https://github.com/apache/poi/commit/91017547ae1d1cb8632c3a58a0099b938520bdcd 272462 0.5123612708474159
840 https://github.com/apache/tomcat/commit/bbcbb749c75056a2781f37038d63e646fe972104 230229 0.6334554461133944
698 https://github.com/apache/tomcat/commit/2c3553f3681baf775c50bb0b49ea61cb44ea914f 47527 0.46790319828021604
6463 https://github.com/kiegroup/jbpm-designer/commit/0546338472c5b4813a208da693471babdea3dceb 224106 0.5803180309343551
4512 https://github.com/apache/activemq/commit/f4dbb74048b8769e237c05f6f1b8b67c72b9e953 160017 0.5398072046418921
2163 https://github.com/apache/tomcat/commit/d24ff7739cdad2e9bdc25522c75e2d62e926d54b 215214 0.6866928552611042
3269 https://github.com/spring-projects/spring-framework/commit/fed4391f8752dcc1bdd738d8580b65af81c05146 139222 0.8417557613188039
2177 https://github.com/apache/tomcat/commit/77182b40b8ed7b7de934355478dc6711a2c5cd1f 7118 0.40400936265755216
6311 https://github.com/jenkinsci/git-plugin/commit/8c29e950190161f9b626e2de5324f67dc97950b5 165897 0.4628359933207128
854 https://github.com/apache/tomcat/commit/492cbc9a1e33e6d356438bcba4fa2b67680d245a 177787 0.5363170470308122
1318 https://github.com/apache/camel/commit/985be58d177f3da6c4f0a947c1dd3ed16b79bd7f 115608 0.6516367923368969
14 https://github.com/apache/tomcat80/commit/0f76016a4ec45635e450ada9c84ff7ee0c5f3799 111889 0.572089403226973
6477 https://github.com/kiegroup/jbpm-designer/commit/9e0698e4367c8d618b3ab865a95b182cc620717a 42915 0.7495177801160802
2611 https://github.com/apache/tomcat/commit/8598549f1fa4fbdc4cf2eebb664428f5dbac9b34 118659 0.5863153194443348
4260 https://github.com/apache/poi/commit/b02504396b324317aaf8e5f06d4147f7a5ca165c 267168 0.6400269652151432
5156 https://github.com/apache/ofbiz/commit/9fc6a3e40a143992b09f17088dfe09d28ae6a12d 19484 0.787018164690085
2639 https://github.com/apache/tomcat/commit/45a32ff6410258307a8a5259179d38fc7ecf304b 259767 0.7099014627337684
3527 https://github.com/apache/tomcat80/commit/2a7014eb42ddc2c784c5476c0099e5ba460049a6 77350 0.43700023153390355
4248 https://github.com/hibernate/hibernate-validator/commit/8656e378de03cc052a65984fad6567415fa6af48 155844 0.6761323939892524
3241 https://github.com/spring-projects/spring-framework/commit/dd9b6287b4c3b507f963c655144ed06dd8f5ff21 221964 0.5069564678318629
6339 https://github.com/rhuss/jolokia/commit/f8d1febca9de6f7eebc3f9fdfea9ac5b66a1c042 87327 0.7621327942428331
7027 https://github.com/orientechnologies/orientdb/commit/21b4e43a415d7198df6ca1788a0993b2a6041b18 268231 0.5509272613151787
1442 https://github.com/apache/camel/commit/e2ae591d1b1aa62c3a5443ff31750f33be04414b 240151 0.6802396073141349
7033 https://github.com/OpenTSDB/opentsdb/commit/4fce2db272087b5a3a8adc75f82e29453ac34a2d 115193 0.650968692908037
5624 https://github.com/apache/nifi/commit/e6644b3747fa4f830be106474c52b6a25294e297 276103 0.6374110990991215
3533 https://github.com/apache/tomcat80/commit/88bdd57087d0d39706883b414abe8ecc1b09e214 37146 0.8022988490095451
868 https://github.com/x-stream/xstream/commit/e4f1457e681e015be83c6b0b84947676980e29d 81910 0.7511679760461207
1324 https://github.com/apache/camel/commit/6ca4adeb5287b8976bf5802c41119aedc00e726a 230787 0.7469286543283876
5963 https://github.com/looly/hutool/commit/a7cd0f858317e2064748ad9af81fcb6e4bb2d52c 136954 0.7281595578720343
2956 https://github.com/cloudfoundry/uaa/commit/792270b22e356b7bc319ec6cd9c85fa9979bda28 250087 0.6931491228579474
3490 https://github.com/apache/tomcat80/commit/97fe89fa65c75c7b51b937d1715a7d11f1e22915 264381 0.5339439341286923
713 https://github.com/codehaus-plexus/plexus-utils/commit/b38a1b3a4352303e4312b2bb601a0d7ec6e28f41 139917 0.5477550535328374
7190 https://github.com/jenkinsci/mercurial-plugin/commit/b736b8cb7158c996d9cee4e0814114d646055299 252919 0.48344108542933534
5787 https://github.com/apache/santuario-java/commit/379d45a8e53d1582dd92a4add0b04b280737a027 13765 0.7346202515246559
5793 https://github.com/apache/santuario-java/commit/408af4a2cf1fca086affb9895144397f6280eaf3 133515 0.6688035327479699
7184 https://github.com/dom4j/dom4j/commit/136cd0fcff3740b6bf96d5076bab1a0025c3d65b 80674 0.7025420077827326
707 https://github.com/apache/groovy/commit/4df8b652aa018a5d5d1cda8fba938bf3422db31c 157713 0.6100399111980149
1293 https://github.com/pingidentity/ldapsdk/commit/824ed34ba41233f3d616d3c612436866a0226434 166398 0.4727564424453453
2942 https://github.com/cloudfoundry/uaa/commit/716ca635a7ac98e80d6c8ee191482a21e98dd15b 151994 0.621652885688984
3484 https://github.com/apache/tomcat80/commit/2ba20ed8f3c81c7103f09f40464035ec293768b2 62090 0.9299791765514333
4300 https://github.com/apache/poi/commit/034e16731323e7acf44380fda65486ead9db0772 206926 0.8120694749248625
2771 https://github.com/apache/tomcat55/commit/e87ba7af59c8aad18fcae5d5424f380535605149 256979 0.6070202175865365
1278 https://github.com/spring-projects/spring-webflow/commit/16002d174cdd3f6b4fc5b791e17cfdbe04771327 184324 0.6246152833293217
934 https://github.com/opennetworkinglab/onos/commit/4b19da6ce94de4865a365c200d6e8169ffb2184f 287033 0.6218186261006375
6271 https://github.com/cloudfoundry-incubator/credhub/commit/00c8b45abb5b9fcb0fa4102049f48fcb2ca2b4b0 154580 0.8370000377207778
5778 https://github.com/apache/santuario-java/commit/e8a8f6283c55bb5a7822d1802410e7ae6e414d56 52900 0.6961236022683616
2017 https://github.com/apache/tomcat/commit/aa68a9c68b312ba216964ae6b866f19f4815629d 126346 0.5351796065069262
3309 https://github.com/spring-projects/spring-framework/commit/f89d2ac14891d21714462e6ea4f8dc32d325f1cf 161818 0.6482934372521012
2003 https://github.com/apache/tomcat/commit/fd53773871146d892729d19a60117e110a6b02d7 216850 0.6951681847593265
4472 https://github.com/apache/activemq/commit/60ca85c92be91fe2ade93ee9eea89d0711a0a9a6 87579 0.689440672615846
6265 https://github.com/seam2/jboss-seam/commit/10738a03eb11606403cb2a40b5a92c5efb0511ee 41068 0.7009452734710294
6503 https://github.com/undertow-io/undertow/commit/98e50371a85048eaf24edd05536a1cca4311653f 265149 0.742087623401577
920 https://github.com/rhuss/jolokia/commit/2d9b168cfbbf5a6d16fa6e8a5b34503e3dc42364 11222 0.8042271001128286
4314 https://github.com/apache/poi/commit/d73e72d060efe9e7a28549099b712cdfd106fd89 13288 0.6797006800386457
2765 https://github.com/apache/tomcat55/commit/238168ffd2f5495e20e160991ac847ffbdc09fd8 217091 0.48786116596290124
1244 https://github.com/apache/tomcat/commit/452c8094a665ef6375530e81c033da4eeb2e4865 217258 0.9420839814779662
908 https://github.com/apache/tomcat/commit/cbc9b18a845d3c8c053ac293dffda6c6c19dd92b 41068 0.34755161801898504
2995 https://github.com/cloudfoundry/uaa/commit/db3d36221ad6351bc14b8d00e287acb1f3c4b673 91307 0.6309878261180155
3453 https://github.com/apache/tomcat80/commit/2bd44c222417b54683b58a49ad11d7d95a518be4 44447 0.5999143030027743
5744 https://github.com/apache/tika/commit/f0107444a5f038ba6f087e517a8d87530122a0a9 239515 0.46274791979232693
7153 https://github.com/apache/ambari/commit/1730dc5b87bd3bf9f3ded68a47c7bf2d33725997 251890 0.5915958820188585
7147 https://github.com/apache/ambari/commit/0e97706c7b5b4f9b43d9bee961ce7b4a735eb638 226988 0.9390080888096142
1536 https://github.com/apache/camel/commit/8f517cf6e0b2ae53a31a104ec1f822cffbcc7613 205589 0.7096528780205132
5750 https://github.com/apache/tika/commit/58a757e0f7295af14bb8051a42d75bb0ccc8cfe6 249198 0.6104094238661067
3321 https://github.com/spring-projects/spring-framework/commit/c4000727eff5d5af4ac47797121a686f07f278bd 228731 0.6431623266909742
2981 https://github.com/cloudfoundry/uaa/commit/e27fcbe1578ab5856ee29ef7669e32bfa51a953a 235159 0.6453373783406441
3447 https://github.com/apache/tomcat80/commit/8caf0f3fead1806e9c8940dc0b73b891fa0835be 259241 0.527353294549418
2759 https://github.com/apache/tomcat55/commit/f136371cc185a894a1b8c57bf4dcbf54ce755e94 41068 0.5350360410335403
1250 https://github.com/eclipse/jetty.project/commit/02dd1975ec61052cb9a17342c9bbec289257b701 157125 0.6571069757076242
1907 https://github.com/apache/tomcat/commit/b4a34d25f978404498bed3c441b6fa0550d2a377 87014 0.5019026162040798
539 https://github.com/jenkinsci/jenkins/commit/8830d68f5fe21f344be3496984bc4470bfcd0564 138237 0.6550800978455127
1913 https://github.com/apache/tomcat/commit/7e6a5aa35b3e2021ed1e17388b3c87d244656808 201635 0.6819049513858862
4843 https://github.com/apache/jackrabbit/commit/bc61bf579f08b7620a5df72579f2bf17d7849638 89971 0.6595260602901587
5585 https://github.com/apache/commons-fileupload/commit/1c70f7d032d42584116bb30bd85e54edc95dacd1 115627 0.5913977594458076
277 https://github.com/spring-projects/spring-webflow/commit/ec3d54d2305e6b6bce12f770fec67fe63008d45 16582 0.8126334505238101
1085 https://github.com/elastic/elasticsearch/commit/69735b0f4ab9ad7df4b82e8c917589b52cb9978c 250492 0.6154745681198677
6932 https://github.com/apache/groovy/commit/c7125cf887caec401a7ba0fb8ecff0024492e2a1 49425 0.597157243956132
3686 https://github.com/FasterXML/jackson-databind/commit/87804ada84a617ec26e5618d4ea69451fdbca58e 76704 0.809184575843265
2598 https://github.com/apache/tomcat/commit/49e983a1d0b9c849de651f3bccc01f097cf1c1d0 213916 0.5575449878602109
1091 https://github.com/spring-projects/spring-framework/commit/e0de9126ed8cf25cf141d3e66420da94e350708 175189 0.5289142733263218
6926 https://github.com/apache/directory-ldap-api/commit/b71f5f6948b40dddf79aaa2a0ffab07a1e32db67 195584 0.6261496268971446
263 https://github.com/apache/tomcat/commit/b8cb9f5f91e9210ca107fd80f3e6acd47531daa7 67283 0.6105960934630945
5591 https://github.com/apache/commons-fileupload/commit/5b49d834e6eb884775e05df64e9894427728ec45 118009 0.6676327800479931
2215 https://github.com/apache/tomcat/commit/44332d45f14987fe63049305ff4bc3912b9cff0d 274866 0.524351211193502
6073 https://github.com/swagger-api/swagger-codegen/commit/0d6f151ad08dd4d70b989a879e6ce6a7fe6485a6 274754 0.5157477868712786
6715 https://github.com/eclipse/rdf4j/commit/e90f1fd88fcbad25fea99957b56da5d7c116cefe 252919 0.5848254788118874
2573 https://github.com/apache/tomcat/commit/10bd883d8d3624eb1180097f5390284bb573b4bf 205917 0.7244533180325065
4102 https://github.com/apache/cxf/commit/86ad393426e77313c34c45b447aad848c6f92be7 154351 0.5034565216538647
2567 https://github.com/apache/tomcat/commit/68046fa64fd7a8425edb8383ab6934359abc646c 39998 0.5305661874496671
3679 https://github.com/bcgit/bc-java/commit/ced5721f840a6d816c81ff9f90cb9cca2efcd427 76704 0.6481890459397929
6701 https://github.com/weld/core/commit/8c99a763be400740b95d3a5c0c53dc6dc3f3e4e2 213024 0.5552856989671235
1708 https://github.com/jenkinsci/jenkins/commit/9a3caa1d312f527d634b8edcc6ca1d3c061c0c3c 271294 0.7432494299625468
2201 https://github.com/apache/tomcat/commit/2590a9eb9c72bd2dd6ee9c5f89cb9b5f3e3e852e 44498 0.634875125580532
1720 https://github.com/jenkinsci/jenkins/commit/fcb1e18fc13c94183ee05c0991ba88261ff7138e 174105 0.7566129130042372
3137 https://github.com/cloudfoundry/uaa/commit/7b57bc13ad32b33a0533bc8f4534435a17bbc344 199171 0.6035798666417144
2229 https://github.com/apache/tomcat/commit/8740c4cdaf6c1b6dd87d8a75a1652b9b163d9547 186168 0.6894996932614736
4880 https://github.com/apache/jackrabbit/commit/f39492b6d40504ad4769bddd966f592321c221d4 198598 0.6601401058078438
3889 https://github.com/apache/struts/commit/75055d43222084ae4ebcdee1f5b5a8570d8d5635 185770 0.569111921952
5220 https://github.com/apache/ofbiz/commit/8b986c8cd5c84b0cb2923d95bf8036265066d158 98015 0.6535276086093561
3651 https://github.com/bcgit/bc-java/commit/9c10a01100a74f9c22421f94709ce9bed9a5ef0d 42561 1.0000000000000002
1046 https://github.com/apache/hadoop/commit/1373e3d8ad60e4da721a292912cb69243bfdf47 262425 0.7219851648906038
1052 https://github.com/apache/jackrabbit/commit/884ede7db1c6ca490fcbb8238762b000a25f82c3 150846 0.43783143926816825
3645 https://github.com/bcgit/bc-java/commit/eed3f9b07422adcf656c18ddb331d9b7b88edacd 141478 0.6301118493901922
3123 https://github.com/cloudfoundry/uaa/commit/5974cf1bb56bcbbc3a5c2bb6da8a23337d3f9cdb 212269 0.5684505930779231
5552 https://github.com/apache/pdfbox/commit/f70bc308c6f9b5c7b03bb39361ffb99609d250d8 120227 0.6760966247494489
1734 https://github.com/jenkinsci/jenkins/commit/82404407f2c26b3b0509e392ec35dee8ea7dc571 223486 1.0
1044 https://github.com/cloudfoundry/uaa/commit/4178762a49f547534b13539ca65e1d370772c38 23845 0.6215156284297437
3653 https://github.com/bcgit/bc-java/commit/4f256c2f1bc119b208f9d35d847bf4c5b8072a5e 187922 0.9010234707611339
5222 https://github.com/apache/ofbiz/commit/2efbbe6ccaac67d893c69583e2a0f3e8e6f412b5 181627 0.6027831415752959
4882 https://github.com/apache/jackrabbit/commit/8b6614517edb6a56626ffb023e02e0047bccf0a0 82663 0.5285312595816445
3135 https://github.com/cloudfoundry/uaa/commit/8d27847f7d7d5e16b5186f96e9b9647e52f95ce4 204093 0.5416626857938462
1722 https://github.com/jenkinsci/jenkins/commit/ed712a783c9ce19adaae3941f770c1d5e51c90be 167772 0.8069202110598861
1736 https://github.com/jenkinsci/jenkins/commit/dfd60492e7a83f24e5c9a37d0d4af1bee55f9f34 250496 0.5429003946170688
6059 https://github.com/opennetworkinglab/onos/commit/bc98239e13aec7820c513d3d87405a5e0f66eb1a 153731 0.5435638036772376
4896 https://github.com/apache/jackrabbit/commit/9efac8bbbb6b92effc607a802d06792dd261029f 196375 0.41632947582971264
3121 https://github.com/cloudfoundry/uaa/commit/fc4655ade7dd9f460609be0c2c540f7cc382c489 254609 0.47948558212205694
3647 https://github.com/bcgit/bc-java/commit/7ce063201f496f9aa089da7dfafd06692f9b5274 80073 0.5269532823731005
2559 https://github.com/apache/tomcat/commit/0be2e00c9581cc125b0869fed973bb120f0a4040 25469 0.6447476381383525
4100 https://github.com/apache/cxf/commit/96d0454d95ee3ddbfb8324e38fba8f4836c32b3e 67612 0.5463927170239538
2571 https://github.com/apache/tomcat/commit/7be237482b333b647d04532e082b36de79fbaa18 53080 0.5931508377825888
1078 https://github.com/dom4j/dom4j/commit/e598eb43d418744c4dbf62f647dd2381c9ce9387 25469 0.5939274840699147
6071 https://github.com/opennetworkinglab/onos/commit/f9f04f66f6986071352da1ed879b3d017a43c6e7 44667 0.6529688290567238
2217 https://github.com/apache/tomcat/commit/a75e10fcb0a41d9eb94996d5a3e01264e12bf6c0 75673 0.5846550645658042
3109 https://github.com/cloudfoundry/uaa/commit/9f5e399c617808287e58e3088bd7adb7d1814c12 75676 0.7821820201760775
2203 https://github.com/apache/tomcat/commit/a31d52f0a78f64b76e5eb174df982916c72e7757 271839 0.7798948240302391
6065 https://github.com/opennetworkinglab/onos/commit/8c7b06ad07cb63f9d04dcc346980bfde585a1c41 51475 0.7305008644323191
6703 https://github.com/tada/pljava/commit/d235bb47e2b8797ae47d7054e0f4e58c224c655c 272032 0.40452994220382993
2565 https://github.com/apache/tomcat/commit/d8736c87ffe329c9603a36cdd85d617ed85796e1 16279 0.7299163616898781
3690 https://github.com/FasterXML/jackson-databind/commit/49dd11abdb3c70de02655a8a4d7a3ab2c8f00e82 7659 0.7532069221469971
6930 https://github.com/apache/directory-ldap-api/commit/94508de1a08d28ee49d2117c5dc99076c89bf9f0 256362 0.48168186668419494
513 https://github.com/apache/hadoop/commit/0319e74c2512d47d47ab9df834f5b6455be7d968 166171 0.8423179247105411
275 https://github.com/apache/poi/commit/236c3c52a9b90688b2e57ec503559409e29f33ed 97989 0.46661304205287046
1939 https://github.com/apache/tomcat/commit/5a52ec2471559b3e4781af0592a7722396da78c4 84580 0.5449557934394639
5587 https://github.com/apache/commons-fileupload/commit/19d9b0b3fa068f1ce25ea379755ecc049609502f 153673 0.6545403566957003
5593 https://github.com/apache/commons-fileupload/commit/54cadf7f72e6d53d2a738486fc93f2e09f64ec33 115627 0.540621582859355
261 https://github.com/hibernate/hibernate-validator/commit/0886e89900d343ea20fde5137c9a3086e6da9ac 275735 0.5812775806148512
6924 https://github.com/apache/directory-ldap-api/commit/8edd0ff7b9bc2475c7d4b88bd2fe36619cf19d01 63090 0.5304207347418951
507 https://github.com/jenkinsci/jenkins/commit/da06fd471cea79123821c778228eeb08e1cedcc7 253135 0.45762596621619367
1093 https://github.com/keycloak/keycloak/commit/0fe0b875d63cce3d2855d85d25bb8757bce13eb1 116110 0.8035270474696667
3874 https://github.com/apache/struts/commit/44742b72421583a0a6abdd3420ce99df069d913b 38949 0.6253742573861115
1905 https://github.com/apache/tomcat/commit/06e3df04497b6346e4090689fe75ff69240f6b23 64516 0.8462235680169182
1911 https://github.com/apache/tomcat/commit/f8ef08de1c40bd5e4c414845a9187e8227a579df 221646 0.5499162223068694
3860 https://github.com/apache/struts/commit/1045836778466d9105c6ebf074e45bc0b36d01c9 84540 0.7290721827683017
1520 https://github.com/apache/camel/commit/3fea2a2c6c6a666656178f191bdf1012fa59ea94 166361 0.5047560567119564
4458 https://github.com/apache/activemq/commit/52e15a48a174aeb15f6c96c33ae5ddd539640293 79224 0.7722521405911578
2029 https://github.com/apache/tomcat/commit/c6cd8d7c2a99204057e12ad5e6122b1b5a0c3120 242719 0.4904594794656655
5020 https://github.com/spring-projects/spring-security/commit/4ad0652787cd2e298d39d260880e0b43c00781e6 283062 0.6210773711036299
3451 https://github.com/apache/tomcat80/commit/536155ca678fa7962adbf81a66bd53ffae8c5ccc 55730 0.6100992731308601
2997 https://github.com/cloudfoundry/uaa/commit/766e981735b144aa33b674b7f3fab9d798a8f3d0 11953 1.0
1246 https://github.com/cloudfoundry/uaa/commit/57a15dfb7e0e3a59019ebe951793b586512b196 121562 0.6669645985741569
6529 https://github.com/jenkinsci/build-publisher-plugin/commit/9ca19c5239b55081b1239918265d1170e555d2b3 189236 0.6439918851909142
5034 https://github.com/spring-projects/spring-security/commit/160a4a3676b15863970df71c83641d9e35ef5dd9 216850 0.7786014379880356
3445 https://github.com/spring-projects/spring-framework/commit/9f81ffa5ae7a42923ff47f23eb51fad1062cd021 75249 0.5827994485195466
2983 https://github.com/cloudfoundry/uaa/commit/06c28dc0de9fd509ee969cfe47d17f59a91df02c 283094 0.49295895269202483
3323 https://github.com/spring-projects/spring-framework/commit/2d1b44202b539e057f2de6cff6b6f92f67de08a4 46517 0.7530829230774263
5752 https://github.com/inversoft/prime-jwt/commit/b6380bd12f120210954d4eeb472d10e061bc7cd0 157010 0.7721828344374501
7145 https://github.com/apache/cassandra/commit/f73b48502d8455ef27f915f5a5bc14a9682f8ab0 142942 0.6830480730814753
2015 https://github.com/apache/tomcat/commit/6f04897bd33dba2ba66be40abdc18ab5dd4bd6a0 78294 0.6267643376848742
6273 https://github.com/cloudfoundry-incubator/credhub/commit/eb99c5fb7e6490ebaaffe127edef544069e04c49 164567 0.4571338598542369
2773 https://github.com/apache/tomcat55/commit/fe79fb079cfbd467fe2b7cf45ff805491642d8b0 25734 0.7323284565931644
4302 https://github.com/apache/poi/commit/b5bee7257b06d073a67801761936c255b8e53267 91663 0.8109724055264671
2767 https://github.com/apache/tomcat55/commit/c30ff2b2c5ce059b66ca8f43a829716828945cf9 50096 0.371075923646151
3479 https://github.com/apache/tomcat80/commit/e5e518fea56799aea8c7316de47fc34378b6baa0 2417 0.44806937650828993
4316 https://github.com/apache/poi/commit/b6a6618be792316957320ebc2e5475282b84cf3f 150517 0.5648038430155431
6501 https://github.com/undertow-io/undertow/commit/cd672522684a96b23de1c34349c8b256b80af044 191991 0.5627848941674001
6267 https://github.com/cloudfoundry-incubator/credhub/commit/7694e525f1d3d4060c0f5076f81d9ba17fd8638d 150598 0.4918905007899039
7179 https://github.com/apache/thrift/commit/b8ca398d5f4bb2c0f775e415004785afb4026ba2 147929 0.9731379883028043
2001 https://github.com/apache/tomcat/commit/912dff966281f0c8922ec4a1a36f9ca6ccc8db2d 222558 0.5020667694146538
5785 https://github.com/apache/santuario-java/commit/3756becfa234577ff7aa8842dd95090068b04523 85543 0.5606832494476457
711 https://github.com/apache/jackrabbit/commit/f0bd17956647cf09cc898d30e7d58221ef409bca 252151 0.5805224151139023
1285 https://github.com/spring-projects/spring-webflow/commit/da9bb142e9bccac4d8545362450437a315096684 33300 0.6268622879489106
3492 https://github.com/apache/tomcat80/commit/297d0bf2a2287e66286e8693ae32390c64004344 70947 0.5092551410552557
2954 https://github.com/cloudfoundry/uaa/commit/84d510ef2c4dc6157e7d47e4fbbcadf91586a68f 6049 0.4231130920755149
3486 https://github.com/apache/tomcat80/commit/463d8c6e8069cf35b4ff66b87017103c81616cc9 191865 0.5905349611880337
2940 https://github.com/cloudfoundry/uaa/commit/5971a02eff667429d7c20b497ee57324d429515b 143987 0.5764187444677038
2798 https://github.com/apache/tomcat55/commit/c2305d6347f46b54bfa5e9efe46111624811240f 41068 0.6837141020681716
705 https://github.com/jenkinsci/subversion-plugin/commit/7d4562d6f7e40de04bbe29577b51c79f07d05ba6 28726 0.5250846029993138
7186 https://github.com/dom4j/dom4j/commit/affce674ee2b73bbc0ea03303a965b4d041fca39 237869 0.5150771984322497
5791 https://github.com/apache/santuario-java/commit/2035dfdab8883b117ac2ef6e27ac2d256d737662 86401 0.5839211234142206
5949 https://github.com/apache/lucene-solr/commit/b6610b9f04d43dcd35f9d9633fc317960d67fe2a 53534 0.7623013966318574
5961 https://github.com/looly/hutool/commit/85142b47b80cf7d9392db78539d9e9f7688a6fdd 234223 0.6183007866436958
2968 https://github.com/cloudfoundry/uaa/commit/c1ae94661ca15e41cd9d40f362a3c171ce000fc3 159578 0.6487492226357175
5975 https://github.com/vert-x3/vertx-web/commit/8d989422d3587c605e6049b0954c2af24d8222f8 235940 0.7014406346111779
7025 https://github.com/umlet/umlet/commit/d398658a779216f082631c644abc477d030d2382 280989 0.7497464843475724
5632 https://github.com/apache/qpid-broker-j/commit/bc1d6d33ed4b350e71542608301b8c04543d7879 227397 0.6364215291494489
3525 https://github.com/apache/tomcat80/commit/9fc1097d77c590cc6d5fd49b979344fb9b340dd9 177787 0.5796503947210366
5154 https://github.com/apache/ofbiz/commit/53f4d5cc116e7bc14348005e017b9281257355dc 19323 0.48346340031249574
1332 https://github.com/apache/camel/commit/36f06b318a26cd1f833c7451ac0ce554da31fdb7 28359 0.7398265370837642
6449 https://github.com/jenkinsci/tikal-multijob-plugin/commit/bdc7f39bd332abbd15261456b349c1238cb038c5 212599 0.7370201676692115
3531 https://github.com/apache/tomcat80/commit/bcfbca8f6b130bc322ca16a6e04dcf08891e831e 117825 0.6247952476875747
5140 https://github.com/apache/ofbiz/commit/6380d64dfd2b0403bbf24da36f01712f36aa0b07 161202 0.6358191931703768
2149 https://github.com/apache/tomcat/commit/21ca24ebd67787d0a72d5af8443d17f9e1dc65aa 125215 0.47491503275281116
3257 https://github.com/spring-projects/spring-framework/commit/3f01af6f7c7738c0148d1022ac6dbb189f13c7dd 140619 0.6267627919320737
7031 https://github.com/orientechnologies/orientdb/commit/1d6e909b7b654e3252a20bf7187bed76bf1e0b70 85520 0.522445241868816
1440 https://github.com/apache/camel/commit/85e00fed904f745495bd8ef2e2da9258d593a049 241005 0.582477938735745
2161 https://github.com/apache/tomcat/commit/8045f49cd9ad7d0447adf4a76f9e6d3300bdb857 79139 0.5069013835776857
7019 https://github.com/jenkinsci/ccm-plugin/commit/bbd30baa6e61723febbc5a588878b927e1b61b9e 86697 0.8098624142174831
1468 https://github.com/apache/camel/commit/a0b87d903c70da01611c4f7f8fb3babf7f469aa5 96171 0.6613034235823595
6307 https://github.com/jenkinsci/git-plugin/commit/c4d9d70d16780ae78a620b29003b271b01382bf7 262398 1.0
6461 https://github.com/spring-projects/spring-ldap/commit/f715dcc0ef54c961d6591e9869d0244e7125a951 61003 0.5981698015786695
4276 https://github.com/apache/poi/commit/a2e4130de3a9f21b97018ade84364cda7a3a1fbb 177102 0.45323590340691733
3519 https://github.com/apache/tomcat80/commit/f642fb2a6e698e2950579f6da253d4f3116a6a33 157125 0.62177593861309
2607 https://github.com/apache/tomcat/commit/656b87501ea028b9f16b6345904933ded61486eb 97868 0.5901626606671856
5168 https://github.com/apache/ofbiz/commit/31a5a0c5f43741736a7f97dc53ddfd482eca7255 80535 0.7487960325629645
4262 https://github.com/apache/poi/commit/1d431311d6641e404f0f167f301c6b0b506fe990 251950 0.5522260767076065
2613 https://github.com/apache/tomcat/commit/bfb676e13d1fbdc6ec614d2c297a8f2234577083 185021 0.5840998118255554
16 https://github.com/apache/camel/commit/e922f89290f236f3107039de61af0375826bd96d 40160 0.6846345369298185
856 https://github.com/kiegroup/jbpm-designer/commit/e4691214a100718c3b1c9b93d4db466672ba0be 12624 0.6401635437606803
6313 https://github.com/deeplearning4j/deeplearning4j/commit/f98f8be7b6ef1d95f29ad87835373c087a45ce50 208306 0.4579260348629209
2175 https://github.com/apache/tomcat/commit/6569d7ad8a70f08db66c50f09c70f546faefff91 249006 0.5744732155233064
5829 https://github.com/apache/lucene-solr/commit/ebbf92c2f4a98ac9cb4ab8f755bdda8fd52d0e95 43606 0.59998309352402
103 https://github.com/spring-projects/spring-framework/commit/5a711c05ec750f069235597173084c2ee796242 37691 0.7916328215170452
665 https://github.com/apache/tomcat/commit/c584c7c4ab0686e4125eefcd0afb32fb8269da3d 271839 0.7541372429634449
4289 https://github.com/apache/poi/commit/f69404de8d0b8d974b9eefe8411f1ce7620bb15c 221228 0.6459756679643337
5183 https://github.com/apache/ofbiz/commit/28b397af9186688bbf5462377ce344eed435b223 130885 0.6768695289079207
671 https://github.com/beanshell/beanshell/commit/7c68fde2d6fc65e362f20863d868c112a90a9b49 91663 0.6845298906938551
1483 https://github.com/apache/camel/commit/ba0d5f4e9addc43c5678d6826913d0e2a428a849 230807 0.7330437024835276
117 https://github.com/apache/tomcat/commit/1735d7f55094c3775c7d94e4f8568336dbe1a738 222402 0.5165788539728822
3294 https://github.com/spring-projects/spring-framework/commit/66b4499973de089fea8bebd71b484bbdfda0b2ac 199320 0.43563617621853723
659 https://github.com/apache/tomcat/commit/0b41766456b1980e4f809e13ad6dc9fa912bae7e 135421 0.5512830206795094
895 https://github.com/apache/syncope/commit/ad31479c1c543ac7d26b8c882aa14f6c00c1fd0 56651 0.5525146131175402
2808 https://github.com/apache/tomcat55/commit/9fbe2b369ceb1e535ab7cc47d85a0b3ff32df693 41068 0.7486675890524606
5801 https://github.com/apache/santuario-java/commit/42ee870acdc45a7bfba8e3d01c94889d74d47313 49400 0.7188465009025617
6887 https://github.com/jenkinsci/subversion-plugin/commit/13a1cc8b7c9468ed23470b15768e5673a39674ed 138387 0.6449189392699626
1130 https://github.com/apache/hadoop/commit/6b710a42e00acca405e085724c89cda016cf7442 15813 0.5836909124920108
5356 https://github.com/spring-projects/spring-security-oauth/commit/d8cb5c4dab0c7f296da1111dd150616510e5ae7e 75676 0.7185597019736222
2439 https://github.com/apache/tomcat/commit/f880bc99b044b5eb590b6ffc9f27879ce951f586 65582 0.4168597598795158
4048 https://github.com/apache/cxf/commit/364ef7745af0e0d89ed65ec4d199978f595e6526 139057 0.5590800627415584
3041 https://github.com/cloudfoundry/uaa/commit/c7c18d3a6084f3162ec2bbe816619772ecb92e33 160762 0.5993774822589032
5430 https://github.com/apache/cxf-fediz/commit/a8cc1bed8d6619c62b92f16c8bc6ee24c1705d05 76432 0.5256608640556513
6139 https://github.com/square/okhttp/commit/4a27e9179f17ce91df3a6b8518578f82cf1c8c86 253223 0.523997626301615
1656 https://github.com/apache/camel/commit/db061d1988004bd313b72f1435c813d8baa7bf6c 222565 0.7574175062242698
7227 https://github.com/jenkinsci/saltstack-plugin/commit/7c6d6819dfd43c9832a11c4ff8119212d63845fe 275698 0.4579479456139848
1642 https://github.com/apache/camel/commit/d486ee8051c2e450178b83126ed48a86f0ba5e6a 96103 0.7319326454348419
7233 https://github.com/jenkinsci/ssh-agent-plugin/commit/c5c049f381f4d5c75d8e4ec6db98eb198a43356a 147248 0.8232384018851361
3055 https://github.com/cloudfoundry/uaa/commit/fdddd2189933b85dc77f462cf7e445a0082d1d9c 46472 0.48377666562497035
5424 https://github.com/apache/cxf-fediz/commit/8b81c048bd8850388804e1cddd3691ded9e6a17d 195742 0.8437474296150491
5342 https://github.com/letonez/libpam4j/commit/5d13657c2b9e24fe006a5981f0c1dbcbef79b296 20934 0.6570680687629155
6893 https://github.com/jenkinsci/subversion-plugin/commit/e87e989537edc5eaabb2cd22f786f7778a24948e 12878 0.7725127660508129
1124 https://github.com/apache/hbase/commit/408eb243ad51bbad593d83ad2cfd35cc0e90b38e 201870 0.6540433679783133
2405 https://github.com/apache/tomcat/commit/08bd8789e817f15fe2057b6c909ae328ac63b01b 37622 0.5368397948679288
4074 https://github.com/apache/cxf/commit/e8ea9e74c09d3313d6353d9914f361105b06128e 81960 0.5730485930135311
498 https://github.com/apache/poi/commit/3a328aa220f6979f9805f658ae33244d153beaa7 167681 0.5618855527793659
6105 https://github.com/swagger-api/swagger-codegen/commit/405e5a7a35af465019c3214f651f3d3c68af15a3 33300 0.7978883447441394
2363 https://github.com/apache/tomcat/commit/ca2caafc91d4bb5ff671d26e3f6282ab9fa8d780 64317 0.836105627093275
3069 https://github.com/cloudfoundry/uaa/commit/cf881cb51e969a050112511506f6dffcdf538232 26862 0.6291230718687449
2377 https://github.com/apache/tomcat/commit/07cae09267e600c847cc98ef5e3b9833ff490be9 104418 0.5900157333731859
5418 https://github.com/apache/cxf-fediz/commit/eb0ee089c033edec969922ce6e2cdbc2885f2c9e 139200 0.5343702067186747
6111 https://github.com/swagger-api/swagger-codegen/commit/d18cc2d3e4b284f55e6425e7dd7a5c0a19d16821 193113 0.6265578622692586
1118 https://github.com/apache/ofbiz/commit/72cb46f63957833d39dd91659db9a78357ea4ac1 277374 0.6348579834538132
6677 https://github.com/apache/storm/commit/0726c116ebd2ef27b5225027bdf3008e6156018d 83767 0.8820916520235479
2411 https://github.com/apache/tomcat/commit/3d2d614a1754f20600a60f07f1dc13a0d009d5dd 199115 0.581574723864499
5395 https://github.com/apache/cxf-fediz/commit/5865dcf58da7d9f318519436d0a5f0924f2e874c 100843 0.6731798941177002
6844 https://github.com/netty/netty/commit/affd514b8c16422052ca23637c9b2b70a651356e 169500 0.8915917985329812
1695 https://github.com/jenkinsci/jenkins/commit/6bf700827a12bb1348c95944cfc52d47a74371d2 124065 0.6381748136636229
4935 https://github.com/x-stream/xstream/commit/0bf94d6f8af6701071583eaef1854c3ce647de49 47107 0.6679067305933541
3082 https://github.com/cloudfoundry/uaa/commit/48a47e631f4e3eb1307a949781e9e7ceaf74781b 227108 0.801980783553822
2388 https://github.com/apache/tomcat/commit/1ffa5aed45e34228799420b165d1457b2e942c0c 147929 0.7081619763412389
4921 https://github.com/apache/jackrabbit/commit/a718dc32399971c4d9b4b56d137064a2f9fa00aa 83162 0.6521723899804394
3096 https://github.com/cloudfoundry/uaa/commit/b3a33f2ccee68b109dcd9a6bf6f1298510f52fb9 145497 0.6070663937972237
1859 https://github.com/jenkinsci/jenkins/commit/8c2eb94bb677666943606aa938a6e4d995c3be1d 266547 0.4746516648378099
315 https://github.com/bcgit/bc-java/commit/e25e94a046a6934819133886439984e2fecb2b04 184477 0.6758701374092397
1681 https://github.com/jenkinsci/jenkins/commit/804588a81ae7c87b2b0230018a58f00cac50a2f8 199368 0.5423717167561543
473 https://github.com/apache/tomcat/commit/05c84ff8304a69a30b251f207a7b93c2c882564d 250806 0.7218498996921779
6850 https://github.com/netty/netty/commit/717bde05e279d214d699b6184cc46af201cafc10 171234 0.6616774801935521
5381 https://github.com/spring-projects/spring-security-oauth/commit/a62c40da380c4ebc17be7ce451a4565696d5087a 264388 0.558553258146795
3900 https://github.com/apache/struts/commit/b5be431f540271685eed803c7e55bf5a4d3138e6 277789 0.6519704744703058
1871 https://github.com/apache/tomcat/commit/5c81e9c075e280258392e4aeb86d5ad79fa7e258 41705 0.7308397941745657
1865 https://github.com/apache/tomcat/commit/d82fc850041ae5309beb7130280151138a4f290c 245866 0.5871394067219062
329 https://github.com/apache/tomcat/commit/d79c63d424fe6b225678416343b9ce106dec947c 25159 0.4260463131770219
328 https://github.com/jenkinsci/jenkins/commit/b2083a387a5bdb6f7ee7f7c81a1f6312aca2a558 208842 0.5107927310059782
1864 https://github.com/apache/tomcat/commit/c0cc837baeda4df64afe817942f940c89e58cc92 287418 0.634080828359718
3901 https://github.com/apache/struts/commit/046c0cebd2b22b8cddc3518a83c7dfba1db9e34a 48639 0.6451551575703223
1870 https://github.com/apache/tomcat/commit/f44725299b4e00f0df72f436a938a6a449088771 285614 0.6202623011797549
1680 https://github.com/jenkinsci/jenkins/commit/13941f7cb5c7d0a235d0b5849aa46a70f07d12c5 250501 0.6889598513130519
314 https://github.com/apache/tomcat/commit/769477b9bc8442db3f571385fa0c3e206242cbf1 22479 0.5885847118620117
1858 https://github.com/jenkinsci/jenkins/commit/86348bbb705ae16e3736a57188520151dc529865 161379 0.7578358035752638
3097 https://github.com/cloudfoundry/uaa/commit/a65b8e609439659d6c5545bab5dc4b02b82243cd 267073 0.6043172452794162
2389 https://github.com/apache/tomcat/commit/d47872834bf6526b075303254fce204f90603b5b 176626 0.6706376905054303
5380 https://github.com/spring-projects/spring-security-oauth/commit/a336fc2a2060f53971b0d23039749f922398116b 3548 0.5466119358138729
6851 https://github.com/netty/netty/commit/937c0481e0a1bc173dd5ddf1371d38ce13fa10d8 253092 0.7202161557179483
6689 https://github.com/weld/core/commit/72c0f374ceb40c535d6437131da930286ccb5b23 199985 0.42668282505476984
472 https://github.com/cloudfoundry/uaa/commit/20808046de8bbdc6fb2ac62829d4cc9d7a19f37 215222 0.6351023166008423
6845 https://github.com/netty/netty/commit/93f76ce594cb2953f22d072190537f0bd32eeccd 126448 0.7728294385045282
466 https://github.com/apache/tomcat/commit/a697f7b52c4e3aea0c6763b33d413b54a518e883 100861 0.700954066886142
3083 https://github.com/cloudfoundry/uaa/commit/fde5b54123872a3eeb8dd90cf8943df956279a44 157874 0.48817490516102424
4934 https://github.com/x-stream/xstream/commit/8d6fd990c6e489f2ac6aa088eb30ff601b7a0d28 17403 0.4942972810141015
1694 https://github.com/jenkinsci/jenkins/commit/8d1f9d56c0e91b521cb71b627df964dd87880a78 211274 0.526613252288494
5419 https://github.com/apache/cxf-fediz/commit/532bf0ccdb50d81043c407c2eb195858a5798d1f 215295 0.6607180352548078
2376 https://github.com/apache/tomcat/commit/53f77884874da4bd788cf194acd7da1e064d8b77 113793 0.7296948200525889
3068 https://github.com/cloudfoundry/uaa/commit/8a508f99af7667a0755c47d797e3a031e326aa5c 101344 0.6462890870023738
4061 https://github.com/apache/cxf/commit/ad149504c75ba6bd7dce69861fbc223205569b11 153046 0.5927876367197543
2410 https://github.com/apache/tomcat/commit/5240c7ec5742345c7bd26df1ce0277ee4d0794d5 101173 0.8214272540469043
1119 https://github.com/apereo/java-cas-client/commit/ae37092100c8eaec610dab6d83e5e05a8ee58814 704 0.6455655587266049
499 https://github.com/apache/cxf-fediz/commit/e7127129dbc0f4ee83985052085e185e750cebbf 65615 0.6483540829967379
2404 https://github.com/apache/tomcat/commit/68a0eee77cf741f1a5dcfe094ee54ff08d39b3c2 66754 0.4674891489584321
2362 https://github.com/apache/tomcat/commit/413710706f3ecd00d56f6d9856dc7db28eacdc83 160053 0.4423798583750954
6104 https://github.com/swagger-api/swagger-codegen/commit/e1ae348db483cbe4fc2bbb1cf343e0ea48885141 161827 0.627656476048209
5425 https://github.com/apache/cxf-fediz/commit/fa5902c218b9668c92a17be2474473e8f026dc63 81335 0.8712402924301259
3054 https://github.com/cloudfoundry/uaa/commit/71ec9cd3ede29dc831297b1c36def4e8172da070 242575 0.7212285211751206
7232 https://github.com/jenkinsci/ssh-agent-plugin/commit/c5ddc0f9e07a6dbdd18b47e09a6181cac2906d6d 186655 0.7573222812912194
1643 https://github.com/apache/camel/commit/11559611b43cc7e58c5bdfad42935b1c0dece8c8 85402 0.7746447349187148
6892 https://github.com/jenkinsci/subversion-plugin/commit/3170eb73c6d7c812baf8049189173907d0bfcebb 227285 1.0
3732 https://github.com/FasterXML/jackson-databind/commit/b5562ab278bd2f455e9f25a581fb8ebb11d49b48 76704 0.809184575843265
5343 https://github.com/letonez/libpam4j/commit/1259c699dfdb100f28649edb2a0f01981c706139 225576 0.6015820449494087
4049 https://github.com/apache/cxf/commit/a693022ec0ae4af224b51907c467b04a3d0a3f53 107614 0.6259755429729763
3726 https://github.com/FasterXML/jackson-databind/commit/19e5ed493404dd058c461e07dda4e5e30e5a6de7 77648 0.5483436639930758
2438 https://github.com/apache/tomcat/commit/0678edb189afc5a285d33b3fe033052e6bc31aad 235698 0.6586094350138044
5357 https://github.com/spring-projects/spring-security-oauth/commit/28882aaad05222de717e9218673e54bf79655476 145549 0.8786683659777815
6886 https://github.com/apache/cayenne/commit/3a337d5d86490bf314927ad00e27e7ff08bba48b 20876 0.7437823486077637
7226 https://github.com/jeremylong/DependencyCheck/commit/92d12ec68ecfa8bbbafd971fdff8dd50f6e796d2 191939 0.4590312675940539
6138 https://github.com/square/okhttp/commit/c079c9e985ba201a402c6a4be34254b31e1476b0 170626 0.5799784102896485
5431 https://github.com/apache/cxf-fediz/commit/a7f1cccf032b07130467e58a839d676b23b6ca40 100836 0.6193070190181106
3040 https://github.com/cloudfoundry/uaa/commit/5e0cd63c235ed4bed343b351bd0afe45872de642 238586 0.47209546132244534
2809 https://github.com/apache/tomcat55/commit/c3fb3f54847e4016ef159e4bf506f54246bba9b4 50096 0.434004170078542
5800 https://github.com/apache/santuario-java/commit/10e4b25f8373d7dfeb5aa85ddb901f2296360b81 14617 0.5790369792293613
5814 https://github.com/apache/lucene-solr/commit/29aafdf3c546e831230c0cd0550e905f138f6b9f 253756 0.607350420358694
880 https://github.com/spring-projects/spring-amqp/commit/296d481f980fcbecbee01244e3644e254470a86 230067 0.6046700234053205
670 https://github.com/apache/commons-compress/commit/0600296ab8f8a0bbdfedd483f51b38005eb8e34e 210296 0.5174892262488145
5182 https://github.com/apache/ofbiz/commit/38d80936830a4e59dd413bd8392f95209cc4f659 233368 0.5961942599736516
116 https://github.com/spring-projects/spring-framework/commit/f2694a8ed93f1f63f87ce45d0bb638478b426acd 169095 0.72533667300273
1496 https://github.com/apache/camel/commit/4ae817ec6118c7cc6b5d881aad4b462a34fabc63 253233 0.6683537589251559
3281 https://github.com/spring-projects/spring-framework/commit/d10174a3e9c54d1ed1e2b8d5725a1d0249375eff 54623 0.7171964026317151
5828 https://github.com/apache/lucene-solr/commit/9382159d10e07c6aef298af1c7b61ff8b551e98f 236435 0.6011362084777976
4288 https://github.com/apache/poi/commit/79b578426be422fac0a230f59fdc5f97c1c52f0b 180885 0.7538441420034522
664 https://github.com/apache/kafka/commit/9f3468645b968761ca9141d18337cb6adadbae9 184117 0.7454850120854838
6474 https://github.com/kiegroup/jbpm-designer/commit/48e51fbf456ecd592ea3b06f0d8dac1ff2285efe 11012 0.47974591644788606
2612 https://github.com/apache/tomcat/commit/8abbc9c1a31d48e5530bfc25b315c725a7928ba1 13989 0.4377491345129083
4263 https://github.com/apache/poi/commit/27ca5d522afca852abd5507e3f8c430552176071 279783 0.6140496223868005
2174 https://github.com/apache/tomcat/commit/e74295fa68b4f242d2a2f88fa813413166bfe5c6 92079 0.5431508085895743
6312 https://github.com/deeplearning4j/deeplearning4j/commit/acf559425aef523628ff20b44eddf4f5691435b1 94324 0.5521681329887064
1469 https://github.com/apache/camel/commit/ebb6991e96756a141c4b99254323e407bb22fab4 256171 0.8568683606703772
7018 https://github.com/jenkinsci/ccm-plugin/commit/68b9606b4f34cdc8518214633fa470f9c84d7559 44851 0.7381529817996415
2160 https://github.com/apache/tomcat/commit/cefea1fee665334354669d69ce1d82590039f46f 108210 0.6701589345721748
5169 https://github.com/apache/ofbiz/commit/e26425986a2e5aeb081d731459635e39bb7e931c 98152 0.7802423621761343
2606 https://github.com/apache/tomcat/commit/57bbca441c77069e446a417311058cfb202cf90f 199390 0.5309480148375642
3518 https://github.com/apache/tomcat80/commit/9164c91c1ce1ea9fbaadcabbf818901d4545a172 91663 0.6684712667112352
4277 https://github.com/apache/poi/commit/d6271eb6655e75805d6f72ebedf329d30e52bf9d 180885 0.6721299773405662
843 https://github.com/apache/ofbiz/commit/5440c26c6b8dbc040a411391ee5a3180b2a91e6e 159007 0.5449326884593939
5141 https://github.com/apache/ofbiz/commit/e9d280e8f8b10fe696df3947a6fab4a1b30073d8 117114 0.5396965433044365
3530 https://github.com/apache/tomcat80/commit/f3aeb3020d3471b01557d50749f78ba755cd5eac 38936 0.5128356060179939
6448 https://github.com/jenkinsci/tikal-multijob-plugin/commit/17f0cad7e061e09e0507443086daa6a73b7bd3a3 29463 0.7365115278395098
1441 https://github.com/apache/camel/commit/986a9e0b4a53d9f2da6cb5e5e7d9d75416fd02ac 2290 0.6054080166198413
7030 https://github.com/orientechnologies/orientdb/commit/aed8d44f8827e538602bcfd194d0e1a159452e02 235078 0.5572770337703147
3256 https://github.com/spring-projects/spring-framework/commit/4be605eb1e9e65fa94c8928e0d89486e5085d3b6 81343 0.7777087321497752
2148 https://github.com/apache/tomcat/commit/467c9006072c433cba603cccb19b2f9434a72efd 178074 0.4901621207735313
3242 https://github.com/spring-projects/spring-framework/commit/6f07a504b8f505028469944b8aea359aa69dd19e 17137 0.6794203611899102
1455 https://github.com/apache/camel/commit/9fd52855ae36f6335d44e022cf547894430c42bc 182011 0.7275240837932684
7024 https://github.com/umlet/umlet/commit/621042e294231a2564cdd5999807c4a2d83a9e5a 272185 0.553871105671064
5155 https://github.com/apache/ofbiz/commit/307f2f956b3413663a26449914a391cddae47b37 239055 0.6123387059597023
3524 https://github.com/apache/tomcat80/commit/971e2c0be198b910a0715f26c09806fcf097bcb0 23876 0.5501125125897612
738 https://github.com/apache/struts/commit/a0fdca138feec2c2e94eb75ca1f8b76678b4d152 135656 0.8845097794966035
5974 https://github.com/vert-x3/vertx-web/commit/79acefb2201ecaab6c323c4383dc92029b250db2 50993 0.8821267944252177
5960 https://github.com/looly/hutool/commit/1fa812137dd4b99f2eb559dbb98a0f578026edf5 41068 0.6815897436280629
2969 https://github.com/cloudfoundry/uaa/commit/5ceabd7cfb7b9ada2fbe1d3a1970f34a44642f27 109899 1.0
1290 https://github.com/spring-projects/spring-webflow/commit/bf951c7e3597f05d7443b2201a5e43319ef81b3a 225302 0.7540788013730352
2799 https://github.com/apache/tomcat55/commit/cf1bedcc566cac502ada862db05cb0052e4b5ed0 97663 0.8523662882247871
2941 https://github.com/cloudfoundry/uaa/commit/9321bc0f996587be5c0ada12e152878a917a759b 265468 0.6808628377056875
3487 https://github.com/apache/tomcat80/commit/fe4aa2d7f579a84fd49060e2a85ac50c1f7eef3b 274891 0.7156552978116997
5790 https://github.com/apache/santuario-java/commit/561e6552f15e3eee9742a6f7a0b9576d0f4910d9 9446 0.5993812376656308
7187 https://github.com/jenkinsci/mercurial-plugin/commit/6a914603d6a97a555308615d50b67fba7627f959 1752 0.749909745840432
5784 https://github.com/apache/santuario-java/commit/9f9efc531223c02cdb71e4ece8fb13925f689bde 138550 0.5274197373051388
2955 https://github.com/cloudfoundry/uaa/commit/3c276dd690904b509a42c2facc220a0523c910dc 35585 0.7777886941850521
3493 https://github.com/apache/tomcat80/commit/99fedd23cc33dacce355f9626902f0a3fb58b3ae 244680 0.7019541946267995
1284 https://github.com/spring-projects/spring-webflow/commit/cef9b940855567aa19afb0f573158998ae0e5396 242059 0.6853094033983441
6500 https://github.com/undertow-io/undertow/commit/622afc375e955c239dbe335c4d3197c5464671c0 121825 0.6727543322847681
4317 https://github.com/ESAPI/esapi-java-legacy/commit/d297d61f1416bb2a7454b97569a0ecd70820147d 232361 0.679883468648691
3478 https://github.com/apache/tomcat80/commit/094e11b2ce842d39eb40eab430a7528144117e05 79139 0.5352329339323258
2766 https://github.com/apache/tomcat55/commit/35b0be71df41602c45155e6c49d4c0e89953fdf8 20754 0.8600548663359884
5009 https://github.com/spring-projects/spring-security/commit/37011720c9bd8ce6313222a8385e61a190b7b65d 135453 0.8224186532184518
2000 https://github.com/apache/tomcat/commit/b05ce553874d775471c3667b2789fd7fc5dd2981 180656 0.769986225478558
7178 https://github.com/apache/thrift/commit/c2d4c77c5aec372bd4f265d6bff6a55c05c6e7c1 41716 0.5245606668805732
6266 https://github.com/seam2/jboss-seam/commit/e444f061a91ae2360b0b310f8b9af2eff973125a 40625 0.5872883701328941
6272 https://github.com/cloudfoundry-incubator/credhub/commit/61823f8d31bc8146dbda4b768be158e3e8f2d269 95857 0.4508663217475453
2014 https://github.com/apache/tomcat/commit/4383847e270c6e2c4e839b054e5bde0d057def8d 103692 0.5949702093550086
4303 https://github.com/apache/poi/commit/f446df6f6647e765970e5074b8429856cf5cbffe 66138 0.45158022102823103
2772 https://github.com/apache/tomcat55/commit/585f035e62de6c7158292f8deb20b4674d2da23e 168026 0.754038855779762
937 https://github.com/apache/ranger/commit/da3a3233d5679284142eb2887c91a754a0da70b 25622 0.6576029888824626
2982 https://github.com/cloudfoundry/uaa/commit/0bacc69f71c6a42c569eab8317446feb7712416e 282106 0.8670149180068849
5035 https://github.com/spring-projects/spring-security/commit/4ad98a7df36e64e81ca42544f165470b556508c6 156260 0.588190332468717
1253 https://github.com/jenkinsci/ownership-plugin/commit/42487df17cd272e504d3cd3e09abb4904f80dba2 75091 0.47671797296951823
1535 https://github.com/apache/camel/commit/b25709143be9cfb3534428a325dbc09e27fac46a 4436 0.8557375461047791
5753 https://github.com/inversoft/prime-jwt/commit/48cd5897019b923ad7fe318aa0d632484a0ccddd 126494 0.9450108535650983
5747 https://github.com/apache/tika/commit/683c9a87cb746e8aa3e260495147999bcd61175c 257167 0.5060108794736936
2028 https://github.com/apache/tomcat/commit/432d43797936982beefb996d9cc5465f5800d4d4 23409 0.4349635252802244
3336 https://github.com/spring-projects/spring-framework/commit/2d29fcd0bbd645e2ab5c91fe41567da86677f656 230483 0.6879509905556969
4459 https://github.com/apache/activemq/commit/e0c2c177c2b9fd65bacefcc414669c114f2ad1e0 244396 0.7031033971603147
1521 https://github.com/apache/camel/commit/0dabdde26c6568f73cc7cae8bab5d9f7c528552e 91770 1.0000000000000002
6528 https://github.com/jenkinsci/build-publisher-plugin/commit/c21135227ab918e51e29c8b7cceafccd12e2b5d2 249324 0.641480017281825
2996 https://github.com/cloudfoundry/uaa/commit/dd69deece17610eeb5ebc21bdef2dd48ec2cc5cb 20754 0.6318013827085973
3450 https://github.com/apache/tomcat80/commit/5a06780bcb39c37764d0d6e92817aea0c82b4988 30306 0.6892000149469069
4868 https://github.com/apache/jackrabbit/commit/4e3bad302b65e317c65414f51cb39a2e2db595a8 186713 0.7322996263683015
1910 https://github.com/apache/tomcat/commit/42a5b8b9d787e74d32d5fd8605537d4260cd3e15 44447 0.5339695257254565
3861 https://github.com/apache/struts/commit/2b8a805eb0794abd5c804c0bc9059e56b72c985f 136794 0.7038100100005025
1904 https://github.com/apache/tomcat/commit/eb2b130746ee90eca98c9c00a1ba6c789bd4348c 10980 0.5572097110192532
248 https://github.com/apache/openjpa/commit/521fecd2d9b91c27e9f90d97e5f5479d17239eb8 160840 0.5598117300014879
260 https://github.com/apache/tomcat/commit/40e5880dfc51517334acda5f12beacdec52ca283 45642 0.6105082179166158
5592 https://github.com/apache/commons-fileupload/commit/190a63505aa28c33d540f2bfd1ab778aa89e2a16 88107 0.8271979403563938
3685 https://github.com/FasterXML/jackson-databind/commit/5acafb5209a9abf89a80e381042b3abf50beb99b 271801 0.4861460752911428
1092 https://github.com/apache/batik/commit/1e12686194370b22420da705d71af66161affa33 22479 0.6947191984062165
506 https://github.com/apache/tomcat/commit/e28dd578fad90a6d5726ec34f3245c9f99d909a5 188770 0.6364846489359152
6925 https://github.com/apache/directory-ldap-api/commit/51efe7a31ee19979a2c39df301f13d05cad0d3ae 24558 0.6162783770710588
512 https://github.com/eclipse/jetty.project/commit/4df5647f6dfdc5fa7abb812afe9290d60b17c098 273024 0.7085212944123226
6931 https://github.com/apache/directory-ldap-api/commit/a05c13ec06918c3d5e63dc5890d5b9f330ae8072 10072 0.5175531013772425
3691 https://github.com/FasterXML/jackson-databind/commit/77aacdfba325f5434199016a29e97a56609cfd61 76704 0.809184575843265
4840 https://github.com/apache/jackrabbit/commit/8c67049af84768ac648d68d9c901ca396dceeb46 195351 0.521027510068297
5586 https://github.com/apache/commons-fileupload/commit/fb8c1764ece508bb7cfc6c2e37d0f6b5132679e8 196399 0.7542734264746145
1938 https://github.com/apache/tomcat/commit/ed199fdcec0fc3a98eaf94283abb457d2be7d85e 230406 0.718694926485662
274 https://github.com/apache/commons-compress/commit/a080293da69f3fe3d11d5214432e1469ee195870 224027 0.6478808769065678
6064 https://github.com/opennetworkinglab/onos/commit/21eb042dba2fe99cb728e13621f0e47adfdd0dc6 88512 0.739123106551314
2202 https://github.com/apache/tomcat/commit/b15ce8ba90f21a10a22ac2ea1bfcc089a960833b 239797 0.7067194340106232
2564 https://github.com/apache/tomcat/commit/8b23d28c42938fd231e715108d761710bce4b166 37081 0.5061200163836636
4115 https://github.com/apache/cxf/commit/56b1c952f4099d5831b0973cceb4f8f9deac9854 19795 0.8027145754605193
6702 https://github.com/tada/pljava/commit/9d6e1e0c5a141dedfb6c8d00c99cedd6942635b3 269872 0.47206731787574424
1079 https://github.com/apache/tomcat80/commit/f52c242d92d4563dd1226dcc993ec37370ba9ce3 1971 0.5975466683565455
2570 https://github.com/apache/tomcat/commit/24dfc123c2b3bfe4836faad93567a8bbee5e57fd 20305 0.8008706596311085
4101 https://github.com/apache/cxf/commit/b33729dda1bdea6423be2464aea0719f12592728 85500 0.46695956987445425
3108 https://github.com/cloudfoundry/uaa/commit/bac39404609109787b0aef7991b62a821297db8d 252430 0.5820591463315801
2216 https://github.com/apache/tomcat/commit/0f607902e82557bc9007a70e858b33014f7f96c3 43859 0.550491262314063
6070 https://github.com/opennetworkinglab/onos/commit/0a0b9e46bfe73b10170128de1fbdfa1d43a9b8fa 21171 0.47685048286149456
3120 https://github.com/cloudfoundry/uaa/commit/cc19ca33c62a807b9b288e8d871ec119902b8c1a 70725 0.652232093410954
5551 https://github.com/apache/pdfbox/commit/f310125075cb978dafc09a797e68c1854894fdd5 14797 0.4760859071826057
6058 https://github.com/opennetworkinglab/onos/commit/e48aa68c1302543b74a36870b6f6ea48b0b56e51 249163 0.7973730268213359
1737 https://github.com/jenkinsci/jenkins/commit/c210a6d2d844f567e58ef87212639d15ebeb5f30 704 0.6818849434158787
1051 https://github.com/apache/struts/commit/f238cf4f1091be19fbcfd086b042c86a1bcaa7fc 210966 0.7667099619802976
2558 https://github.com/apache/tomcat/commit/72627da6afca2f54a8b205519a4f62f182d08910 280794 0.46032748833487636
3646 https://github.com/bcgit/bc-java/commit/70fd551b23833d20b509460a687ad0b77b975478 52477 1.0
5223 https://github.com/apache/ofbiz/commit/d1c094bcb6fde3c8c90cfdc110fc6ecdb1e4a31f 199579 0.5280708717830147
3652 https://github.com/bcgit/bc-java/commit/2d8b76eee0a177680dfad8434b2dfb24d745c0ee 13477 0.8345553928421968
3134 https://github.com/cloudfoundry/uaa/commit/0dac7e3cad1249bfd58ffddbf6d77377c7d8126b 25914 0.5962537763722422
5545 https://github.com/apache/pdfbox/commit/171e201af150d2a5204bd5152737becc4b6cbfc2 41532 0.3639015556703639
2212 https://github.com/apache/tomcat/commit/2ae39836f5ce4516e95437d5d73305c03bbcfba7 191303 0.7247748036814297
4105 https://github.com/apache/cxf/commit/bc37bdbf19a7950840c746cfddf7bde3ae59967a 140242 0.5381329944605998
2574 https://github.com/apache/tomcat/commit/023bd52733296f30b351c48b571b44bd635ed34e 20782 0.4767382100135183
6712 https://github.com/eclipse/rdf4j/commit/00896609dd9c499d6f7225044ccc70157dede195 208627 0.7113441772592017
6706 https://github.com/tada/pljava/commit/55fc656cdbb99e289f71a11fdfdb162b0305f35b 268395 0.7772932764574396
4111 https://github.com/apache/cxf/commit/2bb0a53681afac797d4c61c1865aca4fb0cd5975 63678 0.78183561973897
2560 https://github.com/apache/tomcat/commit/ac4a40ac84260236f9ce22ac65f4292c569781a1 12440 0.5557147630515097
2206 https://github.com/apache/tomcat/commit/77f9075b98366af2970e20c53d6deeb07162f4fb 94525 0.6302511281904722
4677 https://github.com/apache/hadoop/commit/76a10429809c001c8f75e94e39729987d8100d00 195630 0.5643856706049735
3118 https://github.com/cloudfoundry/uaa/commit/d0bddaa8779cf6426382e9711b3b5ee381dba3aa 119762 0.5001167755715173
6060 https://github.com/opennetworkinglab/onos/commit/4d69087215ae59342d519c4f37df2237070556c1 68565 0.6624544005979657
4887 https://github.com/apache/jackrabbit/commit/9497ed16b1faeb0071c02735921677ff4f56879a 166727 0.5554299356789492
3130 https://github.com/cloudfoundry/uaa/commit/1aa5158ed44c41c1b7274d25a5814502240b1bf7 101414 0.6632019683363237
6048 https://github.com/jenkinsci/depgraph-view-plugin/commit/76b3e7bff1c53256fef818927576ff32425828d3 249163 0.8308224473008905
1727 https://github.com/jenkinsci/jenkins/commit/951580fb1854611ce4eee31f84e15849b4199643 80935 0.5210895160935204
3656 https://github.com/bcgit/bc-java/commit/137e9395d5c08c3530a5293b9c2366a59871d15c 11563 0.5860746110105263
5227 https://github.com/apache/ofbiz/commit/6877526ba13cf738ddd2cf2f3caffa0290070995 110147 0.535617252893853
2548 https://github.com/apache/tomcat/commit/057a401bfae22c454880a9c0cfc8ba2a7cf1c15e 52900 0.5319973823507566
3642 https://github.com/bcgit/bc-java/commit/315441a9901f472fb6bcfccf48fbf94a55e00f83 16603 0.5398524343296173
1055 https://github.com/cloudfoundry/uaa/commit/81aeb7a3aa048ea086c494f725d643e48dd9266 197494 0.683917805297467
4893 https://github.com/apache/jackrabbit/commit/6e86a1e947fd4e38ac4d9c3a58bebeebf7f3d5cb 156260 0.5505016003041391
3124 https://github.com/cloudfoundry/uaa/commit/6b4189a14b36556a3038ddb1e72751ac0806fde0 181627 0.6277614621716455
1900 https://github.com/apache/tomcat/commit/e4cbf719bc91fcf54e2369eaee36fb35fd511bec 194545 0.6265319761396253
3871 https://github.com/apache/struts/commit/272feecfbd9bd69bf500af31541567f254dd0c6d 84506 0.58654482755059
3865 https://github.com/apache/struts/commit/76371a631e4c97479c34939e65431a7e859d00b1 194545 0.5425245302238706
1914 https://github.com/apache/tomcat/commit/ed1f376ac2e867a67de2b2e188906d9354e956b5 56159 0.708168507353409
270 https://github.com/apache/openjpa/commit/d3c68ad3bb9aa0e4e9abbfdec691abb06df642a5 142043 0.5169799783041374
5582 https://github.com/apache/commons-fileupload/commit/6ad8dd75146f4f4376ab31084ba1f9aaf5e9c1c7 147929 0.5322068335366498
3695 https://github.com/FasterXML/jackson-databind/commit/b1b5fa5868d75f9e857b8bfb305c7848d1062142 15910 0.788600093123347
1082 https://github.com/cloudfoundry/uaa/commit/90b6f8c06afd96efd39f87deaaf9a94cd0fd082 231042 0.5141530606401267
6921 https://github.com/apache/tapestry-5/commit/10b82399436897d492a786087a1ffd04382b71e1 19173 0.6029901697021509
1096 https://github.com/apache/syncope/commit/b25a8834db2cc7ea45707a1218e85e047568427 121287 0.6044249269533707
3859 https://github.com/apache/struts/commit/749c131de917c2ad9833ac521441359919d9385a 281555 0.9018567454569466
3681 https://github.com/bcgit/bc-java/commit/f85352e7f5a45778db9379c1e0f4af1426330566 93672 0.7204071017581282
4850 https://github.com/apache/jackrabbit/commit/31fc66e55ab69e9cd437e0685c59b0fa3bdcb1a0 166398 0.5721362691183418
264 https://github.com/rhuss/jolokia/commit/5895d5c137c335e6b473e9dcb9baf748851bbc5f 192426 0.6156888775079338
1928 https://github.com/apache/tomcat/commit/02a8928e1a189f032a3309b12aad869301040d50 44503 0.5289677912568534
6510 https://github.com/undertow-io/undertow/commit/30cb502feac2042e54c37030c751074a26e0ccee 238088 0.6139588738494959
2776 https://github.com/apache/tomcat55/commit/9f27a5264209a40e6dcf08af89866b9ccdeef275 25734 0.6455523696637219
5019 https://github.com/spring-projects/spring-security/commit/9afefef3b90afd75c28976ec8981ef4d25b320d0 222609 0.6345220188248455
4307 https://github.com/apache/poi/commit/e0b971bb3c0e30e17c2af5d46438ef2ae56045ae 128217 0.561273591090588
3468 https://github.com/apache/tomcat80/commit/2f40294215953fedd3ab69f659b1b5e7fe4071c7 67390 0.5527176638443657
2010 https://github.com/apache/tomcat/commit/2bee9784520fcf4ebcb9df66351476a74c95a2ee 201635 0.6819049513858862
6276 https://github.com/cloudfoundry-incubator/credhub/commit/6e102dbb5f847c76307cdc10356ccbe97f441a36 15353 0.8142269014488457
7168 https://github.com/rabbitmq/rabbitmq-jms-client/commit/67cfc4d01d5b8162aa96025e2e8cf1444a10d262 230023 0.5230070343722236
4475 https://github.com/apache/activemq/commit/acab282d9cb348cfc608ee405de4f9d3566698cc 83868 0.525267138309192
2004 https://github.com/apache/tomcat/commit/c596252fa8769049b11fa4517792fe08f2fbd3d5 219689 0.609038285634701
2762 https://github.com/apache/tomcat55/commit/442c3ed309f0c7698b285220702ce9b06ed4bced 37073 0.4832792196486322
4313 https://github.com/apache/poi/commit/63c25f927eb274c58eac1d0a68bce702547c594d 30534 0.5185831283758209
6504 https://github.com/undertow-io/undertow/commit/160f3783d023810f26db264c38c1dff7d08b0850 265139 0.6436528745499269
2992 https://github.com/cloudfoundry/uaa/commit/bfc6f94d0fd82e3a8c1b7e47515c75c7671a5596 47261 0.5474884306774916
3454 https://github.com/apache/tomcat80/commit/c0398b6c0001d042dcfb88594765ff7979f7ec08 239114 0.6574141393463254
1525 https://github.com/apache/camel/commit/aa005279d9a42f61996afeb3385b5a62b3afb52b 258502 0.701083938178266
3332 https://github.com/spring-projects/spring-framework/commit/7fd0cac6f2fb0cd5162e5580f535655069a71a4c 230064 0.6355844240669848
3326 https://github.com/spring-projects/spring-framework/commit/d537a1cfb48b628af19d45641be87e6dec2460e8 194573 0.6452566074080648
5757 https://github.com/inversoft/prime-jwt/commit/4f744f1f2bf5152ce86187da3c340a1218c71609 26501 0.7709204786427328
2038 https://github.com/apache/tomcat/commit/bccb93c9232d970eee3a83e22c295a8b3594d34b 194573 0.6221239517171718
7140 https://github.com/droolsjbpm/drools/commit/303d9416e28ae44faad611ae7eaac2c34192486c 70037 0.7751992953756686
6538 https://github.com/apache/xerces2-j/commit/6796634d02a9133e8f558ddfb181354dbd700d0a 9657 0.5216380003458702
1257 https://github.com/apache/tomcat/commit/f8b316acbbf9fabf87cc137e9777e912eda0d834 167490 0.4823118609567191
5031 https://github.com/spring-projects/spring-security/commit/52be2839ca097b4d5dfce927d7ff0a644c0baafc 283113 0.9251605609553898
2986 https://github.com/cloudfoundry/uaa/commit/d8ed20d4e37e8357b00bba7a384200b1b0acfcb9 154084 0.4796219126907513
3440 https://github.com/spring-projects/spring-framework/commit/9ec96f6141a35f6615c5bc68bceac3facd44e8ae 45642 0.706283740864699
5964 https://github.com/looly/hutool/commit/4c278dcccb0b71523f560bfa8f5e2919636ffe2d 124747 0.8487782395932475
5970 https://github.com/looly/hutool/commit/bea37293ad6abe468c40a28d029f56c14177283c 11328 1.0
2979 https://github.com/cloudfoundry/uaa/commit/5da81c3d4626c44a06b0ff8b8632822eff83b92a 25123 0.5571611036463923
1280 https://github.com/spring-projects/spring-webflow/commit/0f0a870c1efa6a11a1fd6efb18ebdda6fba1d327 225258 0.6050566351796857
2951 https://github.com/cloudfoundry/uaa/commit/a73acc7978dcd36dd70141d2dbd4ab333eeddb28 32384 0.6714542872901513
3497 https://github.com/apache/tomcat80/commit/bd7b98f89f081165388259d4fc1db70fcda54f16 226162 0.5538383969982191
2789 https://github.com/apache/tomcat55/commit/64b11723bd603c6cb4180c81e037d2b89f667c31 221533 0.8550870767476115
5780 https://github.com/apache/santuario-java/commit/d363527ac82495562f34f8f6d139aaa67f91b8f1 157020 0.7672446743116906
5958 https://github.com/looly/hutool/commit/83de8ee3a685cda46f1d9a2472063563893c1d03 132952 0.6476750070312522
7197 https://github.com/nahsra/antisamy/commit/8edb79460151bf8bc44cc5fc7f9da8b8eb951ed1 239066 0.6893740715195885
7183 https://github.com/dom4j/dom4j/commit/92d87957c4c4948d048ff7729c77ba10474f73ae 257515 0.6583860281750714
5794 https://github.com/apache/santuario-java/commit/cbcecd6f0780f9eb372750075309a6f9ba76cf16 68889 0.676269434634305
2945 https://github.com/cloudfoundry/uaa/commit/80b4ebb4d245a64d3c94288d5537ea0ba5db42ce 283087 0.4234841717558575
3483 https://github.com/apache/tomcat80/commit/9b181ec0f9cf0e1c60c6e2771d48accee463544b 244680 0.6298054229548966
1294 https://github.com/pingidentity/ldapsdk/commit/2f24f8f995f4ccb5d0dbcab1963870ba36df04fe 110227 0.49800229599505685
6464 https://github.com/kiegroup/jbpm-designer/commit/6a11e89197c68ba38cd46b386a8122365684b884 139474 0.5989957471860773
847 https://github.com/cloudfoundry/uaa/commit/7db5e5846961e08295b1ef7af909f267eebe5da 109661 0.8559309463685896
4273 https://github.com/apache/poi/commit/b99fd29146be4564d746766943e26a6253437a12 66690 0.4919028129880305
2602 https://github.com/apache/tomcat/commit/518c27c3fbcf1d09d4f96a49ec515d8e77f18f07 130797 0.5619509735827661
2164 https://github.com/apache/tomcat/commit/cf6e93742cefc91248595fdc3c110c6b12fe9bb5 12427 0.5120961288968253
6302 https://github.com/spring-projects/spring-data-commons/commit/55d988e7b77ef130892f54dc603bf578c485fd14 254812 0.6498769698249739
7008 https://github.com/candlepin/candlepin/commit/ad61f9c0c5159b05e7bd20827af21ad650e7e424 8913 0.4811819862257987
6316 https://github.com/deeplearning4j/deeplearning4j/commit/f25e3e71e5fcfbb74f89005001db77c6ec2e6d59 103492 0.4050568513251089
2170 https://github.com/apache/tomcat/commit/8a2a441b7d35ce7b02d5f259d6311e586c2ef10d 196671 0.4836134577961478
3508 https://github.com/apache/tomcat80/commit/3e43cff4e701bc5815ea5936377168abaf999d3a 157125 0.8069414359564525
4267 https://github.com/apache/poi/commit/ee57263273e02125b92b220e76e16b1279da3e45 267168 0.5117115262158316
5179 https://github.com/apache/ofbiz/commit/71eb90cfa288ddbbc42339f30029fa77ec56cf92 274652 0.48885108809918715
2616 https://github.com/apache/tomcat/commit/a8f8d04566997c60a520fde126b4718847c6767f 245518 0.5315562710971844
6470 https://github.com/kiegroup/jbpm-designer/commit/31ef1a10fa4c87deb32ba5ad7ed656994ce58c50 254409 0.5753139502224942
3520 https://github.com/apache/tomcat80/commit/62ffb42e2c693657976c7775e58bbd9b423af7df 6262 0.49494272145666407
5151 https://github.com/apache/ofbiz/commit/9a32effa6d1f9860628c4d21acbc83a0d763d7cd 175184 0.5728995771602301
1337 https://github.com/apache/camel/commit/7c9b9056353536742091df2db842d922c8c153e4 126101 0.6980330949937675
7020 https://github.com/jenkinsci/ccm-plugin/commit/d665ded53da03998daf4eaebb3b7fc4ad3026ea2 165507 0.7787855786850003
2158 https://github.com/apache/tomcat/commit/d5113deea13c1d2e2ce3a07a76c787c0bc7c7340 261695 0.6119151061456857
4529 https://github.com/apache/activemq/commit/8ad6fd36a1a285e37d5e910a1c43994af2100fd5 210897 0.7019977082435178
5623 https://github.com/apache/nifi/commit/87c666fadbd79e41ee1b9af7f1d4d00162bed151 151359 0.5930151505191259
3252 https://github.com/spring-projects/spring-framework/commit/c09d3971a149b75855138704d5c63cb2ca91a0ad 102309 0.8706948279245981
1445 https://github.com/apache/camel/commit/942ee3d085be44147e025763d844a7bbbf553d1a 106514 0.691652972809693
1323 https://github.com/apache/camel/commit/ba69c27bbe9bb156a34e7cc1a3fbaf5c74dce151 212925 0.555820114190414
3534 https://github.com/apache/tomcat80/commit/5d13d13e1162ba40451c6dc7bc184ed50209336c 229768 0.4743955516917205
2819 https://github.com/apache/spark/commit/cff560755244dd4ccb998e0c56e81d2620cd4cff 83304 0.7128298853725582
5810 https://github.com/apache/lucene-solr/commit/9ce830d8f2a547b763999ea3790bab6a4d8727a3 243876 0.5764693397614344
5804 https://github.com/BigBadaboom/androidsvg/commit/e83826e5f69f21d374b94162b0e1260b5ea7394c 232543 0.7765266091535616
648 https://github.com/spring-projects/spring-framework/commit/e2d6e709c3c65a4951eb096843ee75d5200cfcad 230064 0.6497130965180341
660 https://github.com/eclipse/jetty.project/commit/0fac295cd82b59085d4aae5ca6792b2cda752455 44421 0.5884128757268388
2825 https://github.com/apache/spark/commit/8ac0f35be42765fcd6f02dcf0f070f2ef2377a85 196807 0.8740582355077069
3285 https://github.com/spring-projects/spring-framework/commit/9a1b41ffb8d30e47bcd1a4ac27871b972425c3b8 2290 0.7639067801648615
106 https://github.com/apache/tomcat/commit/74a0585c82d981e80c82cd88d1cbcdb80082b77b 212891 0.5587774997793722
1486 https://github.com/apache/camel/commit/f0f14d4c60ccf7fe740e042fa90ab86b3211a697 252945 0.7384985244257067
3291 https://github.com/spring-projects/spring-framework/commit/04115a4ff42bcc61ce30edf85b65b8263692cfa6 74164 0.3194651240815311
5186 https://github.com/apache/ofbiz/commit/c935e8a208562b68fcfc6d2f0c75e7014a92a88d 117126 0.7073251838056408
4298 https://github.com/apache/poi/commit/9874fdf90c8e18608927f4cc2a9307c7fec74abd 150517 0.5770565934576284
674 https://github.com/apache/directory-ldap-api/commit/075b70a733d7af150b3d85684149ff5f029f7fd 252489 0.8457202379084137
3078 https://github.com/cloudfoundry/uaa/commit/6e7d5b6b0765650cffe6c44f9dca0982aea916e8 6914 0.44665884959746527
5409 https://github.com/apache/cxf-fediz/commit/feacf96c5f68a49dcc5e6c7d14214b3bdab4622c 109899 0.8092020685130246
2366 https://github.com/apache/tomcat/commit/fdfe1e8cfba27c0281e2848df049cfb0962c0c3a 163860 0.6222428139904389
2400 https://github.com/apache/tomcat/commit/45f9f23f590e918097c9b8f70135fb102c634dfc 30366 0.5601843175980892
6666 https://github.com/apache/storm/commit/c5d77ace8fa0cb2a11a0672941f2e9fa655aef4c 146497 0.7991145331750363
1109 https://github.com/apache/tomcat/commit/f8db078f1e6e8b225f8344e63595113ca34cd408 122033 0.5540555544761137
6672 https://github.com/apache/storm/commit/e34feda46c20160aefff33a3e0d99ff5c08ad887 122577 0.860568649550999
489 https://github.com/apache/tomcat/commit/8884dae60ace77a87ed9385442ce429e98c3a479 107774 0.5396979924883863
2414 https://github.com/apache/tomcat/commit/6f2e74a62878c64827d2cd075ffeefab0840b2c0 148712 0.733584392327515
4065 https://github.com/apache/cxf/commit/ff742436a3e177dc61106edf08f2509e727362dd 196145 0.7297377687984692
2372 https://github.com/apache/tomcat/commit/e1f3121f53f9bacf36fd7555f1931e1f0a0731b9 147929 0.9723710517299844
3044 https://github.com/cloudfoundry/uaa/commit/9cfdc99a0d92228a301adfed4f6e88082625a637 10067 0.545981749600635
5435 https://github.com/apache/cxf-fediz/commit/2385ca7cca384c387ea62482a4fe203b896a085a 98672 0.7315235831675219
7222 https://github.com/jeremylong/DependencyCheck/commit/a7e98a6ebb6bafb45f1a3eafdd0c6453ff01e1a3 174302 0.6968376080661056
6882 https://github.com/apache/cayenne/commit/b43ea10878f049d11f05d7164bbd4b44e3e2e0c0 32495 0.8261826549434337
1135 https://github.com/cloudfoundry/uaa/commit/01edea6337c8ddb2ab80906aa1254d3c1dc02fb 45642 0.5635644400868448
5353 https://github.com/spring-projects/spring-security-oauth/commit/f3bd211ace5469ac751763ef353fc7470ec30dec 188514 0.7341442955737243
2428 https://github.com/apache/tomcat/commit/3333b2e6afcb0ba6aa48c3cec261a81575cb2e62 279850 0.4019447241457413
5347 https://github.com/spring-projects/spring-security-oauth/commit/ad859587eb3915cfbc22e58bf15dbcbe9b018010 183406 0.5892405570986279
3736 https://github.com/FasterXML/jackson-databind/commit/275275afb30b99deed118dcc6dee4a221696001f 151487 0.7268130378081596
1647 https://github.com/apache/camel/commit/8d3c20956fb343e0e9209bb1585ce951ba408665 209555 0.7472574372164491
6128 https://github.com/javamelody/javamelody/commit/2f66cc6d6b794f490b37b43798d6ae1e5d245a84 179827 0.6373369581519922
3050 https://github.com/cloudfoundry/uaa/commit/6820a7b37f55a96520ef0cddb4696c5b811a19dc 243047 0.5477221216416945
5421 https://github.com/apache/cxf-fediz/commit/6112d1a0f882acb9f94ab619df9928750b158287 75676 0.6844207463147564
1874 https://github.com/apache/tomcat/commit/7604ef9531bc3ba0affb42cf2c1ac4761537284c 78294 0.7353380581698932
338 https://github.com/apache/hadoop/commit/12258c7cff8d32710fbd8b9088a930e3ce27432 262425 0.7211280018797804
3905 https://github.com/apache/struts/commit/eb41dc6ea6c6b677c4f880e4a88e8c43ac501e9f 65647 0.6676054219573264
3911 https://github.com/apache/struts/commit/6137ac2293a2649400c22c4d81d9a2018e80bbf3 110742 0.6631447023903982
6869 https://github.com/OpenRefine/OpenRefine/commit/e760750b579573933f38dff815c359330b22fc3a 101633 0.49874663399327734
1860 https://github.com/jenkinsci/jenkins/commit/86cf920a5ccf99fc356d6be6dee251d6063b1177 154084 0.6317699508590787
1848 https://github.com/jenkinsci/jenkins/commit/8b627acc0afd438e317e7d8bf1a47e10a46033a3 249324 0.6918568636778754
1690 https://github.com/jenkinsci/jenkins/commit/1571359f18f406e79dd29486353aad8ddd7afe20 127302 0.5978034575107662
304 https://github.com/eclipse/jetty.project/commit/3e7b5f0fa918633ec24bd1bc23d6ee76d32c7729 38909 0.6566730559544606
2399 https://github.com/apache/tomcat/commit/b4a784c983fe31672b5aa7a22405389e2f801bb7 121738 0.48625066148396423
4930 https://github.com/x-stream/xstream/commit/5e3f1bfd6bf96821096a445d5d2dbedf7e44ac71 150141 0.4256761804078081
3087 https://github.com/cloudfoundry/uaa/commit/16701f9ea2064886384cd0f0d40d6d650f9b1cf9 10505 0.36211818587945377
5390 https://github.com/spring-projects/spring-security-oauth/commit/90b223a4b0dc89cac723690da7b7dc9b360620e0 1981 0.5265337923352431
6699 https://github.com/weld/core/commit/96328800a69caf638b6542b09bc333738c4ecb8b 60894 0.6569624330511779
462 https://github.com/apache/openjpa/commit/b8933dc24b84e7e7430ece56bd645d425dd89f24 142043 0.5169799783041374
6841 https://github.com/netty/netty/commit/f22f07ec5172ee81b4b16160c1a71ecdca1a8edc 79601 1.0000000000000002
476 https://github.com/eclipse/rdf4j/commit/df15a4d7a8f2789c043b27c9eafe1b30316cfa79 262481 0.7705141833676559
6855 https://github.com/netty/netty/commit/4831eb49da62df72335a337916eff789ac74c0ab 72189 1.0
5384 https://github.com/spring-projects/spring-security-oauth/commit/a924e1047b05960202610f05a48810242e54b4ad 283094 0.7488097464713878
3093 https://github.com/cloudfoundry/uaa/commit/22b88658cce327a4999624d1b0da9493619ae023 44161 0.5057398052414837
1684 https://github.com/jenkinsci/jenkins/commit/61fcf842e7c03e3b7d7e9b9f6a06ad1debbd6ffd 86275 0.5639090595349647
5385 https://github.com/spring-projects/spring-security-oauth/commit/00899995f68404ac25e6dfdcc8ed04af3d53f0e8 100502 0.795494614725085
6854 https://github.com/netty/netty/commit/f35047765f00de1d642d23bc0f980fa8eceacf3b 127372 0.7966999489661982
477 https://github.com/apache/tika/commit/4fdc51a40bf9532d7db57d0b08c1aec3931468ad 186757 0.8909145477742334
1685 https://github.com/jenkinsci/jenkins/commit/d3ebb8a56d06b0a816699fb2cf0c313324c71d80 222415 0.49038048137444273
311 https://github.com/apache/shiro/commit/64d9f8341e1aa7ef1a29744e16ea7c578ca5deee 214896 0.7247340457375272
3092 https://github.com/cloudfoundry/uaa/commit/0d799834c3895df80c64a51f9b17b26d738901d8 179146 0.44537892092551024
3086 https://github.com/cloudfoundry/uaa/commit/f49b545316a5b791715f02956b0db6b3bb1007b9 75676 0.6897747977463261
4931 https://github.com/x-stream/xstream/commit/cff239bf555b5432790e5e73d0e9d67ca1e54277 128217 0.5085321378764597
2398 https://github.com/apache/tomcat/commit/6508ee7aa0162ec6c248979f0a92de5835662b2d 209147 0.46899592694162523
1849 https://github.com/jenkinsci/jenkins/commit/74e6409a06531144316f2e36bdc0b069de52b94d 247752 0.5257600077298864
6840 https://github.com/netty/netty/commit/85f8247cef07c5ed3bcc6f40fba8f54bd186db5b 39901 1.0
463 https://github.com/apache/tomcat/commit/292d6ccdc9edbf80859929b0af070b2ea99fa688 111889 0.5715454093611594
6698 https://github.com/weld/core/commit/486d0b9b64b332896d0a325986f95b9172c87775 57292 0.7304258574547998
5391 https://github.com/spring-projects/spring-security-oauth/commit/64fb349a13b4611107498da9e164fc788c4593d1 231693 0.5635429285876918
6868 https://github.com/OpenRefine/OpenRefine/commit/7935dfd60e8be49e942f919f31f293fc88e1d1a2 38403 0.49896034084528273
4919 https://github.com/apache/jackrabbit/commit/0f6e107dddd72715bbf37cc0bb5b791ad4cab520 195742 0.7723722746946275
1861 https://github.com/jenkinsci/jenkins/commit/2fe47370d1d70b9dfbe75dd0c32854a9c34b212e 190971 0.7414769603595166
339 https://github.com/apache/tomcat/commit/901292cf9d7d8225f8a3b96c7583e2bd8b41772d 202838 0.6628556332456652
1875 https://github.com/apache/tomcat/commit/6b3701edd3d98b7932ca45cdcbafa5f40918a106 43518 0.5847257904172568
3904 https://github.com/apache/struts/commit/b8772583f907079c8df647bb2b8cea4ca5134433 78882 0.6154853987346706
6897 https://github.com/blynkkk/blynk-server/commit/6846b42d7cfef8aaa659b2f75bcc14ef8164c31e 19206 0.5652415281901234
4058 https://github.com/apache/cxf/commit/ae7c3dcfc7e70b8921f1c1c49734dc11ce0fde40 195732 0.9477860413811967
5346 https://github.com/letonez/libpam4j/commit/80b0eaec32b224d8ea5be4a6a28ff083ff529252 17676 0.7128483841741575
2429 https://github.com/apache/tomcat/commit/4d6d00399f5f46504aaa93d3c768246c0a86f32c 74164 0.5650205928946093
5420 https://github.com/apache/cxf-fediz/commit/d8d60f4c1308b64df40b891a51d064b79028f457 81337 0.719511708778815
3051 https://github.com/cloudfoundry/uaa/commit/1c2b9721a6b662056aa4a97c288d150eb9d2ea0f 19090 0.40591607770579885
6129 https://github.com/javamelody/javamelody/commit/e46b17abf7c8a164b110764ca81d195f8ba07e8e 14084 0.6629514713781302
7223 https://github.com/jeremylong/DependencyCheck/commit/a4c1e3b0bca6615d43b579bd014c9bddceeb85be 38367 0.6453229213908568
5434 https://github.com/apache/cxf-fediz/commit/2d811fa6afebfd6d5f1625f28ee10d28c48ac891 222083 0.6530703586546296
3045 https://github.com/cloudfoundry/uaa/commit/07b67d579d3b84e900b907641e749dd0f1bc64b2 25161 0.7367189468691546
5352 https://github.com/spring-projects/spring-security-oauth/commit/e16f5586fd5c0b1af846b4d2c43256a37e725aec 1589 1.0
1134 https://github.com/apache/tomcat/commit/e1bbd13d393229e4e3724cb8a86b18a969e90fb2 101714 0.7368653875924219
4064 https://github.com/apache/cxf/commit/db1e5146e6312a4be35b0ca2644a691cb1d41a0f 143987 0.8144076094560084
2415 https://github.com/apache/tomcat/commit/f0f6a6025f5198c735bec0e776491f31fe6ec0e5 88870 0.7076117749349038
6673 https://github.com/apache/storm/commit/c01b04d4d772b1bdb779cb5d2649620ad82d4b18 118860 0.5525996621921686
6115 https://github.com/swagger-api/swagger-codegen/commit/99842f646f90bdf69fb70a4cc1494421827a56ec 10075 0.6766144656757461
2373 https://github.com/apache/tomcat/commit/22c47be25fe7abd6f712b819e2f8416f873e07b1 10186 0.68084864025248
2367 https://github.com/apache/tomcat/commit/9f18abee8cf0d9945e62d9a5cdeb2db3206662ce 228970 0.6609382429080045
5408 https://github.com/apache/cxf-fediz/commit/e8aec20af5e9f6ca5428dfb74ff1fd2c0e448298 26130 0.9112999522411621
3079 https://github.com/cloudfoundry/uaa/commit/c22e3fa2f08d85298bcb299d6f3407d5732f8e87 108789 0.4963258347743523
6667 https://github.com/apache/storm/commit/5e423647f0f238652b4ad7203f83f527881a8f32 115734 0.818426785114836
2401 https://github.com/apache/tomcat/commit/582298f1aa16efffd93fd04386f120e4f683de8c 106080 0.6572068958881743
5839 https://github.com/apache/lucene-solr/commit/1fc416404cbb008172717911a675e9e9113ad75a 92692 0.8042327149445649
113 https://github.com/apache/tomcat/commit/0c5d3a903598abd7c7ebe1b00e27a6574339c417 62090 0.5636288999324218
1487 https://github.com/apache/camel/commit/c9e26a52222a1e01b324ade199e731d7a96d9811 71488 1.0
4299 https://github.com/apache/poi/commit/27a1a540941f3adf32a707789e755002c44f9645 159709 0.5555424860343899
5187 https://github.com/apache/ofbiz/commit/4851c2da00de617b886213357088e5e0ecc44f0b 19413 0.6498401327023413
5193 https://github.com/apache/ofbiz/commit/c6c78171c048bade962f21fd954c45a0718799fb 25029 0.6454859629214711
1493 https://github.com/apache/camel/commit/6b2a7b12a6761ea2af865c55d4a41cbad00dae98 77095 0.9318038962575683
107 https://github.com/apache/camel/commit/7d19340bcdb42f7aae584d9c5003ac4f7ddaee36 209502 0.7799271591821564
3284 https://github.com/spring-projects/spring-framework/commit/3e9d51220d1383bf590ace5b0c91a41a67b9f2ae 265345 0.7871881398523861
891 https://github.com/looly/hutool/commit/9f8a801c7b98b75ee681c0988e1a58bcfdc21756 285792 0.6534808342558545
2818 https://github.com/apache/spark/commit/c26d174265f6b4682210fcc406e6603b4f7dc784 248071 0.650726864682529
5811 https://github.com/apache/lucene-solr/commit/5b066e091c9982617a06d6857715b075ab8c5fa6 71419 0.8074637337463424
7035 https://github.com/OpenTSDB/opentsdb/commit/ef0679889d931e626a1b0f881731b5a83e5153f2 216033 0.5242495502452781
5622 https://github.com/apache/nifi/commit/83ca67649263bd5451807c446e03fa02a2429410 177395 0.3796001445418024
5144 https://github.com/apache/ofbiz/commit/81f32d45f123faf4c05c6a6534232461cccfac5e 19407 0.6503831508905524
3535 https://github.com/apache/tomcat80/commit/dc1039e185169cf7a7089c0b18cd8d04f4e83875 239113 0.6165567479956885
1322 https://github.com/apache/camel/commit/d09888f57300b46cdc470d587d3362e48a6dd83d 96221 0.6939919017426361
6459 https://github.com/spring-projects/spring-ldap/commit/c885997cd78acf182902d985e25d36af9d3f2dc6 44799 0.5462625223383805
5150 https://github.com/apache/ofbiz/commit/906e159702adfbd8df7b59048a15da7ab2e15c91 142420 0.5730968417909004
3521 https://github.com/apache/tomcat80/commit/1b8ef0071f13654f998dd01ca21eae48cb3f2ced 50959 0.6766935989127376
4528 https://github.com/apache/activemq/commit/e8a641c6b7a4fe14f7dbc33134a2f833731b05ab 103988 0.6292815773994573
2159 https://github.com/apache/tomcat/commit/a91249fed79407725542970ea26982cb87115168 148237 0.45193704990833883
7021 https://github.com/jenkinsci/ccm-plugin/commit/532c9497ed10cd32d1819a657eb63e1b85588f67 153499 0.6614596902101496
2171 https://github.com/apache/tomcat/commit/18792f4ad9ceb06a0fbd1de3d90c9fab2d64a4d6 215232 0.487695892709751
1478 https://github.com/apache/camel/commit/e4a8235b9ea913777664c18989a5d97fef6afc58 60280 0.7920517699761291
7009 https://github.com/candlepin/candlepin/commit/0ab5da0b2b684f4adcc1434db9d755a4891e0e29 225315 0.734790968750593
852 https://github.com/apache/tomcat/commit/f603f2f4595073f9490e01699d2083112a7c09a7 276906 0.6303766809578975
12 https://github.com/cloudfoundry/uaa/commit/5dc5ca9176ed5baa870680d99f37e7e559dddc5 45642 0.5608477896315772
6471 https://github.com/kiegroup/jbpm-designer/commit/3062029954612a3776e97783fcc51673495cd5e8 78677 0.5397290425523337
2617 https://github.com/apache/tomcat/commit/b1225c9b15fbe89e747aaade02522b738ae0a8ba 83141 0.4896897398108142
5178 https://github.com/apache/ofbiz/commit/9b5c289ab09bb004143d23956be5274ce9468770 30059 0.6475163651198194
4266 https://github.com/apache/poi/commit/3398350f0edf9c7978cfe08dffeb3b64d66c39eb 172375 0.5313742334225602
3509 https://github.com/apache/tomcat80/commit/2b4b27c05d49a8bea6db7cd945ed2fe80de10bb6 105968 0.7455952136078888
2603 https://github.com/apache/tomcat/commit/382da6927b04107790763059c84d46802e5dd937 179827 0.5404088386421724
4272 https://github.com/apache/poi/commit/17a339549da4392415cb11016a906889c7400589 281537 0.42002498113684217
6465 https://github.com/kiegroup/jbpm-designer/commit/b40aa2e305e7e78324e050558c871f2699763864 263942 0.6892735545419658
4514 https://github.com/apache/activemq/commit/a56996dd6cc1249223899555ae2e6c66d7acb9e2 75823 0.5184038376309507
2165 https://github.com/apache/tomcat/commit/43a1397d0ca4ee528a04487ff4303f3d3525862f 171257 0.8040955990031279
5795 https://github.com/apache/santuario-java/commit/ffcb9055ba17b687ba58c96dcf3171e38e0c2c88 29914 0.6294136634148831
7182 https://github.com/dom4j/dom4j/commit/8221b4a5e2efd18bbecdfb14ac784771dd71742d 52048 0.6654869071066118
701 https://github.com/apache/tomcat/commit/49c71fc59c1b8f8da77aea9eb53e61db168aebab 178637 0.5550967989364654
1295 https://github.com/pingidentity/ldapsdk/commit/55cfcf6eeffea4690fa56cf6f69fdd2fcc863b29 287422 0.48457497783065884
3482 https://github.com/apache/tomcat80/commit/9b12a9a5c8688cd44e06004e8a342bd2ecdf86bb 279578 0.47060629177277896
2944 https://github.com/cloudfoundry/uaa/commit/9e06d6aaa1078c94e1a3d3b5c8ecb754e368ebe2 27243 0.6833250184525059
2788 https://github.com/apache/tomcat55/commit/619bbbde532ddc570f185ec1a635ebd2da10dc18 41068 0.6542702557393563
3496 https://github.com/apache/tomcat80/commit/8da6873c6bece76d50e6fe6ad45f871673596525 7118 0.5717146117857093
2950 https://github.com/cloudfoundry/uaa/commit/fff5c3ec27eae50884c3c87350384122c83d3440 89169 0.6293172631703517
1281 https://github.com/spring-projects/spring-webflow/commit/012180eec4920ca5a680b36024434f84f76b1238 20754 0.6223645208247506
715 https://github.com/apache/struts/commit/744c1f409d983641af3e8e3b573c2f2d2c2c6d9 275714 0.7828091692946532
7196 https://github.com/apache/oozie/commit/d718e8075116707cca21b532b80c0d1dd52686b9 232349 0.763489719760749
5781 https://github.com/apache/santuario-java/commit/b7320ccc1560123d558b7636f15b604c0ebbb288 37077 0.42187561522518185
5971 https://github.com/looly/hutool/commit/4405d7b8f90c173c637bd85acc541c34105cce89 114195 0.5897906681538673
2978 https://github.com/cloudfoundry/uaa/commit/878aff0691dbd41ff951754af29d233bb6e3cf80 137438 0.6022638207662188
729 https://github.com/apache/commons-fileupload/commit/02f6b2c4ef9aebf9cf8e55de8b90e73430b69385 191096 0.6277464434969472
5965 https://github.com/looly/hutool/commit/00b632df9962db7fd660cc10b420bb50d51943cd 180917 0.8087573881281004
1530 https://github.com/apache/camel/commit/67386c9b31f8f7f865f3dd1e640ee0026010b3e1 127100 0.8451052647332141
2039 https://github.com/apache/tomcat/commit/30faee306e2dcff762a8e9fd58b06a2c6ef252e0 15340 0.6002154105283405
5756 https://github.com/inversoft/prime-jwt/commit/0aa3440db1da3fbca4aeb73abb7c199cbae6d773 100337 0.6387090886915984
3327 https://github.com/spring-projects/spring-framework/commit/d8215e7c79d7734da06f724e56d4e6a3d3d04c0d 215232 0.5863956049087565
3441 https://github.com/spring-projects/spring-framework/commit/7f58d9ede03ac3817fa45d3baace3bca9a01202d 275760 0.7399255929764689
2987 https://github.com/cloudfoundry/uaa/commit/48ef43215a12b9ddfeb8c4f9c5ae8dfa762d9dd3 257989 0.4815963135391735
5030 https://github.com/spring-projects/spring-security/commit/c0378b9d3587e6f9bc3234bb4be4f90724c97bbd 273235 0.6810711152535466
6539 https://github.com/apache/xerces2-j/commit/2a1668a30fcef91dc0ba7e5e3b8885b36f5cc187 259692 0.6992033547605518
3455 https://github.com/apache/tomcat80/commit/4777e85e173deb476ce4384b45956b1130cf4964 55480 0.5523358310452275
2993 https://github.com/cloudfoundry/uaa/commit/de3c6c8d10f840c75bd0d195a9e6db4427b402e5 115224 0.43389373977581003
5742 https://github.com/apache/tika/commit/645850a6217897606c2c80b407022d629b16c152 272032 0.5608047874064007
3333 https://github.com/spring-projects/spring-framework/commit/4e162122af36446d43f8196b0c8fbf663d3cc4d5 230438 0.6556680032926668
1524 https://github.com/apache/camel/commit/ffd3eb4fc8616f487d556d96bb7bbb61d38f9b03 75377 0.7409062477497719
2005 https://github.com/apache/tomcat/commit/c57903f89d3144498c54cf19c416aaa50bbf1aa3 44503 0.4682751721937639
4474 https://github.com/apache/activemq/commit/aef4ccfe8fd3fad5226b804446f674e1fad2c5e4 10144 0.7152971234929273
6263 https://github.com/seam2/jboss-seam/commit/aa01ac399c1aa1635d93442848d9df6c4807084e 58548 0.6740401973838948
926 https://github.com/spring-projects/spring-security/commit/a7005bd74241ac8e2e7b38ae31bc4b0f641ef973 257936 0.6853369983242532
4312 https://github.com/apache/poi/commit/88b9e48287e67db6faf0878054114886ce7c1d8b 66690 0.5392175647063929
2763 https://github.com/apache/tomcat55/commit/7383894ab8fc4cd5903f427255d083beaad27f52 26490 0.30701647117840253
3469 https://github.com/apache/tomcat80/commit/6bd2121a728fafd71bc617c30cdd85e8d8d63459 174897 0.6284972099394941
4306 https://github.com/apache/poi/commit/9b82e263ba178a3f0ce6a999aae6f12c92496b85 22992 0.7074593948938163
5018 https://github.com/spring-projects/spring-security/commit/2c23c75f91f895e7e16e2faec1f84dae5aaf8661 264400 0.6344763853881474
2777 https://github.com/apache/tomcat55/commit/5f05bfa79a514ba3b828db826f1e340d637bd07c 191072 0.4941628115562788
7169 https://github.com/rabbitmq/rabbitmq-jms-client/commit/d7580d20895dcb86e705d346aafbf85a5501618e 4393 1.0
6277 https://github.com/eclipse-vertx/vert.x/commit/c19b6c83e3f967b90ea3755a20688d63a53af457 222578 0.80148113302306
2011 https://github.com/apache/tomcat/commit/f84da3c2eb997d13bc430dd1c009da321e69273f 199579 0.5782605798177561
3680 https://github.com/bcgit/bc-java/commit/a97b7439d08b79bee6ee997a9adceac092bd3d9f 72983 0.5738139023596265
503 https://github.com/spring-projects/spring-framework/commit/b9ebdaaf3710db473a2e1fec8641c316483a22a 271839 0.7244329781709983
1929 https://github.com/apache/tomcat/commit/c340c69ea8a07fc1470bc359e6c85ea852fc7c7d 165535 0.6358713568872265
5597 https://github.com/apache/nifi/commit/78fbb8f2ee70d264787856e4a6337217bcfeba79 42567 0.6388265982205226
4689 https://github.com/apache/hadoop/commit/bec5b4cd8c1fb27a5b707d601b508224a9c107ed 198638 0.5920512753120156
5583 https://github.com/apache/commons-fileupload/commit/85551c6d55b24a40841d34e569b6dd4058309bb6 271716 0.6784524616323298
271 https://github.com/apache/sling/commit/7d2365a248943071a44d8495655186e4f14ea294 8499 0.5932246198410404
1083 https://github.com/apache/tomcat/commit/d83a76732e6804739b81d8b2056365307637b42d 237385 0.7274757202400246
6934 https://github.com/apache/groovy/commit/d61f359f2cf67b8317f9e80cc62801f736ead48b 4740 0.7403204297322203
3694 https://github.com/FasterXML/jackson-databind/commit/0e6cef92b3b7fa46267fb81e4d89262c704b6ea7 126523 1.0
3864 https://github.com/apache/struts/commit/4c96d239dd5dc9442185cb577ae1c45ee68cb911 87861 0.807915026208671
1915 https://github.com/apache/tomcat/commit/b0a707cfd93c481e89385d8605e98dce225d35d0 44456 0.7517040395798829
259 https://github.com/sebfz1/wicket-jquery-ui/commit/4ade74d87389935dee5ba49b8cdd0abb075cc50 212830 0.7210036623683361
1901 https://github.com/apache/tomcat/commit/48623b95787a76fd0dbd210aab2177bd6c0ec16f 113929 0.6713937501801749
3870 https://github.com/apache/struts/commit/c69727c4bbf8f7ccc3c8b6c8ef101c7b35dd2be6 212298 0.4779408620238462
6908 https://github.com/zeroturnaround/zt-zip/commit/0d31fefbcb0202807430b3b74805f1a0c4a953fa 262481 0.8432332723888384
1054 https://github.com/cloudfoundry/uaa/commit/96fe26711f8f8855d2994a531447f730afd61844 179308 0.46129726959412976
5232 https://github.com/apache/ofbiz/commit/acc5394c0c2527f22bb36dfc6db6819aa7381e8e 84838 0.786401304090446
3643 https://github.com/bcgit/bc-java/commit/8a7c4bbefd743b5f716aecbbc5001838576a2d6c 274008 0.7800995123379311
3125 https://github.com/cloudfoundry/uaa/commit/261ddccb66ef36756f5742421cd66af0ed676334 131831 0.60980392275349
4892 https://github.com/apache/jackrabbit/commit/ec6ad6afea2ea9ccd819943ea9b6aa5ca9977a5d 55215 0.8125077051531784
1732 https://github.com/jenkinsci/jenkins/commit/26f290b5b77af0f3f202db9f4ee4b5bdc8236513 95973 0.5860905510354485
1726 https://github.com/jenkinsci/jenkins/commit/7025cf3428731b73606487ef7509ba09388d063b 187977 0.7210881032191638
6049 https://github.com/jenkinsci/depgraph-view-plugin/commit/d5397e91a78570288bee074fca271811f7c6f5a6 138373 1.0
3131 https://github.com/cloudfoundry/uaa/commit/27f569b34cf3f2245c4e48383bda47738bc7d35f 150465 0.4787500872314755
4886 https://github.com/apache/jackrabbit/commit/e22d08dcb6100b5b5c77e986e363042e972629d4 7871 0.5616063174777497
2549 https://github.com/apache/tomcat/commit/8aa443abb377a47980c07649a2bb96869b2de092 162789 0.7801212646219885
5226 https://github.com/apache/ofbiz/commit/2275cb5b78f543f28fb947a98a1c001af1f03d09 21021 0.6578883336706822
3657 https://github.com/bcgit/bc-java/commit/03ee58417b4a74332150d1646b0eeb4d6161585d 147495 0.6080938292354173
2561 https://github.com/apache/tomcat/commit/d823b258a1ff71f8b99b9f93f4752d450b47b3c4 197623 0.8290377381917808
6707 https://github.com/tada/pljava/commit/fe656c54eeabaee29270986b9fe55dc267d99cfc 207146 0.5954970152077855
6061 https://github.com/opennetworkinglab/onos/commit/1dcb048ab2beb67f6fb9c973df6ce3db53613968 113746 0.49400666658827397
3119 https://github.com/cloudfoundry/uaa/commit/a2946bf33dca266bcf52377c61a3433cc5b277fd 75676 0.5732043602592721
5568 https://github.com/apache/pdfbox/commit/672efb927b11201a8ed465fa4959588d1b6c3072 218568 0.6924458236553801
2207 https://github.com/apache/tomcat/commit/ec181961e44ddb9eca1c6249c38757b24b8cfd13 239797 0.8881664458124904
2213 https://github.com/apache/tomcat/commit/13e704f4ae0fe4f6933f87f2fdd7e110b47224b9 44447 0.7479627972734355
6075 https://github.com/swagger-api/swagger-codegen/commit/cf5982d2c457b503bc1860f276f8e3c7da5990ba 53867 0.7620646690238098
2575 https://github.com/apache/tomcat/commit/203645cac4cab5bfceda48730f0b7a48d8e9146a 136468 0.7724935848761489
4104 https://github.com/apache/cxf/commit/a32bb0bc9538a74e6d9236287da9180c1f8ab3a7 21323 0.6871506136261712
2205 https://github.com/apache/tomcat/commit/e45e2a6b228c372a07e1099a61a324336ee28f18 188672 0.4938009175738401
6063 https://github.com/opennetworkinglab/onos/commit/4822922b233ca06f8aff51f222c0b1502af51f77 278696 0.5495466459282922
298 https://github.com/apache/syncope/commit/bdb6a180dcae6f1baaff16619cb906b7292da0d 12624 0.6440925237861144
6705 https://github.com/tada/pljava/commit/e9f1de099b4c962875f86b44e26f6cf66b1e128c 7028 0.601213751688517
4112 https://github.com/apache/cxf/commit/4bf328ae55f5877ca538386d6e0892af0a7a57a3 275760 0.7796013617478366
2563 https://github.com/apache/tomcat/commit/553259ca09b410c359967b38563f62a24d2a7d56 2460 0.658294807093777
3669 https://github.com/bcgit/bc-java/commit/b51e7e96a4cdbc391b66518b2c81e13b0cc4c32b 2604 0.8279446389533301
4106 https://github.com/apache/cxf/commit/0822e7f16ad39c039df587e3cf36aee28636ed10 134939 0.693237170139865
5218 https://github.com/apache/ofbiz/commit/4b6cbde5ac7e61180b0697d1a72e25037c3dc3ea 45188 0.613921277057123
2577 https://github.com/apache/tomcat/commit/a4988264aa308bae222db297f1a69315c8427e66 144165 0.6507647146703274
6077 https://github.com/swagger-api/swagger-codegen/commit/12bcb2dd151fafb87bbc98ab97ba0a5d5832ce2c 19977 1.0
1718 https://github.com/jenkinsci/jenkins/commit/0aa344104c833aafc2f6a31fba3cc78db5d5b02d 286824 0.5153857494928094
2211 https://github.com/apache/tomcat/commit/5ab701cf6aa90e8ed18b7021e8dbb7ac3df6b92c 105003 0.6762202088122912
1730 https://github.com/jenkinsci/jenkins/commit/d5e68b6c5ddcaff51eefbe59c00f63adc27d4dd4 188292 0.6879634708932051
4890 https://github.com/apache/jackrabbit/commit/d71a22f12c97504fefc688c419115a09c44a870c 243144 0.6519202469960796
2239 https://github.com/apache/tomcat/commit/553eb18995b5f8d005699293fcc06a88ee19fbf6 199349 0.6572407303956032
4648 https://github.com/apache/hadoop/commit/6702e7d66a4949a40bcdbd9f51ca1e746c8991e1 211767 0.58479197015139
3127 https://github.com/cloudfoundry/uaa/commit/5726aab9256fb9011155c6d3f1d390b367a0b79b 230455 0.5420497857844776
3641 https://github.com/bcgit/bc-java/commit/65298c04a90c6d62b9b3123d4064468b54983365 177395 0.6005270774124294
3899 https://github.com/apache/struts/commit/ed5bacf2ecef3424b91955d3eb9ace7e27f69124 280537 0.7439128013935551
1056 https://github.com/apache/commons-compress/commit/6ced422bf5eca3aac05396367bafb33ec21bf74e 210296 0.511063933469317
6739 https://github.com/apache/httpcomponents-client/commit/020ec5017f558658961bd8fc85f901bb181642d0 220971 0.5867557218345008
1042 https://github.com/apache/struts/commit/76eb8f38a33ad0f1f48464ee1311559c8d52dd6d 224552 0.7311627455722229
3655 https://github.com/bcgit/bc-java/commit/13ccbc4022c308d6a2d615949ddd72eed2b1b22e 287388 0.6294828208396658
5224 https://github.com/apache/ofbiz/commit/f0a919be576d5781c4b5498ac539492632a213bb 14036 0.6733429136268713
5542 https://github.com/apache/pdfbox/commit/367dcae1a6ba9d02ffb87aa31051f747cae5db88 278537 0.6077215355402127
3133 https://github.com/cloudfoundry/uaa/commit/8e318ae7d93f04ba7ca8e83cdb11195fb0474311 246158 0.6181620960292237
1724 https://github.com/jenkinsci/jenkins/commit/25eff9006fb8035ac6e25d267b154df31d8977a6 214327 0.618663213249939
1917 https://github.com/apache/tomcat/commit/5b8e25a31b1b95af0dd834a2fccb90803b9660ab 129466 0.7293386124634185
529 https://github.com/FasterXML/jackson-databind/commit/27b4defc270454dea6842bd9279f17387eceb73 43886 0.3638181965721136
3872 https://github.com/apache/struts/commit/c1bec83192f87908944b5f3cb1194018f9695d94 277789 0.637845273244855
1903 https://github.com/apache/tomcat/commit/7665e65ca3aac5706242613d15cfbe8655d67be6 169095 0.529241234252073
5595 https://github.com/apache/commons-fileupload/commit/1d3c22fb4e3b47248ad2a9402c5ef9c08e43f385 269562 0.8128843060210632
6922 https://github.com/apache/directory-ldap-api/commit/5ee0c11c92a54cac4bffc8558ca5d016a3fed4a9 6887 0.5142931010892785