diff --git a/Heart-of-N1_ip_master/authorship.json b/Heart-of-N1_ip_master/authorship.json new file mode 100644 index 00000000..e350362c --- /dev/null +++ b/Heart-of-N1_ip_master/authorship.json @@ -0,0 +1 @@ +[{"path":"src/main/java/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"Heart-of-N1"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-01-30"},{"lineNumber":2,"author":{"gitId":"-"},"content":"public class Duke {","lastModifiedDate":"2019-07-29"},{"lineNumber":3,"author":{"gitId":"Heart-of-N1"},"content":" static String BREAK_LINE \u003d \"____________________________________________________________\";","lastModifiedDate":"2024-01-31"},{"lineNumber":4,"author":{"gitId":"Heart-of-N1"},"content":" static String DONE \u003d \"[X]\";","lastModifiedDate":"2024-01-31"},{"lineNumber":5,"author":{"gitId":"Heart-of-N1"},"content":" static String NOT_DONE \u003d \"[ ]\";","lastModifiedDate":"2024-01-31"},{"lineNumber":6,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":7,"author":{"gitId":"-"},"content":" public static void main(String[] args) {","lastModifiedDate":"2019-07-29"},{"lineNumber":8,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(BREAK_LINE + \"\\nHello! I\u0027m Jeremy.\\nWhat can I do for you?\\n\" + BREAK_LINE);","lastModifiedDate":"2024-01-31"},{"lineNumber":9,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":10,"author":{"gitId":"Heart-of-N1"},"content":" String[] tasks \u003d new String[100];","lastModifiedDate":"2024-01-30"},{"lineNumber":11,"author":{"gitId":"Heart-of-N1"},"content":" String[] doneCheck \u003d new String[100];","lastModifiedDate":"2024-01-30"},{"lineNumber":12,"author":{"gitId":"Heart-of-N1"},"content":" int count \u003d 0;","lastModifiedDate":"2024-01-30"},{"lineNumber":13,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":14,"author":{"gitId":"Heart-of-N1"},"content":" Scanner in \u003d new Scanner(System.in);","lastModifiedDate":"2024-01-30"},{"lineNumber":15,"author":{"gitId":"Heart-of-N1"},"content":" String line;","lastModifiedDate":"2024-01-30"},{"lineNumber":16,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":17,"author":{"gitId":"Heart-of-N1"},"content":" do {","lastModifiedDate":"2024-01-30"},{"lineNumber":18,"author":{"gitId":"Heart-of-N1"},"content":" line \u003d in.nextLine();","lastModifiedDate":"2024-01-30"},{"lineNumber":19,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(BREAK_LINE);","lastModifiedDate":"2024-01-31"},{"lineNumber":20,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":21,"author":{"gitId":"Heart-of-N1"},"content":" if (!line.equals(\"bye\")) {","lastModifiedDate":"2024-01-30"},{"lineNumber":22,"author":{"gitId":"Heart-of-N1"},"content":" if (line.equals(\"list\")) {","lastModifiedDate":"2024-01-30"},{"lineNumber":23,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":24,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(\"Here are the tasks in your list:\");","lastModifiedDate":"2024-01-30"},{"lineNumber":25,"author":{"gitId":"Heart-of-N1"},"content":" for (int i \u003d 0; i \u003c count; i++) {","lastModifiedDate":"2024-01-30"},{"lineNumber":26,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":27,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println((i + 1) + \".\" + doneCheck[i] + \" \" + tasks[i]);","lastModifiedDate":"2024-01-30"},{"lineNumber":28,"author":{"gitId":"Heart-of-N1"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":29,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(BREAK_LINE);","lastModifiedDate":"2024-01-31"},{"lineNumber":30,"author":{"gitId":"Heart-of-N1"},"content":" } else if (line.contains(\"unmark\")) {","lastModifiedDate":"2024-01-30"},{"lineNumber":31,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":32,"author":{"gitId":"Heart-of-N1"},"content":" String[] parts \u003d line.split(\" \");","lastModifiedDate":"2024-01-30"},{"lineNumber":33,"author":{"gitId":"Heart-of-N1"},"content":" int taskMarkNumber \u003d Integer.parseInt(parts[1]) - 1;","lastModifiedDate":"2024-01-30"},{"lineNumber":34,"author":{"gitId":"Heart-of-N1"},"content":" doneCheck[taskMarkNumber] \u003d NOT_DONE;","lastModifiedDate":"2024-01-31"},{"lineNumber":35,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(\"OK, I\u0027ve marked this task as not done yet:\");","lastModifiedDate":"2024-01-30"},{"lineNumber":36,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(doneCheck[taskMarkNumber] + \" \" + tasks[taskMarkNumber] + \"\\n\" + BREAK_LINE);","lastModifiedDate":"2024-01-31"},{"lineNumber":37,"author":{"gitId":"Heart-of-N1"},"content":" } else if (line.contains(\"mark\")){","lastModifiedDate":"2024-01-30"},{"lineNumber":38,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":39,"author":{"gitId":"Heart-of-N1"},"content":" String[] parts \u003d line.split(\" \");","lastModifiedDate":"2024-01-30"},{"lineNumber":40,"author":{"gitId":"Heart-of-N1"},"content":" int taskMarkNumber \u003d Integer.parseInt(parts[1]) - 1;","lastModifiedDate":"2024-01-30"},{"lineNumber":41,"author":{"gitId":"Heart-of-N1"},"content":" doneCheck[taskMarkNumber] \u003d DONE;","lastModifiedDate":"2024-01-31"},{"lineNumber":42,"author":{"gitId":"-"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2024-01-30"},{"lineNumber":43,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(doneCheck[taskMarkNumber] + \" \" + tasks[taskMarkNumber] + \"\\n\" + BREAK_LINE);","lastModifiedDate":"2024-01-31"},{"lineNumber":44,"author":{"gitId":"Heart-of-N1"},"content":" } else {","lastModifiedDate":"2024-01-30"},{"lineNumber":45,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":46,"author":{"gitId":"Heart-of-N1"},"content":" tasks[count] \u003d line;","lastModifiedDate":"2024-01-30"},{"lineNumber":47,"author":{"gitId":"Heart-of-N1"},"content":" doneCheck[count] \u003d NOT_DONE;","lastModifiedDate":"2024-01-31"},{"lineNumber":48,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(\"added: \" + line + \"\\n\" + BREAK_LINE);","lastModifiedDate":"2024-01-31"},{"lineNumber":49,"author":{"gitId":"Heart-of-N1"},"content":" count++;","lastModifiedDate":"2024-01-30"},{"lineNumber":50,"author":{"gitId":"Heart-of-N1"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":51,"author":{"gitId":"Heart-of-N1"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":52,"author":{"gitId":"Heart-of-N1"},"content":" } while (!line.equals(\"bye\"));","lastModifiedDate":"2024-01-30"},{"lineNumber":53,"author":{"gitId":"Heart-of-N1"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":54,"author":{"gitId":"Heart-of-N1"},"content":" System.out.println(\"Bye. Hope to see you again soon!\\n\" + BREAK_LINE);","lastModifiedDate":"2024-01-31"},{"lineNumber":55,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2019-07-29"},{"lineNumber":56,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2019-07-29"}],"authorContributionMap":{"Heart-of-N1":51,"-":5}}] diff --git a/Heart-of-N1_ip_master/commits.json b/Heart-of-N1_ip_master/commits.json new file mode 100644 index 00000000..15093c21 --- /dev/null +++ b/Heart-of-N1_ip_master/commits.json @@ -0,0 +1 @@ +{"authorDailyContributionsMap":{"Heart-of-N1":[{"date":"2024-01-30","commitResults":[{"hash":"3c1efc24a148733b5f3013fd5696d1c3fac99a66","isMergeCommit":false,"messageTitle":"Added Level 0.","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":7,"deletions":7}}},{"hash":"f6209a87971a39591d23491019330176f283d154","isMergeCommit":false,"messageTitle":"Added Level-1 from week 3.","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":0}}},{"hash":"e04458fbfd14178e05a20cb216e9d327a7969de3","isMergeCommit":false,"messageTitle":"Added Level 2 of week 3.","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":6}}},{"hash":"774d367a473154a3faf56937c14231a6a1ded468","isMergeCommit":false,"messageTitle":"Added Level-3 for week 3.","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":24,"deletions":2}}}]},{"date":"2024-01-31","commitResults":[{"hash":"34baab0af81d32c4745fcbca571bb146752c80c4","isMergeCommit":false,"messageTitle":"A-CodingStandard for week 3 added.","messageBody":"","tags":["Level3","Level2","Level1","Level0"],"fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":13}}}]}]},"authorFileTypeContributionMap":{"Heart-of-N1":{"java":51,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"Heart-of-N1":434.74557},"authorDisplayNameMap":{"Heart-of-N1":"SHAO..IZHE"}} diff --git a/Luo-Z-Y_ip_master/authorship.json b/Luo-Z-Y_ip_master/authorship.json index 6bc3445a..a4089991 100644 --- a/Luo-Z-Y_ip_master/authorship.json +++ b/Luo-Z-Y_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/Asuka.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"Luo-Z-Y"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-01-29"},{"lineNumber":2,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":3,"author":{"gitId":"Luo-Z-Y"},"content":"class Task {","lastModifiedDate":"2024-01-30"},{"lineNumber":4,"author":{"gitId":"-"},"content":" protected String description;","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"-"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":7,"author":{"gitId":"Luo-Z-Y"},"content":" public Task(String description) {","lastModifiedDate":"2024-01-30"},{"lineNumber":8,"author":{"gitId":"Luo-Z-Y"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-30"},{"lineNumber":9,"author":{"gitId":"Luo-Z-Y"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-30"},{"lineNumber":10,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":11,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":12,"author":{"gitId":"Luo-Z-Y"},"content":" public void markAsDone() {","lastModifiedDate":"2024-01-30"},{"lineNumber":13,"author":{"gitId":"Luo-Z-Y"},"content":" this.isDone \u003d true;","lastModifiedDate":"2024-01-30"},{"lineNumber":14,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":15,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":16,"author":{"gitId":"Luo-Z-Y"},"content":" public void markAsUndone() {","lastModifiedDate":"2024-01-30"},{"lineNumber":17,"author":{"gitId":"Luo-Z-Y"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-30"},{"lineNumber":18,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":19,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":20,"author":{"gitId":"Luo-Z-Y"},"content":" public void printTask() {","lastModifiedDate":"2024-01-30"},{"lineNumber":21,"author":{"gitId":"Luo-Z-Y"},"content":" if (this.isDone) {","lastModifiedDate":"2024-01-30"},{"lineNumber":22,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[X] \" + this.description);","lastModifiedDate":"2024-01-30"},{"lineNumber":23,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-01-30"},{"lineNumber":24,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[ ] \" + this.description);","lastModifiedDate":"2024-01-30"},{"lineNumber":25,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":26,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":27,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-01-30"},{"lineNumber":28,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":29,"author":{"gitId":"-"},"content":"class Todo extends Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"-"},"content":" public Todo(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"-"},"content":" super(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"-"},"content":" public void printTask() {","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"-"},"content":" if (this.isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"-"},"content":" System.out.println(\"[T][X] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"-"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"-"},"content":" System.out.println(\"[T][ ] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"-"},"content":"class Deadline extends Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"-"},"content":" public Deadline(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"-"},"content":" super(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"-"},"content":" public void printTask() {","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"-"},"content":" if (this.isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"-"},"content":" System.out.println(\"[D][X] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"-"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"-"},"content":" System.out.println(\"[D][ ] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"-"},"content":"class Event extends Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"-"},"content":" public Event(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"-"},"content":" super(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"-"},"content":" public void printTask() {","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"-"},"content":" if (this.isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"-"},"content":" System.out.println(\"[E][X] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"-"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"-"},"content":" System.out.println(\"[E][ ] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":70,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":71,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":72,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2024-02-04"},{"lineNumber":73,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":74,"author":{"gitId":"Luo-Z-Y"},"content":"enum Commands {","lastModifiedDate":"2024-01-30"},{"lineNumber":75,"author":{"gitId":"Luo-Z-Y"},"content":" list, mark, unmark, add, bye","lastModifiedDate":"2024-01-30"},{"lineNumber":76,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-01-30"},{"lineNumber":77,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":78,"author":{"gitId":"Luo-Z-Y"},"content":"public class Asuka {","lastModifiedDate":"2024-01-26"},{"lineNumber":79,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":80,"author":{"gitId":"-"},"content":" public static final int MAX_TASKS \u003d 100;","lastModifiedDate":"2024-02-04"},{"lineNumber":81,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":82,"author":{"gitId":"Luo-Z-Y"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-01-26"},{"lineNumber":83,"author":{"gitId":"Luo-Z-Y"},"content":" // Welcome message","lastModifiedDate":"2024-01-30"},{"lineNumber":84,"author":{"gitId":"-"},"content":" printWelcomeMessage();","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"-"},"content":" //Initialise","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"-"},"content":" Commands command \u003d null;","lastModifiedDate":"2024-02-04"},{"lineNumber":88,"author":{"gitId":"-"},"content":" int taskCount \u003d 0;","lastModifiedDate":"2024-02-04"},{"lineNumber":89,"author":{"gitId":"-"},"content":" Task[] tasks \u003d new Task[MAX_TASKS];","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"Luo-Z-Y"},"content":" Scanner myObj \u003d new Scanner(System.in);","lastModifiedDate":"2024-01-29"},{"lineNumber":91,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":92,"author":{"gitId":"-"},"content":" //Loop through different commands, until \"bye\" command","lastModifiedDate":"2024-02-04"},{"lineNumber":93,"author":{"gitId":"-"},"content":" while (command !\u003d Commands.bye) {","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":95,"author":{"gitId":"-"},"content":" // Read input","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"Luo-Z-Y"},"content":" String input \u003d myObj.nextLine();","lastModifiedDate":"2024-01-30"},{"lineNumber":97,"author":{"gitId":"-"},"content":" String[] inputs \u003d input.split(\" \");","lastModifiedDate":"2024-02-04"},{"lineNumber":98,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"Luo-Z-Y"},"content":" // Determine command","lastModifiedDate":"2024-01-30"},{"lineNumber":100,"author":{"gitId":"-"},"content":" command \u003d getCommands(input, inputs);","lastModifiedDate":"2024-02-04"},{"lineNumber":101,"author":{"gitId":"-"},"content":" if (command \u003d\u003d null) {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"-"},"content":" printInvalidCommand();","lastModifiedDate":"2024-02-04"},{"lineNumber":103,"author":{"gitId":"-"},"content":" continue;","lastModifiedDate":"2024-02-04"},{"lineNumber":104,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":105,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"Luo-Z-Y"},"content":" // Execute command","lastModifiedDate":"2024-01-30"},{"lineNumber":107,"author":{"gitId":"Luo-Z-Y"},"content":" switch (command) {","lastModifiedDate":"2024-01-30"},{"lineNumber":108,"author":{"gitId":"Luo-Z-Y"},"content":" case mark:","lastModifiedDate":"2024-01-30"},{"lineNumber":109,"author":{"gitId":"-"},"content":" mark(inputs, taskCount, tasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":111,"author":{"gitId":"Luo-Z-Y"},"content":" case unmark:","lastModifiedDate":"2024-01-30"},{"lineNumber":112,"author":{"gitId":"-"},"content":" unmark(inputs, taskCount, tasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":113,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":114,"author":{"gitId":"Luo-Z-Y"},"content":" case list:","lastModifiedDate":"2024-01-30"},{"lineNumber":115,"author":{"gitId":"-"},"content":" list(taskCount, tasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":116,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":117,"author":{"gitId":"Luo-Z-Y"},"content":" case add:","lastModifiedDate":"2024-01-30"},{"lineNumber":118,"author":{"gitId":"-"},"content":" taskCount \u003d updateTaskCount(input, tasks, taskCount);","lastModifiedDate":"2024-02-04"},{"lineNumber":119,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":120,"author":{"gitId":"Luo-Z-Y"},"content":" case bye:","lastModifiedDate":"2024-01-30"},{"lineNumber":121,"author":{"gitId":"-"},"content":" bye();","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"Luo-Z-Y"},"content":" myObj.close();","lastModifiedDate":"2024-01-30"},{"lineNumber":123,"author":{"gitId":"Luo-Z-Y"},"content":" myObj \u003d null;","lastModifiedDate":"2024-01-30"},{"lineNumber":124,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":125,"author":{"gitId":"-"},"content":" default:","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"-"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":129,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":130,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":131,"author":{"gitId":"-"},"content":" private static int updateTaskCount(String input, Task[] tasks, int taskCount) {","lastModifiedDate":"2024-02-04"},{"lineNumber":132,"author":{"gitId":"-"},"content":" String[] inputs;","lastModifiedDate":"2024-02-04"},{"lineNumber":133,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":134,"author":{"gitId":"-"},"content":" inputs \u003d input.split(\" \", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":135,"author":{"gitId":"-"},"content":" if (inputs[0].equalsIgnoreCase(\"todo\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":136,"author":{"gitId":"-"},"content":" tasks[taskCount] \u003d new Todo(inputs[1]);","lastModifiedDate":"2024-02-04"},{"lineNumber":137,"author":{"gitId":"-"},"content":" } else if (inputs[0].equalsIgnoreCase(\"deadline\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":138,"author":{"gitId":"-"},"content":" inputs \u003d inputs[1].split(\"/\", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":139,"author":{"gitId":"-"},"content":" if (inputs.length !\u003d 2)","lastModifiedDate":"2024-02-04"},{"lineNumber":140,"author":{"gitId":"-"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":141,"author":{"gitId":"-"},"content":" System.out.println(\"Incorrect format of time specification.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":142,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":143,"author":{"gitId":"-"},"content":" return taskCount;","lastModifiedDate":"2024-02-04"},{"lineNumber":144,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":145,"author":{"gitId":"-"},"content":" tasks[taskCount] \u003d new Deadline(inputs[0] + \"(\" + inputs[1] + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":146,"author":{"gitId":"-"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":147,"author":{"gitId":"-"},"content":" inputs \u003d inputs[1].split(\"/\", 3);","lastModifiedDate":"2024-02-04"},{"lineNumber":148,"author":{"gitId":"-"},"content":" if (inputs.length !\u003d 3)","lastModifiedDate":"2024-02-04"},{"lineNumber":149,"author":{"gitId":"-"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":150,"author":{"gitId":"-"},"content":" System.out.println(\"Incorrect format of time specification.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":151,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":152,"author":{"gitId":"-"},"content":" return taskCount;","lastModifiedDate":"2024-02-04"},{"lineNumber":153,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":154,"author":{"gitId":"-"},"content":" tasks[taskCount] \u003d new Event(inputs[0] + \"(\" + inputs[1] + inputs[2] + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":155,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":156,"author":{"gitId":"-"},"content":" taskCount++;","lastModifiedDate":"2024-02-04"},{"lineNumber":157,"author":{"gitId":"-"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":158,"author":{"gitId":"-"},"content":" tasks[taskCount - 1].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":159,"author":{"gitId":"-"},"content":" if (taskCount \u003d\u003d 1) {","lastModifiedDate":"2024-02-04"},{"lineNumber":160,"author":{"gitId":"-"},"content":" System.out.println(\"Now you got \" + taskCount + \" task in the list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":161,"author":{"gitId":"-"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":162,"author":{"gitId":"-"},"content":" System.out.println(\"Now you got \" + taskCount + \" tasks in the list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":163,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":164,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":165,"author":{"gitId":"-"},"content":" return taskCount;","lastModifiedDate":"2024-02-04"},{"lineNumber":166,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":167,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":168,"author":{"gitId":"-"},"content":" private static void printInvalidCommand() {","lastModifiedDate":"2024-02-04"},{"lineNumber":169,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":170,"author":{"gitId":"-"},"content":" System.out.println(\"Invalid command\");","lastModifiedDate":"2024-02-04"},{"lineNumber":171,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":172,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":173,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":174,"author":{"gitId":"-"},"content":" private static void bye() {","lastModifiedDate":"2024-02-04"},{"lineNumber":175,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":176,"author":{"gitId":"-"},"content":" System.out.println(\"Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":177,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":178,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":179,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":180,"author":{"gitId":"-"},"content":" private static void list(int taskCount, Task[] tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":181,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":182,"author":{"gitId":"-"},"content":" for (int j \u003d 0; j \u003c taskCount; j++) {","lastModifiedDate":"2024-02-04"},{"lineNumber":183,"author":{"gitId":"-"},"content":" System.out.print(j + 1 + \". \");","lastModifiedDate":"2024-02-04"},{"lineNumber":184,"author":{"gitId":"-"},"content":" tasks[j].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":185,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":186,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":187,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":188,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":189,"author":{"gitId":"-"},"content":" private static void unmark(String[] inputs, int taskCount, Task[] tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":190,"author":{"gitId":"-"},"content":" int taskNumber;","lastModifiedDate":"2024-02-04"},{"lineNumber":191,"author":{"gitId":"-"},"content":" taskNumber \u003d Integer.parseInt(inputs[1]);","lastModifiedDate":"2024-02-04"},{"lineNumber":192,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":193,"author":{"gitId":"-"},"content":" if (taskNumber \u003e 0 \u0026\u0026 taskNumber \u003c\u003d taskCount) {","lastModifiedDate":"2024-02-04"},{"lineNumber":194,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":195,"author":{"gitId":"-"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as undone: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":196,"author":{"gitId":"-"},"content":" tasks[taskNumber - 1].markAsUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":197,"author":{"gitId":"-"},"content":" tasks[taskNumber - 1].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":198,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":199,"author":{"gitId":"-"},"content":" else {","lastModifiedDate":"2024-02-04"},{"lineNumber":200,"author":{"gitId":"-"},"content":" System.out.println(\"Task index out of bound, the total number of task(s) you have now is: \" + taskCount);","lastModifiedDate":"2024-02-04"},{"lineNumber":201,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":202,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":203,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":204,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":205,"author":{"gitId":"-"},"content":" private static void mark(String[] inputs, int taskCount, Task[] tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":206,"author":{"gitId":"-"},"content":" int taskNumber;","lastModifiedDate":"2024-02-04"},{"lineNumber":207,"author":{"gitId":"-"},"content":" taskNumber \u003d Integer.parseInt(inputs[1]);","lastModifiedDate":"2024-02-04"},{"lineNumber":208,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":209,"author":{"gitId":"-"},"content":" if (taskNumber \u003e 0 \u0026\u0026 taskNumber \u003c\u003d taskCount) {","lastModifiedDate":"2024-02-04"},{"lineNumber":210,"author":{"gitId":"-"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":211,"author":{"gitId":"-"},"content":" tasks[taskNumber - 1].markAsDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":212,"author":{"gitId":"-"},"content":" tasks[taskNumber - 1].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":213,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":214,"author":{"gitId":"-"},"content":" else {","lastModifiedDate":"2024-02-04"},{"lineNumber":215,"author":{"gitId":"-"},"content":" System.out.println(\"Task index out of bound, the total number of task(s) you have now is: \" + taskCount);","lastModifiedDate":"2024-02-04"},{"lineNumber":216,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":217,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":218,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":219,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":220,"author":{"gitId":"-"},"content":" private static Commands getCommands(String input, String[] inputs) {","lastModifiedDate":"2024-02-04"},{"lineNumber":221,"author":{"gitId":"-"},"content":" if ((inputs[0].equalsIgnoreCase(\"todo\")) || (inputs[0].equalsIgnoreCase(\"deadline\")) || (inputs[0].equalsIgnoreCase(\"event\"))){","lastModifiedDate":"2024-02-04"},{"lineNumber":222,"author":{"gitId":"-"},"content":" if (inputs.length \u003d\u003d 1)","lastModifiedDate":"2024-02-04"},{"lineNumber":223,"author":{"gitId":"-"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":224,"author":{"gitId":"-"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":225,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":226,"author":{"gitId":"-"},"content":" return Commands.add;","lastModifiedDate":"2024-02-04"},{"lineNumber":227,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":228,"author":{"gitId":"-"},"content":" if (inputs.length \u003e 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":229,"author":{"gitId":"-"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":230,"author":{"gitId":"-"},"content":" } else if (inputs.length \u003d\u003d 2 \u0026\u0026 !inputs[0].equalsIgnoreCase(\"mark\") \u0026\u0026 !inputs[0].equalsIgnoreCase(\"unmark\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":231,"author":{"gitId":"-"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":232,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":233,"author":{"gitId":"-"},"content":" if (inputs.length \u003d\u003d 2)","lastModifiedDate":"2024-02-04"},{"lineNumber":234,"author":{"gitId":"-"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":235,"author":{"gitId":"-"},"content":" if (inputs[0].equalsIgnoreCase(\"mark\") \u0026\u0026 Integer.parseInt(inputs[1]) \u003c\u003d MAX_TASKS \u0026\u0026 Integer.parseInt(inputs[1]) \u003e 0) {","lastModifiedDate":"2024-02-04"},{"lineNumber":236,"author":{"gitId":"-"},"content":" return Commands.mark;","lastModifiedDate":"2024-02-04"},{"lineNumber":237,"author":{"gitId":"-"},"content":" } else if (inputs[0].equalsIgnoreCase(\"unmark\") \u0026\u0026 Integer.parseInt(inputs[1]) \u003c\u003d MAX_TASKS \u0026\u0026 Integer.parseInt(inputs[1]) \u003e 0) {","lastModifiedDate":"2024-02-04"},{"lineNumber":238,"author":{"gitId":"-"},"content":" return Commands.unmark;","lastModifiedDate":"2024-02-04"},{"lineNumber":239,"author":{"gitId":"-"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":240,"author":{"gitId":"-"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":241,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":242,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":243,"author":{"gitId":"-"},"content":" if (input.equalsIgnoreCase(\"bye\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":244,"author":{"gitId":"-"},"content":" return Commands.bye;","lastModifiedDate":"2024-02-04"},{"lineNumber":245,"author":{"gitId":"-"},"content":" } else if (input.equalsIgnoreCase(\"list\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":246,"author":{"gitId":"-"},"content":" return Commands.list;","lastModifiedDate":"2024-02-04"},{"lineNumber":247,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":248,"author":{"gitId":"-"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":249,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":250,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":251,"author":{"gitId":"-"},"content":" private static void printWelcomeMessage() {","lastModifiedDate":"2024-02-04"},{"lineNumber":252,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":253,"author":{"gitId":"-"},"content":" System.out.println(\"Hello! I\u0027m Asuka\\nWhat can I do for you?\");","lastModifiedDate":"2024-02-04"},{"lineNumber":254,"author":{"gitId":"-"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":255,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-26"},{"lineNumber":256,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-01-26"}],"authorContributionMap":{"Luo-Z-Y":56,"-":200}}] +[{"path":"src/main/java/Asuka.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"Luo-Z-Y"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-01-29"},{"lineNumber":2,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":3,"author":{"gitId":"Luo-Z-Y"},"content":"class Task {","lastModifiedDate":"2024-01-30"},{"lineNumber":4,"author":{"gitId":"Luo-Z-Y"},"content":" protected String description;","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"Luo-Z-Y"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":7,"author":{"gitId":"Luo-Z-Y"},"content":" public Task(String description) {","lastModifiedDate":"2024-01-30"},{"lineNumber":8,"author":{"gitId":"Luo-Z-Y"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-30"},{"lineNumber":9,"author":{"gitId":"Luo-Z-Y"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-30"},{"lineNumber":10,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":11,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":12,"author":{"gitId":"Luo-Z-Y"},"content":" public void markAsDone() {","lastModifiedDate":"2024-01-30"},{"lineNumber":13,"author":{"gitId":"Luo-Z-Y"},"content":" this.isDone \u003d true;","lastModifiedDate":"2024-01-30"},{"lineNumber":14,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":15,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":16,"author":{"gitId":"Luo-Z-Y"},"content":" public void markAsUndone() {","lastModifiedDate":"2024-01-30"},{"lineNumber":17,"author":{"gitId":"Luo-Z-Y"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-30"},{"lineNumber":18,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":19,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":20,"author":{"gitId":"Luo-Z-Y"},"content":" public void printTask() {","lastModifiedDate":"2024-01-30"},{"lineNumber":21,"author":{"gitId":"Luo-Z-Y"},"content":" if (this.isDone) {","lastModifiedDate":"2024-01-30"},{"lineNumber":22,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[X] \" + this.description);","lastModifiedDate":"2024-01-30"},{"lineNumber":23,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-01-30"},{"lineNumber":24,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[ ] \" + this.description);","lastModifiedDate":"2024-01-30"},{"lineNumber":25,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":26,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":27,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-01-30"},{"lineNumber":28,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":29,"author":{"gitId":"Luo-Z-Y"},"content":"class Todo extends Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"Luo-Z-Y"},"content":" public Todo(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"Luo-Z-Y"},"content":" super(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"Luo-Z-Y"},"content":" public void printTask() {","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"Luo-Z-Y"},"content":" if (this.isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[T][X] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[T][ ] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"Luo-Z-Y"},"content":"class Deadline extends Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"Luo-Z-Y"},"content":" public Deadline(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"Luo-Z-Y"},"content":" super(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"Luo-Z-Y"},"content":" public void printTask() {","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"Luo-Z-Y"},"content":" if (this.isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[D][X] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[D][ ] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"Luo-Z-Y"},"content":"class Event extends Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"Luo-Z-Y"},"content":" public Event(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"Luo-Z-Y"},"content":" super(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"Luo-Z-Y"},"content":" public void printTask() {","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"Luo-Z-Y"},"content":" if (this.isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[E][X] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"[E][ ] \" + this.description);","lastModifiedDate":"2024-02-04"},{"lineNumber":70,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":71,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":72,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-02-04"},{"lineNumber":73,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":74,"author":{"gitId":"Luo-Z-Y"},"content":"enum Commands {","lastModifiedDate":"2024-01-30"},{"lineNumber":75,"author":{"gitId":"Luo-Z-Y"},"content":" list, mark, unmark, add, bye","lastModifiedDate":"2024-01-30"},{"lineNumber":76,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-01-30"},{"lineNumber":77,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-01-30"},{"lineNumber":78,"author":{"gitId":"Luo-Z-Y"},"content":"public class Asuka {","lastModifiedDate":"2024-01-26"},{"lineNumber":79,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":80,"author":{"gitId":"Luo-Z-Y"},"content":" public static final int MAX_TASKS \u003d 100;","lastModifiedDate":"2024-02-04"},{"lineNumber":81,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":82,"author":{"gitId":"Luo-Z-Y"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-01-26"},{"lineNumber":83,"author":{"gitId":"Luo-Z-Y"},"content":" // Welcome message","lastModifiedDate":"2024-01-30"},{"lineNumber":84,"author":{"gitId":"Luo-Z-Y"},"content":" printWelcomeMessage();","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"Luo-Z-Y"},"content":" //Initialise","lastModifiedDate":"2024-02-04"},{"lineNumber":87,"author":{"gitId":"Luo-Z-Y"},"content":" Commands command \u003d null;","lastModifiedDate":"2024-02-04"},{"lineNumber":88,"author":{"gitId":"Luo-Z-Y"},"content":" int taskCount \u003d 0;","lastModifiedDate":"2024-02-04"},{"lineNumber":89,"author":{"gitId":"Luo-Z-Y"},"content":" Task[] tasks \u003d new Task[MAX_TASKS];","lastModifiedDate":"2024-02-04"},{"lineNumber":90,"author":{"gitId":"Luo-Z-Y"},"content":" Scanner myObj \u003d new Scanner(System.in);","lastModifiedDate":"2024-01-29"},{"lineNumber":91,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":92,"author":{"gitId":"Luo-Z-Y"},"content":" //Loop through different commands, until \"bye\" command","lastModifiedDate":"2024-02-04"},{"lineNumber":93,"author":{"gitId":"Luo-Z-Y"},"content":" while (command !\u003d Commands.bye) {","lastModifiedDate":"2024-02-04"},{"lineNumber":94,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":95,"author":{"gitId":"Luo-Z-Y"},"content":" // Read input","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"Luo-Z-Y"},"content":" String input \u003d myObj.nextLine();","lastModifiedDate":"2024-01-30"},{"lineNumber":97,"author":{"gitId":"Luo-Z-Y"},"content":" String[] inputs \u003d input.split(\" \");","lastModifiedDate":"2024-02-04"},{"lineNumber":98,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":99,"author":{"gitId":"Luo-Z-Y"},"content":" // Determine command","lastModifiedDate":"2024-01-30"},{"lineNumber":100,"author":{"gitId":"Luo-Z-Y"},"content":" command \u003d getCommands(input, inputs);","lastModifiedDate":"2024-02-04"},{"lineNumber":101,"author":{"gitId":"Luo-Z-Y"},"content":" if (command \u003d\u003d null) {","lastModifiedDate":"2024-02-04"},{"lineNumber":102,"author":{"gitId":"Luo-Z-Y"},"content":" printInvalidCommand();","lastModifiedDate":"2024-02-04"},{"lineNumber":103,"author":{"gitId":"Luo-Z-Y"},"content":" continue;","lastModifiedDate":"2024-02-04"},{"lineNumber":104,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":105,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"Luo-Z-Y"},"content":" // Execute command","lastModifiedDate":"2024-01-30"},{"lineNumber":107,"author":{"gitId":"Luo-Z-Y"},"content":" switch (command) {","lastModifiedDate":"2024-01-30"},{"lineNumber":108,"author":{"gitId":"Luo-Z-Y"},"content":" case mark:","lastModifiedDate":"2024-01-30"},{"lineNumber":109,"author":{"gitId":"Luo-Z-Y"},"content":" mark(inputs, taskCount, tasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":110,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":111,"author":{"gitId":"Luo-Z-Y"},"content":" case unmark:","lastModifiedDate":"2024-01-30"},{"lineNumber":112,"author":{"gitId":"Luo-Z-Y"},"content":" unmark(inputs, taskCount, tasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":113,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":114,"author":{"gitId":"Luo-Z-Y"},"content":" case list:","lastModifiedDate":"2024-01-30"},{"lineNumber":115,"author":{"gitId":"Luo-Z-Y"},"content":" list(taskCount, tasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":116,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":117,"author":{"gitId":"Luo-Z-Y"},"content":" case add:","lastModifiedDate":"2024-01-30"},{"lineNumber":118,"author":{"gitId":"Luo-Z-Y"},"content":" taskCount \u003d updateTaskCount(input, tasks, taskCount);","lastModifiedDate":"2024-02-04"},{"lineNumber":119,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":120,"author":{"gitId":"Luo-Z-Y"},"content":" case bye:","lastModifiedDate":"2024-01-30"},{"lineNumber":121,"author":{"gitId":"Luo-Z-Y"},"content":" bye();","lastModifiedDate":"2024-02-04"},{"lineNumber":122,"author":{"gitId":"Luo-Z-Y"},"content":" myObj.close();","lastModifiedDate":"2024-01-30"},{"lineNumber":123,"author":{"gitId":"Luo-Z-Y"},"content":" myObj \u003d null;","lastModifiedDate":"2024-01-30"},{"lineNumber":124,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-01-30"},{"lineNumber":125,"author":{"gitId":"Luo-Z-Y"},"content":" default:","lastModifiedDate":"2024-02-04"},{"lineNumber":126,"author":{"gitId":"Luo-Z-Y"},"content":" break;","lastModifiedDate":"2024-02-04"},{"lineNumber":127,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":129,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-30"},{"lineNumber":130,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":131,"author":{"gitId":"Luo-Z-Y"},"content":" private static int updateTaskCount(String input, Task[] tasks, int taskCount) {","lastModifiedDate":"2024-02-04"},{"lineNumber":132,"author":{"gitId":"Luo-Z-Y"},"content":" String[] inputs;","lastModifiedDate":"2024-02-04"},{"lineNumber":133,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":134,"author":{"gitId":"Luo-Z-Y"},"content":" inputs \u003d input.split(\" \", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":135,"author":{"gitId":"Luo-Z-Y"},"content":" if (inputs[0].equalsIgnoreCase(\"todo\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":136,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskCount] \u003d new Todo(inputs[1]);","lastModifiedDate":"2024-02-04"},{"lineNumber":137,"author":{"gitId":"Luo-Z-Y"},"content":" } else if (inputs[0].equalsIgnoreCase(\"deadline\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":138,"author":{"gitId":"Luo-Z-Y"},"content":" inputs \u003d inputs[1].split(\"/\", 2);","lastModifiedDate":"2024-02-04"},{"lineNumber":139,"author":{"gitId":"Luo-Z-Y"},"content":" if (inputs.length !\u003d 2)","lastModifiedDate":"2024-02-04"},{"lineNumber":140,"author":{"gitId":"Luo-Z-Y"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":141,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Incorrect format of time specification.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":142,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":143,"author":{"gitId":"Luo-Z-Y"},"content":" return taskCount;","lastModifiedDate":"2024-02-04"},{"lineNumber":144,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":145,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskCount] \u003d new Deadline(inputs[0] + \"(\" + inputs[1] + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":146,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":147,"author":{"gitId":"Luo-Z-Y"},"content":" inputs \u003d inputs[1].split(\"/\", 3);","lastModifiedDate":"2024-02-04"},{"lineNumber":148,"author":{"gitId":"Luo-Z-Y"},"content":" if (inputs.length !\u003d 3)","lastModifiedDate":"2024-02-04"},{"lineNumber":149,"author":{"gitId":"Luo-Z-Y"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":150,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Incorrect format of time specification.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":151,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":152,"author":{"gitId":"Luo-Z-Y"},"content":" return taskCount;","lastModifiedDate":"2024-02-04"},{"lineNumber":153,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":154,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskCount] \u003d new Event(inputs[0] + \"(\" + inputs[1] + inputs[2] + \")\");","lastModifiedDate":"2024-02-04"},{"lineNumber":155,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":156,"author":{"gitId":"Luo-Z-Y"},"content":" taskCount++;","lastModifiedDate":"2024-02-04"},{"lineNumber":157,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":158,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskCount - 1].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":159,"author":{"gitId":"Luo-Z-Y"},"content":" if (taskCount \u003d\u003d 1) {","lastModifiedDate":"2024-02-04"},{"lineNumber":160,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Now you got \" + taskCount + \" task in the list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":161,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":162,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Now you got \" + taskCount + \" tasks in the list.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":163,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":164,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":165,"author":{"gitId":"Luo-Z-Y"},"content":" return taskCount;","lastModifiedDate":"2024-02-04"},{"lineNumber":166,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":167,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":168,"author":{"gitId":"Luo-Z-Y"},"content":" private static void printInvalidCommand() {","lastModifiedDate":"2024-02-04"},{"lineNumber":169,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":170,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Invalid command\");","lastModifiedDate":"2024-02-04"},{"lineNumber":171,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":172,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":173,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":174,"author":{"gitId":"Luo-Z-Y"},"content":" private static void bye() {","lastModifiedDate":"2024-02-04"},{"lineNumber":175,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":176,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-04"},{"lineNumber":177,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":178,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":179,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":180,"author":{"gitId":"Luo-Z-Y"},"content":" private static void list(int taskCount, Task[] tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":181,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":182,"author":{"gitId":"Luo-Z-Y"},"content":" for (int j \u003d 0; j \u003c taskCount; j++) {","lastModifiedDate":"2024-02-04"},{"lineNumber":183,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.print(j + 1 + \". \");","lastModifiedDate":"2024-02-04"},{"lineNumber":184,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[j].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":185,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":186,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":187,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":188,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":189,"author":{"gitId":"Luo-Z-Y"},"content":" private static void unmark(String[] inputs, int taskCount, Task[] tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":190,"author":{"gitId":"Luo-Z-Y"},"content":" int taskNumber;","lastModifiedDate":"2024-02-04"},{"lineNumber":191,"author":{"gitId":"Luo-Z-Y"},"content":" taskNumber \u003d Integer.parseInt(inputs[1]);","lastModifiedDate":"2024-02-04"},{"lineNumber":192,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":193,"author":{"gitId":"Luo-Z-Y"},"content":" if (taskNumber \u003e 0 \u0026\u0026 taskNumber \u003c\u003d taskCount) {","lastModifiedDate":"2024-02-04"},{"lineNumber":194,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":195,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as undone: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":196,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskNumber - 1].markAsUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":197,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskNumber - 1].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":198,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":199,"author":{"gitId":"Luo-Z-Y"},"content":" else {","lastModifiedDate":"2024-02-04"},{"lineNumber":200,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Task index out of bound, the total number of task(s) you have now is: \" + taskCount);","lastModifiedDate":"2024-02-04"},{"lineNumber":201,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":202,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":203,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":204,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":205,"author":{"gitId":"Luo-Z-Y"},"content":" private static void mark(String[] inputs, int taskCount, Task[] tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":206,"author":{"gitId":"Luo-Z-Y"},"content":" int taskNumber;","lastModifiedDate":"2024-02-04"},{"lineNumber":207,"author":{"gitId":"Luo-Z-Y"},"content":" taskNumber \u003d Integer.parseInt(inputs[1]);","lastModifiedDate":"2024-02-04"},{"lineNumber":208,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":209,"author":{"gitId":"Luo-Z-Y"},"content":" if (taskNumber \u003e 0 \u0026\u0026 taskNumber \u003c\u003d taskCount) {","lastModifiedDate":"2024-02-04"},{"lineNumber":210,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done: \");","lastModifiedDate":"2024-02-04"},{"lineNumber":211,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskNumber - 1].markAsDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":212,"author":{"gitId":"Luo-Z-Y"},"content":" tasks[taskNumber - 1].printTask();","lastModifiedDate":"2024-02-04"},{"lineNumber":213,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":214,"author":{"gitId":"Luo-Z-Y"},"content":" else {","lastModifiedDate":"2024-02-04"},{"lineNumber":215,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Task index out of bound, the total number of task(s) you have now is: \" + taskCount);","lastModifiedDate":"2024-02-04"},{"lineNumber":216,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":217,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":218,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":219,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":220,"author":{"gitId":"Luo-Z-Y"},"content":" private static Commands getCommands(String input, String[] inputs) {","lastModifiedDate":"2024-02-04"},{"lineNumber":221,"author":{"gitId":"Luo-Z-Y"},"content":" if ((inputs[0].equalsIgnoreCase(\"todo\")) || (inputs[0].equalsIgnoreCase(\"deadline\")) || (inputs[0].equalsIgnoreCase(\"event\"))){","lastModifiedDate":"2024-02-04"},{"lineNumber":222,"author":{"gitId":"Luo-Z-Y"},"content":" if (inputs.length \u003d\u003d 1)","lastModifiedDate":"2024-02-04"},{"lineNumber":223,"author":{"gitId":"Luo-Z-Y"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":224,"author":{"gitId":"Luo-Z-Y"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":225,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":226,"author":{"gitId":"Luo-Z-Y"},"content":" return Commands.add;","lastModifiedDate":"2024-02-04"},{"lineNumber":227,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":228,"author":{"gitId":"Luo-Z-Y"},"content":" if (inputs.length \u003e 2) {","lastModifiedDate":"2024-02-04"},{"lineNumber":229,"author":{"gitId":"Luo-Z-Y"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":230,"author":{"gitId":"Luo-Z-Y"},"content":" } else if (inputs.length \u003d\u003d 2 \u0026\u0026 !inputs[0].equalsIgnoreCase(\"mark\") \u0026\u0026 !inputs[0].equalsIgnoreCase(\"unmark\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":231,"author":{"gitId":"Luo-Z-Y"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":232,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":233,"author":{"gitId":"Luo-Z-Y"},"content":" if (inputs.length \u003d\u003d 2)","lastModifiedDate":"2024-02-04"},{"lineNumber":234,"author":{"gitId":"Luo-Z-Y"},"content":" {","lastModifiedDate":"2024-02-04"},{"lineNumber":235,"author":{"gitId":"Luo-Z-Y"},"content":" if (inputs[0].equalsIgnoreCase(\"mark\") \u0026\u0026 Integer.parseInt(inputs[1]) \u003c\u003d MAX_TASKS \u0026\u0026 Integer.parseInt(inputs[1]) \u003e 0) {","lastModifiedDate":"2024-02-04"},{"lineNumber":236,"author":{"gitId":"Luo-Z-Y"},"content":" return Commands.mark;","lastModifiedDate":"2024-02-04"},{"lineNumber":237,"author":{"gitId":"Luo-Z-Y"},"content":" } else if (inputs[0].equalsIgnoreCase(\"unmark\") \u0026\u0026 Integer.parseInt(inputs[1]) \u003c\u003d MAX_TASKS \u0026\u0026 Integer.parseInt(inputs[1]) \u003e 0) {","lastModifiedDate":"2024-02-04"},{"lineNumber":238,"author":{"gitId":"Luo-Z-Y"},"content":" return Commands.unmark;","lastModifiedDate":"2024-02-04"},{"lineNumber":239,"author":{"gitId":"Luo-Z-Y"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":240,"author":{"gitId":"Luo-Z-Y"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":241,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":242,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":243,"author":{"gitId":"Luo-Z-Y"},"content":" if (input.equalsIgnoreCase(\"bye\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":244,"author":{"gitId":"Luo-Z-Y"},"content":" return Commands.bye;","lastModifiedDate":"2024-02-04"},{"lineNumber":245,"author":{"gitId":"Luo-Z-Y"},"content":" } else if (input.equalsIgnoreCase(\"list\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":246,"author":{"gitId":"Luo-Z-Y"},"content":" return Commands.list;","lastModifiedDate":"2024-02-04"},{"lineNumber":247,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":248,"author":{"gitId":"Luo-Z-Y"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":249,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":250,"author":{"gitId":"Luo-Z-Y"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":251,"author":{"gitId":"Luo-Z-Y"},"content":" private static void printWelcomeMessage() {","lastModifiedDate":"2024-02-04"},{"lineNumber":252,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":253,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"Hello! I\u0027m Asuka\\nWhat can I do for you?\");","lastModifiedDate":"2024-02-04"},{"lineNumber":254,"author":{"gitId":"Luo-Z-Y"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2024-02-04"},{"lineNumber":255,"author":{"gitId":"Luo-Z-Y"},"content":" }","lastModifiedDate":"2024-01-26"},{"lineNumber":256,"author":{"gitId":"Luo-Z-Y"},"content":"}","lastModifiedDate":"2024-01-26"}],"authorContributionMap":{"Luo-Z-Y":256}}] diff --git a/Luo-Z-Y_ip_master/commits.json b/Luo-Z-Y_ip_master/commits.json index 43b6683c..2e5a8bc3 100644 --- a/Luo-Z-Y_ip_master/commits.json +++ b/Luo-Z-Y_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"Luo-Z-Y":[{"date":"2024-01-26","commitResults":[{"hash":"7bf219233887cfc3c633b739141d41ec10e598af","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":10}}}]},{"date":"2024-01-29","commitResults":[{"hash":"6ab36d2ef74c288881807aa018df174dd40374b6","isMergeCommit":false,"messageTitle":"Level-1","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":0}}}]},{"date":"2024-01-30","commitResults":[{"hash":"ec4591d8cce5be30c639a8677496659d1c4c96bb","isMergeCommit":false,"messageTitle":"Level-2","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":2}}},{"hash":"5548c0e98304282cff48e23ac2e34fb6e8a71841","isMergeCommit":false,"messageTitle":"Level-3","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":121,"deletions":20}}}]}]},"authorFileTypeContributionMap":{"Luo-Z-Y":{"java":56,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"Luo-Z-Y":1849.3541},"authorDisplayNameMap":{"Luo-Z-Y":"LUO ..YANG"}} +{"authorDailyContributionsMap":{"Luo-Z-Y":[{"date":"2024-01-26","commitResults":[{"hash":"7bf219233887cfc3c633b739141d41ec10e598af","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":10}}}]},{"date":"2024-01-29","commitResults":[{"hash":"6ab36d2ef74c288881807aa018df174dd40374b6","isMergeCommit":false,"messageTitle":"Level-1","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":0}}}]},{"date":"2024-01-30","commitResults":[{"hash":"ec4591d8cce5be30c639a8677496659d1c4c96bb","isMergeCommit":false,"messageTitle":"Level-2","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":2}}},{"hash":"5548c0e98304282cff48e23ac2e34fb6e8a71841","isMergeCommit":false,"messageTitle":"Level-3","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":121,"deletions":20}}}]},{"date":"2024-02-04","commitResults":[{"hash":"81c6f12df062aa17d46e719bdf4abb24f00c7a3f","isMergeCommit":false,"messageTitle":"Level-4 wip","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":201,"deletions":80}}}]}]},"authorFileTypeContributionMap":{"Luo-Z-Y":{"java":256,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"Luo-Z-Y":5360.9336},"authorDisplayNameMap":{"Luo-Z-Y":"LUO ..YANG"}} diff --git a/archive.zip b/archive.zip index 6fc54675..c391dd68 100644 Binary files a/archive.zip and b/archive.zip differ diff --git a/pqienso_ip_master/authorship.json b/pqienso_ip_master/authorship.json index 8d809d35..ead13749 100644 --- a/pqienso_ip_master/authorship.json +++ b/pqienso_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/Bean.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-01-29"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":"import java.util.Arrays;","lastModifiedDate":"2024-01-29"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"public class Bean {","lastModifiedDate":"2024-01-26"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" private static final String SEPARATOR \u003d \" -------------------------------------------------\";","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" private static final Scanner SCANNER \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" private static void printWelcomeMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" System.out.println(\" Hello! I\u0027m Bean.\\n What can I do for you?\");","lastModifiedDate":"2024-01-29"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" private static void printTaskList(TaskList tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" System.out.println(\" These are the tasks in your list:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" System.out.println(tasks.toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":" private static void printTaskDone(Task task) {","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" System.out.print(\" Hey, looks like you\u0027re done with this task:\\n \");","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":" System.out.println(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" private static void printTaskUndone(Task task) {","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" System.out.print(\" Oops, looks like you\u0027re still not done with this:\\n \");","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":" System.out.println(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":" private static void printTaskAdded(Task task, int numTasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" System.out.println(\" Hey, I\u0027ve added:\\n \" + task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":" String singularOrPlural \u003d numTasks \u003d\u003d 1 ? \" task.\" : \" tasks.\";","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" System.out.println(\" You currently have \" + numTasks + singularOrPlural);","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" private static void printInvalidTaskNo() {","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":" System.out.println(\" Sorry, that was an invalid task number.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":39,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"pqienso"},"content":" private static void printNoValueForFields() {","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"pqienso"},"content":" System.out.println(\" Error: no value for required fields\");","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":44,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":45,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"pqienso"},"content":" private static void printNoSuchCommand() {","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"pqienso"},"content":" System.out.println(\" Sorry, I don\u0027t understand that command\");","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":50,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":51,"author":{"gitId":"pqienso"},"content":" private static void printGoodbyeMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"pqienso"},"content":" System.out.println(\" Bean will take a nap now. Bye!\");","lastModifiedDate":"2024-01-29"},{"lineNumber":53,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":54,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-26"},{"lineNumber":55,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"pqienso"},"content":" private static void processAndExecute(String line, TaskList listOfTasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"pqienso"},"content":" Parser userLine \u003d new Parser(line);","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"pqienso"},"content":" if (userLine.getCommand().equals(\"list\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"pqienso"},"content":" printTaskList(listOfTasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().startsWith(\"mark\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"pqienso"},"content":" int taskIndex \u003d Integer.parseInt(userLine.getArgument()) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"pqienso"},"content":" if (taskIndex \u003e\u003d 0 \u0026\u0026 taskIndex \u003c listOfTasks.getNumTasks()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"pqienso"},"content":" Task markedTask \u003d listOfTasks.markTask(taskIndex, true);","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"pqienso"},"content":" printTaskDone(markedTask);","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"pqienso"},"content":" printInvalidTaskNo();","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().startsWith(\"unmark\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"pqienso"},"content":" int taskIndex \u003d Integer.parseInt(userLine.getArgument()) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"pqienso"},"content":" if (taskIndex \u003e\u003d 0 \u0026\u0026 taskIndex \u003c listOfTasks.getNumTasks()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":73,"author":{"gitId":"pqienso"},"content":" Task unmarkedTask \u003d listOfTasks.markTask(taskIndex, false);","lastModifiedDate":"2024-02-04"},{"lineNumber":74,"author":{"gitId":"pqienso"},"content":" printTaskUndone(unmarkedTask);","lastModifiedDate":"2024-02-04"},{"lineNumber":75,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"pqienso"},"content":" printInvalidTaskNo();","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().equals(\"todo\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"pqienso"},"content":" String description \u003d userLine.getArgument();","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"pqienso"},"content":" if (description.isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"pqienso"},"content":" printNoValueForFields();","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":84,"author":{"gitId":"pqienso"},"content":" Task newTask \u003d listOfTasks.addTask(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"pqienso"},"content":" printTaskAdded(newTask, listOfTasks.getNumTasks());","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":87,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":88,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().equals(\"deadline\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":89,"author":{"gitId":"pqienso"},"content":" String description \u003d userLine.getArgument();","lastModifiedDate":"2024-02-03"},{"lineNumber":90,"author":{"gitId":"pqienso"},"content":" String by \u003d userLine.getValue(\"by\");","lastModifiedDate":"2024-02-03"},{"lineNumber":91,"author":{"gitId":"pqienso"},"content":" if (by.isEmpty() || description.isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":92,"author":{"gitId":"pqienso"},"content":" printNoValueForFields();","lastModifiedDate":"2024-02-03"},{"lineNumber":93,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":94,"author":{"gitId":"pqienso"},"content":" Task newTask \u003d listOfTasks.addTask(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":95,"author":{"gitId":"pqienso"},"content":" printTaskAdded(newTask, listOfTasks.getNumTasks());","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":97,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":98,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().equals(\"event\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":99,"author":{"gitId":"pqienso"},"content":" String description \u003d userLine.getArgument();","lastModifiedDate":"2024-02-03"},{"lineNumber":100,"author":{"gitId":"pqienso"},"content":" String start \u003d userLine.getValue(\"start\");","lastModifiedDate":"2024-02-03"},{"lineNumber":101,"author":{"gitId":"pqienso"},"content":" String end \u003d userLine.getValue(\"end\");","lastModifiedDate":"2024-02-03"},{"lineNumber":102,"author":{"gitId":"pqienso"},"content":" if (start.isEmpty() || end.isEmpty() || description.isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":103,"author":{"gitId":"pqienso"},"content":" printNoValueForFields();","lastModifiedDate":"2024-02-03"},{"lineNumber":104,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":105,"author":{"gitId":"pqienso"},"content":" Task newTask \u003d listOfTasks.addTask(description, start, end);","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"pqienso"},"content":" printTaskAdded(newTask, listOfTasks.getNumTasks());","lastModifiedDate":"2024-02-04"},{"lineNumber":107,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":108,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":109,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":110,"author":{"gitId":"pqienso"},"content":" printNoSuchCommand();","lastModifiedDate":"2024-02-03"},{"lineNumber":111,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":112,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":113,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":114,"author":{"gitId":"pqienso"},"content":" private static String getUserInput() {","lastModifiedDate":"2024-02-03"},{"lineNumber":115,"author":{"gitId":"pqienso"},"content":" String inputLine \u003d SCANNER.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":116,"author":{"gitId":"pqienso"},"content":" // silently consume all blank and comment lines","lastModifiedDate":"2024-02-03"},{"lineNumber":117,"author":{"gitId":"pqienso"},"content":" while (inputLine.trim().isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":118,"author":{"gitId":"pqienso"},"content":" inputLine \u003d SCANNER.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":119,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":120,"author":{"gitId":"pqienso"},"content":" return inputLine;","lastModifiedDate":"2024-02-03"},{"lineNumber":121,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":122,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":123,"author":{"gitId":"pqienso"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-02-03"},{"lineNumber":124,"author":{"gitId":"pqienso"},"content":" printWelcomeMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":125,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":126,"author":{"gitId":"pqienso"},"content":" String line \u003d getUserInput();","lastModifiedDate":"2024-02-03"},{"lineNumber":127,"author":{"gitId":"pqienso"},"content":" TaskList listOfTasks \u003d new TaskList();","lastModifiedDate":"2024-02-04"},{"lineNumber":128,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":129,"author":{"gitId":"pqienso"},"content":" while (!line.equals(\"bye\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":130,"author":{"gitId":"pqienso"},"content":" processAndExecute(line, listOfTasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":131,"author":{"gitId":"pqienso"},"content":" line \u003d getUserInput();","lastModifiedDate":"2024-02-03"},{"lineNumber":132,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":133,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":134,"author":{"gitId":"pqienso"},"content":" printGoodbyeMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":135,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":136,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-01-26"}],"authorContributionMap":{"pqienso":136}},{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" private String by;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" this.by \u003d by;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" return \"[D]\" + super.toString() + \" (by: \" + this.by + \")\";","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" public void setBy(String by) {","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" this.by \u003d by;","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":17}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Event extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" private final String start;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" private final String end;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" public Event(String description, String start, String end) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" this.start \u003d start;","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" this.end \u003d end;","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" return \"[E]\" + super.toString() + \" (from: \" + start + \" to: \" + end + \")\";","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":15}},{"path":"src/main/java/Parser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Parser {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" private final String[] fieldValuePairs;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" private final String command;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" public String getValue(String field) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" for (String item : fieldValuePairs) {","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" if (item.startsWith(field) \u0026\u0026 item.contains(\" \")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSpace \u003d item.indexOf(\" \");","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" return item.substring(indexOfFirstSpace + 1).trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" return \"\";","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" public String getArgument() {","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSpace \u003d command.indexOf(\" \");","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":" return command.substring(indexOfFirstSpace + 1).trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":" public String getCommand() {","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSpace \u003d command.indexOf(\" \");","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" if (indexOfFirstSpace !\u003d -1) {","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" return command.substring(0, indexOfFirstSpace).trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" return command;","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" public Parser(String line) {","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSlash \u003d line.indexOf(\u0027/\u0027);","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" if (indexOfFirstSlash !\u003d -1) {","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":" command \u003d line.substring(0, indexOfFirstSlash);","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" fieldValuePairs \u003d line.substring(indexOfFirstSlash + 1).split(\"/\");","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":" for (String item : fieldValuePairs) {","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" item \u003d item.trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"pqienso"},"content":" command \u003d line.trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"pqienso"},"content":" fieldValuePairs \u003d new String[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":43}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Task {","lastModifiedDate":"2024-01-29"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" protected String description;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" public Task(String description) {","lastModifiedDate":"2024-01-29"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-29"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-29"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" String checkBox \u003d \"[ ] \";","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" if (isDone) {","lastModifiedDate":"2024-01-29"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" checkBox \u003d \"[X] \";","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" return checkBox + description;","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" public String getDescription() {","lastModifiedDate":"2024-01-29"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":" return description;","lastModifiedDate":"2024-01-29"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":" public void setDescription(String description) {","lastModifiedDate":"2024-01-29"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-29"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" public boolean checkDone() {","lastModifiedDate":"2024-02-02"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" return isDone;","lastModifiedDate":"2024-01-29"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" public void setDone() {","lastModifiedDate":"2024-01-29"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":" isDone \u003d true;","lastModifiedDate":"2024-01-29"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" public void setUndone() {","lastModifiedDate":"2024-01-29"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":" isDone \u003d false;","lastModifiedDate":"2024-01-29"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-01-29"}],"authorContributionMap":{"pqienso":37}},{"path":"src/main/java/TaskList.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"import java.util.Arrays;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":"public class TaskList {","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":" private Task[] tasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" private int numTasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" private int numTasksDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" public int getNumTasks() {","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" return numTasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" public Task[] getTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" return Arrays.copyOf(tasks, numTasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" public int getNumTasksDone() {","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":" return numTasksDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":" public Task addTask(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":" tasks[numTasks] \u003d new ToDo(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":" numTasks +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" return tasks[numTasks - 1];","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" public Task addTask(String description, String by) {","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" tasks[numTasks] \u003d new Deadline(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":" numTasks +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":" return tasks[numTasks - 1];","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" public Task addTask(String description, String start, String end) {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":" tasks[numTasks] \u003d new Event(description, start, end);","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" numTasks +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":" return tasks[numTasks - 1];","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"pqienso"},"content":" public Task markTask(int index, boolean isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"pqienso"},"content":" if(index \u003e\u003d numTasks){","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"pqienso"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"pqienso"},"content":" else if (isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"pqienso"},"content":" tasks[index].setDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"pqienso"},"content":" numTasksDone +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"pqienso"},"content":" else {","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"pqienso"},"content":" tasks[index].setUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"pqienso"},"content":" numTasksDone -\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"pqienso"},"content":" return tasks[index];","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"pqienso"},"content":" public TaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"pqienso"},"content":" tasks \u003d new Task[100];","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"pqienso"},"content":" numTasks \u003d 0;","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"pqienso"},"content":" numTasksDone \u003d 0;","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"pqienso"},"content":" public String toString(){","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"pqienso"},"content":" StringBuilder result \u003d new StringBuilder();","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"pqienso"},"content":" for (int i \u003d 0; i \u003c numTasks; i +\u003d 1) {","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"pqienso"},"content":" result.append(\" \").append(i+1).append(\u0027.\u0027).append(tasks[i].toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"pqienso"},"content":" if (i !\u003d numTasks - 1) {","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"pqienso"},"content":" result.append(\u0027\\n\u0027);","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"pqienso"},"content":" return result.toString();","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-04"}],"authorContributionMap":{"pqienso":69}},{"path":"src/main/java/ToDo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class ToDo extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" public ToDo(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" return \"[T]\" + super.toString();","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":11}}] +[{"path":"src/main/java/Bean.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-01-29"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":"import java.util.Arrays;","lastModifiedDate":"2024-01-29"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"public class Bean {","lastModifiedDate":"2024-01-26"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" public static final String MESSAGE_TASK_UNDONE \u003d \" Oops, looks like you\u0027re still not done with this:\\n \";","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" public static final String MESSAGE_TASK_ADDED \u003d \" Hey, I\u0027ve added:\\n \";","lastModifiedDate":"2024-02-04"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" private static final String SEPARATOR \u003d \" -------------------------------------------------\";","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" public static final String MESSAGE_WELCOME \u003d \" Hello! I\u0027m Bean.\\n What can I do for you?\";","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" public static final String MESSAGE_LIST_HEADER \u003d \" These are the tasks in your list:\";","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" public static final String MESSAGE_TASK_DONE \u003d \" Hey, looks like you\u0027re done with this task:\\n \";","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" public static final String MESSAGE_CURRENT_NUMTASKS \u003d \" You currently have \";","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" public static final String ERROR_INVALID_TASK_NUMBER \u003d \" Sorry, that was an invalid task number.\";","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" public static final String ERROR_NO_VALUE_FOR_REQUIRED_FIELDS \u003d \" Error: no value for required fields\";","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" public static final String ERROR_NO_SUCH_COMMAND \u003d \" Sorry, I don\u0027t understand that command\";","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" public static final String MESSAGE_GOODBYE \u003d \" Bean will take a nap now. Bye!\";","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" private static final Scanner SCANNER \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" private static void printWelcomeMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":" System.out.println(MESSAGE_WELCOME);","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" private static void printTaskList(TaskList tasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" System.out.println(MESSAGE_LIST_HEADER);","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":" System.out.println(tasks.toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":" private static void printTaskDone(Task task) {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":" System.out.print(MESSAGE_TASK_DONE);","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" System.out.println(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" private static void printTaskUndone(Task task) {","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":" System.out.print(MESSAGE_TASK_UNDONE);","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" System.out.println(task.toString());","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":38,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":39,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"pqienso"},"content":" private static void printTaskAdded(Task task, int numTasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"pqienso"},"content":" System.out.println(MESSAGE_TASK_ADDED + task.toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"pqienso"},"content":" String singularOrPlural \u003d numTasks \u003d\u003d 1 ? \" task.\" : \" tasks.\";","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"pqienso"},"content":" System.out.println(MESSAGE_CURRENT_NUMTASKS + numTasks + singularOrPlural);","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":45,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":46,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"pqienso"},"content":" private static void printInvalidTaskNo() {","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"pqienso"},"content":" System.out.println(ERROR_INVALID_TASK_NUMBER);","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":50,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"pqienso"},"content":" private static void printNoValueForFields() {","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"pqienso"},"content":" System.out.println(ERROR_NO_VALUE_FOR_REQUIRED_FIELDS);","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":55,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":56,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"pqienso"},"content":" private static void printNoSuchCommand() {","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"pqienso"},"content":" System.out.println(ERROR_NO_SUCH_COMMAND);","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":61,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":62,"author":{"gitId":"pqienso"},"content":" private static void printGoodbyeMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"pqienso"},"content":" System.out.println(MESSAGE_GOODBYE);","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"pqienso"},"content":" System.out.println(SEPARATOR);","lastModifiedDate":"2024-02-02"},{"lineNumber":65,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-26"},{"lineNumber":66,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"pqienso"},"content":" private static void processAndExecute(String line, TaskList listOfTasks) {","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"pqienso"},"content":" Parser userLine \u003d new Parser(line);","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"pqienso"},"content":" if (userLine.getCommand().equals(\"list\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"pqienso"},"content":" printTaskList(listOfTasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":71,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().startsWith(\"mark\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"pqienso"},"content":" int taskIndex \u003d Integer.parseInt(userLine.getArgument()) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"pqienso"},"content":" if (taskIndex \u003e\u003d 0 \u0026\u0026 taskIndex \u003c listOfTasks.getNumTasks()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":75,"author":{"gitId":"pqienso"},"content":" Task markedTask \u003d listOfTasks.markTask(taskIndex, true);","lastModifiedDate":"2024-02-04"},{"lineNumber":76,"author":{"gitId":"pqienso"},"content":" printTaskDone(markedTask);","lastModifiedDate":"2024-02-04"},{"lineNumber":77,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"pqienso"},"content":" printInvalidTaskNo();","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":81,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().startsWith(\"unmark\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"pqienso"},"content":" int taskIndex \u003d Integer.parseInt(userLine.getArgument()) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"pqienso"},"content":" if (taskIndex \u003e\u003d 0 \u0026\u0026 taskIndex \u003c listOfTasks.getNumTasks()) {","lastModifiedDate":"2024-02-04"},{"lineNumber":84,"author":{"gitId":"pqienso"},"content":" Task unmarkedTask \u003d listOfTasks.markTask(taskIndex, false);","lastModifiedDate":"2024-02-04"},{"lineNumber":85,"author":{"gitId":"pqienso"},"content":" printTaskUndone(unmarkedTask);","lastModifiedDate":"2024-02-04"},{"lineNumber":86,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":87,"author":{"gitId":"pqienso"},"content":" printInvalidTaskNo();","lastModifiedDate":"2024-02-03"},{"lineNumber":88,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":89,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":90,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().equals(\"todo\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":91,"author":{"gitId":"pqienso"},"content":" String description \u003d userLine.getArgument();","lastModifiedDate":"2024-02-03"},{"lineNumber":92,"author":{"gitId":"pqienso"},"content":" if (description.isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":93,"author":{"gitId":"pqienso"},"content":" printNoValueForFields();","lastModifiedDate":"2024-02-03"},{"lineNumber":94,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":95,"author":{"gitId":"pqienso"},"content":" Task newTask \u003d listOfTasks.addTask(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":96,"author":{"gitId":"pqienso"},"content":" printTaskAdded(newTask, listOfTasks.getNumTasks());","lastModifiedDate":"2024-02-04"},{"lineNumber":97,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":98,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":99,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().equals(\"deadline\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":100,"author":{"gitId":"pqienso"},"content":" String description \u003d userLine.getArgument();","lastModifiedDate":"2024-02-03"},{"lineNumber":101,"author":{"gitId":"pqienso"},"content":" String by \u003d userLine.getValue(\"by\");","lastModifiedDate":"2024-02-03"},{"lineNumber":102,"author":{"gitId":"pqienso"},"content":" if (by.isEmpty() || description.isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":103,"author":{"gitId":"pqienso"},"content":" printNoValueForFields();","lastModifiedDate":"2024-02-03"},{"lineNumber":104,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":105,"author":{"gitId":"pqienso"},"content":" Task newTask \u003d listOfTasks.addTask(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":106,"author":{"gitId":"pqienso"},"content":" printTaskAdded(newTask, listOfTasks.getNumTasks());","lastModifiedDate":"2024-02-04"},{"lineNumber":107,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":108,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":109,"author":{"gitId":"pqienso"},"content":" } else if (userLine.getCommand().equals(\"event\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":110,"author":{"gitId":"pqienso"},"content":" String description \u003d userLine.getArgument();","lastModifiedDate":"2024-02-03"},{"lineNumber":111,"author":{"gitId":"pqienso"},"content":" String start \u003d userLine.getValue(\"start\");","lastModifiedDate":"2024-02-03"},{"lineNumber":112,"author":{"gitId":"pqienso"},"content":" String end \u003d userLine.getValue(\"end\");","lastModifiedDate":"2024-02-03"},{"lineNumber":113,"author":{"gitId":"pqienso"},"content":" if (start.isEmpty() || end.isEmpty() || description.isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":114,"author":{"gitId":"pqienso"},"content":" printNoValueForFields();","lastModifiedDate":"2024-02-03"},{"lineNumber":115,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":116,"author":{"gitId":"pqienso"},"content":" Task newTask \u003d listOfTasks.addTask(description, start, end);","lastModifiedDate":"2024-02-04"},{"lineNumber":117,"author":{"gitId":"pqienso"},"content":" printTaskAdded(newTask, listOfTasks.getNumTasks());","lastModifiedDate":"2024-02-04"},{"lineNumber":118,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":119,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":120,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":121,"author":{"gitId":"pqienso"},"content":" printNoSuchCommand();","lastModifiedDate":"2024-02-03"},{"lineNumber":122,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":123,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":124,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":125,"author":{"gitId":"pqienso"},"content":" private static String getUserInput() {","lastModifiedDate":"2024-02-03"},{"lineNumber":126,"author":{"gitId":"pqienso"},"content":" String inputLine \u003d SCANNER.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":127,"author":{"gitId":"pqienso"},"content":" // silently consume all blank and comment lines","lastModifiedDate":"2024-02-03"},{"lineNumber":128,"author":{"gitId":"pqienso"},"content":" while (inputLine.trim().isEmpty()) {","lastModifiedDate":"2024-02-03"},{"lineNumber":129,"author":{"gitId":"pqienso"},"content":" inputLine \u003d SCANNER.nextLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":130,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":131,"author":{"gitId":"pqienso"},"content":" return inputLine;","lastModifiedDate":"2024-02-03"},{"lineNumber":132,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":133,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":134,"author":{"gitId":"pqienso"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-02-03"},{"lineNumber":135,"author":{"gitId":"pqienso"},"content":" printWelcomeMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":136,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":137,"author":{"gitId":"pqienso"},"content":" String line \u003d getUserInput();","lastModifiedDate":"2024-02-03"},{"lineNumber":138,"author":{"gitId":"pqienso"},"content":" TaskList listOfTasks \u003d new TaskList();","lastModifiedDate":"2024-02-04"},{"lineNumber":139,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":140,"author":{"gitId":"pqienso"},"content":" while (!line.equals(\"bye\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":141,"author":{"gitId":"pqienso"},"content":" processAndExecute(line, listOfTasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":142,"author":{"gitId":"pqienso"},"content":" line \u003d getUserInput();","lastModifiedDate":"2024-02-03"},{"lineNumber":143,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":144,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":145,"author":{"gitId":"pqienso"},"content":" printGoodbyeMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":146,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":147,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-01-26"}],"authorContributionMap":{"pqienso":147}},{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" private String by;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" this.by \u003d by;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" return \"[D]\" + super.toString() + \" (by: \" + this.by + \")\";","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" public void setBy(String by) {","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" this.by \u003d by;","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":17}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Event extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" private final String start;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" private final String end;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" public Event(String description, String start, String end) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" this.start \u003d start;","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" this.end \u003d end;","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" return \"[E]\" + super.toString() + \" (from: \" + start + \" to: \" + end + \")\";","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":15}},{"path":"src/main/java/Parser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Parser {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" private final String[] fieldValuePairs;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" private final String command;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" public String getValue(String field) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" for (String item : fieldValuePairs) {","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" if (item.startsWith(field) \u0026\u0026 item.contains(\" \")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSpace \u003d item.indexOf(\" \");","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" return item.substring(indexOfFirstSpace + 1).trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" return \"\";","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" public String getArgument() {","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSpace \u003d command.indexOf(\" \");","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":" return command.substring(indexOfFirstSpace + 1).trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":" public String getCommand() {","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSpace \u003d command.indexOf(\" \");","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" if (indexOfFirstSpace !\u003d -1) {","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" return command.substring(0, indexOfFirstSpace).trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" return command;","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" public Parser(String line) {","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":" int indexOfFirstSlash \u003d line.indexOf(\u0027/\u0027);","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" if (indexOfFirstSlash !\u003d -1) {","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":" command \u003d line.substring(0, indexOfFirstSlash);","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" fieldValuePairs \u003d line.substring(indexOfFirstSlash + 1).split(\"/\");","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":" for (String item : fieldValuePairs) {","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" item \u003d item.trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"pqienso"},"content":" } else {","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"pqienso"},"content":" command \u003d line.trim();","lastModifiedDate":"2024-02-03"},{"lineNumber":40,"author":{"gitId":"pqienso"},"content":" fieldValuePairs \u003d new String[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":43}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class Task {","lastModifiedDate":"2024-01-29"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" protected String description;","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" public Task(String description) {","lastModifiedDate":"2024-01-29"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-29"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-29"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":" String checkBox \u003d \"[ ] \";","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" if (isDone) {","lastModifiedDate":"2024-01-29"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" checkBox \u003d \"[X] \";","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":" return checkBox + description;","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" public String getDescription() {","lastModifiedDate":"2024-01-29"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":" return description;","lastModifiedDate":"2024-01-29"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":" public void setDescription(String description) {","lastModifiedDate":"2024-01-29"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-29"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" public boolean checkDone() {","lastModifiedDate":"2024-02-02"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" return isDone;","lastModifiedDate":"2024-01-29"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" public void setDone() {","lastModifiedDate":"2024-01-29"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":" isDone \u003d true;","lastModifiedDate":"2024-01-29"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-01-29"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" public void setUndone() {","lastModifiedDate":"2024-01-29"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":" isDone \u003d false;","lastModifiedDate":"2024-01-29"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-01-29"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-01-29"}],"authorContributionMap":{"pqienso":37}},{"path":"src/main/java/TaskList.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"import java.util.Arrays;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":"public class TaskList {","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":" private Task[] tasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":" private int numTasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" private int numTasksDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" public int getNumTasks() {","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" return numTasks;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"pqienso"},"content":" public Task[] getTaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"pqienso"},"content":" return Arrays.copyOf(tasks, numTasks);","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"pqienso"},"content":" public int getNumTasksDone() {","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"pqienso"},"content":" return numTasksDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"pqienso"},"content":" public Task addTask(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"pqienso"},"content":" tasks[numTasks] \u003d new ToDo(description);","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"pqienso"},"content":" numTasks +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"pqienso"},"content":" return tasks[numTasks - 1];","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"pqienso"},"content":" public Task addTask(String description, String by) {","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"pqienso"},"content":" tasks[numTasks] \u003d new Deadline(description, by);","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"pqienso"},"content":" numTasks +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":29,"author":{"gitId":"pqienso"},"content":" return tasks[numTasks - 1];","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":31,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":32,"author":{"gitId":"pqienso"},"content":" public Task addTask(String description, String start, String end) {","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"pqienso"},"content":" tasks[numTasks] \u003d new Event(description, start, end);","lastModifiedDate":"2024-02-04"},{"lineNumber":34,"author":{"gitId":"pqienso"},"content":" numTasks +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":35,"author":{"gitId":"pqienso"},"content":" return tasks[numTasks - 1];","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"pqienso"},"content":" public Task markTask(int index, boolean isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"pqienso"},"content":" if(index \u003e\u003d numTasks){","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"pqienso"},"content":" return null;","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"pqienso"},"content":" else if (isDone) {","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"pqienso"},"content":" tasks[index].setDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"pqienso"},"content":" numTasksDone +\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"pqienso"},"content":" else {","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"pqienso"},"content":" tasks[index].setUndone();","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"pqienso"},"content":" numTasksDone -\u003d 1;","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"pqienso"},"content":" return tasks[index];","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"pqienso"},"content":" public TaskList() {","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"pqienso"},"content":" tasks \u003d new Task[100];","lastModifiedDate":"2024-02-04"},{"lineNumber":55,"author":{"gitId":"pqienso"},"content":" numTasks \u003d 0;","lastModifiedDate":"2024-02-04"},{"lineNumber":56,"author":{"gitId":"pqienso"},"content":" numTasksDone \u003d 0;","lastModifiedDate":"2024-02-04"},{"lineNumber":57,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":58,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":59,"author":{"gitId":"pqienso"},"content":" public String toString(){","lastModifiedDate":"2024-02-04"},{"lineNumber":60,"author":{"gitId":"pqienso"},"content":" StringBuilder result \u003d new StringBuilder();","lastModifiedDate":"2024-02-04"},{"lineNumber":61,"author":{"gitId":"pqienso"},"content":" for (int i \u003d 0; i \u003c numTasks; i +\u003d 1) {","lastModifiedDate":"2024-02-04"},{"lineNumber":62,"author":{"gitId":"pqienso"},"content":" result.append(\" \").append(i+1).append(\u0027.\u0027).append(tasks[i].toString());","lastModifiedDate":"2024-02-04"},{"lineNumber":63,"author":{"gitId":"pqienso"},"content":" if (i !\u003d numTasks - 1) {","lastModifiedDate":"2024-02-04"},{"lineNumber":64,"author":{"gitId":"pqienso"},"content":" result.append(\u0027\\n\u0027);","lastModifiedDate":"2024-02-04"},{"lineNumber":65,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":66,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":67,"author":{"gitId":"pqienso"},"content":" return result.toString();","lastModifiedDate":"2024-02-04"},{"lineNumber":68,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":69,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-04"}],"authorContributionMap":{"pqienso":69}},{"path":"src/main/java/ToDo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"pqienso"},"content":"public class ToDo extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"pqienso"},"content":" public ToDo(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"pqienso"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"pqienso"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"pqienso"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"pqienso"},"content":" return \"[T]\" + super.toString();","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"pqienso"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"pqienso"},"content":"}","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"pqienso"},"content":"","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"pqienso":11}}] diff --git a/pqienso_ip_master/commits.json b/pqienso_ip_master/commits.json index bdcb4c9e..5105cde7 100644 --- a/pqienso_ip_master/commits.json +++ b/pqienso_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"pqienso":[{"date":"2024-01-26","commitResults":[{"hash":"3131c873d539cee2aeba3c31f7486306a8b88236","isMergeCommit":false,"messageTitle":"Rename to bean; add skeletal code","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":9,"deletions":10}}}]},{"date":"2024-01-29","commitResults":[{"hash":"c7dc7e35bac55e095b9b158d12d9d96616df5dbd","isMergeCommit":false,"messageTitle":"Add echo functionality","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":5}}},{"hash":"507f53a5192ed56beb0a190bd494dbaf8573ff07","isMergeCommit":false,"messageTitle":"Add list functionality","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":24,"deletions":2}}},{"hash":"32de0a9bfe1787bf59b4b1de64d0c5cf42b3f55c","isMergeCommit":false,"messageTitle":"Refactor bean to use task class","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":39,"deletions":5}}},{"hash":"2e4881febe07d608dc2474b8b18478c61dbed801","isMergeCommit":false,"messageTitle":"Add checklist functionality","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":27,"deletions":3}}},{"hash":"adbe00fa8dd73b0163b92fb722855712391012bc","isMergeCommit":false,"messageTitle":"Add line separators after each command","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":9,"deletions":5}}}]},{"date":"2024-02-02","commitResults":[{"hash":"06054e1a9ae1b47b77337cfd85fe6f9b3e9d9758","isMergeCommit":false,"messageTitle":"Change style to follow standard","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":23}}}]},{"date":"2024-02-03","commitResults":[{"hash":"8eccd8df6d24667a8b54099536e193772f14948d","isMergeCommit":false,"messageTitle":"Add Parser, ToDo, Event, Deadline classes","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":223,"deletions":46}}},{"hash":"ac85c6a717763bdfd2f3dfa96563576b5657ed02","isMergeCommit":false,"messageTitle":"Reformat code","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":21}}}]},{"date":"2024-02-04","commitResults":[{"hash":"1d90f83541091f006b79c34c9046adee01af83d8","isMergeCommit":false,"messageTitle":"Refactor Bean to use TaskList class, add task counter","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":93,"deletions":34}}}]}]},"authorFileTypeContributionMap":{"pqienso":{"java":328,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"pqienso":6292.734},"authorDisplayNameMap":{"pqienso":"LIM ..U AN"}} +{"authorDailyContributionsMap":{"pqienso":[{"date":"2024-01-26","commitResults":[{"hash":"3131c873d539cee2aeba3c31f7486306a8b88236","isMergeCommit":false,"messageTitle":"Rename to bean; add skeletal code","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":9,"deletions":10}}}]},{"date":"2024-01-29","commitResults":[{"hash":"c7dc7e35bac55e095b9b158d12d9d96616df5dbd","isMergeCommit":false,"messageTitle":"Add echo functionality","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":5}}},{"hash":"507f53a5192ed56beb0a190bd494dbaf8573ff07","isMergeCommit":false,"messageTitle":"Add list functionality","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":24,"deletions":2}}},{"hash":"32de0a9bfe1787bf59b4b1de64d0c5cf42b3f55c","isMergeCommit":false,"messageTitle":"Refactor bean to use task class","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":39,"deletions":5}}},{"hash":"2e4881febe07d608dc2474b8b18478c61dbed801","isMergeCommit":false,"messageTitle":"Add checklist functionality","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":27,"deletions":3}}},{"hash":"adbe00fa8dd73b0163b92fb722855712391012bc","isMergeCommit":false,"messageTitle":"Add line separators after each command","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":9,"deletions":5}}}]},{"date":"2024-02-02","commitResults":[{"hash":"06054e1a9ae1b47b77337cfd85fe6f9b3e9d9758","isMergeCommit":false,"messageTitle":"Change style to follow standard","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":23}}}]},{"date":"2024-02-03","commitResults":[{"hash":"8eccd8df6d24667a8b54099536e193772f14948d","isMergeCommit":false,"messageTitle":"Add Parser, ToDo, Event, Deadline classes","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":223,"deletions":46}}},{"hash":"ac85c6a717763bdfd2f3dfa96563576b5657ed02","isMergeCommit":false,"messageTitle":"Reformat code","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":21}}}]},{"date":"2024-02-04","commitResults":[{"hash":"1d90f83541091f006b79c34c9046adee01af83d8","isMergeCommit":false,"messageTitle":"Refactor Bean to use TaskList class, add task counter","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":93,"deletions":34}}},{"hash":"961f872874ce1c7348f838f10701d5b3d09f6c01","isMergeCommit":false,"messageTitle":"Introduce constants","messageBody":"","tags":["A-CodeQuality"],"fileTypesAndContributionMap":{"java":{"insertions":21,"deletions":10}}}]}]},"authorFileTypeContributionMap":{"pqienso":{"java":339,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"pqienso":6674.8164},"authorDisplayNameMap":{"pqienso":"LIM ..U AN"}} diff --git a/reposense-logs/reposense.log.0 b/reposense-logs/reposense.log.0 index 9c0d856d..252ab2fc 100644 --- a/reposense-logs/reposense.log.0 +++ b/reposense-logs/reposense.log.0 @@ -1,30 +1,30 @@ -Feb 04, 2024 4:18:21 AM reposense.system.LogsManager addFileHandler +Feb 04, 2024 4:27:18 AM reposense.system.LogsManager addFileHandler INFO: Log temp folder has been successfully created -Feb 04, 2024 4:18:21 AM reposense.parser.CsvParser validateHeader +Feb 04, 2024 4:27:18 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, repo-config.csv, and recognized columns: Ignore Standalone Config, Repository's Location, Branch, Shallow Cloning, File formats, Ignore Glob List, Ignore Authors List, Find Previous Authors, Ignore Commits List -Feb 04, 2024 4:18:22 AM reposense.parser.CsvParser validateHeader +Feb 04, 2024 4:27:18 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, author-config.csv, and recognized columns: Author's Emails, Repository's Location, Author's GitHub ID, Branch, Author's Display Name, Ignore Glob List, Author's Git Author Name -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias v4vern found. The alias will belong to the last author - V4Vern -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias zhengwinter found. The alias will belong to the last author - Zhengwinter -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ngxzs found. The alias will belong to the last author - NGXZS -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias e0958902 found. The alias will belong to the last author - e0958902 -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias edmundtangg found. The alias will belong to the last author - EdmundTangg -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias v4vern found. The alias will belong to the last author - V4Vern -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias zhengwinter found. The alias will belong to the last author - Zhengwinter -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ngxzs found. The alias will belong to the last author - NGXZS -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias e0958902 found. The alias will belong to the last author - e0958902 -Feb 04, 2024 4:18:22 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 04, 2024 4:27:18 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias edmundtangg found. The alias will belong to the last author - EdmundTangg -Feb 04, 2024 4:18:22 AM reposense.git.GitConfig getGlobalGitLfsConfig +Feb 04, 2024 4:27:18 AM reposense.git.GitConfig getGlobalGitLfsConfig WARNING: Could not get global git lfs config java.lang.RuntimeException: reposense.system.CommandRunnerProcessException: Error returned from command git config --global --list on path . : fatal: unable to read config file '/home/runner/.gitconfig': No such file or directory @@ -40,71 +40,71 @@ fatal: unable to read config file '/home/runner/.gitconfig': No such file or dir at reposense.system.CommandRunner.runCommand(CommandRunner.java:21) ... 3 more -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Xb990219/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Elyovs/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Xb990219/ip.git... +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/joshualeejunyi/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/rouvinerh/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Elyovs/ip.git to complete... +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/joshualeejunyi/ip.git to complete... +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/rouvinerh/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Xb990219/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/joshualeejunyi/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Elyovs/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joshualeejunyi/ip.git completed! -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/rouvinerh/ip.git completed! -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ThawTunZan/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [1/189] Analyzing https://github.com/rouvinerh/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ThawTunZan/ip.git to complete... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Xb990219/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SemiColonKen/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [2/189] Analyzing https://github.com/Xb990219/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joshualeejunyi/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Elyovs/ip.git completed! -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Xb990219/ip.git completed! -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ThawTunZan/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SemiColonKen/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [2/189] Analyzing https://github.com/rouvinerh/ip.git (master)... -Feb 04, 2024 4:18:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [1/189] Analyzing https://github.com/joshualeejunyi/ip.git (master)... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wallywallywally/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [3/189] Analyzing https://github.com/Elyovs/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/anneleong/ip.git... -Feb 04, 2024 4:18:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [3/189] Analyzing https://github.com/Xb990219/ip.git (master)... -Feb 04, 2024 4:18:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [4/189] Analyzing https://github.com/Elyovs/ip.git (master)... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wallywallywally/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [4/189] Analyzing https://github.com/joshualeejunyi/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/anneleong/ip.git to complete... -Feb 04, 2024 4:18:22 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wallywallywally/ip.git to complete... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/joshualeejunyi/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/rouvinerh/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Xb990219/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Elyovs/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/joshualeejunyi/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/rouvinerh/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Elyovs/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/joshualeejunyi/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/joshualeejunyi/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Xb990219/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Xb990219/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "SemiColonKen/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/SemiColonKen/ip.git' 'repos/SemiColonKen_ip/ip_bare' on path . : Cloning into bare repository 'repos/SemiColonKen_ip/ip_bare'... @@ -120,485 +120,565 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/BenjoBurger/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/BenjoBurger/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Elyovs/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rouvinerh/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/joshualeejunyi/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Elyovs/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ThawTunZan/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Elyovs/ip.git (master) completed! +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/joshualeejunyi/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rouvinerh/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/rouvinerh/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/anneleong/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ThawTunZan/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rouvinerh/ip.git (master) completed! +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/joshualeejunyi/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/joshualeejunyi/ip.git (master) completed! +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wallywallywally/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [5/189] Analyzing https://github.com/ThawTunZan/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/rismm/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Xb990219/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/isaaceng7/ip.git... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/joshualeejunyi/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/isaaceng7/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [6/189] Analyzing https://github.com/wallywallywally/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/rismm/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/anneleong/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/isaaceng7/ip.git to complete... +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Xb990219/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cirelesna/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Elyovs/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [5/189] Analyzing https://github.com/ThawTunZan/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/joshualeejunyi/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rouvinerh/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [6/189] Analyzing https://github.com/anneleong/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [7/189] Analyzing https://github.com/anneleong/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ThawTunZan/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ThawTunZan/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Xb990219/ip.git (master) completed! +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cirelesna/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [7/189] Analyzing https://github.com/wallywallywally/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Xb990219/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/BenjoBurger/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wallywallywally/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wallywallywally/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/BenjoBurger/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [8/189] Analyzing https://github.com/BenjoBurger/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/iscyng/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ThawTunZan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ThawTunZan/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/anneleong/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/anneleong/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/iscyng/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Xb990219/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Xb990219/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [8/189] Analyzing https://github.com/BenjoBurger/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rismm/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/OKW32/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/OKW32/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/BenjoBurger/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/BenjoBurger/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ThawTunZan/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/anneleong/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/isaaceng7/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cirelesna/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zhengwinter/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/clarencepohh/ip.git... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wallywallywally/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zhengwinter/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/clarencepohh/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ThawTunZan/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ThawTunZan/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/anneleong/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wallywallywally/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/anneleong/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/anneleong/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [9/189] Analyzing https://github.com/rismm/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [10/189] Analyzing https://github.com/isaaceng7/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BenjoBurger/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wallywallywally/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wallywallywally/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [11/189] Analyzing https://github.com/cirelesna/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rismm/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BenjoBurger/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BenjoBurger/ip.git (master) completed! +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/OKW32/ip.git... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [9/189] Analyzing https://github.com/rismm/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/OKW32/ip.git to complete... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/isaaceng7/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [10/189] Analyzing https://github.com/isaaceng7/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zhengwinter/ip.git... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cirelesna/ip.git completed! +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rismm/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rismm/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/iscyng/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cirelesna/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cirelesna/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/clarencepohh/ip.git... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [11/189] Analyzing https://github.com/cirelesna/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zhengwinter/ip.git to complete... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/alvinnnnnnnnnn/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [12/189] Analyzing https://github.com/iscyng/ip.git (master)... +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/clarencepohh/ip.git to complete... +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/isaaceng7/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/isaaceng7/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BenjoBurger/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/alvinnnnnnnnnn/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rismm/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rismm/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BenjoBurger/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BenjoBurger/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [12/189] Analyzing https://github.com/iscyng/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/OKW32/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MonkeScripts/ip.git... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MonkeScripts/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/isaaceng7/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cirelesna/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cirelesna/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/iscyng/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/iscyng/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/clarencepohh/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Zhengwinter/ip.git completed! -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shawnpong/ip.git... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/isaaceng7/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cirelesna/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/itsmejr257/ip.git... -Feb 04, 2024 4:18:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rismm/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/isaaceng7/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cirelesna/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/isaaceng7/ip.git (master) completed! -Feb 04, 2024 4:18:23 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cirelesna/ip.git (master) completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rismm/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rismm/ip.git (master) completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iscyng/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/OKW32/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iscyng/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Zhengwinter/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MonkeScripts/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos INFO: [13/189] Analyzing https://github.com/OKW32/ip.git (master)... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/itsmejr257/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iscyng/ip.git (master) completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shawnpong/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [14/189] Analyzing https://github.com/Zhengwinter/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MonkeScripts/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/shawnpong/ip.git to complete... -Feb 04, 2024 4:18:23 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/clarencepohh/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/alvinnnnnnnnnn/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rismm/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/itsmejr257/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [15/189] Analyzing https://github.com/clarencepohh/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/OKW32/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/OKW32/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cirelesna/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/BryanCastorius/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cirelesna/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [14/189] Analyzing https://github.com/Zhengwinter/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [16/189] Analyzing https://github.com/alvinnnnnnnnnn/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/itsmejr257/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/BryanCastorius/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rismm/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rismm/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [15/189] Analyzing https://github.com/clarencepohh/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/MonkeScripts/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Zhengwinter/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Zhengwinter/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cyhjason29/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cyhjason29/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/clarencepohh/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/clarencepohh/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iscyng/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iscyng/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alvinnnnnnnnnn/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alvinnnnnnnnnn/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Zhengwinter/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iscyng/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [16/189] Analyzing https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itsmejr257/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shawnpong/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/clarencepohh/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Zhengwinter/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shawnpong/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Zhengwinter/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [17/189] Analyzing https://github.com/MonkeScripts/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alvinnnnnnnnnn/ip.git (master) completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cyhjason29/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [17/189] Analyzing https://github.com/shawnpong/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/MonkeScripts/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cyhjason29/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [18/189] Analyzing https://github.com/MonkeScripts/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/alalal47/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/BryanCastorius/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/pqienso/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alalal47/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alvinnnnnnnnnn/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MonkeScripts/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MonkeScripts/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/pqienso/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/blackmirag3/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/blackmirag3/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cyhjason29/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ttasnim5/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ttasnim5/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/clarencepohh/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itsmejr257/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/OKW32/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shawnpong/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shawnpong/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/clarencepohh/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/clarencepohh/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [18/189] Analyzing https://github.com/shawnpong/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/pqienso/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [19/189] Analyzing https://github.com/itsmejr257/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/BryanCastorius/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alalal47/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/blackmirag3/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/pqienso/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/OKW32/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/OKW32/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [19/189] Analyzing https://github.com/itsmejr257/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shawnpong/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shawnpong/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/pqienso/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MonkeScripts/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Leong-ZM/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [20/189] Analyzing https://github.com/BryanCastorius/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/blackmirag3/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MonkeScripts/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MonkeScripts/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/itsmejr257/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/itsmejr257/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alalal47/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alvinnnnnnnnnn/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vimalapugazhan/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [20/189] Analyzing https://github.com/BryanCastorius/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Leong-ZM/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vimalapugazhan/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BryanCastorius/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BryanCastorius/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shawnpong/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shawnpong/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shawnpong/ip.git (master) completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MonkeScripts/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/MonkeScripts/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/MonkeScripts/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cyhjason29/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ttasnim5/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos INFO: [21/189] Analyzing https://github.com/cyhjason29/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alalal47/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BryanCastorius/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ttasnim5/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Leong-ZM/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [22/189] Analyzing https://github.com/alalal47/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Leong-ZM/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cyhjason29/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cyhjason29/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/pqienso/ip.git completed! +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BryanCastorius/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alalal47/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alalal47/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BryanCastorius/ip.git (master) completed! +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/blackmirag3/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BryanCastorius/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BryanCastorius/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vimalapugazhan/ip.git... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [23/189] Analyzing https://github.com/pqienso/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/itsmejr257/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vimalapugazhan/ip.git to complete... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yeozhishen/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/itsmejr257/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/pqienso/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/pqienso/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/itsmejr257/ip.git (master) completed! +Feb 04, 2024 4:27:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [24/189] Analyzing https://github.com/blackmirag3/ip.git (master)... +Feb 04, 2024 4:27:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yeozhishen/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cyhjason29/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cyhjason29/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shawnpong/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shawnpong/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shawnpong/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [22/189] Analyzing https://github.com/pqienso/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/blackmirag3/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/blackmirag3/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cyhjason29/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cyhjason29/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cyhjason29/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alalal47/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alalal47/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alalal47/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ttasnim5/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [25/189] Analyzing https://github.com/ttasnim5/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/aaravrawal52/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/pqienso/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/pqienso/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aaravrawal52/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Leong-ZM/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/blackmirag3/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [26/189] Analyzing https://github.com/Leong-ZM/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuhengr/ip.git... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cyhjason29/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/itsmejr257/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vimalapugazhan/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aaravrawal52/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuhengr/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BryanCastorius/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cyhjason29/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cyhjason29/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [23/189] Analyzing https://github.com/alalal47/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/daryltay415/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/daryltay415/ip.git to complete... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ttasnim5/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ttasnim5/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vimalapugazhan/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/pqienso/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yeozhishen/ip.git completed! -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/itsmejr257/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/itsmejr257/ip.git (master) completed! -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [24/189] Analyzing https://github.com/blackmirag3/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZhouJunmin/ip.git... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alalal47/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alalal47/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BryanCastorius/ip.git (master)... -Feb 04, 2024 4:18:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BryanCastorius/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [25/189] Analyzing https://github.com/ttasnim5/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZhouJunmin/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aaravrawal52/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/blackmirag3/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/blackmirag3/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/soongensayo/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ttasnim5/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ttasnim5/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/soongensayo/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alalal47/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuhengr/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/daryltay415/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vibes-863/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vibes-863/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicknamenic/ip.git... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alalal47/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alalal47/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [26/189] Analyzing https://github.com/Leong-ZM/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/blackmirag3/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicknamenic/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/daryltay415/ip.git... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/blackmirag3/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/blackmirag3/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZhouJunmin/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [27/189] Analyzing https://github.com/vimalapugazhan/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/pqienso/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yyangdaa/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Leong-ZM/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Leong-ZM/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ttasnim5/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yyangdaa/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/soongensayo/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tiffanyliu0220/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/daryltay415/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZhouJunmin/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vimalapugazhan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vimalapugazhan/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZhouJunmin/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/pqienso/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/pqienso/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tiffanyliu0220/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ttasnim5/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [28/189] Analyzing https://github.com/yeozhishen/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ttasnim5/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [29/189] Analyzing https://github.com/aaravrawal52/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yeozhishen/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yeozhishen/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Leong-ZM/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/vimalapugazhan/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuhengr/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ttasnim5/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/soongensayo/ip.git... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Leong-ZM/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Leong-ZM/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vimalapugazhan/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vimalapugazhan/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [29/189] Analyzing https://github.com/yuhengr/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/soongensayo/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ttasnim5/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ttasnim5/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aaravrawal52/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yuhengr/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yuhengr/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vibes-863/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [30/189] Analyzing https://github.com/aaravrawal52/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/daryltay415/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vibes-863/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicknamenic/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [31/189] Analyzing https://github.com/daryltay415/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/aaravrawal52/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/aaravrawal52/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZhouJunmin/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicknamenic/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yyangdaa/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yyangdaa/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/daryltay415/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/daryltay415/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuhengr/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yeozhishen/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yuhengr/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yuhengr/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [32/189] Analyzing https://github.com/ZhouJunmin/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yeozhishen/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yeozhishen/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZhouJunmin/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZhouJunmin/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/aaravrawal52/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/daryltay415/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/aaravrawal52/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/aaravrawal52/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/daryltay415/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/soongensayo/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/daryltay415/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tiffanyliu0220/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [33/189] Analyzing https://github.com/soongensayo/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tiffanyliu0220/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZhouJunmin/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZhouJunmin/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/soongensayo/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/soongensayo/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZhouJunmin/ip.git (master) completed! +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vibes-863/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [34/189] Analyzing https://github.com/vibes-863/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HengShuHong/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicknamenic/ip.git completed! +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HengShuHong/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChenKangg/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [35/189] Analyzing https://github.com/nicknamenic/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "tiffanyliu0220/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/tiffanyliu0220/ip.git' 'repos/tiffanyliu0220_ip/ip_bare' on path . : Cloning into bare repository 'repos/tiffanyliu0220_ip/ip_bare'... @@ -614,693 +694,615 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HengShuHong/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HengShuHong/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vibes-863/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Leong-ZM/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChenKangg/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChenKangg/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/vimalapugazhan/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Leong-ZM/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vimalapugazhan/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vimalapugazhan/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicknamenic/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [30/189] Analyzing https://github.com/yuhengr/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Leong-ZM/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [31/189] Analyzing https://github.com/daryltay415/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/luozihui2003/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yuhengr/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yuhengr/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/luozihui2003/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/aaravrawal52/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yyangdaa/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/daryltay415/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/daryltay415/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ParthGandhiNUS/ip.git... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/aaravrawal52/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/aaravrawal52/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ParthGandhiNUS/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [32/189] Analyzing https://github.com/ZhouJunmin/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZhouJunmin/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZhouJunmin/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HengShuHong/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/imanamirshah/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/imanamirshah/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yeozhishen/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuhengr/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChenKangg/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/daryltay415/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ijaaz01/ip.git... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yeozhishen/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yeozhishen/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [33/189] Analyzing https://github.com/soongensayo/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yuhengr/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yuhengr/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/daryltay415/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/daryltay415/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [34/189] Analyzing https://github.com/vibes-863/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ijaaz01/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [35/189] Analyzing https://github.com/nicknamenic/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/luozihui2003/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wjunjie01/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/soongensayo/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nicknamenic/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nicknamenic/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/soongensayo/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wjunjie01/ip.git to complete... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChenKangg/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vibes-863/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vibes-863/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZhouJunmin/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZhouJunmin/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZhouJunmin/ip.git (master) completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [36/189] Analyzing https://github.com/yyangdaa/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ParthGandhiNUS/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ParthGandhiNUS/ip.git... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nicknamenic/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nicknamenic/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ParthGandhiNUS/ip.git to complete... +Feb 04, 2024 4:27:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yyangdaa/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yyangdaa/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/soongensayo/ip.git (master)... +Feb 04, 2024 4:27:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nicknamenic/ip.git (master)... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/imanamirshah/ip.git completed! -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tayponghee/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/leongxingyu/ip.git... -Feb 04, 2024 4:18:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tayponghee/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nicknamenic/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nicknamenic/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/leongxingyu/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [37/189] Analyzing https://github.com/HengShuHong/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ijaaz01/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/soongensayo/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/soongensayo/ip.git (master) completed! +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yyangdaa/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yyangdaa/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yyangdaa/ip.git (master) completed! +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/vibes-863/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NicholasTanYY/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wjunjie01/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/soongensayo/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NicholasTanYY/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChenKangg/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HengShuHong/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/imanamirshah/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [37/189] Analyzing https://github.com/ChenKangg/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/imanamirshah/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/vibes-863/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HengShuHong/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HengShuHong/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ijaaz01/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [38/189] Analyzing https://github.com/HengShuHong/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/vibes-863/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ymirmeddeb/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [38/189] Analyzing https://github.com/ChenKangg/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yyangdaa/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ymirmeddeb/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/soongensayo/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/soongensayo/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [39/189] Analyzing https://github.com/luozihui2003/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/luozihui2003/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChenKangg/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChenKangg/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yyangdaa/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yyangdaa/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [40/189] Analyzing https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ijaaz01/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [39/189] Analyzing https://github.com/luozihui2003/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wjunjie01/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wjunjie01/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HengShuHong/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HengShuHong/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ParthGandhiNUS/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/luozihui2003/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/luozihui2003/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HengShuHong/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tayponghee/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HengShuHong/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HengShuHong/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChenKangg/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [41/189] Analyzing https://github.com/imanamirshah/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [40/189] Analyzing https://github.com/ParthGandhiNUS/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tayponghee/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tayponghee/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ParthGandhiNUS/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leongxingyu/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/songyuew/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/e0958902/ip.git... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChenKangg/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChenKangg/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChenKangg/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [42/189] Analyzing https://github.com/Ijaaz01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/luozihui2003/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/e0958902/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/songyuew/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NicholasTanYY/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HengShuHong/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/luozihui2003/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/luozihui2003/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HengShuHong/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HengShuHong/ip.git (master) completed! +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ParthGandhiNUS/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ParthGandhiNUS/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ParthGandhiNUS/ip.git (master) completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/imanamirshah/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ijaaz01/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/leongxingyu/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [41/189] Analyzing https://github.com/imanamirshah/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NicholasTanYY/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [42/189] Analyzing https://github.com/Ijaaz01/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/leongxingyu/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NicholasTanYY/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wjunjie01/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/imanamirshah/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ymirmeddeb/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos INFO: [43/189] Analyzing https://github.com/wjunjie01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/imanamirshah/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ijaaz01/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ijaaz01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/imanamirshah/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/imanamirshah/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HiteshriAcharya/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ymirmeddeb/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ymirmeddeb/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tayponghee/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wjunjie01/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wjunjie01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/djleong01/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HiteshriAcharya/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/djleong01/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ParthGandhiNUS/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/imanamirshah/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos INFO: [44/189] Analyzing https://github.com/tayponghee/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/e0958902/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ijaaz01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jamarcus111/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/songyuew/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ijaaz01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/songyuew/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/songyuew/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tayponghee/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tayponghee/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ijaaz01/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [45/189] Analyzing https://github.com/leongxingyu/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jamarcus111/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/imanamirshah/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ijaaz01/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/imanamirshah/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/imanamirshah/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Cryolian/ip.git... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wjunjie01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [46/189] Analyzing https://github.com/NicholasTanYY/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Cryolian/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HiteshriAcharya/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leongxingyu/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leongxingyu/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChongXern/ip.git... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ijaaz01/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ijaaz01/ip.git (master) completed! +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wjunjie01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wjunjie01/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leongxingyu/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/e0958902/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [45/189] Analyzing https://github.com/leongxingyu/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NicholasTanYY/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/e0958902/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HiteshriAcharya/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [46/189] Analyzing https://github.com/NicholasTanYY/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ymirmeddeb/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HiteshriAcharya/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tayponghee/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/djleong01/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos INFO: [47/189] Analyzing https://github.com/ymirmeddeb/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NicholasTanYY/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NicholasTanYY/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChongXern/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leongxingyu/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leongxingyu/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/djleong01/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/songyuew/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ymirmeddeb/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ymirmeddeb/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tayponghee/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/djleong01/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tayponghee/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NicholasTanYY/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NicholasTanYY/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tayponghee/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jamarcus111/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [48/189] Analyzing https://github.com/songyuew/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jamarcus111/ip.git to complete... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/songyuew/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/songyuew/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ymirmeddeb/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leongxingyu/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/NicholasTanYY/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [48/189] Analyzing https://github.com/e0958902/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sxfoo/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jamarcus111/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/j013n3/ip.git... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/e0958902/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/e0958902/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sxfoo/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ymirmeddeb/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ymirmeddeb/ip.git (master) completed! +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NicholasTanYY/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NicholasTanYY/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leongxingyu/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/j013n3/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [49/189] Analyzing https://github.com/songyuew/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cryolian/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tannerlie/ip.git... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ymirmeddeb/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tannerlie/ip.git to complete... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/leongxingyu/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/leongxingyu/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [50/189] Analyzing https://github.com/HiteshriAcharya/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/songyuew/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/songyuew/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ymirmeddeb/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ymirmeddeb/ip.git (master) completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [51/189] Analyzing https://github.com/djleong01/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChongXern/ip.git completed! -Feb 04, 2024 4:18:26 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/songyuew/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/e0958902/ip.git completed! +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Cryolian/ip.git... +Feb 04, 2024 4:27:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [49/189] Analyzing https://github.com/e0958902/ip.git (master)... +Feb 04, 2024 4:27:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Cryolian/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/songyuew/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/songyuew/ip.git (master) completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HiteshriAcharya/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/e0958902/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/e0958902/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChongXern/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [50/189] Analyzing https://github.com/HiteshriAcharya/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChongXern/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/djleong01/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HiteshriAcharya/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HiteshriAcharya/ip.git (master)... -Feb 04, 2024 4:18:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/runxinghuan/ip.git... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sxfoo/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [51/189] Analyzing https://github.com/djleong01/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sxfoo/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jamarcus111/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/djleong01/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/djleong01/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/e0958902/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/runxinghuan/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/e0958902/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/e0958902/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos INFO: [52/189] Analyzing https://github.com/Jamarcus111/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/j013n3/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/j013n3/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/e0958902/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HiteshriAcharya/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jamarcus111/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jamarcus111/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/songyuew/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HiteshriAcharya/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sxfoo/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/songyuew/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/songyuew/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/j013n3/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [53/189] Analyzing https://github.com/Cryolian/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/edwardhumi/ip.git... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/annnniexu/ip.git... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/annnniexu/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/edwardhumi/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/e0958902/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/e0958902/ip.git (master) completed! +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HiteshriAcharya/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HiteshriAcharya/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [54/189] Analyzing https://github.com/ChongXern/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Cryolian/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Cryolian/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tannerlie/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/djleong01/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/awesomesjh/ip.git... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/awesomesjh/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/runxinghuan/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cryolian/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tannerlie/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [53/189] Analyzing https://github.com/Cryolian/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/djleong01/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/djleong01/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [55/189] Analyzing https://github.com/sxfoo/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChongXern/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChongXern/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jasonlienardi/ip.git... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jasonlienardi/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tannerlie/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Jamarcus111/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sxfoo/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sxfoo/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChongXern/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Cryolian/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Cryolian/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jamarcus111/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jamarcus111/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [56/189] Analyzing https://github.com/j013n3/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/runxinghuan/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [54/189] Analyzing https://github.com/ChongXern/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/runxinghuan/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sxfoo/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChongXern/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChongXern/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/edwardhumi/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [55/189] Analyzing https://github.com/sxfoo/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/edwardhumi/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Cryolian/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/j013n3/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [56/189] Analyzing https://github.com/j013n3/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/annnniexu/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sxfoo/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sxfoo/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Cryolian/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Cryolian/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [57/189] Analyzing https://github.com/tannerlie/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/annnniexu/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/j013n3/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/j013n3/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/edwardhumi/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/genexus85/ip.git... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChongXern/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/genexus85/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tannerlie/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tannerlie/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/annnniexu/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sxfoo/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/L5-Z/ip.git... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChongXern/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChongXern/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [58/189] Analyzing https://github.com/runxinghuan/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sxfoo/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/j013n3/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/awesomesjh/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/L5-Z/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LWachtel1/ip.git... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sxfoo/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/runxinghuan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/runxinghuan/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sxfoo/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [59/189] Analyzing https://github.com/edwardhumi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LWachtel1/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jasonlienardi/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PDHung1104/ip.git... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/j013n3/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tannerlie/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/j013n3/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [60/189] Analyzing https://github.com/annnniexu/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PDHung1104/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/awesomesjh/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [57/189] Analyzing https://github.com/tannerlie/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/awesomesjh/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tannerlie/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tannerlie/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/runxinghuan/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jasonlienardi/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [58/189] Analyzing https://github.com/runxinghuan/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jasonlienardi/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/edwardhumi/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/genexus85/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [59/189] Analyzing https://github.com/edwardhumi/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/genexus85/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/runxinghuan/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/runxinghuan/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tannerlie/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/edwardhumi/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/edwardhumi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/annnniexu/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [60/189] Analyzing https://github.com/annnniexu/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/L5-Z/ip.git... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tannerlie/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tannerlie/ip.git (master) completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/L5-Z/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/annnniexu/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/annnniexu/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tannerlie/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/runxinghuan/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/genexus85/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tannerlie/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tannerlie/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [61/189] Analyzing https://github.com/awesomesjh/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Geinzit/ip.git... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Geinzit/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/runxinghuan/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/awesomesjh/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/runxinghuan/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [62/189] Analyzing https://github.com/jasonlienardi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/L5-Z/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cheeseong2001/ip.git... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LWachtel1/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [61/189] Analyzing https://github.com/awesomesjh/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/annnniexu/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cheeseong2001/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/edwardhumi/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LWachtel1/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/edwardhumi/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/awesomesjh/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/awesomesjh/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jasonlienardi/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jasonlienardi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/edwardhumi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LWachtel1/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PDHung1104/ip.git completed! -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/annnniexu/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/annnniexu/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [63/189] Analyzing https://github.com/genexus85/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/owx0130/ip.git... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jing-xiang/ip.git... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/edwardhumi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/edwardhumi/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [64/189] Analyzing https://github.com/L5-Z/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jing-xiang/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/owx0130/ip.git to complete... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jasonlienardi/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PDHung1104/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [62/189] Analyzing https://github.com/jasonlienardi/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/genexus85/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PDHung1104/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [63/189] Analyzing https://github.com/genexus85/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Geinzit/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Geinzit/ip.git to complete... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jasonlienardi/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jasonlienardi/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/genexus85/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/genexus85/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/awesomesjh/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jasonlienardi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/L5-Z/ip.git completed! +Feb 04, 2024 4:27:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/awesomesjh/ip.git (master)... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/awesomesjh/ip.git (master) completed! +Feb 04, 2024 4:27:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cheeseong2001/ip.git... +Feb 04, 2024 4:27:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [64/189] Analyzing https://github.com/L5-Z/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cheeseong2001/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/L5-Z/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/L5-Z/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/genexus85/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jasonlienardi/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/genexus85/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/genexus85/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jasonlienardi/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jasonlienardi/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/L5-Z/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LWachtel1/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/owx0130/ip.git... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [65/189] Analyzing https://github.com/LWachtel1/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/awesomesjh/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/awesomesjh/ip.git (master) completed! -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [66/189] Analyzing https://github.com/PDHung1104/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/L5-Z/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/L5-Z/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/owx0130/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LWachtel1/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LWachtel1/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LWachtel1/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PDHung1104/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [66/189] Analyzing https://github.com/PDHung1104/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jing-xiang/ip.git... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LWachtel1/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LWachtel1/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jing-xiang/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Geinzit/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PDHung1104/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PDHung1104/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/L5-Z/ip.git (master)... -Feb 04, 2024 4:18:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Geinzit/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/genexus85/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/raajamani/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/raajamani/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/L5-Z/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/L5-Z/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cheeseong2001/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [67/189] Analyzing https://github.com/Geinzit/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/webtjs/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/webtjs/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/owx0130/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/genexus85/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/genexus85/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jing-xiang/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [68/189] Analyzing https://github.com/cheeseong2001/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/raajamani/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Geinzit/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Geinzit/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jensonjenkins/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LowTL/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PDHung1104/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PDHung1104/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PDHung1104/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Geinzit/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Geinzit/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Geinzit/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "raajamani/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/raajamani/ip.git' 'repos/raajamani_ip/ip_bare' on path . : Cloning into bare repository 'repos/raajamani_ip/ip_bare'... @@ -1316,207 +1318,221 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TimothyLKM/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/webtjs/ip.git... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/webtjs/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/owx0130/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cheeseong2001/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [68/189] Analyzing https://github.com/cheeseong2001/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jensonjenkins/ip.git... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LowTL/ip.git... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [69/189] Analyzing https://github.com/owx0130/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LowTL/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LWachtel1/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TimothyLKM/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jensonjenkins/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cheeseong2001/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cheeseong2001/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PDHung1104/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LWachtel1/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LWachtel1/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [69/189] Analyzing https://github.com/jing-xiang/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PDHung1104/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Geinzit/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PDHung1104/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [70/189] Analyzing https://github.com/owx0130/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Geinzit/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Geinzit/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/owx0130/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/owx0130/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cheeseong2001/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cheeseong2001/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jing-xiang/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [70/189] Analyzing https://github.com/jing-xiang/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TimothyLKM/ip.git... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TimothyLKM/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/owx0130/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jing-xiang/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jing-xiang/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/owx0130/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/owx0130/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cheeseong2001/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cheeseong2001/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/webtjs/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cheeseong2001/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/webtjs/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [71/189] Analyzing https://github.com/webtjs/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/FeathersRe/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jensonjenkins/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/FeathersRe/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/owx0130/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LowTL/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/liuy1103/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [72/189] Analyzing https://github.com/jensonjenkins/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/webtjs/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/webtjs/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TimothyLKM/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Cohii2/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jing-xiang/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jensonjenkins/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [72/189] Analyzing https://github.com/jensonjenkins/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/liuy1103/ip.git... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jing-xiang/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jing-xiang/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/liuy1103/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Cohii2/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LowTL/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/webtjs/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jensonjenkins/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jensonjenkins/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/owx0130/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/owx0130/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yeozongyao/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [73/189] Analyzing https://github.com/LowTL/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yeozongyao/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jing-xiang/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Cohii2/ip.git... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/webtjs/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/webtjs/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Cohii2/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TimothyLKM/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LowTL/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LowTL/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jing-xiang/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jing-xiang/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yeozongyao/ip.git... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [74/189] Analyzing https://github.com/TimothyLKM/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/webtjs/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yeozongyao/ip.git to complete... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TimothyLKM/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TimothyLKM/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LowTL/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/webtjs/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/webtjs/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jensonjenkins/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LowTL/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LowTL/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/FeathersRe/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jensonjenkins/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jensonjenkins/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/FeathersRe/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/EdmundTangg/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LowTL/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [75/189] Analyzing https://github.com/FeathersRe/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/EdmundTangg/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LowTL/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LowTL/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TimothyLKM/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/FeathersRe/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/FeathersRe/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TimothyLKM/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TimothyLKM/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/FeathersRe/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/FeathersRe/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/FeathersRe/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/liuy1103/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cohii2/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [76/189] Analyzing https://github.com/liuy1103/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ZhangWenyue3325/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [76/189] Analyzing https://github.com/Cohii2/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ZhangWenyue3325/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [77/189] Analyzing https://github.com/liuy1103/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cohii2/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [77/189] Analyzing https://github.com/Cohii2/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuki-zmstr/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yeozongyao/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuki-zmstr/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/liuy1103/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/liuy1103/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Cohii2/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Cohii2/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [78/189] Analyzing https://github.com/yeozongyao/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/liuy1103/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/liuy1103/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/liuy1103/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yeozongyao/ip.git completed! +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/classskipper351/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/liuy1103/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/liuy1103/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/FeathersRe/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [78/189] Analyzing https://github.com/yeozongyao/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Cohii2/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/classskipper351/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Cohii2/ip.git (master)... +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Cohii2/ip.git (master) completed! +Feb 04, 2024 4:27:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yeozongyao/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yeozongyao/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/FeathersRe/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/FeathersRe/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/EdmundTangg/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [79/189] Analyzing https://github.com/EdmundTangg/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Celineyaa/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Celineyaa/ip.git to complete... +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yeozongyao/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Cohii2/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/liuy1103/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/EdmundTangg/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/EdmundTangg/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yeozongyao/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Cohii2/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yeozongyao/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Cohii2/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "classskipper351/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/classskipper351/ip.git' 'repos/classskipper351_ip/ip_bare' on path . : Cloning into bare repository 'repos/classskipper351_ip/ip_bare'... @@ -1532,129 +1548,113 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Celineyaa/ip.git... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/liuy1103/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/liuy1103/ip.git (master) completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Celineyaa/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/EdmundTangg/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [79/189] Analyzing https://github.com/EdmundTangg/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hongyijie06/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hongyijie06/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/EdmundTangg/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/EdmundTangg/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuki-zmstr/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [80/189] Analyzing https://github.com/yuki-zmstr/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZhangWenyue3325/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/EdmundTangg/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [80/189] Analyzing https://github.com/ZhangWenyue3325/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/BestDownLoader365/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/EdmundTangg/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/EdmundTangg/ip.git (master) completed! +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/BestDownLoader365/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZhangWenyue3325/ip.git completed! -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZhangWenyue3325/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZhangWenyue3325/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuki-zmstr/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [81/189] Analyzing https://github.com/yuki-zmstr/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ChinYanXu/ip.git... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [81/189] Analyzing https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ChinYanXu/ip.git to complete... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yuki-zmstr/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yuki-zmstr/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/EdmundTangg/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZhangWenyue3325/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/EdmundTangg/ip.git (master)... -Feb 04, 2024 4:18:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/EdmundTangg/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Celineyaa/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/STeng618/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [82/189] Analyzing https://github.com/Celineyaa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ZhangWenyue3325/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/STeng618/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yuki-zmstr/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hongyijie06/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Celineyaa/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Celineyaa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yuki-zmstr/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yuki-zmstr/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/fungg0/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Celineyaa/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [82/189] Analyzing https://github.com/Celineyaa/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/STeng618/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/STeng618/ip.git to complete... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Celineyaa/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Celineyaa/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hongyijie06/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [83/189] Analyzing https://github.com/hongyijie06/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/fungg0/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/fungg0/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hongyijie06/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hongyijie06/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Celineyaa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Celineyaa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Celineyaa/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hongyijie06/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hongyijie06/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/BestDownLoader365/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChinYanXu/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [84/189] Analyzing https://github.com/BestDownLoader365/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/pradeep-cod/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [84/189] Analyzing https://github.com/ChinYanXu/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MayFairMI6/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [85/189] Analyzing https://github.com/BestDownLoader365/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hongyijie06/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MayFairMI6/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/pradeep-cod/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BestDownLoader365/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BestDownLoader365/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/hongyijie06/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/hongyijie06/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChinYanXu/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [85/189] Analyzing https://github.com/ChinYanXu/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MayFairMI6/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BestDownLoader365/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BestDownLoader365/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MayFairMI6/ip.git to complete... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChinYanXu/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChinYanXu/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "MayFairMI6/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/MayFairMI6/ip.git' 'repos/MayFairMI6_ip/ip_bare' on path . : Cloning into bare repository 'repos/MayFairMI6_ip/ip_bare'... @@ -1670,71 +1670,71 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hafizuddin-a/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/STeng618/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [86/189] Analyzing https://github.com/STeng618/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YoengKokLeong/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YoengKokLeong/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hafizuddin-a/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/STeng618/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/STeng618/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChinYanXu/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/fungg0/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/BestDownLoader365/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RyanTDL/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [87/189] Analyzing https://github.com/fungg0/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChinYanXu/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/STeng618/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChinYanXu/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RyanTDL/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YoengKokLeong/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [86/189] Analyzing https://github.com/STeng618/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/BestDownLoader365/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/BestDownLoader365/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/fungg0/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YoengKokLeong/ip.git to complete... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RyanTDL/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [87/189] Analyzing https://github.com/fungg0/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RyanTDL/ip.git to complete... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/fungg0/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/fungg0/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/STeng618/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/STeng618/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/pradeep-cod/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [88/189] Analyzing https://github.com/pradeep-cod/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SharlynLui/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SharlynLui/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/pradeep-cod/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/pradeep-cod/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/fungg0/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YoengKokLeong/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hafizuddin-a/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [89/189] Analyzing https://github.com/YoengKokLeong/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Luo-Z-Y/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/seandooa/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/fungg0/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/fungg0/ip.git (master) completed! +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/pradeep-cod/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/pradeep-cod/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/pradeep-cod/ip.git (master) completed! +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "SharlynLui/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/SharlynLui/ip.git' 'repos/SharlynLui_ip/ip_bare' on path . : Cloning into bare repository 'repos/SharlynLui_ip/ip_bare'... @@ -1750,705 +1750,735 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YHWong20/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Luo-Z-Y/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Luo-Z-Y/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YHWong20/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hafizuddin-a/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [89/189] Analyzing https://github.com/hafizuddin-a/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/seandooa/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/seandooa/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/fungg0/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/pradeep-cod/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/fungg0/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [90/189] Analyzing https://github.com/hafizuddin-a/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/YoengKokLeong/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/YoengKokLeong/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/pradeep-cod/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/pradeep-cod/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hafizuddin-a/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hafizuddin-a/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/RyanTDL/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/STeng618/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YHWong20/ip.git... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [90/189] Analyzing https://github.com/RyanTDL/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YoengKokLeong/ip.git completed! +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YHWong20/ip.git to complete... +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kyuichyi/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [91/189] Analyzing https://github.com/RyanTDL/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kyuichyi/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [91/189] Analyzing https://github.com/YoengKokLeong/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/RyanTDL/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/RyanTDL/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/STeng618/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kyuichyi/ip.git to complete... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/STeng618/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/YoengKokLeong/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/YoengKokLeong/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hafizuddin-a/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YoengKokLeong/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/hafizuddin-a/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/hafizuddin-a/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/YoengKokLeong/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/RyanTDL/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YoengKokLeong/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Luo-Z-Y/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/RyanTDL/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/RyanTDL/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/seandooa/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [92/189] Analyzing https://github.com/seandooa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YoengKokLeong/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/YoengKokLeong/ip.git (master)... +Feb 04, 2024 4:27:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YoengKokLeong/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Luo-Z-Y/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/samuelory/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [92/189] Analyzing https://github.com/Luo-Z-Y/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/samuelory/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [93/189] Analyzing https://github.com/Luo-Z-Y/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Luo-Z-Y/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Luo-Z-Y/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/seandooa/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yzhanglp/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [93/189] Analyzing https://github.com/seandooa/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Luo-Z-Y/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yzhanglp/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Luo-Z-Y/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Luo-Z-Y/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/seandooa/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/seandooa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Luo-Z-Y/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Luo-Z-Y/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/YHWong20/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AhmedShaiyan/ip.git... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [94/189] Analyzing https://github.com/YHWong20/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AhmedShaiyan/ip.git... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AhmedShaiyan/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YHWong20/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YHWong20/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/seandooa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kyuichyi/ip.git completed! -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Luo-Z-Y/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [95/189] Analyzing https://github.com/kyuichyi/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Mahesh1772/ip.git... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/seandooa/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/seandooa/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [95/189] Analyzing https://github.com/kyuichyi/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/seandooa/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Mahesh1772/ip.git to complete... -Feb 04, 2024 4:18:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Luo-Z-Y/ip.git (master)... -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Luo-Z-Y/ip.git (master) completed! -Feb 04, 2024 4:18:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/seandooa/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kyuichyi/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kyuichyi/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/seandooa/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/YHWong20/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YHWong20/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YHWong20/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kyuichyi/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YHWong20/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/samuelory/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kyuichyi/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kyuichyi/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yzhanglp/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [96/189] Analyzing https://github.com/yzhanglp/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/syj02/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [96/189] Analyzing https://github.com/samuelory/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/syj02/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/samuelory/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/samuelory/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/samuelory/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yzhanglp/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [97/189] Analyzing https://github.com/yzhanglp/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chenhowy/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [97/189] Analyzing https://github.com/samuelory/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chenhowy/ip.git to complete... +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/samuelory/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yzhanglp/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yzhanglp/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chenhowy/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/samuelory/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/samuelory/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AhmedShaiyan/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mihirheda02/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [98/189] Analyzing https://github.com/AhmedShaiyan/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/samuelory/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/samuelory/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mihirheda02/ip.git... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/mihirheda02/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/AhmedShaiyan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/AhmedShaiyan/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yzhanglp/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Mahesh1772/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yzhanglp/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yzhanglp/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Mahesh1772/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/azamanis/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [99/189] Analyzing https://github.com/Mahesh1772/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/samuelory/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AhmedShaiyan/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/azamanis/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Mahesh1772/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Mahesh1772/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/samuelory/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/samuelory/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AhmedShaiyan/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AhmedShaiyan/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Mahesh1772/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chenhowy/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZhuSijia0711/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [100/189] Analyzing https://github.com/chenhowy/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Mahesh1772/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Mahesh1772/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/syj02/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZhuSijia0711/ip.git... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [100/189] Analyzing https://github.com/syj02/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ZhuSijia0711/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Mahesh1772/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/syj02/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/syj02/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Mahesh1772/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Mahesh1772/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [101/189] Analyzing https://github.com/syj02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chenhowy/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nickczh/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [101/189] Analyzing https://github.com/chenhowy/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nickczh/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chenhowy/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chenhowy/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/syj02/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/mihirheda02/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/syj02/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/syj02/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Hws2209/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [102/189] Analyzing https://github.com/mihirheda02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/syj02/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/syj02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Hws2209/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mihirheda02/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mihirheda02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chenhowy/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/azamanis/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chenhowy/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chenhowy/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/fxe025/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/azamanis/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [103/189] Analyzing https://github.com/azamanis/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/fxe025/ip.git... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/fxe025/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/syj02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/syj02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/syj02/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mihirheda02/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/azamanis/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/azamanis/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mihirheda02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mihirheda02/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mihirheda02/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ZhuSijia0711/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tinaliu27/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [104/189] Analyzing https://github.com/ZhuSijia0711/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tinaliu27/ip.git... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tinaliu27/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZhuSijia0711/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZhuSijia0711/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/azamanis/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/azamanis/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nickczh/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/azamanis/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [105/189] Analyzing https://github.com/nickczh/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ningsongshen/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZhuSijia0711/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZhuSijia0711/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ningsongshen/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nickczh/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nickczh/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZhuSijia0711/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Hws2209/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nyh3/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [106/189] Analyzing https://github.com/Hws2209/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZhuSijia0711/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZhuSijia0711/ip.git (master) completed! +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nyh3/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/azamanis/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nickczh/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Hws2209/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Hws2209/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/azamanis/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/azamanis/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/fxe025/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [107/189] Analyzing https://github.com/fxe025/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/john-nng/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/john-nng/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/fxe025/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/fxe025/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nickczh/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZhuSijia0711/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nickczh/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nickczh/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZhuSijia0711/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZhuSijia0711/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/fxe025/ip.git completed! +Feb 04, 2024 4:27:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [107/189] Analyzing https://github.com/fxe025/ip.git (master)... +Feb 04, 2024 4:27:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/john-nng/ip.git... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/john-nng/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Hws2209/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/tinaliu27/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cayennegoh/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/fxe025/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/fxe025/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [108/189] Analyzing https://github.com/tinaliu27/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cayennegoh/ip.git... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Hws2209/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Hws2209/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cayennegoh/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Hws2209/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tinaliu27/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tinaliu27/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ningsongshen/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tinaliu27/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/fxe025/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tinaliu27/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tinaliu27/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/fxe025/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/fxe025/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ningsongshen/ip.git completed! +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [109/189] Analyzing https://github.com/ningsongshen/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kirangeofran/ip.git... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Hws2209/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Hws2209/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kirangeofran/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/fxe025/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/fxe025/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nyh3/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ningsongshen/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ningsongshen/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nyh3/ip.git completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Heart-of-N1/ip.git... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [110/189] Analyzing https://github.com/nyh3/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Vavinan/ip.git... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Vavinan/ip.git to complete... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tinaliu27/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Heart-of-N1/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ningsongshen/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nyh3/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nyh3/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tinaliu27/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tinaliu27/ip.git (master) completed! -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ningsongshen/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ningsongshen/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/john-nng/ip.git completed! -Feb 04, 2024 4:18:30 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [111/189] Analyzing https://github.com/john-nng/ip.git (master)... -Feb 04, 2024 4:18:30 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Vavinan/ip.git... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Vavinan/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cayennegoh/ip.git completed! +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [112/189] Analyzing https://github.com/cayennegoh/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/mukund1403/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mukund1403/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ningsongshen/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/john-nng/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/john-nng/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ningsongshen/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ningsongshen/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cayennegoh/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [112/189] Analyzing https://github.com/cayennegoh/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wenenhoe/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wenenhoe/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/john-nng/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nyh3/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mukund1403/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/cayennegoh/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/cayennegoh/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/john-nng/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/john-nng/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nyh3/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nyh3/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nyh3/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/john-nng/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/john-nng/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/john-nng/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kirangeofran/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cayennegoh/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [113/189] Analyzing https://github.com/kirangeofran/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/64-1/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/64-1/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wenenhoe/ip.git... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wenenhoe/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cayennegoh/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cayennegoh/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kirangeofran/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kirangeofran/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cayennegoh/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kirangeofran/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Heart-of-N1/ip.git completed! +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kirangeofran/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kirangeofran/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [114/189] Analyzing https://github.com/Heart-of-N1/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/64-1/ip.git... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/64-1/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Heart-of-N1/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Heart-of-N1/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Vavinan/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cayennegoh/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cayennegoh/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [114/189] Analyzing https://github.com/Vavinan/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Heart-of-N1/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chenxk619/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [115/189] Analyzing https://github.com/Vavinan/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chenxk619/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Vavinan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Vavinan/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kirangeofran/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/mukund1403/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kirangeofran/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kirangeofran/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Heart-of-N1/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [116/189] Analyzing https://github.com/mukund1403/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/paturikarthik/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [115/189] Analyzing https://github.com/mukund1403/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Heart-of-N1/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/paturikarthik/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Vavinan/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Vavinan/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mukund1403/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mukund1403/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wenenhoe/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Vavinan/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hwc0419/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [116/189] Analyzing https://github.com/wenenhoe/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mukund1403/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hwc0419/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Vavinan/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Vavinan/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mukund1403/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mukund1403/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wenenhoe/ip.git completed! +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [117/189] Analyzing https://github.com/wenenhoe/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hwc0419/ip.git... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hwc0419/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Vavinan/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wenenhoe/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wenenhoe/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Vavinan/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Vavinan/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/64-1/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [117/189] Analyzing https://github.com/64-1/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [118/189] Analyzing https://github.com/64-1/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/avrilgk/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/avrilgk/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wenenhoe/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/avrilgk/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wenenhoe/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/64-1/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/64-1/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wenenhoe/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chenxk619/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [118/189] Analyzing https://github.com/chenxk619/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HenryGan138/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HenryGan138/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chenxk619/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chenxk619/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/64-1/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/64-1/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/64-1/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chenxk619/ip.git completed! +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [119/189] Analyzing https://github.com/chenxk619/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HenryGan138/ip.git... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HenryGan138/ip.git to complete... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/paturikarthik/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [119/189] Analyzing https://github.com/paturikarthik/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [120/189] Analyzing https://github.com/paturikarthik/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Andy123qq4/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chenxk619/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chenxk619/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Andy123qq4/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chenxk619/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/paturikarthik/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/paturikarthik/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chenxk619/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chenxk619/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chenxk619/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/hwc0419/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/paturikarthik/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [121/189] Analyzing https://github.com/hwc0419/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NgYaoDong/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [120/189] Analyzing https://github.com/hwc0419/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NgYaoDong/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hwc0419/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hwc0419/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/paturikarthik/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/paturikarthik/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/paturikarthik/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hwc0419/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hwc0419/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hwc0419/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hwc0419/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hwc0419/ip.git (master) completed! +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/avrilgk/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [121/189] Analyzing https://github.com/avrilgk/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [122/189] Analyzing https://github.com/avrilgk/ip.git (master)... +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Joshuahoky/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Joshuahoky/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hwc0419/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hwc0419/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/avrilgk/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/avrilgk/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HenryGan138/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/avrilgk/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZMinghuiZ/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [122/189] Analyzing https://github.com/HenryGan138/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZMinghuiZ/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HenryGan138/ip.git completed! +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/avrilgk/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/avrilgk/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZMinghuiZ/ip.git... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [123/189] Analyzing https://github.com/HenryGan138/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZMinghuiZ/ip.git to complete... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Andy123qq4/ip.git completed! +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HenryGan138/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HenryGan138/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Andy123qq4/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [124/189] Analyzing https://github.com/Andy123qq4/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/B1G-SAM/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [123/189] Analyzing https://github.com/Andy123qq4/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/B1G-SAM/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Andy123qq4/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Andy123qq4/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Andy123qq4/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Andy123qq4/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Andy123qq4/ip.git (master) completed! +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HenryGan138/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NgYaoDong/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JianJiaT/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [124/189] Analyzing https://github.com/NgYaoDong/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HenryGan138/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HenryGan138/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NgYaoDong/ip.git completed! +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [125/189] Analyzing https://github.com/NgYaoDong/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JianJiaT/ip.git... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JianJiaT/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Andy123qq4/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NgYaoDong/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NgYaoDong/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Andy123qq4/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Andy123qq4/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Joshuahoky/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [125/189] Analyzing https://github.com/Joshuahoky/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [126/189] Analyzing https://github.com/Joshuahoky/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/eliztan/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/eliztan/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Joshuahoky/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Joshuahoky/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joshuahoky/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZMinghuiZ/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [126/189] Analyzing https://github.com/ZMinghuiZ/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/V4Vern/ip.git... -Feb 04, 2024 4:18:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joshuahoky/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joshuahoky/ip.git (master) completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/B1G-SAM/ip.git completed! -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZMinghuiZ/ip.git completed! +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/V4Vern/ip.git... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [127/189] Analyzing https://github.com/ZMinghuiZ/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/V4Vern/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [127/189] Analyzing https://github.com/B1G-SAM/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/B1G-SAM/ip.git completed! +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/haowern98/ip.git... -Feb 04, 2024 4:18:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/haowern98/ip.git to complete... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [128/189] Analyzing https://github.com/B1G-SAM/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ZMinghuiZ/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ZMinghuiZ/ip.git (master)... -Feb 04, 2024 4:18:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/haowern98/ip.git to complete... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/B1G-SAM/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/B1G-SAM/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/B1G-SAM/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NgYaoDong/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NgYaoDong/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NgYaoDong/ip.git (master) completed! +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JianJiaT/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nur-haziq/ip.git... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [129/189] Analyzing https://github.com/JianJiaT/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZMinghuiZ/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nur-haziq/ip.git to complete... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "haowern98/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/haowern98/ip.git' 'repos/haowern98_ip/ip_bare' on path . : Cloning into bare repository 'repos/haowern98_ip/ip_bare'... @@ -2464,73 +2494,67 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nur-haziq/ip.git... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NgYaoDong/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nur-haziq/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/B1G-SAM/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dtaywd/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [128/189] Analyzing https://github.com/JianJiaT/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/B1G-SAM/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dtaywd/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZMinghuiZ/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZMinghuiZ/ip.git (master) completed! +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/B1G-SAM/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/B1G-SAM/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/B1G-SAM/ip.git (master) completed! +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/eliztan/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NgYaoDong/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NgYaoDong/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/adamzzq/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [129/189] Analyzing https://github.com/eliztan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZMinghuiZ/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JianJiaT/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JianJiaT/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [130/189] Analyzing https://github.com/eliztan/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/adamzzq/ip.git... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/adamzzq/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZMinghuiZ/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZMinghuiZ/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/eliztan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/eliztan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/V4Vern/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/eliztan/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dylansiew/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [130/189] Analyzing https://github.com/V4Vern/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [131/189] Analyzing https://github.com/V4Vern/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dylansiew/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/eliztan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/V4Vern/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/V4Vern/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/eliztan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/eliztan/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/V4Vern/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/V4Vern/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/JianJiaT/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JianJiaT/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JianJiaT/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/V4Vern/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/V4Vern/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/V4Vern/ip.git (master) completed! +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "dylansiew/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/dylansiew/ip.git' 'repos/dylansiew_ip/ip_bare' on path . : Cloning into bare repository 'repos/dylansiew_ip/ip_bare'... @@ -2546,185 +2570,203 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kyhjonathan/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kyhjonathan/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/V4Vern/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/V4Vern/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/V4Vern/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nur-haziq/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [132/189] Analyzing https://github.com/nur-haziq/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Daviancold/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [131/189] Analyzing https://github.com/nur-haziq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Daviancold/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nur-haziq/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nur-haziq/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dtaywd/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [133/189] Analyzing https://github.com/dtaywd/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CXIA17/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [132/189] Analyzing https://github.com/dtaywd/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CXIA17/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nur-haziq/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nur-haziq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dtaywd/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dtaywd/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/adamzzq/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Aak242/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [133/189] Analyzing https://github.com/adamzzq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [134/189] Analyzing https://github.com/adamzzq/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dtaywd/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dtaywd/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Aak242/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/adamzzq/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/adamzzq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nur-haziq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dtaywd/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nur-haziq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nur-haziq/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dtaywd/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dtaywd/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dtaywd/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/adamzzq/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/adamzzq/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/adamzzq/ip.git (master) completed! +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kyhjonathan/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Daviancold/ip.git completed! +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [135/189] Analyzing https://github.com/kyhjonathan/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nkotaa/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [134/189] Analyzing https://github.com/kyhjonathan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nkotaa/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/1simjustin/ip.git... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [136/189] Analyzing https://github.com/Daviancold/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/1simjustin/ip.git to complete... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kyhjonathan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kyhjonathan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Daviancold/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/adamzzq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Daviancold/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Daviancold/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/CXIA17/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/1simjustin/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [135/189] Analyzing https://github.com/Daviancold/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/1simjustin/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [136/189] Analyzing https://github.com/CXIA17/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ShyamKrishna33/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [137/189] Analyzing https://github.com/CXIA17/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ShyamKrishna33/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/adamzzq/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/adamzzq/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Daviancold/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Daviancold/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kyhjonathan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CXIA17/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CXIA17/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Aak242/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kyhjonathan/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kyhjonathan/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [137/189] Analyzing https://github.com/Aak242/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [138/189] Analyzing https://github.com/Aak242/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CXIA17/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/EugeneChanJiajun/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CXIA17/ip.git (master)... +Feb 04, 2024 4:27:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/EugeneChanJiajun/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kyhjonathan/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Aak242/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Aak242/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nkotaa/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [138/189] Analyzing https://github.com/nkotaa/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nikhil-2101/ip.git... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kyhjonathan/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kyhjonathan/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Daviancold/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CXIA17/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/CXIA17/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/CXIA17/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nikhil-2101/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Daviancold/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Daviancold/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nkotaa/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nkotaa/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CXIA17/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Aak242/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/CXIA17/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/CXIA17/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Aak242/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Aak242/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nkotaa/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/1simjustin/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ShyamKrishna33/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LuoYu-uwu/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nkotaa/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [139/189] Analyzing https://github.com/1simjustin/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nkotaa/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nkotaa/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nikhil-2101/ip.git... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nikhil-2101/ip.git to complete... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [140/189] Analyzing https://github.com/nkotaa/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LuoYu-uwu/ip.git... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LuoYu-uwu/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [140/189] Analyzing https://github.com/ShyamKrishna33/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/a-wild-chocolate/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/a-wild-chocolate/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/1simjustin/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/1simjustin/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nkotaa/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nkotaa/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ShyamKrishna33/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [141/189] Analyzing https://github.com/ShyamKrishna33/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/a-wild-chocolate/ip.git... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nkotaa/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/a-wild-chocolate/ip.git to complete... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ShyamKrishna33/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ShyamKrishna33/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nkotaa/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nkotaa/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/1simjustin/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/EugeneChanJiajun/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/annoy-o-mus/ip.git... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [142/189] Analyzing https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/1simjustin/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/1simjustin/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/annoy-o-mus/ip.git to complete... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/EugeneChanJiajun/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ShyamKrishna33/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ShyamKrishna33/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ShyamKrishna33/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "a-wild-chocolate/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/a-wild-chocolate/ip.git' 'repos/a-wild-chocolate_ip/ip_bare' on path . : Cloning into bare repository 'repos/a-wild-chocolate_ip/ip_bare'... @@ -2739,58 +2781,46 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) - -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/annoy-o-mus/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/annoy-o-mus/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/1simjustin/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ShyamKrishna33/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/EugeneChanJiajun/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/1simjustin/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess + +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jasraa/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [141/189] Analyzing https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/1simjustin/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ShyamKrishna33/ip.git (master)... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ShyamKrishna33/ip.git (master) completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jasraa/ip.git to complete... -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nikhil-2101/ip.git completed! -Feb 04, 2024 4:18:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/EugeneChanJiajun/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LuoYu-uwu/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Fureimi/ip.git... -Feb 04, 2024 4:18:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [142/189] Analyzing https://github.com/nikhil-2101/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/EugeneChanJiajun/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [143/189] Analyzing https://github.com/LuoYu-uwu/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Fureimi/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nikhil-2101/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/z-wenqing/ip.git... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [144/189] Analyzing https://github.com/nikhil-2101/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/z-wenqing/ip.git to complete... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LuoYu-uwu/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LuoYu-uwu/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nikhil-2101/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nikhil-2101/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nikhil-2101/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/EugeneChanJiajun/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LuoYu-uwu/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LuoYu-uwu/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Fureimi/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Fureimi/ip.git' 'repos/Fureimi_ip/ip_bare' on path . : Cloning into bare repository 'repos/Fureimi_ip/ip_bare'... @@ -2806,67 +2836,63 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/z-wenqing/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [143/189] Analyzing https://github.com/LuoYu-uwu/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/IanFH/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/z-wenqing/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/IanFH/ip.git to complete... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LuoYu-uwu/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LuoYu-uwu/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nikhil-2101/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nikhil-2101/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/IanFH/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LuoYu-uwu/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LuoYu-uwu/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/annoy-o-mus/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [144/189] Analyzing https://github.com/annoy-o-mus/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [145/189] Analyzing https://github.com/annoy-o-mus/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nidhi-nayak/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nidhi-nayak/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LuoYu-uwu/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/annoy-o-mus/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/annoy-o-mus/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jasraa/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LuoYu-uwu/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LuoYu-uwu/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [145/189] Analyzing https://github.com/jasraa/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [146/189] Analyzing https://github.com/jasraa/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hailey-jung/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hailey-jung/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/annoy-o-mus/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jasraa/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jasraa/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/annoy-o-mus/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/annoy-o-mus/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/annoy-o-mus/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jasraa/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jasraa/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/z-wenqing/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jasraa/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [147/189] Analyzing https://github.com/z-wenqing/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JackieNeoCEG/ip.git... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JackieNeoCEG/ip.git to complete... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "hailey-jung/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/hailey-jung/ip.git' 'repos/hailey-jung_ip/ip_bare' on path . : Cloning into bare repository 'repos/hailey-jung_ip/ip_bare'... @@ -2882,591 +2908,563 @@ fatal: could not read Username for 'https://github.com': No such device or addre at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JackieNeoCEG/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JackieNeoCEG/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/IanFH/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [146/189] Analyzing https://github.com/IanFH/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/PureUsagi/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/PureUsagi/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/IanFH/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/IanFH/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/z-wenqing/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/z-wenqing/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/z-wenqing/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/z-wenqing/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/IanFH/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CerealMiller/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [147/189] Analyzing https://github.com/z-wenqing/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [148/189] Analyzing https://github.com/IanFH/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CerealMiller/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/z-wenqing/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/z-wenqing/ip.git (master) completed! +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/IanFH/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/IanFH/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nidhi-nayak/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/z-wenqing/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/z-wenqing/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [149/189] Analyzing https://github.com/nidhi-nayak/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sweijie24/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [148/189] Analyzing https://github.com/nidhi-nayak/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sweijie24/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nidhi-nayak/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nidhi-nayak/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/IanFH/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/IanFH/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/IanFH/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/z-wenqing/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/z-wenqing/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/z-wenqing/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nidhi-nayak/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nidhi-nayak/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JackieNeoCEG/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nidhi-nayak/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JackieNeoCEG/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [150/189] Analyzing https://github.com/JackieNeoCEG/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/XavierLiau34/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [149/189] Analyzing https://github.com/JackieNeoCEG/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/XavierLiau34/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CerealMiller/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/PureUsagi/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JustinSoh/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [150/189] Analyzing https://github.com/CerealMiller/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/damiwee/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/XavierLiau34/ip.git to complete... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [151/189] Analyzing https://github.com/PureUsagi/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JackieNeoCEG/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JackieNeoCEG/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/damiwee/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JustinSoh/ip.git... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JustinSoh/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CerealMiller/ip.git completed! +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PureUsagi/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PureUsagi/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JackieNeoCEG/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JackieNeoCEG/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [152/189] Analyzing https://github.com/CerealMiller/ip.git (master)... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/damiwee/ip.git... +Feb 04, 2024 4:27:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/damiwee/ip.git to complete... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/CerealMiller/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/CerealMiller/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JackieNeoCEG/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JackieNeoCEG/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JackieNeoCEG/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sweijie24/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JackieNeoCEG/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [153/189] Analyzing https://github.com/sweijie24/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Praneet-25/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [152/189] Analyzing https://github.com/sweijie24/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Praneet-25/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JackieNeoCEG/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JackieNeoCEG/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sweijie24/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sweijie24/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/PureUsagi/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/PureUsagi/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PureUsagi/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CerealMiller/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/XavierLiau34/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [153/189] Analyzing https://github.com/XavierLiau34/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PureUsagi/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [154/189] Analyzing https://github.com/XavierLiau34/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/StargazerX0/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/StargazerX0/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/XavierLiau34/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/XavierLiau34/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CerealMiller/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CerealMiller/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CerealMiller/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JustinSoh/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sweijie24/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/XavierLiau34/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sweijie24/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sweijie24/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/XavierLiau34/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/XavierLiau34/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JustinSoh/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Mmaxx15/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [154/189] Analyzing https://github.com/JustinSoh/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [155/189] Analyzing https://github.com/JustinSoh/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Mmaxx15/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/damiwee/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/XavierLiau34/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/XavierLiau34/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JustinSoh/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JustinSoh/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [155/189] Analyzing https://github.com/damiwee/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [156/189] Analyzing https://github.com/damiwee/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JeffinsonDarmawan/ip.git... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sweijie24/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sweijie24/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JeffinsonDarmawan/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Praneet-25/ip.git completed! -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HikoHikoHiko/ip.git... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [156/189] Analyzing https://github.com/Praneet-25/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/damiwee/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/damiwee/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/XavierLiau34/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [157/189] Analyzing https://github.com/Praneet-25/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HikoHikoHiko/ip.git... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/HikoHikoHiko/ip.git to complete... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/XavierLiau34/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/XavierLiau34/ip.git (master) completed! -Feb 04, 2024 4:18:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JustinSoh/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Praneet-25/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Praneet-25/ip.git (master)... -Feb 04, 2024 4:18:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JustinSoh/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/StargazerX0/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JustinSoh/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JustinSoh/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/StargazerX0/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [157/189] Analyzing https://github.com/StargazerX0/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [158/189] Analyzing https://github.com/StargazerX0/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Kishen271828/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kishen271828/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Mmaxx15/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/StargazerX0/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/StargazerX0/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Praneet-25/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [158/189] Analyzing https://github.com/Mmaxx15/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Mmaxx15/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JeffinsonDarmawan/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Joellimjr/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Joellimjr/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [159/189] Analyzing https://github.com/Mmaxx15/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/damiwee/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JeffinsonDarmawan/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HikoHikoHiko/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Mmaxx15/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Mmaxx15/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Praneet-25/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Praneet-25/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [159/189] Analyzing https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/claribelho/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/claribelho/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rexyyong/ip.git... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [160/189] Analyzing https://github.com/JeffinsonDarmawan/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Joellimjr/ip.git to complete... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/damiwee/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/damiwee/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [160/189] Analyzing https://github.com/HikoHikoHiko/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rexyyong/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/claribelho/ip.git to complete... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JeffinsonDarmawan/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Mmaxx15/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Mmaxx15/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HikoHikoHiko/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rexyyong/ip.git... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [161/189] Analyzing https://github.com/HikoHikoHiko/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/StargazerX0/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rexyyong/ip.git to complete... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HikoHikoHiko/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/StargazerX0/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HikoHikoHiko/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/StargazerX0/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/StargazerX0/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Kishen271828/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/T0nyLin/ip.git... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/StargazerX0/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/StargazerX0/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [162/189] Analyzing https://github.com/Kishen271828/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/T0nyLin/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [161/189] Analyzing https://github.com/Kishen271828/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Mmaxx15/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JeffinsonDarmawan/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kishen271828/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kishen271828/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Joellimjr/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Mmaxx15/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Mmaxx15/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Heart_of_N1/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [162/189] Analyzing https://github.com/Joellimjr/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Heart_of_N1/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JeffinsonDarmawan/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HikoHikoHiko/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Joellimjr/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HikoHikoHiko/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HikoHikoHiko/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kishen271828/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/liuzehui03/ip.git... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [163/189] Analyzing https://github.com/Joellimjr/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/liuzehui03/ip.git to complete... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kishen271828/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kishen271828/ip.git (master) completed! +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Joellimjr/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Joellimjr/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/claribelho/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HikoHikoHiko/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/liuzehui03/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [163/189] Analyzing https://github.com/claribelho/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rexyyong/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "Heart_of_N1/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Heart_of_N1/ip.git' 'repos/Heart_of_N1_ip/ip_bare' on path . : -Cloning into bare repository 'repos/Heart_of_N1_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [164/189] Analyzing https://github.com/claribelho/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/IncyBot/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/IncyBot/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/liuzehui03/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HikoHikoHiko/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HikoHikoHiko/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/claribelho/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/claribelho/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kishen271828/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [164/189] Analyzing https://github.com/rexyyong/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SuveenE/ip.git... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joellimjr/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SuveenE/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kishen271828/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kishen271828/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/T0nyLin/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joellimjr/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joellimjr/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [165/189] Analyzing https://github.com/T0nyLin/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nigelheng/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rexyyong/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SuveenE/ip.git... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [165/189] Analyzing https://github.com/rexyyong/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SuveenE/ip.git to complete... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/claribelho/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/rexyyong/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/rexyyong/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nigelheng/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/claribelho/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/T0nyLin/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/T0nyLin/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/claribelho/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/claribelho/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/T0nyLin/ip.git completed! +Feb 04, 2024 4:27:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [166/189] Analyzing https://github.com/T0nyLin/ip.git (master)... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nigelheng/ip.git... +Feb 04, 2024 4:27:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nigelheng/ip.git to complete... +Feb 04, 2024 4:27:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/rexyyong/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/T0nyLin/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/T0nyLin/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/T0nyLin/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/rexyyong/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/rexyyong/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/T0nyLin/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/liuzehui03/ip.git completed! +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/T0nyLin/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/T0nyLin/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/liuzehui03/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [166/189] Analyzing https://github.com/liuzehui03/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [167/189] Analyzing https://github.com/liuzehui03/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dextboy/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/IncyBot/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dextboy/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [167/189] Analyzing https://github.com/IncyBot/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lordgareth10/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lordgareth10/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/liuzehui03/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/liuzehui03/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/IncyBot/ip.git completed! +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lordgareth10/ip.git... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [168/189] Analyzing https://github.com/IncyBot/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lordgareth10/ip.git to complete... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/liuzehui03/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SuveenE/ip.git completed! +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/IncyBot/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/IncyBot/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SuveenE/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [168/189] Analyzing https://github.com/SuveenE/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JingHaoooo/ip.git... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/liuzehui03/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JingHaoooo/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nigelheng/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/IncyBot/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/liuzehui03/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/liuzehui03/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [169/189] Analyzing https://github.com/SuveenE/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JingHaoooo/ip.git... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JingHaoooo/ip.git to complete... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SuveenE/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SuveenE/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [169/189] Analyzing https://github.com/nigelheng/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Dheekshitha2/ip.git... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/IncyBot/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nigelheng/ip.git completed! +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/IncyBot/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/IncyBot/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Dheekshitha2/ip.git... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [170/189] Analyzing https://github.com/nigelheng/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Dheekshitha2/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SuveenE/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nigelheng/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nigelheng/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SuveenE/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nigelheng/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SuveenE/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SuveenE/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nigelheng/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nigelheng/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nigelheng/ip.git (master) completed! -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lordgareth10/ip.git completed! -Feb 04, 2024 4:18:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [170/189] Analyzing https://github.com/lordgareth10/ip.git (master)... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NGXZS/ip.git... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NGXZS/ip.git to complete... -Feb 04, 2024 4:18:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dextboy/ip.git completed! -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lordgareth10/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lordgareth10/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepos +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [171/189] Analyzing https://github.com/dextboy/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jthibault03/ip.git... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jthibault03/ip.git to complete... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NGXZS/ip.git... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NGXZS/ip.git to complete... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dextboy/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dextboy/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lordgareth10/ip.git completed! +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [172/189] Analyzing https://github.com/lordgareth10/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jthibault03/ip.git... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jthibault03/ip.git to complete... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dextboy/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lordgareth10/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lordgareth10/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dextboy/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dextboy/ip.git (master) completed! +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JingHaoooo/ip.git completed! -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lordgareth10/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [172/189] Analyzing https://github.com/JingHaoooo/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [173/189] Analyzing https://github.com/JingHaoooo/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Haotian199/ip.git... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Haotian199/ip.git to complete... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lordgareth10/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JingHaoooo/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JingHaoooo/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lordgareth10/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lordgareth10/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Dheekshitha2/ip.git completed! -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [173/189] Analyzing https://github.com/Dheekshitha2/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [174/189] Analyzing https://github.com/Dheekshitha2/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Kobot7/ip.git... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JingHaoooo/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JingHaoooo/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kobot7/ip.git to complete... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dextboy/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Dheekshitha2/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Dheekshitha2/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dextboy/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dextboy/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JingHaoooo/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JingHaoooo/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JingHaoooo/ip.git (master) completed! +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Dheekshitha2/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/NGXZS/ip.git completed! -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JingHaoooo/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Dheekshitha2/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Dheekshitha2/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [174/189] Analyzing https://github.com/NGXZS/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JingHaoooo/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JingHaoooo/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jthibault03/ip.git completed! -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [175/189] Analyzing https://github.com/jthibault03/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [175/189] Analyzing https://github.com/NGXZS/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NGXZS/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NGXZS/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jthibault03/ip.git completed! +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [176/189] Analyzing https://github.com/jthibault03/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NGXZS/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jthibault03/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jthibault03/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NGXZS/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NGXZS/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NGXZS/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Haotian199/ip.git completed! -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [177/189] Analyzing https://github.com/Haotian199/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jthibault03/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [176/189] Analyzing https://github.com/Haotian199/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jthibault03/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jthibault03/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kobot7/ip.git completed! -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Haotian199/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Haotian199/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [177/189] Analyzing https://github.com/Kobot7/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Kobot7/ip.git (master) does not contain a standalone config file. -Feb 04, 2024 4:18:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Kobot7/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kobot7/ip.git completed! +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [178/189] Analyzing https://github.com/Kobot7/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Haotian199/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Kobot7/ip.git (master) does not contain a standalone config file. +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Haotian199/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Kobot7/ip.git (master)... +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Haotian199/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Kobot7/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 04, 2024 4:27:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Kobot7/ip.git (master)... -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Kobot7/ip.git (master) completed! -Feb 04, 2024 4:18:35 AM reposense.report.ReportGenerator generateReposReport +Feb 04, 2024 4:27:31 AM reposense.report.ReportGenerator generateReposReport INFO: The report is generated at /home/runner/work/ip-dashboard/ip-dashboard/reposense-report -Feb 04, 2024 4:18:35 AM reposense.RepoSense main -INFO: Elapsed processing time: 13.69 second(s) +Feb 04, 2024 4:27:31 AM reposense.RepoSense main +INFO: Elapsed processing time: 13.81 second(s) diff --git a/summary.json b/summary.json index 28be2479..b62ade85 100644 --- a/summary.json +++ b/summary.json @@ -1 +1 @@ -{"repoSenseVersion":"7977382dfe","reportGeneratedTime":"Sun Feb 4 12:18:22 2024 UTC+08:00","reportGenerationTime":" 13.52 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2113 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/V4Vern/ip.git","repoName":"ip","organization":"V4Vern","domainName":"github"},"branch":"master","displayName":"V4Vern/ip[master]","outputFolderName":"V4Vern_ip_master"},{"location":{"location":"https://github.com/Cohii2/ip.git","repoName":"ip","organization":"Cohii2","domainName":"github"},"branch":"master","displayName":"Cohii2/ip[master]","outputFolderName":"Cohii2_ip_master"},{"location":{"location":"https://github.com/yuki-zmstr/ip.git","repoName":"ip","organization":"yuki-zmstr","domainName":"github"},"branch":"master","displayName":"yuki-zmstr/ip[master]","outputFolderName":"yuki-zmstr_ip_master"},{"location":{"location":"https://github.com/RyanTDL/ip.git","repoName":"ip","organization":"RyanTDL","domainName":"github"},"branch":"master","displayName":"RyanTDL/ip[master]","outputFolderName":"RyanTDL_ip_master"},{"location":{"location":"https://github.com/yeozhishen/ip.git","repoName":"ip","organization":"yeozhishen","domainName":"github"},"branch":"master","displayName":"yeozhishen/ip[master]","outputFolderName":"yeozhishen_ip_master"},{"location":{"location":"https://github.com/owx0130/ip.git","repoName":"ip","organization":"owx0130","domainName":"github"},"branch":"master","displayName":"owx0130/ip[master]","outputFolderName":"owx0130_ip_master"},{"location":{"location":"https://github.com/BenjoBurger/ip.git","repoName":"ip","organization":"BenjoBurger","domainName":"github"},"branch":"master","displayName":"BenjoBurger/ip[master]","outputFolderName":"BenjoBurger_ip_master"},{"location":{"location":"https://github.com/genexus85/ip.git","repoName":"ip","organization":"genexus85","domainName":"github"},"branch":"master","displayName":"genexus85/ip[master]","outputFolderName":"genexus85_ip_master"},{"location":{"location":"https://github.com/CerealMiller/ip.git","repoName":"ip","organization":"CerealMiller","domainName":"github"},"branch":"master","displayName":"CerealMiller/ip[master]","outputFolderName":"CerealMiller_ip_master"},{"location":{"location":"https://github.com/HengShuHong/ip.git","repoName":"ip","organization":"HengShuHong","domainName":"github"},"branch":"master","displayName":"HengShuHong/ip[master]","outputFolderName":"HengShuHong_ip_master"},{"location":{"location":"https://github.com/samuelory/ip.git","repoName":"ip","organization":"samuelory","domainName":"github"},"branch":"master","displayName":"samuelory/ip[master]","outputFolderName":"samuelory_ip_master"},{"location":{"location":"https://github.com/LowTL/ip.git","repoName":"ip","organization":"LowTL","domainName":"github"},"branch":"master","displayName":"LowTL/ip[master]","outputFolderName":"LowTL_ip_master"},{"location":{"location":"https://github.com/cyhjason29/ip.git","repoName":"ip","organization":"cyhjason29","domainName":"github"},"branch":"master","displayName":"cyhjason29/ip[master]","outputFolderName":"cyhjason29_ip_master"},{"location":{"location":"https://github.com/Leong-ZM/ip.git","repoName":"ip","organization":"Leong-ZM","domainName":"github"},"branch":"master","displayName":"Leong-ZM/ip[master]","outputFolderName":"Leong-ZM_ip_master"},{"location":{"location":"https://github.com/alvinnnnnnnnnn/ip.git","repoName":"ip","organization":"alvinnnnnnnnnn","domainName":"github"},"branch":"master","displayName":"alvinnnnnnnnnn/ip[master]","outputFolderName":"alvinnnnnnnnnn_ip_master"},{"location":{"location":"https://github.com/jing-xiang/ip.git","repoName":"ip","organization":"jing-xiang","domainName":"github"},"branch":"master","displayName":"jing-xiang/ip[master]","outputFolderName":"jing-xiang_ip_master"},{"location":{"location":"https://github.com/fungg0/ip.git","repoName":"ip","organization":"fungg0","domainName":"github"},"branch":"master","displayName":"fungg0/ip[master]","outputFolderName":"fungg0_ip_master"},{"location":{"location":"https://github.com/webtjs/ip.git","repoName":"ip","organization":"webtjs","domainName":"github"},"branch":"master","displayName":"webtjs/ip[master]","outputFolderName":"webtjs_ip_master"},{"location":{"location":"https://github.com/sxfoo/ip.git","repoName":"ip","organization":"sxfoo","domainName":"github"},"branch":"master","displayName":"sxfoo/ip[master]","outputFolderName":"sxfoo_ip_master"},{"location":{"location":"https://github.com/daryltay415/ip.git","repoName":"ip","organization":"daryltay415","domainName":"github"},"branch":"master","displayName":"daryltay415/ip[master]","outputFolderName":"daryltay415_ip_master"},{"location":{"location":"https://github.com/yuhengr/ip.git","repoName":"ip","organization":"yuhengr","domainName":"github"},"branch":"master","displayName":"yuhengr/ip[master]","outputFolderName":"yuhengr_ip_master"},{"location":{"location":"https://github.com/Joellimjr/ip.git","repoName":"ip","organization":"Joellimjr","domainName":"github"},"branch":"master","displayName":"Joellimjr/ip[master]","outputFolderName":"Joellimjr_ip_master"},{"location":{"location":"https://github.com/ParthGandhiNUS/ip.git","repoName":"ip","organization":"ParthGandhiNUS","domainName":"github"},"branch":"master","displayName":"ParthGandhiNUS/ip[master]","outputFolderName":"ParthGandhiNUS_ip_master"},{"location":{"location":"https://github.com/cirelesna/ip.git","repoName":"ip","organization":"cirelesna","domainName":"github"},"branch":"master","displayName":"cirelesna/ip[master]","outputFolderName":"cirelesna_ip_master"},{"location":{"location":"https://github.com/seandooa/ip.git","repoName":"ip","organization":"seandooa","domainName":"github"},"branch":"master","displayName":"seandooa/ip[master]","outputFolderName":"seandooa_ip_master"},{"location":{"location":"https://github.com/rismm/ip.git","repoName":"ip","organization":"rismm","domainName":"github"},"branch":"master","displayName":"rismm/ip[master]","outputFolderName":"rismm_ip_master"},{"location":{"location":"https://github.com/damiwee/ip.git","repoName":"ip","organization":"damiwee","domainName":"github"},"branch":"master","displayName":"damiwee/ip[master]","outputFolderName":"damiwee_ip_master"},{"location":{"location":"https://github.com/alalal47/ip.git","repoName":"ip","organization":"alalal47","domainName":"github"},"branch":"master","displayName":"alalal47/ip[master]","outputFolderName":"alalal47_ip_master"},{"location":{"location":"https://github.com/awesomesjh/ip.git","repoName":"ip","organization":"awesomesjh","domainName":"github"},"branch":"master","displayName":"awesomesjh/ip[master]","outputFolderName":"awesomesjh_ip_master"},{"location":{"location":"https://github.com/Daviancold/ip.git","repoName":"ip","organization":"Daviancold","domainName":"github"},"branch":"master","displayName":"Daviancold/ip[master]","outputFolderName":"Daviancold_ip_master"},{"location":{"location":"https://github.com/chenhowy/ip.git","repoName":"ip","organization":"chenhowy","domainName":"github"},"branch":"master","displayName":"chenhowy/ip[master]","outputFolderName":"chenhowy_ip_master"},{"location":{"location":"https://github.com/rexyyong/ip.git","repoName":"ip","organization":"rexyyong","domainName":"github"},"branch":"master","displayName":"rexyyong/ip[master]","outputFolderName":"rexyyong_ip_master"},{"location":{"location":"https://github.com/Zhengwinter/ip.git","repoName":"ip","organization":"Zhengwinter","domainName":"github"},"branch":"master","displayName":"Zhengwinter/ip[master]","outputFolderName":"Zhengwinter_ip_master"},{"location":{"location":"https://github.com/Cryolian/ip.git","repoName":"ip","organization":"Cryolian","domainName":"github"},"branch":"master","displayName":"Cryolian/ip[master]","outputFolderName":"Cryolian_ip_master"},{"location":{"location":"https://github.com/paturikarthik/ip.git","repoName":"ip","organization":"paturikarthik","domainName":"github"},"branch":"master","displayName":"paturikarthik/ip[master]","outputFolderName":"paturikarthik_ip_master"},{"location":{"location":"https://github.com/ChinYanXu/ip.git","repoName":"ip","organization":"ChinYanXu","domainName":"github"},"branch":"master","displayName":"ChinYanXu/ip[master]","outputFolderName":"ChinYanXu_ip_master"},{"location":{"location":"https://github.com/dtaywd/ip.git","repoName":"ip","organization":"dtaywd","domainName":"github"},"branch":"master","displayName":"dtaywd/ip[master]","outputFolderName":"dtaywd_ip_master"},{"location":{"location":"https://github.com/wallywallywally/ip.git","repoName":"ip","organization":"wallywallywally","domainName":"github"},"branch":"master","displayName":"wallywallywally/ip[master]","outputFolderName":"wallywallywally_ip_master"},{"location":{"location":"https://github.com/yeozongyao/ip.git","repoName":"ip","organization":"yeozongyao","domainName":"github"},"branch":"master","displayName":"yeozongyao/ip[master]","outputFolderName":"yeozongyao_ip_master"},{"location":{"location":"https://github.com/isaaceng7/ip.git","repoName":"ip","organization":"isaaceng7","domainName":"github"},"branch":"master","displayName":"isaaceng7/ip[master]","outputFolderName":"isaaceng7_ip_master"},{"location":{"location":"https://github.com/NGXZS/ip.git","repoName":"ip","organization":"NGXZS","domainName":"github"},"branch":"master","displayName":"NGXZS/ip[master]","outputFolderName":"NGXZS_ip_master"},{"location":{"location":"https://github.com/sweijie24/ip.git","repoName":"ip","organization":"sweijie24","domainName":"github"},"branch":"master","displayName":"sweijie24/ip[master]","outputFolderName":"sweijie24_ip_master"},{"location":{"location":"https://github.com/itsmejr257/ip.git","repoName":"ip","organization":"itsmejr257","domainName":"github"},"branch":"master","displayName":"itsmejr257/ip[master]","outputFolderName":"itsmejr257_ip_master"},{"location":{"location":"https://github.com/joshualeejunyi/ip.git","repoName":"ip","organization":"joshualeejunyi","domainName":"github"},"branch":"master","displayName":"joshualeejunyi/ip[master]","outputFolderName":"joshualeejunyi_ip_master"},{"location":{"location":"https://github.com/Vavinan/ip.git","repoName":"ip","organization":"Vavinan","domainName":"github"},"branch":"master","displayName":"Vavinan/ip[master]","outputFolderName":"Vavinan_ip_master"},{"location":{"location":"https://github.com/64-1/ip.git","repoName":"ip","organization":"64-1","domainName":"github"},"branch":"master","displayName":"64-1/ip[master]","outputFolderName":"64-1_ip_master"},{"location":{"location":"https://github.com/Xb990219/ip.git","repoName":"ip","organization":"Xb990219","domainName":"github"},"branch":"master","displayName":"Xb990219/ip[master]","outputFolderName":"Xb990219_ip_master"},{"location":{"location":"https://github.com/ThawTunZan/ip.git","repoName":"ip","organization":"ThawTunZan","domainName":"github"},"branch":"master","displayName":"ThawTunZan/ip[master]","outputFolderName":"ThawTunZan_ip_master"},{"location":{"location":"https://github.com/djleong01/ip.git","repoName":"ip","organization":"djleong01","domainName":"github"},"branch":"master","displayName":"djleong01/ip[master]","outputFolderName":"djleong01_ip_master"},{"location":{"location":"https://github.com/MonkeScripts/ip.git","repoName":"ip","organization":"MonkeScripts","domainName":"github"},"branch":"master","displayName":"MonkeScripts/ip[master]","outputFolderName":"MonkeScripts_ip_master"},{"location":{"location":"https://github.com/chenxk619/ip.git","repoName":"ip","organization":"chenxk619","domainName":"github"},"branch":"master","displayName":"chenxk619/ip[master]","outputFolderName":"chenxk619_ip_master"},{"location":{"location":"https://github.com/hwc0419/ip.git","repoName":"ip","organization":"hwc0419","domainName":"github"},"branch":"master","displayName":"hwc0419/ip[master]","outputFolderName":"hwc0419_ip_master"},{"location":{"location":"https://github.com/JackieNeoCEG/ip.git","repoName":"ip","organization":"JackieNeoCEG","domainName":"github"},"branch":"master","displayName":"JackieNeoCEG/ip[master]","outputFolderName":"JackieNeoCEG_ip_master"},{"location":{"location":"https://github.com/Mmaxx15/ip.git","repoName":"ip","organization":"Mmaxx15","domainName":"github"},"branch":"master","displayName":"Mmaxx15/ip[master]","outputFolderName":"Mmaxx15_ip_master"},{"location":{"location":"https://github.com/clarencepohh/ip.git","repoName":"ip","organization":"clarencepohh","domainName":"github"},"branch":"master","displayName":"clarencepohh/ip[master]","outputFolderName":"clarencepohh_ip_master"},{"location":{"location":"https://github.com/NicholasTanYY/ip.git","repoName":"ip","organization":"NicholasTanYY","domainName":"github"},"branch":"master","displayName":"NicholasTanYY/ip[master]","outputFolderName":"NicholasTanYY_ip_master"},{"location":{"location":"https://github.com/HikoHikoHiko/ip.git","repoName":"ip","organization":"HikoHikoHiko","domainName":"github"},"branch":"master","displayName":"HikoHikoHiko/ip[master]","outputFolderName":"HikoHikoHiko_ip_master"},{"location":{"location":"https://github.com/soongensayo/ip.git","repoName":"ip","organization":"soongensayo","domainName":"github"},"branch":"master","displayName":"soongensayo/ip[master]","outputFolderName":"soongensayo_ip_master"},{"location":{"location":"https://github.com/nikhil-2101/ip.git","repoName":"ip","organization":"nikhil-2101","domainName":"github"},"branch":"master","displayName":"nikhil-2101/ip[master]","outputFolderName":"nikhil-2101_ip_master"},{"location":{"location":"https://github.com/Praneet-25/ip.git","repoName":"ip","organization":"Praneet-25","domainName":"github"},"branch":"master","displayName":"Praneet-25/ip[master]","outputFolderName":"Praneet-25_ip_master"},{"location":{"location":"https://github.com/mukund1403/ip.git","repoName":"ip","organization":"mukund1403","domainName":"github"},"branch":"master","displayName":"mukund1403/ip[master]","outputFolderName":"mukund1403_ip_master"},{"location":{"location":"https://github.com/nicknamenic/ip.git","repoName":"ip","organization":"nicknamenic","domainName":"github"},"branch":"master","displayName":"nicknamenic/ip[master]","outputFolderName":"nicknamenic_ip_master"},{"location":{"location":"https://github.com/BryanCastorius/ip.git","repoName":"ip","organization":"BryanCastorius","domainName":"github"},"branch":"master","displayName":"BryanCastorius/ip[master]","outputFolderName":"BryanCastorius_ip_master"},{"location":{"location":"https://github.com/PDHung1104/ip.git","repoName":"ip","organization":"PDHung1104","domainName":"github"},"branch":"master","displayName":"PDHung1104/ip[master]","outputFolderName":"PDHung1104_ip_master"},{"location":{"location":"https://github.com/jasonlienardi/ip.git","repoName":"ip","organization":"jasonlienardi","domainName":"github"},"branch":"master","displayName":"jasonlienardi/ip[master]","outputFolderName":"jasonlienardi_ip_master"},{"location":{"location":"https://github.com/edwardhumi/ip.git","repoName":"ip","organization":"edwardhumi","domainName":"github"},"branch":"master","displayName":"edwardhumi/ip[master]","outputFolderName":"edwardhumi_ip_master"},{"location":{"location":"https://github.com/z-wenqing/ip.git","repoName":"ip","organization":"z-wenqing","domainName":"github"},"branch":"master","displayName":"z-wenqing/ip[master]","outputFolderName":"z-wenqing_ip_master"},{"location":{"location":"https://github.com/Joshuahoky/ip.git","repoName":"ip","organization":"Joshuahoky","domainName":"github"},"branch":"master","displayName":"Joshuahoky/ip[master]","outputFolderName":"Joshuahoky_ip_master"},{"location":{"location":"https://github.com/Dheekshitha2/ip.git","repoName":"ip","organization":"Dheekshitha2","domainName":"github"},"branch":"master","displayName":"Dheekshitha2/ip[master]","outputFolderName":"Dheekshitha2_ip_master"},{"location":{"location":"https://github.com/liuy1103/ip.git","repoName":"ip","organization":"liuy1103","domainName":"github"},"branch":"master","displayName":"liuy1103/ip[master]","outputFolderName":"liuy1103_ip_master"},{"location":{"location":"https://github.com/hongyijie06/ip.git","repoName":"ip","organization":"hongyijie06","domainName":"github"},"branch":"master","displayName":"hongyijie06/ip[master]","outputFolderName":"hongyijie06_ip_master"},{"location":{"location":"https://github.com/liuzehui03/ip.git","repoName":"ip","organization":"liuzehui03","domainName":"github"},"branch":"master","displayName":"liuzehui03/ip[master]","outputFolderName":"liuzehui03_ip_master"},{"location":{"location":"https://github.com/ZhuSijia0711/ip.git","repoName":"ip","organization":"ZhuSijia0711","domainName":"github"},"branch":"master","displayName":"ZhuSijia0711/ip[master]","outputFolderName":"ZhuSijia0711_ip_master"},{"location":{"location":"https://github.com/hafizuddin-a/ip.git","repoName":"ip","organization":"hafizuddin-a","domainName":"github"},"branch":"master","displayName":"hafizuddin-a/ip[master]","outputFolderName":"hafizuddin-a_ip_master"},{"location":{"location":"https://github.com/jasraa/ip.git","repoName":"ip","organization":"jasraa","domainName":"github"},"branch":"master","displayName":"jasraa/ip[master]","outputFolderName":"jasraa_ip_master"},{"location":{"location":"https://github.com/claribelho/ip.git","repoName":"ip","organization":"claribelho","domainName":"github"},"branch":"master","displayName":"claribelho/ip[master]","outputFolderName":"claribelho_ip_master"},{"location":{"location":"https://github.com/ZMinghuiZ/ip.git","repoName":"ip","organization":"ZMinghuiZ","domainName":"github"},"branch":"master","displayName":"ZMinghuiZ/ip[master]","outputFolderName":"ZMinghuiZ_ip_master"},{"location":{"location":"https://github.com/fxe025/ip.git","repoName":"ip","organization":"fxe025","domainName":"github"},"branch":"master","displayName":"fxe025/ip[master]","outputFolderName":"fxe025_ip_master"},{"location":{"location":"https://github.com/YoengKokLeong/ip.git","repoName":"ip","organization":"YoengKokLeong","domainName":"github"},"branch":"master","displayName":"YoengKokLeong/ip[master]","outputFolderName":"YoengKokLeong_ip_master"},{"location":{"location":"https://github.com/1simjustin/ip.git","repoName":"ip","organization":"1simjustin","domainName":"github"},"branch":"master","displayName":"1simjustin/ip[master]","outputFolderName":"1simjustin_ip_master"},{"location":{"location":"https://github.com/dextboy/ip.git","repoName":"ip","organization":"dextboy","domainName":"github"},"branch":"master","displayName":"dextboy/ip[master]","outputFolderName":"dextboy_ip_master"},{"location":{"location":"https://github.com/ZhangWenyue3325/ip.git","repoName":"ip","organization":"ZhangWenyue3325","domainName":"github"},"branch":"master","displayName":"ZhangWenyue3325/ip[master]","outputFolderName":"ZhangWenyue3325_ip_master"},{"location":{"location":"https://github.com/ZhouJunmin/ip.git","repoName":"ip","organization":"ZhouJunmin","domainName":"github"},"branch":"master","displayName":"ZhouJunmin/ip[master]","outputFolderName":"ZhouJunmin_ip_master"},{"location":{"location":"https://github.com/LuoYu-uwu/ip.git","repoName":"ip","organization":"LuoYu-uwu","domainName":"github"},"branch":"master","displayName":"LuoYu-uwu/ip[master]","outputFolderName":"LuoYu-uwu_ip_master"},{"location":{"location":"https://github.com/FeathersRe/ip.git","repoName":"ip","organization":"FeathersRe","domainName":"github"},"branch":"master","displayName":"FeathersRe/ip[master]","outputFolderName":"FeathersRe_ip_master"},{"location":{"location":"https://github.com/tayponghee/ip.git","repoName":"ip","organization":"tayponghee","domainName":"github"},"branch":"master","displayName":"tayponghee/ip[master]","outputFolderName":"tayponghee_ip_master"},{"location":{"location":"https://github.com/tannerlie/ip.git","repoName":"ip","organization":"tannerlie","domainName":"github"},"branch":"master","displayName":"tannerlie/ip[master]","outputFolderName":"tannerlie_ip_master"},{"location":{"location":"https://github.com/ChenKangg/ip.git","repoName":"ip","organization":"ChenKangg","domainName":"github"},"branch":"master","displayName":"ChenKangg/ip[master]","outputFolderName":"ChenKangg_ip_master"},{"location":{"location":"https://github.com/IanFH/ip.git","repoName":"ip","organization":"IanFH","domainName":"github"},"branch":"master","displayName":"IanFH/ip[master]","outputFolderName":"IanFH_ip_master"},{"location":{"location":"https://github.com/JianJiaT/ip.git","repoName":"ip","organization":"JianJiaT","domainName":"github"},"branch":"master","displayName":"JianJiaT/ip[master]","outputFolderName":"JianJiaT_ip_master"},{"location":{"location":"https://github.com/Ijaaz01/ip.git","repoName":"ip","organization":"Ijaaz01","domainName":"github"},"branch":"master","displayName":"Ijaaz01/ip[master]","outputFolderName":"Ijaaz01_ip_master"},{"location":{"location":"https://github.com/EugeneChanJiajun/ip.git","repoName":"ip","organization":"EugeneChanJiajun","domainName":"github"},"branch":"master","displayName":"EugeneChanJiajun/ip[master]","outputFolderName":"EugeneChanJiajun_ip_master"},{"location":{"location":"https://github.com/kyhjonathan/ip.git","repoName":"ip","organization":"kyhjonathan","domainName":"github"},"branch":"master","displayName":"kyhjonathan/ip[master]","outputFolderName":"kyhjonathan_ip_master"},{"location":{"location":"https://github.com/Luo-Z-Y/ip.git","repoName":"ip","organization":"Luo-Z-Y","domainName":"github"},"branch":"master","displayName":"Luo-Z-Y/ip[master]","outputFolderName":"Luo-Z-Y_ip_master"},{"location":{"location":"https://github.com/JingHaoooo/ip.git","repoName":"ip","organization":"JingHaoooo","domainName":"github"},"branch":"master","displayName":"JingHaoooo/ip[master]","outputFolderName":"JingHaoooo_ip_master"},{"location":{"location":"https://github.com/blackmirag3/ip.git","repoName":"ip","organization":"blackmirag3","domainName":"github"},"branch":"master","displayName":"blackmirag3/ip[master]","outputFolderName":"blackmirag3_ip_master"},{"location":{"location":"https://github.com/luozihui2003/ip.git","repoName":"ip","organization":"luozihui2003","domainName":"github"},"branch":"master","displayName":"luozihui2003/ip[master]","outputFolderName":"luozihui2003_ip_master"},{"location":{"location":"https://github.com/adamzzq/ip.git","repoName":"ip","organization":"adamzzq","domainName":"github"},"branch":"master","displayName":"adamzzq/ip[master]","outputFolderName":"adamzzq_ip_master"},{"location":{"location":"https://github.com/OKW32/ip.git","repoName":"ip","organization":"OKW32","domainName":"github"},"branch":"master","displayName":"OKW32/ip[master]","outputFolderName":"OKW32_ip_master"},{"location":{"location":"https://github.com/Haotian199/ip.git","repoName":"ip","organization":"Haotian199","domainName":"github"},"branch":"master","displayName":"Haotian199/ip[master]","outputFolderName":"Haotian199_ip_master"},{"location":{"location":"https://github.com/kirangeofran/ip.git","repoName":"ip","organization":"kirangeofran","domainName":"github"},"branch":"master","displayName":"kirangeofran/ip[master]","outputFolderName":"kirangeofran_ip_master"},{"location":{"location":"https://github.com/B1G-SAM/ip.git","repoName":"ip","organization":"B1G-SAM","domainName":"github"},"branch":"master","displayName":"B1G-SAM/ip[master]","outputFolderName":"B1G-SAM_ip_master"},{"location":{"location":"https://github.com/yyangdaa/ip.git","repoName":"ip","organization":"yyangdaa","domainName":"github"},"branch":"master","displayName":"yyangdaa/ip[master]","outputFolderName":"yyangdaa_ip_master"},{"location":{"location":"https://github.com/runxinghuan/ip.git","repoName":"ip","organization":"runxinghuan","domainName":"github"},"branch":"master","displayName":"runxinghuan/ip[master]","outputFolderName":"runxinghuan_ip_master"},{"location":{"location":"https://github.com/nigelheng/ip.git","repoName":"ip","organization":"nigelheng","domainName":"github"},"branch":"master","displayName":"nigelheng/ip[master]","outputFolderName":"nigelheng_ip_master"},{"location":{"location":"https://github.com/cayennegoh/ip.git","repoName":"ip","organization":"cayennegoh","domainName":"github"},"branch":"master","displayName":"cayennegoh/ip[master]","outputFolderName":"cayennegoh_ip_master"},{"location":{"location":"https://github.com/lordgareth10/ip.git","repoName":"ip","organization":"lordgareth10","domainName":"github"},"branch":"master","displayName":"lordgareth10/ip[master]","outputFolderName":"lordgareth10_ip_master"},{"location":{"location":"https://github.com/vimalapugazhan/ip.git","repoName":"ip","organization":"vimalapugazhan","domainName":"github"},"branch":"master","displayName":"vimalapugazhan/ip[master]","outputFolderName":"vimalapugazhan_ip_master"},{"location":{"location":"https://github.com/shawnpong/ip.git","repoName":"ip","organization":"shawnpong","domainName":"github"},"branch":"master","displayName":"shawnpong/ip[master]","outputFolderName":"shawnpong_ip_master"},{"location":{"location":"https://github.com/TimothyLKM/ip.git","repoName":"ip","organization":"TimothyLKM","domainName":"github"},"branch":"master","displayName":"TimothyLKM/ip[master]","outputFolderName":"TimothyLKM_ip_master"},{"location":{"location":"https://github.com/JeffinsonDarmawan/ip.git","repoName":"ip","organization":"JeffinsonDarmawan","domainName":"github"},"branch":"master","displayName":"JeffinsonDarmawan/ip[master]","outputFolderName":"JeffinsonDarmawan_ip_master"},{"location":{"location":"https://github.com/iscyng/ip.git","repoName":"ip","organization":"iscyng","domainName":"github"},"branch":"master","displayName":"iscyng/ip[master]","outputFolderName":"iscyng_ip_master"},{"location":{"location":"https://github.com/Hws2209/ip.git","repoName":"ip","organization":"Hws2209","domainName":"github"},"branch":"master","displayName":"Hws2209/ip[master]","outputFolderName":"Hws2209_ip_master"},{"location":{"location":"https://github.com/nyh3/ip.git","repoName":"ip","organization":"nyh3","domainName":"github"},"branch":"master","displayName":"nyh3/ip[master]","outputFolderName":"nyh3_ip_master"},{"location":{"location":"https://github.com/anneleong/ip.git","repoName":"ip","organization":"anneleong","domainName":"github"},"branch":"master","displayName":"anneleong/ip[master]","outputFolderName":"anneleong_ip_master"},{"location":{"location":"https://github.com/CXIA17/ip.git","repoName":"ip","organization":"CXIA17","domainName":"github"},"branch":"master","displayName":"CXIA17/ip[master]","outputFolderName":"CXIA17_ip_master"},{"location":{"location":"https://github.com/AhmedShaiyan/ip.git","repoName":"ip","organization":"AhmedShaiyan","domainName":"github"},"branch":"master","displayName":"AhmedShaiyan/ip[master]","outputFolderName":"AhmedShaiyan_ip_master"},{"location":{"location":"https://github.com/pradeep-cod/ip.git","repoName":"ip","organization":"pradeep-cod","domainName":"github"},"branch":"master","displayName":"pradeep-cod/ip[master]","outputFolderName":"pradeep-cod_ip_master"},{"location":{"location":"https://github.com/STeng618/ip.git","repoName":"ip","organization":"STeng618","domainName":"github"},"branch":"master","displayName":"STeng618/ip[master]","outputFolderName":"STeng618_ip_master"},{"location":{"location":"https://github.com/HiteshriAcharya/ip.git","repoName":"ip","organization":"HiteshriAcharya","domainName":"github"},"branch":"master","displayName":"HiteshriAcharya/ip[master]","outputFolderName":"HiteshriAcharya_ip_master"},{"location":{"location":"https://github.com/avrilgk/ip.git","repoName":"ip","organization":"avrilgk","domainName":"github"},"branch":"master","displayName":"avrilgk/ip[master]","outputFolderName":"avrilgk_ip_master"},{"location":{"location":"https://github.com/IncyBot/ip.git","repoName":"ip","organization":"IncyBot","domainName":"github"},"branch":"master","displayName":"IncyBot/ip[master]","outputFolderName":"IncyBot_ip_master"},{"location":{"location":"https://github.com/ymirmeddeb/ip.git","repoName":"ip","organization":"ymirmeddeb","domainName":"github"},"branch":"master","displayName":"ymirmeddeb/ip[master]","outputFolderName":"ymirmeddeb_ip_master"},{"location":{"location":"https://github.com/Aak242/ip.git","repoName":"ip","organization":"Aak242","domainName":"github"},"branch":"master","displayName":"Aak242/ip[master]","outputFolderName":"Aak242_ip_master"},{"location":{"location":"https://github.com/aaravrawal52/ip.git","repoName":"ip","organization":"aaravrawal52","domainName":"github"},"branch":"master","displayName":"aaravrawal52/ip[master]","outputFolderName":"aaravrawal52_ip_master"},{"location":{"location":"https://github.com/ChongXern/ip.git","repoName":"ip","organization":"ChongXern","domainName":"github"},"branch":"master","displayName":"ChongXern/ip[master]","outputFolderName":"ChongXern_ip_master"},{"location":{"location":"https://github.com/Jamarcus111/ip.git","repoName":"ip","organization":"Jamarcus111","domainName":"github"},"branch":"master","displayName":"Jamarcus111/ip[master]","outputFolderName":"Jamarcus111_ip_master"},{"location":{"location":"https://github.com/BestDownLoader365/ip.git","repoName":"ip","organization":"BestDownLoader365","domainName":"github"},"branch":"master","displayName":"BestDownLoader365/ip[master]","outputFolderName":"BestDownLoader365_ip_master"},{"location":{"location":"https://github.com/ShyamKrishna33/ip.git","repoName":"ip","organization":"ShyamKrishna33","domainName":"github"},"branch":"master","displayName":"ShyamKrishna33/ip[master]","outputFolderName":"ShyamKrishna33_ip_master"},{"location":{"location":"https://github.com/StargazerX0/ip.git","repoName":"ip","organization":"StargazerX0","domainName":"github"},"branch":"master","displayName":"StargazerX0/ip[master]","outputFolderName":"StargazerX0_ip_master"},{"location":{"location":"https://github.com/eliztan/ip.git","repoName":"ip","organization":"eliztan","domainName":"github"},"branch":"master","displayName":"eliztan/ip[master]","outputFolderName":"eliztan_ip_master"},{"location":{"location":"https://github.com/SuveenE/ip.git","repoName":"ip","organization":"SuveenE","domainName":"github"},"branch":"master","displayName":"SuveenE/ip[master]","outputFolderName":"SuveenE_ip_master"},{"location":{"location":"https://github.com/Mahesh1772/ip.git","repoName":"ip","organization":"Mahesh1772","domainName":"github"},"branch":"master","displayName":"Mahesh1772/ip[master]","outputFolderName":"Mahesh1772_ip_master"},{"location":{"location":"https://github.com/Elyovs/ip.git","repoName":"ip","organization":"Elyovs","domainName":"github"},"branch":"master","displayName":"Elyovs/ip[master]","outputFolderName":"Elyovs_ip_master"},{"location":{"location":"https://github.com/vibes-863/ip.git","repoName":"ip","organization":"vibes-863","domainName":"github"},"branch":"master","displayName":"vibes-863/ip[master]","outputFolderName":"vibes-863_ip_master"},{"location":{"location":"https://github.com/Kishen271828/ip.git","repoName":"ip","organization":"Kishen271828","domainName":"github"},"branch":"master","displayName":"Kishen271828/ip[master]","outputFolderName":"Kishen271828_ip_master"},{"location":{"location":"https://github.com/pqienso/ip.git","repoName":"ip","organization":"pqienso","domainName":"github"},"branch":"master","displayName":"pqienso/ip[master]","outputFolderName":"pqienso_ip_master"},{"location":{"location":"https://github.com/LWachtel1/ip.git","repoName":"ip","organization":"LWachtel1","domainName":"github"},"branch":"master","displayName":"LWachtel1/ip[master]","outputFolderName":"LWachtel1_ip_master"},{"location":{"location":"https://github.com/azamanis/ip.git","repoName":"ip","organization":"azamanis","domainName":"github"},"branch":"master","displayName":"azamanis/ip[master]","outputFolderName":"azamanis_ip_master"},{"location":{"location":"https://github.com/john-nng/ip.git","repoName":"ip","organization":"john-nng","domainName":"github"},"branch":"master","displayName":"john-nng/ip[master]","outputFolderName":"john-nng_ip_master"},{"location":{"location":"https://github.com/songyuew/ip.git","repoName":"ip","organization":"songyuew","domainName":"github"},"branch":"master","displayName":"songyuew/ip[master]","outputFolderName":"songyuew_ip_master"},{"location":{"location":"https://github.com/Celineyaa/ip.git","repoName":"ip","organization":"Celineyaa","domainName":"github"},"branch":"master","displayName":"Celineyaa/ip[master]","outputFolderName":"Celineyaa_ip_master"},{"location":{"location":"https://github.com/yzhanglp/ip.git","repoName":"ip","organization":"yzhanglp","domainName":"github"},"branch":"master","displayName":"yzhanglp/ip[master]","outputFolderName":"yzhanglp_ip_master"},{"location":{"location":"https://github.com/HenryGan138/ip.git","repoName":"ip","organization":"HenryGan138","domainName":"github"},"branch":"master","displayName":"HenryGan138/ip[master]","outputFolderName":"HenryGan138_ip_master"},{"location":{"location":"https://github.com/ningsongshen/ip.git","repoName":"ip","organization":"ningsongshen","domainName":"github"},"branch":"master","displayName":"ningsongshen/ip[master]","outputFolderName":"ningsongshen_ip_master"},{"location":{"location":"https://github.com/jensonjenkins/ip.git","repoName":"ip","organization":"jensonjenkins","domainName":"github"},"branch":"master","displayName":"jensonjenkins/ip[master]","outputFolderName":"jensonjenkins_ip_master"},{"location":{"location":"https://github.com/ttasnim5/ip.git","repoName":"ip","organization":"ttasnim5","domainName":"github"},"branch":"master","displayName":"ttasnim5/ip[master]","outputFolderName":"ttasnim5_ip_master"},{"location":{"location":"https://github.com/mihirheda02/ip.git","repoName":"ip","organization":"mihirheda02","domainName":"github"},"branch":"master","displayName":"mihirheda02/ip[master]","outputFolderName":"mihirheda02_ip_master"},{"location":{"location":"https://github.com/nidhi-nayak/ip.git","repoName":"ip","organization":"nidhi-nayak","domainName":"github"},"branch":"master","displayName":"nidhi-nayak/ip[master]","outputFolderName":"nidhi-nayak_ip_master"},{"location":{"location":"https://github.com/jthibault03/ip.git","repoName":"ip","organization":"jthibault03","domainName":"github"},"branch":"master","displayName":"jthibault03/ip[master]","outputFolderName":"jthibault03_ip_master"},{"location":{"location":"https://github.com/tinaliu27/ip.git","repoName":"ip","organization":"tinaliu27","domainName":"github"},"branch":"master","displayName":"tinaliu27/ip[master]","outputFolderName":"tinaliu27_ip_master"},{"location":{"location":"https://github.com/annnniexu/ip.git","repoName":"ip","organization":"annnniexu","domainName":"github"},"branch":"master","displayName":"annnniexu/ip[master]","outputFolderName":"annnniexu_ip_master"},{"location":{"location":"https://github.com/Andy123qq4/ip.git","repoName":"ip","organization":"Andy123qq4","domainName":"github"},"branch":"master","displayName":"Andy123qq4/ip[master]","outputFolderName":"Andy123qq4_ip_master"},{"location":{"location":"https://github.com/Geinzit/ip.git","repoName":"ip","organization":"Geinzit","domainName":"github"},"branch":"master","displayName":"Geinzit/ip[master]","outputFolderName":"Geinzit_ip_master"},{"location":{"location":"https://github.com/YHWong20/ip.git","repoName":"ip","organization":"YHWong20","domainName":"github"},"branch":"master","displayName":"YHWong20/ip[master]","outputFolderName":"YHWong20_ip_master"},{"location":{"location":"https://github.com/syj02/ip.git","repoName":"ip","organization":"syj02","domainName":"github"},"branch":"master","displayName":"syj02/ip[master]","outputFolderName":"syj02_ip_master"},{"location":{"location":"https://github.com/T0nyLin/ip.git","repoName":"ip","organization":"T0nyLin","domainName":"github"},"branch":"master","displayName":"T0nyLin/ip[master]","outputFolderName":"T0nyLin_ip_master"},{"location":{"location":"https://github.com/XavierLiau34/ip.git","repoName":"ip","organization":"XavierLiau34","domainName":"github"},"branch":"master","displayName":"XavierLiau34/ip[master]","outputFolderName":"XavierLiau34_ip_master"},{"location":{"location":"https://github.com/cheeseong2001/ip.git","repoName":"ip","organization":"cheeseong2001","domainName":"github"},"branch":"master","displayName":"cheeseong2001/ip[master]","outputFolderName":"cheeseong2001_ip_master"},{"location":{"location":"https://github.com/rouvinerh/ip.git","repoName":"ip","organization":"rouvinerh","domainName":"github"},"branch":"master","displayName":"rouvinerh/ip[master]","outputFolderName":"rouvinerh_ip_master"},{"location":{"location":"https://github.com/NgYaoDong/ip.git","repoName":"ip","organization":"NgYaoDong","domainName":"github"},"branch":"master","displayName":"NgYaoDong/ip[master]","outputFolderName":"NgYaoDong_ip_master"},{"location":{"location":"https://github.com/nur-haziq/ip.git","repoName":"ip","organization":"nur-haziq","domainName":"github"},"branch":"master","displayName":"nur-haziq/ip[master]","outputFolderName":"nur-haziq_ip_master"},{"location":{"location":"https://github.com/nkotaa/ip.git","repoName":"ip","organization":"nkotaa","domainName":"github"},"branch":"master","displayName":"nkotaa/ip[master]","outputFolderName":"nkotaa_ip_master"},{"location":{"location":"https://github.com/wenenhoe/ip.git","repoName":"ip","organization":"wenenhoe","domainName":"github"},"branch":"master","displayName":"wenenhoe/ip[master]","outputFolderName":"wenenhoe_ip_master"},{"location":{"location":"https://github.com/wjunjie01/ip.git","repoName":"ip","organization":"wjunjie01","domainName":"github"},"branch":"master","displayName":"wjunjie01/ip[master]","outputFolderName":"wjunjie01_ip_master"},{"location":{"location":"https://github.com/L5-Z/ip.git","repoName":"ip","organization":"L5-Z","domainName":"github"},"branch":"master","displayName":"L5-Z/ip[master]","outputFolderName":"L5-Z_ip_master"},{"location":{"location":"https://github.com/annoy-o-mus/ip.git","repoName":"ip","organization":"annoy-o-mus","domainName":"github"},"branch":"master","displayName":"annoy-o-mus/ip[master]","outputFolderName":"annoy-o-mus_ip_master"},{"location":{"location":"https://github.com/nickczh/ip.git","repoName":"ip","organization":"nickczh","domainName":"github"},"branch":"master","displayName":"nickczh/ip[master]","outputFolderName":"nickczh_ip_master"},{"location":{"location":"https://github.com/e0958902/ip.git","repoName":"ip","organization":"e0958902","domainName":"github"},"branch":"master","displayName":"e0958902/ip[master]","outputFolderName":"e0958902_ip_master"},{"location":{"location":"https://github.com/JustinSoh/ip.git","repoName":"ip","organization":"JustinSoh","domainName":"github"},"branch":"master","displayName":"JustinSoh/ip[master]","outputFolderName":"JustinSoh_ip_master"},{"location":{"location":"https://github.com/PureUsagi/ip.git","repoName":"ip","organization":"PureUsagi","domainName":"github"},"branch":"master","displayName":"PureUsagi/ip[master]","outputFolderName":"PureUsagi_ip_master"},{"location":{"location":"https://github.com/Kobot7/ip.git","repoName":"ip","organization":"Kobot7","domainName":"github"},"branch":"master","displayName":"Kobot7/ip[master]","outputFolderName":"Kobot7_ip_master"},{"location":{"location":"https://github.com/EdmundTangg/ip.git","repoName":"ip","organization":"EdmundTangg","domainName":"github"},"branch":"master","displayName":"EdmundTangg/ip[master]","outputFolderName":"EdmundTangg_ip_master"},{"location":{"location":"https://github.com/kyuichyi/ip.git","repoName":"ip","organization":"kyuichyi","domainName":"github"},"branch":"master","displayName":"kyuichyi/ip[master]","outputFolderName":"kyuichyi_ip_master"},{"location":{"location":"https://github.com/imanamirshah/ip.git","repoName":"ip","organization":"imanamirshah","domainName":"github"},"branch":"master","displayName":"imanamirshah/ip[master]","outputFolderName":"imanamirshah_ip_master"},{"location":{"location":"https://github.com/j013n3/ip.git","repoName":"ip","organization":"j013n3","domainName":"github"},"branch":"master","displayName":"j013n3/ip[master]","outputFolderName":"j013n3_ip_master"},{"location":{"location":"https://github.com/leongxingyu/ip.git","repoName":"ip","organization":"leongxingyu","domainName":"github"},"branch":"master","displayName":"leongxingyu/ip[master]","outputFolderName":"leongxingyu_ip_master"}],"errorSet":[{"repoName":"SharlynLui/ip[master]","errorMessage":"Failed to clone from https://github.com/SharlynLui/ip.git"},{"repoName":"dylansiew/ip[master]","errorMessage":"Failed to clone from https://github.com/dylansiew/ip.git"},{"repoName":"Heart_of_N1/ip[master]","errorMessage":"Failed to clone from https://github.com/Heart_of_N1/ip.git"},{"repoName":"hailey-jung/ip[master]","errorMessage":"Failed to clone from https://github.com/hailey-jung/ip.git"},{"repoName":"Fureimi/ip[master]","errorMessage":"Failed to clone from https://github.com/Fureimi/ip.git"},{"repoName":"MayFairMI6/ip[master]","errorMessage":"Failed to clone from https://github.com/MayFairMI6/ip.git"},{"repoName":"haowern98/ip[master]","errorMessage":"Failed to clone from https://github.com/haowern98/ip.git"},{"repoName":"tiffanyliu0220/ip[master]","errorMessage":"Failed to clone from https://github.com/tiffanyliu0220/ip.git"},{"repoName":"SemiColonKen/ip[master]","errorMessage":"Failed to clone from https://github.com/SemiColonKen/ip.git"},{"repoName":"raajamani/ip[master]","errorMessage":"Failed to clone from https://github.com/raajamani/ip.git"},{"repoName":"classskipper351/ip[master]","errorMessage":"Failed to clone from https://github.com/classskipper351/ip.git"},{"repoName":"a-wild-chocolate/ip[master]","errorMessage":"Failed to clone from https://github.com/a-wild-chocolate/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-04","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}} +{"repoSenseVersion":"7977382dfe","reportGeneratedTime":"Sun Feb 4 12:27:18 2024 UTC+08:00","reportGenerationTime":" 13.63 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2113 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/V4Vern/ip.git","repoName":"ip","organization":"V4Vern","domainName":"github"},"branch":"master","displayName":"V4Vern/ip[master]","outputFolderName":"V4Vern_ip_master"},{"location":{"location":"https://github.com/Cohii2/ip.git","repoName":"ip","organization":"Cohii2","domainName":"github"},"branch":"master","displayName":"Cohii2/ip[master]","outputFolderName":"Cohii2_ip_master"},{"location":{"location":"https://github.com/yuki-zmstr/ip.git","repoName":"ip","organization":"yuki-zmstr","domainName":"github"},"branch":"master","displayName":"yuki-zmstr/ip[master]","outputFolderName":"yuki-zmstr_ip_master"},{"location":{"location":"https://github.com/RyanTDL/ip.git","repoName":"ip","organization":"RyanTDL","domainName":"github"},"branch":"master","displayName":"RyanTDL/ip[master]","outputFolderName":"RyanTDL_ip_master"},{"location":{"location":"https://github.com/yeozhishen/ip.git","repoName":"ip","organization":"yeozhishen","domainName":"github"},"branch":"master","displayName":"yeozhishen/ip[master]","outputFolderName":"yeozhishen_ip_master"},{"location":{"location":"https://github.com/owx0130/ip.git","repoName":"ip","organization":"owx0130","domainName":"github"},"branch":"master","displayName":"owx0130/ip[master]","outputFolderName":"owx0130_ip_master"},{"location":{"location":"https://github.com/BenjoBurger/ip.git","repoName":"ip","organization":"BenjoBurger","domainName":"github"},"branch":"master","displayName":"BenjoBurger/ip[master]","outputFolderName":"BenjoBurger_ip_master"},{"location":{"location":"https://github.com/genexus85/ip.git","repoName":"ip","organization":"genexus85","domainName":"github"},"branch":"master","displayName":"genexus85/ip[master]","outputFolderName":"genexus85_ip_master"},{"location":{"location":"https://github.com/CerealMiller/ip.git","repoName":"ip","organization":"CerealMiller","domainName":"github"},"branch":"master","displayName":"CerealMiller/ip[master]","outputFolderName":"CerealMiller_ip_master"},{"location":{"location":"https://github.com/HengShuHong/ip.git","repoName":"ip","organization":"HengShuHong","domainName":"github"},"branch":"master","displayName":"HengShuHong/ip[master]","outputFolderName":"HengShuHong_ip_master"},{"location":{"location":"https://github.com/Heart-of-N1/ip.git","repoName":"ip","organization":"Heart-of-N1","domainName":"github"},"branch":"master","displayName":"Heart-of-N1/ip[master]","outputFolderName":"Heart-of-N1_ip_master"},{"location":{"location":"https://github.com/samuelory/ip.git","repoName":"ip","organization":"samuelory","domainName":"github"},"branch":"master","displayName":"samuelory/ip[master]","outputFolderName":"samuelory_ip_master"},{"location":{"location":"https://github.com/LowTL/ip.git","repoName":"ip","organization":"LowTL","domainName":"github"},"branch":"master","displayName":"LowTL/ip[master]","outputFolderName":"LowTL_ip_master"},{"location":{"location":"https://github.com/cyhjason29/ip.git","repoName":"ip","organization":"cyhjason29","domainName":"github"},"branch":"master","displayName":"cyhjason29/ip[master]","outputFolderName":"cyhjason29_ip_master"},{"location":{"location":"https://github.com/Leong-ZM/ip.git","repoName":"ip","organization":"Leong-ZM","domainName":"github"},"branch":"master","displayName":"Leong-ZM/ip[master]","outputFolderName":"Leong-ZM_ip_master"},{"location":{"location":"https://github.com/alvinnnnnnnnnn/ip.git","repoName":"ip","organization":"alvinnnnnnnnnn","domainName":"github"},"branch":"master","displayName":"alvinnnnnnnnnn/ip[master]","outputFolderName":"alvinnnnnnnnnn_ip_master"},{"location":{"location":"https://github.com/jing-xiang/ip.git","repoName":"ip","organization":"jing-xiang","domainName":"github"},"branch":"master","displayName":"jing-xiang/ip[master]","outputFolderName":"jing-xiang_ip_master"},{"location":{"location":"https://github.com/fungg0/ip.git","repoName":"ip","organization":"fungg0","domainName":"github"},"branch":"master","displayName":"fungg0/ip[master]","outputFolderName":"fungg0_ip_master"},{"location":{"location":"https://github.com/webtjs/ip.git","repoName":"ip","organization":"webtjs","domainName":"github"},"branch":"master","displayName":"webtjs/ip[master]","outputFolderName":"webtjs_ip_master"},{"location":{"location":"https://github.com/sxfoo/ip.git","repoName":"ip","organization":"sxfoo","domainName":"github"},"branch":"master","displayName":"sxfoo/ip[master]","outputFolderName":"sxfoo_ip_master"},{"location":{"location":"https://github.com/daryltay415/ip.git","repoName":"ip","organization":"daryltay415","domainName":"github"},"branch":"master","displayName":"daryltay415/ip[master]","outputFolderName":"daryltay415_ip_master"},{"location":{"location":"https://github.com/yuhengr/ip.git","repoName":"ip","organization":"yuhengr","domainName":"github"},"branch":"master","displayName":"yuhengr/ip[master]","outputFolderName":"yuhengr_ip_master"},{"location":{"location":"https://github.com/Joellimjr/ip.git","repoName":"ip","organization":"Joellimjr","domainName":"github"},"branch":"master","displayName":"Joellimjr/ip[master]","outputFolderName":"Joellimjr_ip_master"},{"location":{"location":"https://github.com/ParthGandhiNUS/ip.git","repoName":"ip","organization":"ParthGandhiNUS","domainName":"github"},"branch":"master","displayName":"ParthGandhiNUS/ip[master]","outputFolderName":"ParthGandhiNUS_ip_master"},{"location":{"location":"https://github.com/cirelesna/ip.git","repoName":"ip","organization":"cirelesna","domainName":"github"},"branch":"master","displayName":"cirelesna/ip[master]","outputFolderName":"cirelesna_ip_master"},{"location":{"location":"https://github.com/seandooa/ip.git","repoName":"ip","organization":"seandooa","domainName":"github"},"branch":"master","displayName":"seandooa/ip[master]","outputFolderName":"seandooa_ip_master"},{"location":{"location":"https://github.com/rismm/ip.git","repoName":"ip","organization":"rismm","domainName":"github"},"branch":"master","displayName":"rismm/ip[master]","outputFolderName":"rismm_ip_master"},{"location":{"location":"https://github.com/damiwee/ip.git","repoName":"ip","organization":"damiwee","domainName":"github"},"branch":"master","displayName":"damiwee/ip[master]","outputFolderName":"damiwee_ip_master"},{"location":{"location":"https://github.com/alalal47/ip.git","repoName":"ip","organization":"alalal47","domainName":"github"},"branch":"master","displayName":"alalal47/ip[master]","outputFolderName":"alalal47_ip_master"},{"location":{"location":"https://github.com/awesomesjh/ip.git","repoName":"ip","organization":"awesomesjh","domainName":"github"},"branch":"master","displayName":"awesomesjh/ip[master]","outputFolderName":"awesomesjh_ip_master"},{"location":{"location":"https://github.com/Daviancold/ip.git","repoName":"ip","organization":"Daviancold","domainName":"github"},"branch":"master","displayName":"Daviancold/ip[master]","outputFolderName":"Daviancold_ip_master"},{"location":{"location":"https://github.com/chenhowy/ip.git","repoName":"ip","organization":"chenhowy","domainName":"github"},"branch":"master","displayName":"chenhowy/ip[master]","outputFolderName":"chenhowy_ip_master"},{"location":{"location":"https://github.com/rexyyong/ip.git","repoName":"ip","organization":"rexyyong","domainName":"github"},"branch":"master","displayName":"rexyyong/ip[master]","outputFolderName":"rexyyong_ip_master"},{"location":{"location":"https://github.com/Zhengwinter/ip.git","repoName":"ip","organization":"Zhengwinter","domainName":"github"},"branch":"master","displayName":"Zhengwinter/ip[master]","outputFolderName":"Zhengwinter_ip_master"},{"location":{"location":"https://github.com/Cryolian/ip.git","repoName":"ip","organization":"Cryolian","domainName":"github"},"branch":"master","displayName":"Cryolian/ip[master]","outputFolderName":"Cryolian_ip_master"},{"location":{"location":"https://github.com/paturikarthik/ip.git","repoName":"ip","organization":"paturikarthik","domainName":"github"},"branch":"master","displayName":"paturikarthik/ip[master]","outputFolderName":"paturikarthik_ip_master"},{"location":{"location":"https://github.com/ChinYanXu/ip.git","repoName":"ip","organization":"ChinYanXu","domainName":"github"},"branch":"master","displayName":"ChinYanXu/ip[master]","outputFolderName":"ChinYanXu_ip_master"},{"location":{"location":"https://github.com/dtaywd/ip.git","repoName":"ip","organization":"dtaywd","domainName":"github"},"branch":"master","displayName":"dtaywd/ip[master]","outputFolderName":"dtaywd_ip_master"},{"location":{"location":"https://github.com/wallywallywally/ip.git","repoName":"ip","organization":"wallywallywally","domainName":"github"},"branch":"master","displayName":"wallywallywally/ip[master]","outputFolderName":"wallywallywally_ip_master"},{"location":{"location":"https://github.com/yeozongyao/ip.git","repoName":"ip","organization":"yeozongyao","domainName":"github"},"branch":"master","displayName":"yeozongyao/ip[master]","outputFolderName":"yeozongyao_ip_master"},{"location":{"location":"https://github.com/isaaceng7/ip.git","repoName":"ip","organization":"isaaceng7","domainName":"github"},"branch":"master","displayName":"isaaceng7/ip[master]","outputFolderName":"isaaceng7_ip_master"},{"location":{"location":"https://github.com/NGXZS/ip.git","repoName":"ip","organization":"NGXZS","domainName":"github"},"branch":"master","displayName":"NGXZS/ip[master]","outputFolderName":"NGXZS_ip_master"},{"location":{"location":"https://github.com/sweijie24/ip.git","repoName":"ip","organization":"sweijie24","domainName":"github"},"branch":"master","displayName":"sweijie24/ip[master]","outputFolderName":"sweijie24_ip_master"},{"location":{"location":"https://github.com/itsmejr257/ip.git","repoName":"ip","organization":"itsmejr257","domainName":"github"},"branch":"master","displayName":"itsmejr257/ip[master]","outputFolderName":"itsmejr257_ip_master"},{"location":{"location":"https://github.com/joshualeejunyi/ip.git","repoName":"ip","organization":"joshualeejunyi","domainName":"github"},"branch":"master","displayName":"joshualeejunyi/ip[master]","outputFolderName":"joshualeejunyi_ip_master"},{"location":{"location":"https://github.com/Vavinan/ip.git","repoName":"ip","organization":"Vavinan","domainName":"github"},"branch":"master","displayName":"Vavinan/ip[master]","outputFolderName":"Vavinan_ip_master"},{"location":{"location":"https://github.com/64-1/ip.git","repoName":"ip","organization":"64-1","domainName":"github"},"branch":"master","displayName":"64-1/ip[master]","outputFolderName":"64-1_ip_master"},{"location":{"location":"https://github.com/Xb990219/ip.git","repoName":"ip","organization":"Xb990219","domainName":"github"},"branch":"master","displayName":"Xb990219/ip[master]","outputFolderName":"Xb990219_ip_master"},{"location":{"location":"https://github.com/ThawTunZan/ip.git","repoName":"ip","organization":"ThawTunZan","domainName":"github"},"branch":"master","displayName":"ThawTunZan/ip[master]","outputFolderName":"ThawTunZan_ip_master"},{"location":{"location":"https://github.com/djleong01/ip.git","repoName":"ip","organization":"djleong01","domainName":"github"},"branch":"master","displayName":"djleong01/ip[master]","outputFolderName":"djleong01_ip_master"},{"location":{"location":"https://github.com/MonkeScripts/ip.git","repoName":"ip","organization":"MonkeScripts","domainName":"github"},"branch":"master","displayName":"MonkeScripts/ip[master]","outputFolderName":"MonkeScripts_ip_master"},{"location":{"location":"https://github.com/chenxk619/ip.git","repoName":"ip","organization":"chenxk619","domainName":"github"},"branch":"master","displayName":"chenxk619/ip[master]","outputFolderName":"chenxk619_ip_master"},{"location":{"location":"https://github.com/hwc0419/ip.git","repoName":"ip","organization":"hwc0419","domainName":"github"},"branch":"master","displayName":"hwc0419/ip[master]","outputFolderName":"hwc0419_ip_master"},{"location":{"location":"https://github.com/JackieNeoCEG/ip.git","repoName":"ip","organization":"JackieNeoCEG","domainName":"github"},"branch":"master","displayName":"JackieNeoCEG/ip[master]","outputFolderName":"JackieNeoCEG_ip_master"},{"location":{"location":"https://github.com/Mmaxx15/ip.git","repoName":"ip","organization":"Mmaxx15","domainName":"github"},"branch":"master","displayName":"Mmaxx15/ip[master]","outputFolderName":"Mmaxx15_ip_master"},{"location":{"location":"https://github.com/clarencepohh/ip.git","repoName":"ip","organization":"clarencepohh","domainName":"github"},"branch":"master","displayName":"clarencepohh/ip[master]","outputFolderName":"clarencepohh_ip_master"},{"location":{"location":"https://github.com/NicholasTanYY/ip.git","repoName":"ip","organization":"NicholasTanYY","domainName":"github"},"branch":"master","displayName":"NicholasTanYY/ip[master]","outputFolderName":"NicholasTanYY_ip_master"},{"location":{"location":"https://github.com/HikoHikoHiko/ip.git","repoName":"ip","organization":"HikoHikoHiko","domainName":"github"},"branch":"master","displayName":"HikoHikoHiko/ip[master]","outputFolderName":"HikoHikoHiko_ip_master"},{"location":{"location":"https://github.com/soongensayo/ip.git","repoName":"ip","organization":"soongensayo","domainName":"github"},"branch":"master","displayName":"soongensayo/ip[master]","outputFolderName":"soongensayo_ip_master"},{"location":{"location":"https://github.com/nikhil-2101/ip.git","repoName":"ip","organization":"nikhil-2101","domainName":"github"},"branch":"master","displayName":"nikhil-2101/ip[master]","outputFolderName":"nikhil-2101_ip_master"},{"location":{"location":"https://github.com/Praneet-25/ip.git","repoName":"ip","organization":"Praneet-25","domainName":"github"},"branch":"master","displayName":"Praneet-25/ip[master]","outputFolderName":"Praneet-25_ip_master"},{"location":{"location":"https://github.com/mukund1403/ip.git","repoName":"ip","organization":"mukund1403","domainName":"github"},"branch":"master","displayName":"mukund1403/ip[master]","outputFolderName":"mukund1403_ip_master"},{"location":{"location":"https://github.com/nicknamenic/ip.git","repoName":"ip","organization":"nicknamenic","domainName":"github"},"branch":"master","displayName":"nicknamenic/ip[master]","outputFolderName":"nicknamenic_ip_master"},{"location":{"location":"https://github.com/BryanCastorius/ip.git","repoName":"ip","organization":"BryanCastorius","domainName":"github"},"branch":"master","displayName":"BryanCastorius/ip[master]","outputFolderName":"BryanCastorius_ip_master"},{"location":{"location":"https://github.com/PDHung1104/ip.git","repoName":"ip","organization":"PDHung1104","domainName":"github"},"branch":"master","displayName":"PDHung1104/ip[master]","outputFolderName":"PDHung1104_ip_master"},{"location":{"location":"https://github.com/jasonlienardi/ip.git","repoName":"ip","organization":"jasonlienardi","domainName":"github"},"branch":"master","displayName":"jasonlienardi/ip[master]","outputFolderName":"jasonlienardi_ip_master"},{"location":{"location":"https://github.com/edwardhumi/ip.git","repoName":"ip","organization":"edwardhumi","domainName":"github"},"branch":"master","displayName":"edwardhumi/ip[master]","outputFolderName":"edwardhumi_ip_master"},{"location":{"location":"https://github.com/z-wenqing/ip.git","repoName":"ip","organization":"z-wenqing","domainName":"github"},"branch":"master","displayName":"z-wenqing/ip[master]","outputFolderName":"z-wenqing_ip_master"},{"location":{"location":"https://github.com/Joshuahoky/ip.git","repoName":"ip","organization":"Joshuahoky","domainName":"github"},"branch":"master","displayName":"Joshuahoky/ip[master]","outputFolderName":"Joshuahoky_ip_master"},{"location":{"location":"https://github.com/Dheekshitha2/ip.git","repoName":"ip","organization":"Dheekshitha2","domainName":"github"},"branch":"master","displayName":"Dheekshitha2/ip[master]","outputFolderName":"Dheekshitha2_ip_master"},{"location":{"location":"https://github.com/liuy1103/ip.git","repoName":"ip","organization":"liuy1103","domainName":"github"},"branch":"master","displayName":"liuy1103/ip[master]","outputFolderName":"liuy1103_ip_master"},{"location":{"location":"https://github.com/hongyijie06/ip.git","repoName":"ip","organization":"hongyijie06","domainName":"github"},"branch":"master","displayName":"hongyijie06/ip[master]","outputFolderName":"hongyijie06_ip_master"},{"location":{"location":"https://github.com/liuzehui03/ip.git","repoName":"ip","organization":"liuzehui03","domainName":"github"},"branch":"master","displayName":"liuzehui03/ip[master]","outputFolderName":"liuzehui03_ip_master"},{"location":{"location":"https://github.com/ZhuSijia0711/ip.git","repoName":"ip","organization":"ZhuSijia0711","domainName":"github"},"branch":"master","displayName":"ZhuSijia0711/ip[master]","outputFolderName":"ZhuSijia0711_ip_master"},{"location":{"location":"https://github.com/hafizuddin-a/ip.git","repoName":"ip","organization":"hafizuddin-a","domainName":"github"},"branch":"master","displayName":"hafizuddin-a/ip[master]","outputFolderName":"hafizuddin-a_ip_master"},{"location":{"location":"https://github.com/jasraa/ip.git","repoName":"ip","organization":"jasraa","domainName":"github"},"branch":"master","displayName":"jasraa/ip[master]","outputFolderName":"jasraa_ip_master"},{"location":{"location":"https://github.com/claribelho/ip.git","repoName":"ip","organization":"claribelho","domainName":"github"},"branch":"master","displayName":"claribelho/ip[master]","outputFolderName":"claribelho_ip_master"},{"location":{"location":"https://github.com/ZMinghuiZ/ip.git","repoName":"ip","organization":"ZMinghuiZ","domainName":"github"},"branch":"master","displayName":"ZMinghuiZ/ip[master]","outputFolderName":"ZMinghuiZ_ip_master"},{"location":{"location":"https://github.com/fxe025/ip.git","repoName":"ip","organization":"fxe025","domainName":"github"},"branch":"master","displayName":"fxe025/ip[master]","outputFolderName":"fxe025_ip_master"},{"location":{"location":"https://github.com/YoengKokLeong/ip.git","repoName":"ip","organization":"YoengKokLeong","domainName":"github"},"branch":"master","displayName":"YoengKokLeong/ip[master]","outputFolderName":"YoengKokLeong_ip_master"},{"location":{"location":"https://github.com/1simjustin/ip.git","repoName":"ip","organization":"1simjustin","domainName":"github"},"branch":"master","displayName":"1simjustin/ip[master]","outputFolderName":"1simjustin_ip_master"},{"location":{"location":"https://github.com/dextboy/ip.git","repoName":"ip","organization":"dextboy","domainName":"github"},"branch":"master","displayName":"dextboy/ip[master]","outputFolderName":"dextboy_ip_master"},{"location":{"location":"https://github.com/ZhangWenyue3325/ip.git","repoName":"ip","organization":"ZhangWenyue3325","domainName":"github"},"branch":"master","displayName":"ZhangWenyue3325/ip[master]","outputFolderName":"ZhangWenyue3325_ip_master"},{"location":{"location":"https://github.com/ZhouJunmin/ip.git","repoName":"ip","organization":"ZhouJunmin","domainName":"github"},"branch":"master","displayName":"ZhouJunmin/ip[master]","outputFolderName":"ZhouJunmin_ip_master"},{"location":{"location":"https://github.com/LuoYu-uwu/ip.git","repoName":"ip","organization":"LuoYu-uwu","domainName":"github"},"branch":"master","displayName":"LuoYu-uwu/ip[master]","outputFolderName":"LuoYu-uwu_ip_master"},{"location":{"location":"https://github.com/FeathersRe/ip.git","repoName":"ip","organization":"FeathersRe","domainName":"github"},"branch":"master","displayName":"FeathersRe/ip[master]","outputFolderName":"FeathersRe_ip_master"},{"location":{"location":"https://github.com/tayponghee/ip.git","repoName":"ip","organization":"tayponghee","domainName":"github"},"branch":"master","displayName":"tayponghee/ip[master]","outputFolderName":"tayponghee_ip_master"},{"location":{"location":"https://github.com/tannerlie/ip.git","repoName":"ip","organization":"tannerlie","domainName":"github"},"branch":"master","displayName":"tannerlie/ip[master]","outputFolderName":"tannerlie_ip_master"},{"location":{"location":"https://github.com/ChenKangg/ip.git","repoName":"ip","organization":"ChenKangg","domainName":"github"},"branch":"master","displayName":"ChenKangg/ip[master]","outputFolderName":"ChenKangg_ip_master"},{"location":{"location":"https://github.com/IanFH/ip.git","repoName":"ip","organization":"IanFH","domainName":"github"},"branch":"master","displayName":"IanFH/ip[master]","outputFolderName":"IanFH_ip_master"},{"location":{"location":"https://github.com/JianJiaT/ip.git","repoName":"ip","organization":"JianJiaT","domainName":"github"},"branch":"master","displayName":"JianJiaT/ip[master]","outputFolderName":"JianJiaT_ip_master"},{"location":{"location":"https://github.com/Ijaaz01/ip.git","repoName":"ip","organization":"Ijaaz01","domainName":"github"},"branch":"master","displayName":"Ijaaz01/ip[master]","outputFolderName":"Ijaaz01_ip_master"},{"location":{"location":"https://github.com/EugeneChanJiajun/ip.git","repoName":"ip","organization":"EugeneChanJiajun","domainName":"github"},"branch":"master","displayName":"EugeneChanJiajun/ip[master]","outputFolderName":"EugeneChanJiajun_ip_master"},{"location":{"location":"https://github.com/kyhjonathan/ip.git","repoName":"ip","organization":"kyhjonathan","domainName":"github"},"branch":"master","displayName":"kyhjonathan/ip[master]","outputFolderName":"kyhjonathan_ip_master"},{"location":{"location":"https://github.com/Luo-Z-Y/ip.git","repoName":"ip","organization":"Luo-Z-Y","domainName":"github"},"branch":"master","displayName":"Luo-Z-Y/ip[master]","outputFolderName":"Luo-Z-Y_ip_master"},{"location":{"location":"https://github.com/JingHaoooo/ip.git","repoName":"ip","organization":"JingHaoooo","domainName":"github"},"branch":"master","displayName":"JingHaoooo/ip[master]","outputFolderName":"JingHaoooo_ip_master"},{"location":{"location":"https://github.com/blackmirag3/ip.git","repoName":"ip","organization":"blackmirag3","domainName":"github"},"branch":"master","displayName":"blackmirag3/ip[master]","outputFolderName":"blackmirag3_ip_master"},{"location":{"location":"https://github.com/luozihui2003/ip.git","repoName":"ip","organization":"luozihui2003","domainName":"github"},"branch":"master","displayName":"luozihui2003/ip[master]","outputFolderName":"luozihui2003_ip_master"},{"location":{"location":"https://github.com/adamzzq/ip.git","repoName":"ip","organization":"adamzzq","domainName":"github"},"branch":"master","displayName":"adamzzq/ip[master]","outputFolderName":"adamzzq_ip_master"},{"location":{"location":"https://github.com/OKW32/ip.git","repoName":"ip","organization":"OKW32","domainName":"github"},"branch":"master","displayName":"OKW32/ip[master]","outputFolderName":"OKW32_ip_master"},{"location":{"location":"https://github.com/Haotian199/ip.git","repoName":"ip","organization":"Haotian199","domainName":"github"},"branch":"master","displayName":"Haotian199/ip[master]","outputFolderName":"Haotian199_ip_master"},{"location":{"location":"https://github.com/kirangeofran/ip.git","repoName":"ip","organization":"kirangeofran","domainName":"github"},"branch":"master","displayName":"kirangeofran/ip[master]","outputFolderName":"kirangeofran_ip_master"},{"location":{"location":"https://github.com/B1G-SAM/ip.git","repoName":"ip","organization":"B1G-SAM","domainName":"github"},"branch":"master","displayName":"B1G-SAM/ip[master]","outputFolderName":"B1G-SAM_ip_master"},{"location":{"location":"https://github.com/yyangdaa/ip.git","repoName":"ip","organization":"yyangdaa","domainName":"github"},"branch":"master","displayName":"yyangdaa/ip[master]","outputFolderName":"yyangdaa_ip_master"},{"location":{"location":"https://github.com/runxinghuan/ip.git","repoName":"ip","organization":"runxinghuan","domainName":"github"},"branch":"master","displayName":"runxinghuan/ip[master]","outputFolderName":"runxinghuan_ip_master"},{"location":{"location":"https://github.com/nigelheng/ip.git","repoName":"ip","organization":"nigelheng","domainName":"github"},"branch":"master","displayName":"nigelheng/ip[master]","outputFolderName":"nigelheng_ip_master"},{"location":{"location":"https://github.com/cayennegoh/ip.git","repoName":"ip","organization":"cayennegoh","domainName":"github"},"branch":"master","displayName":"cayennegoh/ip[master]","outputFolderName":"cayennegoh_ip_master"},{"location":{"location":"https://github.com/lordgareth10/ip.git","repoName":"ip","organization":"lordgareth10","domainName":"github"},"branch":"master","displayName":"lordgareth10/ip[master]","outputFolderName":"lordgareth10_ip_master"},{"location":{"location":"https://github.com/vimalapugazhan/ip.git","repoName":"ip","organization":"vimalapugazhan","domainName":"github"},"branch":"master","displayName":"vimalapugazhan/ip[master]","outputFolderName":"vimalapugazhan_ip_master"},{"location":{"location":"https://github.com/shawnpong/ip.git","repoName":"ip","organization":"shawnpong","domainName":"github"},"branch":"master","displayName":"shawnpong/ip[master]","outputFolderName":"shawnpong_ip_master"},{"location":{"location":"https://github.com/TimothyLKM/ip.git","repoName":"ip","organization":"TimothyLKM","domainName":"github"},"branch":"master","displayName":"TimothyLKM/ip[master]","outputFolderName":"TimothyLKM_ip_master"},{"location":{"location":"https://github.com/JeffinsonDarmawan/ip.git","repoName":"ip","organization":"JeffinsonDarmawan","domainName":"github"},"branch":"master","displayName":"JeffinsonDarmawan/ip[master]","outputFolderName":"JeffinsonDarmawan_ip_master"},{"location":{"location":"https://github.com/iscyng/ip.git","repoName":"ip","organization":"iscyng","domainName":"github"},"branch":"master","displayName":"iscyng/ip[master]","outputFolderName":"iscyng_ip_master"},{"location":{"location":"https://github.com/Hws2209/ip.git","repoName":"ip","organization":"Hws2209","domainName":"github"},"branch":"master","displayName":"Hws2209/ip[master]","outputFolderName":"Hws2209_ip_master"},{"location":{"location":"https://github.com/nyh3/ip.git","repoName":"ip","organization":"nyh3","domainName":"github"},"branch":"master","displayName":"nyh3/ip[master]","outputFolderName":"nyh3_ip_master"},{"location":{"location":"https://github.com/anneleong/ip.git","repoName":"ip","organization":"anneleong","domainName":"github"},"branch":"master","displayName":"anneleong/ip[master]","outputFolderName":"anneleong_ip_master"},{"location":{"location":"https://github.com/CXIA17/ip.git","repoName":"ip","organization":"CXIA17","domainName":"github"},"branch":"master","displayName":"CXIA17/ip[master]","outputFolderName":"CXIA17_ip_master"},{"location":{"location":"https://github.com/AhmedShaiyan/ip.git","repoName":"ip","organization":"AhmedShaiyan","domainName":"github"},"branch":"master","displayName":"AhmedShaiyan/ip[master]","outputFolderName":"AhmedShaiyan_ip_master"},{"location":{"location":"https://github.com/pradeep-cod/ip.git","repoName":"ip","organization":"pradeep-cod","domainName":"github"},"branch":"master","displayName":"pradeep-cod/ip[master]","outputFolderName":"pradeep-cod_ip_master"},{"location":{"location":"https://github.com/STeng618/ip.git","repoName":"ip","organization":"STeng618","domainName":"github"},"branch":"master","displayName":"STeng618/ip[master]","outputFolderName":"STeng618_ip_master"},{"location":{"location":"https://github.com/HiteshriAcharya/ip.git","repoName":"ip","organization":"HiteshriAcharya","domainName":"github"},"branch":"master","displayName":"HiteshriAcharya/ip[master]","outputFolderName":"HiteshriAcharya_ip_master"},{"location":{"location":"https://github.com/avrilgk/ip.git","repoName":"ip","organization":"avrilgk","domainName":"github"},"branch":"master","displayName":"avrilgk/ip[master]","outputFolderName":"avrilgk_ip_master"},{"location":{"location":"https://github.com/IncyBot/ip.git","repoName":"ip","organization":"IncyBot","domainName":"github"},"branch":"master","displayName":"IncyBot/ip[master]","outputFolderName":"IncyBot_ip_master"},{"location":{"location":"https://github.com/ymirmeddeb/ip.git","repoName":"ip","organization":"ymirmeddeb","domainName":"github"},"branch":"master","displayName":"ymirmeddeb/ip[master]","outputFolderName":"ymirmeddeb_ip_master"},{"location":{"location":"https://github.com/Aak242/ip.git","repoName":"ip","organization":"Aak242","domainName":"github"},"branch":"master","displayName":"Aak242/ip[master]","outputFolderName":"Aak242_ip_master"},{"location":{"location":"https://github.com/aaravrawal52/ip.git","repoName":"ip","organization":"aaravrawal52","domainName":"github"},"branch":"master","displayName":"aaravrawal52/ip[master]","outputFolderName":"aaravrawal52_ip_master"},{"location":{"location":"https://github.com/ChongXern/ip.git","repoName":"ip","organization":"ChongXern","domainName":"github"},"branch":"master","displayName":"ChongXern/ip[master]","outputFolderName":"ChongXern_ip_master"},{"location":{"location":"https://github.com/Jamarcus111/ip.git","repoName":"ip","organization":"Jamarcus111","domainName":"github"},"branch":"master","displayName":"Jamarcus111/ip[master]","outputFolderName":"Jamarcus111_ip_master"},{"location":{"location":"https://github.com/BestDownLoader365/ip.git","repoName":"ip","organization":"BestDownLoader365","domainName":"github"},"branch":"master","displayName":"BestDownLoader365/ip[master]","outputFolderName":"BestDownLoader365_ip_master"},{"location":{"location":"https://github.com/ShyamKrishna33/ip.git","repoName":"ip","organization":"ShyamKrishna33","domainName":"github"},"branch":"master","displayName":"ShyamKrishna33/ip[master]","outputFolderName":"ShyamKrishna33_ip_master"},{"location":{"location":"https://github.com/StargazerX0/ip.git","repoName":"ip","organization":"StargazerX0","domainName":"github"},"branch":"master","displayName":"StargazerX0/ip[master]","outputFolderName":"StargazerX0_ip_master"},{"location":{"location":"https://github.com/eliztan/ip.git","repoName":"ip","organization":"eliztan","domainName":"github"},"branch":"master","displayName":"eliztan/ip[master]","outputFolderName":"eliztan_ip_master"},{"location":{"location":"https://github.com/SuveenE/ip.git","repoName":"ip","organization":"SuveenE","domainName":"github"},"branch":"master","displayName":"SuveenE/ip[master]","outputFolderName":"SuveenE_ip_master"},{"location":{"location":"https://github.com/Mahesh1772/ip.git","repoName":"ip","organization":"Mahesh1772","domainName":"github"},"branch":"master","displayName":"Mahesh1772/ip[master]","outputFolderName":"Mahesh1772_ip_master"},{"location":{"location":"https://github.com/Elyovs/ip.git","repoName":"ip","organization":"Elyovs","domainName":"github"},"branch":"master","displayName":"Elyovs/ip[master]","outputFolderName":"Elyovs_ip_master"},{"location":{"location":"https://github.com/vibes-863/ip.git","repoName":"ip","organization":"vibes-863","domainName":"github"},"branch":"master","displayName":"vibes-863/ip[master]","outputFolderName":"vibes-863_ip_master"},{"location":{"location":"https://github.com/Kishen271828/ip.git","repoName":"ip","organization":"Kishen271828","domainName":"github"},"branch":"master","displayName":"Kishen271828/ip[master]","outputFolderName":"Kishen271828_ip_master"},{"location":{"location":"https://github.com/pqienso/ip.git","repoName":"ip","organization":"pqienso","domainName":"github"},"branch":"master","displayName":"pqienso/ip[master]","outputFolderName":"pqienso_ip_master"},{"location":{"location":"https://github.com/LWachtel1/ip.git","repoName":"ip","organization":"LWachtel1","domainName":"github"},"branch":"master","displayName":"LWachtel1/ip[master]","outputFolderName":"LWachtel1_ip_master"},{"location":{"location":"https://github.com/azamanis/ip.git","repoName":"ip","organization":"azamanis","domainName":"github"},"branch":"master","displayName":"azamanis/ip[master]","outputFolderName":"azamanis_ip_master"},{"location":{"location":"https://github.com/john-nng/ip.git","repoName":"ip","organization":"john-nng","domainName":"github"},"branch":"master","displayName":"john-nng/ip[master]","outputFolderName":"john-nng_ip_master"},{"location":{"location":"https://github.com/songyuew/ip.git","repoName":"ip","organization":"songyuew","domainName":"github"},"branch":"master","displayName":"songyuew/ip[master]","outputFolderName":"songyuew_ip_master"},{"location":{"location":"https://github.com/Celineyaa/ip.git","repoName":"ip","organization":"Celineyaa","domainName":"github"},"branch":"master","displayName":"Celineyaa/ip[master]","outputFolderName":"Celineyaa_ip_master"},{"location":{"location":"https://github.com/yzhanglp/ip.git","repoName":"ip","organization":"yzhanglp","domainName":"github"},"branch":"master","displayName":"yzhanglp/ip[master]","outputFolderName":"yzhanglp_ip_master"},{"location":{"location":"https://github.com/HenryGan138/ip.git","repoName":"ip","organization":"HenryGan138","domainName":"github"},"branch":"master","displayName":"HenryGan138/ip[master]","outputFolderName":"HenryGan138_ip_master"},{"location":{"location":"https://github.com/ningsongshen/ip.git","repoName":"ip","organization":"ningsongshen","domainName":"github"},"branch":"master","displayName":"ningsongshen/ip[master]","outputFolderName":"ningsongshen_ip_master"},{"location":{"location":"https://github.com/jensonjenkins/ip.git","repoName":"ip","organization":"jensonjenkins","domainName":"github"},"branch":"master","displayName":"jensonjenkins/ip[master]","outputFolderName":"jensonjenkins_ip_master"},{"location":{"location":"https://github.com/ttasnim5/ip.git","repoName":"ip","organization":"ttasnim5","domainName":"github"},"branch":"master","displayName":"ttasnim5/ip[master]","outputFolderName":"ttasnim5_ip_master"},{"location":{"location":"https://github.com/mihirheda02/ip.git","repoName":"ip","organization":"mihirheda02","domainName":"github"},"branch":"master","displayName":"mihirheda02/ip[master]","outputFolderName":"mihirheda02_ip_master"},{"location":{"location":"https://github.com/nidhi-nayak/ip.git","repoName":"ip","organization":"nidhi-nayak","domainName":"github"},"branch":"master","displayName":"nidhi-nayak/ip[master]","outputFolderName":"nidhi-nayak_ip_master"},{"location":{"location":"https://github.com/jthibault03/ip.git","repoName":"ip","organization":"jthibault03","domainName":"github"},"branch":"master","displayName":"jthibault03/ip[master]","outputFolderName":"jthibault03_ip_master"},{"location":{"location":"https://github.com/tinaliu27/ip.git","repoName":"ip","organization":"tinaliu27","domainName":"github"},"branch":"master","displayName":"tinaliu27/ip[master]","outputFolderName":"tinaliu27_ip_master"},{"location":{"location":"https://github.com/annnniexu/ip.git","repoName":"ip","organization":"annnniexu","domainName":"github"},"branch":"master","displayName":"annnniexu/ip[master]","outputFolderName":"annnniexu_ip_master"},{"location":{"location":"https://github.com/Andy123qq4/ip.git","repoName":"ip","organization":"Andy123qq4","domainName":"github"},"branch":"master","displayName":"Andy123qq4/ip[master]","outputFolderName":"Andy123qq4_ip_master"},{"location":{"location":"https://github.com/Geinzit/ip.git","repoName":"ip","organization":"Geinzit","domainName":"github"},"branch":"master","displayName":"Geinzit/ip[master]","outputFolderName":"Geinzit_ip_master"},{"location":{"location":"https://github.com/YHWong20/ip.git","repoName":"ip","organization":"YHWong20","domainName":"github"},"branch":"master","displayName":"YHWong20/ip[master]","outputFolderName":"YHWong20_ip_master"},{"location":{"location":"https://github.com/syj02/ip.git","repoName":"ip","organization":"syj02","domainName":"github"},"branch":"master","displayName":"syj02/ip[master]","outputFolderName":"syj02_ip_master"},{"location":{"location":"https://github.com/T0nyLin/ip.git","repoName":"ip","organization":"T0nyLin","domainName":"github"},"branch":"master","displayName":"T0nyLin/ip[master]","outputFolderName":"T0nyLin_ip_master"},{"location":{"location":"https://github.com/XavierLiau34/ip.git","repoName":"ip","organization":"XavierLiau34","domainName":"github"},"branch":"master","displayName":"XavierLiau34/ip[master]","outputFolderName":"XavierLiau34_ip_master"},{"location":{"location":"https://github.com/cheeseong2001/ip.git","repoName":"ip","organization":"cheeseong2001","domainName":"github"},"branch":"master","displayName":"cheeseong2001/ip[master]","outputFolderName":"cheeseong2001_ip_master"},{"location":{"location":"https://github.com/rouvinerh/ip.git","repoName":"ip","organization":"rouvinerh","domainName":"github"},"branch":"master","displayName":"rouvinerh/ip[master]","outputFolderName":"rouvinerh_ip_master"},{"location":{"location":"https://github.com/NgYaoDong/ip.git","repoName":"ip","organization":"NgYaoDong","domainName":"github"},"branch":"master","displayName":"NgYaoDong/ip[master]","outputFolderName":"NgYaoDong_ip_master"},{"location":{"location":"https://github.com/nur-haziq/ip.git","repoName":"ip","organization":"nur-haziq","domainName":"github"},"branch":"master","displayName":"nur-haziq/ip[master]","outputFolderName":"nur-haziq_ip_master"},{"location":{"location":"https://github.com/nkotaa/ip.git","repoName":"ip","organization":"nkotaa","domainName":"github"},"branch":"master","displayName":"nkotaa/ip[master]","outputFolderName":"nkotaa_ip_master"},{"location":{"location":"https://github.com/wenenhoe/ip.git","repoName":"ip","organization":"wenenhoe","domainName":"github"},"branch":"master","displayName":"wenenhoe/ip[master]","outputFolderName":"wenenhoe_ip_master"},{"location":{"location":"https://github.com/wjunjie01/ip.git","repoName":"ip","organization":"wjunjie01","domainName":"github"},"branch":"master","displayName":"wjunjie01/ip[master]","outputFolderName":"wjunjie01_ip_master"},{"location":{"location":"https://github.com/L5-Z/ip.git","repoName":"ip","organization":"L5-Z","domainName":"github"},"branch":"master","displayName":"L5-Z/ip[master]","outputFolderName":"L5-Z_ip_master"},{"location":{"location":"https://github.com/annoy-o-mus/ip.git","repoName":"ip","organization":"annoy-o-mus","domainName":"github"},"branch":"master","displayName":"annoy-o-mus/ip[master]","outputFolderName":"annoy-o-mus_ip_master"},{"location":{"location":"https://github.com/nickczh/ip.git","repoName":"ip","organization":"nickczh","domainName":"github"},"branch":"master","displayName":"nickczh/ip[master]","outputFolderName":"nickczh_ip_master"},{"location":{"location":"https://github.com/e0958902/ip.git","repoName":"ip","organization":"e0958902","domainName":"github"},"branch":"master","displayName":"e0958902/ip[master]","outputFolderName":"e0958902_ip_master"},{"location":{"location":"https://github.com/JustinSoh/ip.git","repoName":"ip","organization":"JustinSoh","domainName":"github"},"branch":"master","displayName":"JustinSoh/ip[master]","outputFolderName":"JustinSoh_ip_master"},{"location":{"location":"https://github.com/PureUsagi/ip.git","repoName":"ip","organization":"PureUsagi","domainName":"github"},"branch":"master","displayName":"PureUsagi/ip[master]","outputFolderName":"PureUsagi_ip_master"},{"location":{"location":"https://github.com/Kobot7/ip.git","repoName":"ip","organization":"Kobot7","domainName":"github"},"branch":"master","displayName":"Kobot7/ip[master]","outputFolderName":"Kobot7_ip_master"},{"location":{"location":"https://github.com/EdmundTangg/ip.git","repoName":"ip","organization":"EdmundTangg","domainName":"github"},"branch":"master","displayName":"EdmundTangg/ip[master]","outputFolderName":"EdmundTangg_ip_master"},{"location":{"location":"https://github.com/kyuichyi/ip.git","repoName":"ip","organization":"kyuichyi","domainName":"github"},"branch":"master","displayName":"kyuichyi/ip[master]","outputFolderName":"kyuichyi_ip_master"},{"location":{"location":"https://github.com/imanamirshah/ip.git","repoName":"ip","organization":"imanamirshah","domainName":"github"},"branch":"master","displayName":"imanamirshah/ip[master]","outputFolderName":"imanamirshah_ip_master"},{"location":{"location":"https://github.com/j013n3/ip.git","repoName":"ip","organization":"j013n3","domainName":"github"},"branch":"master","displayName":"j013n3/ip[master]","outputFolderName":"j013n3_ip_master"},{"location":{"location":"https://github.com/leongxingyu/ip.git","repoName":"ip","organization":"leongxingyu","domainName":"github"},"branch":"master","displayName":"leongxingyu/ip[master]","outputFolderName":"leongxingyu_ip_master"}],"errorSet":[{"repoName":"SharlynLui/ip[master]","errorMessage":"Failed to clone from https://github.com/SharlynLui/ip.git"},{"repoName":"dylansiew/ip[master]","errorMessage":"Failed to clone from https://github.com/dylansiew/ip.git"},{"repoName":"hailey-jung/ip[master]","errorMessage":"Failed to clone from https://github.com/hailey-jung/ip.git"},{"repoName":"Fureimi/ip[master]","errorMessage":"Failed to clone from https://github.com/Fureimi/ip.git"},{"repoName":"MayFairMI6/ip[master]","errorMessage":"Failed to clone from https://github.com/MayFairMI6/ip.git"},{"repoName":"haowern98/ip[master]","errorMessage":"Failed to clone from https://github.com/haowern98/ip.git"},{"repoName":"tiffanyliu0220/ip[master]","errorMessage":"Failed to clone from https://github.com/tiffanyliu0220/ip.git"},{"repoName":"SemiColonKen/ip[master]","errorMessage":"Failed to clone from https://github.com/SemiColonKen/ip.git"},{"repoName":"raajamani/ip[master]","errorMessage":"Failed to clone from https://github.com/raajamani/ip.git"},{"repoName":"classskipper351/ip[master]","errorMessage":"Failed to clone from https://github.com/classskipper351/ip.git"},{"repoName":"a-wild-chocolate/ip[master]","errorMessage":"Failed to clone from https://github.com/a-wild-chocolate/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-04","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}}