-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpapers.csv
We can't make this file beautiful and searchable because it's too large.
8790 lines (8790 loc) · 730 KB
/
papers.csv
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
ICSE,2018,Welcome to ICPC 2018,Day opening
ICSE,2018,Sensing and Supporting Software Developer's Focus (Vision Keynote)Vision Keynote,Talk
ICSE,2018,Code Phonology: an exploration into the vocalization of codeERA,Short-paper
ICSE,2018,Meaningful Variable Names for Decompiled Code: A Machine Translation ApproachTechnical Research,Full-paper
ICSE,2018,Descriptive Compound Identifier Names Improve Source Code ComprehensionTechnical Research,Full-paper
ICSE,2018,Welcome to MobileSoft 2018,Talk
ICSE,2018,"Development, Testing and Maintenance of Android Apps: Challenges, Approaches, Tools, and Future DirectionsKeynote",Talk
ICSE,2018,Opening Remarks: The Journey from Metaphor to Theory and Practice,Talk
ICSE,2018,An Exploratory Study on the Influence of Developers in Technical Debt,Talk
ICSE,2018,Architectural Technical Debt Identification: The Research Landscape,Talk
ICSE,2018,Towards Just-In-Time Refactoring Recommenders (ERA)ERA,Short-paper
ICSE,2018,Toward Refactoring Evaluation with Code NaturalnessERA,Short-paper
ICSE,2018,How Slim Will My System Be? Estimating Refactored Code Size by Merging ClonesIndustry Track,Industry talk
ICSE,2018,RepliComment: Identifying Clones in Code CommentsERA,Short-paper
ICSE,2018,A Preliminary Study on Using Code Smells to Improve Bug LocalizationERA,Short-paper
ICSE,2018,Un-Break My Build: Assisting Developers with Build Repair HintsTechnical Research,Full-paper
ICSE,2018,Aiding Comprehension of Unit Test Cases and Test Suites with Stereotype-based TaggingTechnical Research,Full-paper
ICSE,2018,Ares: Triggering Payload of Evasive Android Malware,Full-paper
ICSE,2018,Orlis: Obfuscation-Resilient Library Detection for Android,Full-paper
ICSE,2018,AnFlo: Detecting Anomalous Sensitive Information Flows in Android Apps,Full-paper
ICSE,2018,Technical Debt as an External Software Attribute,Talk
ICSE,2018,Prioritizing Technical Debt in Database Normalization Using Portfolio Theory and Data Quality Metrics,Talk
ICSE,2018,Evaluating Domain-Specific Metric Thresholds: An Empirical Study,Talk
ICSE,2018,JIT Feedback - what experienced developers like about static analysisTechnical Research,Full-paper
ICSE,2018,How do Design Decisions Influence the Distribution of Software Metrics?Technical Research,Full-paper
ICSE,2018,SDExplorer: a generic toolkit for smoothly exploring massive-scale sequence diagramTool Demo,Short-paper
ICSE,2018,Hierarchical Abstraction of Execution Traces for Program ComprehensionTechnical Research,Full-paper
ICSE,2018,Component Interface Identification and Behavioral Model Discovery from Software Execution DataTechnical Research,Full-paper
ICSE,2018,CodeCompass: An Open Software Comprehension FrameworkIndustry Track,Industry talk
ICSE,2018,Identifying Architectural Technical Debt in Android Applications through Compliance Checking,Research paper
ICSE,2018,Programming Support for Data Intensive Distributed Mobile Applications at the Edge,Research paper
ICSE,2018,Classifying code comments in Java Mobile Applications,Research paper
ICSE,2018,Improving Android Permissions Models for Increased User Awareness and Security,Research paper
ICSE,2018,Does Source Code Quality Reflect the Ratings of Apps?,Research paper
ICSE,2018,"""A Preliminary Structure of Software Security Assurance Model” by Rafiq Ahmad Khan",Doctoral symposium paper
ICSE,2018,“Scaling Agile Software Development to Large and Globally Distributed Large-scale Organizations” by Abheeshta Putta,Doctoral symposium paper
ICSE,2018,“Toward a Theory of Communication in Distributed Software Development Teams: A Research Proposal” by Nelson G. De Sá Leitão Júnior,Doctoral symposium paper
ICSE,2018,Joint break with ICSSP,Break
ICSE,2018,Elevator pitch and poster walk around,Poster
ICSE,2018,Keynote: Doctoral Symposium,Other
ICSE,2018,Discussion and Wrap-up,Day closing
ICSE,2018,Recognizing Software Bug-Specific Named Entity in Software Bug RepositoryTechnical Research,Full-paper
ICSE,2018,CoBOT: Static C/C++ Bug Detection in the Presence of Incomplete CodeTool Demo,Short-paper
ICSE,2018,Recommending Frequently Encountered BugsTechnical Research,Full-paper
ICSE,2018,Cross Version Defect Prediction with Representative Data via Sparse Subset SelectionTechnical Research,Full-paper
ICSE,2018,Unsupervised Deep Bug Report SummarizationTechnical Research,Full-paper
ICSE,2018,MetropolJS: Visualizing and Debugging Large-Scale JavaScript Program Structure with TreemapsTool Demo,Short-paper
ICSE,2018,An Investigation into Android Run-time Permissions from the End Users’ Perspective,Full-paper
ICSE,2018,Investigating User Perception and Comprehension of Android Permission Models,Full-paper
ICSE,2018,Automated Detection and Repair of Incompatible Uses of Runtime Permissions in Android Apps,Short-paper
ICSE,2018,Discussion (S3),Other
ICSE,2018,Tools Track Introduction,Talk
ICSE,2018,Introducing Debtgrep: A Tool for Fighting Technical Debt in Base Station Software,Talk
ICSE,2018,Static Software Metrics for Reliability and Maintainability,Talk
ICSE,2018,AnaConDebt: A Tool to Assess and Track Technical Debt,Talk
ICSE,2018,Cognitive Complexity: An Origin Story Overview and Evaluation,Industry talk
ICSE,2018,Prioritize Technical Debt in Large-Scale Systems Using CodeScene,Talk
ICSE,2018,Analysis of Test Log Information through Interactive VisualizationsTechnical Research,Full-paper
ICSE,2018,A Search-based Approach for Accurate Identification of Log Message FormatsTechnical Research,Full-paper
ICSE,2018,LogTracker: Learning Log Revision Behaviors Proactively from Software Evolution HistoryTechnical Research,Full-paper
ICSE,2018,Identifying Software Components from Object-Oriented APIs Based on Dynamic AnalysisTechnical Research,Full-paper
ICSE,2018,TYDR – Track Your Daily Routine. Android App for Tracking Smartphone Sensor and Usage Data,Demonstration
ICSE,2018,MobiCoMonkey – Context Testing of Android Apps,Demonstration
ICSE,2018,ICC-Inspect: Supporting Runtime Inspection of Android Inter-Component Communications,Demonstration
ICSE,2018,Analyzing the User Interface of Android Apps,Demonstration
ICSE,2018,HR-Auth: Heart Rate Data Authentication using Consumer Wearables,Poster
ICSE,2018,API for Power-Aware Application Design on Mobile Systems,Poster
ICSE,2018,A Performance Evaluation of Cross-Platform Mobile Application Development Approaches,Poster
ICSE,2018,"Demos, SRC, and Posters with Break",Demonstration
ICSE,2018,What Design is Discussed by Developers?ERA,Short-paper
ICSE,2018,Toward Introducing Automated Program Repair Techniques to Industrial Software DevelopmentERA,Short-paper
ICSE,2018,Learning Syntactic Features of Programming Languages from Imagery Using Convolutional Neural NetworksERA,Short-paper
ICSE,2018,Adventures in NICAD: A Ten-Year RetrospectiveMIP Talk,Talk
ICSE,2018,The Developer's Dilemma: Factors Affecting the Decision to Repay Code Debt,Talk
ICSE,2018,From Lasagna to Spaghetti: A Decision Model to Manage Defect Debt,Talk
ICSE,2018,A Proposed Sizing Model for Managing Technical Debt in Third-Party Code,Talk
ICSE,2018,Intent to Share: Enhancing Android Inter-Component Communication for Distributed Devices,Full-paper
ICSE,2018,Programming and Runtime Support for Sharing Resources Across Heterogeneous Mobile Devices,Full-paper
ICSE,2018,Code Offloading Solutions for Audio Processing in Mobile Healthcare Applications: A Case Study,Short-paper
ICSE,2018,Discussion (S5),Other
ICSE,2018,Doctoral Symposium Dinner,Dinner
ICSE,2018,Welcome to SEAMS 2018,unknown
ICSE,2018,Self adaptive software systems are essential for the Internet of ThingsKeynote,unknown
ICSE,2018,Keynote Speaker: Brian Fitzgerald: “Crowdsourcing Software Development: Silver Bullet or Lead Balloon”KEYNOTE,Other
ICSE,2018,"Mining the Mind, Minding the Mine: Grand Challenges in Comprehension and MiningKeynote",Talk
ICSE,2018,Automation of Android Applications Functional Testing Using Machine Learning Activities Classification,Full-paper
ICSE,2018,Guiding App Testing with Mined Interaction Models,Full-paper
ICSE,2018,Self-Reported Activities of Android Developers,Full-paper
ICSE,2018,How Do Android Operating System Updates Impact Apps?,Short-paper
ICSE,2018,Detecting No-Sleep Energy Bugs Using Reference Counted Variables,Short-paper
ICSE,2018,Discussion (S6),Other
ICSE,2018,"Keynote: The Past, Present, and Future of Technical Debt: Learning from the Past to Prepare for the Future",Talk
ICSE,2018,Opening Remarks,Talk
ICSE,2018,Consolidation of BI Efforts in the LOD Era for African Context,Talk
ICSE,2018,Compositional Verification of Self-Adaptive Cyber-Physical SystemsLong Paper,unknown
ICSE,2018,DeSiRE: Further Understanding Nuances of Degrees of Satisfaction of Non-functional Requirements Trade-offShort Paper,unknown
ICSE,2018,RE-STORM: Mapping the Decision-Making Problem and Non-Functional Requirements Trade-off to Partially Observable Markov Decision ProcessesShort Paper,unknown
ICSE,2018,Towards Integrating Undependable Self-Adaptive Systems in Safety-Critical EnvironmentsShort Paper,unknown
ICSE,2018,K8-Scalar: a workbench to compare autoscalers for container-orchestrated database clustersArtifact,unknown
ICSE,2018,Transitioning from plan-driven to lean in a global software engineering organization: a practice-centric view,Experience report
ICSE,2018,Effective Distributed Pair Programming,Experience report
ICSE,2018,Global Software Engineering at Google,Industry talk
ICSE,2018,Validation of Outsourcing Teams Work on Agile Projects of Samsung Brazil Research Center,Experience report
ICSE,2018,Questions and answers,Talk
ICSE,2018,An Empirical Evaluation of OSGi Dependencies Best Practices in the Eclipse IDE,Full-paper
ICSE,2018,On the impact of security vulnerabilities in the npm package dependency network,Full-paper
ICSE,2018,Feature Location using Crowd-based Screencasts,Full-paper
ICSE,2018,Profiling call changes via motif mining,Full-paper
ICSE,2018,Toward Predicting Architectural Significance of Implementation Issues,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,An Evaluation of Open-Source Software Microbenchmark Suites for Continuous Performance Assessment,Full-paper
ICSE,2018,Studying the Impact of Adopting Continuous Integration on the Delivery Time of Pull Requests,Full-paper
ICSE,2018,What Did Really Change with the new Release of the App?,Full-paper
ICSE,2018,CLEVER: A1:L96 Code Metrics with Clone Detection for Just-In-Time Fault Prevention and Resolution in Large Industrial Projects,Full-paper
ICSE,2018,"I'm Leaving You, Travis: A Continuous Integration Breakup Story",Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,Deep Code Comment GenerationTechnical Research,Full-paper
ICSE,2018,On the Naturalness of Auto-generated Code —Can We Identify Auto-Generated Code Automatically?ERA,Short-paper
ICSE,2018,Augmenting Source Code Lines with Sample Variable ValuesERA,Short-paper
ICSE,2018,Automatically Classifying Posts into Question Categories on Stack OverflowTechnical Research,Full-paper
ICSE,2018,Automatic Tag Recommendation for Software Development Video TutorialsTechnical Research,Full-paper
ICSE,2018,Classification of APIs by Hierarchical ClusteringTechnical Research,Full-paper
ICSE,2018,LiqDroid: Towards Seamlessly Distributed Android Applications,Full-paper
ICSE,2018,Towards a Framework for Proximity-based Hybrid Mobile Applications,Research paper
ICSE,2018,Panel & DiscussionPanel,Other
ICSE,2018,Governing Technology Debt: Beyond Technical Debt,Talk
ICSE,2018,Trade-off Decisions Across Time in Technical Debt Management: A Systematic Literature Review,Talk
ICSE,2018,Design Debt Prioritization: A Design Best Practice-Based Approach,Talk
ICSE,2018,A state-of-the-art techniques on fraud detection in smart meter data analytics,Talk
ICSE,2018,Applying Big data Analytics to Defend against Malicious Programs,Talk
ICSE,2018,Tracking Food Insecurity from Tweets Using Data Mining Techniques,Talk
ICSE,2018,Managing Uncertainty in Self-Adaptive Systems with Plan Reuse and Stochastic SearchLong Paper,unknown
ICSE,2018,Uncertainty Reduction in Self-Adaptive SystemsShort Paper,unknown
ICSE,2018,Adapting a System with Noisy Outputs with Statistical GuaranteesLong Paper,unknown
ICSE,2018,Trace Checking for Dynamic Software Product LinesShort Paper,unknown
ICSE,2018,Is Stack Overflow in Portuguese attractive for Brazilian Users?,Research paper
ICSE,2018,East Meets West: Global Software Engineering Course in Germany and Japan,Experience report
ICSE,2018,Effective collaboration across demography through digital dash boards and machine learning,Experience report
ICSE,2018,Software Engineering Tools Environment for Outsourcing Teams Collaboration,Experience report
ICSE,2018,The hidden truth about IT outsourcing,Industry talk
ICSE,2018,Questions and answers,Talk
ICSE,2018,"Understanding the Usage, Impact, and Adoption of Non-OSI Approved Licenses",Full-paper
ICSE,2018,Prevalence of Confusing Code in Software Projects - Atoms of Confusion in the Wild,Full-paper
ICSE,2018,How Swift Developers Handle Errors,Full-paper
ICSE,2018,What are your Programming Language’s Energy-Delay Implications?,Full-paper
ICSE,2018,Automatically Assessing Code Understandability Reanalyzed: Combined Metrics Matter,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,The Android Update Problem: An Empirical Study,Full-paper
ICSE,2018,Why are Android Apps Removed From Google Play? A Large-scale Empirical Study,Full-paper
ICSE,2018,Anatomy of Functionality Deletion - An Exploratory Study in Mobile Apps,Full-paper
ICSE,2018,Characterising Deprecated Android APIs,Full-paper
ICSE,2018,Leveraging Historical Versions of Android Apps for Efficient and Precise Taint Analysis,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,The Language Dichotomy: Toward Effective Program Comprehension for Mobile App Development (Vision Keynote)Vision Keynote,Talk
ICSE,2018,LESdroid - A Tool for Detecting Exported Service Leaks of Android ApplicationsTechnical Research,Full-paper
ICSE,2018,Do Developers Update Third-Party Libraries in Mobile Apps?Technical Research,Full-paper
ICSE,2018,What's Inside My App?: Understanding Feature Redundancy in Mobile AppsTechnical Research,Full-paper
ICSE,2018,Automatic Inference of Java-to-Swift Translation Rules for Porting Mobile Applications,Full-paper
ICSE,2018,Development Frameworks for Mobile Devices: A Comparative Study about Energy Consumption,Full-paper
ICSE,2018,ANEL: Robust Mobile Network Programming Using a Declarative Language,Full-paper
ICSE,2018,Beyond Web/Native/Hybrid: A New Taxonomy for Mobile App Development,Research paper
ICSE,2018,Vision: Improved development of mobile eHealth applications,Research paper
ICSE,2018,Discussion (S8),Other
ICSE,2018,Technical Debt Cripples Software Developer Productivity: A Longitudinal Study on Developers' Daily Software Development Work,Talk
ICSE,2018,A Framework for Managing Interest in Technical Debt: An Industrial Validation,Talk
ICSE,2018,Limiting Technical Debt with Maintainability Assurance: An Industry Survey on Used Techniques and Differences with Service- and Microservice-Based Systems,Talk
ICSE,2018,Adapting Lightweight User-Centered Design with the Scrum-Based Development Process into the Project Management Process,Talk
ICSE,2018,Partitioning Microservices: A Domain Engineering Approach,Talk
ICSE,2018,Planning for public sector Software Projects using Value-Based Requirements Engineering Techniques; a Research Agenda,Talk
ICSE,2018,Hybrid Adaptation Policies – Towards a Framework for Classification and Modelling of Different Combinations of Adaptation PoliciesLong Paper,unknown
ICSE,2018,A Systematic Literature Review of UML-based Domain-Specific Modeling Languages for Self-adaptive SystemsShort Paper,unknown
ICSE,2018,Run-time Monitoring of Self-Adaptive Systems to Detect N-way Feature Interactions and their CausesShort Paper,unknown
ICSE,2018,mRUBiS: An Exemplar for Model-Based Architectural Self-Healing and Self-OptimizationArtifact,unknown
ICSE,2018,A Process for Distributed Software Evolution,Research paper
ICSE,2018,Global Software Engineering Experience through International Capstone Project Exchanges,Experience report
ICSE,2018,Success factors of customer and vendor collaboration for large scale deployment,Industry talk
ICSE,2018,Questions and answers,Talk
ICSE,2018,Enriched Event Streams: A General Dataset For Empirical Studies On In-IDE Activities Of Software Developers,Short-paper
ICSE,2018,Comprehension Effort and Programming Activities: Related? Or Not Related?,Short-paper
ICSE,2018,The Hidden Cost of Code Completion: Understanding the Impact of the Recommendation-list Length on its Efficiency,Short-paper
ICSE,2018,Empirical Study on the Relationship Between Developers Working Habits and Efficiency,Short-paper
ICSE,2018,Mining and Extraction of Personal Software Process measures through IDE Interaction logs,Short-paper
ICSE,2018,Predicting Developer IDE Commands with Machine Learning,Short-paper
ICSE,2018,Do Practitioners Use Autocompletion Features Differently Than Non-Practitioners?,Short-paper
ICSE,2018,Who's this? Developer identification using IDE event data,Short-paper
ICSE,2018,Detecting and Characterizing Developer Behavior Following Opportunistic Reuse of Code Snippets from the Web,Short-paper
ICSE,2018,Revisiting “Programmers’ Build Errors” in the Visual Studio Context: A Replication Study using IDE Interaction Traces,Short-paper
ICSE,2018,Common Statement Kind Changes to Inform Automatic Program Repair,Short-paper
ICSE,2018,Studying Developer Build Issues And Debugger Usage via Timeline Analysis in Visual Studio IDE,Short-paper
ICSE,2018,Detection and Analysis of Behavioral T-patterns in Debugging Activities,Short-paper
ICSE,2018,A Study on the Use of IDE Features for Debugging,Short-paper
ICSE,2018,Impacts of Coding Practices on ReadabilityTechnical Research,Full-paper
ICSE,2018,An Empirical Investigation on the Readability of Manual and Generated Test CasesERA,Short-paper
ICSE,2018,The CodeCompass Comprehension FrameworkTool Demo,Short-paper
ICSE,2018,The Effect of Poor Source Code Lexicon and Readability on Developers' Cognitive LoadTechnical Research,Full-paper
ICSE,2018,Assessing an Architecture's Ability to Support Feature EvolutionTechnical Research,Full-paper
ICSE,2018,Leveraging the Agile Development Process for Selecting Invoking/Excluding Tests to Support Feature LocationIndustry Track,Industry talk
ICSE,2018,P2A: A Tool for Converting Pixels to Animated Mobile Application User Interfaces,Full-paper
ICSE,2018,GUIFetch: Supporting App Design and Development through GUI Search,Full-paper
ICSE,2018,Acceptance Testing of Mobile Applications – Automated Emotion Tracking for Large User Groups,Research paper
ICSE,2018,Vision: eHealth Learning and Intervention Platform – eHeLP,Research paper
ICSE,2018,Technical Debt-Related Information Asymmetry Between Finance and IT,Talk
ICSE,2018,A Position Study to Investigate Technical Debt Associated with Security Weaknesses,Talk
ICSE,2018,Panel: The Future of SE in AfricaPanel,Talk
ICSE,2018,Closing,Talk
ICSE,2018,SEAMS Banquet,Dinner
ICSE,2018,Open Space Evening,Social Event
ICSE,2018,Opening Day 2,unknown
ICSE,2018,Opening and Introductions,Talk
ICSE,2018,Keynote: Engineering your software engineering research careerKeynote,Talk
ICSE,2018,Cleaning Up the Mess: a Formal Framework for Autonomously Reverting BDI Agent ActionsLong Paper,unknown
ICSE,2018,Prototyping Self-managed Interdependent Networks - Self-healing Synergies against Cascading FailuresLong Paper,unknown
ICSE,2018,A Coordination Mechanism to Replicate Large-Scale Multi-Agent SystemsShort Paper,unknown
ICSE,2018,SWIM: An Exemplar for Evaluation and Comparison of Self-Adaptation Approaches for Web ApplicationsArtifactSEAMS 2018 Best Artifact Award,unknown
ICSE,2018,Decentralized Self-Adaptive Computing at the EdgeDoctoral Project,unknown
ICSE,2018,"Keynote Speaker: Lennart Krook, Zenuity: Agile Transformation and Challenges in Automotive Industry – The Way Forward from ZenuityKEYNOTE",Other
ICSE,2018,Poster Session,Poster
ICSE,2018,What do large commits tell us? A taxonomical study of large commits,Talk
ICSE,2018,SOTorrent: Reconstructing and Analyzing the Evolution Stack Overflow Posts,Full-paper
ICSE,2018,A Design Structure Matrix Approach for Measuring Co-Change-Modularity of Software Products,Short-paper
ICSE,2018,A Study on Inappropriately Partitioned Commits --- How Much and What Kinds of IP Commits in Java Projects? ---,Short-paper
ICSE,2018,Strategies for Continuous Testing in iDevOps,Talk
ICSE,2018,Metamorphic Testing 20 Years Later: A Hands-on Introduction,Talk
ICSE,2018,Big Data Software Analytics with Apache Spark,Talk
ICSE,2018,"Machine Learning for Software Engineering: Models, Methods, and Applications",Talk
ICSE,2018,Detecting and Managing Code Smells: Research and Practice ,Talk
ICSE,2018,Multi-Platform Computing for Physical Devices with MakeCode and CODAL,Talk
ICSE,2018,[Poster] An Approach to Engineer and Realize Emergent Configurations in the Internet of Things,Talk
ICSE,2018,[Poster] Effort-Oriented Methods and Tools for Software Development and Maintenance for Mobile Apps,Talk
ICSE,2018,[Poster] Understanding and Improving Cyber-Physical System Models and Development Tools,Talk
ICSE,2018,[Poster] Effective Engineering of Multi-Robot Software Applications,Talk
ICSE,2018,[Poster] Automated Migration Support for Software Product Line Co-Evolution,Talk
ICSE,2018,[Poster] The Relationship between Personality and Value-Based Decision-Making,Talk
ICSE,2018,[Poster] IoT-based Urban Security Models,Talk
ICSE,2018,Toward Evaluating the Impact of Self-adaptation on Security Control CertificationLong Paper,unknown
ICSE,2018,Requirements and Specifications for Adaptive Security: Concepts and AnalysisSEAMS 2018 Best Paper AwardLong Paper,unknown
ICSE,2018,"Defining, Enforcing and Checking Privacy Policies In Data-Intensive ApplicationsLong Paper",unknown
ICSE,2018,INSpIRA: INtegrating Security Into Risk AssessmentDoctoral Project,unknown
ICSE,2018,Enhancing product and service capability through scaling agility in a global software vendor environment,Research paper
ICSE,2018,Managing Software Products in a Global Context,Research paper
ICSE,2018,Challenges in Scaling up a Globally Distributed Legacy Product:A case study of a matrix organization,Experience report
ICSE,2018,"What and Where is a system maintenance knowledge? And, How can we acquire that?",Industry talk
ICSE,2018,Employee Retention and Turnover in Global Software Development: Comparing In-house Offshoring and Offshore Outsourcing,Research paper
ICSE,2018,Questions and answers,Talk
ICSE,2018,"50K-C: A dataset of compilable, and compiled, Java projects",Short-paper
ICSE,2018,JBench: A Dataset of Data Races for Concurrency Testing,Short-paper
ICSE,2018,"Bugs.jar: A Large-scale, Diverse Dataset of Real-world Java Bugs",Short-paper
ICSE,2018,A Gold Standard for Emotion Annotation in Stack Overflow,Short-paper
ICSE,2018,Vulinoss: A Dataset of Security Vulnerabilities in Open-source Systems,Short-paper
ICSE,2018,A Dataset of Duplicate Pull-requests in GitHub,Short-paper
ICSE,2018,Structured Information on State and Evolution of Dockerfiles on GitHub,Short-paper
ICSE,2018,A Graph-based Dataset of Commit History of Real-World Android apps,Short-paper
ICSE,2018,Public Git Archive: a Big Code dataset for all,Short-paper
ICSE,2018,Word Embeddings for the Software Engineering Domain,Short-paper
ICSE,2018,npm-miner: An Infrastructure for Measuring the Quality of the npm Registry,Short-paper
ICSE,2018,CROP: Linking Code Reviews to Source Code Changes,Short-paper
ICSE,2018,Developer Interaction Traces backed by IDE Screen Recordings from Think-aloud Sessions,Short-paper
ICSE,2018,A Multi-level Dataset of Linux Kernel Patchwork,Short-paper
ICSE,2018,Documented Unix Facilities Over 48 Years,Short-paper
ICSE,2018,Data-Driven Search-based Software Engineering,Full-paper
ICSE,2018,The Open-Closed Principle of Modern Machine Learning Frameworks,Full-paper
ICSE,2018,A Benchmark Study on Sentiment Analysis for Software Engineering Research,Full-paper
ICSE,2018,A Deep Learning Approach to Identifying Source Code in Images and Video,Full-paper
ICSE,2018,Natural Language or Not (NLoN) - package for Software Engineering Text Analysis Pipeline,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,[Full paper] Assisted Discovery of Software Vulnerabilities,Talk
ICSE,2018,[Full paper] Automatic Verification of Time Behavior of Programs,Talk
ICSE,2018,[Full paper] Learning to Accelerate Compiler Testing,Talk
ICSE,2018,[Full paper] Characteristics of Defective Infrastructure as Code Scripts in DevOps,Doctoral symposium paper
ICSE,2018,Security: A Critical Quality Attribute in Self-Adaptive SystemsExtended Abstract,unknown
ICSE,2018,The Special Case of Data Protection and Self-adaptationExtended Abstract,unknown
ICSE,2018,Self-adapation Made Easy with BlockchainsExtended Abstract,unknown
ICSE,2018,"Agree to Disagree: Security Requirements Are Different, But Mechanisms For Security Adaptation Are NotExtended Abstract",unknown
ICSE,2018,Panel Discussion on Security and AdaptivityPanel,unknown
ICSE,2018,Analyzing Requirements and Traceability Information to Improve Bug Localization,Full-paper
ICSE,2018,Towards Extracting Web API Specifications from Documentation,Full-paper
ICSE,2018,Evaluating How Developers Use General-Purpose Web-Search for Code Retrieval,Full-paper
ICSE,2018,Learning to Mine Aligned Code and Natural Language Pairs from Stack Overflow,Full-paper
ICSE,2018,A Search System for Mathematical Expressions on Software Binaries,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,How Is Video Game Development Different from Software Development in Open Source?,Full-paper
ICSE,2018,Which Contributions Predict Whether Developers Are Accepted Into GitHub Teams,Full-paper
ICSE,2018,Automatic Classification of Software Artifacts in Open-Source Applications,Full-paper
ICSE,2018,Large-Scale Analysis of the Co-Commit Patterns of the Active Developers in GitHub's Top Repositories,Full-paper
ICSE,2018,Towards Identifying Paid Open Source Developers - A Case Study with Mozilla Developers,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,HAL’s Legacy after 50 years of 2001 Space OdysseyKeynote,Talk
ICSE,2018,Demystifying Cyber-Physical Malware ,Talk
ICSE,2018,State of the Systems Security,Talk
ICSE,2018,Automatic Software Summarization - The State of the Art,Talk
ICSE,2018,Natural Language Requirements Processing: from Research to Practice,Talk
ICSE,2018,Analyzing Software Engineering Experiments: Everything You Always Wanted to Know but Were Afraid to Ask,Talk
ICSE,2018,How to Analyze Git Repositories with Command Line Tools: We're not in Kansas anymore,Talk
ICSE,2018,[Full paper] Fostering Software Developers' Productivity at Work Through Self-Monitoring and Goal-Setting,Talk
ICSE,2018,[Full paper] Interactive Model Mining from Embedded Legacy Software,Talk
ICSE,2018,[Full paper] Towards Personalized Software Defect Predictors,Talk
ICSE,2018,[Full paper] Crowdsourced Software Development and Maintenance,Talk
ICSE,2018,[Full paper] A Neuro-Cognitive Perspective of Program Comprehension,Talk
ICSE,2018,On Developers' Personality in Large-scale Distributed Projects: The Case of the Apache Ecosystem,Research paper
ICSE,2018,Virtual by Design: How a Work Environment can Support Agile Distributed Software Development,Research paper
ICSE,2018,Team Resilience in Distributed Student Projects,Research paper
ICSE,2018,Scaling Agile across the Global Organization: An Early Stage Industrial SAFe Self-Assessment,Research paper
ICSE,2018,Questions and answers,Talk
ICSE,2018,Learning Non-Deterministic Impact Models for AdaptationLong Paper,unknown
ICSE,2018,A Learning Approach to Enhance Assurances for Real-Time Self-Adaptive SystemsLong Paper,unknown
ICSE,2018,Adaptive Runtime Response Time Control in PLC-based Real-Time Systems using Reinforcement LearningShort Paper,unknown
ICSE,2018,Imprecisions Diagnostic in Source Code Deltas,Full-paper
ICSE,2018,Exploring the Use of Automated API Migrating Techniques in Practice: An Experience Report on Android,Full-paper
ICSE,2018,The Patch-Flow Method for Measuring Inner Source Collaboration,Full-paper
ICSE,2018,Was Self-Admitted Technical Debt Removal a Real Removal? An In-Depth Perspective,Full-paper
ICSE,2018,RestMule: Enabling Resilient Clients for Remote APIs,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,Deep Learning Similarities from Different Representations of Source Code,Full-paper
ICSE,2018,500+ Times Faster Than Deep Learning (A Case Study Exploring Faster Methods for Text Mining StackOverflow),Full-paper
ICSE,2018,Studying the relationship between exception handling practices and post-release defects,Full-paper
ICSE,2018,Analyzing Conflict Predictors in Open-Source Java Projects from GitHub and Travis CI,Full-paper
ICSE,2018,Bayesian Hierarchical Modelling for Tailoring Metric Thresholds,Short-paper
ICSE,2018,Discussion phase,Other
ICSE,2018,Will computers be able to do what HAL did? Panel,Talk
ICSE,2018,Panel: Best and Worst of Doctoral StudiesPanel,Talk
ICSE,2018,Closing,Talk
ICSE,2018,Closing SEAMS 2018,unknown
ICSE,2018,Outlook on SEAMS 2019,unknown
ICSE,2018,Closing,Day closing
ICSE,2018,2001: A Space Odyssey ,Other
ICSE,2018,ICGSE Conference Dinner Cruise,Dinner
ICSE,2018,Opening Session,Talk
ICSE,2018,"Communication systems and networks, key enablers for digitizing industry and society – opportunities and challengesKeynote",Talk
ICSE,2018,IF Poster 1: System-of-Systems Architecture for Construction Factory,Talk
ICSE,2018,IF Poster 2: Even more efficient testing process,Talk
ICSE,2018,IF Poster 3: Lean Transport Mission Optimization in Site Operations,Talk
ICSE,2018,IF Poster 4: Positioning in mines,Talk
ICSE,2018,IF Poster 5: Designing Interaction for Multi-OS environments,Talk
ICSE,2018,IF Poster 6: Exploring Mixed Reality Interaction Design for Heavy Vehicles,Talk
ICSE,2018,IF Poster 7: Safety Assurance of cooperating construction maachines,Talk
ICSE,2018,IF Poster 8: Evolutionary Aspects of Complex Embedded Systems Architectures,Talk
ICSE,2018,IF Poster 9: Utilizing hardware monitoring to improve the quality of service and performance of industrial systems,Talk
ICSE,2018,Poster W1: Industrie 4.0 Virtual Automation Bus Architecture,Talk
ICSE,2018,Poster W2: An Empirical Study of the Product Owner Role in Scrum,Talk
ICSE,2018,Poster W3: Reengineering Legacy Systems for Supporting SOA: A Case Study on the Brazilian's Secretary of State for Taxation,Talk
ICSE,2018,Poster W4: Results from Multi-faceted Software Reliability Assessment Studies,Talk
ICSE,2018,Poster W5: An Initial Characterization of Bug-injecting Development Sessions,Talk
ICSE,2018,Poster W6: Challenges with Automotive Test Case Specifications,Talk
ICSE,2018,Poster W7: Understanding the Role of Reporting in Work Item Tracking Systems for Software Development: An Industrial Case Study,Talk
ICSE,2018,Poster W8: When Students Meet Developers: Are Barcamps a Format for Interactive Software Engineering Education?,Talk
ICSE,2018,Poster W9: A Methodology to Teaching Statistical Process Control for Software Engineers: An Overview,Talk
ICSE,2018,Poster W10: A matrix for analyzing projects in Software Engineering courses,Talk
ICSE,2018,Poster W11: Continuous Inspection in the Classroom: Improving Students' Programming Quality with Social Coding Methods,Talk
ICSE,2018,Poster W12: Startup Software Development Education: A Systematic Mapping Study,Talk
ICSE,2018,Poster W13: Analyzing the transactive memory in teaching Software Engineering,Talk
ICSE,2018,Poster W14: Improving Formation of Student Teams: A Clustering Approach,Talk
ICSE,2018,Poster W15: Are Our Students Engaged into Their Studies? Professional Engagement vs. Study Engagement,Talk
ICSE,2018,Poster W16: Multidisciplinary Skill Assessment for Embedded Software Development Education via a Robot Contest,Talk
ICSE,2018,Poster W17: PBL Planner Toolkit A Canvas-Based Tool for Planning PBL in Software Engineering Education,Talk
ICSE,2018,Poster W18: Challenge-Based Learning: A Brazilian Case Study,Talk
ICSE,2018,Poster W19: A Conceptual Model for Cooperative Thinking,Talk
ICSE,2018,Poster W20: Situation-Based E-Learning in Software Engineering,Talk
ICSE,2018,Poster W21: A Multi-Year Analysis of Students' Build Errors in Agile Software Development Educational Projects,Talk
ICSE,2018,Poster W23: Deciding Weak Monitorability for Runtime Verification,Talk
ICSE,2018,Poster W24: LWE: LDA refinedWord Embeddings for duplicate bug report detection,Talk
ICSE,2018,Poster W25: Inferring API Elements Relevant to an English Query,Talk
ICSE,2018,Poster W26: A Study Of Monitoring Crosscutting Concerns Implementation,Talk
ICSE,2018,Poster W27: Duplicate Finder Toolkit,Talk
ICSE,2018,Poster W28: Toward the Development of Richer Properties for Recommender Systems,Talk
ICSE,2018,Poster W29: Automatic Detection of Inverse Operations while Avoiding Loop Unrolling,Talk
ICSE,2018,Poster W30: Efficiently Finding Minimal Failing Input in MapReduce Programs,Talk
ICSE,2018,Poster W31: Forks Insight: Providing an Overview of GitHub Forks,Talk
ICSE,2018,Poster W32: Use of Trace Link Types in Issue Tracking Systems,Talk
ICSE,2018,Poster W33: A Topic Analysis of the R Programming Language,Talk
ICSE,2018,Poster W34: Architecture Reconstruction and Evaluation of Blockchain Open Source Platform,Talk
ICSE,2018,Poster W35: Agile Requirement Traceability Matrix,Talk
ICSE,2018,Poster W36: Beyond Spatial and Temporal Memory Safety,Talk
ICSE,2018,Poster W37: A Novel Shared Memory Framework for Distributed Deep Learning in High-Performance Computing Architecture,Talk
ICSE,2018,Poster W38: DWEN: Deep Word Embedding Network for Duplicate Bug Report Detection in Software Repositories,Talk
ICSE,2018,Poster W39: Live Path Control Flow Integrity,Talk
ICSE,2018,Poster W40: Using Repository Data for Driving Software Architecture,Talk
ICSE,2018,Poster W41: Analysis of Requirements Quality Evolution,Talk
ICSE,2018,Poster W42: Using Consensus to Automatically Infer Post-conditions,Talk
ICSE,2018,Poster W43: Pairika: A failure diagnosis benchmark for C++ programs,Talk
ICSE,2018,Poster W44: Towards Safe Refactoring for Intelligent Parallelization of Java 8 Streams,Poster
ICSE,2018,Poster W45: Testing Web-Based Applications with the Voice Controlled Accessibility and Testing Tool (VCAT),Poster
ICSE,2018,Poster W46: Leveraging Product Relationships to Generate Candidate Bugs for Duplicate Bug Prediction,Talk
ICSE,2018,Poster W47: Protecting Remote Controlling Apps of Smart-Home-Oriented IOT Devices,Talk
ICSE,2018,Poster W48: MC/DC Coverage-Oriented Compiler Optimization for Symbolic Execution,Poster
ICSE,2018,Poster W49: Introducing Quality Models Based On Joint Probabilities,Poster
ICSE,2018,Poster W50: Program Repair That Learns From Mistakes,Talk
ICSE,2018,Poster W51: A changeset-based approach to assess source code density and developer efficacy,Talk
ICSE,2018,Poster W52: Discovering Requirements of Behaviour Change Software Systems from Negative User Experience,Talk
ICSE,2018,Poster W53: Understanding Newcomers Success in Open Source Community,Talk
ICSE,2018,Poster W54: Swarming Remote Piloted Aircraft Systems for Mosquito-Borne Disease Research and Control,Talk
ICSE,2018,Poster W55: Ethics-Aware Software Engineering,Talk
ICSE,2018,Poster W57: How to Handle Environmental Uncertainty in Goal-Based Requirements Engineering,Talk
ICSE,2018,Opening,Talk
ICSE,2018,The software industry is not industrialised,Talk
ICSE,2018,Perceval: Software Project Data at Your Will,Talk
ICSE,2018,StackInTheFlow: Behavior-Driven Recommendation System for Stack Overflow Posts,Talk
ICSE,2018,SATD Detector: A Text-Mining-Based Self-Admitted Technical Debt Detection Tool,Talk
ICSE,2018,Aletheia: A Failure Diagnosis Toolchain,Talk
ICSE,2018,"When the testing gets tough, the tough get ElasTest",Demonstration
ICSE,2018,SUSHI: A Test Generator for Programs with Complex Structured Inputs,Talk
ICSE,2018,"10+ Years of Teaching Software Engineering with iTrust: the Good, the Bad, and the Ugly",Talk
ICSE,2018,Toward Enhancing the Training of Software Engineering Students and Professionals using Active Video Watching,Talk
ICSE,2018,Developing an Optimizing Compiler for the Game Boy as a Software Engineering Project,Talk
ICSE,2018,Easing IoT Development for Novice Programmers Through Code Recipes,Talk
ICSE,2018,Making the Liskov Substitution Principle Happy and Sad,Talk
ICSE,2018,[Mini-Panel] Design patterns for teachingPanel,Talk
ICSE,2018,"Generative Secure Design, Defined",Talk
ICSE,2018,Towards Secure Dynamic Product Lines in the Cloud,Talk
ICSE,2018,Towards Forensic-Ready Software Systems,Talk
ICSE,2018,Measure Confidence of Assurance Cases in Safety-Critical Domains,Talk
ICSE,2018,"A Critical Review of ""A Practical Guide to Select Quality Indicators for Assessing Pareto-Based Search Algorithms in Search-Based Software Engineering"": Essay on Quality Indicator Selection for SBSE",Talk
ICSE,2018,Enabling Real-Time Feedback in Software Engineering,Talk
ICSE,2018,Neuro-Symbolic Program Repair for Correcting Introductory Programming Assignments,Talk
ICSE,2018,Automated Localization for Unreproducible Builds,Talk
ICSE,2018,Enlightened Debugging,Talk
ICSE,2018,Experiences and Challenges in Building a Data Intensive System for Data Migration,Research paper
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Context-Aware Patch Generation for Better Automated Program Repair,Talk
ICSE,2018,Towards Practical Program Repair with On-Demand Candidate Generation,Talk
ICSE,2018,A Correlation Study between Automated Program Repair and Test-Suite Metrics,Talk
ICSE,2018,Do Automated Program Repair Techniques Repair Hard and Important Bugs?,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Software Protection on the Go: A Large-Scale Empirical Study on Mobile App Obfuscation,Talk
ICSE,2018,GUILeak: Tracing Privacy-Policy Claims on User Input Data for Android Applications,Talk
ICSE,2018,Online App Review Analysis for Identifying Emerging Issues,Talk
ICSE,2018,EARMO: An Energy-Aware Refactoring Approach for Mobile Apps,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Sentiment Analysis for Software Engineering: How Far Can We Go?,Talk
ICSE,2018,Identifying Features in Forks,Talk
ICSE,2018,Roles and Impacts of Hands-on Software Architects in Five Industrial Case Studies,Talk
ICSE,2018,Sentiment Polarity Detection for Software Development,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,"[Keynote] Software Heritage: why and how we collect, preserve and share all the software source codeKeynote",Talk
ICSE,2018,Why Digitalization Will Kill Your (Software) Company TooKeynote,Talk
ICSE,2018,Forum Sit Down Working Lunch - Academics meet Industrialists,Lunch
ICSE,2018,Speed Dating Activity - lightning chats with other attendees,Meeting
ICSE,2018,MuAlloy: A Mutation Testing Framework for Alloy,Demonstration
ICSE,2018,"An Extensible, Regular-Expression-Based Tool for Multi-Language Mutant Generation",Talk
ICSE,2018,MDroid+: A Mutation Testing Framework for Android,Talk
ICSE,2018,The Palladio-Bench for Modeling and Simulating Software Architectures,Talk
ICSE,2018,PerformanceHat - Augmenting Source Code with Runtime Performance Traces in the IDE,Talk
ICSE,2018,PROMOpedia — A web-content management-based encyclopedia of software property models,Talk
ICSE,2018,Software Engineering Lab – an Essential Component of a Software Engineering Curriculum,Talk
ICSE,2018,Dimensions of Experientialism for Software Engineering Education,Talk
ICSE,2018,Open-Source Sofware in Class: Students’ Common Mistakes,Talk
ICSE,2018,How Does Participating in a Capstone Project with IndustrialCustomers Affect Student Attitudes?,Full-paper
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Combining Spreadsheet Smells for Improved Fault Prediction,Talk
ICSE,2018,Images of Code: Lossy Compression for Native Instructions,Talk
ICSE,2018,Hierarchical Learning of Cross-Language Mappings through Distributed Vector Representations for Code,Short-paper
ICSE,2018,Which library should I use? A metric-based comparison of software libraries,Talk
ICSE,2018,UniComp: a semantics-aware model compiler for optimised predictable software,Talk
ICSE,2018,Self-adaptive static analysis,Talk
ICSE,2018,Hybrid Regression Test Selection,Talk
ICSE,2018,Fine-Grained Test Minimization,Talk
ICSE,2018,FAST Approaches to Scalable Similarity-based Test Case Prioritization,Talk
ICSE,2018,Towards Refactoring-Aware Regression Test Selection,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Semantic Program Repair Using a Reference Implementation,Talk
ICSE,2018,Automated Repair of Mobile Friendly Problems in Web Pages ,Talk
ICSE,2018,Static Automated Program Repair for Heap Properties,Talk
ICSE,2018,Overfitting in Semantics-based Automated Program Repair,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Studying the Dialogue Between Users and Developers of Free Apps in the Google Play Store,Talk
ICSE,2018,Automated Reporting of GUI Design Violations for Mobile Apps,Talk
ICSE,2018,Leveraging Program Analysis to Reduce User-Perceived Latency in Mobile Applications,Full-paper
ICSE,2018,Repairing Crashes in Android Apps,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Inheritance Usage Patterns in Open-Source Systems,Talk
ICSE,2018,Almost There: A Study on Quasi-Contributors in Open-Source Software Projects,Talk
ICSE,2018,Analyzing a Decade of Linux System Calls,Talk
ICSE,2018,To Distribute or Not to Distribute? Why Licensing Bugs Matter,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,[Full paper] The Role of Foundations in Open Source Projects,Talk
ICSE,2018,[Full paper] User Feedback in the App Store: a Cross-Cultural Study,Talk
ICSE,2018,[Full paper] Assistive Computing: A Human-Centered Approach To Developing Computing Support for Cognition,Talk
ICSE,2018,[Short paper] Agile development for vulnerable populations: lessons learned and recommendations,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,"Robotics, Software and Artificial Intelligence: State of the art and future challengesKeynote",Talk
ICSE,2018,Software Engineering in 2030Panel,Talk
ICSE,2018,SAFL: Increasing and Accelerating Testing Coverage with Symbolic Execution and Guided Fuzzing,Talk
ICSE,2018,ReGuard: Finding Reentrancy Bugs in Smart Contracts,Talk
ICSE,2018,Weak-Assert: A Weakness-Oriented Assertion Recommendation Toolkit for Program Analysis,Talk
ICSE,2018,GuideGen - A Tool for Keeping Requirements and Acceptance Tests Aligned,Demonstration
ICSE,2018,EVA: A Tool for Visualizing Software Architectural Evolution,Talk
ICSE,2018,CSLICERCLOUD: A Web-Based Semantic History Slicing Framework,Talk
ICSE,2018,Continuous Delivery of Personalized Assessment and Feedback in Agile Software Engineering Projects,Talk
ICSE,2018,Are Computer Science and Engineering Graduates Ready for the Software Industry? Experiences from an Industrial Student Training Program,Talk
ICSE,2018,"Compilation Error Repair: For the Student Programs, From the Student Programs",Talk
ICSE,2018,Improving Integrated Development Environment Commands Knowledge With Recommender Systems,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Mining Container Image Repositories---MSR for Software Configurations and Beyond,Talk
ICSE,2018,Explainable Software Analytics,Talk
ICSE,2018,Generalizing Specific-Instance Interpolation Proofs with SyGuS,Talk
ICSE,2018,Efficient Parametric Model Checking Using Domain-Specific Modelling Patterns,Talk
ICSE,2018,Deep Learning UI Design Patterns of Mobile Apps,Talk
ICSE,2018,Code Review Comments: Language matters,Short-paper
ICSE,2018,[Keynote] Industrial-grade DevOps - Balancing Agility and Speed with Extreme QualityKeynote,Talk
ICSE,2018,Secure Coding Practices in Java: Challenges and Vulnerabilities,Talk
ICSE,2018,EnMobile: Entity-based Characterization and Analysis of Mobile Malware,Talk
ICSE,2018,Model Comprehension for Security Risk Assessment: An Empirical Comparison of Tabular vs. Graphical Representations,Talk
ICSE,2018,Privacy by Designers: Software Developers’ Privacy Mindset,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Augusto: Exploiting Popular Functionalities for the Generation of Semantic GUI Tests with Oracles,Talk
ICSE,2018,Towards Optimal Concolic Testing,Talk
ICSE,2018,DeepTest: Automated Testing of Deep-Neural-Network-driven Autonomous Cars,Talk
ICSE,2018,Precise Concolic Unit Testing of C Programs with Alarm Filtering Using Symbolic Calling Contexts,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Spatio-Temporal Context Reduction: A Pointer-Analysis-Based Static Approach for Detecting Use-After-Free Vulnerabilities,Talk
ICSE,2018,Program Splicing,Talk
ICSE,2018,Chopped Symbolic Execution,Talk
ICSE,2018,Perses: Syntax-Guided Program Reduction,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Does the Propagation of Artifact Changes across Tasks reflect Work Dependencies?,Full-paper
ICSE,2018,Large-Scale Analysis of Framework-Specific Exceptions in Android Apps,Talk
ICSE,2018,Effect Sizes and their Variance for AB/BA Crossover Design Studies,Talk
ICSE,2018,A Large-Scale Empirical Study on the Effects of Code Obfuscations on Android Apps and Anti-Malware Products,Talk
ICSE,2018,An empirical study on the interplay between semantic coupling and co-change of software classes,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,[Case study] Digitalization of Swedish Government Agencies - A Perspective Through the Lens of a Software Development Census,Talk
ICSE,2018,[Full paper] Contracting Agile Developments for Mission Critical Systems in the Public Sector,Talk
ICSE,2018,[Short paper] Resolving Ambiguities in Regulations - Towards Achieving the Kohlbergian Stage of Principled Morality,Short-paper
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Mechanisms through which academics and industrialists can work together productively,Talk
ICSE,2018,"Supporter talk: Mälardalen University, Sweden - Industrial PhD School (IT-EASY) - Efficient industry-academia cooperation",Talk
ICSE,2018,Closing,Talk
ICSE,2018,After Work: Forum Aperitivo with drinks and posters ,Break
ICSE,2018,Opening Session 50 years of Software engineering,Talk
ICSE,2018,Learning the Hard Way: A History of Software Engineering 1948-1980Keynote,Talk
ICSE,2018,The Language as a Software EngineerKeynote,Talk
ICSE,2018,VarXplorer: Reasoning About Feature Interactions,Talk
ICSE,2018,Toward an Empirical Theory of Feedback-Driven Development,Talk
ICSE,2018,Automatically Finding Bugs in Commercial Cyber-Physical System Development Tool Chains,Talk
ICSE,2018,Interactive and Automated Debugging for Big Data Analytics,Talk
ICSE,2018,Deadlock Detector and Solver (DDS),Short-paper
ICSE,2018,AutoModel: A Domain-specific Language for Automatic Modeling of Real-time Embedded Systems,Talk
ICSE,2018,When to Extract Features: Towards a Recommender System,Talk
ICSE,2018,Compiler-Assisted Test Acceleration Using GPUs,Talk
ICSE,2018,Adding Sparkle to Social Coding: An Empirical Study of Repository Badges in the npm Ecosystem,Talk
ICSE,2018,Combining Symbolic Execution and Model Checking to Verify MPI Programs,Talk
ICSE,2018,Poster T1: An Efficient Approach for Verifying Automobile Distributed Application Systems on Timing Property,Talk
ICSE,2018,Poster T2: Conway: Law or Not?,Talk
ICSE,2018,Poster T3: Adoption of the Visual Brainstorming Technique in the Open Source Software Development Process,Talk
ICSE,2018,Poster T4: A General Framework to Detect Behavioral Design Patterns,Talk
ICSE,2018,Poster T5: Subsuming Mutation Operators,Talk
ICSE,2018,Poster T6: Detecting Missing Checks for Identifying Insufficient Attack Protections,Talk
ICSE,2018,Poster T7: How Do Community Smells Influence Code Smells?,Talk
ICSE,2018,Poster T8: Communication in Open-Source Projects--End of the E-mail Era?,Talk
ICSE,2018,Poster T9: Predicting components for issue reports using deep learning with information retrieval,Talk
ICSE,2018,Poster T10: OreoCF: Towards Accurate and Scalable Detection of Semantic Clones,Talk
ICSE,2018,Poster T11: Understanding Differences among Executions with Variational Traces,Talk
ICSE,2018,Poster T12: An Experimental Analysis of Fault Detection Capabilities of Covering Array Constructors,Talk
ICSE,2018,Poster T13: Are Information Retrieval-based Bug Localization Techniques Trustworthy?,Talk
ICSE,2018,Poster T14: Accelerating Counterexample Detection in Software Model Checking,Talk
ICSE,2018,Poster T15: A Novel Variable-centric Fault Localization Technique,Talk
ICSE,2018,Poster T16: Android Inter-Component Communication Analysis with Intent Revision,Talk
ICSE,2018,Poster T17: Exploration of Academic and Industrial Evidence about Architectural Tactics and Patterns in Microservices,Talk
ICSE,2018,Poster T18: FreeDA: Deploying Incompatible Stock Dynamic Analyses in Production via Multi-Version Execution,Talk
ICSE,2018,Poster T19: Automatically Solving NP-Complete Problems on a Quantum Computer,Talk
ICSE,2018,Poster T20: Guiding Developers to Make Informative Commenting Decisions in Source Code,Talk
ICSE,2018,Poster T21: Making Well-Informed Software Design Decisions,Talk
ICSE,2018,Poster T22: Runtime Verification of Memory Safety via Source Transformation,Talk
ICSE,2018,Poster T23: Synthesizing Relation-Aware Entity Transformation by Examples,Talk
ICSE,2018,Poster T24: Testing Heap-Based Programs with Java StarFinder,Talk
ICSE,2018,Poster T25: Automatically Answering API-Related Questions,Talk
ICSE,2018,Poster T26: Exploring Uncertainty in GitHub OSS Projects,Talk
ICSE,2018,Poster T27: Systematic Top-down Design of Cyber-physical Models with Integrated Validation and Formal Verification,Talk
ICSE,2018,Poster T28: On Vulnerability Evolution in Android Apps,Talk
ICSE,2018,Poster T29: UMLx: a UML Diagram Analytic Tool for Software Management Decisions,Talk
ICSE,2018,Poster T30: Benchmarking cross-project defect prediction approaches with cost metrics,Talk
ICSE,2018,Poster T31: Unit Tests and Component Tests do Make a Difference on Fault Localisation Effectiveness,Poster
ICSE,2018,Poster T32: Recommending Exception Handling Patterns with ExAssist,Talk
ICSE,2018,Poster T33: ALPACA: Advanced Linguistic Pattern and Concept Analysis Framework for Software Engineering Corpora,Talk
ICSE,2018,Poster T34: Combining STPA and BDD for Safety Analysis and Verification in Agile Development,Talk
ICSE,2018,Poster T35: When Pair Programming is most helpful: Explaining session dynamics from knowledge gaps,Talk
ICSE,2018,Poster T36: Machine-Learning-Based Code Smell Detection through WekaNose,Poster
ICSE,2018,Poster T37: Knowledge-enriched Security and Privacy Threat Modeling,Talk
ICSE,2018,Poster T38: CrossEcore: An Extendible Framework to Use Ecore and OCL across Platforms,Talk
ICSE,2018,Poster T39: Semantically Enhanced Tag Recommendation for Software CQAs via Deep Learning,Talk
ICSE,2018,Poster T40: QoS-aware Service Composition using Blockchain-based Smart Contract,Talk
ICSE,2018,Poster T41: An Automated and Instant Discovery of Concrete Repairs for Model Inconsistencies,Talk
ICSE,2018,Poster T42: Knowledge Transfer from Research to Industry: A Survey on Program Comprehension,Talk
ICSE,2018,Poster T43: MOBS: Multi-Operator Observation-Based Slicing using Lexical Approximation of Program Dependence,Talk
ICSE,2018,Poster T44: On Extracting Relevant and Complex Variability Information from Software Descriptions with Pattern Structures,Talk
ICSE,2018,Poster T45: CUTER: ClUstering-based TEst suite Reduction,Talk
ICSE,2018,Poster T46: The Effect of Noise on Requirements Comprehension,Talk
ICSE,2018,Poster T47: Incremental UML for Agile Development: An Introduction,Talk
ICSE,2018,Poster T48: An Algorithm and Tool to Infer Practical Postconditions,Talk
ICSE,2018,Poster T49: Designing Bug Detection Rules for Fewer False Alarms,Talk
ICSE,2018,Poster T50: Automated User Reviews Analyser,Talk
ICSE,2018,Poster T51: A Recommender System for Developer Onboarding,Talk
ICSE,2018,Poster T52: Automated Test Script Repair for Mobile Applications,Talk
ICSE,2018,Poster T53: Obfuscating Program Control Flow with Intel SGX,Talk
ICSE,2018,Poster T54: Benchmarking Microservice Systems for Software Engineering Research,Talk
ICSE,2018,Poster T55: Bridging Effort-Aware Prediction and Strong Classification - a Just-in-Time Software Defect Prediction Study,Talk
ICSE,2018,Poster T56: Model-Based Adaptation to Extreme Physical Environments: A Case Study on Mixed-Criticality Industrial Ethernet,Talk
ICSE,2018,Poster T57: Efficient and Deterministic Replay for Web-enabled Android Apps,Talk
ICSE,2018,Poster T58: A Parallel Framework for Ab Initio Transcript-Clustering,Talk
ICSE,2018,Poster T59: Sources of Satisfaction in Agile Software Development,Talk
ICSE,2018,Poster T60: Which Similarity Metric to Use for Software Documents? A Study on Information Retrieval-Based Software Engineering Tasks,Talk
ICSE,2018,DeFlaker: Automatically Detecting Flaky Tests,Talk
ICSE,2018,DetReduce: Minimizing Android GUI Test Suites for Regression Testing,Talk
ICSE,2018,Time to Clean your Test Objectives,Talk
ICSE,2018,Prioritizing Browser Environments for Web Application Test Execution,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,KernelHaven – An Experimentation Workbench for Analyzing Software Product Lines,Demonstration
ICSE,2018,Elixir: An Automated Repair Tool for Java Programs,Talk
ICSE,2018,Multi-View Editing of Software Product Lines with PEoPL,Talk
ICSE,2018,AnATLyzer: An Advanced IDE for ATL Model Transformations,Demonstration
ICSE,2018,VisuFlow: a Debugging Environment for Static Analyses,Talk
ICSE,2018,SQLInspect: A Static Analyzer to Inspect Database Usage in Java Applications,Talk
ICSE,2018,Ridertrack - an accessible tracking platform for outdoor sports events,Talk
ICSE,2018,Transient Shared Communication Channels,Talk
ICSE,2018,Travlendar by CPSoftware,Talk
ICSE,2018,[Keynote] The Car as a Computer On WheelsKeynote,Talk
ICSE,2018,ENTRUST: Engineering Trustworthy Self-Adaptive Software with Dynamic Assurance Cases,Talk
ICSE,2018,"The Good, the Bad and the Ugly: A Study of Security Decisions in a Cyber-Physical Systems Game",Talk
ICSE,2018,"Lightweight, Obfuscation-Resilient Detection and Family Identification of Android Malware ",Talk
ICSE,2018,Are Vulnerabilities Discovered and Resolved like Other Defects?,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,How Modern News Aggregators Help Development Communities Shape and Share Knowledge,Talk
ICSE,2018,Adding Sparkle to Social Coding: An Empirical Study of Repository Badges in the npm Ecosystem,Talk
ICSE,2018,"""Was my contribution fairly reviewed?"" A framework and an empirical study of fairness in Modern Code Reviews",Talk
ICSE,2018,Collaborative Model-Driven Software Engineering: a Classification Framework and a Research Map,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,An empirical study of early access games on the Steam platform,Talk
ICSE,2018,Correctness Attraction: A Study of Stability of Software Behavior Under Runtime Perturbation,Talk
ICSE,2018,On the Diffuseness and the Impact on Maintainability of Code Smells: A Large Scale Empirical Investigation,Talk
ICSE,2018,Accurate and Efficient Refactoring Detection in Commit History,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,[Full paper] SE in ES: Opportunities for Software Engineering and Cloud Computing in Environmental Science,Talk
ICSE,2018,[Full paper] Towards a Unified Conceptual Model for Surveillance Theories,Talk
ICSE,2018,[Full paper] Competence-Confidence Gap: A Threat to Female Developers' Contribution on GitHub,Talk
ICSE,2018,[Short paper] Digital Ecclesia: Towards an Online Direct-Democracy Framework,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,ChangeLocator: Locate Crash-Inducing Changes Based on Crash Reports,Talk
ICSE,2018,Are Mutation Scores Correlated with Real Fault Detection? A Large Scale Empirical study on the Relationship Between Mutants and Real Faults,Talk
ICSE,2018,Efficient Sampling of SAT Solutions for Testing,Talk
ICSE,2018,Are Fix-Inducing Changes a Moving Target? A Longitudinal Case Study of Just-In-Time Defect Prediction,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,MDebugger: A Model-level Debugger for UML-RT,Talk
ICSE,2018,CyPhEF: A Model-Driven Engineering Framework for Self-Adaptive Cyber-Physical Systems,Demonstration
ICSE,2018,ReVision: A Tool for History-based Model Repair Recommendations,Talk
ICSE,2018,COMB: Computing Relevant Program Behaviors,Talk
ICSE,2018,"The Gamma Statechart Composition Framework: Design, Verification and Code Generation for Component-Based Reactive Systems",Demonstration
ICSE,2018,A Regression Proof Selection Tool For Coq,Talk
ICSE,2018,Assessing Software Development Skills Among K-6 Learners in a Project-Based Workshop with Scratch,Talk
ICSE,2018,Use of JiTT in a Graduate Software Testing Course: An Experience Report,Talk
ICSE,2018,Re-imagining a Course in Software Project Management,Talk
ICSE,2018,Providing a Baseline in Software Process Improvement Education with Lego Scrum Simulations,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,A Data Decomposition Method for Stepwise Migration of Complex Legacy Data,Talk
ICSE,2018,Mind The Gap: Can And Should Software Engineering Data Sharing Become A Path Of Less Resistance?,Talk
ICSE,2018,Cross-Language Optimizations in Big Data Systems: A Case Study of SCOPE,Talk
ICSE,2018,Smelly Relations: Measuring and Understanding Database Schema Quality,Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Adopting Autonomic Computing Capabilities in Existing Large-Scale Systems,Talk
ICSE,2018,Java Performance Troubleshooting and Optimization at Alibaba,Talk
ICSE,2018,An Exploratory Study on Faults in Web API Integration in a Large-Scale Payment Company,Talk
ICSE,2018,Transparency and Contracts: Continuous Integration and Delivery in the Automotive Ecosystem,Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Dataflow Tunneling: Mining Inter-request Data Dependencies for Request-based Applications,Talk
ICSE,2018,Launch-Mode-Aware Context-Sensitive Activity Transition Analysis for Android Apps,Talk
ICSE,2018,UFO: Predictive Concurrency Use-After-Free Detection,Talk
ICSE,2018,Collective Program Analysis,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Statistical Learning of API Fully Qualified Names in Code Snippets of Online Forums,Talk
ICSE,2018,When Not to Comment: Questions and Tradeoffs with API Documentation for C++ Projects,Talk
ICSE,2018,Deuce: A Lightweight User Interface for Structured Editing,Talk
ICSE,2018,From UI Design Image to GUI Skeleton: A Neural Machine Translator to Bootstrap Mobile GUI Implementation,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Understanding Developers’ Needs on Deprecation as a Language Feature,Talk
ICSE,2018,On The Dichotomy of Debugging Behavior Among Programmers,Talk
ICSE,2018,Measuring Program Comprehension: A Large-Scale Field Study with Professionals,Talk
ICSE,2018,Data Scientists in Software Teams: State of the Art and Challenges,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,"Panel on ""Software engineering in Society""Panel",Talk
ICSE,2018,50 years of Software Engineering or The View from Garmisch,Talk
ICSE,2018,Panel: 50 years of Software Engineering & Celebrating the 40th ICSEPanel,Talk
ICSE,2018,Celebration of 40th anniversary of ICSE,Talk
ICSE,2018,ICSE Awards,Talk
ICSE,2018,[Keynote] Modern Trends Through an Architecture LensKeynote,Talk
ICSE,2018,[Keynote] Using MOOCs to Teach Software EngineeringKeynote,Talk
ICSE,2018,[Panel] What is the role of universities in the age of online education and digitalization?Panel,Talk
ICSE,2018,When Testing Meets Code Review: Why and How Developers Review Tests,Talk
ICSE,2018,Redefining Prioritization: Continuous Prioritization for Continuous Integration,Talk
ICSE,2018,MAHAKIL: Diversity based Oversampling Approach to Alleviate the Class Imbalance Issue in Software Defect Prediction,Talk
ICSE,2018,On the Use of Hidden Markov Model to Predict the Time to Fix Bugs,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Multi-Granular Conflict and Dependency Analysis in Software Engineering based on Graph Transformation,Talk
ICSE,2018,Self-Hiding Behavior in Android Apps: Detection and Characterization,Talk
ICSE,2018,The Scent of a Smell: An Extensive Comparison between Textual and Structural Smells,Talk
ICSE,2018,ConflictJS: Finding and Understanding Conflicts Between JavaScript Libraries,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Poster F1: A Taxonomy of how Method Stereotypes Change,Talk
ICSE,2018,Poster F2: Automated Program Repair with Canonical Constraints,Talk
ICSE,2018,Poster F3: Toward Measuring Software Coupling via Weighted Dynamic Metrics,Talk
ICSE,2018,Poster F4: There Is No Random Sampling in Software Engineering Research,Talk
ICSE,2018,Poster F5: Efficient Iterative Deepening for Bounded Exhaustive Generation of Complex Structures,Talk
ICSE,2018,Poster F6: Improving Bug Localization with Report Quality Dynamics and Query Reformulation,Talk
ICSE,2018,Poster F7: Towards Sustainable Android Malware Detection,Talk
ICSE,2018,"Poster F8: Fast, Scalable and User-Guided Clone Detection",Talk
ICSE,2018,Poster F9: Searching for High-performing Software Configurationswith Metaheuristic Algorithms,Talk
ICSE,2018,"Poster F10: Git Blame Who?: Stylistic Authorship Attribution of Small, Incomplete Source Code Fragments",Talk
ICSE,2018,Poster F11: Identifying TraIn: A Neglected Form of Socio-Technical Incongruence,Talk
ICSE,2018,Poster F12: Efficient Blockchain-based Software Systems via Hierarchical Bucket Tree,Talk
ICSE,2018,Poster F13: Group Preference based API Recommendation via Heterogeneous Information Network,Talk
ICSE,2018,Poster F14: LibraryGuru: API Recommendation for Android Developers,Poster
ICSE,2018,Poster F15: ACONA: Active Online Model Adaptation for Predicting Continuous Integration Build Failures,Talk
ICSE,2018,Poster F17: SystemWeaver: Facilitating Configurable and Scalable Traceability of Systems Engineering Artifacts,Talk
ICSE,2018,Poster F18: Boundary Objects in Agile Practices: Continuous Management of Systems Engineering Artifacts in the Automotive Domain,Talk
ICSE,2018,Poster F19: Efficient GUI Test Generation by Learning from Tests of Other Apps,Talk
ICSE,2018,Poster F20: A Qualitative Reasoning Approach to Spectrum-based Fault Localization,Talk
ICSE,2018,Poster F21: Evaluating Project Compliance During EA Planning,Talk
ICSE,2018,Poster F22: ASSEMBLE: A Collaborative Business Process Development Tool,Talk
ICSE,2018,Poster F23: A Weight Approach to Combinatorial Test Generation,Talk
ICSE,2018,Poster F24: Decision Support for Feature Deletion in Mobile Apps,Talk
ICSE,2018,Poster F25: Automated Test Migration for Mobile Apps,Talk
ICSE,2018,Poster F26: USE: Unified and Split Execution for Exposing Divergences between Versions,Talk
ICSE,2018,Poster F27: Learning to Mine Parallel Natural Language/Source Code Corpora from Stack Overflow,Talk
ICSE,2018,Poster F28: Identification of Methods with Low Fault Risk,Talk
ICSE,2018,Poster F29: A Declarative Approach for Updating Distributed Microservices,Talk
ICSE,2018,Poster F30: Static Detection of API Call Vulnerabilities in iOS Executables,Talk
ICSE,2018,Poster F31: How Do Modelers Read UML Diagrams? Preliminary Results from an Eye-Tracking Study,Talk
ICSE,2018,Poster F32: Towards a Formal API Assessment,Talk
ICSE,2018,Poster F33: Measuring the Energy Footprint of Mobile Testing Frameworks,Talk
ICSE,2018,Poster F34: Precooked Developer Dashboards: What to Show and How to Use,Talk
ICSE,2018,Poster F35: Understanding and Leveraging Developer Inexpertise,Talk
ICSE,2018,Poster F36: The Buggy Side of Code Refactoring: Understanding the Relationship between Refactorings and Bugs,Talk
ICSE,2018,Poster F37: Predicting the Fault Revelation Utility of Mutants,Talk
ICSE,2018,Poster F38: Memory and Resource Leak Defects in Java Projects: An Empirical Study,Talk
ICSE,2018,Poster F39: Hybrid Traversal: Efficient Source Code Analysis at Scale,Talk
ICSE,2018,Poster F40: Defect Prediction Metrics for Infrastructure as Code Scripts in DevOps,Talk
ICSE,2018,Poster F41: Interlocking Safety Cases for Unmanned Autonomous Systems in Urban Environments,Talk
ICSE,2018,Poster F42: Linguistic Characteristics of Code Review Feedback - A Large Scale Study of Chromium,Talk
ICSE,2018,Poster F43: A Systematic Literature Review to Support the Selection of User Acceptance Testing Techniques,Talk
ICSE,2018,Poster F44: Assurance Cases for Scientific Computing Software,Talk
ICSE,2018,Poster F45: Grafter: Transplantation and Differential Testing for Clones,Talk
ICSE,2018,Poster F46: Symbolic Path Cost Analysis for Side-Channel Detection,Talk
ICSE,2018,Poster F47: Identifying Security Issues in Software Development: Are Keywords Enough?,Talk
ICSE,2018,Poster F48: Implementation and Evaluation of Cross Translation Unit Symbolic Execution for C Family Languages,Talk
ICSE,2018,Poster F49: Path-Based Function Embeddings,Talk
ICSE,2018,Poster F50: Multimorphic Testing,Talk
ICSE,2018,Poster F51: Property Specification Patterns for Robotic Missions,Talk
ICSE,2018,Poster F52: Autotuning PostgreSQL,Talk
ICSE,2018,Poster F53: Towards Multi-Robot Applications Planning Under Uncertainty,Talk
ICSE,2018,Poster F54: Companies’ Domination in FLOSS Development – An Empirical Study of OpenStack,Talk
ICSE,2018,Poster F55: Reordering Tests for Faster Test Suite Execution,Talk
ICSE,2018,Poster F56: Answering the Requirements Traceability Questions,Talk
ICSE,2018,Poster F57: BugZoo: A Platform for Studying Software Bugs,Talk
ICSE,2018,Debugging Data Flows in Reactive Programs,Talk
ICSE,2018,Do You Remember This Source Code?,Talk
ICSE,2018,Inferring Hierarchical Motifs from Execution Traces,Talk
ICSE,2018,A Comparison of Program Comprehension Strategies by Blind and Sighted Programmers,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,What makes a great manager of software engineers?,Talk
ICSE,2018,Older adults and hackathons: a qualitative study,Talk
ICSE,2018,Does Syntax Highlighting Help Programming Novices?,Talk
ICSE,2018,Do programmers work at night or during weekend?,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,The Evolution of Requirements Practices in Software Startups,Talk
ICSE,2018,Traceability in the Wild: Automatically Augmenting Incomplete Trace links,Talk
ICSE,2018,A Temporal Permission Analysis and Enforcement Framework for Android,Talk
ICSE,2018,Global-Aware Recommendations for Repairing Violations in Exception Handling,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Identifying Patch Correctness in Test-Based Program Repair,Talk
ICSE,2018,How not to structure your database-backed web applications: a study of performance bugs in the wild,Research paper
ICSE,2018,Speedoo: Prioritizing Performance Optimization Opportunities,Talk
ICSE,2018,Empirical Study on the Discrepancy between Performance Testing Results from Virtual and Physical Environments,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,[Selected research talks],Talk
ICSE,2018,RFC-Directed Differential Testing of Certificate Validation in SSL/TLS Implementations,Talk
ICSE,2018,Symbolic Verification of Regular Properties,Research paper
ICSE,2018,Metamorphic Testing of RESTful Web APIs,Talk
ICSE,2018,Integrating Technical Debt Management and Software Quality Management Processes: A Normative Framework and Field Tests,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Echoes from Space: Grouping Commands with Large-Scale Telemetry Data,Full-paper
ICSE,2018,Tool-based Interactive Parallelization: A Case Study,Talk
ICSE,2018,Studying Pull Request Merges: A Case Study of Shopify's Active Merchant,Talk
ICSE,2018,A Detailed and Real-time Performance Monitoring Framework for Blockchain Systems,Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Increasing student engagement in higher education using a context-aware Q & A teaching framework,Talk
ICSE,2018,Barriers to Gender Diversity in Software Development Education: Actionable Insights from a Danish Case Study,Talk
ICSE,2018,Everything is Interrelated: Teaching Software Engineering for Sustainability,Talk
ICSE,2018,Redesigning an Undergraduate Software Engineering Course for a Large Cohort,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,"Rethink EE Architecture in Automotive to facilitate Automation, Connectivity, and Electro mobility",Talk
ICSE,2018,Exploration of Technical Debt in Start-ups,Talk
ICSE,2018,Variant Management Solution for Large Scale Software Product Lines,Talk
ICSE,2018,How to Design a Program Repair Bot? Insights from the Repairnator Project,Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Proactive and Pervasive Combinatorial Testing,Talk
ICSE,2018,Practical Selective Regression Testing with Effective Redundancy in Interleaved Tests,Talk
ICSE,2018,State of Mutation Testing at Google,Talk
ICSE,2018,Improving Model-Based Testing in Automotive Software Engineering,Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Propagating Configuration Decisions with Modal Implication Graphs,Talk
ICSE,2018,A Combinatorial Approach for Exposing Off-Nominal Behaviors,Talk
ICSE,2018,Identifying Design Problems in the Source Code: A Grounded Theory,Research paper
ICSE,2018,Predicting Future Developer Behavior in the IDE Using Topic Models,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Deep Code Search,Research paper
ICSE,2018,Augmenting and Structuring User Queries to Support Efficient Free-Form Code Search,Talk
ICSE,2018,FaCoY – A Code-to-Code Search Engine,Talk
ICSE,2018,Generalized Data Structure Synthesis,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Understanding the Factors for Fast Answers in Technical Q&A Websites: An Empirical Study of Four Stack Exchange Websites,Talk
ICSE,2018,Towards Reusing Hints from Past Fixes- An Exploratory Study on Thousands of Real Samples,Talk
ICSE,2018,Are Code Examples on an Online Q&A Forum Reliable? A Study of API Misuse on Stack Overflow,Research paper
ICSE,2018,Inference of development activities from interaction with uninstrumented applications,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Testing Vision-Based Control Systems Using Learnable Evolutionary Algorithms,Talk
ICSE,2018,To Preserve or Not to Preserve Invalid Solutions in Search-Based Software Engineering: A Case Study in Software Product Lines,Talk
ICSE,2018,Nemo: Multi-Criteria Test-Suite Minimization with Integer Nonlinear Programming,Talk
ICSE,2018,"Is ""Better Data"" Better Than ""Better Data Miners""?",Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,A Graph Solver for the Automated Generation of Consistent Domain-Specific Models,Talk
ICSE,2018,Automatically Finding Bugs in Cyber-Physical System Development Tool Chains With Slforge,Talk
ICSE,2018,Context-Aware Conversational Developer Assistants,Talk
ICSE,2018,"Open Source barriers to entry, revisited: A tools perspective",Full-paper
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Replication studies considered harmful,Talk
ICSE,2018,From Craft to Science: The Road Ahead for Empirical Software Engineering Research,Talk
ICSE,2018,Towards Saving Money in Using Smart Contracts,Talk
ICSE,2018,Understanding the impact of software processes on the minds of developers,Talk
ICSE,2018,Retrospective based on Data-Driven Persona Significance in B-to-B Software Development,Talk
ICSE,2018,Dazed: Measuring the Cognitive Load of Solving Technical Interview Problems At the Whiteboard,Talk
ICSE,2018,Analyzing The Effects of Test Driven Development In GitHub,Talk
ICSE,2018,A Comparative Study to Benchmark Cross-project Defect Prediction Approaches,Talk
ICSE,2018,MSeer - An Advanced Technique for Locating Multiple Bugs in Parallel,Talk
ICSE,2018,Journal First Presentation of An Experience Report On Applying Software Testing Academic Results In Industry: We Need Usable Automated Test Generation,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Modern Code Review: A Case Study at Google,Talk
ICSE,2018,A Study of the Organizational Dynamics of Software Teams,Talk
ICSE,2018,An Investigation of Work Practices Used by Companies Making Contributions to Established OSS Projects,Talk
ICSE,2018,From Agile to Continuous Development in the Healthcare Domain – Lessons Learned,Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Helping SMEs to Better Develop Software: Experience Report and Challenges Ahead,Talk
ICSE,2018,Static Analysis of Context Leaks in Android Applications,Talk
ICSE,2018,Advantages and Disadvantages of a Monolithic Repository - A case study at Google,Talk
ICSE,2018,"Protecting Million-User iOS Apps with Obfuscation: Motivations, Pitfalls, and Experience",Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,"We Don't Need Another Hero? The Impact of ""Heroes"" on Software Development",Talk
ICSE,2018,Improve The Definition of Software Development Projects Through Design Thinking Led Collaboration Workshops,Talk
ICSE,2018,Evaluating Specification-level MC/DC Criterion in Model-based Testing of Safety Critical Systems,Talk
ICSE,2018,On groupthink in safety analysis: An industrial case study,Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Robustness Testing of Autonomy Software,Talk
ICSE,2018,An Experience Report on Defect Modelling in Practice: Pitfalls and Challenges,Talk
ICSE,2018,SmartUnit: Empirical Evaluations for Automated Unit Testing of Embedded Software in Industry,Talk
ICSE,2018,"What is the Connection Between Issues, Bugs, and Enhancements? (Lessons Learned from 800+ Software Projects)",Talk
ICSE,2018,Q&A in this sesson,Talk
ICSE,2018,Programming Not Only by Example,Talk
ICSE,2018,Goal-Conflict Likelihood Assessment based on Model Counting,Talk
ICSE,2018,"A Posteriori Typing for Model-Driven Engineering: Concepts, Analysis, and Applications",Talk
ICSE,2018,A Static Verification Framework for Message Passing in Go using Behavioural Types,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Inferring and Asserting Distributed System Invariants,Talk
ICSE,2018,DroidStar: Callback Typestates for Android Classes,Talk
ICSE,2018,Debugging with Intelligence via Probabilistic Inference,Talk
ICSE,2018,Reducer-Based Construction of Conditional Verifiers,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,CCAligner: a token based large-gap clone detector,Talk
ICSE,2018,HireBuild: An Automatic Approach to History-Driven Repair of Build Scripts,Talk
ICSE,2018,The Road to Live Programming: Insights From the Practice,Talk
ICSE,2018,Assessing the Threat of Untracked Changes in Software Evolution,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Search-Based Test Data Generation for SQL Queries,Talk
ICSE,2018,Multi-Objective Integer Programming Approaches for Solving Optimal Feature Selection Problem,Talk
ICSE,2018,Automated Refactoring of OCL Constraints with Search,Talk
ICSE,2018,Automatically Generating Search Heuristics for Concolic Testing,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Challenges and pitfalls on surveying evidence in the software engineering technical literature:an exploratory study with novices,Talk
ICSE,2018,Statistical Errors in Software Engineering Experiments: A Preliminary Literature Review,Research paper
ICSE,2018,Synthesizing Qualitative Research in Software Engineering: A Critical Review,Talk
ICSE,2018,Automatic Software Repair: A Survey,Talk
ICSE,2018,Q&A in groups,Talk
ICSE,2018,Deep Customization of Multi-Tenant SaaS Using Intrusive Microservices,Talk
ICSE,2018,Software Ecosystem Call Graph for Dependency Management,Talk
ICSE,2018,An Immersive Future for Software Engineering - Avenues and Approaches,Talk
ICSE,2018,Dronology: An Incubator for Cyber-Physical Systems Research,Talk
ICSE,2018,"50 years of software engineering, so now what? ",Talk
ICSE,2018,Awards Ceremony - Overview,Talk
ICSE,2018,Most Most Influential Paper: Debugging reinvented: asking and answering why and why not questions about program behavior,Talk
ICSE,2018,"ACM Sigsoft Outstanding Research Award: Relevance, Simplicity, and Innovation: Stories and Takeaways from Software Engineering Research",Talk
ICSE,2018,Conference Closing,Talk
ICSE,2018,Risk management of high tech systems,Talk
ICSE,2018,Formal Verification of Complex Robotic Systems on Resource-Constrained Platforms,Full-paper
ICSE,2018,Extending Specification Patterns for Verification of Parametric Traces,Research paper
ICSE,2018,Runtime Verification of Hyperproperties for Deterministic Programs,Research paper
ICSE,2018,Testing Meets Static and Runtime Verification,Research paper
ICSE,2018,CIL to Java-bytecode Translation for Static Analysis Leveraging,Research paper
ICSE,2018,Modeling Time in Java Programs for Automatic Error Detection,Research paper
ICSE,2018,[Short paper] Domain-specific Design of Patient Classification in Cancer-related Cachexia Research,Talk
ICSE,2018,Self-Adaptive Automata,Research paper
ICSE,2018,Formal Verification of an Autonomous Wheel Loader by Model Checking,Research paper
ICSE,2018,[Short paper] Formal verification of automotive embedded software,Short-paper
ICSE,2019,Opening,Day opening
ICSE,2019,The Quest for Agility: Are we there yet? Keynote,Talk
ICSE,2019, What goes on in your brain when you read and understand code?,Talk
ICSE,2019,Welcome,Day opening
ICSE,2019,Key Features Recommendation to Improve Bug Reporting,Doctoral symposium paper
ICSE,2019,Towards a Knowledge Warehouse and Expert System for the Automation of SDLC Tasks,Doctoral symposium paper
ICSE,2019,Equity when Software Development takes place in a Globalized World,Talk
ICSE,2019,Improving Source Code Readability: Theory and Practice,Full-paper
ICSE,2019,Replicating Novices' Struggles with Coding Style,Short-paper
ICSE,2019,"SPI is Dead, isn't it? Clear the Stage for Continuous Learning!",Short-paper
ICSE,2019,Efficient Analysis of Large Adaptation Spaces Self-Adaptive Systems using Machine LearningLong Paper,Talk
ICSE,2019,On Learning in Collective Self-adaptive Systems: State of Practice and a 3D FrameworkLong Paper,Talk
ICSE,2019,Using Unstructured Data to Improve the Continuous Planning of Critical Processes Involving HumansNIER,Talk
ICSE,2019,TRAPPed in Traffic? A Self-Adaptive Framework for Decentralized Traffic OptimizationArtifactReusable,Talk
ICSE,2019,How Does Feature Dependency Affect Configurable System Comprehensibility?,Full-paper
ICSE,2019,Live Programming and Software Evolution: Questions during a Programming Change Task,Full-paper
ICSE,2019,Measuring the Cognitive Load of Software Developers: A Systematic Mapping Study,Full-paper
ICSE,2019,A Large-Scale Empirical Study on Code-Comment Inconsistencies,Full-paper
ICSE,2019,An empirical study on practicality of specification mining algorithms on a real-world application,Full-paper
ICSE,2019,Testing Nearby Peer-to-Peer Mobile Apps at Large,Research paper
ICSE,2019,A framework for testing Android apps by reusing test cases,Short-paper
ICSE,2019,EarlGrey : UI Automation Testing in iOS,Short-paper
ICSE,2019,Success Factors for Effective Process Metrics Operationalization in Agile Software Development: A Multiple Case Study,Full-paper
ICSE,2019,TWINS – This Workflow Is Not Scrum: Agile Process Adaptation for Open Source Software Projects,Full-paper
ICSE,2019,Behavior-Driven Dynamics in Agile Development: The Effect of Fast Feedback on Teams,Full-paper
ICSE,2019,Performance Evolution of Newcomers in Large-Scale Distributed Software Projects: An Industrial Case StudyCandidate for Best Research Paper Award,Research paper
ICSE,2019,Migration versus Management: The Global Distribution of Computer Vision Engineering Work,Experience report
ICSE,2019,Data Science and development team remote communication: the use of the Machine Learning CanvasCandidate for Best Experience Report Award,Experience report
ICSE,2019,Let me in: Guidelines for the Successful Onboarding of Newcomers to Open Source ProjectsIEEE Software Journal First,Talk
ICSE,2019, Security Analysis for SmartThings IoT Applications,Short-paper
ICSE,2019,FireBugs: Finding and Repairing Bugs with Security Patterns,Short-paper
ICSE,2019,Machine Learning Meets Quantitative Planning: Enabling Self-Adaptation in Autonomous RobotsLong Paper,Talk
ICSE,2019,Self-Adaptation in Mobile Apps: a Systematic Literature StudyLong Paper,Talk
ICSE,2019,Applying Evolution and Novelty Search to Enhance the Resilience of Autonomous SystemsNIER,Talk
ICSE,2019,Modelling and Analysing ResilientCyber-Physical SystemsNIER,Talk
ICSE,2019,Neural Detection of Semantic Code Clones via Tree-Based Convolution,Full-paper
ICSE,2019,Comparing Bug Replication in Regular and Micro Code Clones,Full-paper
ICSE,2019,Comparing Machine Learning and Heuristic Approaches for Metric-Based Code Smell Detection,Full-paper
ICSE,2019,Enabling Clone Detection For Ethereum via Smart Contract Birthmarks,Full-paper
ICSE,2019,Prevalence of Bad Smells in PL/SQL Projects,Short-paper
ICSE,2019,Identifying Features of Android Apps from Execution Traces,Short-paper
ICSE,2019,A Look Into Developer Intentions for App Compatibility in Android,Short-paper
ICSE,2019,A Microservice Architecture for Online Mobile App Optimization,Short-paper
ICSE,2019, PerfProbe: A Systematic Cross-Layer Performance Diagnosis Framework for Mobile Platforms,Full-paper
ICSE,2019,Tool Demo: Google Play Android Vitals and Release Management,Short-paper
ICSE,2019,On the Benefits of Using Dedicated Models in Validation Processes for Behavioral Specifications,Full-paper
ICSE,2019,An Ontology-Driven Approach to Automating the Process of Integrating Security Software Systems,Full-paper
ICSE,2019,Recover and RELAX: Concern-Oriented Software Architecture Recovery for Systems Development and Maintenance,Full-paper
ICSE,2019,Investigating the Adoption and Application of Large-Scale Scrum at a German Automobile Manufacturer,Research paper
ICSE,2019,Challenges in Adopting Continuous Delivery and DevOps in a Globally Distributed Product Team: A case study of a healthcare organizationCandidate for Best Experience Report Award,Experience report
ICSE,2019,Understanding Key Business Processes for Business Process Outsourcing Transition,Experience report
ICSE,2019,Offshore Outsourcing Costs: Known or Still Hidden?,Research paper
ICSE,2019,Won't Take No for an Answer: Resource-driven Requirements AdaptationLong Paper,Talk
ICSE,2019,Taming Uncertainty in the Assurance Process of Self-Adaptive Systems: a Goal-Oriented ApproachArtifactLong PaperFunctional,Talk
ICSE,2019,PiStarGODA-MDP: A Goal-Oriented Framework to Support Assurances ProvisionArtifactFunctional,Talk
ICSE,2019,Inferring Analyzable Models from Trajectories of Spatially-Distributed Internet-of-ThingsArtifactFunctional,Talk
ICSE,2019,Dragonfly: a Tool for Simulating Self-Adaptive Drone BehavioursArtifactReusable,Talk
ICSE,2019,CCEvovis: A Clone Evolution Visualization System for Software Maintenance,Demonstration
ICSE,2019,CodersMUSE: Multi-Modal Data Exploration of Program-Comprehension Experiments,Short-paper
ICSE,2019,DeepVisual: A Visual Programming Tool for Deep Learning Systems,Short-paper
ICSE,2019,PADLA: A Dynamic Log Level Adapter Using Online Phase Detection,Short-paper
ICSE,2019,Visualizing sequences of debugging sessions using Swarm Debugging,Short-paper
ICSE,2019,srcPtr: A Framework for Implementing Static Pointer Analysis Approaches,Short-paper
ICSE,2019, An Observational Study on the State of REST API Uses in Android Mobile Applications,Full-paper
ICSE,2019,How do startups develop Internet-of-things systems - A multiple exploratory case study,Full-paper
ICSE,2019,Evaluating Coding Behavior in Software Development Processes: A Process Mining Approach,Full-paper
ICSE,2019,Using Constraint Mining to Analyze Software Development Processes,Full-paper
ICSE,2019,Tailoring Product Ownership in Large-Scale Global ProjectsIEEE Software Journal First,Talk
ICSE,2019,Embracing uncertainty and change with lean methods and disciplined software systems engineering,Industry talk
ICSE,2019,Using product line engineering in a globally distributed agile development team to shorten release cycles effectively,Experience report
ICSE,2019,An Empirical Study on Task Documentation in Software Crowdsourcing on TopCoder,Research paper
ICSE,2019,Dogfooding: eating our own dog food in a large global mobile industry playerCandidate for Best Experience Report Award,Experience report
ICSE,2019,Indentation: Simply a Matter of Style or Support for Program Comprehension?,Full-paper
ICSE,2019,Towards Automated Testing of Blockchain-based Decentralized Applications,Short-paper
ICSE,2019,Does BLEU Score Work for Code Migration?,Full-paper
ICSE,2019,SEAMS Banquet,Dinner
ICSE,2019,Tribute to Ric Holt,Day opening
ICSE,2019,Welcome,Day opening
ICSE,2019,Towards Responsible Software Engineering: Managing Ethics in Global Software Development,Talk
ICSE,2019,Adaptivity and Self-Management in Autonomous DrivingKeynote,Talk
ICSE,2019,The Untapped Potential of Analyzing Complete Developer Workflows,Talk
ICSE,2019,Opening,Day opening
ICSE,2019,On the Survival of Android Code Smells in the Wild,Full-paper
ICSE,2019,Cross-Project Just-in-Time Bug Prediction for Mobile Apps: An Empirical Assessment,Full-paper
ICSE,2019,A Comparison of Bugs across the iOS and Android Platforms of Two Open Source Cross Platform Browser Apps,Full-paper
ICSE,2019,Where Are We in the Journey and Remarks About the Schedule,Talk
ICSE,2019,Keynote: We Won! Now What?,Talk
ICSE,2019,Q&A for Keynote,unknown
ICSE,2019,Discussion: Ethical MSR,unknown
ICSE,2019,Crowdsourcing Software Development: Silver Bullet or Lead Balloon,Talk
ICSE,2019,Keynote: Philippe Kruchten--The End of Agile as We Know It,Talk
ICSE,2019,Keynote: How to Remove Technical Debt in Testing Environments,Talk
ICSE,2019,Replication Can Improve Prior Results: A GitHub Study of Pull Request Acceptance,Full-paper
ICSE,2019,Do Extracted State Machine Models Help to Understand Embedded Software?,Short-paper
ICSE,2019,Exploring Tools and Strategies Used During Regular Expression Composition Tasks,Full-paper
ICSE,2019,Empirical Analysis of Critical Success Factors for Project Management in Global Software Development,Poster
ICSE,2019,Understanding the Different Levels of Challenges in Global Software Development,Poster
ICSE,2019,Collaboration in Global Software Development: An Investigation on Research Trends and Evolution,Poster
ICSE,2019,Extended Reality in Global Software Delivery - Towards a Common Fabric of Understanding and Insights,Poster
ICSE,2019,Automated Process for Continuous Delivery: A case history,Poster
ICSE,2019,DeepJIT: An End-To-End Deep LearningFramework for Just-In-Time Defect Prediction,Full-paper
ICSE,2019,Lessons learned from using a deep tree-based model for software defect prediction in practice,Full-paper
ICSE,2019,Empirical study in using version histories for change risk classification,Short-paper