-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSorter.html
3350 lines (3335 loc) · 123 KB
/
Sorter.html
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
<!-- based on a generated program by ChatGPT 3.5 OpenAI-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artifact Selection -Making Replication Packages Usable (Again)</title>
</head>
<body>
<!-- taken from https://www.textfixer.com/tutorials/css-table-alternating-rows.php#:~:text=You%20can%20use%20the%20nth,tables%20with%20alternating%20row%20colors. -->
<style type="text/css">
.TFtable{
width:100%;
border-collapse:collapse;
}
.TFtable td{
padding:7px; border:#4e95f4 1px solid;
}
/* provide some minimal visual accomodation for IE8 and below */
.TFtable tr{
background: #b8d1f3;
}
/* Define the background color for all the ODD background rows */
.TFtable tr:nth-child(odd){
background: #b8d1f3;
}
/* Define the background color for all the EVEN background rows */
.TFtable tr:nth-child(even){
background: #dae5f4;
}
</style>
<input type="text" id="searchInput" placeholder="Search...">
<table id="ptable" class="TFtable">
<thead>
<tr>
<th>Paper-ID</th>
<th>Title</th>
<th>Index-Terms</th>
<th>Session-Title</th>
<th>URLs Artifact</th>
</tr>
</thead>
<tbody id="ptableb">
</tbody>
</table>
<script>
// Sample list of objects
const objects = [
{
"pID":13,
"Title":"One Adapter for All Programming Languages?\nAdapter Tuning for Code Search and Summarization",
"Indexterms":"transfer learning, adapter, multilingual task",
"Session":"AI Models for SE",
"Domain":"Code Learning\/ Deep Learning",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00013",
"ArtifactURL":"https:\/\/github.com\/wangdeze18\/Multilingual-Adapter-for-SE",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":14,
"Title":"CCRep: Learning Code Change Representations via Pre-Trained Code Model and Query Back",
"Indexterms":"code change, representation learning, commit\nmessage generation, patch correctness assessment, just-in-time\ndefect prediction",
"Session":"AI Models for SE",
"Domain":"Code Changes\/Software Evolution",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00014",
"ArtifactURL":"https:\/\/github.com\/ZJU-CTAG\/CCRep",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":15,
"Title":"Keeping Pace with Ever-Increasing Data: Towards\nContinual Learning of Code Intelligence Models",
"Indexterms":null,
"Session":"AI Models for SE",
"Domain":"Code Learning\/ Deep Learning",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00015",
"ArtifactURL":"https:\/\/github.com\/ReliableCoding\/REPEAT",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":16,
"Title":"Detecting JVM JIT Compiler Bugs via Exploring\nTwo-Dimensional Input Spaces",
"Indexterms":"JVM, JIT Compiler, JVM Testing",
"Session":"Fuzzing: Applications",
"Domain":"Error Detection",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00016",
"ArtifactURL":"https:\/\/github.com\/CGCL-codes\/JOpFuzzer",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":17,
"Title":"JITfuzz: Coverage-guided Fuzzing for JVM\nJust-in-Time Compilers",
"Indexterms":null,
"Session":"Fuzzing: Applications",
"Domain":"Testing\/Fuzzing",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00017",
"ArtifactURL":"https:\/\/github.com\/lochnagarr\/JITFuzz",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":18,
"Title":"Validating SMT Solvers via Skeleton Enumeration\nEmpowered by Historical Bug-Triggering Inputs",
"Indexterms":"SMT solver, fuzzing, skeleton enumeration,\nassociation rules, bug detection",
"Session":"Fuzzing: Applications",
"Domain":"SMT Solver",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00018",
"ArtifactURL":"https:\/\/github.com\/CGCL-codes\/HistFuzz",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":19,
"Title":"Regression Fuzzing for Deep Learning Systems",
"Indexterms":"Regression, Fuzzing, Deep Learning",
"Session":"Fuzzing: Applications",
"Domain":"Code Analysis\/Deep Learning",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00019",
"ArtifactURL":"https:\/\/github.com\/youhanmo\/DRFuzz",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":20,
"Title":"Operand-Variation-Oriented Differential Analysis for Fuzzing Binding Calls in PDF Readers",
"Indexterms":"binding call, PDF reader, type reasoning, fuzzing",
"Session":"Fuzzing: Applications",
"Domain":"Code Analysis",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00020",
"ArtifactURL":"https:\/\/github.com\/TypeOracle\/TypeOracleSrc",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":22,
"Title":"Data Quality for Software Vulnerability Datasets",
"Indexterms":"software vulnerability, data quality, machine\nlearning",
"Session":"Mining Software Repositories",
"Domain":"Error Detection",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00022",
"ArtifactURL":"https:\/\/\ufb01gshare.com\/articles\/software\/Reproduction_Package_for_Data_Quality_for_Software_Vulnerability_Datasets\/20499924",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":23,
"Title":"Do code refactorings in\ufb02uence the merge effort?",
"Indexterms":"Software Merge, Merge Effort, Refactoring,\nAssociation Rules, Data Mining",
"Session":"Mining Software Repositories",
"Domain":"Software Management",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00023",
"ArtifactURL":"https:\/\/github.com\/gems-uff\/refactoring-merge",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":24,
"Title":"A Comprehensive Study of Real-World Bugs\nin Machine Learning Model Optimization",
"Indexterms":"Machine Learning, Model Optimization, Bugs",
"Session":"Mining Software Repositories",
"Domain":"Code Analysis\/Deep Learning",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00024",
"ArtifactURL":"https:\/\/github.com\/MOB2022\/MOB-dataset",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":25,
"Title":"Evaluating the Impact of Experimental Assumptions in Automated Fault Localization",
"Indexterms":"fault localization, program repair, user study",
"Session":"Fault Localization",
"Domain":"Error Detection",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00025",
"ArtifactURL":"https:\/\/figshare.com\/articles\/conference_contribution\/Debugging_Assumptions_Artifact\/21786743",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":26,
"Title":"Locating Framework-speci\ufb01c Crashing Faults with\nCompact and Explainable Candidate Set",
"Indexterms":"Fault Localization, Framework-speci\ufb01c Excep-\ntion, Crash Stack Trace, Android Application",
"Session":"Fault Localization",
"Domain":"Error Detection",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00026",
"ArtifactURL":"https:\/\/github.com\/hanada31\/CrashTracker",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":27,
"Title":"PExReport: Automatic Creation of Pruned\nExecutable Cross-Project Failure Reports",
"Indexterms":"cross-project failure, executable failure report,\nfailure reproduction, build tool, build environment, debloating",
"Session":"Fault Localization",
"Domain":"Error Detection\/Code Analysis",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00027",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7578677",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":28,
"Title":"RAT: A Refactoring-Aware Traceability Model for\nBug Localization",
"Indexterms":"bug localization, bug report similarity, code\nrefactoring, traceability, commit history, information retrieval",
"Session":"Fault Localization",
"Domain":"Error Detection",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00028",
"ArtifactURL":"https:\/\/github.com\/feifeiniu-se\/traceability",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":29,
"Title":"How Do We Read Formal Claims? Eye-Tracking\nand the Cognition of Proofs about Algorithms",
"Indexterms":"formalism comprehension, student cognition,\neye-tracking, facial behavior analysis, human study",
"Session":"Formal Verification",
"Domain":"Developer Analysis",
"Artifact(yes\/no)":"no",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00029",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7626901",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":30,
"Title":"Which of My Assumptions are Unnecessary for\nRealizability and Why Should I Care?",
"Indexterms":null,
"Session":"Formal Verification",
"Domain":"Code Validation\/ Formal Specification Revision",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00030",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7528202",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":31,
"Title":"UPCY: Safely Updating Outdated Dependencies",
"Indexterms":"Semantic versioning, Library updates, Package\nmanagement, Dependency management, Software maintenance",
"Session":"APIs and Libraries",
"Domain":"Dependency Management",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00031",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7037673",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":32,
"Title":"APICAD: Augmenting API Misuse Detection\nthrough Specifi cations from Code and Documents",
"Indexterms":null,
"Session":"APIs and Libraries",
"Domain":"Error Detection",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00032",
"ArtifactURL":"https:\/\/github.com\/x2018\/apicad_public",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":33,
"Title":"Compatibility Issue Detection for Android Apps\nBased on Path-Sensitive Semantic Analysis",
"Indexterms":"Compatibility detection, Android app, Path-\nsensitive analysis, Semantic analysis",
"Session":"APIs and Libraries",
"Domain":"Error Detection",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00033",
"ArtifactURL":"https:\/\/github.com\/PSDroid2022",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":34,
"Title":"OSSFP: Precise and Scalable C\/C++ Third-Party\nLibrary Detection using Fingerprinting Functions",
"Indexterms":null,
"Session":"APIs and Libraries",
"Domain":"Code Analysis",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00034",
"ArtifactURL":"https:\/\/sites.google.com\/view\/icse2023sca",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":35,
"Title":"SMARTMARK: Software Watermarking Scheme for Smart Contracts",
"Indexterms":"Smart contract, Software watermarking,\nBlockchain, Software copyrights",
"Session":"Blockchain\/Smart Contracts",
"Domain":"Smart Contracts",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00035",
"ArtifactURL":"https:\/\/doi.org\/10.6084\/m9.figshare.21966875.v1",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":36,
"Title":"Turn the Rudder: A Beacon of Reentrancy\nDetection for Smart Contracts on Ethereum",
"Indexterms":"Smart contract, Reentrancy, Empirical study",
"Session":"Blockchain\/Smart Contracts",
"Domain":"Smart Contracts",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00036",
"ArtifactURL":"https:\/\/github.com\/InPlusLab\/ReentrancyStudy-Data",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":37,
"Title":"BSHUNTER: Detecting and Tracing Defects of\nBitcoin Scripts",
"Indexterms":"bitcoin, blockchain, smart contract",
"Session":"Blockchain\/Smart Contracts",
"Domain":"Smart Contracts\/Error Detection",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00037",
"ArtifactURL":"https:\/\/github.com\/InPlusLab\/bshunter-btcd",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":38,
"Title":"Do I Belong? Modeling Sense of Virtual Community Among Linux Kernel Contributors",
"Indexterms":"sense of virtual community, belonging, open\nsource, software developers, human factors, survey, PLS-SEM",
"Session":"Cognitive Aspects of Software Development",
"Domain":"Developer Analysis",
"Artifact(yes\/no)":"no",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00038",
"ArtifactURL":"https:\/\/figshare.com\/s\/5cedff387200ebc379cb",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":39,
"Title":"Comparison and Evaluation of Clone Detection\nTechniques with Different Code Representations",
"Indexterms":"Clone Detection, Empirical Study, Code Repre-\nsentation, Large Scale",
"Session":"Code Smells and Clones",
"Domain":"Code Clone Detection",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00039",
"ArtifactURL":"https:\/\/github.com\/TACC-Code\/TACC",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":40,
"Title":"Learning Graph-based Code Representations for\nSource-level Functional Similarity Detection",
"Indexterms":null,
"Session":"Code Smells and Clones",
"Domain":"Code Similarity",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00040",
"ArtifactURL":"https:\/\/github.com\/jun-zeng\/Tailor",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":41,
"Title":"The Smelly Eight: An Empirical Study on the\nPrevalence of Code Smells in Quantum Computing",
"Indexterms":"Quantum computing, Quantum software engi-\nneering, Empirical study, Quantum-speci\ufb01c code smell",
"Session":"Code Smells and Clones",
"Domain":"Error Detection\/Code Smells",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00041",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7625865",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":42,
"Title":"Reachable Coverage: Estimating Saturation in Fuzzing",
"Indexterms":null,
"Session":"Fuzzing: Techniques and Tools",
"Domain":"Testing\/Fuzzing",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00042",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7571359",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":43,
"Title":"Learning Seed-Adaptive Mutation Strategies for\nGreybox Fuzzing",
"Indexterms":null,
"Session":"Fuzzing: Techniques and Tools",
"Domain":"Testing\/Fuzzing",
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00043",
"ArtifactURL":"https:\/\/github.com\/kupl\/SeamFuzz-public",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":44,
"Title":"Improving Java Deserialization Gadget Chain\nMining via Overriding-Guided Object Generation",
"Indexterms":"Java deserialization vulnerability, gadget chain,\nmethod overriding, exploit generation",
"Session":"Fuzzing: Techniques and Tools",
"Domain":"Code Analysis",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00044",
"ArtifactURL":"https:\/\/github.com\/GCMiner\/GCMiner",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":45,
"Title":"Evaluating and Improving Hybrid Fuzzing",
"Indexterms":null,
"Session":"Fuzzing: Techniques and Tools",
"Domain":"Testing\/Fuzzing",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00045",
"ArtifactURL":"https:\/\/github.com\/Tricker-z\/CoFuzz",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":46,
"Title":"Robusti\ufb01cation of Behavioral Designs against\nEnvironmental Deviations",
"Indexterms":null,
"Session":"Software Architectures and Design",
"Domain":"Software Design",
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00046",
"ArtifactURL":"https:\/\/github.com\/cmu-soda\/fortis-core",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":47,
"Title":"A Qualitative Study on the Implementation Design\nDecisions of Developers",
"Indexterms":"implementation design decisions, software de-\nsign",
"Session":"Software Architectures and Design",
"Domain":"Developer Analysis",
"Artifact(yes\/no)":"no",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00047",
"ArtifactURL":"https:\/\/doi.org\/10.6084\/m9.figshare.21820140",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":48,
"Title":"BFTDETECTOR: Automatic Detection of Business Flow Tampering for Digital Content Service",
"Indexterms":"JavaScript, business flow tampering, dynamic\nanalysis, vulnerability detection",
"Session":"Software Security and Privacy",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00048",
"ArtifactURL":"https:\/\/github.com\/jspaper22\/bftdetector",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":49,
"Title":"FedSlice: Protecting Federated Learning Models from Malicious Participants with Model Slicing",
"Indexterms":null,
"Session":"Software Security and Privacy",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00049",
"ArtifactURL":"https:\/\/zenodo.org\/record\/7536416#.Y9yIZOxBwUE",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":50,
"Title":"PTPDroid: Detecting Violated User Privacy Disclosures to Third-Parties of Android Apps",
"Indexterms":"Android app, privacy policy, third-party entities,\nviolation detection, taint analysis, empirical study",
"Session":"Software Security and Privacy",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00050",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.5442986",
"ArtifactURL2":"https:\/\/github.com\/wsong-nj\/PTPDroid",
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":51,
"Title":"AdHere: Automated Detection and Repair of Intrusive Ads",
"Indexterms":"ad experience, advertising practice, Better Ads\nStandards",
"Session":"Software Security and Privacy",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00051",
"ArtifactURL":"https:\/\/osf.io\/s8mhw\/?viewonly=42a1f52903964e68836faa76f84a180f",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":52,
"Title":"Bad Snakes: Understanding and Improving Python Package Index Malware Scanning",
"Indexterms":"Open-source software (OSS) Supply Chain,\nMalware Detection, PyPI, Qualitative Study, Quantitative Study",
"Session":"Software Security and Privacy",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00052",
"ArtifactURL":"https:\/\/github.com\/lyvd\/bad-snakes-icse23-artifacts",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":53,
"Title":"FedDebug: Systematic Debugging for Federated Learning Applications",
"Indexterms":"software debugging, federated learning, testing,\nclient, fault localization, neural networks, CNN",
"Session":"AI Systems Engineering",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00053",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7578656",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":55,
"Title":"CrossCodeBench: Benchmarking Cross-Task Generalization of Source Code Models",
"Indexterms":"Pre-training of source code, cross-task transfer\nlearning, few-shot learning, AI for SE",
"Session":"AI Systems Engineering",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00055",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7321934",
"ArtifactURL2":"https:\/\/doi.org\/10.5281\/zenodo.7321934",
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":56,
"Title":"ECSTATIC: An Extensible Framework for Testing and Debugging Configurable Static Analysis",
"Indexterms":"Program analysis, testing and debugging",
"Session":"Debugging",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00056",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7577909",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":57,
"Title":"Responsibility in Context: On Applicability of Slicing in Semantic Regression Analysis",
"Indexterms":"Program slicing, slice minimization, regression\nfailures, case study",
"Session":"Debugging",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00057",
"ArtifactURL":"https:\/\/resess.github.io\/artifacts\/InPreSS\/",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":58,
"Title":"Does the Stream API Benefit from Special Debugging Facilities? A Controlled Experiment on Loops and Streams with Specific Debugger",
"Indexterms":"Software Engineering, Programming Tech-\nniques, Debugging aids, Usability testing",
"Session":"Debugging",
"Domain":null,
"Artifact(yes\/no)":"yes (experiment)",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00058",
"ArtifactURL":"https:\/\/drive.google.com\/drive\/folders\/14Eg4krlQWZO8yrZlWMp325GGn42GtC2h",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":59,
"Title":"F ONTE : Finding Bug Inducing Commits from Failures",
"Indexterms":"Bug Inducing Commit, Fault Localisation, Git,\nWeighted Bisection, Batch Testing",
"Session":"Debugging",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00059",
"ArtifactURL":"https:\/\/github.com\/coinse\/fonte",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":60,
"Title":"RepresentThemAll: A Universal Learning Representation of Bug Reports",
"Indexterms":null,
"Session":"Defect Analysis",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00060",
"ArtifactURL":"https:\/\/github.com\/ICSE-2023\/RepresentThemALL",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":61,
"Title":"Demystifying Exploitable Bugs in Smart Contracts",
"Indexterms":"Blockchain, Smart Contract, Vulnerability, Se-\ncurity, Empirical Study",
"Session":"Defect Analysis",
"Domain":null,
"Artifact(yes\/no)":"no",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00061",
"ArtifactURL":"https:\/\/github.com\/ZhangZhuoSJTU\/Web3Bugs",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":62,
"Title":"Understanding and Detecting On-the-Fly Configuration Bugs",
"Indexterms":"on-the-fly configuration updates, bug detection,\nmetamorphic testing",
"Session":"Defect Analysis",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00062",
"ArtifactURL":"https:\/\/github.com\/wangteng13\/Parachute",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":63,
"Title":"Explaining Software Bugs Leveraging Code Structures in Neural Machine Translation",
"Indexterms":"software bug, bug explanation, software engi-\nneering, software maintenance, natural language processing, deep\nlearning, transformers",
"Session":"Defect Analysis",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00063",
"ArtifactURL":"https:\/\/bit.ly\/3H7R1aI",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":64,
"Title":"Is It Enough to Recommend Tasks to Newcomers? Understanding Mentoring on Good First Issues",
"Indexterms":"newcomer, mentoring, open source, good first\nissue",
"Session":"Developers' Behaviors",
"Domain":null,
"Artifact(yes\/no)":"yes (scripts for mining data)",
"None":"x",
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00064",
"ArtifactURL":"https:\/\/figshare.com\/s\/addd697d581c82f96f9a",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":65,
"Title":"From Organizations to Individuals: Psychoactive Substance Use By Professional Programmers",
"Indexterms":"software engineering, mental health, drug use,\nproductivity, qualitative methods",
"Session":"Developers' Behaviors",
"Domain":null,
"Artifact(yes\/no)":"no (experiment)",
"None":null,
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00065",
"ArtifactURL":"https:\/\/github.com\/CelloCorgi\/ICSE2023_Psychoactive",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":66,
"Title":"On the Self-Governance and Episodic Changes in Apache Incubator Projects: An Empirical Study",
"Indexterms":null,
"Session":"Developers' Behaviors",
"Domain":null,
"Artifact(yes\/no)":"no (experiment)",
"None":null,
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00066",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.6526833",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":67,
"Title":"Socio-Technical Anti-Patterns in Building ML-Enabled Software",
"Indexterms":null,
"Session":"Developers' Behaviors",
"Domain":null,
"Artifact(yes\/no)":"no (experiment)",
"None":null,
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00067",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7520777",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":68,
"Title":"Moving on from the software engineers\u2019 gambit: an approach to support the defense of software effort estimates",
"Indexterms":"Software Effort Estimation, Negotiation, Behav-\nioral Software Engineering, Defense of Estimates",
"Session":"Developers' Behaviors",
"Domain":null,
"Artifact(yes\/no)":"no (experiment)",
"None":null,
"Avail":null,
"Reus":null,
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00068",
"ArtifactURL":"https:\/\/doi.org\/10.6084\/m9.figshare.20736844.v1",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":69,
"Title":"Concrat: An Automatic C-to-Rust Lock API Translator for Concurrent Programs",
"Indexterms":null,
"Session":"Program Translation and Synthesis",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00069",
"ArtifactURL":"https:\/\/doi.org\/10.5281\/zenodo.7573490",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null
},
{
"pID":70,
"Title":"Triggers for Reactive Synthesis Specifications",
"Indexterms":null,
"Session":"Program Translation and Synthesis",
"Domain":null,
"Artifact(yes\/no)":"yes",
"None":null,
"Avail":"x",
"Reus":"x",
"Funct":null,
"DOIURL":"https:\/\/doi.org\/10.1109\/ICSE48619.2023.00070",
"ArtifactURL":"https:\/\/github.com\/SpectraSynthesizer",
"ArtifactURL2":null,
"Unnamed: 13":null,
"Unnamed: 14":null