diff --git a/archive.zip b/archive.zip index 18fd062f..aa2cef80 100644 Binary files a/archive.zip and b/archive.zip differ diff --git a/hwc0419_ip_master/authorship.json b/hwc0419_ip_master/authorship.json index ae2c4ebe..0c0bb92d 100644 --- a/hwc0419_ip_master/authorship.json +++ b/hwc0419_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Deadline extends Task{","lastModifiedDate":"2024-02-09"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d \"D\";","lastModifiedDate":"2024-02-09"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" protected String deadline;","lastModifiedDate":"2024-02-09"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" public Deadline(String description, String deadline) {","lastModifiedDate":"2024-02-09"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" super(description);","lastModifiedDate":"2024-02-09"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" this.deadline \u003d deadline;","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" return String.format(\"%s %s (%s)\", super.toString(), super.description, deadline);","lastModifiedDate":"2024-02-09"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-09"}],"authorContributionMap":{"hwc0419":16}},{"path":"src/main/java/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-02-02"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"-"},"content":"public class Duke {","lastModifiedDate":"2019-07-29"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" public Duke() {","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-02"},{"lineNumber":7,"author":{"gitId":"-"},"content":" public static void main(String[] args) {","lastModifiedDate":"2019-07-29"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" String botName \u003d \"Hirofumi\";","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-02"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" System.out.println(\" Hello! I\u0027m \" + botName);","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" System.out.println(\" What can I do for you?\");","lastModifiedDate":"2024-02-02"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-02"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" Scanner in \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-02"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" String userInput \u003d in.nextLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" boolean isRunning \u003d true;","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" int MAX_NUMBERED_LIST_LENGTH \u003d 100;","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" Task[] numberedList \u003d new Task[MAX_NUMBERED_LIST_LENGTH];","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":" int listCount \u003d 0;","lastModifiedDate":"2024-02-09"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":" while (isRunning) {","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" if (userInput.equals(\"bye\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-02"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":" System.out.println(\" Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-02"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-02"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":" isRunning \u003d false;","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":" } else if (userInput.equals(\"list\") \u0026\u0026 listCount \u003d\u003d 0) {","lastModifiedDate":"2024-02-09"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"List is empty.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":" } else if (userInput.equals(\"list\") \u0026\u0026 listCount \u003e 0) {","lastModifiedDate":"2024-02-09"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" for (int i \u003d 0; i \u003c listCount; i++) {","lastModifiedDate":"2024-02-09"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":" System.out.print((i + 1) + \".\");","lastModifiedDate":"2024-02-04"},{"lineNumber":33,"author":{"gitId":"hwc0419"},"content":"// System.out.printf(\"[%s][%s] \", numberedList[i].getType(), numberedList[i].getStatusIcon());","lastModifiedDate":"2024-02-09"},{"lineNumber":34,"author":{"gitId":"hwc0419"},"content":" System.out.println(numberedList[i]);","lastModifiedDate":"2024-02-09"},{"lineNumber":35,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":36,"author":{"gitId":"hwc0419"},"content":" } else if (userInput.startsWith(\"mark\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":37,"author":{"gitId":"hwc0419"},"content":" String secondArgument \u003d userInput.substring(userInput.indexOf(\u0027 \u0027) + 1);","lastModifiedDate":"2024-02-04"},{"lineNumber":38,"author":{"gitId":"hwc0419"},"content":" int userSelectedIndex \u003d Integer.parseInt(secondArgument);","lastModifiedDate":"2024-02-04"},{"lineNumber":39,"author":{"gitId":"hwc0419"},"content":" numberedList[userSelectedIndex - 1].markAsDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":40,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":41,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":42,"author":{"gitId":"hwc0419"},"content":" System.out.print((userSelectedIndex) + \".\");","lastModifiedDate":"2024-02-04"},{"lineNumber":43,"author":{"gitId":"hwc0419"},"content":" System.out.printf(\"[%s] \", numberedList[userSelectedIndex - 1].getStatusIcon());","lastModifiedDate":"2024-02-04"},{"lineNumber":44,"author":{"gitId":"hwc0419"},"content":" System.out.println(numberedList[userSelectedIndex - 1].description);","lastModifiedDate":"2024-02-04"},{"lineNumber":45,"author":{"gitId":"hwc0419"},"content":" } else if (userInput.startsWith(\"unmark\")) {","lastModifiedDate":"2024-02-04"},{"lineNumber":46,"author":{"gitId":"hwc0419"},"content":" String secondArgument \u003d userInput.substring(userInput.indexOf(\u0027 \u0027) + 1);","lastModifiedDate":"2024-02-04"},{"lineNumber":47,"author":{"gitId":"hwc0419"},"content":" int userSelectedIndex \u003d Integer.parseInt(secondArgument);","lastModifiedDate":"2024-02-04"},{"lineNumber":48,"author":{"gitId":"hwc0419"},"content":" numberedList[userSelectedIndex - 1].markAsNotDone();","lastModifiedDate":"2024-02-04"},{"lineNumber":49,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":50,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"OK, I\u0027ve marked this task as not done yet:\");","lastModifiedDate":"2024-02-04"},{"lineNumber":51,"author":{"gitId":"hwc0419"},"content":" System.out.print((userSelectedIndex) + \".\");","lastModifiedDate":"2024-02-04"},{"lineNumber":52,"author":{"gitId":"hwc0419"},"content":" System.out.printf(\"[%s] \", numberedList[userSelectedIndex - 1].getStatusIcon());","lastModifiedDate":"2024-02-04"},{"lineNumber":53,"author":{"gitId":"hwc0419"},"content":" System.out.println(numberedList[userSelectedIndex - 1].description);","lastModifiedDate":"2024-02-04"},{"lineNumber":54,"author":{"gitId":"hwc0419"},"content":" } else if (userInput.startsWith(\"todo\")) {","lastModifiedDate":"2024-02-09"},{"lineNumber":55,"author":{"gitId":"hwc0419"},"content":" String taskDescription \u003d userInput.substring(userInput.indexOf(\u0027 \u0027) + 1);","lastModifiedDate":"2024-02-09"},{"lineNumber":56,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-09"},{"lineNumber":57,"author":{"gitId":"hwc0419"},"content":" Todo newTodo \u003d new Todo(taskDescription);","lastModifiedDate":"2024-02-09"},{"lineNumber":58,"author":{"gitId":"hwc0419"},"content":" numberedList[listCount++] \u003d newTodo;","lastModifiedDate":"2024-02-09"},{"lineNumber":59,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"added: \" + newTodo);","lastModifiedDate":"2024-02-09"},{"lineNumber":60,"author":{"gitId":"hwc0419"},"content":" } else if (userInput.startsWith(\"deadline\")) {","lastModifiedDate":"2024-02-09"},{"lineNumber":61,"author":{"gitId":"hwc0419"},"content":" String taskDescription \u003d userInput.substring(userInput.indexOf(\u0027 \u0027) + 1, userInput.indexOf(\u0027/\u0027) - 1);","lastModifiedDate":"2024-02-09"},{"lineNumber":62,"author":{"gitId":"hwc0419"},"content":" String deadline \u003d userInput.substring(userInput.indexOf(\u0027/\u0027) + 1);","lastModifiedDate":"2024-02-09"},{"lineNumber":63,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-09"},{"lineNumber":64,"author":{"gitId":"hwc0419"},"content":" Deadline newDeadline \u003d new Deadline(taskDescription, deadline);","lastModifiedDate":"2024-02-09"},{"lineNumber":65,"author":{"gitId":"hwc0419"},"content":" numberedList[listCount++] \u003d newDeadline;","lastModifiedDate":"2024-02-09"},{"lineNumber":66,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"added: \" + newDeadline);","lastModifiedDate":"2024-02-09"},{"lineNumber":67,"author":{"gitId":"hwc0419"},"content":" } else if (userInput.startsWith(\"event\")) {","lastModifiedDate":"2024-02-09"},{"lineNumber":68,"author":{"gitId":"hwc0419"},"content":" String taskDescription \u003d userInput.substring(userInput.indexOf(\u0027 \u0027) + 1, userInput.indexOf(\u0027/\u0027) - 1);","lastModifiedDate":"2024-02-09"},{"lineNumber":69,"author":{"gitId":"hwc0419"},"content":" String timePeriod \u003d userInput.substring(userInput.indexOf(\u0027/\u0027) + 1);","lastModifiedDate":"2024-02-09"},{"lineNumber":70,"author":{"gitId":"hwc0419"},"content":" String startTime \u003d timePeriod.substring(0, timePeriod.indexOf(\u0027/\u0027) - 1);","lastModifiedDate":"2024-02-09"},{"lineNumber":71,"author":{"gitId":"hwc0419"},"content":" String endTime \u003d timePeriod.substring(timePeriod.indexOf(\u0027/\u0027) + 1);","lastModifiedDate":"2024-02-09"},{"lineNumber":72,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-09"},{"lineNumber":73,"author":{"gitId":"hwc0419"},"content":" Event newEvent \u003d new Event(taskDescription, startTime, endTime);","lastModifiedDate":"2024-02-09"},{"lineNumber":74,"author":{"gitId":"hwc0419"},"content":" numberedList[listCount++] \u003d newEvent;","lastModifiedDate":"2024-02-09"},{"lineNumber":75,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"added: \" + newEvent);","lastModifiedDate":"2024-02-09"},{"lineNumber":76,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-04"},{"lineNumber":77,"author":{"gitId":"hwc0419"},"content":" Task newTask \u003d new Task(userInput);","lastModifiedDate":"2024-02-04"},{"lineNumber":78,"author":{"gitId":"hwc0419"},"content":" numberedList[listCount++] \u003d newTask;","lastModifiedDate":"2024-02-09"},{"lineNumber":79,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"added: \" + userInput);","lastModifiedDate":"2024-02-04"},{"lineNumber":80,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":81,"author":{"gitId":"hwc0419"},"content":" userInput \u003d in.nextLine();","lastModifiedDate":"2024-02-04"},{"lineNumber":82,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":83,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2019-07-29"},{"lineNumber":84,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2019-07-29"}],"authorContributionMap":{"hwc0419":80,"-":4}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Event extends Task {","lastModifiedDate":"2024-02-09"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d \"E\";","lastModifiedDate":"2024-02-09"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" protected String startTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" protected String endTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" public Event(String description, String startTime, String endTime) {","lastModifiedDate":"2024-02-09"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" super(description);","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" this.startTime \u003d startTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" this.endTime \u003d endTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" return String.format(\"%s %s (%s %s)\", super.toString(), super.description, startTime, endTime);","lastModifiedDate":"2024-02-09"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-09"}],"authorContributionMap":{"hwc0419":18}},{"path":"src/main/java/SyntaxChecker.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"//import java.lang.reflect.Array;","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":"//","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":"//public class SyntaxChecker {","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":"// public String command;","lastModifiedDate":"2024-02-04"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":"// public String commandName;","lastModifiedDate":"2024-02-04"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":"// public static String[] commandList \u003d {\"mark\", \"unmark\", \"list\", \"bye\"};","lastModifiedDate":"2024-02-04"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":"// public static String[] argumentTokens;","lastModifiedDate":"2024-02-04"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":"// public SyntaxChecker(String command) {","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":"// this.command \u003d command;","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":"// }","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":"// public boolean runChecks() {","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":"// return this.isValidFirstWord() \u0026\u0026 this.isValidArguments();","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":"// }","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":"//","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":"// public boolean isValidFirstWord() {","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":"// for (String s : commandList) {","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":"// if (this.command.startsWith(s)) {","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":"// commandName \u003d s;","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":"// return true;","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":"// }","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":"// }","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":"// System.out.println(\"Error: command not found. Try again.\");","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":"// return false;","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":"// }","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":"// public boolean isValidArguments() {","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":"//","lastModifiedDate":"2024-02-04"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":"// }","lastModifiedDate":"2024-02-04"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":"//}","lastModifiedDate":"2024-02-04"}],"authorContributionMap":{"hwc0419":28}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String description;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d null;","lastModifiedDate":"2024-02-09"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" public Task() {","lastModifiedDate":"2024-02-09"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" this(\"[Add Description Here]\");","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" public Task(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" this.description \u003d description;","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" public String getStatusIcon() {","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" return (isDone ? \"X\" : \" \");","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" public void markAsDone() {","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" isDone \u003d true;","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":" public void markAsNotDone() {","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" isDone \u003d false;","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":" return String.format(\"[%s][%s] %s\", this.getType(), this.getStatusIcon(), this.description);","lastModifiedDate":"2024-02-09"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-04"}],"authorContributionMap":{"hwc0419":32}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Todo extends Task{","lastModifiedDate":"2024-02-09"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d \"T\";","lastModifiedDate":"2024-02-09"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-09"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" public Todo(String description) {","lastModifiedDate":"2024-02-09"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" super(description);","lastModifiedDate":"2024-02-09"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-09"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" return String.format(\"%s %s\", super.toString(), super.description);","lastModifiedDate":"2024-02-09"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-09"}],"authorContributionMap":{"hwc0419":16}}] +[{"path":"src/main/java/CommandExecutor.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":"public class CommandExecutor {","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" static boolean isRunning \u003d true;","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" static final int MAX_NUMBERED_LIST_LENGTH \u003d 100;","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" static Task[] tasks \u003d new Task[MAX_NUMBERED_LIST_LENGTH];","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" static int listCount \u003d 0;","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" static Scanner in \u003d new Scanner(System.in);","lastModifiedDate":"2024-02-10"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" static String userInput;","lastModifiedDate":"2024-02-10"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" public static void beginListening() {","lastModifiedDate":"2024-02-10"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" userInput \u003d in.nextLine();","lastModifiedDate":"2024-02-10"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" public static void executeCommand(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" if (!readUserCommand.getIsGoodTokens()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorExecutionFail();","lastModifiedDate":"2024-02-10"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" CommandList selectedCommand \u003d CommandList.valueOf(readUserCommand.getCommandName());","lastModifiedDate":"2024-02-10"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":" switch (selectedCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":" case BYE:","lastModifiedDate":"2024-02-10"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":" CommandList.executeBye();","lastModifiedDate":"2024-02-10"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" break;","lastModifiedDate":"2024-02-10"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" case LIST:","lastModifiedDate":"2024-02-10"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":" CommandList.executeList();","lastModifiedDate":"2024-02-10"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":" break;","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":" case MARK:","lastModifiedDate":"2024-02-10"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":" CommandList.executeMark(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" break;","lastModifiedDate":"2024-02-10"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":" case TODO:","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" CommandList.executeTodo(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":" break;","lastModifiedDate":"2024-02-10"},{"lineNumber":33,"author":{"gitId":"hwc0419"},"content":" case EVENT:","lastModifiedDate":"2024-02-10"},{"lineNumber":34,"author":{"gitId":"hwc0419"},"content":" CommandList.executeEvent(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":35,"author":{"gitId":"hwc0419"},"content":" break;","lastModifiedDate":"2024-02-10"},{"lineNumber":36,"author":{"gitId":"hwc0419"},"content":" case UNMARK:","lastModifiedDate":"2024-02-10"},{"lineNumber":37,"author":{"gitId":"hwc0419"},"content":" CommandList.executeUnmark(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":38,"author":{"gitId":"hwc0419"},"content":" break;","lastModifiedDate":"2024-02-10"},{"lineNumber":39,"author":{"gitId":"hwc0419"},"content":" case DEADLINE:","lastModifiedDate":"2024-02-10"},{"lineNumber":40,"author":{"gitId":"hwc0419"},"content":" CommandList.executeDeadline(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":41,"author":{"gitId":"hwc0419"},"content":" break;","lastModifiedDate":"2024-02-10"},{"lineNumber":42,"author":{"gitId":"hwc0419"},"content":" default:","lastModifiedDate":"2024-02-10"},{"lineNumber":43,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorUnknown();","lastModifiedDate":"2024-02-10"},{"lineNumber":44,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":45,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":46,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":47,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-10"}],"authorContributionMap":{"hwc0419":47}},{"path":"src/main/java/CommandList.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public enum CommandList {","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" BYE, LIST, MARK, UNMARK, TODO, DEADLINE, EVENT;","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" private static final String[][] lutRegexSequence \u003d {","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" {},","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" {},","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" {\"^[0-9]+$\"},","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" {\"^[0-9]+$\"},","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" {\".+\"},","lastModifiedDate":"2024-02-10"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" {\".+\", \".+\"},","lastModifiedDate":"2024-02-10"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" {\".+\", \".+\", \".+\"}","lastModifiedDate":"2024-02-10"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" };","lastModifiedDate":"2024-02-10"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" public static int getArgumentCount(String commandName) {","lastModifiedDate":"2024-02-10"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" return lutRegexSequence[CommandList.valueOf(commandName).ordinal()].length;","lastModifiedDate":"2024-02-10"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" public static String[] getRegexSequence(String commandName) {","lastModifiedDate":"2024-02-10"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" return lutRegexSequence[CommandList.valueOf(commandName).ordinal()];","lastModifiedDate":"2024-02-10"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":" public static void executeBye() {","lastModifiedDate":"2024-02-10"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":" Formatter.printGoodbyeMsg();","lastModifiedDate":"2024-02-10"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.isRunning \u003d false;","lastModifiedDate":"2024-02-10"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":" public static void executeList() {","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":" if (CommandExecutor.listCount \u003d\u003d 0) {","lastModifiedDate":"2024-02-10"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":" Formatter.printListEmpty();","lastModifiedDate":"2024-02-10"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":" Formatter.printListAll();","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":33,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":34,"author":{"gitId":"hwc0419"},"content":" public static void executeMark(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":35,"author":{"gitId":"hwc0419"},"content":" if (readUserCommand.getIsGoodTokens()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":36,"author":{"gitId":"hwc0419"},"content":" Formatter.printMarkDoneNotif(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":37,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":38,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorBadTokens();","lastModifiedDate":"2024-02-10"},{"lineNumber":39,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":40,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":41,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":42,"author":{"gitId":"hwc0419"},"content":" public static void executeUnmark(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":43,"author":{"gitId":"hwc0419"},"content":" if (readUserCommand.getIsGoodTokens()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":44,"author":{"gitId":"hwc0419"},"content":" Formatter.printMarkUndoneNotif(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":45,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":46,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorBadTokens();","lastModifiedDate":"2024-02-10"},{"lineNumber":47,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":48,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":49,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":50,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":51,"author":{"gitId":"hwc0419"},"content":" public static void executeTodo(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":52,"author":{"gitId":"hwc0419"},"content":" if (readUserCommand.getIsGoodTokens()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":53,"author":{"gitId":"hwc0419"},"content":" Todo newTodo \u003d new Todo(readUserCommand.getArgumentTokens()[0]);","lastModifiedDate":"2024-02-10"},{"lineNumber":54,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.tasks[CommandExecutor.listCount++] \u003d newTodo;","lastModifiedDate":"2024-02-10"},{"lineNumber":55,"author":{"gitId":"hwc0419"},"content":" Formatter.printTodoNotif(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":56,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":57,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorBadTokens();","lastModifiedDate":"2024-02-10"},{"lineNumber":58,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":59,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":60,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":61,"author":{"gitId":"hwc0419"},"content":" public static void executeDeadline(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":62,"author":{"gitId":"hwc0419"},"content":" if (readUserCommand.getIsGoodTokens()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":63,"author":{"gitId":"hwc0419"},"content":" Deadline newDeadline \u003d new Deadline(readUserCommand.getArgumentTokens()[0], readUserCommand.getArgumentTokens()[1]);","lastModifiedDate":"2024-02-10"},{"lineNumber":64,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.tasks[CommandExecutor.listCount++] \u003d newDeadline;","lastModifiedDate":"2024-02-10"},{"lineNumber":65,"author":{"gitId":"hwc0419"},"content":" Formatter.printDeadlineNotif(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":66,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":67,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorBadTokens();","lastModifiedDate":"2024-02-10"},{"lineNumber":68,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":69,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":70,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":71,"author":{"gitId":"hwc0419"},"content":" public static void executeEvent(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":72,"author":{"gitId":"hwc0419"},"content":" if (readUserCommand.getIsGoodTokens()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":73,"author":{"gitId":"hwc0419"},"content":" String description \u003d readUserCommand.getArgumentTokens()[0];","lastModifiedDate":"2024-02-10"},{"lineNumber":74,"author":{"gitId":"hwc0419"},"content":" String startTime \u003d readUserCommand.getArgumentTokens()[1];","lastModifiedDate":"2024-02-10"},{"lineNumber":75,"author":{"gitId":"hwc0419"},"content":" String endTime \u003d readUserCommand.getArgumentTokens()[2];","lastModifiedDate":"2024-02-10"},{"lineNumber":76,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":77,"author":{"gitId":"hwc0419"},"content":" Event newEvent \u003d new Event(description, startTime, endTime);","lastModifiedDate":"2024-02-10"},{"lineNumber":78,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.tasks[CommandExecutor.listCount++] \u003d newEvent;","lastModifiedDate":"2024-02-10"},{"lineNumber":79,"author":{"gitId":"hwc0419"},"content":" Formatter.printEventNotif(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":80,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":81,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorBadTokens();","lastModifiedDate":"2024-02-10"},{"lineNumber":82,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":83,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":84,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":85,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-10"},{"lineNumber":86,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"}],"authorContributionMap":{"hwc0419":86}},{"path":"src/main/java/CommandParser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class CommandParser {","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" private String commandName \u003d null;","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" private int argumentCount \u003d 0;","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" private String[] argumentTokens \u003d {};","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" private boolean isGoodTokens \u003d false;","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" public CommandParser(String userInput) {","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" String commandToken \u003d userInput.split(\" \", 2)[0];","lastModifiedDate":"2024-02-10"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" String otherToken;","lastModifiedDate":"2024-02-10"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" if (!SyntaxChecker.validateCommandToken(commandToken)) {","lastModifiedDate":"2024-02-10"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" Formatter.printErrorWrongCommand();","lastModifiedDate":"2024-02-10"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" } else if (!SyntaxChecker.hasArgument(userInput)) {","lastModifiedDate":"2024-02-10"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" commandName \u003d commandToken.toUpperCase();","lastModifiedDate":"2024-02-10"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" isGoodTokens \u003d true;","lastModifiedDate":"2024-02-10"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" commandName \u003d commandToken.toUpperCase();","lastModifiedDate":"2024-02-10"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" otherToken \u003d userInput.split(\" \", 2)[1];","lastModifiedDate":"2024-02-10"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" if (SyntaxChecker.isDelimitedWithSpaces(commandName)) {","lastModifiedDate":"2024-02-10"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" argumentTokens \u003d otherToken.split(\" \", 3);","lastModifiedDate":"2024-02-10"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":" argumentTokens \u003d otherToken.split(\" /\", 3);","lastModifiedDate":"2024-02-10"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" isGoodTokens \u003d SyntaxChecker.validateTokens(commandName, argumentTokens);","lastModifiedDate":"2024-02-10"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":" public String getCommandName() {","lastModifiedDate":"2024-02-10"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":" return commandName;","lastModifiedDate":"2024-02-10"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" public int getArgumentCount() {","lastModifiedDate":"2024-02-10"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":" return argumentCount;","lastModifiedDate":"2024-02-10"},{"lineNumber":33,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":34,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":35,"author":{"gitId":"hwc0419"},"content":" public String[] getArgumentTokens() {","lastModifiedDate":"2024-02-10"},{"lineNumber":36,"author":{"gitId":"hwc0419"},"content":" return argumentTokens;","lastModifiedDate":"2024-02-10"},{"lineNumber":37,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":38,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":39,"author":{"gitId":"hwc0419"},"content":" public boolean getIsGoodTokens() {","lastModifiedDate":"2024-02-10"},{"lineNumber":40,"author":{"gitId":"hwc0419"},"content":" return isGoodTokens;","lastModifiedDate":"2024-02-10"},{"lineNumber":41,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":42,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-10"}],"authorContributionMap":{"hwc0419":42}},{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-09"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d \"D\";","lastModifiedDate":"2024-02-09"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" protected String deadline;","lastModifiedDate":"2024-02-09"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" public Deadline(String description, String deadline) {","lastModifiedDate":"2024-02-09"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" super(description);","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" this.deadline \u003d deadline;","lastModifiedDate":"2024-02-09"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" return String.format(\"%s (%s)\", super.toString(), deadline);","lastModifiedDate":"2024-02-10"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-09"}],"authorContributionMap":{"hwc0419":19}},{"path":"src/main/java/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"public class Duke {","lastModifiedDate":"2019-07-29"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" public Duke() {","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"-"},"content":" public static void main(String[] args) {","lastModifiedDate":"2019-07-29"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" Formatter.printWelcomeMsg();","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" while (CommandExecutor.isRunning) {","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.beginListening();","lastModifiedDate":"2024-02-10"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" CommandParser readUserCommand \u003d new CommandParser(CommandExecutor.userInput);","lastModifiedDate":"2024-02-10"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.executeCommand(readUserCommand);","lastModifiedDate":"2024-02-10"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2019-07-29"},{"lineNumber":14,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2019-07-29"}],"authorContributionMap":{"hwc0419":10,"-":4}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Event extends Task {","lastModifiedDate":"2024-02-09"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d \"E\";","lastModifiedDate":"2024-02-09"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" protected String startTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" protected String endTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" public Event(String description, String startTime, String endTime) {","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" super(description);","lastModifiedDate":"2024-02-09"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" this.startTime \u003d startTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" this.endTime \u003d endTime;","lastModifiedDate":"2024-02-09"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" return String.format(\"%s (%s %s)\", super.toString(), startTime, endTime);","lastModifiedDate":"2024-02-10"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-09"}],"authorContributionMap":{"hwc0419":21}},{"path":"src/main/java/Formatter.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Formatter {","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" final static String botName \u003d \"Hirofumi\";","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" public static void printWelcomeMsg() {","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" System.out.println(\" Hello! I\u0027m \" + botName);","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" System.out.println(\" What can I do for you?\");","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-10"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" public static void printGoodbyeMsg() {","lastModifiedDate":"2024-02-10"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-10"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" System.out.println(\" Bye. Hope to see you again soon!\");","lastModifiedDate":"2024-02-10"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"************************************************************\");","lastModifiedDate":"2024-02-10"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" public static void printListEmpty() {","lastModifiedDate":"2024-02-10"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"List is empty.\");","lastModifiedDate":"2024-02-10"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":" public static void printListAll() {","lastModifiedDate":"2024-02-10"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":" for (int i \u003d 0; i \u003c CommandExecutor.listCount; i++) {","lastModifiedDate":"2024-02-10"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" System.out.print((i + 1) + \".\");","lastModifiedDate":"2024-02-10"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" System.out.println(CommandExecutor.tasks[i]);","lastModifiedDate":"2024-02-10"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":" public static void printMarkDoneNotif(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" int userSelectedIndex \u003d Integer.parseInt(readUserCommand.getArgumentTokens()[0]);","lastModifiedDate":"2024-02-10"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":" if (userSelectedIndex \u003c CommandExecutor.listCount \u0026\u0026 userSelectedIndex \u003e 0) {","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.tasks[userSelectedIndex - 1].markAsDone();","lastModifiedDate":"2024-02-10"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":33,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2024-02-10"},{"lineNumber":34,"author":{"gitId":"hwc0419"},"content":" System.out.print((userSelectedIndex) + \".\");","lastModifiedDate":"2024-02-10"},{"lineNumber":35,"author":{"gitId":"hwc0419"},"content":" System.out.printf(\"[%s] \", CommandExecutor.tasks[userSelectedIndex - 1].getStatusIcon());","lastModifiedDate":"2024-02-10"},{"lineNumber":36,"author":{"gitId":"hwc0419"},"content":" System.out.println(CommandExecutor.tasks[userSelectedIndex - 1].description);","lastModifiedDate":"2024-02-10"},{"lineNumber":37,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":38,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"Error, selected index not in range. Try again.\");","lastModifiedDate":"2024-02-10"},{"lineNumber":39,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":40,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":41,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":42,"author":{"gitId":"hwc0419"},"content":" public static void printMarkUndoneNotif(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":43,"author":{"gitId":"hwc0419"},"content":" int userSelectedIndex \u003d Integer.parseInt(readUserCommand.getArgumentTokens()[0]);","lastModifiedDate":"2024-02-10"},{"lineNumber":44,"author":{"gitId":"hwc0419"},"content":" if (userSelectedIndex \u003c CommandExecutor.listCount \u0026\u0026 userSelectedIndex \u003e 0) {","lastModifiedDate":"2024-02-10"},{"lineNumber":45,"author":{"gitId":"hwc0419"},"content":" CommandExecutor.tasks[userSelectedIndex - 1].markAsNotDone();","lastModifiedDate":"2024-02-10"},{"lineNumber":46,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":47,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"OK, I\u0027ve marked this task as not done yet:\");","lastModifiedDate":"2024-02-10"},{"lineNumber":48,"author":{"gitId":"hwc0419"},"content":" System.out.print((userSelectedIndex) + \".\");","lastModifiedDate":"2024-02-10"},{"lineNumber":49,"author":{"gitId":"hwc0419"},"content":" System.out.printf(\"[%s] \", CommandExecutor.tasks[userSelectedIndex - 1].getStatusIcon());","lastModifiedDate":"2024-02-10"},{"lineNumber":50,"author":{"gitId":"hwc0419"},"content":" System.out.println(CommandExecutor.tasks[userSelectedIndex - 1].description);","lastModifiedDate":"2024-02-10"},{"lineNumber":51,"author":{"gitId":"hwc0419"},"content":" } else {","lastModifiedDate":"2024-02-10"},{"lineNumber":52,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"Error, selected index not in range. Try again.\");","lastModifiedDate":"2024-02-10"},{"lineNumber":53,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":54,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":55,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":56,"author":{"gitId":"hwc0419"},"content":" public static void printTodoNotif(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":57,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"added: \" + CommandExecutor.tasks[CommandExecutor.listCount - 1]);","lastModifiedDate":"2024-02-10"},{"lineNumber":58,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":59,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":60,"author":{"gitId":"hwc0419"},"content":" public static void printDeadlineNotif(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":61,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"added: \" + CommandExecutor.tasks[CommandExecutor.listCount - 1]);","lastModifiedDate":"2024-02-10"},{"lineNumber":62,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":63,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":64,"author":{"gitId":"hwc0419"},"content":" public static void printEventNotif(CommandParser readUserCommand) {","lastModifiedDate":"2024-02-10"},{"lineNumber":65,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"added: \" + CommandExecutor.tasks[CommandExecutor.listCount - 1]);","lastModifiedDate":"2024-02-10"},{"lineNumber":66,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":67,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":68,"author":{"gitId":"hwc0419"},"content":" public static void printErrorWrongCommand() {","lastModifiedDate":"2024-02-10"},{"lineNumber":69,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"CommandParser: Command not found\");","lastModifiedDate":"2024-02-10"},{"lineNumber":70,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":71,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":72,"author":{"gitId":"hwc0419"},"content":" public static void printErrorExecutionFail() {","lastModifiedDate":"2024-02-10"},{"lineNumber":73,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"CommandExecutor: Command could not be executed\");","lastModifiedDate":"2024-02-10"},{"lineNumber":74,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"Try again\");","lastModifiedDate":"2024-02-10"},{"lineNumber":75,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":76,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":77,"author":{"gitId":"hwc0419"},"content":" public static void printErrorUnknown() {","lastModifiedDate":"2024-02-10"},{"lineNumber":78,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"Unexpected error\");","lastModifiedDate":"2024-02-10"},{"lineNumber":79,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":80,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":81,"author":{"gitId":"hwc0419"},"content":" public static void printErrorBadTokens() {","lastModifiedDate":"2024-02-10"},{"lineNumber":82,"author":{"gitId":"hwc0419"},"content":" System.out.println(\"Bad Token Error\");","lastModifiedDate":"2024-02-10"},{"lineNumber":83,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":84,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-10"}],"authorContributionMap":{"hwc0419":84}},{"path":"src/main/java/SyntaxChecker.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"import java.util.regex.Matcher;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":"import java.util.regex.Pattern;","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":"public class SyntaxChecker {","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" public static boolean validateCommandToken(String commandToken) {","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" for (CommandList c : CommandList.values()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" if (c.name().toLowerCase().equals(commandToken)) {","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" return true;","lastModifiedDate":"2024-02-10"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" return false;","lastModifiedDate":"2024-02-10"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" public static boolean validateTokens(String commandName, String[] argumentTokens) {","lastModifiedDate":"2024-02-10"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" if (argumentTokens.length \u003d\u003d 0) {","lastModifiedDate":"2024-02-10"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" return true;","lastModifiedDate":"2024-02-10"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":" String[] thisRegexSequence \u003d CommandList.getRegexSequence(commandName);","lastModifiedDate":"2024-02-10"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" for (int i \u003d 0; i \u003c CommandList.getArgumentCount(commandName); i++) {","lastModifiedDate":"2024-02-10"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":" Pattern pattern \u003d Pattern.compile(thisRegexSequence[i]);","lastModifiedDate":"2024-02-10"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":" Matcher matcher \u003d pattern.matcher(argumentTokens[i]);","lastModifiedDate":"2024-02-10"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":" if (!matcher.find()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" return false;","lastModifiedDate":"2024-02-10"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":" return true;","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" public static boolean isDelimitedWithSpaces(String commandName) {","lastModifiedDate":"2024-02-10"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":" return CommandList.valueOf(commandName).ordinal() \u003c 5;","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":33,"author":{"gitId":"hwc0419"},"content":" public static boolean hasArgument(String userInput) {","lastModifiedDate":"2024-02-10"},{"lineNumber":34,"author":{"gitId":"hwc0419"},"content":" return userInput.split(\" \", 2).length - 1 \u003d\u003d 1;","lastModifiedDate":"2024-02-10"},{"lineNumber":35,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":36,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-10"}],"authorContributionMap":{"hwc0419":36}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Task {","lastModifiedDate":"2024-02-04"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String description;","lastModifiedDate":"2024-02-04"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":" protected boolean isDone;","lastModifiedDate":"2024-02-04"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d null;","lastModifiedDate":"2024-02-09"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" public Task() {","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":" this(\"[Add Description Here]\");","lastModifiedDate":"2024-02-09"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" public Task(String description) {","lastModifiedDate":"2024-02-04"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" this.description \u003d description;","lastModifiedDate":"2024-02-04"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-02-04"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" public String getStatusIcon() {","lastModifiedDate":"2024-02-04"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" return (isDone ? \"X\" : \" \");","lastModifiedDate":"2024-02-04"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":18,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":19,"author":{"gitId":"hwc0419"},"content":" public void markAsDone() {","lastModifiedDate":"2024-02-04"},{"lineNumber":20,"author":{"gitId":"hwc0419"},"content":" isDone \u003d true;","lastModifiedDate":"2024-02-04"},{"lineNumber":21,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":22,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-04"},{"lineNumber":23,"author":{"gitId":"hwc0419"},"content":" public void markAsNotDone() {","lastModifiedDate":"2024-02-04"},{"lineNumber":24,"author":{"gitId":"hwc0419"},"content":" isDone \u003d false;","lastModifiedDate":"2024-02-04"},{"lineNumber":25,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-04"},{"lineNumber":26,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":28,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":29,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":30,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":32,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":33,"author":{"gitId":"hwc0419"},"content":" return String.format(\"[%s][%s] %s\", this.getType(), this.getStatusIcon(), this.description);","lastModifiedDate":"2024-02-09"},{"lineNumber":34,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":35,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-04"}],"authorContributionMap":{"hwc0419":35}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"hwc0419"},"content":"public class Todo extends Task {","lastModifiedDate":"2024-02-09"},{"lineNumber":2,"author":{"gitId":"hwc0419"},"content":" protected String type \u003d \"T\";","lastModifiedDate":"2024-02-09"},{"lineNumber":3,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-09"},{"lineNumber":4,"author":{"gitId":"hwc0419"},"content":" public Todo(String description) {","lastModifiedDate":"2024-02-09"},{"lineNumber":5,"author":{"gitId":"hwc0419"},"content":" super(description);","lastModifiedDate":"2024-02-09"},{"lineNumber":6,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":7,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":9,"author":{"gitId":"hwc0419"},"content":" public String getType() {","lastModifiedDate":"2024-02-09"},{"lineNumber":10,"author":{"gitId":"hwc0419"},"content":" return type;","lastModifiedDate":"2024-02-09"},{"lineNumber":11,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":12,"author":{"gitId":"hwc0419"},"content":"","lastModifiedDate":"2024-02-09"},{"lineNumber":13,"author":{"gitId":"hwc0419"},"content":" @Override","lastModifiedDate":"2024-02-09"},{"lineNumber":14,"author":{"gitId":"hwc0419"},"content":" public String toString() {","lastModifiedDate":"2024-02-09"},{"lineNumber":15,"author":{"gitId":"hwc0419"},"content":" return String.format(\"%s\", super.toString());","lastModifiedDate":"2024-02-10"},{"lineNumber":16,"author":{"gitId":"hwc0419"},"content":" }","lastModifiedDate":"2024-02-09"},{"lineNumber":17,"author":{"gitId":"hwc0419"},"content":"}","lastModifiedDate":"2024-02-09"}],"authorContributionMap":{"hwc0419":17}}] diff --git a/hwc0419_ip_master/commits.json b/hwc0419_ip_master/commits.json index 1d8e663f..a358091e 100644 --- a/hwc0419_ip_master/commits.json +++ b/hwc0419_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"hwc0419":[{"date":"2024-02-02","commitResults":[{"hash":"d3acd4c520e779893e6ce4973d7ba35e492544a2","isMergeCommit":false,"messageTitle":"Update skeleton code","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":6}}},{"hash":"82ad6b5b0040dd1fed1d214bd8573bd318461a7e","isMergeCommit":false,"messageTitle":"Implement echo","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":11,"deletions":3}}}]},{"date":"2024-02-04","commitResults":[{"hash":"bba7c6b6c1bbf5f14fd01daf206675f1e5fc6a65","isMergeCommit":false,"messageTitle":"Implement list","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":30,"deletions":7}}},{"hash":"6aff0c48f152bc83d8f8fa01f77f12f6c2c299ec","isMergeCommit":false,"messageTitle":"Add checkbox functionality to list","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":83,"deletions":16}}},{"hash":"fcb141c1702ffddbe2db69c52ca3376f3725966a","isMergeCommit":false,"messageTitle":"Tweak code to comply with CS2113 coding standards","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":11,"deletions":7}}}]},{"date":"2024-02-09","commitResults":[{"hash":"d77ebeb23aac40bc5e952c31c6d855c16e0c074e","isMergeCommit":false,"messageTitle":"Add ToDos, Events, Deadlines classes","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":90,"deletions":10}}}]}]},"authorFileTypeContributionMap":{"hwc0419":{"java":190,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"hwc0419":1403.8763},"authorDisplayNameMap":{"hwc0419":"CS2113-F15-3 CHOO.. WEN"}} +{"authorDailyContributionsMap":{"hwc0419":[{"date":"2024-02-02","commitResults":[{"hash":"d3acd4c520e779893e6ce4973d7ba35e492544a2","isMergeCommit":false,"messageTitle":"Update skeleton code","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":8,"deletions":6}}},{"hash":"82ad6b5b0040dd1fed1d214bd8573bd318461a7e","isMergeCommit":false,"messageTitle":"Implement echo","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":11,"deletions":3}}}]},{"date":"2024-02-04","commitResults":[{"hash":"bba7c6b6c1bbf5f14fd01daf206675f1e5fc6a65","isMergeCommit":false,"messageTitle":"Implement list","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":30,"deletions":7}}},{"hash":"6aff0c48f152bc83d8f8fa01f77f12f6c2c299ec","isMergeCommit":false,"messageTitle":"Add checkbox functionality to list","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":83,"deletions":16}}},{"hash":"fcb141c1702ffddbe2db69c52ca3376f3725966a","isMergeCommit":false,"messageTitle":"Tweak code to comply with CS2113 coding standards","messageBody":"","tags":["A-CodingStandard"],"fileTypesAndContributionMap":{"java":{"insertions":11,"deletions":7}}}]},{"date":"2024-02-09","commitResults":[{"hash":"d77ebeb23aac40bc5e952c31c6d855c16e0c074e","isMergeCommit":false,"messageTitle":"Add ToDos, Events, Deadlines classes","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":90,"deletions":10}}}]},{"date":"2024-02-10","commitResults":[{"hash":"159466636b5300b58b62c17d55d962168dacc9ea","isMergeCommit":false,"messageTitle":"Improve Code Quality","messageBody":"","tags":["A-CodeQuality"],"fileTypesAndContributionMap":{"java":{"insertions":191,"deletions":97}}},{"hash":"c7f10abc9302ee1dfbab2eef37567bc02079b83b","isMergeCommit":false,"messageTitle":"Tweak code to comply with coding standards + More refactoring","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":70,"deletions":35}}},{"hash":"ef23fa95d26d4d5068cc132f80bfc1fd99b52b5e","isMergeCommit":false,"messageTitle":"Add Formatter Class to handle visual elements of the Interface Also fixed a bug where the commands mark and unmark would crash for inputs where consecutive digits are wrapped by non digits. This was due to the wrong regex expression used, causing SyntaxChecker to behave unexpectedly.","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":127,"deletions":49}}}]}]},"authorFileTypeContributionMap":{"hwc0419":{"java":397,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"hwc0419":14207.565},"authorDisplayNameMap":{"hwc0419":"CS2113-F15-3 CHOO.. WEN"}} diff --git a/reposense-logs/reposense.log.0 b/reposense-logs/reposense.log.0 index 17d5a861..039d8afc 100644 --- a/reposense-logs/reposense.log.0 +++ b/reposense-logs/reposense.log.0 @@ -1,30 +1,30 @@ -Feb 10, 2024 12:30:27 AM reposense.system.LogsManager addFileHandler +Feb 10, 2024 4:13:01 AM reposense.system.LogsManager addFileHandler INFO: Log temp folder has been successfully created -Feb 10, 2024 12:30:27 AM reposense.parser.CsvParser validateHeader +Feb 10, 2024 4:13:01 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 10, 2024 12:30:28 AM reposense.parser.CsvParser validateHeader +Feb 10, 2024 4:13:02 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 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias v4vern found. The alias will belong to the last author - V4Vern -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias zhengwinter found. The alias will belong to the last author - Zhengwinter -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ngxzs found. The alias will belong to the last author - NGXZS -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias e0958902 found. The alias will belong to the last author - e0958902 -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias edmundtangg found. The alias will belong to the last author - EdmundTangg -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias v4vern found. The alias will belong to the last author - V4Vern -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias zhengwinter found. The alias will belong to the last author - Zhengwinter -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ngxzs found. The alias will belong to the last author - NGXZS -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias e0958902 found. The alias will belong to the last author - e0958902 -Feb 10, 2024 12:30:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Feb 10, 2024 4:13:02 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias edmundtangg found. The alias will belong to the last author - EdmundTangg -Feb 10, 2024 12:30:28 AM reposense.git.GitConfig getGlobalGitLfsConfig +Feb 10, 2024 4:13:02 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,79 @@ 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 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Xb990219/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/joshualeejunyi/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Elyovs/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/rouvinerh/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rouvinerh/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Elyovs/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Xb990219/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rouvinerh/ip.git to complete... +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/joshualeejunyi/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Elyovs/ip.git completed! -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Xb990219/ip.git to complete... +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/rouvinerh/ip.git completed! -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Xb990219/ip.git completed! -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ThawTunZan/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [1/189] Analyzing https://github.com/rouvinerh/ip.git (master)... +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ThawTunZan/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joshualeejunyi/ip.git completed! -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [1/189] Analyzing https://github.com/Elyovs/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rouvinerh/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rouvinerh/ip.git (master)... +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Xb990219/ip.git completed! +Feb 10, 2024 4:13:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [2/189] Analyzing https://github.com/Xb990219/ip.git (master)... +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SemiColonKen/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [2/189] Analyzing https://github.com/rouvinerh/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SemiColonKen/ip.git to complete... +Feb 10, 2024 4:13:02 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Xb990219/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Xb990219/ip.git (master)... +Feb 10, 2024 4:13:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Elyovs/ip.git completed! +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joshualeejunyi/ip.git completed! +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wallywallywally/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [3/189] Analyzing https://github.com/Xb990219/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [3/189] Analyzing https://github.com/Elyovs/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wallywallywally/ip.git to complete... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/anneleong/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepos INFO: [4/189] Analyzing https://github.com/joshualeejunyi/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SemiColonKen/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wallywallywally/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/anneleong/ip.git to complete... -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Elyovs/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Xb990219/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rouvinerh/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Elyovs/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rouvinerh/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Xb990219/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/joshualeejunyi/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/joshualeejunyi/ip.git (master)... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rouvinerh/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rouvinerh/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Xb990219/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rouvinerh/ip.git (master) completed! +Feb 10, 2024 4:13:03 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,1543 +128,1539 @@ 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 10, 2024 12:30:28 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Xb990219/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/BenjoBurger/ip.git... -Feb 10, 2024 12:30:28 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/BenjoBurger/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ThawTunZan/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wallywallywally/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/anneleong/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rouvinerh/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rismm/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rismm/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/isaaceng7/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cirelesna/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/isaaceng7/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Xb990219/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cirelesna/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rouvinerh/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Xb990219/ip.git (master) completed! +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Elyovs/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Xb990219/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/joshualeejunyi/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Elyovs/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rouvinerh/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Elyovs/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [5/189] Analyzing https://github.com/wallywallywally/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Xb990219/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/BenjoBurger/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [6/189] Analyzing https://github.com/ThawTunZan/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [7/189] Analyzing https://github.com/anneleong/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/joshualeejunyi/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/iscyng/ip.git... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/joshualeejunyi/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wallywallywally/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wallywallywally/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rismm/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/iscyng/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/isaaceng7/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/anneleong/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/anneleong/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/joshualeejunyi/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/OKW32/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [8/189] Analyzing https://github.com/BenjoBurger/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zhengwinter/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ThawTunZan/ip.git completed! +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [5/189] Analyzing https://github.com/ThawTunZan/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rismm/ip.git... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rismm/ip.git to complete... +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ThawTunZan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ThawTunZan/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cirelesna/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/OKW32/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zhengwinter/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/clarencepohh/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/clarencepohh/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BenjoBurger/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BenjoBurger/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/anneleong/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wallywallywally/ip.git completed! +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [6/189] Analyzing https://github.com/wallywallywally/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/isaaceng7/ip.git... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/isaaceng7/ip.git to complete... +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wallywallywally/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wallywallywally/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ThawTunZan/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/iscyng/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ThawTunZan/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ThawTunZan/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wallywallywally/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wallywallywally/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/anneleong/ip.git completed! +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [7/189] Analyzing https://github.com/anneleong/ip.git (master)... +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cirelesna/ip.git... +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wallywallywally/ip.git (master) completed! +Feb 10, 2024 4:13:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cirelesna/ip.git to complete... +Feb 10, 2024 4:13:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/anneleong/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/anneleong/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/anneleong/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/anneleong/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [9/189] Analyzing https://github.com/rismm/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/anneleong/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [10/189] Analyzing https://github.com/isaaceng7/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/OKW32/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alvinnnnnnnnnn/ip.git... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wallywallywally/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/clarencepohh/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Zhengwinter/ip.git completed! -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MonkeScripts/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shawnpong/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/BenjoBurger/ip.git completed! +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [8/189] Analyzing https://github.com/BenjoBurger/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/iscyng/ip.git... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/iscyng/ip.git to complete... +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BenjoBurger/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BenjoBurger/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BenjoBurger/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BenjoBurger/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BenjoBurger/ip.git (master) completed! +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/isaaceng7/ip.git completed! +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [9/189] Analyzing https://github.com/isaaceng7/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/OKW32/ip.git... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/OKW32/ip.git to complete... +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/isaaceng7/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/isaaceng7/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rismm/ip.git completed! +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [10/189] Analyzing https://github.com/rismm/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zhengwinter/ip.git... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zhengwinter/ip.git to complete... +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/rismm/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/rismm/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/itsmejr257/ip.git... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alvinnnnnnnnnn/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/itsmejr257/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shawnpong/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MonkeScripts/ip.git to complete... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wallywallywally/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BenjoBurger/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wallywallywally/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [11/189] Analyzing https://github.com/cirelesna/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cirelesna/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BenjoBurger/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cirelesna/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BenjoBurger/ip.git (master) completed! -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [12/189] Analyzing https://github.com/iscyng/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/isaaceng7/ip.git (master)... -Feb 10, 2024 12:30:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/iscyng/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/iscyng/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cirelesna/ip.git completed! +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/isaaceng7/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [11/189] Analyzing https://github.com/cirelesna/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/clarencepohh/ip.git... +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/isaaceng7/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [13/189] Analyzing https://github.com/OKW32/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/MonkeScripts/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/OKW32/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/OKW32/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shawnpong/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/BryanCastorius/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alvinnnnnnnnnn/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cyhjason29/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/BryanCastorius/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alalal47/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cyhjason29/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itsmejr257/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alalal47/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/pqienso/ip.git... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/clarencepohh/ip.git to complete... +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cirelesna/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cirelesna/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/rismm/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/pqienso/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/rismm/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/rismm/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cirelesna/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [14/189] Analyzing https://github.com/Zhengwinter/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cirelesna/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iscyng/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cirelesna/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [15/189] Analyzing https://github.com/clarencepohh/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/iscyng/ip.git completed! +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [12/189] Analyzing https://github.com/iscyng/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alvinnnnnnnnnn/ip.git... +Feb 10, 2024 4:13:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alvinnnnnnnnnn/ip.git to complete... +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/iscyng/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/iscyng/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iscyng/ip.git (master)... +Feb 10, 2024 4:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/iscyng/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/iscyng/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [16/189] Analyzing https://github.com/MonkeScripts/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/OKW32/ip.git completed! +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [13/189] Analyzing https://github.com/OKW32/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MonkeScripts/ip.git... +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MonkeScripts/ip.git to complete... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/OKW32/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/OKW32/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Zhengwinter/ip.git completed! +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [14/189] Analyzing https://github.com/Zhengwinter/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shawnpong/ip.git... +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shawnpong/ip.git to complete... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Zhengwinter/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Zhengwinter/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/clarencepohh/ip.git completed! +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/itsmejr257/ip.git... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [15/189] Analyzing https://github.com/clarencepohh/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/itsmejr257/ip.git to complete... +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/OKW32/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/clarencepohh/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/clarencepohh/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/BryanCastorius/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MonkeScripts/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MonkeScripts/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cyhjason29/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/blackmirag3/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ttasnim5/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/blackmirag3/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/pqienso/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alalal47/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ttasnim5/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Leong-ZM/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vimalapugazhan/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Leong-ZM/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vimalapugazhan/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/OKW32/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MonkeScripts/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/OKW32/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/OKW32/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [17/189] Analyzing https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MonkeScripts/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Zhengwinter/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MonkeScripts/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/clarencepohh/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [18/189] Analyzing https://github.com/shawnpong/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alvinnnnnnnnnn/ip.git completed! +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/BryanCastorius/ip.git... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [16/189] Analyzing https://github.com/alvinnnnnnnnnn/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Zhengwinter/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/BryanCastorius/ip.git to complete... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zhengwinter/ip.git (master) completed! +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/alvinnnnnnnnnn/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/blackmirag3/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/clarencepohh/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/clarencepohh/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zhengwinter/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/clarencepohh/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [19/189] Analyzing https://github.com/itsmejr257/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [20/189] Analyzing https://github.com/BryanCastorius/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yeozhishen/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ttasnim5/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... +Feb 10, 2024 4:13:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alvinnnnnnnnnn/ip.git (master) completed! +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/MonkeScripts/ip.git completed! +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [17/189] Analyzing https://github.com/MonkeScripts/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cyhjason29/ip.git... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cyhjason29/ip.git to complete... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MonkeScripts/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MonkeScripts/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MonkeScripts/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MonkeScripts/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MonkeScripts/ip.git (master) completed! +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shawnpong/ip.git completed! +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alalal47/ip.git... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [18/189] Analyzing https://github.com/shawnpong/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alalal47/ip.git to complete... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shawnpong/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shawnpong/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yeozhishen/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BryanCastorius/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BryanCastorius/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aaravrawal52/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vimalapugazhan/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aaravrawal52/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Leong-ZM/ip.git completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/itsmejr257/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/itsmejr257/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yuhengr/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/daryltay415/ip.git... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/daryltay415/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yuhengr/ip.git to complete... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itsmejr257/ip.git completed! +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/pqienso/ip.git... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [19/189] Analyzing https://github.com/itsmejr257/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/pqienso/ip.git to complete... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shawnpong/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shawnpong/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shawnpong/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [21/189] Analyzing https://github.com/cyhjason29/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alvinnnnnnnnnn/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alvinnnnnnnnnn/ip.git (master) completed! -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BryanCastorius/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [22/189] Analyzing https://github.com/pqienso/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cyhjason29/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cyhjason29/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BryanCastorius/ip.git (master)... -Feb 10, 2024 12:30:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BryanCastorius/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [23/189] Analyzing https://github.com/alalal47/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/itsmejr257/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/itsmejr257/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/itsmejr257/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/pqienso/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/pqienso/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/BryanCastorius/ip.git completed! +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/blackmirag3/ip.git... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [20/189] Analyzing https://github.com/BryanCastorius/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/itsmejr257/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/itsmejr257/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yeozhishen/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aaravrawal52/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [24/189] Analyzing https://github.com/blackmirag3/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alalal47/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alalal47/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZhouJunmin/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/soongensayo/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/soongensayo/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZhouJunmin/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuhengr/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/blackmirag3/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/blackmirag3/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vibes-863/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/daryltay415/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/blackmirag3/ip.git to complete... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BryanCastorius/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BryanCastorius/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BryanCastorius/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BryanCastorius/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BryanCastorius/ip.git (master) completed! +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cyhjason29/ip.git completed! +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [21/189] Analyzing https://github.com/cyhjason29/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ttasnim5/ip.git... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ttasnim5/ip.git to complete... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cyhjason29/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cyhjason29/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alalal47/ip.git completed! +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cyhjason29/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicknamenic/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vibes-863/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicknamenic/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Leong-ZM/ip.git... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [22/189] Analyzing https://github.com/alalal47/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Leong-ZM/ip.git to complete... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cyhjason29/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cyhjason29/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [25/189] Analyzing https://github.com/ttasnim5/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alalal47/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alalal47/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alalal47/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alalal47/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alalal47/ip.git (master) completed! +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/pqienso/ip.git completed! +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [23/189] Analyzing https://github.com/pqienso/ip.git (master)... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vimalapugazhan/ip.git... +Feb 10, 2024 4:13:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vimalapugazhan/ip.git to complete... +Feb 10, 2024 4:13:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/pqienso/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/pqienso/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/blackmirag3/ip.git completed! +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [24/189] Analyzing https://github.com/blackmirag3/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yeozhishen/ip.git... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yeozhishen/ip.git to complete... +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/blackmirag3/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/blackmirag3/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/pqienso/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/pqienso/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ttasnim5/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ttasnim5/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/pqienso/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/blackmirag3/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [26/189] Analyzing https://github.com/vimalapugazhan/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alalal47/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/soongensayo/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZhouJunmin/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/blackmirag3/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/blackmirag3/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [27/189] Analyzing https://github.com/Leong-ZM/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yyangdaa/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tiffanyliu0220/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/vimalapugazhan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/vimalapugazhan/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tiffanyliu0220/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yyangdaa/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ttasnim5/ip.git completed! +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [25/189] Analyzing https://github.com/ttasnim5/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aaravrawal52/ip.git... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aaravrawal52/ip.git to complete... +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ttasnim5/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ttasnim5/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ttasnim5/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Leong-ZM/ip.git completed! +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ttasnim5/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ttasnim5/ip.git (master) completed! +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [26/189] Analyzing https://github.com/Leong-ZM/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yuhengr/ip.git... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yuhengr/ip.git to complete... +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Leong-ZM/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Leong-ZM/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vibes-863/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alalal47/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alalal47/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Leong-ZM/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Leong-ZM/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Leong-ZM/ip.git (master) completed! +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vimalapugazhan/ip.git completed! +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [27/189] Analyzing https://github.com/vimalapugazhan/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/daryltay415/ip.git... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/daryltay415/ip.git to complete... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yeozhishen/ip.git completed! +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepos INFO: [28/189] Analyzing https://github.com/yeozhishen/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicknamenic/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HengShuHong/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChenKangg/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HengShuHong/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZhouJunmin/ip.git... +Feb 10, 2024 4:13:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZhouJunmin/ip.git to complete... +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/vimalapugazhan/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/vimalapugazhan/ip.git (master)... +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yeozhishen/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yeozhishen/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChenKangg/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ttasnim5/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ttasnim5/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ttasnim5/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [29/189] Analyzing https://github.com/aaravrawal52/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/vimalapugazhan/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/aaravrawal52/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/aaravrawal52/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/vimalapugazhan/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/vimalapugazhan/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [30/189] Analyzing https://github.com/yuhengr/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Leong-ZM/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tiffanyliu0220/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yyangdaa/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yuhengr/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yuhengr/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/luozihui2003/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/luozihui2003/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Leong-ZM/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ParthGandhiNUS/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Leong-ZM/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [31/189] Analyzing https://github.com/daryltay415/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ParthGandhiNUS/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HengShuHong/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChenKangg/ip.git completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/daryltay415/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/daryltay415/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/imanamirshah/ip.git... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yeozhishen/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ijaaz01/ip.git... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/imanamirshah/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yeozhishen/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:07 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yeozhishen/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ijaaz01/ip.git to complete... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [32/189] Analyzing https://github.com/ZhouJunmin/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aaravrawal52/ip.git completed! +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [29/189] Analyzing https://github.com/aaravrawal52/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/soongensayo/ip.git... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/soongensayo/ip.git to complete... +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/aaravrawal52/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/aaravrawal52/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/aaravrawal52/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZhouJunmin/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZhouJunmin/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuhengr/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/aaravrawal52/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/aaravrawal52/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [33/189] Analyzing https://github.com/soongensayo/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuhengr/ip.git completed! +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [30/189] Analyzing https://github.com/yuhengr/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vibes-863/ip.git... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vibes-863/ip.git to complete... +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yuhengr/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yuhengr/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuhengr/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yuhengr/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yuhengr/ip.git (master) completed! -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [34/189] Analyzing https://github.com/nicknamenic/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/soongensayo/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/soongensayo/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/daryltay415/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nicknamenic/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nicknamenic/ip.git (master)... -Feb 10, 2024 12:30:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/luozihui2003/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/daryltay415/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/daryltay415/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [35/189] Analyzing https://github.com/vibes-863/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wjunjie01/ip.git... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ParthGandhiNUS/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wjunjie01/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tayponghee/ip.git... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/vibes-863/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/vibes-863/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZhouJunmin/ip.git completed! +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [31/189] Analyzing https://github.com/ZhouJunmin/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicknamenic/ip.git... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicknamenic/ip.git to complete... +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZhouJunmin/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZhouJunmin/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/daryltay415/ip.git completed! +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [32/189] Analyzing https://github.com/daryltay415/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yyangdaa/ip.git... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yyangdaa/ip.git to complete... +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ZhouJunmin/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ijaaz01/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/imanamirshah/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tayponghee/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/daryltay415/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/daryltay415/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ZhouJunmin/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ZhouJunmin/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/leongxingyu/ip.git... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NicholasTanYY/ip.git... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [36/189] Analyzing https://github.com/tiffanyliu0220/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicknamenic/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NicholasTanYY/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/leongxingyu/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tiffanyliu0220/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tiffanyliu0220/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/daryltay415/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/daryltay415/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/daryltay415/ip.git (master) completed! +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/soongensayo/ip.git completed! +Feb 10, 2024 4:13:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [33/189] Analyzing https://github.com/soongensayo/ip.git (master)... +Feb 10, 2024 4:13:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tiffanyliu0220/ip.git... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tiffanyliu0220/ip.git to complete... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/soongensayo/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/soongensayo/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/soongensayo/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nicknamenic/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nicknamenic/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [37/189] Analyzing https://github.com/yyangdaa/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/soongensayo/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/soongensayo/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [38/189] Analyzing https://github.com/HengShuHong/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vibes-863/ip.git completed! +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [34/189] Analyzing https://github.com/vibes-863/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HengShuHong/ip.git... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HengShuHong/ip.git to complete... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/vibes-863/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/vibes-863/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/vibes-863/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vibes-863/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vibes-863/ip.git (master) completed! +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicknamenic/ip.git completed! +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [35/189] Analyzing https://github.com/nicknamenic/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChenKangg/ip.git... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChenKangg/ip.git to complete... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nicknamenic/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nicknamenic/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yyangdaa/ip.git completed! +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [36/189] Analyzing https://github.com/yyangdaa/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/luozihui2003/ip.git... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/luozihui2003/ip.git to complete... +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicknamenic/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yyangdaa/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yyangdaa/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HengShuHong/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HengShuHong/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nicknamenic/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nicknamenic/ip.git (master) completed! +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yyangdaa/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yyangdaa/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yyangdaa/ip.git (master) completed! +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tiffanyliu0220/ip.git completed! +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [37/189] Analyzing https://github.com/tiffanyliu0220/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ParthGandhiNUS/ip.git... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ParthGandhiNUS/ip.git to complete... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tiffanyliu0220/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tiffanyliu0220/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tiffanyliu0220/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tiffanyliu0220/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tiffanyliu0220/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [39/189] Analyzing https://github.com/ChenKangg/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/vibes-863/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vibes-863/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yyangdaa/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vibes-863/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HengShuHong/ip.git completed! +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/imanamirshah/ip.git... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [38/189] Analyzing https://github.com/HengShuHong/ip.git (master)... +Feb 10, 2024 4:13:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/imanamirshah/ip.git to complete... +Feb 10, 2024 4:13:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HengShuHong/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HengShuHong/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/luozihui2003/ip.git completed! +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HengShuHong/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [39/189] Analyzing https://github.com/luozihui2003/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ijaaz01/ip.git... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChenKangg/ip.git completed! +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ijaaz01/ip.git to complete... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [40/189] Analyzing https://github.com/ChenKangg/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wjunjie01/ip.git... +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HengShuHong/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HengShuHong/ip.git (master) completed! +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wjunjie01/ip.git to complete... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/luozihui2003/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/luozihui2003/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChenKangg/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChenKangg/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [40/189] Analyzing https://github.com/luozihui2003/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yyangdaa/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yyangdaa/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/luozihui2003/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/luozihui2003/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/luozihui2003/ip.git (master) completed! +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChenKangg/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChenKangg/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChenKangg/ip.git (master) completed! +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ParthGandhiNUS/ip.git completed! +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepos INFO: [41/189] Analyzing https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/luozihui2003/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/luozihui2003/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tayponghee/ip.git... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tayponghee/ip.git to complete... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ParthGandhiNUS/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HengShuHong/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wjunjie01/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ymirmeddeb/ip.git... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HengShuHong/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HengShuHong/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leongxingyu/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NicholasTanYY/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ParthGandhiNUS/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ParthGandhiNUS/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ParthGandhiNUS/ip.git (master) completed! +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/imanamirshah/ip.git completed! +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepos INFO: [42/189] Analyzing https://github.com/imanamirshah/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ymirmeddeb/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/songyuew/ip.git... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/e0958902/ip.git... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChenKangg/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/e0958902/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/leongxingyu/ip.git... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/leongxingyu/ip.git to complete... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/imanamirshah/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/imanamirshah/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/songyuew/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChenKangg/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/luozihui2003/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChenKangg/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/imanamirshah/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/imanamirshah/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/imanamirshah/ip.git (master) completed! +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ijaaz01/ip.git completed! +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepos INFO: [43/189] Analyzing https://github.com/Ijaaz01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/luozihui2003/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/luozihui2003/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [44/189] Analyzing https://github.com/wjunjie01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NicholasTanYY/ip.git... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NicholasTanYY/ip.git to complete... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ijaaz01/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ijaaz01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wjunjie01/ip.git completed! +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [44/189] Analyzing https://github.com/wjunjie01/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ymirmeddeb/ip.git... +Feb 10, 2024 4:13:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ymirmeddeb/ip.git to complete... +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ijaaz01/ip.git (master)... +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wjunjie01/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wjunjie01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ParthGandhiNUS/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ParthGandhiNUS/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [45/189] Analyzing https://github.com/NicholasTanYY/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NicholasTanYY/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NicholasTanYY/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ijaaz01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/imanamirshah/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ijaaz01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ijaaz01/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ymirmeddeb/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wjunjie01/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wjunjie01/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wjunjie01/ip.git (master) completed! +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tayponghee/ip.git completed! +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [45/189] Analyzing https://github.com/tayponghee/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/songyuew/ip.git... +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/songyuew/ip.git to complete... +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tayponghee/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tayponghee/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tayponghee/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tayponghee/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tayponghee/ip.git (master) completed! +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leongxingyu/ip.git completed! +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepos INFO: [46/189] Analyzing https://github.com/leongxingyu/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/imanamirshah/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/imanamirshah/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HiteshriAcharya/ip.git... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [47/189] Analyzing https://github.com/ymirmeddeb/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HiteshriAcharya/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/e0958902/ip.git... +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/e0958902/ip.git to complete... +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/leongxingyu/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/leongxingyu/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NicholasTanYY/ip.git completed! +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [47/189] Analyzing https://github.com/NicholasTanYY/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HiteshriAcharya/ip.git... +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HiteshriAcharya/ip.git to complete... +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leongxingyu/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NicholasTanYY/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NicholasTanYY/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leongxingyu/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leongxingyu/ip.git (master) completed! +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ymirmeddeb/ip.git completed! +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [48/189] Analyzing https://github.com/ymirmeddeb/ip.git (master)... +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/djleong01/ip.git... +Feb 10, 2024 4:13:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/djleong01/ip.git to complete... +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ymirmeddeb/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ymirmeddeb/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/e0958902/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/NicholasTanYY/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/djleong01/ip.git... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/djleong01/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/songyuew/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NicholasTanYY/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NicholasTanYY/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [48/189] Analyzing https://github.com/e0958902/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jamarcus111/ip.git... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ymirmeddeb/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jamarcus111/ip.git to complete... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wjunjie01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/e0958902/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/e0958902/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ymirmeddeb/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:11 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ymirmeddeb/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/songyuew/ip.git completed! +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepos INFO: [49/189] Analyzing https://github.com/songyuew/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wjunjie01/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wjunjie01/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jamarcus111/ip.git... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jamarcus111/ip.git to complete... +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/songyuew/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/songyuew/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/songyuew/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/songyuew/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/songyuew/ip.git (master) completed! -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leongxingyu/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HiteshriAcharya/ip.git completed! -Feb 10, 2024 12:30:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [50/189] Analyzing https://github.com/HiteshriAcharya/ip.git (master)... -Feb 10, 2024 12:30:32 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/e0958902/ip.git completed! +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [50/189] Analyzing https://github.com/e0958902/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Cryolian/ip.git... -Feb 10, 2024 12:30:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leongxingyu/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leongxingyu/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Cryolian/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HiteshriAcharya/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HiteshriAcharya/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/e0958902/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/e0958902/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/e0958902/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/djleong01/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HiteshriAcharya/ip.git completed! +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepos INFO: [51/189] Analyzing https://github.com/djleong01/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ChongXern/ip.git... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [52/189] Analyzing https://github.com/HiteshriAcharya/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sxfoo/ip.git... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChongXern/ip.git to complete... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sxfoo/ip.git to complete... +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/e0958902/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/e0958902/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChongXern/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/djleong01/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/djleong01/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jamarcus111/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [52/189] Analyzing https://github.com/Jamarcus111/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sxfoo/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sxfoo/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jamarcus111/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jamarcus111/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HiteshriAcharya/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HiteshriAcharya/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HiteshriAcharya/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HiteshriAcharya/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HiteshriAcharya/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jamarcus111/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jamarcus111/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jamarcus111/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HiteshriAcharya/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HiteshriAcharya/ip.git (master) completed! +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/djleong01/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/djleong01/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/djleong01/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cryolian/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [53/189] Analyzing https://github.com/Cryolian/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jamarcus111/ip.git completed! +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [53/189] Analyzing https://github.com/Jamarcus111/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/j013n3/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/j013n3/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Cryolian/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Cryolian/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChongXern/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [54/189] Analyzing https://github.com/ChongXern/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jamarcus111/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jamarcus111/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cryolian/ip.git completed! +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [54/189] Analyzing https://github.com/Cryolian/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tannerlie/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tannerlie/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Cryolian/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Cryolian/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jamarcus111/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jamarcus111/ip.git (master)... +Feb 10, 2024 4:13:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jamarcus111/ip.git (master) completed! +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Cryolian/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Cryolian/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Cryolian/ip.git (master) completed! +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sxfoo/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChongXern/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChongXern/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepos INFO: [55/189] Analyzing https://github.com/sxfoo/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/runxinghuan/ip.git... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Cryolian/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Cryolian/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChongXern/ip.git completed! +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/runxinghuan/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sxfoo/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sxfoo/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tayponghee/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [56/189] Analyzing https://github.com/tayponghee/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [56/189] Analyzing https://github.com/ChongXern/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/edwardhumi/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/edwardhumi/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tayponghee/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tayponghee/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sxfoo/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sxfoo/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChongXern/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChongXern/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChongXern/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/j013n3/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [57/189] Analyzing https://github.com/j013n3/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/annnniexu/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/annnniexu/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sxfoo/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChongXern/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChongXern/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/j013n3/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/j013n3/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sxfoo/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tayponghee/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tayponghee/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sxfoo/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tayponghee/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sxfoo/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/j013n3/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/runxinghuan/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [58/189] Analyzing https://github.com/runxinghuan/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tannerlie/ip.git completed! +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [57/189] Analyzing https://github.com/tannerlie/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/annnniexu/ip.git... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/annnniexu/ip.git to complete... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/j013n3/ip.git completed! +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [58/189] Analyzing https://github.com/j013n3/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/awesomesjh/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/awesomesjh/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tannerlie/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tannerlie/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/j013n3/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/j013n3/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tannerlie/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tannerlie/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tannerlie/ip.git (master) completed! +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/j013n3/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/j013n3/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/j013n3/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/runxinghuan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/runxinghuan/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/edwardhumi/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jasonlienardi/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepos INFO: [59/189] Analyzing https://github.com/edwardhumi/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/runxinghuan/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jasonlienardi/ip.git... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jasonlienardi/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/annnniexu/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/runxinghuan/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/genexus85/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/runxinghuan/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [60/189] Analyzing https://github.com/annnniexu/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/edwardhumi/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/edwardhumi/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/runxinghuan/ip.git completed! +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [60/189] Analyzing https://github.com/runxinghuan/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/genexus85/ip.git... +Feb 10, 2024 4:13:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/genexus85/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tannerlie/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [61/189] Analyzing https://github.com/tannerlie/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/L5-Z/ip.git... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/annnniexu/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/annnniexu/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/L5-Z/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tannerlie/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tannerlie/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/awesomesjh/ip.git completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [62/189] Analyzing https://github.com/awesomesjh/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LWachtel1/ip.git... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/runxinghuan/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/runxinghuan/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/edwardhumi/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LWachtel1/ip.git to complete... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/edwardhumi/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/edwardhumi/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/runxinghuan/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/runxinghuan/ip.git (master)... +Feb 10, 2024 4:13:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/runxinghuan/ip.git (master) completed! +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/awesomesjh/ip.git completed! +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [61/189] Analyzing https://github.com/awesomesjh/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/L5-Z/ip.git... +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/L5-Z/ip.git to complete... +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/awesomesjh/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/awesomesjh/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tannerlie/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/annnniexu/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tannerlie/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tannerlie/ip.git (master) completed! -Feb 10, 2024 12:30:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/annnniexu/ip.git (master)... -Feb 10, 2024 12:30:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/annnniexu/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/annnniexu/ip.git completed! +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LWachtel1/ip.git... +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [62/189] Analyzing https://github.com/annnniexu/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LWachtel1/ip.git to complete... +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/annnniexu/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/annnniexu/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/awesomesjh/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/awesomesjh/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/awesomesjh/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/genexus85/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [63/189] Analyzing https://github.com/genexus85/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/annnniexu/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/annnniexu/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/annnniexu/ip.git (master) completed! +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jasonlienardi/ip.git completed! +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [63/189] Analyzing https://github.com/jasonlienardi/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/PDHung1104/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/PDHung1104/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jasonlienardi/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/L5-Z/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jasonlienardi/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jasonlienardi/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/genexus85/ip.git completed! +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [64/189] Analyzing https://github.com/genexus85/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Geinzit/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [64/189] Analyzing https://github.com/jasonlienardi/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Geinzit/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cheeseong2001/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [65/189] Analyzing https://github.com/L5-Z/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/genexus85/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/genexus85/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jasonlienardi/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jasonlienardi/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jasonlienardi/ip.git (master) completed! +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/genexus85/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/genexus85/ip.git (master)... +Feb 10, 2024 4:13:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/genexus85/ip.git (master) completed! +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/L5-Z/ip.git completed! +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [65/189] Analyzing https://github.com/L5-Z/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cheeseong2001/ip.git... +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cheeseong2001/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jasonlienardi/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jasonlienardi/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/L5-Z/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/L5-Z/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/L5-Z/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/L5-Z/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/L5-Z/ip.git (master) completed! +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LWachtel1/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepos INFO: [66/189] Analyzing https://github.com/LWachtel1/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/owx0130/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/owx0130/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/genexus85/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LWachtel1/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LWachtel1/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/genexus85/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/genexus85/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/L5-Z/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jasonlienardi/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/L5-Z/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/L5-Z/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LWachtel1/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jasonlienardi/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jasonlienardi/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LWachtel1/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LWachtel1/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/PDHung1104/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepos INFO: [67/189] Analyzing https://github.com/PDHung1104/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jing-xiang/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jing-xiang/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cheeseong2001/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PDHung1104/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PDHung1104/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/raajamani/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [68/189] Analyzing https://github.com/cheeseong2001/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PDHung1104/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Geinzit/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PDHung1104/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PDHung1104/ip.git (master) completed! +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [68/189] Analyzing https://github.com/Geinzit/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/raajamani/ip.git... +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/raajamani/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [69/189] Analyzing https://github.com/Geinzit/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Geinzit/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Geinzit/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Geinzit/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Geinzit/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Geinzit/ip.git (master) completed! +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cheeseong2001/ip.git completed! +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [69/189] Analyzing https://github.com/cheeseong2001/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/webtjs/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/webtjs/ip.git to complete... +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/cheeseong2001/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/cheeseong2001/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/webtjs/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Geinzit/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Geinzit/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cheeseong2001/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cheeseong2001/ip.git (master)... +Feb 10, 2024 4:13:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cheeseong2001/ip.git (master) completed! +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/owx0130/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PDHung1104/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jensonjenkins/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepos INFO: [70/189] Analyzing https://github.com/owx0130/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jensonjenkins/ip.git... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jensonjenkins/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cheeseong2001/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cheeseong2001/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PDHung1104/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PDHung1104/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Geinzit/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/owx0130/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/owx0130/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Geinzit/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Geinzit/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/owx0130/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jing-xiang/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/owx0130/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepos INFO: [71/189] Analyzing https://github.com/jing-xiang/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LowTL/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/owx0130/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LowTL/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jing-xiang/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jing-xiang/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/owx0130/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/owx0130/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/owx0130/ip.git (master) completed! +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/raajamani/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepos INFO: [72/189] Analyzing https://github.com/raajamani/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TimothyLKM/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jing-xiang/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/TimothyLKM/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jing-xiang/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jing-xiang/ip.git (master) completed! +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/raajamani/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/raajamani/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jing-xiang/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/raajamani/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jing-xiang/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jing-xiang/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/raajamani/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/raajamani/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jensonjenkins/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [73/189] Analyzing https://github.com/jensonjenkins/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/webtjs/ip.git completed! +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [73/189] Analyzing https://github.com/webtjs/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/FeathersRe/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/FeathersRe/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jensonjenkins/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jensonjenkins/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LowTL/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jensonjenkins/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [74/189] Analyzing https://github.com/LowTL/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/webtjs/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/webtjs/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/webtjs/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/webtjs/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/webtjs/ip.git (master) completed! +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jensonjenkins/ip.git completed! +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [74/189] Analyzing https://github.com/jensonjenkins/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/liuy1103/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TimothyLKM/ip.git completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/liuy1103/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jensonjenkins/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [75/189] Analyzing https://github.com/TimothyLKM/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LowTL/ip.git completed! +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jensonjenkins/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jensonjenkins/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Cohii2/ip.git... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jensonjenkins/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [75/189] Analyzing https://github.com/LowTL/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Cohii2/ip.git to complete... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LowTL/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LowTL/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jensonjenkins/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jensonjenkins/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jensonjenkins/ip.git (master) completed! +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LowTL/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TimothyLKM/ip.git completed! +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LowTL/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LowTL/ip.git (master) completed! +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [76/189] Analyzing https://github.com/TimothyLKM/ip.git (master)... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yeozongyao/ip.git... +Feb 10, 2024 4:13:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yeozongyao/ip.git to complete... +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TimothyLKM/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TimothyLKM/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TimothyLKM/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LowTL/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TimothyLKM/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:16 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TimothyLKM/ip.git (master) completed! -Feb 10, 2024 12:30:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LowTL/ip.git (master)... -Feb 10, 2024 12:30:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LowTL/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/FeathersRe/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [76/189] Analyzing https://github.com/FeathersRe/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yeozongyao/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yeozongyao/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [77/189] Analyzing https://github.com/FeathersRe/ip.git (master)... +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/EdmundTangg/ip.git... +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/EdmundTangg/ip.git to complete... +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/FeathersRe/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/FeathersRe/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/FeathersRe/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/FeathersRe/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/FeathersRe/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/liuy1103/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [77/189] Analyzing https://github.com/liuy1103/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/EdmundTangg/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/EdmundTangg/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cohii2/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [78/189] Analyzing https://github.com/liuy1103/ip.git (master)... +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ZhangWenyue3325/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [78/189] Analyzing https://github.com/Cohii2/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ZhangWenyue3325/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/liuy1103/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/liuy1103/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Cohii2/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Cohii2/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/liuy1103/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Cohii2/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/liuy1103/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/liuy1103/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cohii2/ip.git completed! +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [79/189] Analyzing https://github.com/Cohii2/ip.git (master)... +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yuki-zmstr/ip.git... +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yuki-zmstr/ip.git to complete... +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Cohii2/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Cohii2/ip.git (master)... +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Cohii2/ip.git (master)... +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Cohii2/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Cohii2/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yeozongyao/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [79/189] Analyzing https://github.com/yeozongyao/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yuki-zmstr/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yuki-zmstr/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [80/189] Analyzing https://github.com/yeozongyao/ip.git (master)... +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/classskipper351/ip.git... +Feb 10, 2024 4:13:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/classskipper351/ip.git to complete... +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yeozongyao/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yeozongyao/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yeozongyao/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yeozongyao/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yeozongyao/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/EdmundTangg/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZhangWenyue3325/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [80/189] Analyzing https://github.com/EdmundTangg/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/classskipper351/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/classskipper351/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [81/189] Analyzing https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [81/189] Analyzing https://github.com/EdmundTangg/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Celineyaa/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Celineyaa/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/EdmundTangg/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/EdmundTangg/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZhangWenyue3325/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZhangWenyue3325/ip.git completed! +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/EdmundTangg/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuki-zmstr/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [82/189] Analyzing https://github.com/ZhangWenyue3325/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hongyijie06/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [82/189] Analyzing https://github.com/yuki-zmstr/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/EdmundTangg/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hongyijie06/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/EdmundTangg/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/EdmundTangg/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZhangWenyue3325/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZhangWenyue3325/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZhangWenyue3325/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZhangWenyue3325/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuki-zmstr/ip.git completed! +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [83/189] Analyzing https://github.com/yuki-zmstr/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/BestDownLoader365/ip.git... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/BestDownLoader365/ip.git to complete... +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZhangWenyue3325/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yuki-zmstr/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yuki-zmstr/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZhangWenyue3325/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZhangWenyue3325/ip.git (master) completed! +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yuki-zmstr/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yuki-zmstr/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yuki-zmstr/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/classskipper351/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/BestDownLoader365/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [83/189] Analyzing https://github.com/classskipper351/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Celineyaa/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/BestDownLoader365/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [84/189] Analyzing https://github.com/classskipper351/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ChinYanXu/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [84/189] Analyzing https://github.com/Celineyaa/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ChinYanXu/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/classskipper351/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/classskipper351/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Celineyaa/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Celineyaa/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/webtjs/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [85/189] Analyzing https://github.com/webtjs/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/classskipper351/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/classskipper351/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/classskipper351/ip.git (master) completed! +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Celineyaa/ip.git completed! +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [85/189] Analyzing https://github.com/Celineyaa/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/STeng618/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/STeng618/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Celineyaa/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/webtjs/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/webtjs/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/classskipper351/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hongyijie06/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Celineyaa/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Celineyaa/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Celineyaa/ip.git (master)... +Feb 10, 2024 4:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Celineyaa/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Celineyaa/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/fungg0/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hongyijie06/ip.git completed! +Feb 10, 2024 4:13:18 AM reposense.report.ReportGenerator analyzeRepos INFO: [86/189] Analyzing https://github.com/hongyijie06/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/classskipper351/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/classskipper351/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/fungg0/ip.git... +Feb 10, 2024 4:13:18 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/fungg0/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hongyijie06/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hongyijie06/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hongyijie06/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/webtjs/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/hongyijie06/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/hongyijie06/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/webtjs/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/webtjs/ip.git (master) completed! -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/BestDownLoader365/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepos INFO: [87/189] Analyzing https://github.com/BestDownLoader365/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/pradeep-cod/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/pradeep-cod/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BestDownLoader365/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BestDownLoader365/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ChinYanXu/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepos INFO: [88/189] Analyzing https://github.com/ChinYanXu/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/MayFairMI6/ip.git... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/MayFairMI6/ip.git to complete... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BestDownLoader365/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BestDownLoader365/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BestDownLoader365/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChinYanXu/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChinYanXu/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/STeng618/ip.git completed! -Feb 10, 2024 12:30:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [89/189] Analyzing https://github.com/STeng618/ip.git (master)... -Feb 10, 2024 12:30:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hafizuddin-a/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hafizuddin-a/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BestDownLoader365/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BestDownLoader365/ip.git (master) completed! +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChinYanXu/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChinYanXu/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChinYanXu/ip.git (master) completed! +Feb 10, 2024 4:13:19 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'... @@ -1672,809 +1676,803 @@ 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 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hafizuddin-a/ip.git... +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hafizuddin-a/ip.git to complete... +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/STeng618/ip.git completed! +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [89/189] Analyzing https://github.com/STeng618/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/YoengKokLeong/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/YoengKokLeong/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/fungg0/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/STeng618/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/STeng618/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/fungg0/ip.git completed! +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepos INFO: [90/189] Analyzing https://github.com/fungg0/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/RyanTDL/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/RyanTDL/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/fungg0/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/fungg0/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChinYanXu/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BestDownLoader365/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BestDownLoader365/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChinYanXu/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BestDownLoader365/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChinYanXu/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/fungg0/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/pradeep-cod/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [91/189] Analyzing https://github.com/pradeep-cod/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SharlynLui/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [91/189] Analyzing https://github.com/pradeep-cod/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/fungg0/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SharlynLui/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/fungg0/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/fungg0/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/pradeep-cod/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/pradeep-cod/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/STeng618/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/STeng618/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/STeng618/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/pradeep-cod/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/pradeep-cod/ip.git (master)... +Feb 10, 2024 4:13:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/pradeep-cod/ip.git (master) completed! +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/hafizuddin-a/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Luo-Z-Y/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepos INFO: [92/189] Analyzing https://github.com/hafizuddin-a/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/pradeep-cod/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Luo-Z-Y/ip.git... +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Luo-Z-Y/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/pradeep-cod/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YoengKokLeong/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [93/189] Analyzing https://github.com/YoengKokLeong/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/seandooa/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/seandooa/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hafizuddin-a/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hafizuddin-a/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hafizuddin-a/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hafizuddin-a/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hafizuddin-a/ip.git (master) completed! +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/RyanTDL/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [93/189] Analyzing https://github.com/RyanTDL/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/seandooa/ip.git... +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/seandooa/ip.git to complete... +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YoengKokLeong/ip.git completed! +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RyanTDL/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RyanTDL/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [94/189] Analyzing https://github.com/YoengKokLeong/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/YHWong20/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [94/189] Analyzing https://github.com/RyanTDL/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/YHWong20/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YoengKokLeong/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YoengKokLeong/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RyanTDL/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RyanTDL/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hafizuddin-a/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YoengKokLeong/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hafizuddin-a/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RyanTDL/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SharlynLui/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hafizuddin-a/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/YoengKokLeong/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YoengKokLeong/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepos INFO: [95/189] Analyzing https://github.com/SharlynLui/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kyuichyi/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RyanTDL/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RyanTDL/ip.git (master) completed! +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kyuichyi/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RyanTDL/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YoengKokLeong/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SharlynLui/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SharlynLui/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RyanTDL/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RyanTDL/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/YoengKokLeong/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YoengKokLeong/ip.git (master) completed! +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SharlynLui/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SharlynLui/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SharlynLui/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/seandooa/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Luo-Z-Y/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [96/189] Analyzing https://github.com/seandooa/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [96/189] Analyzing https://github.com/Luo-Z-Y/ip.git (master)... +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/samuelory/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [97/189] Analyzing https://github.com/Luo-Z-Y/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yzhanglp/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:20 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/samuelory/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yzhanglp/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YHWong20/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AhmedShaiyan/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [98/189] Analyzing https://github.com/YHWong20/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AhmedShaiyan/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/seandooa/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/seandooa/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Luo-Z-Y/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Luo-Z-Y/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/YHWong20/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/YHWong20/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Luo-Z-Y/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/seandooa/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Luo-Z-Y/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Luo-Z-Y/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/seandooa/ip.git completed! +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [97/189] Analyzing https://github.com/seandooa/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yzhanglp/ip.git... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yzhanglp/ip.git to complete... +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/seandooa/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/seandooa/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/seandooa/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YHWong20/ip.git completed! +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/seandooa/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/seandooa/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [98/189] Analyzing https://github.com/YHWong20/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AhmedShaiyan/ip.git... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AhmedShaiyan/ip.git to complete... +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/YHWong20/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/YHWong20/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kyuichyi/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [99/189] Analyzing https://github.com/kyuichyi/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Mahesh1772/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Mahesh1772/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kyuichyi/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kyuichyi/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kyuichyi/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kyuichyi/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kyuichyi/ip.git (master) completed! +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/YHWong20/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YHWong20/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/YHWong20/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kyuichyi/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/samuelory/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kyuichyi/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/syj02/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [100/189] Analyzing https://github.com/samuelory/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kyuichyi/ip.git (master) completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yzhanglp/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/syj02/ip.git... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/syj02/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chenhowy/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [101/189] Analyzing https://github.com/yzhanglp/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chenhowy/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/samuelory/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/samuelory/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/samuelory/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/samuelory/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/samuelory/ip.git (master) completed! +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yzhanglp/ip.git completed! +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [101/189] Analyzing https://github.com/yzhanglp/ip.git (master)... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chenhowy/ip.git... +Feb 10, 2024 4:13:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chenhowy/ip.git to complete... +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yzhanglp/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yzhanglp/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AhmedShaiyan/ip.git completed! -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [102/189] Analyzing https://github.com/AhmedShaiyan/ip.git (master)... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mihirheda02/ip.git... -Feb 10, 2024 12:30:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mihirheda02/ip.git to complete... -Feb 10, 2024 12:30:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AhmedShaiyan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AhmedShaiyan/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yzhanglp/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/samuelory/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Mahesh1772/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yzhanglp/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/azamanis/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [103/189] Analyzing https://github.com/Mahesh1772/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yzhanglp/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/samuelory/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/samuelory/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/azamanis/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Mahesh1772/ip.git completed! +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mihirheda02/ip.git... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [102/189] Analyzing https://github.com/Mahesh1772/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mihirheda02/ip.git to complete... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Mahesh1772/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Mahesh1772/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AhmedShaiyan/ip.git completed! +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [103/189] Analyzing https://github.com/AhmedShaiyan/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/azamanis/ip.git... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/azamanis/ip.git to complete... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AhmedShaiyan/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AhmedShaiyan/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Mahesh1772/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Mahesh1772/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Mahesh1772/ip.git (master) completed! +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AhmedShaiyan/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AhmedShaiyan/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AhmedShaiyan/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chenhowy/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZhuSijia0711/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [104/189] Analyzing https://github.com/chenhowy/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/syj02/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [104/189] Analyzing https://github.com/syj02/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZhuSijia0711/ip.git... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ZhuSijia0711/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nickczh/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [105/189] Analyzing https://github.com/syj02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nickczh/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/syj02/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/syj02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/syj02/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/syj02/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/syj02/ip.git (master) completed! +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chenhowy/ip.git completed! +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [105/189] Analyzing https://github.com/chenhowy/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nickczh/ip.git... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nickczh/ip.git to complete... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chenhowy/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chenhowy/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Mahesh1772/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Mahesh1772/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Mahesh1772/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mihirheda02/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [106/189] Analyzing https://github.com/mihirheda02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Hws2209/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Hws2209/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/mihirheda02/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/mihirheda02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chenhowy/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/azamanis/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chenhowy/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chenhowy/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/azamanis/ip.git completed! +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mihirheda02/ip.git completed! +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [106/189] Analyzing https://github.com/mihirheda02/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Hws2209/ip.git... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepos INFO: [107/189] Analyzing https://github.com/azamanis/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/fxe025/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Hws2209/ip.git to complete... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/fxe025/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/azamanis/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/azamanis/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/syj02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/mihirheda02/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/mihirheda02/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/azamanis/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/azamanis/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/azamanis/ip.git (master) completed! +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mihirheda02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/syj02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/syj02/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mihirheda02/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mihirheda02/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nickczh/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/azamanis/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tinaliu27/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [108/189] Analyzing https://github.com/nickczh/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ZhuSijia0711/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [108/189] Analyzing https://github.com/ZhuSijia0711/ip.git (master)... +Feb 10, 2024 4:13:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tinaliu27/ip.git... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tinaliu27/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [109/189] Analyzing https://github.com/ZhuSijia0711/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ningsongshen/ip.git... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/azamanis/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/azamanis/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ningsongshen/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nickczh/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nickczh/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ZhuSijia0711/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ZhuSijia0711/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Hws2209/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nyh3/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [110/189] Analyzing https://github.com/Hws2209/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nyh3/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Hws2209/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Hws2209/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/fxe025/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/john-nng/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [111/189] Analyzing https://github.com/fxe025/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/john-nng/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ZhuSijia0711/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/fxe025/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/fxe025/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ZhuSijia0711/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ZhuSijia0711/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nickczh/ip.git completed! +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [109/189] Analyzing https://github.com/nickczh/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ningsongshen/ip.git... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ningsongshen/ip.git to complete... +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nickczh/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nickczh/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nickczh/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nickczh/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nickczh/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/fxe025/ip.git completed! +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [110/189] Analyzing https://github.com/fxe025/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nyh3/ip.git... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nyh3/ip.git to complete... +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/fxe025/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/fxe025/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Hws2209/ip.git completed! +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [111/189] Analyzing https://github.com/Hws2209/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/john-nng/ip.git... +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/john-nng/ip.git to complete... +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Hws2209/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Hws2209/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/fxe025/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/fxe025/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/fxe025/ip.git (master) completed! +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Hws2209/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Hws2209/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Hws2209/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/fxe025/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/tinaliu27/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/fxe025/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/fxe025/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepos INFO: [112/189] Analyzing https://github.com/tinaliu27/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cayennegoh/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:23 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cayennegoh/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tinaliu27/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tinaliu27/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tinaliu27/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tinaliu27/ip.git (master)... +Feb 10, 2024 4:13:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tinaliu27/ip.git (master) completed! +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ningsongshen/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [113/189] Analyzing https://github.com/ningsongshen/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kirangeofran/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kirangeofran/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tinaliu27/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tinaliu27/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ningsongshen/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ningsongshen/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tinaliu27/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tinaliu27/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tinaliu27/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ningsongshen/ip.git (master)... +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ningsongshen/ip.git (master)... +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ningsongshen/ip.git (master) completed! +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nyh3/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Heart-of-N1/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [114/189] Analyzing https://github.com/nyh3/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Heart-of-N1/ip.git... +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Heart-of-N1/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nyh3/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nyh3/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ningsongshen/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/john-nng/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ningsongshen/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ningsongshen/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [115/189] Analyzing https://github.com/john-nng/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Vavinan/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Vavinan/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nyh3/ip.git (master)... +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/john-nng/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/john-nng/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nyh3/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nyh3/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nyh3/ip.git (master) completed! -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/john-nng/ip.git (master)... +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/cayennegoh/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [116/189] Analyzing https://github.com/cayennegoh/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/mukund1403/ip.git... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [116/189] Analyzing https://github.com/cayennegoh/ip.git (master)... +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/john-nng/ip.git (master)... +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/john-nng/ip.git (master) completed! +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/mukund1403/ip.git to complete... -Feb 10, 2024 12:30:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/john-nng/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kirangeofran/ip.git completed! -Feb 10, 2024 12:30:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [117/189] Analyzing https://github.com/kirangeofran/ip.git (master)... -Feb 10, 2024 12:30:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wenenhoe/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/cayennegoh/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/cayennegoh/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/john-nng/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/john-nng/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wenenhoe/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kirangeofran/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kirangeofran/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cayennegoh/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Heart-of-N1/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kirangeofran/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [118/189] Analyzing https://github.com/Heart-of-N1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/64-1/ip.git... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cayennegoh/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cayennegoh/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/64-1/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kirangeofran/ip.git completed! +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [117/189] Analyzing https://github.com/kirangeofran/ip.git (master)... +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wenenhoe/ip.git... +Feb 10, 2024 4:13:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wenenhoe/ip.git to complete... +Feb 10, 2024 4:13:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kirangeofran/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kirangeofran/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kirangeofran/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kirangeofran/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kirangeofran/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Heart-of-N1/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Heart-of-N1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Vavinan/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [119/189] Analyzing https://github.com/Vavinan/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Heart-of-N1/ip.git completed! +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [118/189] Analyzing https://github.com/Vavinan/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/64-1/ip.git... +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/64-1/ip.git to complete... +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [119/189] Analyzing https://github.com/Heart-of-N1/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chenxk619/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chenxk619/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Vavinan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Vavinan/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Heart-of-N1/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Heart-of-N1/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Heart-of-N1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Vavinan/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Heart-of-N1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Heart-of-N1/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Vavinan/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Vavinan/ip.git (master) completed! +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/mukund1403/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Vavinan/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [120/189] Analyzing https://github.com/mukund1403/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/paturikarthik/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/paturikarthik/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Vavinan/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Vavinan/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/mukund1403/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/mukund1403/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mukund1403/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mukund1403/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mukund1403/ip.git (master) completed! +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wenenhoe/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [121/189] Analyzing https://github.com/wenenhoe/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hwc0419/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/mukund1403/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/mukund1403/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hwc0419/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wenenhoe/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wenenhoe/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/64-1/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [122/189] Analyzing https://github.com/64-1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/avrilgk/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/avrilgk/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/64-1/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/64-1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wenenhoe/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wenenhoe/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wenenhoe/ip.git (master) completed! +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/chenxk619/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [123/189] Analyzing https://github.com/chenxk619/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/HenryGan138/ip.git... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mukund1403/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/HenryGan138/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mukund1403/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mukund1403/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chenxk619/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chenxk619/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/64-1/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/paturikarthik/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wenenhoe/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [124/189] Analyzing https://github.com/paturikarthik/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/64-1/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/64-1/ip.git (master) completed! +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Andy123qq4/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [124/189] Analyzing https://github.com/paturikarthik/ip.git (master)... +Feb 10, 2024 4:13:25 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Andy123qq4/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/64-1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wenenhoe/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wenenhoe/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/paturikarthik/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/paturikarthik/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hwc0419/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/64-1/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/64-1/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chenxk619/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chenxk619/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chenxk619/ip.git (master) completed! +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/paturikarthik/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/paturikarthik/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/paturikarthik/ip.git (master) completed! +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hwc0419/ip.git completed! +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [125/189] Analyzing https://github.com/hwc0419/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NgYaoDong/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NgYaoDong/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chenxk619/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chenxk619/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hwc0419/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hwc0419/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/avrilgk/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Joshuahoky/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepos INFO: [126/189] Analyzing https://github.com/avrilgk/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HenryGan138/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Joshuahoky/ip.git... +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Joshuahoky/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [127/189] Analyzing https://github.com/HenryGan138/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZMinghuiZ/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZMinghuiZ/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HenryGan138/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HenryGan138/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/avrilgk/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/avrilgk/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/paturikarthik/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hwc0419/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/paturikarthik/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/paturikarthik/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HenryGan138/ip.git completed! +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZMinghuiZ/ip.git... +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [127/189] Analyzing https://github.com/HenryGan138/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/hwc0419/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/hwc0419/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZMinghuiZ/ip.git to complete... +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/avrilgk/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HenryGan138/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HenryGan138/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Andy123qq4/ip.git completed! +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [128/189] Analyzing https://github.com/Andy123qq4/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/B1G-SAM/ip.git... +Feb 10, 2024 4:13:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/B1G-SAM/ip.git to complete... +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/avrilgk/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/avrilgk/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Andy123qq4/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Andy123qq4/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Andy123qq4/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Andy123qq4/ip.git (master)... +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Andy123qq4/ip.git (master) completed! +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HenryGan138/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HenryGan138/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HenryGan138/ip.git (master) completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/NgYaoDong/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Andy123qq4/ip.git completed! -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/B1G-SAM/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [128/189] Analyzing https://github.com/NgYaoDong/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Joshuahoky/ip.git completed! +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [129/189] Analyzing https://github.com/NgYaoDong/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JianJiaT/ip.git... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [129/189] Analyzing https://github.com/Andy123qq4/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/B1G-SAM/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [130/189] Analyzing https://github.com/Joshuahoky/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/eliztan/ip.git... +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JianJiaT/ip.git to complete... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Andy123qq4/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Andy123qq4/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/eliztan/ip.git to complete... +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NgYaoDong/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NgYaoDong/ip.git (master)... -Feb 10, 2024 12:30:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZMinghuiZ/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [130/189] Analyzing https://github.com/ZMinghuiZ/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/eliztan/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Joshuahoky/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/eliztan/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [131/189] Analyzing https://github.com/Joshuahoky/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/V4Vern/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/V4Vern/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZMinghuiZ/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZMinghuiZ/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Joshuahoky/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Joshuahoky/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Andy123qq4/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Andy123qq4/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Andy123qq4/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joshuahoky/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZMinghuiZ/ip.git completed! +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [131/189] Analyzing https://github.com/ZMinghuiZ/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/V4Vern/ip.git... +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joshuahoky/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joshuahoky/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZMinghuiZ/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZMinghuiZ/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZMinghuiZ/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/B1G-SAM/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [132/189] Analyzing https://github.com/B1G-SAM/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/haowern98/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/V4Vern/ip.git to complete... +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/haowern98/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NgYaoDong/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/B1G-SAM/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/B1G-SAM/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZMinghuiZ/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZMinghuiZ/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NgYaoDong/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/B1G-SAM/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NgYaoDong/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NgYaoDong/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JianJiaT/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [133/189] Analyzing https://github.com/JianJiaT/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nur-haziq/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nur-haziq/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZMinghuiZ/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/B1G-SAM/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/B1G-SAM/ip.git (master) completed! +Feb 10, 2024 4:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZMinghuiZ/ip.git (master)... +Feb 10, 2024 4:13:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZMinghuiZ/ip.git (master) completed! +Feb 10, 2024 4:13:27 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'... @@ -2490,47 +2488,77 @@ 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 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nur-haziq/ip.git... +Feb 10, 2024 4:13:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nur-haziq/ip.git to complete... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/eliztan/ip.git completed! +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [133/189] Analyzing https://github.com/eliztan/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dtaywd/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JianJiaT/ip.git completed! +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dtaywd/ip.git to complete... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [134/189] Analyzing https://github.com/JianJiaT/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/adamzzq/ip.git... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/adamzzq/ip.git to complete... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/eliztan/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/eliztan/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JianJiaT/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JianJiaT/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dtaywd/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/eliztan/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/B1G-SAM/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/eliztan/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/eliztan/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/eliztan/ip.git (master) completed! +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JianJiaT/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JianJiaT/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JianJiaT/ip.git (master) completed! +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/V4Vern/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [134/189] Analyzing https://github.com/eliztan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/adamzzq/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepos INFO: [135/189] Analyzing https://github.com/V4Vern/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dylansiew/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dylansiew/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/adamzzq/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/B1G-SAM/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/eliztan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/eliztan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/B1G-SAM/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/V4Vern/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/V4Vern/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/eliztan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/V4Vern/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/V4Vern/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/V4Vern/ip.git (master) completed! +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nur-haziq/ip.git completed! +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [136/189] Analyzing https://github.com/nur-haziq/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kyhjonathan/ip.git... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kyhjonathan/ip.git to complete... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nur-haziq/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nur-haziq/ip.git (master)... +Feb 10, 2024 4:13: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,335 +2574,311 @@ 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 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kyhjonathan/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kyhjonathan/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/eliztan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/eliztan/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JianJiaT/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JianJiaT/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JianJiaT/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/V4Vern/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/V4Vern/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/V4Vern/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nur-haziq/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [136/189] Analyzing https://github.com/nur-haziq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Daviancold/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Daviancold/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dtaywd/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nur-haziq/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nur-haziq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [137/189] Analyzing https://github.com/dtaywd/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nur-haziq/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nur-haziq/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nur-haziq/ip.git (master) completed! +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/adamzzq/ip.git completed! +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [137/189] Analyzing https://github.com/adamzzq/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CXIA17/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CXIA17/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dtaywd/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dtaywd/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/adamzzq/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [138/189] Analyzing https://github.com/adamzzq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Aak242/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Aak242/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/adamzzq/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/adamzzq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nur-haziq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nur-haziq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nur-haziq/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dtaywd/ip.git completed! +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [138/189] Analyzing https://github.com/dtaywd/ip.git (master)... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Aak242/ip.git... +Feb 10, 2024 4:13:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Aak242/ip.git to complete... +Feb 10, 2024 4:13:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dtaywd/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dtaywd/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/adamzzq/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/adamzzq/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/adamzzq/ip.git (master) completed! +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dtaywd/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dtaywd/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dtaywd/ip.git (master) completed! +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kyhjonathan/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [139/189] Analyzing https://github.com/kyhjonathan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nkotaa/ip.git... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dtaywd/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dtaywd/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nkotaa/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kyhjonathan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kyhjonathan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CXIA17/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kyhjonathan/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Daviancold/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [140/189] Analyzing https://github.com/CXIA17/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kyhjonathan/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kyhjonathan/ip.git (master) completed! +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/1simjustin/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [141/189] Analyzing https://github.com/Daviancold/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ShyamKrishna33/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [140/189] Analyzing https://github.com/Daviancold/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/1simjustin/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ShyamKrishna33/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Daviancold/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Daviancold/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Aak242/ip.git completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Daviancold/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Daviancold/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Daviancold/ip.git (master) completed! +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CXIA17/ip.git completed! +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [141/189] Analyzing https://github.com/CXIA17/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ShyamKrishna33/ip.git... +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ShyamKrishna33/ip.git to complete... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/CXIA17/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/CXIA17/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Aak242/ip.git completed! +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [142/189] Analyzing https://github.com/Aak242/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/EugeneChanJiajun/ip.git... -Feb 10, 2024 12:30:39 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/EugeneChanJiajun/ip.git to complete... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kyhjonathan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/adamzzq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kyhjonathan/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kyhjonathan/ip.git (master) completed! -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [142/189] Analyzing https://github.com/Aak242/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/adamzzq/ip.git (master)... -Feb 10, 2024 12:30:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/adamzzq/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CXIA17/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Aak242/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Aak242/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/CXIA17/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/CXIA17/ip.git (master) completed! +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Aak242/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Aak242/ip.git (master)... +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Aak242/ip.git (master) completed! +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nkotaa/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Daviancold/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [143/189] Analyzing https://github.com/nkotaa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nikhil-2101/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nikhil-2101/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Daviancold/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Daviancold/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CXIA17/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nkotaa/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nkotaa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/CXIA17/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/CXIA17/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Aak242/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/1simjustin/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LuoYu-uwu/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [144/189] Analyzing https://github.com/1simjustin/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Aak242/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Aak242/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LuoYu-uwu/ip.git... +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LuoYu-uwu/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/1simjustin/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/1simjustin/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nkotaa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nkotaa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nkotaa/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/EugeneChanJiajun/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [145/189] Analyzing https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/1simjustin/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/1simjustin/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/1simjustin/ip.git (master) completed! +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ShyamKrishna33/ip.git completed! +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [145/189] Analyzing https://github.com/ShyamKrishna33/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/a-wild-chocolate/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/a-wild-chocolate/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ShyamKrishna33/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [146/189] Analyzing https://github.com/ShyamKrishna33/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/EugeneChanJiajun/ip.git completed! +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [146/189] Analyzing https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/annoy-o-mus/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/annoy-o-mus/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/EugeneChanJiajun/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ShyamKrishna33/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ShyamKrishna33/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/1simjustin/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/EugeneChanJiajun/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ShyamKrishna33/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ShyamKrishna33/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ShyamKrishna33/ip.git (master) completed! +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/EugeneChanJiajun/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/EugeneChanJiajun/ip.git (master) completed! +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nikhil-2101/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/1simjustin/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/1simjustin/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [147/189] Analyzing https://github.com/nikhil-2101/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jasraa/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jasraa/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nikhil-2101/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nikhil-2101/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ShyamKrishna33/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ShyamKrishna33/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/EugeneChanJiajun/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ShyamKrishna33/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/EugeneChanJiajun/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nikhil-2101/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LuoYu-uwu/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [148/189] Analyzing https://github.com/LuoYu-uwu/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Fureimi/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Fureimi/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nikhil-2101/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nikhil-2101/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LuoYu-uwu/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LuoYu-uwu/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nikhil-2101/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nikhil-2101/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nikhil-2101/ip.git (master) completed! +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LuoYu-uwu/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LuoYu-uwu/ip.git (master)... +Feb 10, 2024 4:13:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LuoYu-uwu/ip.git (master) completed! +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/a-wild-chocolate/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [149/189] Analyzing https://github.com/a-wild-chocolate/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/z-wenqing/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/z-wenqing/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/a-wild-chocolate/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/a-wild-chocolate/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/a-wild-chocolate/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/a-wild-chocolate/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/a-wild-chocolate/ip.git (master) completed! +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/annoy-o-mus/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [150/189] Analyzing https://github.com/annoy-o-mus/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/IanFH/ip.git... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LuoYu-uwu/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/IanFH/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LuoYu-uwu/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LuoYu-uwu/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/annoy-o-mus/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/annoy-o-mus/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/annoy-o-mus/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/annoy-o-mus/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/annoy-o-mus/ip.git (master) completed! +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jasraa/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [151/189] Analyzing https://github.com/jasraa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nidhi-nayak/ip.git... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/a-wild-chocolate/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nidhi-nayak/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/a-wild-chocolate/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/a-wild-chocolate/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jasraa/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jasraa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jasraa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Fureimi/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jasraa/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jasraa/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [152/189] Analyzing https://github.com/Fureimi/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hailey-jung/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hailey-jung/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jasraa/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Fureimi/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Fureimi/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/annoy-o-mus/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jasraa/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jasraa/ip.git (master) completed! +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Fureimi/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Fureimi/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Fureimi/ip.git (master) completed! +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/z-wenqing/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/annoy-o-mus/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/annoy-o-mus/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [153/189] Analyzing https://github.com/z-wenqing/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JackieNeoCEG/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JackieNeoCEG/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 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'... @@ -2890,569 +2894,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 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/PureUsagi/ip.git... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Fureimi/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JackieNeoCEG/ip.git to complete... +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/PureUsagi/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/z-wenqing/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/z-wenqing/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Fureimi/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Fureimi/ip.git (master) completed! -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/IanFH/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [154/189] Analyzing https://github.com/IanFH/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CerealMiller/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CerealMiller/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/IanFH/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/IanFH/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/z-wenqing/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/z-wenqing/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/z-wenqing/ip.git (master) completed! +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/IanFH/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/IanFH/ip.git (master)... +Feb 10, 2024 4:13:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/IanFH/ip.git (master) completed! +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nidhi-nayak/ip.git completed! -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepos INFO: [155/189] Analyzing https://github.com/nidhi-nayak/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sweijie24/ip.git... -Feb 10, 2024 12:30:40 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sweijie24/ip.git to complete... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/IanFH/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/IanFH/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nidhi-nayak/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nidhi-nayak/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/z-wenqing/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/z-wenqing/ip.git (master)... -Feb 10, 2024 12:30:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/z-wenqing/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nidhi-nayak/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nidhi-nayak/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nidhi-nayak/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/IanFH/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/IanFH/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/IanFH/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JackieNeoCEG/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [156/189] Analyzing https://github.com/JackieNeoCEG/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CerealMiller/ip.git completed! +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [156/189] Analyzing https://github.com/CerealMiller/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/XavierLiau34/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/XavierLiau34/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CerealMiller/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CerealMiller/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/PureUsagi/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepos INFO: [157/189] Analyzing https://github.com/PureUsagi/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JustinSoh/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JustinSoh/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JackieNeoCEG/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JackieNeoCEG/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CerealMiller/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/CerealMiller/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/CerealMiller/ip.git (master) completed! +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PureUsagi/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PureUsagi/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CerealMiller/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [158/189] Analyzing https://github.com/CerealMiller/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JackieNeoCEG/ip.git completed! +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [158/189] Analyzing https://github.com/JackieNeoCEG/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/damiwee/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/damiwee/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JackieNeoCEG/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JackieNeoCEG/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PureUsagi/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PureUsagi/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PureUsagi/ip.git (master) completed! +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JackieNeoCEG/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JackieNeoCEG/ip.git (master)... +Feb 10, 2024 4:13:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JackieNeoCEG/ip.git (master) completed! +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sweijie24/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepos INFO: [159/189] Analyzing https://github.com/sweijie24/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Praneet-25/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CerealMiller/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CerealMiller/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Praneet-25/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sweijie24/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sweijie24/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JackieNeoCEG/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PureUsagi/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JackieNeoCEG/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JackieNeoCEG/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CerealMiller/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/CerealMiller/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/CerealMiller/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PureUsagi/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PureUsagi/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sweijie24/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/XavierLiau34/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/StargazerX0/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [160/189] Analyzing https://github.com/XavierLiau34/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sweijie24/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sweijie24/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/XavierLiau34/ip.git completed! +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [160/189] Analyzing https://github.com/XavierLiau34/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/StargazerX0/ip.git... +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/StargazerX0/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/XavierLiau34/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/XavierLiau34/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/XavierLiau34/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/XavierLiau34/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/XavierLiau34/ip.git (master) completed! +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JustinSoh/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepos INFO: [161/189] Analyzing https://github.com/JustinSoh/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Mmaxx15/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Mmaxx15/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/XavierLiau34/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/XavierLiau34/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JustinSoh/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JustinSoh/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/damiwee/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/XavierLiau34/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepos INFO: [162/189] Analyzing https://github.com/damiwee/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JeffinsonDarmawan/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JeffinsonDarmawan/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/XavierLiau34/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/XavierLiau34/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Praneet-25/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [163/189] Analyzing https://github.com/Praneet-25/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HikoHikoHiko/ip.git... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JustinSoh/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/damiwee/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/damiwee/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HikoHikoHiko/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JustinSoh/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JustinSoh/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JustinSoh/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/damiwee/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/damiwee/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/damiwee/ip.git (master) completed! +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Praneet-25/ip.git completed! +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [163/189] Analyzing https://github.com/Praneet-25/ip.git (master)... +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HikoHikoHiko/ip.git... +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HikoHikoHiko/ip.git to complete... +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Praneet-25/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Praneet-25/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Praneet-25/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/damiwee/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Praneet-25/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Praneet-25/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/damiwee/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/StargazerX0/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/damiwee/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kishen271828/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:33 AM reposense.report.ReportGenerator analyzeRepos INFO: [164/189] Analyzing https://github.com/StargazerX0/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kishen271828/ip.git... +Feb 10, 2024 4:13:33 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kishen271828/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Mmaxx15/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [165/189] Analyzing https://github.com/Mmaxx15/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Joellimjr/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/StargazerX0/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/StargazerX0/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Joellimjr/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Mmaxx15/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Mmaxx15/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/StargazerX0/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JeffinsonDarmawan/ip.git completed! +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/StargazerX0/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/StargazerX0/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JeffinsonDarmawan/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [166/189] Analyzing https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Joellimjr/ip.git... +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [165/189] Analyzing https://github.com/JeffinsonDarmawan/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Joellimjr/ip.git to complete... +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Mmaxx15/ip.git completed! +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JeffinsonDarmawan/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JeffinsonDarmawan/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/claribelho/ip.git... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Mmaxx15/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [166/189] Analyzing https://github.com/Mmaxx15/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/claribelho/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Mmaxx15/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Mmaxx15/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JeffinsonDarmawan/ip.git (master) completed! +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Mmaxx15/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Mmaxx15/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Mmaxx15/ip.git (master) completed! +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/HikoHikoHiko/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [167/189] Analyzing https://github.com/HikoHikoHiko/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/rexyyong/ip.git... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Mmaxx15/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JeffinsonDarmawan/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Mmaxx15/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/rexyyong/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HikoHikoHiko/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HikoHikoHiko/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HikoHikoHiko/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HikoHikoHiko/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HikoHikoHiko/ip.git (master) completed! +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Kishen271828/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [168/189] Analyzing https://github.com/Kishen271828/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/T0nyLin/ip.git... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/T0nyLin/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JeffinsonDarmawan/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JeffinsonDarmawan/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Joellimjr/ip.git completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kishen271828/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kishen271828/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HikoHikoHiko/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kishen271828/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kishen271828/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kishen271828/ip.git (master) completed! +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Joellimjr/ip.git completed! +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [169/189] Analyzing https://github.com/Joellimjr/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/liuzehui03/ip.git... -Feb 10, 2024 12:30:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HikoHikoHiko/ip.git (master)... -Feb 10, 2024 12:30:41 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/liuzehui03/ip.git to complete... -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HikoHikoHiko/ip.git (master) completed! -Feb 10, 2024 12:30:41 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/claribelho/ip.git completed! +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/IncyBot/ip.git... +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Joellimjr/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Joellimjr/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kishen271828/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [170/189] Analyzing https://github.com/claribelho/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/IncyBot/ip.git to complete... +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/claribelho/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/claribelho/ip.git (master)... +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Joellimjr/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kishen271828/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Joellimjr/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Joellimjr/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kishen271828/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/claribelho/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/claribelho/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/claribelho/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/claribelho/ip.git (master) completed! +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/rexyyong/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [170/189] Analyzing https://github.com/claribelho/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/IncyBot/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [171/189] Analyzing https://github.com/rexyyong/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SuveenE/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/IncyBot/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SuveenE/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/rexyyong/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/rexyyong/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/claribelho/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/claribelho/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rexyyong/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rexyyong/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rexyyong/ip.git (master) completed! +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/T0nyLin/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [172/189] Analyzing https://github.com/T0nyLin/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nigelheng/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nigelheng/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/claribelho/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/liuzehui03/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/T0nyLin/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/T0nyLin/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dextboy/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/T0nyLin/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/T0nyLin/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/T0nyLin/ip.git (master) completed! +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/liuzehui03/ip.git completed! +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [173/189] Analyzing https://github.com/liuzehui03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/claribelho/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/claribelho/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rexyyong/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dextboy/ip.git... +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dextboy/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rexyyong/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/liuzehui03/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/liuzehui03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rexyyong/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/T0nyLin/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/liuzehui03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/IncyBot/ip.git completed! +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/liuzehui03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/liuzehui03/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/T0nyLin/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/T0nyLin/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/IncyBot/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [174/189] Analyzing https://github.com/IncyBot/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/lordgareth10/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/lordgareth10/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/IncyBot/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/IncyBot/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/IncyBot/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/IncyBot/ip.git (master)... +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/IncyBot/ip.git (master) completed! +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SuveenE/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [175/189] Analyzing https://github.com/SuveenE/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JingHaoooo/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JingHaoooo/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/IncyBot/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/IncyBot/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SuveenE/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SuveenE/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/IncyBot/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SuveenE/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SuveenE/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SuveenE/ip.git (master) completed! +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nigelheng/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Dheekshitha2/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [176/189] Analyzing https://github.com/nigelheng/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Dheekshitha2/ip.git... +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Dheekshitha2/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/IncyBot/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/IncyBot/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dextboy/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SuveenE/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nigelheng/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nigelheng/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NGXZS/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nigelheng/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nigelheng/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nigelheng/ip.git (master) completed! +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dextboy/ip.git completed! +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [177/189] Analyzing https://github.com/dextboy/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SuveenE/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SuveenE/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NGXZS/ip.git... +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NGXZS/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dextboy/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dextboy/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nigelheng/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nigelheng/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nigelheng/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dextboy/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/lordgareth10/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dextboy/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dextboy/ip.git (master) completed! +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [178/189] Analyzing https://github.com/lordgareth10/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jthibault03/ip.git... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dextboy/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jthibault03/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lordgareth10/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lordgareth10/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dextboy/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dextboy/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lordgareth10/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lordgareth10/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lordgareth10/ip.git (master) completed! +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JingHaoooo/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Haotian199/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [179/189] Analyzing https://github.com/JingHaoooo/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Haotian199/ip.git... +Feb 10, 2024 4:13:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Haotian199/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JingHaoooo/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JingHaoooo/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lordgareth10/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lordgareth10/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lordgareth10/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JingHaoooo/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JingHaoooo/ip.git (master)... +Feb 10, 2024 4:13:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JingHaoooo/ip.git (master) completed! +Feb 10, 2024 4:13:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Dheekshitha2/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NGXZS/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [180/189] Analyzing https://github.com/Dheekshitha2/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner spawnCloneProcess +Feb 10, 2024 4:13:37 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Kobot7/ip.git... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [181/189] Analyzing https://github.com/NGXZS/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kobot7/ip.git to complete... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Dheekshitha2/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Dheekshitha2/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NGXZS/ip.git completed! +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [181/189] Analyzing https://github.com/NGXZS/ip.git (master)... +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NGXZS/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NGXZS/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JingHaoooo/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JingHaoooo/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JingHaoooo/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Dheekshitha2/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Dheekshitha2/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Dheekshitha2/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/NGXZS/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NGXZS/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NGXZS/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess +Feb 10, 2024 4:13:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jthibault03/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Haotian199/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [182/189] Analyzing https://github.com/jthibault03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [183/189] Analyzing https://github.com/Haotian199/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jthibault03/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jthibault03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Haotian199/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Haotian199/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kobot7/ip.git completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jthibault03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [184/189] Analyzing https://github.com/Kobot7/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Haotian199/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jthibault03/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jthibault03/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Haotian199/ip.git completed! +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [183/189] Analyzing https://github.com/Haotian199/ip.git (master)... +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Haotian199/ip.git (master) does not contain a standalone config file. +Feb 10, 2024 4:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Haotian199/ip.git (master)... +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Haotian199/ip.git (master)... +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Haotian199/ip.git (master)... -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Haotian199/ip.git (master) completed! -Feb 10, 2024 12:30:42 AM reposense.report.ReportGenerator updateRepoConfig +Feb 10, 2024 4:13:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kobot7/ip.git completed! +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [184/189] Analyzing https://github.com/Kobot7/ip.git (master)... +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kobot7/ip.git (master) does not contain a standalone config file. -Feb 10, 2024 12:30:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Feb 10, 2024 4:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kobot7/ip.git (master)... -Feb 10, 2024 12:30:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Kobot7/ip.git (master)... -Feb 10, 2024 12:30:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Feb 10, 2024 4:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Kobot7/ip.git (master)... -Feb 10, 2024 12:30:43 AM reposense.report.ReportGenerator analyzeRepo +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Kobot7/ip.git (master) completed! -Feb 10, 2024 12:30:43 AM reposense.report.ReportGenerator generateReposReport +Feb 10, 2024 4:13:37 AM reposense.report.ReportGenerator generateReposReport INFO: The report is generated at /home/runner/work/ip-dashboard/ip-dashboard/reposense-report -Feb 10, 2024 12:30:43 AM reposense.RepoSense main -INFO: Elapsed processing time: 15.54 second(s) +Feb 10, 2024 4:13:38 AM reposense.RepoSense main +INFO: Elapsed processing time: 36.63 second(s) diff --git a/summary.json b/summary.json index a5500af2..624062a6 100644 --- a/summary.json +++ b/summary.json @@ -1 +1 @@ -{"repoSenseVersion":"29903e3124","reportGeneratedTime":"Sat Feb 10 08:30:28 2024 UTC+08:00","reportGenerationTime":" 15.33 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/Fureimi/ip.git","repoName":"ip","organization":"Fureimi","domainName":"github"},"branch":"master","displayName":"Fureimi/ip[master]","outputFolderName":"Fureimi_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/SharlynLui/ip.git","repoName":"ip","organization":"SharlynLui","domainName":"github"},"branch":"master","displayName":"SharlynLui/ip[master]","outputFolderName":"SharlynLui_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/tiffanyliu0220/ip.git","repoName":"ip","organization":"tiffanyliu0220","domainName":"github"},"branch":"master","displayName":"tiffanyliu0220/ip[master]","outputFolderName":"tiffanyliu0220_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/a-wild-chocolate/ip.git","repoName":"ip","organization":"a-wild-chocolate","domainName":"github"},"branch":"master","displayName":"a-wild-chocolate/ip[master]","outputFolderName":"a-wild-chocolate_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/classskipper351/ip.git","repoName":"ip","organization":"classskipper351","domainName":"github"},"branch":"master","displayName":"classskipper351/ip[master]","outputFolderName":"classskipper351_ip_master"},{"location":{"location":"https://github.com/raajamani/ip.git","repoName":"ip","organization":"raajamani","domainName":"github"},"branch":"master","displayName":"raajamani/ip[master]","outputFolderName":"raajamani_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":"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":"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":"SemiColonKen/ip[master]","errorMessage":"Failed to clone from https://github.com/SemiColonKen/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-10","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":"29903e3124","reportGeneratedTime":"Sat Feb 10 12:13:02 2024 UTC+08:00","reportGenerationTime":" 36.41 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/Fureimi/ip.git","repoName":"ip","organization":"Fureimi","domainName":"github"},"branch":"master","displayName":"Fureimi/ip[master]","outputFolderName":"Fureimi_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/SharlynLui/ip.git","repoName":"ip","organization":"SharlynLui","domainName":"github"},"branch":"master","displayName":"SharlynLui/ip[master]","outputFolderName":"SharlynLui_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/tiffanyliu0220/ip.git","repoName":"ip","organization":"tiffanyliu0220","domainName":"github"},"branch":"master","displayName":"tiffanyliu0220/ip[master]","outputFolderName":"tiffanyliu0220_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/a-wild-chocolate/ip.git","repoName":"ip","organization":"a-wild-chocolate","domainName":"github"},"branch":"master","displayName":"a-wild-chocolate/ip[master]","outputFolderName":"a-wild-chocolate_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/classskipper351/ip.git","repoName":"ip","organization":"classskipper351","domainName":"github"},"branch":"master","displayName":"classskipper351/ip[master]","outputFolderName":"classskipper351_ip_master"},{"location":{"location":"https://github.com/raajamani/ip.git","repoName":"ip","organization":"raajamani","domainName":"github"},"branch":"master","displayName":"raajamani/ip[master]","outputFolderName":"raajamani_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":"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":"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":"SemiColonKen/ip[master]","errorMessage":"Failed to clone from https://github.com/SemiColonKen/ip.git"}],"sinceDate":"2024-01-19","untilDate":"2024-02-10","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"}}} diff --git a/yuki-zmstr_ip_master/authorship.json b/yuki-zmstr_ip_master/authorship.json index 485f29d7..cb3086b5 100644 --- a/yuki-zmstr_ip_master/authorship.json +++ b/yuki-zmstr_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":" protected String by;","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" public Deadline(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":" this.taskType \u003d \"[D]\";","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":10}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"public class Event extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":" public Event(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" this.taskType \u003d \"[E]\";","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":8}},{"path":"src/main/java/Parser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"public class Parser {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":" // These are the prefix strings to define the data type of a command parameter","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" private static final String TASK_DATA_PREFIX_DEADLINE \u003d \"/by \";","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" private static final String TASK_DATA_PREFIX_EVENT_START \u003d \"/from \";","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" private static final String TASK_DATA_PREFIX_EVENT_END \u003d \"/to \";","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" public static String[] parseInput(String userInput){","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" final String regexMatcher \u003d TASK_DATA_PREFIX_DEADLINE + \"|\"","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":" + TASK_DATA_PREFIX_EVENT_START + \"|\" + TASK_DATA_PREFIX_EVENT_END;","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":" return userInput.trim().split(regexMatcher);","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":13}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"public class Task {","lastModifiedDate":"2024-01-27"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":" protected String description;","lastModifiedDate":"2024-01-27"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":" protected boolean isDone;","lastModifiedDate":"2024-01-27"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" protected String taskType \u003d \"\";","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" public Task(String description) {","lastModifiedDate":"2024-01-27"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-27"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-27"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":" public String getStatusIcon() {","lastModifiedDate":"2024-01-27"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":" return (isDone ? \"X\" : \" \");","lastModifiedDate":"2024-01-27"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":14,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":15,"author":{"gitId":"yuki-zmstr"},"content":" public void markAsDone() {","lastModifiedDate":"2024-01-27"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":" isDone \u003d true;","lastModifiedDate":"2024-01-27"},{"lineNumber":17,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Good job.\\n[X]\" + taskType + \" \" + description);","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":19,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":20,"author":{"gitId":"yuki-zmstr"},"content":" public void markAsUndone() {","lastModifiedDate":"2024-01-27"},{"lineNumber":21,"author":{"gitId":"yuki-zmstr"},"content":" isDone \u003d false;","lastModifiedDate":"2024-01-27"},{"lineNumber":22,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Lazy. Just simply lazy.\\n[ ]\" + taskType + \" \" + description);","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"yuki-zmstr"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"yuki-zmstr"},"content":" return \"new todo for you:\\n[ ]\" + taskType + \" \" + description;","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":29,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-01-27"}],"authorContributionMap":{"yuki-zmstr":29}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"public class Todo extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":" public Todo(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" this.taskType \u003d \"[T]\";","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":8}},{"path":"src/main/java/Utils.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"public class Utils {","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":" public static void printLine() {","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"---------------------------------------------\");","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" public static void printWelcomeMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"I am Yuki, your personal chat bot and your evil twin.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Time to get grinding.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":" public static void printExitMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Breaks are only for the weak.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"yuki-zmstr"},"content":" public static void printInstructions() {","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Accepted commands are:\");","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"list: shows you list of tasks\");","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"mark: marks a task as done\");","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"unmark: marks a task as undone\");","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"todo: adds a todo\");","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"deadline: adds a deadline\");","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"event: adds an event\");","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":28}},{"path":"src/main/java/Yuki.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-01-27"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"public class Yuki {","lastModifiedDate":"2024-01-27"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" // create array of Tasks (use of polymorphism)","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" private static Task[] tasks \u003d new Task[100];","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" private static int taskCount \u003d 0;","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" public static void addTask(Task t) {","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" tasks[taskCount] \u003d t;","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":" taskCount++;","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(t);","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"yuki-zmstr"},"content":" public static void reportNumberOfTasks() {","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Now you have \" + taskCount + \" tasks in the list.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":17,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"yuki-zmstr"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-01-27"},{"lineNumber":19,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printWelcomeMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":21,"author":{"gitId":"yuki-zmstr"},"content":" // accept user input","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"yuki-zmstr"},"content":" String line;","lastModifiedDate":"2024-01-27"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":" Scanner in \u003d new Scanner(System.in);","lastModifiedDate":"2024-01-27"},{"lineNumber":24,"author":{"gitId":"yuki-zmstr"},"content":" line \u003d in.nextLine();","lastModifiedDate":"2024-01-27"},{"lineNumber":25,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":" // variables for usage in main loop","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"yuki-zmstr"},"content":" String command;","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"yuki-zmstr"},"content":" int index_task;","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"yuki-zmstr"},"content":" String[] data;","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"yuki-zmstr"},"content":" String description;","lastModifiedDate":"2024-02-03"},{"lineNumber":31,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":32,"author":{"gitId":"yuki-zmstr"},"content":" while (!line.equals(\"exit\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":33,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":35,"author":{"gitId":"yuki-zmstr"},"content":" command \u003d line.split(\" \")[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":36,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":37,"author":{"gitId":"yuki-zmstr"},"content":" switch(command) {","lastModifiedDate":"2024-02-03"},{"lineNumber":38,"author":{"gitId":"yuki-zmstr"},"content":" case \"list\":","lastModifiedDate":"2024-02-03"},{"lineNumber":39,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Wake up your idea and do these tasks:\");","lastModifiedDate":"2024-01-27"},{"lineNumber":40,"author":{"gitId":"yuki-zmstr"},"content":" for (int i \u003d 0; i \u003c taskCount; i++) {","lastModifiedDate":"2024-02-03"},{"lineNumber":41,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println((i + 1) + \".[\" + tasks[i].getStatusIcon() + \"] \"","lastModifiedDate":"2024-02-03"},{"lineNumber":42,"author":{"gitId":"yuki-zmstr"},"content":" + tasks[i].taskType + \" \" + tasks[i].description);","lastModifiedDate":"2024-02-03"},{"lineNumber":43,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":44,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":45,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"yuki-zmstr"},"content":" case \"mark\":","lastModifiedDate":"2024-02-03"},{"lineNumber":47,"author":{"gitId":"yuki-zmstr"},"content":" index_task \u003d Integer.parseInt(line.split(\" \")[1]) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":48,"author":{"gitId":"yuki-zmstr"},"content":" tasks[index_task].markAsDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":49,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":50,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":51,"author":{"gitId":"yuki-zmstr"},"content":" case \"unmark\":","lastModifiedDate":"2024-02-03"},{"lineNumber":52,"author":{"gitId":"yuki-zmstr"},"content":" index_task \u003d Integer.parseInt(line.split(\" \")[1]) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":53,"author":{"gitId":"yuki-zmstr"},"content":" tasks[index_task].markAsUndone();","lastModifiedDate":"2024-02-03"},{"lineNumber":54,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":55,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":56,"author":{"gitId":"yuki-zmstr"},"content":" case \"todo\":","lastModifiedDate":"2024-02-03"},{"lineNumber":57,"author":{"gitId":"yuki-zmstr"},"content":" data \u003d Parser.parseInput(line.substring(command.length()));","lastModifiedDate":"2024-02-03"},{"lineNumber":58,"author":{"gitId":"yuki-zmstr"},"content":" description \u003d data[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":59,"author":{"gitId":"yuki-zmstr"},"content":" addTask(new Todo(description));","lastModifiedDate":"2024-02-03"},{"lineNumber":60,"author":{"gitId":"yuki-zmstr"},"content":" reportNumberOfTasks();","lastModifiedDate":"2024-02-03"},{"lineNumber":61,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":62,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":63,"author":{"gitId":"yuki-zmstr"},"content":" case \"deadline\":","lastModifiedDate":"2024-02-03"},{"lineNumber":64,"author":{"gitId":"yuki-zmstr"},"content":" data \u003d Parser.parseInput(line.substring(command.length()));","lastModifiedDate":"2024-02-03"},{"lineNumber":65,"author":{"gitId":"yuki-zmstr"},"content":" description \u003d data[0] + \" (by:\" + data[1] + \")\";","lastModifiedDate":"2024-02-03"},{"lineNumber":66,"author":{"gitId":"yuki-zmstr"},"content":" addTask(new Deadline(description));","lastModifiedDate":"2024-02-03"},{"lineNumber":67,"author":{"gitId":"yuki-zmstr"},"content":" reportNumberOfTasks();","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":69,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":70,"author":{"gitId":"yuki-zmstr"},"content":" case \"event\":","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"yuki-zmstr"},"content":" data \u003d Parser.parseInput(line.substring(command.length()));","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"yuki-zmstr"},"content":" description \u003d data[0] + \" (from: \" + data[1] + \" to: \" + data[2] + \")\";","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"yuki-zmstr"},"content":" addTask(new Event(description));","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"yuki-zmstr"},"content":" reportNumberOfTasks();","lastModifiedDate":"2024-02-03"},{"lineNumber":75,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":77,"author":{"gitId":"yuki-zmstr"},"content":" default:","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInstructions();","lastModifiedDate":"2024-02-03"},{"lineNumber":79,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":80,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":81,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":82,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":83,"author":{"gitId":"yuki-zmstr"},"content":" line \u003d in.nextLine();","lastModifiedDate":"2024-01-27"},{"lineNumber":84,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":85,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printExitMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":86,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":87,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-01-27"}],"authorContributionMap":{"yuki-zmstr":87}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"deadline return book /by Sunday","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"event project meeting /from Mon 2pm /to 4pm","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"exit","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":3}},{"path":"text-ui-test/runtest.sh","fileType":"sh","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"#!/usr/bin/env bash","lastModifiedDate":"2020-05-25"},{"lineNumber":2,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":3,"author":{"gitId":"-"},"content":"# create bin directory if it doesn\u0027t exist","lastModifiedDate":"2020-05-25"},{"lineNumber":4,"author":{"gitId":"-"},"content":"if [ ! -d \"../bin\" ]","lastModifiedDate":"2020-05-25"},{"lineNumber":5,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":6,"author":{"gitId":"-"},"content":" mkdir ../bin","lastModifiedDate":"2020-05-25"},{"lineNumber":7,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":8,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":9,"author":{"gitId":"-"},"content":"# delete output from previous run","lastModifiedDate":"2020-05-25"},{"lineNumber":10,"author":{"gitId":"-"},"content":"if [ -e \"./ACTUAL.TXT\" ]","lastModifiedDate":"2020-05-25"},{"lineNumber":11,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":12,"author":{"gitId":"-"},"content":" rm ACTUAL.TXT","lastModifiedDate":"2020-05-25"},{"lineNumber":13,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":14,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":15,"author":{"gitId":"-"},"content":"# compile the code into the bin folder, terminates if error occurred","lastModifiedDate":"2020-05-25"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":"if ! javac -cp ../src/main/java -Xlint:none -d ../bin ../src/main/java/Yuki.java","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":18,"author":{"gitId":"-"},"content":" echo \"********** BUILD FAILURE **********\"","lastModifiedDate":"2020-05-25"},{"lineNumber":19,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25"},{"lineNumber":20,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":21,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":22,"author":{"gitId":"-"},"content":"# run the program, feed commands from input.txt file and redirect the output to the ACTUAL.TXT","lastModifiedDate":"2020-05-25"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":"java -classpath ../bin Yuki \u003c input.txt \u003e ACTUAL.TXT","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":25,"author":{"gitId":"-"},"content":"# compare the output to the expected output","lastModifiedDate":"2020-05-25"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":"diff ACTUAL.TXT EXPECTED.TXT","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"-"},"content":"if [ $? -eq 0 ]","lastModifiedDate":"2020-05-25"},{"lineNumber":28,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":29,"author":{"gitId":"-"},"content":" echo \"Test result: PASSED\"","lastModifiedDate":"2020-05-25"},{"lineNumber":30,"author":{"gitId":"-"},"content":" exit 0","lastModifiedDate":"2020-05-25"},{"lineNumber":31,"author":{"gitId":"-"},"content":"else","lastModifiedDate":"2020-05-25"},{"lineNumber":32,"author":{"gitId":"-"},"content":" echo \"Test result: FAILED\"","lastModifiedDate":"2020-05-25"},{"lineNumber":33,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25"},{"lineNumber":34,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"}],"authorContributionMap":{"yuki-zmstr":3,"-":31}}] +[{"path":"src/main/java/Yuki.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"import yuki.InputParser;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"import yuki.Utils;","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"import yuki.task.Task;","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":"import yuki.task.Todo;","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":"import yuki.task.Deadline;","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":"import yuki.task.Event;","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":"import yuki.exceptions.YukiExceptions;","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":"import java.util.Scanner;","lastModifiedDate":"2024-01-27"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":"public class Yuki {","lastModifiedDate":"2024-01-27"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":" private static final int MAX_NUM_TASKS \u003d 100;","lastModifiedDate":"2024-02-10"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":" // length of each command: \u0027todo\u0027, \u0027deadline\u0027, \u0027event\u0027","lastModifiedDate":"2024-02-10"},{"lineNumber":14,"author":{"gitId":"yuki-zmstr"},"content":" private static final int LENGTH_TODO_COMMAND \u003d 4;","lastModifiedDate":"2024-02-10"},{"lineNumber":15,"author":{"gitId":"yuki-zmstr"},"content":" private static final int LENGTH_DEADLINE_COMMAND \u003d 8;","lastModifiedDate":"2024-02-10"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":" private static final int LENGTH_EVENT_COMMAND \u003d 5;","lastModifiedDate":"2024-02-10"},{"lineNumber":17,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":18,"author":{"gitId":"yuki-zmstr"},"content":" private static Task[] tasks \u003d new Task[MAX_NUM_TASKS];","lastModifiedDate":"2024-02-10"},{"lineNumber":19,"author":{"gitId":"yuki-zmstr"},"content":" private static int taskCount \u003d 0;","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"yuki-zmstr"},"content":" private static String[] data;","lastModifiedDate":"2024-02-10"},{"lineNumber":22,"author":{"gitId":"yuki-zmstr"},"content":" private static String description;","lastModifiedDate":"2024-02-10"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":24,"author":{"gitId":"yuki-zmstr"},"content":" public static void listTasks() {","lastModifiedDate":"2024-02-10"},{"lineNumber":25,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Wake up your idea and do these tasks:\");","lastModifiedDate":"2024-02-10"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":" for (int i \u003d 0; i \u003c taskCount; i++) {","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println((i + 1) + \".[\" + tasks[i].getStatusIcon() + \"] \"","lastModifiedDate":"2024-02-10"},{"lineNumber":28,"author":{"gitId":"yuki-zmstr"},"content":" + tasks[i].taskType + \" \" + tasks[i].description);","lastModifiedDate":"2024-02-10"},{"lineNumber":29,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":30,"author":{"gitId":"yuki-zmstr"},"content":" reportNumberOfTasks();","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":32,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":33,"author":{"gitId":"yuki-zmstr"},"content":" public static void addTodo(String input) throws YukiExceptions.InvalidDescriptionException {","lastModifiedDate":"2024-02-10"},{"lineNumber":34,"author":{"gitId":"yuki-zmstr"},"content":" data \u003d InputParser.parseInput(input.substring(LENGTH_TODO_COMMAND));","lastModifiedDate":"2024-02-10"},{"lineNumber":35,"author":{"gitId":"yuki-zmstr"},"content":" if (data[0].isEmpty()) {","lastModifiedDate":"2024-02-10"},{"lineNumber":36,"author":{"gitId":"yuki-zmstr"},"content":" throw new YukiExceptions.InvalidDescriptionException();","lastModifiedDate":"2024-02-10"},{"lineNumber":37,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":38,"author":{"gitId":"yuki-zmstr"},"content":" description \u003d data[0];","lastModifiedDate":"2024-02-10"},{"lineNumber":39,"author":{"gitId":"yuki-zmstr"},"content":" Task t \u003d new Todo(description);","lastModifiedDate":"2024-02-10"},{"lineNumber":40,"author":{"gitId":"yuki-zmstr"},"content":" tasks[taskCount] \u003d t;","lastModifiedDate":"2024-02-10"},{"lineNumber":41,"author":{"gitId":"yuki-zmstr"},"content":" taskCount++;","lastModifiedDate":"2024-02-10"},{"lineNumber":42,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(t);","lastModifiedDate":"2024-02-10"},{"lineNumber":43,"author":{"gitId":"yuki-zmstr"},"content":" reportNumberOfTasks();","lastModifiedDate":"2024-02-10"},{"lineNumber":44,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":45,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":46,"author":{"gitId":"yuki-zmstr"},"content":" public static void addDeadline(String input) throws YukiExceptions.InvalidDescriptionException {","lastModifiedDate":"2024-02-10"},{"lineNumber":47,"author":{"gitId":"yuki-zmstr"},"content":" data \u003d InputParser.parseInput(input.substring(LENGTH_DEADLINE_COMMAND));","lastModifiedDate":"2024-02-10"},{"lineNumber":48,"author":{"gitId":"yuki-zmstr"},"content":" if (data.length \u003c 2) {","lastModifiedDate":"2024-02-10"},{"lineNumber":49,"author":{"gitId":"yuki-zmstr"},"content":" throw new YukiExceptions.InvalidDescriptionException();","lastModifiedDate":"2024-02-10"},{"lineNumber":50,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":51,"author":{"gitId":"yuki-zmstr"},"content":" description \u003d data[0] + \" (by:\" + data[1] + \")\";","lastModifiedDate":"2024-02-10"},{"lineNumber":52,"author":{"gitId":"yuki-zmstr"},"content":" Task t \u003d new Deadline(description);","lastModifiedDate":"2024-02-10"},{"lineNumber":53,"author":{"gitId":"yuki-zmstr"},"content":" tasks[taskCount] \u003d t;","lastModifiedDate":"2024-02-10"},{"lineNumber":54,"author":{"gitId":"yuki-zmstr"},"content":" taskCount++;","lastModifiedDate":"2024-02-10"},{"lineNumber":55,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(t);","lastModifiedDate":"2024-02-10"},{"lineNumber":56,"author":{"gitId":"yuki-zmstr"},"content":" reportNumberOfTasks();","lastModifiedDate":"2024-02-10"},{"lineNumber":57,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":58,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":59,"author":{"gitId":"yuki-zmstr"},"content":" public static void addEvent(String input) throws YukiExceptions.InvalidDescriptionException {","lastModifiedDate":"2024-02-10"},{"lineNumber":60,"author":{"gitId":"yuki-zmstr"},"content":" data \u003d InputParser.parseInput(input.substring(LENGTH_EVENT_COMMAND));","lastModifiedDate":"2024-02-10"},{"lineNumber":61,"author":{"gitId":"yuki-zmstr"},"content":" if (data.length \u003c 3) {","lastModifiedDate":"2024-02-10"},{"lineNumber":62,"author":{"gitId":"yuki-zmstr"},"content":" throw new YukiExceptions.InvalidDescriptionException();","lastModifiedDate":"2024-02-10"},{"lineNumber":63,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":64,"author":{"gitId":"yuki-zmstr"},"content":" description \u003d data[0] + \" (from: \" + data[1] + \" to: \" + data[2] + \")\";","lastModifiedDate":"2024-02-10"},{"lineNumber":65,"author":{"gitId":"yuki-zmstr"},"content":" Task t \u003d new Event(description);","lastModifiedDate":"2024-02-10"},{"lineNumber":66,"author":{"gitId":"yuki-zmstr"},"content":" tasks[taskCount] \u003d t;","lastModifiedDate":"2024-02-10"},{"lineNumber":67,"author":{"gitId":"yuki-zmstr"},"content":" taskCount++;","lastModifiedDate":"2024-02-03"},{"lineNumber":68,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(t);","lastModifiedDate":"2024-02-10"},{"lineNumber":69,"author":{"gitId":"yuki-zmstr"},"content":" reportNumberOfTasks();","lastModifiedDate":"2024-02-10"},{"lineNumber":70,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":71,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":72,"author":{"gitId":"yuki-zmstr"},"content":" public static void reportNumberOfTasks() {","lastModifiedDate":"2024-02-03"},{"lineNumber":73,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Now you have \" + taskCount + \" tasks in the list.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":74,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":75,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":76,"author":{"gitId":"yuki-zmstr"},"content":" public static void main(String[] args) {","lastModifiedDate":"2024-01-27"},{"lineNumber":77,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printWelcomeMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":78,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":79,"author":{"gitId":"yuki-zmstr"},"content":" String line;","lastModifiedDate":"2024-01-27"},{"lineNumber":80,"author":{"gitId":"yuki-zmstr"},"content":" Scanner in \u003d new Scanner(System.in);","lastModifiedDate":"2024-01-27"},{"lineNumber":81,"author":{"gitId":"yuki-zmstr"},"content":" line \u003d in.nextLine();","lastModifiedDate":"2024-01-27"},{"lineNumber":82,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":83,"author":{"gitId":"yuki-zmstr"},"content":" String command;","lastModifiedDate":"2024-02-03"},{"lineNumber":84,"author":{"gitId":"yuki-zmstr"},"content":" int index_task;","lastModifiedDate":"2024-02-03"},{"lineNumber":85,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":86,"author":{"gitId":"yuki-zmstr"},"content":" while (!line.equals(\"exit\")) {","lastModifiedDate":"2024-02-03"},{"lineNumber":87,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":88,"author":{"gitId":"yuki-zmstr"},"content":" command \u003d line.split(\" \")[0];","lastModifiedDate":"2024-02-03"},{"lineNumber":89,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":90,"author":{"gitId":"yuki-zmstr"},"content":" switch(command) {","lastModifiedDate":"2024-02-03"},{"lineNumber":91,"author":{"gitId":"yuki-zmstr"},"content":" case \"list\":","lastModifiedDate":"2024-02-03"},{"lineNumber":92,"author":{"gitId":"yuki-zmstr"},"content":" listTasks();","lastModifiedDate":"2024-02-10"},{"lineNumber":93,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":94,"author":{"gitId":"yuki-zmstr"},"content":" case \"mark\":","lastModifiedDate":"2024-02-03"},{"lineNumber":95,"author":{"gitId":"yuki-zmstr"},"content":" index_task \u003d Integer.parseInt(line.split(\" \")[1]) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":96,"author":{"gitId":"yuki-zmstr"},"content":" tasks[index_task].markAsDone();","lastModifiedDate":"2024-02-03"},{"lineNumber":97,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":98,"author":{"gitId":"yuki-zmstr"},"content":" case \"unmark\":","lastModifiedDate":"2024-02-03"},{"lineNumber":99,"author":{"gitId":"yuki-zmstr"},"content":" index_task \u003d Integer.parseInt(line.split(\" \")[1]) - 1;","lastModifiedDate":"2024-02-03"},{"lineNumber":100,"author":{"gitId":"yuki-zmstr"},"content":" tasks[index_task].markAsUndone();","lastModifiedDate":"2024-02-03"},{"lineNumber":101,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":102,"author":{"gitId":"yuki-zmstr"},"content":" case \"todo\":","lastModifiedDate":"2024-02-03"},{"lineNumber":103,"author":{"gitId":"yuki-zmstr"},"content":" try {","lastModifiedDate":"2024-02-10"},{"lineNumber":104,"author":{"gitId":"yuki-zmstr"},"content":" addTodo(line);","lastModifiedDate":"2024-02-10"},{"lineNumber":105,"author":{"gitId":"yuki-zmstr"},"content":" } catch (YukiExceptions.InvalidDescriptionException e) {","lastModifiedDate":"2024-02-10"},{"lineNumber":106,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInvalidDescriptionWarning();","lastModifiedDate":"2024-02-10"},{"lineNumber":107,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInstructions();","lastModifiedDate":"2024-02-10"},{"lineNumber":108,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":109,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":110,"author":{"gitId":"yuki-zmstr"},"content":" case \"deadline\":","lastModifiedDate":"2024-02-03"},{"lineNumber":111,"author":{"gitId":"yuki-zmstr"},"content":" try {","lastModifiedDate":"2024-02-10"},{"lineNumber":112,"author":{"gitId":"yuki-zmstr"},"content":" addDeadline(line);","lastModifiedDate":"2024-02-10"},{"lineNumber":113,"author":{"gitId":"yuki-zmstr"},"content":" } catch (YukiExceptions.InvalidDescriptionException e) {","lastModifiedDate":"2024-02-10"},{"lineNumber":114,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInvalidDescriptionWarning();","lastModifiedDate":"2024-02-10"},{"lineNumber":115,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInstructions();","lastModifiedDate":"2024-02-10"},{"lineNumber":116,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":117,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":118,"author":{"gitId":"yuki-zmstr"},"content":" case \"event\":","lastModifiedDate":"2024-02-03"},{"lineNumber":119,"author":{"gitId":"yuki-zmstr"},"content":" try {","lastModifiedDate":"2024-02-10"},{"lineNumber":120,"author":{"gitId":"yuki-zmstr"},"content":" addEvent(line);","lastModifiedDate":"2024-02-10"},{"lineNumber":121,"author":{"gitId":"yuki-zmstr"},"content":" } catch (YukiExceptions.InvalidDescriptionException e) {","lastModifiedDate":"2024-02-10"},{"lineNumber":122,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInvalidDescriptionWarning();","lastModifiedDate":"2024-02-10"},{"lineNumber":123,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInstructions();","lastModifiedDate":"2024-02-10"},{"lineNumber":124,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":125,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":126,"author":{"gitId":"yuki-zmstr"},"content":" default:","lastModifiedDate":"2024-02-03"},{"lineNumber":127,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInvalidCommandWarning();","lastModifiedDate":"2024-02-10"},{"lineNumber":128,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printInstructions();","lastModifiedDate":"2024-02-03"},{"lineNumber":129,"author":{"gitId":"yuki-zmstr"},"content":" break;","lastModifiedDate":"2024-02-03"},{"lineNumber":130,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":131,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":132,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":133,"author":{"gitId":"yuki-zmstr"},"content":" line \u003d in.nextLine();","lastModifiedDate":"2024-01-27"},{"lineNumber":134,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":135,"author":{"gitId":"yuki-zmstr"},"content":" Utils.printExitMessage();","lastModifiedDate":"2024-02-03"},{"lineNumber":136,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":137,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-01-27"}],"authorContributionMap":{"yuki-zmstr":137}},{"path":"src/main/java/yuki/InputParser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"package yuki;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"public class InputParser {","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" // Parses user input","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":" // These are the prefix strings to define the data type of a command parameter","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" private static final String TASK_DATA_PREFIX_DEADLINE \u003d \"/by \";","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" private static final String TASK_DATA_PREFIX_EVENT_START \u003d \"/from \";","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":" private static final String TASK_DATA_PREFIX_EVENT_END \u003d \"/to \";","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":" public static String[] parseInput(String userInput){","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":" final String regexMatcher \u003d TASK_DATA_PREFIX_DEADLINE + \"|\"","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"yuki-zmstr"},"content":" + TASK_DATA_PREFIX_EVENT_START + \"|\" + TASK_DATA_PREFIX_EVENT_END;","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"yuki-zmstr"},"content":" return userInput.trim().split(regexMatcher);","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":17}},{"path":"src/main/java/yuki/Utils.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"package yuki;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"public class Utils {","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" public static void printLine() {","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"---------------------------------------------\");","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" public static void printWelcomeMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"I am Yuki, your personal chat bot and your evil twin.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Time to get grinding.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":14,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":15,"author":{"gitId":"yuki-zmstr"},"content":" public static void printExitMessage() {","lastModifiedDate":"2024-02-03"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Breaks are only for the weak.\");","lastModifiedDate":"2024-02-03"},{"lineNumber":18,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-03"},{"lineNumber":19,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":21,"author":{"gitId":"yuki-zmstr"},"content":" public static void printInstructions() {","lastModifiedDate":"2024-02-03"},{"lineNumber":22,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Accepted commands are:\");","lastModifiedDate":"2024-02-03"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"list: shows you list of tasks\");","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"\\tInput Example: list\\n\");","lastModifiedDate":"2024-02-10"},{"lineNumber":25,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"mark: marks a task as done\");","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"\\tInput Example: mark 1\\n\");","lastModifiedDate":"2024-02-10"},{"lineNumber":27,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"unmark: marks a task as undone\");","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"\\tInput Example: unmark 1\\n\");","lastModifiedDate":"2024-02-10"},{"lineNumber":29,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"todo: adds a todo\");","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"\\tInput Example: todo read book\\n\");","lastModifiedDate":"2024-02-10"},{"lineNumber":31,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"deadline: adds a deadline\");","lastModifiedDate":"2024-02-03"},{"lineNumber":32,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"\\tInput Example: deadline wash clothes /by Sunday\\n\");","lastModifiedDate":"2024-02-10"},{"lineNumber":33,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"event: adds an event\");","lastModifiedDate":"2024-02-03"},{"lineNumber":34,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"\\tInput Example: event birthday party /from 1 Jan /to 4 Jan\");","lastModifiedDate":"2024-02-10"},{"lineNumber":35,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":36,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":37,"author":{"gitId":"yuki-zmstr"},"content":" public static void printInvalidDescriptionWarning() {","lastModifiedDate":"2024-02-10"},{"lineNumber":38,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Please enter a valid description\");","lastModifiedDate":"2024-02-10"},{"lineNumber":39,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-10"},{"lineNumber":40,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-10"},{"lineNumber":41,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":42,"author":{"gitId":"yuki-zmstr"},"content":" public static void printInvalidCommandWarning() {","lastModifiedDate":"2024-02-10"},{"lineNumber":43,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Invalid command\");","lastModifiedDate":"2024-02-10"},{"lineNumber":44,"author":{"gitId":"yuki-zmstr"},"content":" printLine();","lastModifiedDate":"2024-02-10"},{"lineNumber":45,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":46,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":46}},{"path":"src/main/java/yuki/exceptions/YukiExceptions.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"package yuki.exceptions;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"public class YukiExceptions {","lastModifiedDate":"2024-02-10"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" public static class InvalidDescriptionException extends Exception {};","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-10"}],"authorContributionMap":{"yuki-zmstr":5}},{"path":"src/main/java/yuki/task/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"package yuki.task;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"public class Deadline extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" public Deadline(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":" // set marker as [D] for printing.","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" this.taskType \u003d \"[D]\";","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":11}},{"path":"src/main/java/yuki/task/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"package yuki.task;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"public class Event extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" public Event(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":" // set marker as [E] for printing.","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" this.taskType \u003d \"[E]\";","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":11}},{"path":"src/main/java/yuki/task/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"package yuki.task;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"public class Task {","lastModifiedDate":"2024-01-27"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":" public String description;","lastModifiedDate":"2024-02-10"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" public boolean isDone;","lastModifiedDate":"2024-02-10"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" public String taskType \u003d \"\";","lastModifiedDate":"2024-02-10"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" public Task(String description) {","lastModifiedDate":"2024-01-27"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" this.description \u003d description;","lastModifiedDate":"2024-01-27"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":" this.isDone \u003d false;","lastModifiedDate":"2024-01-27"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":12,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":13,"author":{"gitId":"yuki-zmstr"},"content":" public String getStatusIcon() {","lastModifiedDate":"2024-01-27"},{"lineNumber":14,"author":{"gitId":"yuki-zmstr"},"content":" return (isDone ? \"X\" : \" \");","lastModifiedDate":"2024-01-27"},{"lineNumber":15,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":17,"author":{"gitId":"yuki-zmstr"},"content":" public void markAsDone() {","lastModifiedDate":"2024-01-27"},{"lineNumber":18,"author":{"gitId":"yuki-zmstr"},"content":" isDone \u003d true;","lastModifiedDate":"2024-01-27"},{"lineNumber":19,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Good job.\\n[X]\" + taskType + \" \" + description);","lastModifiedDate":"2024-02-03"},{"lineNumber":20,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":21,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-01-27"},{"lineNumber":22,"author":{"gitId":"yuki-zmstr"},"content":" public void markAsUndone() {","lastModifiedDate":"2024-01-27"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":" isDone \u003d false;","lastModifiedDate":"2024-01-27"},{"lineNumber":24,"author":{"gitId":"yuki-zmstr"},"content":" System.out.println(\"Lazy. Just simply lazy.\\n[ ]\" + taskType + \" \" + description);","lastModifiedDate":"2024-02-03"},{"lineNumber":25,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"yuki-zmstr"},"content":" @Override","lastModifiedDate":"2024-02-03"},{"lineNumber":28,"author":{"gitId":"yuki-zmstr"},"content":" public String toString() {","lastModifiedDate":"2024-02-03"},{"lineNumber":29,"author":{"gitId":"yuki-zmstr"},"content":" return \"new todo for you:\\n[ ]\" + taskType + \" \" + description;","lastModifiedDate":"2024-02-03"},{"lineNumber":30,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-01-27"},{"lineNumber":31,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-01-27"}],"authorContributionMap":{"yuki-zmstr":31}},{"path":"src/main/java/yuki/task/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"package yuki.task;","lastModifiedDate":"2024-02-10"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-10"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"public class Todo extends Task {","lastModifiedDate":"2024-02-03"},{"lineNumber":4,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":5,"author":{"gitId":"yuki-zmstr"},"content":" public Todo(String description) {","lastModifiedDate":"2024-02-03"},{"lineNumber":6,"author":{"gitId":"yuki-zmstr"},"content":" super(description);","lastModifiedDate":"2024-02-03"},{"lineNumber":7,"author":{"gitId":"yuki-zmstr"},"content":" // set marker as [T] for printing.","lastModifiedDate":"2024-02-10"},{"lineNumber":8,"author":{"gitId":"yuki-zmstr"},"content":" this.taskType \u003d \"[T]\";","lastModifiedDate":"2024-02-03"},{"lineNumber":9,"author":{"gitId":"yuki-zmstr"},"content":" }","lastModifiedDate":"2024-02-03"},{"lineNumber":10,"author":{"gitId":"yuki-zmstr"},"content":"","lastModifiedDate":"2024-02-03"},{"lineNumber":11,"author":{"gitId":"yuki-zmstr"},"content":"}","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":11}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"yuki-zmstr"},"content":"deadline return book /by Sunday","lastModifiedDate":"2024-02-03"},{"lineNumber":2,"author":{"gitId":"yuki-zmstr"},"content":"event project meeting /from Mon 2pm /to 4pm","lastModifiedDate":"2024-02-03"},{"lineNumber":3,"author":{"gitId":"yuki-zmstr"},"content":"exit","lastModifiedDate":"2024-02-03"}],"authorContributionMap":{"yuki-zmstr":3}},{"path":"text-ui-test/runtest.sh","fileType":"sh","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"#!/usr/bin/env bash","lastModifiedDate":"2020-05-25"},{"lineNumber":2,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":3,"author":{"gitId":"-"},"content":"# create bin directory if it doesn\u0027t exist","lastModifiedDate":"2020-05-25"},{"lineNumber":4,"author":{"gitId":"-"},"content":"if [ ! -d \"../bin\" ]","lastModifiedDate":"2020-05-25"},{"lineNumber":5,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":6,"author":{"gitId":"-"},"content":" mkdir ../bin","lastModifiedDate":"2020-05-25"},{"lineNumber":7,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":8,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":9,"author":{"gitId":"-"},"content":"# delete output from previous run","lastModifiedDate":"2020-05-25"},{"lineNumber":10,"author":{"gitId":"-"},"content":"if [ -e \"./ACTUAL.TXT\" ]","lastModifiedDate":"2020-05-25"},{"lineNumber":11,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":12,"author":{"gitId":"-"},"content":" rm ACTUAL.TXT","lastModifiedDate":"2020-05-25"},{"lineNumber":13,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":14,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":15,"author":{"gitId":"-"},"content":"# compile the code into the bin folder, terminates if error occurred","lastModifiedDate":"2020-05-25"},{"lineNumber":16,"author":{"gitId":"yuki-zmstr"},"content":"if ! javac -cp ../src/main/java -Xlint:none -d ../bin ../src/main/java/Yuki.java","lastModifiedDate":"2024-02-03"},{"lineNumber":17,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":18,"author":{"gitId":"-"},"content":" echo \"********** BUILD FAILURE **********\"","lastModifiedDate":"2020-05-25"},{"lineNumber":19,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25"},{"lineNumber":20,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":21,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":22,"author":{"gitId":"-"},"content":"# run the program, feed commands from input.txt file and redirect the output to the ACTUAL.TXT","lastModifiedDate":"2020-05-25"},{"lineNumber":23,"author":{"gitId":"yuki-zmstr"},"content":"java -classpath ../bin Yuki \u003c input.txt \u003e ACTUAL.TXT","lastModifiedDate":"2024-02-03"},{"lineNumber":24,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":25,"author":{"gitId":"-"},"content":"# compare the output to the expected output","lastModifiedDate":"2020-05-25"},{"lineNumber":26,"author":{"gitId":"yuki-zmstr"},"content":"diff ACTUAL.TXT EXPECTED.TXT","lastModifiedDate":"2024-02-03"},{"lineNumber":27,"author":{"gitId":"-"},"content":"if [ $? -eq 0 ]","lastModifiedDate":"2020-05-25"},{"lineNumber":28,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":29,"author":{"gitId":"-"},"content":" echo \"Test result: PASSED\"","lastModifiedDate":"2020-05-25"},{"lineNumber":30,"author":{"gitId":"-"},"content":" exit 0","lastModifiedDate":"2020-05-25"},{"lineNumber":31,"author":{"gitId":"-"},"content":"else","lastModifiedDate":"2020-05-25"},{"lineNumber":32,"author":{"gitId":"-"},"content":" echo \"Test result: FAILED\"","lastModifiedDate":"2020-05-25"},{"lineNumber":33,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25"},{"lineNumber":34,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"}],"authorContributionMap":{"yuki-zmstr":3,"-":31}}] diff --git a/yuki-zmstr_ip_master/commits.json b/yuki-zmstr_ip_master/commits.json index 4623c1da..27b96761 100644 --- a/yuki-zmstr_ip_master/commits.json +++ b/yuki-zmstr_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"yuki-zmstr":[{"date":"2024-01-27","commitResults":[{"hash":"fee04290e9d62b855575a5c477cf37daac889bb0","isMergeCommit":false,"messageTitle":"Rename, greet, and exit.","messageBody":"Renamed bot to Yuki, added some greetings.\n","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":7,"deletions":10}}},{"hash":"db9c31d3e1dc348a82d798b905f71585a882028e","isMergeCommit":false,"messageTitle":"Add horizontal lines","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":4,"deletions":0}}},{"hash":"e61f402345bcb4ee88ee5c45256268f3f66fd803","isMergeCommit":false,"messageTitle":"Add echo function","messageBody":"Says bye when user says bye, echoes otherwise\n","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":20,"deletions":5}}},{"hash":"0eb5da639d4e78b903233bdcd99ce16a6414112f","isMergeCommit":false,"messageTitle":"Add list function","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":5}}},{"hash":"f23b01c9452d0fe74387f24aeb379cae1803f1ab","isMergeCommit":false,"messageTitle":"Implement mark as done function","messageBody":"Introduced Task class, add mark done and mark undone functions.\n","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":41,"deletions":7}}}]},{"date":"2024-02-03","commitResults":[{"hash":"533ec745fc5ffb8fd87685a98bf287d955d63878","isMergeCommit":false,"messageTitle":"Add ToDos, Events, Deadlines, UI tests","messageBody":"Implement Todo, Event, and Deadlines classes using Inheritance.\n\nAdd automated text UI testing\n","tags":["Level-4","A-TextUiTesting","A-CodingStandard","A-CodeQuality"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":144,"deletions":35},"sh":{"insertions":3,"deletions":7}}}]}]},"authorFileTypeContributionMap":{"yuki-zmstr":{"java":183,"md":0,"fxml":0,"sh":3,"bat":0,"gradle":0,"txt":3}},"authorContributionVariance":{"yuki-zmstr":2798.8594},"authorDisplayNameMap":{"yuki-zmstr":"CS2113-W14-2 YUKI..ASHI"}} +{"authorDailyContributionsMap":{"yuki-zmstr":[{"date":"2024-01-27","commitResults":[{"hash":"fee04290e9d62b855575a5c477cf37daac889bb0","isMergeCommit":false,"messageTitle":"Rename, greet, and exit.","messageBody":"Renamed bot to Yuki, added some greetings.\n","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":7,"deletions":10}}},{"hash":"db9c31d3e1dc348a82d798b905f71585a882028e","isMergeCommit":false,"messageTitle":"Add horizontal lines","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":4,"deletions":0}}},{"hash":"e61f402345bcb4ee88ee5c45256268f3f66fd803","isMergeCommit":false,"messageTitle":"Add echo function","messageBody":"Says bye when user says bye, echoes otherwise\n","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":20,"deletions":5}}},{"hash":"0eb5da639d4e78b903233bdcd99ce16a6414112f","isMergeCommit":false,"messageTitle":"Add list function","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":5}}},{"hash":"f23b01c9452d0fe74387f24aeb379cae1803f1ab","isMergeCommit":false,"messageTitle":"Implement mark as done function","messageBody":"Introduced Task class, add mark done and mark undone functions.\n","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":41,"deletions":7}}}]},{"date":"2024-02-03","commitResults":[{"hash":"533ec745fc5ffb8fd87685a98bf287d955d63878","isMergeCommit":false,"messageTitle":"Add ToDos, Events, Deadlines, UI tests","messageBody":"Implement Todo, Event, and Deadlines classes using Inheritance.\n\nAdd automated text UI testing\n","tags":["Level-4"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":144,"deletions":35},"sh":{"insertions":3,"deletions":7}}}]},{"date":"2024-02-10","commitResults":[{"hash":"eb34c5f3736ed73ceeebf4fc9a38d1b4ee9f1b0f","isMergeCommit":false,"messageTitle":"Review comments on PR","messageBody":"Fix code quality and readability issues.\n","fileTypesAndContributionMap":{"java":{"insertions":50,"deletions":36}}},{"hash":"0d808958d2a54e729e99c9fe648f98037ca3e666","isMergeCommit":false,"messageTitle":"Handle invalid command and description errors","messageBody":"Print warning message and instructions when command is not recognized or description is not valid for that command.\n","fileTypesAndContributionMap":{"java":{"insertions":50,"deletions":6}}},{"hash":"0a9ca5bce0b619b7dcc7cd98eb60569b12098f2f","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-5\u0027","messageBody":"* branch-Level-5:\n Handle invalid command and description errors\n Review comments on PR\n","tags":["Level-5"],"fileTypesAndContributionMap":{}},{"hash":"20fdec6fd4d9cf23a1fa3dd07e1f2bb16710bb17","isMergeCommit":false,"messageTitle":"Organise into packages","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":3}}},{"hash":"8d4307246cfded35ea6e0215d1f5115d32c85a3b","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-Packages\u0027","messageBody":"* branch-A-Packages:\n Organise into packages\n","tags":["A-Packages"],"fileTypesAndContributionMap":{}},{"hash":"bd2f1eb3a547fb5768e1b4e4f52d3fdd3a401891","isMergeCommit":false,"messageTitle":"Add print statements to match UI test output","messageBody":"Accidentally deleted print statements in add{Task} methods, re-added.\n","fileTypesAndContributionMap":{"java":{"insertions":9,"deletions":3}}},{"hash":"1041166b7db3f9123c0c197ce79a193fc47ce143","isMergeCommit":true,"messageTitle":"Merge branch \u0027fix-text-ui-test\u0027","messageBody":"* fix-text-ui-test:\n Add print statements to match UI test output\n","tags":["A-TextUiTesting","A-CodingStandard","A-CodeQuality"],"fileTypesAndContributionMap":{}}]}]},"authorFileTypeContributionMap":{"yuki-zmstr":{"java":269,"md":0,"fxml":0,"sh":3,"bat":0,"gradle":0,"txt":3}},"authorContributionVariance":{"yuki-zmstr":3190.7595},"authorDisplayNameMap":{"yuki-zmstr":"CS2113-W14-2 YUKI..ASHI"}}