-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTLab.bib
More file actions
7090 lines (6624 loc) · 351 KB
/
STLab.bib
File metadata and controls
7090 lines (6624 loc) · 351 KB
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
@article{DBLP:journals/csi/RegueroMV25,
author = "Reguero, {\'{A}}lvaro Domingo and Mart{\'{\i}}nez{-}Fern{\'{a}}ndez, Silverio and Verdecchia, Roberto",
title = "Energy-efficient neural network training through runtime layer freezing, model quantization, and early stopping",
journal = "Comput. Stand. Interfaces",
volume = "92",
pages = "103906",
year = "2025",
url = "https://doi.org/10.1016/j.csi.2024.103906",
doi = "10.1016/J.CSI.2024.103906",
timestamp = "Mon, 09 Dec 2024 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/csi/RegueroMV25.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/jss/MaggiVSV25,
author = "Maggi, Kevin and Verdecchia, Roberto and Scommegna, Leonardo and Vicario, Enrico",
title = "Evolution of code technical debt in microservices architectures",
journal = "J. Syst. Softw.",
volume = "222",
pages = "112301",
year = "2025",
url = "https://doi.org/10.1016/j.jss.2024.112301",
doi = "10.1016/J.JSS.2024.112301",
timestamp = "Thu, 02 Jan 2025 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/jss/MaggiVSV25.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/access/VerdecchiaSPBV24,
author = "Verdecchia, Roberto and Scommegna, Leonardo and Picano, Benedetta and Becattini, Marco and Vicario, Enrico",
title = "Network Digital Twins: {A} Systematic Review",
journal = "{IEEE} Access",
volume = "12",
pages = "145400--145416",
year = "2024",
url = "https://doi.org/10.1109/ACCESS.2024.3453034",
doi = "10.1109/ACCESS.2024.3453034",
timestamp = "Wed, 06 Nov 2024 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/access/VerdecchiaSPBV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/jss/ScommegnaVV24,
author = "Scommegna, Leonardo and Verdecchia, Roberto and Vicario, Enrico",
title = "Unveiling Faulty User Sequences: {A} Model-Based Approach to Test Three-Tier Software Architectures",
journal = "J. Syst. Softw.",
volume = "212",
pages = "112015",
year = "2024",
url = "https://doi.org/10.1016/j.jss.2024.112015",
doi = "10.1016/J.JSS.2024.112015",
timestamp = "Sat, 08 Jun 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/jss/ScommegnaVV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ease/MaggiVSV24,
author = "Maggi, Kevin and Verdecchia, Roberto and Scommegna, Leonardo and Vicario, Enrico",
title = "{CLAIM:} a Lightweight Approach to Identify Microservices in Dockerized Environments",
booktitle = "Proceedings of the 28th International Conference on Evaluation and Assessment in Software Engineering, {EASE} 2024, Salerno, Italy, June 18-21, 2024",
pages = "357--362",
publisher = "{ACM}",
year = "2024",
url = "https://doi.org/10.1145/3661167.3661206",
doi = "10.1145/3661167.3661206",
timestamp = "Thu, 04 Jul 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/ease/MaggiVSV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ease/PolliniMVV24,
author = "Pollini, Nicol{\`{o}} and Maggi, Kevin and Verdecchia, Roberto and Vicario, Enrico",
title = "Learning Programming without Teachers: An Ongoing Ethnographic Study at 42",
booktitle = "Proceedings of the 28th International Conference on Evaluation and Assessment in Software Engineering, {EASE} 2024, Salerno, Italy, June 18-21, 2024",
pages = "590--594",
publisher = "{ACM}",
year = "2024",
url = "https://doi.org/10.1145/3661167.3661275",
doi = "10.1145/3661167.3661275",
timestamp = "Thu, 04 Jul 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/ease/PolliniMVV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ecsa/MiglioriniVMLV24,
author = "Migliorini, Sofia and Verdecchia, Roberto and Malavolta, Ivano and Lago, Patricia and Vicario, Enrico",
editor = "Galster, Matthias and Scandurra, Patrizia and Mikkonen, Tommi and Antonino, Pablo Oliveira and Nakagawa, Elisa Yumi and Navarro, Elena",
title = "Architectural Views: The State of Practice in Open-Source Software Projects",
booktitle = "Software Architecture - 18th European Conference, {ECSA} 2024, Luxembourg City, Luxembourg, September 3-6, 2024, Proceedings",
series = "Lecture Notes in Computer Science",
volume = "14889",
pages = "396--415",
publisher = "Springer",
year = "2024",
url = "https://doi.org/10.1007/978-3-031-70797-1\\_27",
doi = "10.1007/978-3-031-70797-1\\_27",
timestamp = "Sun, 06 Oct 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/ecsa/MiglioriniVMLV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/esem/LagoRSV24,
author = "Lago, Patricia and Runeson, Per and Song, Qunying and Verdecchia, Roberto",
editor = "Franch, Xavier and Daneva, Maya and Mart{\'{\i}}nez{-}Fern{\'{a}}ndez, Silverio and Quaranta, Luigi",
title = "Threats to Validity in Software Engineering - hypocritical paper section or essential analysis?",
booktitle = "Proceedings of the 18th {ACM/IEEE} International Symposium on Empirical Software Engineering and Measurement, {ESEM} 2024, Barcelona, Spain, October 24-25, 2024",
pages = "314--324",
publisher = "{ACM}",
year = "2024",
url = "https://doi.org/10.1145/3674805.3686691",
doi = "10.1145/3674805.3686691",
timestamp = "Tue, 22 Oct 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/esem/LagoRSV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/corr/abs-2402-12010,
author = "Alswaitti, Mohammed and Verdecchia, Roberto and Danoy, Gr{\'{e}}goire and Bouvry, Pascal and Pecero, Johnatan E.",
title = "Training Green {AI} Models Using Elite Samples",
journal = "CoRR",
volume = "abs/2402.12010",
year = "2024",
url = "https://doi.org/10.48550/arXiv.2402.12010",
doi = "10.48550/ARXIV.2402.12010",
eprinttype = "arXiv",
eprint = "2402.12010",
timestamp = "Tue, 07 May 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/corr/abs-2402-12010.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/corr/abs-2409-18664,
author = "Trinci, Tomaso and Magistri, Simone and Verdecchia, Roberto and Bagdanov, Andrew D.",
title = "How green is continual learning, really? Analyzing the energy consumption in continual training of vision foundation models",
journal = "CoRR",
volume = "abs/2409.18664",
year = "2024",
url = "https://doi.org/10.48550/arXiv.2409.18664",
doi = "10.48550/ARXIV.2409.18664",
eprinttype = "arXiv",
eprint = "2409.18664",
timestamp = "Thu, 17 Oct 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/corr/abs-2409-18664.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/infsof/VerdecchiaELRS23,
author = {Verdecchia, Roberto and Engstr{\"{o}}m, Emelie and Lago, Patricia and Runeson, Per and Song, Qunying},
title = "Threats to validity in software engineering research: {A} critical reflection",
journal = "Inf. Softw. Technol.",
volume = "164",
pages = "107329",
year = "2023",
url = "https://doi.org/10.1016/j.infsof.2023.107329",
doi = "10.1016/J.INFSOF.2023.107329",
timestamp = "Fri, 27 Oct 2023 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/infsof/VerdecchiaELRS23.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/te/VerdecchiaL23,
author = "Verdecchia, Roberto and Lago, Patricia",
title = "Tales of Hybrid Teaching in Software Engineering: Lessons Learned and Guidelines",
journal = "{IEEE} Trans. Educ.",
volume = "66",
number = "3",
pages = "234--243",
year = "2023",
url = "https://doi.org/10.1109/TE.2022.3221802",
doi = "10.1109/TE.2022.3221802",
timestamp = "Thu, 15 Jun 2023 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/te/VerdecchiaL23.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/widm/VerdecchiaSC23,
author = "Verdecchia, Roberto and Sallou, June and Cruz, Luis",
title = "A systematic review of Green {AI}",
journal = "WIREs Data. Mining. Knowl. Discov.",
volume = "13",
number = "4",
year = "2023",
url = "https://doi.org/10.1002/widm.1507",
doi = "10.1002/WIDM.1507",
timestamp = "Sat, 30 Sep 2023 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/widm/VerdecchiaSC23.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ecsa/VerdecchiaMSV23,
author = "Verdecchia, Roberto and Maggi, Kevin and Scommegna, Leonardo and Vicario, Enrico",
editor = {Tekinerdogan, Bedir and Spalazzese, Romina and S{\"{o}}zer, Hasan and Bonfanti, Silvia and Weyns, Danny},
title = "Technical Debt in Microservices: {A} Mixed-Method Case Study",
booktitle = "Software Architecture. {ECSA} 2023 Tracks, Workshops, and Doctoral Symposium - Istanbul, Turkey, September 18-22, 2023, Revised Selected Papers",
series = "Lecture Notes in Computer Science",
volume = "14590",
pages = "217--236",
publisher = "Springer",
year = "2023",
url = "https://doi.org/10.1007/978-3-031-66326-0\\_14",
doi = "10.1007/978-3-031-66326-0\\_14",
timestamp = "Sun, 06 Oct 2024 21:00:14 +0200",
biburl = "https://dblp.org/rec/conf/ecsa/VerdecchiaMSV23.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ecsa/VerdecchiaSVP23,
author = "Verdecchia, Roberto and Scommegna, Leonardo and Vicario, Enrico and Pecorella, Tommaso",
editor = {Tekinerdogan, Bedir and Spalazzese, Romina and S{\"{o}}zer, Hasan and Bonfanti, Silvia and Weyns, Danny},
title = "Designing a Future-Proof Reference Architecture for Network Digital Twins",
booktitle = "Software Architecture. {ECSA} 2023 Tracks, Workshops, and Doctoral Symposium - Istanbul, Turkey, September 18-22, 2023, Revised Selected Papers",
series = "Lecture Notes in Computer Science",
volume = "14590",
pages = "287--306",
publisher = "Springer",
year = "2023",
url = "https://doi.org/10.1007/978-3-031-66326-0\\_18",
doi = "10.1007/978-3-031-66326-0\\_18",
timestamp = "Thu, 22 Aug 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/ecsa/VerdecchiaSVP23.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/esem/EdbertOKCV23,
author = "Edbert, Joshua Aldrich and Oishwee, Sahrima Jannat and Karmakar, Shubhashis and Codabux, Zadia and Verdecchia, Roberto",
title = "Exploring Technical Debt in Security Questions on Stack Overflow",
booktitle = "{ACM/IEEE} International Symposium on Empirical Software Engineering and Measurement, {ESEM} 2023, New Orleans, LA, USA, October 26-27, 2023",
pages = "1--12",
publisher = "{IEEE}",
year = "2023",
url = "https://doi.org/10.1109/ESEM56168.2023.10304868",
doi = "10.1109/ESEM56168.2023.10304868",
timestamp = "Thu, 17 Oct 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/esem/EdbertOKCV23.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icsa/FunkeLV23,
author = "Funke, Markus and Lago, Patricia and Verdecchia, Roberto",
title = "Variability Features: Extending Sustainability Decision Maps via an Industrial Case Study",
booktitle = "20th International Conference on Software Architecture, {ICSA} 2023 - Companion, L'Aquila, Italy, March 13-17, 2023",
pages = "1--7",
publisher = "{IEEE}",
year = "2023",
url = "https://doi.org/10.1109/ICSA-C57050.2023.00024",
doi = "10.1109/ICSA-C57050.2023.00024",
timestamp = "Mon, 26 Jun 2023 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/icsa/FunkeLV23.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/corr/abs-2301-11047,
author = "Verdecchia, Roberto and Sallou, June and Cruz, Luis",
title = "A Systematic Review of Green {AI}",
journal = "CoRR",
volume = "abs/2301.11047",
year = "2023",
url = "https://doi.org/10.48550/arXiv.2301.11047",
doi = "10.48550/ARXIV.2301.11047",
eprinttype = "arXiv",
eprint = "2301.11047",
timestamp = "Tue, 21 Mar 2023 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/corr/abs-2301-11047.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/corr/abs-2307-11387,
author = "Edbert, Joshua Aldrich and Oishwee, Sahrima Jannat and Karmakar, Shubhashis and Codabux, Zadia and Verdecchia, Roberto",
title = "Exploring Technical Debt in Security Questions on Stack Overflow",
journal = "CoRR",
volume = "abs/2307.11387",
year = "2023",
url = "https://doi.org/10.48550/arXiv.2307.11387",
doi = "10.48550/ARXIV.2307.11387",
eprinttype = "arXiv",
eprint = "2307.11387",
timestamp = "Thu, 17 Oct 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/corr/abs-2307-11387.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/ese/HerboldTLAGCBNM22,
author = {Herbold, Steffen and Trautsch, Alexander and Ledel, Benjamin and Aghamohammadi, Alireza and Ghaleb, Taher Ahmed and Chahal, Kuljit Kaur and Bossenmaier, Tim and Nagaria, Bhaveet and Makedonski, Philip and Ahmadabadi, Matin Nili and Szabados, Kristof and Spieker, Helge and Madeja, Matej and Hoy, Nathaniel and Lenarduzzi, Valentina and Wang, Shangwen and Rodr{\'{\i}}guez{-}P{\'{e}}rez, Gema and Palacios, Ricardo Colomo and Verdecchia, Roberto and Singh, Paramvir and Qin, Yihao and Chakroborti, Debasish and Davis, Willard and Walunj, Vijay and Wu, Hongjun and Marcilio, Diego and Alam, Omar and Aldaeej, Abdullah and Amit, Idan and Turhan, Burak and Eismann, Simon and Wickert, Anna{-}Katharina and Malavolta, Ivano and Sul{\'{\i}}r, Mat{\'{u}}s and Fard, Fatemeh H. and Henley, Austin Z. and Kourtzanidis, Stratos and Tuzun, Eray and Treude, Christoph and Shamasbi, Simin Maleki and Pashchenko, Ivan and Wyrich, Marvin and Davis, James and Serebrenik, Alexander and Albrecht, Ella and Aktas, Ethem Utku and Str{\"{u}}ber, Daniel and Erbel, Johannes},
title = "A fine-grained data set and analysis of tangling in bug fixing commits",
journal = "Empir. Softw. Eng.",
volume = "27",
number = "6",
pages = "125",
year = "2022",
url = "https://doi.org/10.1007/s10664-021-10083-5",
doi = "10.1007/S10664-021-10083-5",
timestamp = "Sun, 04 Aug 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/ese/HerboldTLAGCBNM22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/peerj-cs/VerdecchiaMLO22,
author = "Verdecchia, Roberto and Malavolta, Ivano and Lago, Patricia and Ozkaya, Ipek",
title = "Empirical evaluation of an architectural technical debt index in the context of the Apache and {ONAP} ecosystems",
journal = "PeerJ Comput. Sci.",
volume = "8",
pages = "e833",
year = "2022",
url = "https://doi.org/10.7717/peerj-cs.833",
doi = "10.7717/PEERJ-CS.833",
timestamp = "Tue, 16 Aug 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/peerj-cs/VerdecchiaMLO22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/suscom/VerdecchiaLV22,
author = "Verdecchia, Roberto and Lago, Patricia and de Vries, Carol",
title = "The future of sustainable digital infrastructures: {A} landscape of solutions, adoption factors, impediments, open problems, and scenarios",
journal = "Sustain. Comput. Informatics Syst.",
volume = "35",
pages = "100767",
year = "2022",
url = "https://doi.org/10.1016/j.suscom.2022.100767",
doi = "10.1016/J.SUSCOM.2022.100767",
timestamp = "Fri, 08 Mar 2024 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/suscom/VerdecchiaLV22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ast/BertolinoCMV22,
author = "Bertolino, Antonia and Cruciani, Emilio and Miranda, Breno and Verdecchia, Roberto",
title = "Testing non-testable programs using association rules",
booktitle = "{IEEE/ACM} International Conference on Automation of Software Test, AST@ICSE 2022, Pittsburgh, PA, USA, May 21-22, 2022",
pages = "87--91",
publisher = "{ACM/IEEE}",
year = "2022",
url = "https://doi.org/10.1145/3524481.3527238",
doi = "10.1145/3524481.3527238",
timestamp = "Tue, 21 Mar 2023 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/ast/BertolinoCMV22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/esem/KozanidisVG22,
author = "Kozanidis, Nicholas and Verdecchia, Roberto and Guzman, Emitza",
editor = {Madeiral, Fernanda and Lassenius, Casper and Conte, Tayana and M{\"{a}}nnist{\"{o}}, Tomi},
title = "Asking about Technical Debt: Characteristics and Automatic Identification of Technical Debt Questions on Stack Overflow",
booktitle = "{ESEM} '22: {ACM} / {IEEE} International Symposium on Empirical Software Engineering and Measurement, Helsinki, Finland, September 19 - 23, 2022",
pages = "45--56",
publisher = "{ACM}",
year = "2022",
url = "https://doi.org/10.1145/3544902.3546245",
doi = "10.1145/3544902.3546245",
timestamp = "Thu, 28 Mar 2024 11:32:36 +0100",
biburl = "https://dblp.org/rec/conf/esem/KozanidisVG22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ict4s/Verdecchia0SLWH22,
author = "Verdecchia, Roberto and Cruz, Lu{\'{\i}}s and Sallou, June and Lin, Michelle and Wickenden, James and Hotellier, Estelle",
title = "Data-Centric Green {AI} An Exploratory Empirical Study",
booktitle = "International Conference on {ICT} for Sustainability, {ICT4S} 2022, Plovdiv, Bulgaria, June 13-17, 2022",
pages = "35--45",
publisher = "{IEEE}",
year = "2022",
url = "https://doi.org/10.1109/ICT4S55073.2022.00015",
doi = "10.1109/ICT4S55073.2022.00015",
timestamp = "Sun, 12 Nov 2023 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/ict4s/Verdecchia0SLWH22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ict4s/VosLVH22,
author = "Vos, Sophie and Lago, Patricia and Verdecchia, Roberto and Heitlager, Ilja",
title = "Architectural Tactics to Optimize Software for Energy Efficiency in the Public Cloud",
booktitle = "International Conference on {ICT} for Sustainability, {ICT4S} 2022, Plovdiv, Bulgaria, June 13-17, 2022",
pages = "77--87",
publisher = "{IEEE}",
year = "2022",
url = "https://doi.org/10.1109/ICT4S55073.2022.00019",
doi = "10.1109/ICT4S55073.2022.00019",
timestamp = "Sun, 02 Oct 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/ict4s/VosLVH22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/mobilesoft/WattenbachAFDVM22,
author = "Wattenbach, Leonhard and Aslan, Basel and Fiore, Matteo Maria and Ding, Henley and Verdecchia, Roberto and Malavolta, Ivano",
title = "Do You Have the Energy for This Meeting?: An Empirical Study on the Energy Consumption of the Google Meet and Zoom Android apps",
booktitle = "9th {IEEE/ACM} International Conference on Mobile Software Engineering and Systems, MobileSoft@ICSE 2022, Pittsburgh, PA, USA, May 17-18, 2022",
pages = "6--16",
publisher = "{IEEE}",
year = "2022",
url = "https://doi.org/10.1145/3524613.3527812",
doi = "10.1145/3524613.3527812",
timestamp = "Sun, 02 Oct 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/mobilesoft/WattenbachAFDVM22.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/corr/abs-2204-02766,
author = "Verdecchia, Roberto and Cruz, Lu{\'{\i}}s and Sallou, June and Lin, Michelle and Wickenden, James and Hotellier, Estelle",
title = "Data-Centric Green {AI:} An Exploratory Empirical Study",
journal = "CoRR",
volume = "abs/2204.02766",
year = "2022",
url = "https://doi.org/10.48550/arXiv.2204.02766",
doi = "10.48550/ARXIV.2204.02766",
eprinttype = "arXiv",
eprint = "2204.02766",
timestamp = "Mon, 20 Jun 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/corr/abs-2204-02766.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/access/VerdecchiaCMB21,
author = "Verdecchia, Roberto and Cruciani, Emilio and Miranda, Breno and Bertolino, Antonia",
title = "Know You Neighbor: Fast Static Prediction of Test Flakiness",
journal = "{IEEE} Access",
volume = "9",
pages = "76119--76134",
year = "2021",
url = "https://doi.org/10.1109/ACCESS.2021.3082424",
doi = "10.1109/ACCESS.2021.3082424",
timestamp = "Tue, 15 Jun 2021 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/access/VerdecchiaCMB21.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/jisa/AutiliMPSV21,
author = "Autili, Marco and Malavolta, Ivano and Perucci, Alexander and Scoccia, Gian Luca and Verdecchia, Roberto",
title = "Software engineering techniques for statically analyzing mobile apps: research trends, characteristics, and potential for industrial adoption",
journal = "J. Internet Serv. Appl.",
volume = "12",
number = "1",
pages = "3",
year = "2021",
url = "https://doi.org/10.1186/s13174-021-00134-x",
doi = "10.1186/S13174-021-00134-X",
timestamp = "Tue, 16 Aug 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/jisa/AutiliMPSV21.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/jss/VerdecchiaKLM21,
author = "Verdecchia, Roberto and Kruchten, Philippe and Lago, Patricia and Malavolta, Ivano",
title = "Building and evaluating a theory of architectural technical debt in software-intensive systems",
journal = "J. Syst. Softw.",
volume = "176",
pages = "110925",
year = "2021",
url = "https://doi.org/10.1016/j.jss.2021.110925",
doi = "10.1016/J.JSS.2021.110925",
timestamp = "Wed, 16 Mar 2022 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/jss/VerdecchiaKLM21.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/software/VerdecchiaLEVE21,
author = "Verdecchia, Roberto and Lago, Patricia and Ebert, Christof and de Vries, Carol",
title = "Green {IT} and Green Software",
journal = "{IEEE} Softw.",
volume = "38",
number = "6",
pages = "7--15",
year = "2021",
url = "https://doi.org/10.1109/MS.2021.3102254",
doi = "10.1109/MS.2021.3102254",
timestamp = "Mon, 03 Jan 2022 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/software/VerdecchiaLEVE21.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ecsa/OspinaVML21,
author = "Ospina, Sebasti{\'{a}}n and Verdecchia, Roberto and Malavolta, Ivano and Lago, Patricia",
editor = "Heinrich, Robert and Mirandola, Raffaela and Weyns, Danny",
title = "ATDx: {A} tool for Providing a Data-driven Overview of Architectural Technical Debt in Software-intensive Systems (short paper)",
booktitle = {{ECSA} 2021 Companion Volume, Virtual (originally: V{\"{a}}xj{\"{o}}, Sweden), 13-17 September, 2021},
series = "{CEUR} Workshop Proceedings",
volume = "2978",
publisher = "CEUR-WS.org",
year = "2021",
url = "https://ceur-ws.org/Vol-2978/tool-paper101.pdf",
timestamp = "Fri, 10 Mar 2023 16:23:20 +0100",
biburl = "https://dblp.org/rec/conf/ecsa/OspinaVML21.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ecsa/VerdecchiaKLM21,
author = "Verdecchia, Roberto and Kruchten, Philippe and Lago, Patricia and Malavolta, Ivano",
editor = "Heinrich, Robert and Mirandola, Raffaela and Weyns, Danny",
title = "Summary: Building and Evaluating a Theory of Architectural Technical Debt in Software-Intensive Systems (short paper)",
booktitle = {{ECSA} 2021 Companion Volume, Virtual (originally: V{\"{a}}xj{\"{o}}, Sweden), 13-17 September, 2021},
series = "{CEUR} Workshop Proceedings",
volume = "2978",
publisher = "CEUR-WS.org",
year = "2021",
url = "https://ceur-ws.org/Vol-2978/jf-paper86.pdf",
timestamp = "Fri, 10 Mar 2023 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/ecsa/VerdecchiaKLM21.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icse/BognerVG21,
author = "Bogner, Justus and Verdecchia, Roberto and Gerostathopoulos, Ilias",
title = "Characterizing Technical Debt and Antipatterns in AI-Based Systems: {A} Systematic Mapping Study",
booktitle = "4th {IEEE/ACM} International Conference on Technical Debt, TechDebt@ICSE 2021, Madrid, Spain, May 19-21, 2021",
pages = "64--73",
publisher = "{IEEE}",
year = "2021",
url = "https://doi.org/10.1109/TechDebt52882.2021.00016",
doi = "10.1109/TECHDEBT52882.2021.00016",
timestamp = "Sun, 02 Oct 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/icse/BognerVG21.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/corr/abs-2103-09783,
author = "Bogner, Justus and Verdecchia, Roberto and Gerostathopoulos, Ilias",
title = "Characterizing Technical Debt and Antipatterns in AI-Based Systems: {A} Systematic Mapping Study",
journal = "CoRR",
volume = "abs/2103.09783",
year = "2021",
url = "https://arxiv.org/abs/2103.09783",
eprinttype = "arXiv",
eprint = "2103.09783",
timestamp = "Tue, 23 Mar 2021 00:00:00 +0100",
biburl = "https://dblp.org/rec/journals/corr/abs-2103-09783.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ecsa/VerdecchiaKL20,
author = "Verdecchia, Roberto and Kruchten, Philippe and Lago, Patricia",
editor = "Jansen, Anton and Malavolta, Ivano and Muccini, Henry and Ozkaya, Ipek and Zimmermann, Olaf",
title = "Architectural Technical Debt: {A} Grounded Theory",
booktitle = "Software Architecture - 14th European Conference, {ECSA} 2020, L'Aquila, Italy, September 14-18, 2020, Proceedings",
series = "Lecture Notes in Computer Science",
volume = "12292",
pages = "202--219",
publisher = "Springer",
year = "2020",
url = "https://doi.org/10.1007/978-3-030-58923-3\\_14",
doi = "10.1007/978-3-030-58923-3\\_14",
timestamp = "Sun, 25 Oct 2020 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/ecsa/VerdecchiaKL20.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/enase/VerdecchiaLMO20,
author = "Verdecchia, Roberto and Lago, Patricia and Malavolta, Ivano and Ozkaya, Ipek",
editor = "Ali, Raian and Kaindl, Hermann and Maciaszek, Leszek A.",
title = "ATDx: Building an Architectural Technical Debt Index",
booktitle = "Proceedings of the 15th International Conference on Evaluation of Novel Approaches to Software Engineering, {ENASE} 2020, Prague, Czech Republic, May 5-6, 2020",
pages = "531--539",
publisher = "{SCITEPRESS}",
year = "2020",
url = "https://doi.org/10.5220/0009577805310539",
doi = "10.5220/0009577805310539",
timestamp = "Tue, 06 Jun 2023 14:58:00 +0200",
biburl = "https://dblp.org/rec/conf/enase/VerdecchiaLMO20.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/msr/CoroVCMB20,
author = "Cor{\`{o}}, Federico and Verdecchia, Roberto and Cruciani, Emilio and Miranda, Breno and Bertolino, Antonia",
editor = "Kim, Sunghun and Gousios, Georgios and Nadi, Sarah and Hejderup, Joseph",
title = "JTeC: {A} Large Collection of Java Test Classes for Test Code Analysis and Processing",
booktitle = "{MSR} '20: 17th International Conference on Mining Software Repositories, Seoul, Republic of Korea, 29-30 June, 2020",
pages = "578--582",
publisher = "{ACM}",
year = "2020",
url = "https://doi.org/10.1145/3379597.3387484",
doi = "10.1145/3379597.3387484",
timestamp = "Tue, 29 Dec 2020 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/msr/CoroVCMB20.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/corr/abs-2011-06244,
author = {Herbold, Steffen and Trautsch, Alexander and Ledel, Benjamin and Aghamohammadi, Alireza and Ghaleb, Taher Ahmed and Chahal, Kuljit Kaur and Bossenmaier, Tim and Nagaria, Bhaveet and Makedonski, Philip and Ahmadabadi, Matin Nili and Szabados, Krist{\'{o}}f and Spieker, Helge and Madeja, Matej and Hoy, Nathaniel and Lenarduzzi, Valentina and Wang, Shangwen and Rodr{\'{\i}}guez{-}P{\'{e}}rez, Gema and Palacios, Ricardo Colomo and Verdecchia, Roberto and Singh, Paramvir and Qin, Yihao and Chakroborti, Debasish and Davis, Willard and Walunj, Vijay and Wu, Hongjun and Marcilio, Diego and Alam, Omar and Aldaeej, Abdullah and Amit, Idan and Turhan, Burak and Eismann, Simon and Wickert, Anna{-}Katharina and Malavolta, Ivano and Sul{\'{\i}}r, Mat{\'{u}}s and Fard, Fatemeh H. and Henley, Austin Z. and Kourtzanidis, Stratos and Tuzun, Eray and Treude, Christoph and Shamasbi, Simin Maleki and Pashchenko, Ivan and Wyrich, Marvin and Davis, James and Serebrenik, Alexander and Albrecht, Ella and Aktas, Ethem Utku and Str{\"{u}}ber, Daniel and Erbel, Johannes},
title = "Large-Scale Manual Validation of Bug Fixing Commits: {A} Fine-grained Analysis of Tangling",
journal = "CoRR",
volume = "abs/2011.06244",
year = "2020",
url = "https://arxiv.org/abs/2011.06244",
eprinttype = "arXiv",
eprint = "2011.06244",
timestamp = "Wed, 15 Jun 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/corr/abs-2011-06244.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/hicss/LagoCBKV19,
author = "Lago, Patricia and Cai, Jia F. and de Boer, Remco C. and Kruchten, Philippe and Verdecchia, Roberto",
editor = "Bui, Tung",
title = "DecidArch: Playing Cards as Software Architects",
booktitle = "52nd Hawaii International Conference on System Sciences, {HICSS} 2019, Grand Wailea, Maui, Hawaii, USA, January 8-11, 2019",
pages = "1--10",
publisher = "ScholarSpace",
year = "2019",
url = "https://hdl.handle.net/10125/60220",
timestamp = "Wed, 04 May 2022 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/hicss/LagoCBKV19.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icsa/VerdecchiaML19,
author = "Verdecchia, Roberto and Malavolta, Ivano and Lago, Patricia",
title = "Guidelines for Architecting Android Apps: {A} Mixed-Method Empirical Study",
booktitle = "{IEEE} International Conference on Software Architecture, {ICSA} 2019, Hamburg, Germany, March 25-29, 2019",
pages = "141--150",
publisher = "{IEEE}",
year = "2019",
url = "https://doi.org/10.1109/ICSA.2019.00023",
doi = "10.1109/ICSA.2019.00023",
timestamp = "Tue, 29 Dec 2020 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/icsa/VerdecchiaML19.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icsa/BoerLVK19,
author = "de Boer, Remco C. and Lago, Patricia and Verdecchia, Roberto and Kruchten, Philippe",
title = "DecidArch {V2:} An Improved Game to Teach Architecture Design Decision Making",
booktitle = "{IEEE} International Conference on Software Architecture Companion, {ICSA} Companion 2019, Hamburg, Germany, March 25-26, 2019",
pages = "153--157",
publisher = "{IEEE}",
year = "2019",
url = "https://doi.org/10.1109/ICSA-C.2019.00034",
doi = "10.1109/ICSA-C.2019.00034",
timestamp = "Sun, 06 Oct 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/icsa/BoerLVK19.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icse/CrucianiMVB19,
author = "Cruciani, Emilio and Miranda, Breno and Verdecchia, Roberto and Bertolino, Antonia",
editor = "Atlee, Joanne M. and Bultan, Tevfik and Whittle, Jon",
title = "Scalable approaches for test suite reduction",
booktitle = "Proceedings of the 41st International Conference on Software Engineering, {ICSE} 2019, Montreal, QC, Canada, May 25-31, 2019",
pages = "419--429",
publisher = "{IEEE} / {ACM}",
year = "2019",
url = "https://doi.org/10.1109/ICSE.2019.00055",
doi = "10.1109/ICSE.2019.00055",
timestamp = "Tue, 24 May 2022 15:28:49 +0200",
biburl = "https://dblp.org/rec/conf/icse/CrucianiMVB19.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@misc{DBLP:data/10/CoroVCMB19,
author = "Cor{\`{o}}, Federico and Verdecchia, Roberto and Cruciani, Emilio and Miranda, Breno and Bertolino, Antonia",
title = "JTeC: {A} Large Collection of Java Test Classes forTest Code Analysis and Processing (Version 1.0)",
publisher = "Zenodo",
year = "2019",
month = "February",
howpublished = "\url{https://doi.org/10.5281/zenodo.2558714}",
note = "Accessed on YYYY-MM-DD.",
url = "https://doi.org/10.5281/zenodo.2558714",
doi = "10.5281/ZENODO.2558714",
timestamp = "Thu, 12 Dec 2024 00:00:00 +0100",
biburl = "https://dblp.org/rec/data/10/CoroVCMB19.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@misc{DBLP:data/10/CoroVCMB19a,
author = "Cor{\`{o}}, Federico and Verdecchia, Roberto and Cruciani, Emilio and Miranda, Breno and Bertolino, Antonia",
title = "MSR19-JTeC/JTeC: Initial JTeC release (Version v1.0.0)",
publisher = "Zenodo",
year = "2019",
month = "February",
howpublished = "\url{https://doi.org/10.5281/zenodo.2560702}",
note = "Accessed on YYYY-MM-DD.",
url = "https://doi.org/10.5281/zenodo.2560702",
doi = "10.5281/ZENODO.2560702",
timestamp = "Fri, 06 Sep 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/data/10/CoroVCMB19a.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@misc{DBLP:data/10/CoroVCMB19b,
author = "Cor{\`{o}}, Federico and Verdecchia, Roberto and Cruciani, Emilio and Miranda, Breno and Bertolino, Antonia",
title = "JTeC: {A} Large Collection of Java Test Classes forTest Code Analysis and Processing (Version 2.0)",
publisher = "Zenodo",
year = "2019",
month = "May",
howpublished = "\url{https://doi.org/10.5281/zenodo.2878368}",
note = "Accessed on YYYY-MM-DD.",
url = "https://doi.org/10.5281/zenodo.2878368",
doi = "10.5281/ZENODO.2878368",
timestamp = "Thu, 12 Dec 2024 00:00:00 +0100",
biburl = "https://dblp.org/rec/data/10/CoroVCMB19b.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@misc{DBLP:data/10/CoroVCMB19c,
author = "Cor{\`{o}}, Federico and Verdecchia, Roberto and Cruciani, Emilio and Miranda, Breno and Bertolino, Antonia",
title = "JTeC: {A} Large Collection of Java Test Classes forTest Code Analysis and Processing (Version 2.0)",
publisher = "Zenodo",
year = "2019",
month = "May",
howpublished = "\url{https://doi.org/10.5281/zenodo.3711509}",
note = "Accessed on YYYY-MM-DD.",
url = "https://doi.org/10.5281/zenodo.3711509",
doi = "10.5281/ZENODO.3711509",
timestamp = "Thu, 12 Dec 2024 00:00:00 +0100",
biburl = "https://dblp.org/rec/data/10/CoroVCMB19c.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@misc{DBLP:data/10/CrucianiMVB19,
author = "Cruciani, Emilio and Miranda, Breno and Verdecchia, Roberto and Bertolino, Antonia",
title = "Scalable Approaches for Test Suite Reduction (Version v1.0.0)",
publisher = "Zenodo",
year = "2019",
month = "January",
howpublished = "\url{https://doi.org/10.5281/zenodo.2550079}",
note = "Accessed on YYYY-MM-DD.",
url = "https://doi.org/10.5281/zenodo.2550079",
doi = "10.5281/ZENODO.2550079",
timestamp = "Thu, 05 Sep 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/data/10/CrucianiMVB19.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icsa/Verdecchia18,
author = "Verdecchia, Roberto",
title = "Architectural Technical Debt Identification: Moving Forward",
booktitle = "2018 {IEEE} International Conference on Software Architecture Companion, {ICSA} Companion 2018, Seattle, WA, USA, April 30 - May 4, 2018",
pages = "43--44",
publisher = "{IEEE} Computer Society",
year = "2018",
url = "https://doi.org/10.1109/ICSA-C.2018.00018",
doi = "10.1109/ICSA-C.2018.00018",
timestamp = "Fri, 24 Mar 2023 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/icsa/Verdecchia18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icse/VerdecchiaML18,
author = "Verdecchia, Roberto and Malavolta, Ivano and Lago, Patricia",
editor = "Nord, Robert L. and Buschmann, Frank and Kruchten, Philippe",
title = "Architectural technical debt identification: the research landscape",
booktitle = "Proceedings of the 2018 International Conference on Technical Debt, TechDebt@ICSE 2018, Gothenburg, Sweden, May 27-28, 2018",
pages = "11--20",
publisher = "{ACM}",
year = "2018",
url = "https://doi.org/10.1145/3194164.3194176",
doi = "10.1145/3194164.3194176",
timestamp = "Tue, 10 Aug 2021 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/icse/VerdecchiaML18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icse/Verdecchia18,
author = "Verdecchia, Roberto",
editor = "Julien, Christine and Lewis, Grace A. and Segall, Itai",
title = "Identifying architectural technical debt in Android applications through automated compliance checking",
booktitle = "Proceedings of the 5th International Conference on Mobile Software Engineering and Systems, MOBILESoft@ICSE 2018, Gothenburg, Sweden, May 27 - 28, 2018",
pages = "35--36",
publisher = "{ACM}",
year = "2018",
url = "https://doi.org/10.1145/3197231.3198442",
doi = "10.1145/3197231.3198442",
timestamp = "Tue, 10 Aug 2021 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/icse/Verdecchia18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icse/MirandaCVB18,
author = "Miranda, Breno and Cruciani, Emilio and Verdecchia, Roberto and Bertolino, Antonia",
editor = "Chaudron, Michel and Crnkovic, Ivica and Chechik, Marsha and Harman, Mark",
title = "{FAST} approaches to scalable similarity-based test case prioritization",
booktitle = "Proceedings of the 40th International Conference on Software Engineering, {ICSE} 2018, Gothenburg, Sweden, May 27 - June 03, 2018",
pages = "222--232",
publisher = "{ACM}",
year = "2018",
url = "https://doi.org/10.1145/3180155.3180210",
doi = "10.1145/3180155.3180210",
timestamp = "Tue, 10 Aug 2021 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/icse/MirandaCVB18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/icsm/MalavoltaVFBL18,
author = "Malavolta, Ivano and Verdecchia, Roberto and Filipovic, Bojan and Bruntink, Magiel and Lago, Patricia",
title = "How Maintainability Issues of Android Apps Evolve",
booktitle = "2018 {IEEE} International Conference on Software Maintenance and Evolution, {ICSME} 2018, Madrid, Spain, September 23-29, 2018",
pages = "334--344",
publisher = "{IEEE} Computer Society",
year = "2018",
url = "https://doi.org/10.1109/ICSME.2018.00042",
doi = "10.1109/ICSME.2018.00042",
timestamp = "Fri, 24 Mar 2023 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/icsm/MalavoltaVFBL18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/ict4s/VerdecchiaSPL18,
author = "Verdecchia, Roberto and Saez, Ren{\'{e}} Aparicio and Procaccianti, Giuseppe and Lago, Patricia",
editor = "Penzenstadler, Birgit and Easterbrook, Steve and Venters, Colin C. and Ahmed, Syed Ishtiaque",
title = "Empirical Evaluation of the Energy Impact of Refactoring Code Smells",
booktitle = "5th International Conference on Information and Communication Technology for Sustainability, {ICT4S} 2018, Toronto, Canada, May 14-18, 2018",
series = "EPiC Series in Computing",
volume = "52",
pages = "365--383",
publisher = "EasyChair",
year = "2018",
url = "https://doi.org/10.29007/dz83",
doi = "10.29007/DZ83",
timestamp = "Thu, 14 Oct 2021 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/ict4s/VerdecchiaSPL18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@incollection{DBLP:books/sp/18/VerdecchiaGBK18,
author = "Verdecchia, Roberto and Guldner, Achim and Becker, Yannick and Kern, Eva",
editor = {Bungartz, Hans{-}Joachim and Kranzlm{\"{u}}ller, Dieter and Weinberg, Volker and Weism{\"{u}}ller, Jens and Wohlgemuth, Volker},
title = "Code-Level Energy Hotspot Localization via Naive Spectrum Based Testing",
booktitle = "Advances and New Trends in Environmental Informatics - Managing Disruption, Big Data and Open Science",
pages = "111--130",
publisher = "Springer",
year = "2018",
url = "https://doi.org/10.1007/978-3-319-99654-7\\_8",
doi = "10.1007/978-3-319-99654-7\\_8",
timestamp = "Mon, 16 Sep 2019 14:43:19 +0200",
biburl = "https://dblp.org/rec/books/sp/18/VerdecchiaGBK18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@misc{DBLP:data/10/MirandaCVB18,
author = "Miranda, Breno and Cruciani, Emilio and Verdecchia, Roberto and Bertolino, Antonia",
title = {Supplementary material (source code and results) for "FAST Approaches to Scalable Similarity-based Test Case Prioritization" (Version v1.0.0)},
publisher = "Zenodo",
year = "2018",
month = "March",
howpublished = "\url{https://doi.org/10.5281/zenodo.1208196}",
note = "Accessed on YYYY-MM-DD.",
url = "https://doi.org/10.5281/zenodo.1208196",
doi = "10.5281/ZENODO.1208196",
timestamp = "Thu, 29 Aug 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/data/10/MirandaCVB18.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/esem/VerdecchiaPMLK17,
author = "Verdecchia, Roberto and Procaccianti, Giuseppe and Malavolta, Ivano and Lago, Patricia and Koedijk, Joost",
editor = "Bener, Ayse and Turhan, Burak and Biffl, Stefan",
title = "Estimating Energy Impact of Software Releases and Deployment Strategies: The {KPMG} Case Study",
booktitle = "2017 {ACM/IEEE} International Symposium on Empirical Software Engineering and Measurement, {ESEM} 2017, Toronto, ON, Canada, November 9-10, 2017",
pages = "257--266",
publisher = "{IEEE} Computer Society",
year = "2017",
url = "https://doi.org/10.1109/ESEM.2017.39",
doi = "10.1109/ESEM.2017.39",
timestamp = "Fri, 24 Mar 2023 00:00:00 +0100",
biburl = "https://dblp.org/rec/conf/esem/VerdecchiaPMLK17.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/enviroinfo/VerdecchiaRHLP16,
author = "Verdecchia, Roberto and Ricchiuti, Fabio and Hankel, Albert and Lago, Patricia and Procaccianti, Giuseppe",
editor = "Wohlgemuth, Volker and Fuchs{-}Kittowski, Frank and Wittmann, Jochen",
title = "Green {ICT} Research and Challenges",
booktitle = "30th International Conference on Environmental Informatics, EnviroInfo 2016, Berlin, Germany, September 14-16, 2016, Part {I:} Advances and New Trends in Environmental Informatics - Stability, Continuity, Innovation",
pages = "37--48",
publisher = "Springer Switzerland, Cham",
year = "2016",
url = "http://iai-uiserv1.iai.fzk.de/ictensure/site?mod=litdb\\&\\#38;subject=art\\&\\#38;pid=X5260007F\\&\\#38;action=detail",
timestamp = "Tue, 24 Nov 2020 15:40:31 +0100",
biburl = "https://dblp.org/rec/conf/enviroinfo/VerdecchiaRHLP16.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@article{DBLP:journals/simpra/BertocciCSV24,
author = "Bertocci, Nicola and Carnevali, Laura and Scommegna, Leonardo and Vicario, Enrico",
title = "Efficient derivation of optimal signal schedules for multimodal intersections",
journal = "Simul. Model. Pract. Theory",
volume = "133",
pages = "102912",
year = "2024",
url = "https://doi.org/10.1016/j.simpat.2024.102912",
doi = "10.1016/J.SIMPAT.2024.102912",
timestamp = "Sat, 08 Jun 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/journals/simpra/BertocciCSV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/aina/BottaCNSVBFGSV24,
author = "Botta, Alessio and Canonico, Roberto and Navarro, Annalisa and Stanco, Giovanni and Ventre, Giorgio and Buonocunto, Antonio and Fresa, Antonio and Gentile, Vincenzo and Scommegna, Leonardo and Vicario, Enrico",
editor = "Barolli, Leonard",
title = "Edge to Cloud Network Function Offloading in the {ADAPTO} Framework",
booktitle = "Advanced Information Networking and Applications - Proceedings of the 38th International Conference on Advanced Information Networking and Applications (AINA-2024), Kitakyushu, Japan, 17-19 April, 2024, Volume 5",
series = "Lecture Notes on Data Engineering and Communications Technologies",
volume = "203",
pages = "69--78",
publisher = "Springer",
year = "2024",
url = "https://doi.org/10.1007/978-3-031-57931-8\\_7",
doi = "10.1007/978-3-031-57931-8\\_7",
timestamp = "Sun, 04 Aug 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/aina/BottaCNSVBFGSV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/aina/PicanoRSV24,
author = "Picano, Benedetta and Reali, Riccardo and Scommegna, Leonardo and Vicario, Enrico",
editor = "Barolli, Leonard",
title = "Elastic Autoscaling for Distributed Workflows in {MEC} Networks",
booktitle = "Advanced Information Networking and Applications - Proceedings of the 38th International Conference on Advanced Information Networking and Applications (AINA-2024), Kitakyushu, Japan, 17-19 April, 2024, Volume 5",
series = "Lecture Notes on Data Engineering and Communications Technologies",
volume = "203",
pages = "151--160",
publisher = "Springer",
year = "2024",
url = "https://doi.org/10.1007/978-3-031-57931-8\\_15",
doi = "10.1007/978-3-031-57931-8\\_15",
timestamp = "Mon, 15 Apr 2024 01:00:00 +0200",
biburl = "https://dblp.org/rec/conf/aina/PicanoRSV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/edcc/CarnevaliCPSV24,
author = "Carnevali, Laura and Cerboni, Stefania and Picano, Benedetta and Scommegna, Leonardo and Vicario, Enrico",
title = "An observation metamodel for dependability tools",
booktitle = "19th European Dependable Computing Conference, {EDCC} 2024, Leuven, Belgium, April 8-11, 2024",
pages = "169--172",
publisher = "{IEEE}",
year = "2024",
url = "https://doi.org/10.1109/EDCC61798.2024.00041",
doi = "10.1109/EDCC61798.2024.00041",
timestamp = "Fri, 24 May 2024 14:14:55 +0200",
biburl = "https://dblp.org/rec/conf/edcc/CarnevaliCPSV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/etfa/PicanoBCV24,
author = "Picano, Benedetta and Becattini, Marco and Carnevali, Laura and Vicario, Enrico",
title = "Democratized Learning Enabling Multi-Level Digital Twin Model Integration",
booktitle = "29th {IEEE} International Conference on Emerging Technologies and Factory Automation, {ETFA} 2024, Padova, Italy, September 10-13, 2024",
pages = "1--8",
publisher = "{IEEE}",
year = "2024",
url = "https://doi.org/10.1109/ETFA61755.2024.10710988",
doi = "10.1109/ETFA61755.2024.10710988",
timestamp = "Wed, 30 Oct 2024 17:28:17 +0100",
biburl = "https://dblp.org/rec/conf/etfa/PicanoBCV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/issre/ScommegnaBFPV24,
author = "Scommegna, Leonardo and Becattini, Marco and Fontani, Giovanni and Paroli, Leonardo and Vicario, Enrico",
title = "Quantitative evaluation of software rejuvenation of a pool of service replicas",
booktitle = "35th {IEEE} International Symposium on Software Reliability Engineering, {ISSRE} 2024 - Workshops, Tsukuba, Japan, October 28-31, 2024",
pages = "402--409",
publisher = "{IEEE}",
year = "2024",
url = "https://doi.org/10.1109/ISSREW63542.2024.00110",
doi = "10.1109/ISSREW63542.2024.00110",
timestamp = "Tue, 10 Dec 2024 13:55:07 +0100",
biburl = "https://dblp.org/rec/conf/issre/ScommegnaBFPV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/issre/ParoliBCV24,
author = "Paroli, Leonardo and Botarelli, Tommaso and Carnevali, Laura and Vicario, Enrico",
title = "A Compositional Approach to Coordinated Software Rejuvenation of Component-Based Systems",
booktitle = "35th {IEEE} International Symposium on Software Reliability Engineering, {ISSRE} 2024, Tsukuba, Japan, October 28-31, 2024",
pages = "593--604",
publisher = "{IEEE}",
year = "2024",
url = "https://doi.org/10.1109/ISSRE62328.2024.00062",
doi = "10.1109/ISSRE62328.2024.00062",
timestamp = "Tue, 10 Dec 2024 13:31:24 +0100",
biburl = "https://dblp.org/rec/conf/issre/ParoliBCV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/qestformats/HorvathHPTV24,
author = "Horv{\'{a}}th, Andr{\'{a}}s and Horv{\'{a}}th, Ill{\'{e}}s and Paolieri, Marco and Telek, Mikl{\'{o}}s and Vicario, Enrico",
editor = "Hillston, Jane and Soudjani, Sadegh and Waga, Masaki",
title = "Approximation of Cumulative Distribution Functions by Bernstein Phase-Type Distributions",
booktitle = "Quantitative Evaluation of Systems and Formal Modeling and Analysis of Timed Systems - First International Joint Conference, {QEST+FORMATS} 2024, Calgary, AB, Canada, September 9-13, 2024, Proceedings",
series = "Lecture Notes in Computer Science",
volume = "14996",
pages = "90--106",
publisher = "Springer",
year = "2024",
url = "https://doi.org/10.1007/978-3-031-68416-6\\_6",
doi = "10.1007/978-3-031-68416-6\\_6",
timestamp = "Mon, 09 Sep 2024 17:03:57 +0200",
biburl = "https://dblp.org/rec/conf/qestformats/HorvathHPTV24.bib",
bibsource = "dblp computer science bibliography, https://dblp.org"
}
@inproceedings{DBLP:conf/qestformats/DenglerCBV24,
author = "Dengler, Gabriel and Carnevali, Laura and Budde, Carlos E. and Vicario, Enrico",
editor = "Hillston, Jane and Soudjani, Sadegh and Waga, Masaki",
title = "Transient Evaluation of Non-Markovian Models by Stochastic State Classes and Simulation",
booktitle = "Quantitative Evaluation of Systems and Formal Modeling and Analysis of Timed Systems - First International Joint Conference, {QEST+FORMATS} 2024, Calgary, AB, Canada, September 9-13, 2024, Proceedings",
series = "Lecture Notes in Computer Science",
volume = "14996",
pages = "213--232",
publisher = "Springer",
year = "2024",
url = "https://doi.org/10.1007/978-3-031-68416-6\\_13",