-
Notifications
You must be signed in to change notification settings - Fork 1
/
ExperimentLog
1927 lines (1861 loc) · 68.9 KB
/
ExperimentLog
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
All Git projects
Date 7 june 2020
Eclipse
https://github.com/eclipse/chemclipse
Branch: develop
Commit id: cbfd2117d0fd106683a40c5434d72974a7d904d1
Date: Jul 8, 2020
Commiter:
Source Files (SonarJava): 5269
Source Files (Bash): 8844
LOC: 499367
Detect with miner
2164 - MathOnFloatCheck=216
2095 - UnclosedResourcesCheck=54
4973 - CompareStringsBoxedTypesWithEqualsCheck=34
2184 - CastArithmeticOperandCheck=14
3067 - SynchronizationOnGetClassCheck=0
3032 - GetClassLoaderCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
Repair
DEFAULT
2164 [Crashed] [Build id = 5]
2095 [Crashed] [Build id = 59]
4973 [Crashed] [Build id = 60]
2184 [Crashed] [Build id = 61]
SEGMENT [segment size = 100] [MaxFixes = All]
2164 [Build id = 1]
[File Tree build time] : 196 ms
[Total repair time] : 107000 ms
[Total Repair Duration]: 2 min 12 sec
Number of Fixes - MathOnFloatProcessor: 32
2095 [Build id = 2]
[File Tree build time] : 154 ms
[Total repair time] : 159134 ms
[Total Repair Duration]: 3 min 7 sec
Number of Fixes - UnclosedResourcesProcessor: 0
4973 [Build id = 3]
[File Tree build time] : 143 ms
[Total repair time] : 105908 ms
[Total Repair Duration]: 2 min 14 sec
Number of Fixes - UnclosedResourcesProcessor: 25
2184 [Build id = 4]
[File Tree build time] : 170 ms
[Total repair time] : 103111 ms
[Total Repair Duration]: 2 min 11 sec
Number of Fixes - CastArithmeticOperandProcessor: 8
https://github.com/eclipse/eclipse.platform.ui
Branch: develop
Commit id: daa91700a98526dd602063066c6aa844e7f2d656
Date: Jul 8, 2020
Commiter:
Source Files (SonarJava): 6067
Source Files (Bash): 8983
LOC: 1113881
Detect with miner
4973 - CompareStringsBoxedTypesWithEqualsCheck=43
2164 - MathOnFloatCheck=29
2184 - CastArithmeticOperandCheck=25
3032 - GetClassLoaderCheck=7
2095 - UnclosedResourcesCheck=5
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
Repair
DEFAULT
4973 [Crashed] [Build id = 6]
2164 [Crashed] [Build id = 63]
2184 [Crashed] [Build id = 64]
3032 [Crashed] [Build id = 65]
2095 [Crashed] [Build id = 66]
SEGMENT [segment size = 100] [MaxFixes = All]
4973 [Build id = 7]
[File Tree build time] : 239 ms
[Total repair time] : 157025 ms
[Total Repair Duration]: 3 min 38 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 38
2164 [Build id = 8]
[File Tree build time] : 118 ms
[Total repair time] : 154309 ms
[Total Repair Duration]: 3 min 36 sec
Number of Fixes - MathOnFloatProcessor: 6
2184 [Build id = 9]
[File Tree build time] : 127 ms
[Total repair time] : 175222 ms
[Total Repair Duration]: 3 min 57 sec
Number of Fixes - CastArithmeticOperandProcessor: 22
3032 [Build id = 10]
[File Tree build time] : 136 ms
[Total repair time] : 151800 ms
[Total Repair Duration]: 3 min 36 sec
Number of Fixes - GetClassLoaderProcessor: 1
2095 [Build id = 11]
[File Tree build time] : 132 ms
[Total repair time] : 271592 ms
[Total Repair Duration]: 5 min 33 sec
Number of Fixes - UnclosedResourcesProcessor: 7
https://github.com/square/retrofit
Branch: master
Commit id: 65de04d1da61f9e8124956f6fff8902fc81d05e2
Date: Jul 8, 2020
Commiter:
Source Files (SonarJava): 283
Source Files (Bash): 403
LOC: 42621
CI time: https://github.com/square/retrofit/actions/runs/130969228 - 8m 25s
Detect with miner
2164 - MathOnFloatCheck=6
3032 - GetClassLoaderCheck=2
3067 - SynchronizationOnGetClassCheck=0
2184 - CastArithmeticOperandCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2095 - UnclosedResourcesCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
4973 - CompareStringsBoxedTypesWithEqualsCheck=0
Repair
DEFAULT
2164 [Crashed] [Build id = 13]
3032 [Crashed] [Build id = 67]
SEGMENT [segment size = 100] [MaxFixes = 2000]
2164 [Build id = 14]
[File Tree build time] : 14 ms
[Total repair time] : 20110 ms
[Total Repair Duration]: 26 sec
Number of Fixes - MathOnFloatProcessor: 4
3032 [Build id = 15]
[File Tree build time] : 10 ms
[Total repair time] : 19199 ms
[Total Repair Duration]: 28 sec
Number of Fixes - GetClassLoaderProcessor: 0
https://github.com/square/okhttp
Branch: master
Commit id: c4cbb57a46c4158a58d992b8bc4689ed5fd437ad
Date: Jul 6, 2020
Commiter:
Source Files (SonarJava): 283
Source Files (Bash): 529
LOC: 52440
CI time: https://github.com/square/okhttp/commit/d2c5a74defb171fecac9626fb4f6e9048e0df645
https://github.com/square/okhttp/runs/877200608
4s
https://github.com/square/okhttp/runs/877200584
2m 22s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15873
7m 20s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15870
1m 30s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15869
4m 33s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15874
1m 6s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15875
4m 30s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15872
3m 19s
https://app.circleci.com/pipelines/github/square/okhttp/3636/workflows/832d7042-1191-4ad6-9110-656b5e0b148a/jobs/15825
3m 39s
https://app.circleci.com/jobs/github/square/okhttp/15876
2m 36s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15877
2m 39s
https://app.circleci.com/pipelines/github/square/okhttp/3643/workflows/6a0ed2dc-b293-4382-a283-d6898b6fe3e0/jobs/15871
2m 45s
Longest
7m 20s
Detect with miner
2095 - UnclosedResourcesCheck=5
2164 - MathOnFloatCheck=5
2184 - CastArithmeticOperandCheck=3
3067 - SynchronizationOnGetClassCheck=0
3032 - GetClassLoaderCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
4973 - CompareStringsBoxedTypesWithEqualsCheck=0
Repair
DEFAULT
2095 [Crashed] [Build id = 17]
2164 [Crashed] [Build id = 68]
2184 [Crashed] [Build id = 69]
SEGMENT [segment size = 100] [MaxFixes = 2000]
2095 [Build id = 18]
[File Tree build time] : 29 ms
[Total repair time] : 38827 ms
[Total Repair Duration]: 1 min 1 sec
Number of Fixes - UnclosedResourcesProcessor: 0
2164 [Build id = 19]
[File Tree build time] : 20 ms
[Total repair time] : 26334 ms
[Total Repair Duration]: 59 sec
Number of Fixes - MathOnFloatProcessor: 0
2184 [Build id = 20]
[File Tree build time] : 21 ms
[Total repair time] : 25158 ms
[Total Repair Duration]: 47 sec
Number of Fixes - CastArithmeticOperandProcessor: 1
https://github.com/spring-projects/spring-boot
Branch: master
Commit id: 6b7640ba2e6697a25d2f3846c39d0f3e35950b45
Date: Jul 8, 2020
Commiter:
Source Files (SonarJava): 5387
Source Files (Bash): 6746
LOC: 537856
CI time: https://github.com/spring-projects/spring-boot/commit/42817224e1ace9d3cca0090843358dc43399b5bb
https://ci.spring.io/builds/123146
22m 0s
https://ci.spring.io/builds/123147
6m 5s
https://ci.spring.io/builds/123148
8m 23s
longest
22m 0s
Detect with miner
3032 - GetClassLoaderCheck=131
2095 - UnclosedResourcesCheck=67
2164 - MathOnFloatCheck=8
2184 - CastArithmeticOperandCheck=5
2272 - IteratorNextExceptionCheck=2
4973 - CompareStringsBoxedTypesWithEqualsCheck=1
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
Repair
DEFAULT
3032 [Crashed] [Build id = 21]
2095 [Crashed] [Build id = 70]
2164 [Crashed] [Build id = 71]
2184 [Crashed] [Build id = 72]
2272 [Crashed] [Build id = 73]
4973 [Crashed] [Build id = 74]
SEGMENT [segment size = 100] [MaxFixes = 2000]
3032 [Build id = 22]
[File Tree build time] : 117 ms
[Total repair time] : 121888 ms
[Total Repair Duration]: 2 min 46 sec
Number of Fixes - GetClassLoaderProcessor: 9
2095 [Build id = 23]
[File Tree build time] : 134 ms
[Total repair time] : 167277 ms
[Total Repair Duration]: 3 min 35 sec
Number of Fixes - UnclosedResourcesProcessor: 38
2164 [Build id = 24]
[File Tree build time] : 122 ms
[Total repair time] : 113859 ms
[Total Repair Duration]: 2 min 36 sec
Number of Fixes - MathOnFloatProcessor: 0
2184 [Build id = 25]
[File Tree build time] : 110 ms
[Total repair time] : 118394 ms
[Total Repair Duration]: 2 min 45 sec
Number of Fixes - CastArithmeticOperandProcessor: 2
2272 [Build id = 26]
[File Tree build time] : 96 ms
[Total repair time] : 109952 ms
[Total Repair Duration]: 2 min 28 sec
Number of Fixes - IteratorNextExceptionProcessor: 2
4973 [Build id = 27]
[File Tree build time] : 98 ms
[Total repair time] : 117004 ms
[Total Repair Duration]: 2 min 41 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 1
https://github.com/eclipse/rdf4j
Branch: master
Commit id: 8e7fce59f300dbae5ec3475359dcba4fd3133697
Date: Jul 3, 2020
Commiter:
Source Files (SonarJava): 3094
Source Files (Bash): 9148
LOC: 405861
CI time: - https://github.com/eclipse/rdf4j/commit/76fc808f2cb93b89f516728b920bbd97132d955b
https://github.com/eclipse/rdf4j/runs/884013017
36m 38s
https://github.com/eclipse/rdf4j/runs/884013031
23s
https://github.com/eclipse/rdf4j/runs/884013023
43m 22s
Total
80m 20s
Longest
43m 22s
Detect with miner
3032 - GetClassLoaderCheck=65
2184 - CastArithmeticOperandCheck=15
2095 - UnclosedResourcesCheck=12
2164 - MathOnFloatCheck=11
2272 - IteratorNextExceptionCheck=9
4973 - CompareStringsBoxedTypesWithEqualsCheck=4
2111 - BigDecimalDoubleConstructorCheck=2
1656 - SelfAssignementCheck=1
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
2204 - EqualsOnAtomicClassCheck=0
Repair
DEFAULT
3032 [Crashed] [Build id = 28] [GC overhead limit]
2184 [Crashed] [GC overhead limit]
2095 [Crashed] [GC overhead limit]
2164 [Crashed] [GC overhead limit]
2272 [Crashed] [GC overhead limit]
4973 [Crashed] [GC overhead limit]
2111 [Crashed] [GC overhead limit]
1656 [Crashed] [GC overhead limit]
SEGMENT [segment size = 100] [MaxFixes = 2000]
3032 [Build id = 29]
[File Tree build time] : 116
[Total repair time] : 88997 ms
[Total Repair Duration]: 1 min 47 sec
Number of Fixes - GetClassLoaderProcessor: 0
2184 [Build id = 30]
[File Tree build time] : 117 ms
[Total repair time] : 85231 ms
[Total Repair Duration]: 1 min 46 sec
Number of Fixes - CastArithmeticOperandProcessor: 8
2095 [Build id = 31]
[File Tree build time] : 139 ms
[Total repair time] : 147452 ms
[Total Repair Duration]: 2 min 50 sec
Number of Fixes - UnclosedResourcesProcessor: 11
2164 [Build id = 32]
[File Tree build time] : 100 ms
[Total repair time] : 85760 ms
[Total Repair Duration]: 1 min 50 sec
Number of Fixes - MathOnFloatProcessor: 4
2272 [Build id = 33]
[File Tree build time] : 110 ms
[Total repair time] : 89630 ms
[Total Repair Duration]: 1 min 50 sec
Number of Fixes - IteratorNextExceptionProcessor: 9
4973 [Build id = 34]
[File Tree build time] : 109 ms
[Total repair time] : 82981 ms
[Total Repair Duration]: 1 min 46 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 4
2111 [Build id = 35]
[File Tree build time] : 123 ms
[Total repair time] : 96183 ms
[Total Repair Duration]: 1 min 57 sec
Number of Fixes - BigDecimalDoubleConstructorProcessor: 2
1656 [Build id = 36]
[File Tree build time] : 301 ms
[Total repair time] : 88954 ms
[Total Repair Duration]: 1 min 53 sec
Number of Fixes - SelfAssignementProcessor: 1
https://github.com/eclipse/eclipse-collections
Branch: master
Commit id: 852f5e5abb7cff3589a09061e6c4f75f643a55b5
Date: Jul 8, 2020
Commiter:
Source Files (SonarJava): 2589
Source Files (Bash): 3192
LOC: 403941
Detect with miner
2164 - MathOnFloatCheck=38
2272 - IteratorNextExceptionCheck=14
2184 - CastArithmeticOperandCheck=5
3032 - GetClassLoaderCheck=3
2095 - UnclosedResourcesCheck=1
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
4973 - CompareStringsBoxedTypesWithEqualsCheck=0
CI time: - https://github.com/eclipse/eclipse-collections/commit/63be239538ff2676680ff57294e5aa08ce03b602
https://github.com/eclipse/eclipse-collections/runs/879356671
8m 40s
https://github.com/eclipse/eclipse-collections/runs/879356673
10m 53s
https://github.com/eclipse/eclipse-collections/runs/879356680
47m 20s
https://github.com/eclipse/eclipse-collections/runs/879356521
5m 20s
https://github.com/eclipse/eclipse-collections/runs/879356580
3m 47s
https://github.com/eclipse/eclipse-collections/runs/879356610
12m 36s
https://github.com/eclipse/eclipse-collections/runs/879356636
10m 21s
https://github.com/eclipse/eclipse-collections/runs/879356649
9m 46s
https://teamcity.jetbrains.com/viewLog.html?buildId=3028458&buildTypeId=OpenSourceProjects_EclipseCollections_CheckStyle
20m 23s
https://teamcity.jetbrains.com/viewLog.html?buildId=3028481&buildTypeId=OpenSourceProjects_EclipseCollections_CompileTest
23m 3s
https://teamcity.jetbrains.com/viewLog.html?buildId=3028457&buildTypeId=OpenSourceProjects_EclipseCollections_Inspections1Severe
10m 18s
https://teamcity.jetbrains.com/viewLog.html?buildId=3028456&buildTypeId=OpenSourceProjects_EclipseCollections_Inspections2InconsistentConstructs
13m 41s
https://teamcity.jetbrains.com/viewLog.html?buildId=3028456&buildTypeId=OpenSourceProjects_EclipseCollections_Inspections2InconsistentConstructs
13m 41s
https://teamcity.jetbrains.com/
viewLog.html?buildId=3028454&buildTypeId=OpenSourceProjects_EclipseCollections_Inspections3ConsistentStyle
https://github.com/eclipse/eclipse-collections/runs/879356957
5m 13s
https://teamcity.jetbrains.com/viewLog.html?buildId=3028455&buildTypeId=OpenSourceProjects_EclipseCollections_Inspections4NoAutoFix
9m 40s
Total
204m 24s
Longest
23m 3s
Repair
DEFAULT
2164 [crashed] [Build id = 39]
GC overhead exceeded
2272 [crashed] [Build id = 39]
2184 [crashed] [Build id = 39]
3032 [crashed] [Build id = 39]
2095 [crashed] [Build id = 39]
SEGMENT [segment size = 100] [MaxFixes = 2000]
2164 [Build id = 40]
[File Tree build time] : 34 ms
[Total repair time] : 111511 ms
[Total Repair Duration]: 4 min 2 sec
Number of Fixes - UnclosedResourcesProcessor: 1
2272 [Build id = 42]
[File Tree build time] : 36 ms
[Total repair time] : 98445 ms
[Total Repair Duration]: 1 min 47 sec
Number of Fixes - IteratorNextExceptionProcessor: 14
2184 [Build id = 43]
[File Tree build time] : 38 ms
[Total repair time] : 103162 ms
[Total Repair Duration]: 1 min 53 sec
Number of Fixes - CastArithmeticOperandProcessor: 4
3032 [Build id = 44]
[File Tree build time] : 77 ms
[Total repair time] : 95922 ms
[Total Repair Duration]: 1 min 44 sec
Number of Fixes - GetClassLoaderProcessor: 0
2095 [Build id = 45]
[File Tree build time] : 67 ms
[Total repair time] : 125260 ms
[Total Repair Duration]: 2 min 15 sec
Number of Fixes - UnclosedResourcesProcessor: 1
https://github.com/eclipse/kura
Commit id: a0cd9d7683a02fef4b4f888eff61d145ecae6998
Date: Jul 8, 2020
Commiter:
Source Files (SonarJava): 2011
Source Files (Bash): 4235
LOC: 329468
Detect with miner
2164 - MathOnFloatCheck=148
2095 - UnclosedResourcesCheck=88
2184 - CastArithmeticOperandCheck=9
3032 - GetClassLoaderCheck=4
4973 - CompareStringsBoxedTypesWithEqualsCheck=1
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
CI time:
https://travis-ci.org/github/eclipse/kura/builds/710646723
8m 18s
13m 47s
Longest
13m 47s
Repair
DEFAULT
2164 [Build id = 49]
[Total repair time] : 71651 ms
[Total Repair Duration]: 1 min 46 sec
Number of Fixes - MathOnFloatProcessor: 65
2095 [Build id = 50] [Crashed]
2184 [Build id = 51] [Crashed]
3032 [Build id = 52] [Crashed]
4973 [Build id = 53]
[Total repair time] : 71215 ms
[Total Repair Duration]: 1 min 39 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 1
SEGMENT [segment size = 100] [MaxFixes = 2000]
2164 [Build id = 54]
[File Tree build time] : 73 ms
[Total repair time] : 69719 ms
[Total Repair Duration]: 1 min 37 sec
Number of Fixes - MathOnFloatProcessor: 65
2095 [Build id = 55]
[File Tree build time] : 136 ms
[Total repair time] : 133449 ms
[Total Repair Duration]: 2 min 42 sec
Number of Fixes - UnclosedResourcesProcessor: 41
2184 [Build id = 56]
[File Tree build time] : 75 ms
[Total repair time] : 70695 ms
[Total Repair Duration]: 1 min 48 sec
Number of Fixes - CastArithmeticOperandProcessor: 2
3032 [Build id = 57]
[File Tree build time] : 73 ms
[Total repair time] : 72018 ms
[Total Repair Duration]: 1 min 47 sec
Number of Fixes - GetClassLoaderProcessor: 1
4973 [Build id = 58]
[File Tree build time] : 74 ms
[Total repair time] : 73153 ms
[Total Repair Duration]: 1 min 47 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 1
https://github.com/eclipse/californium
Branch: master
Commit id: 764216199719dcd596481cc3a937124e2b18d88a
Date: Jul 8, 2020
Commiter:
Source Files (SonarJava): 768
Source Files (Bash): 1015
LOC: 175782
Detect with miner
2184 - CastArithmeticOperandCheck=38
4973 - CompareStringsBoxedTypesWithEqualsCheck=4
3032 - GetClassLoaderCheck=3
2095 - UnclosedResourcesCheck=3
2116 - ArrayHashCodeAndToStringCheck=2
2164 - MathOnFloatCheck=2
3067 - SynchronizationOnGetClassCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
Repair
DEFAULT
2184 [Crashed] [Build id = 77]
4973 [[Build id = 78]
[Total repair time] : 40039 ms
[Total Repair Duration]: 48 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 4
3032 [Build id = 79]
[Total repair time] : 39964 ms
[Total Repair Duration]: 48 sec
Number of Fixes - GetClassLoaderProcessor: 1
2095 [Build id = 80]
[Total repair time] : 77530 ms
[Total Repair Duration]: 1 min 27 sec
Number of Fixes - UnclosedResourcesProcessor: 3
2116 [Build id = 81]
[Total repair time] : 39026 ms
[Total Repair Duration]: 59 sec
Number of Fixes - ArrayHashCodeAndToStringProcessor: 2
2164 [Build id = 82]
[Total repair time] : 40102 ms
[Total Repair Duration]: 52 sec
Number of Fixes - MathOnFloatProcessor: 1
SEGMENT [segment size = 100] [MaxFixes = 2000]
2184 [Build id = 83]
[File Tree build time] : 27 ms
[Total repair time] : 45308 ms
[Total Repair Duration]: 53 sec
Number of Fixes - CastArithmeticOperandProcessor: 4
4973 [Build id = 84]
[File Tree build time] : 23 ms
[Total repair time] : 39380 ms
[Total Repair Duration]: 50 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 4
3032 [Build id = 85]
[File Tree build time] : 24 ms
[Total repair time] : 41664 ms
[Total Repair Duration]: 56 sec
Number of Fixes - GetClassLoaderProcessor: 1
2095 [Build id = 86]
[File Tree build time] : 19 ms
[Total repair time] : 81825 ms
[Total Repair Duration]: 1 min 35 sec
Number of Fixes - UnclosedResourcesProcessor: 3
2116 [Build id = 87]
[File Tree build time] : 16 ms
[Total repair time] : 41317 ms
[Total Repair Duration]: 49 sec
Number of Fixes - ArrayHashCodeAndToStringProcessor: 2
2164 [Build id = 88]
[File Tree build time] : 18 ms
[Total repair time] : 42171 ms
[Total Repair Duration]: 55 sec
Number of Fixes - MathOnFloatProcessor: 1
https://github.com/eclipse/vorto
Branch: development
Commit id: e89f149319f230852398efd43263df93e533a716
Date: Jul 9, 2020
Commiter:
Source Files (SonarJava): 812
Source Files (Bash): 1870
LOC: 80385
Detect with miner
3032 - GetClassLoaderCheck=56
2184 - CastArithmeticOperandCheck=1
2095 - UnclosedResourcesCheck=2
2272 - IteratorNextExceptionCheck=1
4973 - CompareStringsBoxedTypesWithEqualsCheck=1
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
2164 - MathOnFloatCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
CI time - https://travis-ci.org/github/eclipse/vorto/builds/710272952
49m 12s
Repair
DEFAULT
3032 [Crashed] [Build id = 89]
2184 [Build id = 90]
[Total repair time] : 27281 ms
[Total Repair Duration]: 50 sec
Number of Fixes - CastArithmeticOperandProcessor: 1
2095 [Build id = 91]
[Total repair time] : 33700 ms
[Total Repair Duration]: 50 sec
Number of Fixes - UnclosedResourcesProcessor: 2
2272 [Build id = 92]
[Total repair time] : 31386 ms
[Total Repair Duration]: 50 sec
Number of Fixes - IteratorNextExceptionProcessor: 1
4973 [Build id = 93]
[Total repair time] : 25085 ms
[Total Repair Duration]: 40 ms
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 1
SEGMENT [segment size = 100] [MaxFixes = 2000]
3032 [Build id = 94]
[File Tree build time] : 50 ms
[Total repair time] : 29065 ms
[Total Repair Duration]: 45 sec
Number of Fixes - GetClassLoaderProcessor: 0
2184 [Build id = 95]
[File Tree build time] : 50 ms
[Total repair time] : 27139 ms
[Total Repair Duration]: 41 sec
Number of Fixes - CastArithmeticOperandProcessor: 1
2095 [Build id = 96]
[File Tree build time] : 60 ms
[Total repair time] : 38348 ms
[Total Repair Duration]: 56 sec
Number of Fixes - UnclosedResourcesProcessor: 2
2272 [Build id = 97]
[File Tree build time] : 31 ms
[Total repair time] : 28762 ms
[Total Repair Duration]: 52 ms
Number of Fixes - IteratorNextExceptionProcessor: 1
4973 [Build id = 98]
[File Tree build time] : 50 ms
[Total repair time] : 28021 ms
[Total Repair Duration]: 44 ms
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 1
https://github.com/eclipse/kapua
Commit id: e89f149319f230852398efd43263df93e533a716
Date: Jul 9, 2020
Commiter:
Source Files (SonarJava): 812
Source Files (Bash): 1870
LOC: 80385
CI time: https://travis-ci.org/github/eclipse/kapua/builds/709927724
3 hrs 28 min 20 sec
Detect with miner
2095 - UnclosedResourcesCheck=9
3032 - GetClassLoaderCheck=2
2184 - CastArithmeticOperandCheck=2
1860 - SynchronizationOnStringOrBoxedCheck=2
2164 - MathOnFloatCheck=1
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
4973 - CompareStringsBoxedTypesWithEqualsCheck=0
Repair
DEFAULT
2095 [Build id = 99]
[Total repair time] : 92768 ms
[Total Repair Duration]: 1 min 48 sec
Number of Fixes - UnclosedResourcesProcessor: 0
3032 [Build id = 100]
[Total repair time] : 59264 ms
[Total Repair Duration]: 1 min 15 sec
Number of Fixes - GetClassLoaderProcessor: 1
2184 [Build id = 101]
[Total repair time] : 58227 ms
[Total Repair Duration]: 1 min 13 sec
Number of Fixes - CastArithmeticOperandProcessor: 2
1860 [Build id = 102]
[Total repair time] : 56557 ms
[Total Repair Duration]: 1 min 11 sec
Number of Fixes - SynchronizationOnStringOrBoxedProcessor: 0
2164 [Build id = 103]
[Total repair time] : 56338 ms
[Total Repair Duration]: 1 min 9 sec
Number of Fixes - MathOnFloatProcessor: 0
SEGMENT [segment size = 100] [MaxFixes = 2000]
2095 [Build id = 104]
[File Tree build time] : 104 ms
[Total repair time] : 99206 ms
[Total Repair Duration]: 1 min 53 sec
Number of Fixes - UnclosedResourcesProcessor: 0
3032 [Build id = 105]
[File Tree build time] : 90 ms
[Total repair time] : 60285 ms
[Total Repair Duration]: 1 min 14 sec
Number of Fixes - GetClassLoaderProcessor: 1
2184 [Build id = 106]
[File Tree build time] : 83 ms
[Total repair time] : 65012 ms
[Total Repair Duration]: 1 min 18 sec
Number of Fixes - CastArithmeticOperandProcessor: 2
1860 [Build id = 107]
[File Tree build time] : 90 ms
[Total repair time] : 68134 ms
[Total Repair Duration]: 1 min 21 sec
Number of Fixes - SynchronizationOnStringOrBoxedProcessor: 0
2164 [Build id = 108]
[File Tree build time] : 83 ms
[Total repair time] : 62889 ms
[Total Repair Duration]: 1 min 16 sec
Number of Fixes - MathOnFloatProcessor: 0
https://github.com/eclipse/jgit
Commit id: 9b033a1b6da1193dbedca80c217af748ae546629
Date: Jul 8, 2020
Files (SonarJava): 1600
Source Files (Bash): 2487
LOC: 375367
Detect with miner
2184 - CastArithmeticOperandCheck=19
2095 - UnclosedResourcesCheck=18
2164 - MathOnFloatCheck=6
3032 - GetClassLoaderCheck=5
2272 - IteratorNextExceptionCheck=4
4973 - CompareStringsBoxedTypesWithEqualsCheck=3
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
Repair
DEFAULT
2184 [Crashed] [Build id = 109]
2095 [Crashed] [Build id = 110]
2164 [Build id = 111]
[Total repair time] : 65858 ms
[Total Repair Duration]: 1 min 23 sec
Number of Fixes - MathOnFloatProcessor: 0
3032 [Build id = 112]
[Total repair time] : 69585 ms
[Total Repair Duration]: 1 min 31 sec
Number of Fixes - GetClassLoaderProcessor: 0
2272 [Build id = 113]
[Total repair time] : 66561 ms
[Total Repair Duration]: 1 min 33 sec
Number of Fixes - IteratorNextExceptionProcessor: 4
4973 [Build id = 114]
[Total repair time] : 64790 ms
[Total Repair Duration]: 1 min 24 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 3
SEGMENT [segment size = 100] [MaxFixes = 2000]
2184 [Build id = 115]
[File Tree build time] : 42 ms
[Total repair time] : 79512 ms
[Total Repair Duration]: 1 min 37 sec
Number of Fixes - CastArithmeticOperandProcessor: 6
2095 [Build id = 116]
[File Tree build time] : 38 ms
[Total repair time] : 140834 ms
[Total Repair Duration]: 2 min 37 sec
Number of Fixes - UnclosedResourcesProcessor: 15
2164 [Build id = 117]
[File Tree build time] : 39 ms
[Total repair time] : 65501 ms
[Total Repair Duration]: 1 min 21 sec
Number of Fixes - MathOnFloatProcessor: 0
3032 [Build id = 118]
[File Tree build time] : 35 ms
[Total repair time] : 70661 ms
[Total Repair Duration]: 1 min 31 sec
Number of Fixes - GetClassLoaderProcessor: 0
2272 [Build id = 119]
[File Tree build time] : 31 ms
[Total repair time] : 72662 ms
[Total Repair Duration]: 1 min 31 sec
Number of Fixes - IteratorNextExceptionProcessor: 4
4973 [Build id = ]
[File Tree build time] : 46 ms
[Total repair time] : 71949 ms
[Total Repair Duration]: 1 min 29 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 3
https://github.com/eclipse/elk
Branch: master
Commit id: 4bab504c10535ab39081dfbcfb4ad11f405bc6e4
Date: Jul 8, 2020
Commiter: httpscds
Source Files (SonarJava): 1040
Source Files (Bash): 1943
LOC: 426659
Detect with miner
2164 - MathOnFloatCheck=56
2184 - CastArithmeticOperandCheck=6
3032 - GetClassLoaderCheck=4
2095 - UnclosedResourcesCheck=3
1656 - SelfAssignementCheck=1
4973 - CompareStringsBoxedTypesWithEqualsCheck=1
3067 - SynchronizationOnGetClassCheck=0
2116 - ArrayHashCodeAndToStringCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
CI time - https://github.com/eclipse/elk/pull/667/commits/cc67429824fa5eb11c1f8f451935748603707c2d
https://github.com/eclipse/elk/runs/887413844
8m 15s
https://github.com/eclipse/elk/runs/887413853
8m 34s
https://github.com/eclipse/elk/runs/887413878
3m 50s
https://github.com/eclipse/elk/runs/887413862
10m 3s
Total
30m 42s
Longest
10m 3s
Repair
DEFAULT
2164 [Build id = 121]
[Total repair time] : 66468 ms
[Total Repair Duration]: 1 min 16 sec
Number of Fixes - MathOnFloatProcessor: 21
2184 [Build id = 122]
[Total repair time] : 77240 ms
[Total Repair Duration]: 1 min 26 sec
Number of Fixes - CastArithmeticOperandProcessor: 6
3032 [Build id = 123]
[Total repair time] : 71432 ms
[Total Repair Duration]: 1 min 21 sec
Number of Fixes - GetClassLoaderProcessor: 0
2095 [Build id = 124]
[Total repair time] : 174282 ms
[Total Repair Duration]: 3 min 4 sec
Number of Fixes - UnclosedResourcesProcessor: 3
1656 [Build id = 125]
[Total repair time] : 66262 ms
[Total Repair Duration]: 1 min 15 sec
Number of Fixes - SelfAssignementProcessor: 1
4973 [Build id = 126]
[Total repair time] : 66840 ms
[Total Repair Duration]: 1 min 17 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 1
SEGMENT [segment size = 100] [MaxFixes = 2000]
2164 [Build id = 127]
[File Tree build time] : 40 ms
[Total repair time] : 63098 ms
[Total Repair Duration]: 1 min 12 sec
Number of Fixes - MathOnFloatProcessor: 21
2184 [Build id = 128]
[File Tree build time] : 39 ms
[Total repair time] : 66017 ms
[Total Repair Duration]: 1 min 17 sec
Number of Fixes - CastArithmeticOperandProcessor: 6
3032 [Build id = 129]
[File Tree build time] : 67 ms
[Total repair time] : 66427 ms
[Total Repair Duration]: 1 min 15 sec
Number of Fixes - GetClassLoaderProcessor: 0
2095 [Build id = 130]
[File Tree build time] : 31 ms
[Total repair time] : 169670 ms
[Total Repair Duration]: 2 min 58 sec
Number of Fixes - UnclosedResourcesProcessor: 3
1656 [Build id = 131]
[File Tree build time] : 44 ms
[Total repair time] : 65092 ms
[Total Repair Duration]: 1 min 16 sec
Number of Fixes - SelfAssignementProcessor: 1
4973 [Build id = 132]
[File Tree build time] : 25 ms
[Total repair time] : 62668 ms
[Total Repair Duration]: 1 min 11 sec
Number of Fixes - CompareStringsBoxedTypesWithEqualsProcessor: 1
https://github.com/eclipse/eclipse.platform.swt
Commit id: 4bab504c10535ab39081dfbcfb4ad11f405bc6e4
Date: Jul 7, 2020
Commiter:
Source Files (SonarJava): 2191
Source Files (Bash): 3262
LOC: 615674
Detect with miner
2164 - MathOnFloatCheck=530
2184 - CastArithmeticOperandCheck=68
4973 - CompareStringsBoxedTypesWithEqualsCheck=33
3032 - GetClassLoaderCheck=12
2095 - UnclosedResourcesCheck=5
2116 - ArrayHashCodeAndToStringCheck=1
3067 - SynchronizationOnGetClassCheck=0
2111 - BigDecimalDoubleConstructorCheck=0
2167 - CompareToReturnValueCheck=0
1854 - UnusedThrowableCheck=0
1860 - SynchronizationOnStringOrBoxedCheck=0
1656 - SelfAssignementCheck=0
2204 - EqualsOnAtomicClassCheck=0
2272 - IteratorNextExceptionCheck=0
Repair
DEFAULT
2164 [Crashed] [Build id = 133]
2184 [Crashed] [Build id = 134]
4973 [Crashed] [Build id = 135]
3032 [Build id = 136]
[Total repair time] : 83779 ms
[Total Repair Duration]: 2 min 35 sec
Number of Fixes - GetClassLoaderProcessor: 0
2095 [Build id = 137]
[Total repair time] : 241744 ms
[Total Repair Duration]: 5 min 13 sec
Number of Fixes - UnclosedResourcesProcessor: 5
2116 [Build id = 138]
[Total repair time] : 83210 ms
[Total Repair Duration]: 2 min 29 sec
Number of Fixes - ArrayHashCodeAndToStringProcessor: 1
SEGMENT [segment size = 100] [MaxFixes = 2000]
2164 [Build id = 139]
[File Tree build time] : 90 ms
[Total repair time] : 95463 ms
[Total Repair Duration]: 2 min 43 sec
Number of Fixes - MathOnFloatProcessor: 26
2184 [Build id = 140]
[File Tree build time] : 86 ms
[Total repair time] : 101834 ms