diff --git a/0xF41_ip_master/authorship.json b/0xF41_ip_master/authorship.json index f98cbd1e..f1dfec59 100644 --- a/0xF41_ip_master/authorship.json +++ b/0xF41_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"README.md","fileType":"md","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"# Yapper","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":"Yapper is a chatbot created as part of NUS CS2103T Software Engineering Module.","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":2,"-":1}},{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class Deadline extends Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" * Represents the instance of when the Deadline is due","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" protected String by;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" * String representation of a Deadline object. ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" // return \"[D]\" + super.toString() + \" (by: \" + by + \")\";","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" return String.format(\"[D]%s (by: %s)\", super.toString(), this.by);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" * Constructs a Deadline object. Deadline \u003c: Task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" * @param description description of the Deadline object","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":" * @param by represent the instance of when the deadline is due","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" super(description);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" this.by \u003d by;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":27}},{"path":"src/main/java/Events.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class Events extends Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" * Represents the instance of when the Events is started","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" protected String from;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" * Represents the instance of when the Events is due","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" protected String to;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" * String representation of a Events.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" return String.format(\"[E]%s (from: %s to: %s)\", super.toString(), this.from, this.to);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":" * Constructs a Events object. Events \u003c: Task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" * @param description description of the Events object","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":" * @param from start time of an Events","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":" * @param to end time of an Events","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"0xF41"},"content":" public Events(String description, String from, String to) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"0xF41"},"content":" this.from \u003d from;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"0xF41"},"content":" this.to \u003d to;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"0xF41"},"content":" super(description);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":33}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"/**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":" * Task encapsulates an event that is created by the user when communicating with the Yapper chatbot.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":"public class Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":" * Description of the task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" protected String description;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" * State of whether is task is marked as done (true) or not (false).","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" protected boolean isDone;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" * Constructs a new Task with the specified description message.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" * @param description description of the task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" public Task(String description) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":" this.description \u003d description;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" this.isDone \u003d false;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":" * Returns the current status icon of the Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"0xF41"},"content":" * @return a character indicating the status icon of the Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"0xF41"},"content":" public String getStatusIcon() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"0xF41"},"content":" return (isDone ? \"X\" : \" \"); // mark done task with X","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"0xF41"},"content":" * Returns the description of the Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"0xF41"},"content":" * @return description of the task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":39,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":40,"author":{"gitId":"0xF41"},"content":" public String getDescription() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":41,"author":{"gitId":"0xF41"},"content":" return this.description;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":42,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":43,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":44,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":45,"author":{"gitId":"0xF41"},"content":" * Marks the current task as done.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":46,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":47,"author":{"gitId":"0xF41"},"content":" public void markAsDone() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":48,"author":{"gitId":"0xF41"},"content":" this.isDone \u003d true;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":49,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":50,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":51,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":52,"author":{"gitId":"0xF41"},"content":" * Marks the current task as undone.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":53,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":54,"author":{"gitId":"0xF41"},"content":" public void markAsUndone() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":55,"author":{"gitId":"0xF41"},"content":" this.isDone \u003d false;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":56,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":57,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":58,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":59,"author":{"gitId":"0xF41"},"content":" * String representation of a Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":60,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":61,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":62,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":63,"author":{"gitId":"0xF41"},"content":" return String.format(\"[%s] %s\", this.getStatusIcon(), this.getDescription());","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":64,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":65,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":66,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":66}},{"path":"src/main/java/ToDos.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class ToDos extends Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":" ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" * String representation of ToDos","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" return String.format(\"[T]%s\", super.toString());","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" * Constructs a new ToDos object. Todos \u003c: Task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" * @param description description of the ToDos object","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" public ToDos(String description) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" super(description);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":18}},{"path":"src/main/java/Yapper.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"import java.io.BufferedReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":"import java.io.IOException;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":"import java.io.InputStreamReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":"import java.util.ArrayList;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":"public class Yapper {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" * BufferedReader object to read input from user","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" private static BufferedReader br \u003d new BufferedReader(new InputStreamReader(System.in));;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" * Name of the chatbot","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" public static final String NAME \u003d \"Yapper\";","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" * An ArrayList to store the Tasks of the user","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" public static ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" * Displays a default message when the chatbot is started","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":" private static void greet() { // greet text","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Hello! I\u0027m %s!\", Yapper.NAME));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"0xF41"},"content":" System.out.println(\"What can I do for you?\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"0xF41"},"content":" * Starts the conversation between the user and the chatbot. ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"0xF41"},"content":" * @throws IOException","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":39,"author":{"gitId":"0xF41"},"content":" private static void startConversation() throws IOException {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":40,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":41,"author":{"gitId":"0xF41"},"content":" String cmd \u003d \"\";","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":42,"author":{"gitId":"0xF41"},"content":" do {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":43,"author":{"gitId":"0xF41"},"content":" cmd \u003d br.readLine();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":44,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":45,"author":{"gitId":"0xF41"},"content":" if (cmd.equals(\"bye\")) { // end conversation","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":46,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":47,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":48,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Bye. Hope to see you again soon!\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":49,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":50,"author":{"gitId":"0xF41"},"content":" return;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":51,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":52,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":53,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":54,"author":{"gitId":"0xF41"},"content":" if (cmd.equals(\"list\")) { // list tasks","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":55,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":56,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":57,"author":{"gitId":"0xF41"},"content":" for (int i \u003d 0, n \u003d taskList.size(); i \u003c n; i++) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":58,"author":{"gitId":"0xF41"},"content":" Task t \u003d taskList.get(i);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":59,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"%d. %s\", i + 1, t));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":60,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":61,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":62,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":63,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"mark\")) { // mark X","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":64,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":65,"author":{"gitId":"0xF41"},"content":" int idx \u003d Integer.parseInt(cmd.split(\" \")[1]) - 1;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":66,"author":{"gitId":"0xF41"},"content":" Task t \u003d taskList.get(idx);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":67,"author":{"gitId":"0xF41"},"content":" t.markAsDone();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":68,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":69,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":70,"author":{"gitId":"0xF41"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":71,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":72,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":73,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"unmark\")) { // unmark X","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":74,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":75,"author":{"gitId":"0xF41"},"content":" int idx \u003d Integer.parseInt(cmd.split(\" \")[1]) - 1;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":76,"author":{"gitId":"0xF41"},"content":" Task t \u003d taskList.get(idx);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":77,"author":{"gitId":"0xF41"},"content":" t.markAsUndone();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":78,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":79,"author":{"gitId":"0xF41"},"content":" System.out.println(\"OK, I\u0027ve marked this task as not done yet:\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":80,"author":{"gitId":"0xF41"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":81,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":82,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":83,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"todo\")) { // todo X ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":84,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":85,"author":{"gitId":"0xF41"},"content":" ToDos td \u003d new ToDos(cmd.substring(\"todo\".length() + 1));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":86,"author":{"gitId":"0xF41"},"content":" taskList.add(td);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":87,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":88,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":89,"author":{"gitId":"0xF41"},"content":" System.out.println(td);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":90,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size()));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":91,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":92,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":93,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"deadline\")) { // deadline X /by Y","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":94,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":95,"author":{"gitId":"0xF41"},"content":" int deadlineIndex \u003d cmd.indexOf(\"deadline\") + 9;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":96,"author":{"gitId":"0xF41"},"content":" int byIndex \u003d cmd.indexOf(\"/by\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":97,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":98,"author":{"gitId":"0xF41"},"content":" String description \u003d cmd.substring(deadlineIndex, byIndex).trim();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":99,"author":{"gitId":"0xF41"},"content":" String dueDate \u003d cmd.substring(byIndex + 4).trim();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":100,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":101,"author":{"gitId":"0xF41"},"content":" Deadline dl \u003d new Deadline(description, dueDate);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":102,"author":{"gitId":"0xF41"},"content":" taskList.add(dl);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":103,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":104,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":105,"author":{"gitId":"0xF41"},"content":" System.out.println(dl);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":106,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size()));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":107,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":108,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":109,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"event\")) { // event X /from Y /to Z","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":110,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":111,"author":{"gitId":"0xF41"},"content":" int eventIndex \u003d cmd.indexOf(\"event\") + 6; // Start after \"event \"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":112,"author":{"gitId":"0xF41"},"content":" int fromIndex \u003d cmd.indexOf(\"/from\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":113,"author":{"gitId":"0xF41"},"content":" int toIndex \u003d cmd.indexOf(\"/to\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":114,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":115,"author":{"gitId":"0xF41"},"content":" String description \u003d cmd.substring(eventIndex, fromIndex).trim();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":116,"author":{"gitId":"0xF41"},"content":" String fromTime \u003d cmd.substring(fromIndex + 6, toIndex).trim();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":117,"author":{"gitId":"0xF41"},"content":" String toTime \u003d cmd.substring(toIndex + 4).trim();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":118,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":119,"author":{"gitId":"0xF41"},"content":" Events e \u003d new Events(description, fromTime, toTime);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":120,"author":{"gitId":"0xF41"},"content":" taskList.add(e);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":121,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":122,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":123,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":124,"author":{"gitId":"0xF41"},"content":" System.out.println(e);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":125,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size() - 1));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":126,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":127,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":128,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"delete\")) { // delete X","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":129,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":130,"author":{"gitId":"0xF41"},"content":" int deleteIndex \u003d Integer.parseInt(cmd.split(\" \")[1]) - 1;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":131,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":132,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":133,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Noted. I\u0027ve removed this task: \");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":134,"author":{"gitId":"0xF41"},"content":" System.out.println(taskList.get(deleteIndex));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":135,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size()));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":136,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":137,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":138,"author":{"gitId":"0xF41"},"content":" taskList.remove(deleteIndex);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":139,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":140,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":141,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":142,"author":{"gitId":"0xF41"},"content":" } while (!cmd.equals(\"bye\"));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":143,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":144,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":145,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":146,"author":{"gitId":"0xF41"},"content":" * Main Function","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":147,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":148,"author":{"gitId":"0xF41"},"content":" * @param args","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":149,"author":{"gitId":"0xF41"},"content":" * @throws IOException","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":150,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":151,"author":{"gitId":"0xF41"},"content":" public static void main(String[] args) throws IOException {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":152,"author":{"gitId":"0xF41"},"content":" Yapper.greet();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":153,"author":{"gitId":"0xF41"},"content":" Yapper.startConversation();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":154,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":155,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":155}},{"path":"src/main/java/YapperException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class YapperException extends RuntimeException {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":" ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" public YapperException() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" super(\"Test\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":" public YapperException(String message) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" super(message);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" public YapperException(String message, Throwable cause) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" super(message, cause);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":14}}] +[{"path":"README.md","fileType":"md","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"# Yapper","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":"Yapper is a chatbot created as part of NUS CS2103T Software Engineering Module.","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":2,"-":1}},{"path":"src/main/java/CommandParser.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"import java.util.ArrayList;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":"/**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" * CommandParser parses the commands entered by the user into the chatbot. ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":"public class CommandParser {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" * Prints out all Tasks of the user","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" private static void list(ArrayList\u003cTask\u003e taskList) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" for (int i \u003d 0, n \u003d taskList.size(); i \u003c n; i++) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" Task t \u003d taskList.get(i);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"%d. %s\", i + 1, t));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" * Mark a specified task as completed.","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" * @param cmd user command","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":" private static void mark(String cmd, ArrayList\u003cTask\u003e taskList) throws InvalidCommandSyntaxException, ArrayIndexOutOfBoundsException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":" int idx \u003d -1;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":" try {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"0xF41"},"content":" idx \u003d Integer.parseInt(cmd.split(\" \")[1]) - 1;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"0xF41"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(String.format(\"%s is not a valid item.\", cmd.split(\" \")[1]));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"0xF41"},"content":" } catch (ArrayIndexOutOfBoundsException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(String.format(\"%s is not a valid item.\", cmd.split(\" \")[1]));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"0xF41"},"content":" Task t \u003d taskList.get(idx);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"0xF41"},"content":" t.markAsDone();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"0xF41"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":39,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":40,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":41,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":42,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":43,"author":{"gitId":"0xF41"},"content":" * Unmark a specified task as incomplete.","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":44,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":45,"author":{"gitId":"0xF41"},"content":" * @param cmd User command","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":46,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":47,"author":{"gitId":"0xF41"},"content":" private static void unmark(String cmd, ArrayList\u003cTask\u003e taskList) throws InvalidCommandSyntaxException, ArrayIndexOutOfBoundsException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":48,"author":{"gitId":"0xF41"},"content":" int idx \u003d -1;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":49,"author":{"gitId":"0xF41"},"content":" try {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":50,"author":{"gitId":"0xF41"},"content":" idx \u003d Integer.parseInt(cmd.split(\" \")[1]) - 1;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":51,"author":{"gitId":"0xF41"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":52,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(String.format(\"%s is not a valid item.\", cmd.split(\" \")[1]));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":53,"author":{"gitId":"0xF41"},"content":" } catch (ArrayIndexOutOfBoundsException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":54,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(String.format(\"%s is not a valid item.\", cmd.split(\" \")[1]));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":55,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":56,"author":{"gitId":"0xF41"},"content":" Task t \u003d taskList.get(idx);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":57,"author":{"gitId":"0xF41"},"content":" t.markAsUndone();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":58,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":59,"author":{"gitId":"0xF41"},"content":" System.out.println(\"OK, I\u0027ve marked this task as not done yet:\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":60,"author":{"gitId":"0xF41"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":61,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":62,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":63,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":64,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":65,"author":{"gitId":"0xF41"},"content":" * Creates a new ToDos Task in the user\u0027s list of task.","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":66,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":67,"author":{"gitId":"0xF41"},"content":" private static void todo(String cmd, ArrayList\u003cTask\u003e taskList) throws InvalidCommandSyntaxException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":68,"author":{"gitId":"0xF41"},"content":" ToDos td \u003d new ToDos(cmd.substring(\"todo\".length() + 1));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":69,"author":{"gitId":"0xF41"},"content":" taskList.add(td);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":70,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":71,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":72,"author":{"gitId":"0xF41"},"content":" System.out.println(td);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":73,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size()));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":74,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":75,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":76,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":77,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":78,"author":{"gitId":"0xF41"},"content":" * Creates a Deadline Task in the user\u0027s list of task","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":79,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":80,"author":{"gitId":"0xF41"},"content":" * @param cmd User command","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":81,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":82,"author":{"gitId":"0xF41"},"content":" private static void deadline(String cmd, ArrayList\u003cTask\u003e taskList) throws InvalidCommandSyntaxException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":83,"author":{"gitId":"0xF41"},"content":" int deadlineIndex \u003d cmd.indexOf(\"deadline\") + 9;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":84,"author":{"gitId":"0xF41"},"content":" int byIndex \u003d cmd.indexOf(\"/by\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":85,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":86,"author":{"gitId":"0xF41"},"content":" String description \u003d cmd.substring(deadlineIndex, byIndex).trim();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":87,"author":{"gitId":"0xF41"},"content":" String dueDate \u003d cmd.substring(byIndex + 4).trim();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":88,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":89,"author":{"gitId":"0xF41"},"content":" Deadline dl \u003d new Deadline(description, dueDate);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":90,"author":{"gitId":"0xF41"},"content":" taskList.add(dl);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":91,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":92,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":93,"author":{"gitId":"0xF41"},"content":" System.out.println(dl);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":94,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size()));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":95,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":96,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":97,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":98,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":99,"author":{"gitId":"0xF41"},"content":" * Create an Event Task in the user\u0027s list of tasks","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":100,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":101,"author":{"gitId":"0xF41"},"content":" * @param cmd User command","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":102,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":103,"author":{"gitId":"0xF41"},"content":" private static void event(String cmd, ArrayList\u003cTask\u003e taskList) throws InvalidCommandSyntaxException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":104,"author":{"gitId":"0xF41"},"content":" int eventIndex \u003d cmd.indexOf(\"event\") + 6; // Start after \"event \"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":105,"author":{"gitId":"0xF41"},"content":" int fromIndex \u003d cmd.indexOf(\"/from\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":106,"author":{"gitId":"0xF41"},"content":" int toIndex \u003d cmd.indexOf(\"/to\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":107,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":108,"author":{"gitId":"0xF41"},"content":" String description \u003d cmd.substring(eventIndex, fromIndex).trim();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":109,"author":{"gitId":"0xF41"},"content":" String fromTime \u003d cmd.substring(fromIndex + 6, toIndex).trim();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":110,"author":{"gitId":"0xF41"},"content":" String toTime \u003d cmd.substring(toIndex + 4).trim();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":111,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":112,"author":{"gitId":"0xF41"},"content":" Events e \u003d new Events(description, fromTime, toTime);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":113,"author":{"gitId":"0xF41"},"content":" taskList.add(e);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":114,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":115,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":116,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":117,"author":{"gitId":"0xF41"},"content":" System.out.println(e);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":118,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size() - 1));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":119,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":120,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":121,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":122,"author":{"gitId":"0xF41"},"content":" private static void delete(String cmd, ArrayList\u003cTask\u003e taskList) throws InvalidCommandSyntaxException, ArrayIndexOutOfBoundsException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":123,"author":{"gitId":"0xF41"},"content":" int idx \u003d -1;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":124,"author":{"gitId":"0xF41"},"content":" try {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":125,"author":{"gitId":"0xF41"},"content":" idx \u003d Integer.parseInt(cmd.split(\" \")[1]) - 1;","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":126,"author":{"gitId":"0xF41"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":127,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(String.format(\"%s is not a valid item.\", cmd.split(\" \")[1]));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":128,"author":{"gitId":"0xF41"},"content":" } catch (ArrayIndexOutOfBoundsException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":129,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(String.format(\"%s is not a valid item.\", cmd.split(\" \")[1]));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":130,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":131,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":132,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Noted. I\u0027ve removed this task: \");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":133,"author":{"gitId":"0xF41"},"content":" System.out.println(taskList.get(idx));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":134,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Now you have %d tasks in the list.\", taskList.size()));","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":135,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":136,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":137,"author":{"gitId":"0xF41"},"content":" taskList.remove(idx);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":138,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":139,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":140,"author":{"gitId":"0xF41"},"content":" private static void unknown() throws InvalidCommandSyntaxException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":141,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(\"Unknown command.\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":142,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":143,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":144,"author":{"gitId":"0xF41"},"content":" public static void processCommand(String command, ArrayList\u003cTask\u003e taskList) throws InvalidCommandSyntaxException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":145,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":146,"author":{"gitId":"0xF41"},"content":" if (command.split(\" \").length \u003c 2) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":147,"author":{"gitId":"0xF41"},"content":" throw new InvalidCommandSyntaxException(\"Invalid command syntax. Expected: \u0027Command argument\u0027\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":148,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":149,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":150,"author":{"gitId":"0xF41"},"content":" String[] tokens \u003d command.split(\" \");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":151,"author":{"gitId":"0xF41"},"content":" String cmd \u003d tokens[0];","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":152,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":153,"author":{"gitId":"0xF41"},"content":" if (cmd.equals(\"list\")) { // list tasks","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":154,"author":{"gitId":"0xF41"},"content":" list(taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":155,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"mark\")) { // mark X","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":156,"author":{"gitId":"0xF41"},"content":" mark(cmd, taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":157,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"unmark\")) { // unmark X","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":158,"author":{"gitId":"0xF41"},"content":" unmark(cmd, taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":159,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"todo\")) { // todo X","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":160,"author":{"gitId":"0xF41"},"content":" todo(cmd, taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":161,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"deadline\")) { // deadline X /by Y","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":162,"author":{"gitId":"0xF41"},"content":" deadline(cmd, taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":163,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"event\")) { // event X /from Y /to Z","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":164,"author":{"gitId":"0xF41"},"content":" event(cmd, taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":165,"author":{"gitId":"0xF41"},"content":" } else if (cmd.split(\" \")[0].equals(\"delete\")) { // delete X","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":166,"author":{"gitId":"0xF41"},"content":" delete(cmd, taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":167,"author":{"gitId":"0xF41"},"content":" } else {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":168,"author":{"gitId":"0xF41"},"content":" unknown();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":169,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":170,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":171,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":172,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":173,"author":{"gitId":"0xF41"},"content":" public CommandParser() {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":174,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":175,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":176,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":177,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":178,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false}],"authorContributionMap":{"0xF41":178}},{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class Deadline extends Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" * Represents the instance of when the Deadline is due","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" protected String by;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" * String representation of a Deadline object. ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" // return \"[D]\" + super.toString() + \" (by: \" + by + \")\";","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" return String.format(\"[D]%s (by: %s)\", super.toString(), this.by);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" * Constructs a Deadline object. Deadline \u003c: Task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" * @param description description of the Deadline object","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":" * @param by represent the instance of when the deadline is due","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" super(description);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" this.by \u003d by;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":27}},{"path":"src/main/java/Events.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class Events extends Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" * Represents the instance of when the Events is started","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" protected String from;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" * Represents the instance of when the Events is due","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" protected String to;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" * String representation of a Events.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" return String.format(\"[E]%s (from: %s to: %s)\", super.toString(), this.from, this.to);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":" * Constructs a Events object. Events \u003c: Task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" * @param description description of the Events object","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":" * @param from start time of an Events","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":" * @param to end time of an Events","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"0xF41"},"content":" public Events(String description, String from, String to) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"0xF41"},"content":" this.from \u003d from;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"0xF41"},"content":" this.to \u003d to;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"0xF41"},"content":" super(description);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":33}},{"path":"src/main/java/InvalidCommandSyntaxException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class InvalidCommandSyntaxException extends Exception {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":" ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" public InvalidCommandSyntaxException(String message) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" super(message);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":" public InvalidCommandSyntaxException(String message, Throwable cause) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" super(message, cause);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-25","isFullCredit":false}],"authorContributionMap":{"0xF41":10}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"/**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":" * Task encapsulates an event that is created by the user when communicating with the Yapper chatbot.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":"public class Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":" * Description of the task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" protected String description;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" * State of whether is task is marked as done (true) or not (false).","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" protected boolean isDone;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" * Constructs a new Task with the specified description message.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" * @param description description of the task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" public Task(String description) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":" this.description \u003d description;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" this.isDone \u003d false;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":" * Returns the current status icon of the Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"0xF41"},"content":" * @return a character indicating the status icon of the Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"0xF41"},"content":" public String getStatusIcon() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"0xF41"},"content":" return (isDone ? \"X\" : \" \"); // mark done task with X","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"0xF41"},"content":" * Returns the description of the Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"0xF41"},"content":" * @return description of the task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":39,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":40,"author":{"gitId":"0xF41"},"content":" public String getDescription() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":41,"author":{"gitId":"0xF41"},"content":" return this.description;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":42,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":43,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":44,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":45,"author":{"gitId":"0xF41"},"content":" * Marks the current task as done.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":46,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":47,"author":{"gitId":"0xF41"},"content":" public void markAsDone() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":48,"author":{"gitId":"0xF41"},"content":" this.isDone \u003d true;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":49,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":50,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":51,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":52,"author":{"gitId":"0xF41"},"content":" * Marks the current task as undone.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":53,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":54,"author":{"gitId":"0xF41"},"content":" public void markAsUndone() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":55,"author":{"gitId":"0xF41"},"content":" this.isDone \u003d false;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":56,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":57,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":58,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":59,"author":{"gitId":"0xF41"},"content":" * String representation of a Task.","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":60,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":61,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":62,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":63,"author":{"gitId":"0xF41"},"content":" return String.format(\"[%s] %s\", this.getStatusIcon(), this.getDescription());","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":64,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":65,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":66,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":66}},{"path":"src/main/java/ToDos.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"public class ToDos extends Task {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":" ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":" * String representation of ToDos","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":" @Override","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":" public String toString() {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" return String.format(\"[T]%s\", super.toString());","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":" * Constructs a new ToDos object. Todos \u003c: Task","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" * @param description description of the ToDos object","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" public ToDos(String description) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" super(description);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":18}},{"path":"src/main/java/Yapper.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"0xF41"},"content":"import java.io.BufferedReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"0xF41"},"content":"import java.io.IOException;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"0xF41"},"content":"import java.io.InputStreamReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"0xF41"},"content":"import java.util.ArrayList;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"0xF41"},"content":"public class Yapper {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"0xF41"},"content":" * BufferedReader object to read input from user.","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"0xF41"},"content":" private static BufferedReader br \u003d new BufferedReader(new InputStreamReader(System.in));;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"0xF41"},"content":" * Name of the chatbot","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"0xF41"},"content":" public static final String NAME \u003d \"Yapper\";","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"0xF41"},"content":" * An ArrayList to store the Tasks of the user.","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"0xF41"},"content":" private static ArrayList\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"0xF41"},"content":" * Displays a default message when the chatbot is started.","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"0xF41"},"content":" private static void greet() {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"0xF41"},"content":" System.out.println(String.format(\"Hello! I\u0027m %s!\", Yapper.NAME));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"0xF41"},"content":" System.out.println(\"What can I do for you?\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"0xF41"},"content":" * Displays the bye message before the chatbot is terminated.","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"0xF41"},"content":" private static void bye() {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":39,"author":{"gitId":"0xF41"},"content":" System.out.println(\"Bye. Hope to see you again soon!\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":40,"author":{"gitId":"0xF41"},"content":" System.out.println(\"____________________________________________________________\");","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":41,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":42,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":43,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":44,"author":{"gitId":"0xF41"},"content":" * Starts the conversation between the user and the chatbot. ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":45,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":46,"author":{"gitId":"0xF41"},"content":" * @throws IOException","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":47,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":48,"author":{"gitId":"0xF41"},"content":" private static void startConversation() throws IOException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":49,"author":{"gitId":"0xF41"},"content":" Yapper.greet();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":50,"author":{"gitId":"0xF41"},"content":" String cmd \u003d \"\";","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":51,"author":{"gitId":"0xF41"},"content":" do {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":52,"author":{"gitId":"0xF41"},"content":" cmd \u003d br.readLine();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":53,"author":{"gitId":"0xF41"},"content":" try {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":54,"author":{"gitId":"0xF41"},"content":" CommandParser.processCommand(cmd, taskList);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":55,"author":{"gitId":"0xF41"},"content":" } catch (InvalidCommandSyntaxException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":56,"author":{"gitId":"0xF41"},"content":" System.out.println(e);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":57,"author":{"gitId":"0xF41"},"content":" } catch (ArrayIndexOutOfBoundsException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":58,"author":{"gitId":"0xF41"},"content":" System.out.println(e);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":59,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":60,"author":{"gitId":"0xF41"},"content":" } while (!cmd.equals(\"bye\"));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":61,"author":{"gitId":"0xF41"},"content":" Yapper.bye();","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":62,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":63,"author":{"gitId":"0xF41"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":64,"author":{"gitId":"0xF41"},"content":" /**","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":65,"author":{"gitId":"0xF41"},"content":" * Main Function","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":66,"author":{"gitId":"0xF41"},"content":" * ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":67,"author":{"gitId":"0xF41"},"content":" * @param args","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":68,"author":{"gitId":"0xF41"},"content":" * @throws IOException","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":69,"author":{"gitId":"0xF41"},"content":" */","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":70,"author":{"gitId":"0xF41"},"content":" public static void main(String[] args) throws IOException {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":71,"author":{"gitId":"0xF41"},"content":" Yapper.startConversation();","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":72,"author":{"gitId":"0xF41"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":73,"author":{"gitId":"0xF41"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"0xF41":73}}] diff --git a/0xF41_ip_master/commits.json b/0xF41_ip_master/commits.json index 9dc2da36..1471dab7 100644 --- a/0xF41_ip_master/commits.json +++ b/0xF41_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"0xF41":[{"date":"2025-01-23","commitResults":[{"hash":"2aefdebf998e1d6fccf2c195e660315ddf71ddcc","isMergeCommit":false,"messageTitle":"Add level 0","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":18,"deletions":10}}},{"hash":"3419d0401616fba4c3811e4fc41f29eb44ad351b","isMergeCommit":false,"messageTitle":"Add level 1","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":28,"deletions":3}}},{"hash":"06fbbab98bf6a6931226220952f3e0a574d88cf2","isMergeCommit":false,"messageTitle":"Add level 3","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":8}}},{"hash":"769ccb9dd7ab578948bfab51b0fe3d451d4ddb62","isMergeCommit":false,"messageTitle":"Level 3","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":64,"deletions":10}}},{"hash":"2a4b93bfc08a103a07ee2f4e5214995554f5483f","isMergeCommit":false,"messageTitle":"Add level 4","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":99,"deletions":13}}},{"hash":"80361b54f7b765a4d8e5ee83ec81de75c3861a2a","isMergeCommit":false,"messageTitle":"Add step 6","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"java":{"insertions":139,"deletions":3}}},{"hash":"efb78245f93732848164f789b2422d8f5785f3bb","isMergeCommit":false,"messageTitle":"Level 6","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":18}}},{"hash":"c4a6dbc83a43c1c58c80033b77fdd62b69277fb0","isMergeCommit":false,"messageTitle":"Modify README.md","messageBody":"","fileTypesAndContributionMap":{"md":{"insertions":2,"deletions":25}}}]}]},"authorFileTypeContributionMap":{"0xF41":{"java":313,"md":2,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"0xF41":14034.694},"authorDisplayNameMap":{"0xF41":"CS2103T-T10-3 KWAN.. YEW"}} +{"authorDailyContributionsMap":{"0xF41":[{"date":"2025-01-23","commitResults":[{"hash":"2aefdebf998e1d6fccf2c195e660315ddf71ddcc","isMergeCommit":false,"messageTitle":"Add level 0","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":18,"deletions":10}}},{"hash":"3419d0401616fba4c3811e4fc41f29eb44ad351b","isMergeCommit":false,"messageTitle":"Add level 1","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":28,"deletions":3}}},{"hash":"06fbbab98bf6a6931226220952f3e0a574d88cf2","isMergeCommit":false,"messageTitle":"Add level 3","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":8}}},{"hash":"769ccb9dd7ab578948bfab51b0fe3d451d4ddb62","isMergeCommit":false,"messageTitle":"Level 3","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":64,"deletions":10}}},{"hash":"2a4b93bfc08a103a07ee2f4e5214995554f5483f","isMergeCommit":false,"messageTitle":"Add level 4","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":99,"deletions":13}}},{"hash":"80361b54f7b765a4d8e5ee83ec81de75c3861a2a","isMergeCommit":false,"messageTitle":"Add step 6","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"java":{"insertions":139,"deletions":3}}},{"hash":"efb78245f93732848164f789b2422d8f5785f3bb","isMergeCommit":false,"messageTitle":"Level 6","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":18}}},{"hash":"c4a6dbc83a43c1c58c80033b77fdd62b69277fb0","isMergeCommit":false,"messageTitle":"Modify README.md","messageBody":"","fileTypesAndContributionMap":{"md":{"insertions":2,"deletions":25}}}]},{"date":"2025-01-25","commitResults":[{"hash":"1b035a56a2dd9b4969f38a40398c611f0cdda7df","isMergeCommit":false,"messageTitle":"Separated functions in Yapper.java","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":133,"deletions":87}}},{"hash":"9b1bfb1e5ab90fa3a2f18986e6ab7c803b78a873","isMergeCommit":false,"messageTitle":"Add CommandParser.java and some error handling","messageBody":"","tags":["Level-5","A-Exceptions"],"fileTypesAndContributionMap":{"java":{"insertions":197,"deletions":151}}}]}]},"authorFileTypeContributionMap":{"0xF41":{"java":405,"md":2,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"0xF41":29260.938},"authorDisplayNameMap":{"0xF41":"CS2103T-T10-3 KWAN.. YEW"}} diff --git a/CHI-ME_ip_master/authorship.json b/CHI-ME_ip_master/authorship.json index fe51488c..1aeecad8 100644 --- a/CHI-ME_ip_master/authorship.json +++ b/CHI-ME_ip_master/authorship.json @@ -1 +1 @@ -[] +[{"path":"src/main/java/Ninon.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"CHI-ME"},"content":"import java.util.Objects;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"CHI-ME"},"content":"import java.util.Scanner;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"CHI-ME"},"content":"public class Ninon {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"CHI-ME"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"CHI-ME"},"content":" public static final String SPLIT \u003d \"____________________________________________________________\\n\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"CHI-ME"},"content":" public static void main(String[] args) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"CHI-ME"},"content":" Scanner input \u003d new Scanner(System.in);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"CHI-ME"},"content":" String greet \u003d \"Hello! I\u0027m NINON\\n\" +","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"CHI-ME"},"content":" \"What can I do for you?\\n\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"CHI-ME"},"content":" String exit \u003d \"Bye. Hope to see you again soon!\\n\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"CHI-ME"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"CHI-ME"},"content":" System.out.println(SPLIT + greet + SPLIT);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"CHI-ME"},"content":" String message \u003d input.nextLine();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"CHI-ME"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"CHI-ME"},"content":" while (!Objects.equals(message, \"bye\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"CHI-ME"},"content":" String respond \u003d echo(message);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"CHI-ME"},"content":" System.out.println(SPLIT + respond + \"\\n\" + SPLIT);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"CHI-ME"},"content":" message \u003d input.nextLine();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"CHI-ME"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"CHI-ME"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"CHI-ME"},"content":" System.out.println(SPLIT + exit + SPLIT);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"CHI-ME"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"CHI-ME"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"CHI-ME"},"content":" public static String echo(String message) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"CHI-ME"},"content":" return message;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"CHI-ME"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"CHI-ME"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"CHI-ME":27}}] diff --git a/CHI-ME_ip_master/commits.json b/CHI-ME_ip_master/commits.json index 633d6dac..1aff8511 100644 --- a/CHI-ME_ip_master/commits.json +++ b/CHI-ME_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"CHI-ME":[]},"authorFileTypeContributionMap":{"CHI-ME":{"java":0,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"CHI-ME":0.0},"authorDisplayNameMap":{"CHI-ME":"CS2103T-F14-4 CHEN.. FAN"}} +{"authorDailyContributionsMap":{"CHI-ME":[{"date":"2025-01-24","commitResults":[{"hash":"68974fb31904cf69dbfb3fbd0ce3ab12a7161d3b","isMergeCommit":false,"messageTitle":"rename, add greeting and exit","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":10,"deletions":10}}},{"hash":"131d5716d22a3e0a08afdca639094215d57ada34","isMergeCommit":false,"messageTitle":"add echo function","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":18,"deletions":1}}}]}]},"authorFileTypeContributionMap":{"CHI-ME":{"java":27,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"CHI-ME":94.64001},"authorDisplayNameMap":{"CHI-ME":"CS2103T-F14-4 CHEN.. FAN"}} diff --git a/archive.zip b/archive.zip index 2fbf55ed..7e0d0de1 100644 Binary files a/archive.zip and b/archive.zip differ diff --git a/darrenchooji_ip_master/authorship.json b/darrenchooji_ip_master/authorship.json index 1f305db8..18e80179 100644 --- a/darrenchooji_ip_master/authorship.json +++ b/darrenchooji_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public class Deadline extends Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" private String deadline;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":" public Deadline(String name, String deadline) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":" super(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":" this.deadline \u003d deadline;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" @Override","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" public String toString() {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":" String doneIndicator \u003d super.getIsDone() ? \"X\" : \" \";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" return \"[D][\" + doneIndicator + \"] \" + super.getName() ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":" + \" (by: \" + this.deadline + \")\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":15}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public class Event extends Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" private String from;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":" private String to;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":" public Event(String name, String from, String to) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":" super(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" this.from \u003d from;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" this.to \u003d to;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":" @Override","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" public String toString() {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":" String doneIndicator \u003d super.getIsDone() ? \"X\" : \" \";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":" return \"[E][\" + doneIndicator + \"] \" + super.getName() ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":" + \" (from: \" + this.from + \" to: \" + this.to + \")\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":17}},{"path":"src/main/java/Fiona.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"import java.io.BufferedReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":"import java.io.IOException;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":"import java.io.InputStreamReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":"import java.util.ArrayList;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":"import java.util.List;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":"public class Fiona {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" private static String line \u003d \"-------------------------------------------------------------\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" public static void main(String[] args) throws IOException {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" BufferedReader br \u003d new BufferedReader(new InputStreamReader(System.in));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" List\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line+\"\\nHello! I\u0027m Fiona.\\nWhat can I do for you?\\n\"+line);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":" while (true) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"darrenchooji"},"content":" String[] inputs \u003d br.readLine().trim().split(\"\\\\s+\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"darrenchooji"},"content":" String action \u003d inputs[0];","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"darrenchooji"},"content":" if (action.equals(\"bye\")) break;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"darrenchooji"},"content":" if (action.equals(\"todo\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"darrenchooji"},"content":" String name \u003d inputs[1].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"darrenchooji"},"content":" Task t \u003d new Todo(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"darrenchooji"},"content":" taskList.add(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Now you have \"+taskList.size()+\" task(s) in the list.\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"deadline\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"darrenchooji"},"content":" String[] parts \u003d inputs[1].split(\"/by\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"darrenchooji"},"content":" String name \u003d parts[0].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"darrenchooji"},"content":" String deadline \u003d parts[1].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"darrenchooji"},"content":" Task t \u003d new Deadline(name, deadline);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"darrenchooji"},"content":" taskList.add(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Now you have \"+taskList.size()+\" task(s) in the list.\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":39,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":40,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"event\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":41,"author":{"gitId":"darrenchooji"},"content":" String[] fromSplit \u003d inputs[1].split(\"/from\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":42,"author":{"gitId":"darrenchooji"},"content":" String name \u003d fromSplit[0].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":43,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":44,"author":{"gitId":"darrenchooji"},"content":" String[] toSplit \u003d fromSplit[1].split(\"/to\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":45,"author":{"gitId":"darrenchooji"},"content":" String from \u003d toSplit[0].trim(); ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":46,"author":{"gitId":"darrenchooji"},"content":" String to \u003d toSplit[1].trim(); ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":47,"author":{"gitId":"darrenchooji"},"content":" Task t \u003d new Event(name, from, to);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":48,"author":{"gitId":"darrenchooji"},"content":" taskList.add(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":49,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":50,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":51,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Now you have \"+taskList.size()+\" task(s) in the list.\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":52,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":53,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"list\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":54,"author":{"gitId":"darrenchooji"},"content":" for (Task t : taskList) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":55,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t.getId() + \". \"+t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":56,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":57,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":58,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"mark\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":59,"author":{"gitId":"darrenchooji"},"content":" int id \u003d Integer.parseInt(inputs[1])-1;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":60,"author":{"gitId":"darrenchooji"},"content":" taskList.get(id).setDone();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":61,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":62,"author":{"gitId":"darrenchooji"},"content":" System.out.println(taskList.get(id));","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":63,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":64,"author":{"gitId":"darrenchooji"},"content":" } else {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":65,"author":{"gitId":"darrenchooji"},"content":" int id \u003d Integer.parseInt(inputs[1])-1;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":66,"author":{"gitId":"darrenchooji"},"content":" taskList.get(id).setUndone();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":67,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"OK, I\u0027ve marked this task as not done yet :\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":68,"author":{"gitId":"darrenchooji"},"content":" System.out.println(taskList.get(id));","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":69,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":70,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":71,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":72,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":73,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line+\"\\nBye. Hope to see you again soon!\\n\"+line);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":74,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":75,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"darrenchooji":75}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public abstract class Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" private int id;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":" private String name;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":" private boolean isDone;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":" private static int numOfTask \u003d 0;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" public Task(String name) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" ++numOfTask;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" this.id \u003d numOfTask;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" this.name \u003d name;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":" this.isDone \u003d false;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":" public int getId() { return this.id; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"darrenchooji"},"content":" public String getName() { return this.name; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"darrenchooji"},"content":" public boolean getIsDone() { return this.isDone; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"darrenchooji"},"content":" public void setDone() { this.isDone \u003d true; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"darrenchooji"},"content":" public void setUndone() { this.isDone \u003d false; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":23}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public class Todo extends Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" public Todo(String name) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":" super(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":" @Override","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" public String toString() {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" String doneIndicator \u003d super.getIsDone() ? \"X\" : \" \";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" return \"[T][\" + doneIndicator+\"] \"+super.getName();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":11}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"todo borrow book","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":"deadline return book /by Sunday","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":"event project meeting /from Mon 2pm /to 4pm","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":"list","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":"bye","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":5}},{"path":"text-ui-test/runtest.sh","fileType":"sh","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"#!/usr/bin/env bash","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"-"},"content":"# create bin directory if it doesn\u0027t exist","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"-"},"content":"if [ ! -d \"../bin\" ]","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"-"},"content":" mkdir ../bin","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"-"},"content":"# delete output from previous run","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"-"},"content":"if [ -e \"./ACTUAL.TXT\" ]","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"-"},"content":" rm ACTUAL.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"-"},"content":"# compile the code into the bin folder, terminates if error occurred","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"-"},"content":"if ! javac -cp ../src/main/java -Xlint:none -d ../bin ../src/main/java/*.java","lastModifiedDate":"2020-08-25","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"-"},"content":" echo \"********** BUILD FAILURE **********\"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"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","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"darrenchooji"},"content":"java -classpath ../bin Fiona \u003c input.txt \u003e ACTUAL.TXT","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"-"},"content":"# convert to UNIX format","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"-"},"content":"cp EXPECTED.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"-"},"content":"dos2unix ACTUAL.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"-"},"content":"# compare the output to the expected output","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"-"},"content":"diff ACTUAL.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"-"},"content":"if [ $? -eq 0 ]","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"-"},"content":" echo \"Test result: PASSED\"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"-"},"content":" exit 0","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"-"},"content":"else","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"-"},"content":" echo \"Test result: FAILED\"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false}],"authorContributionMap":{"darrenchooji":1,"-":37}}] +[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public class Deadline extends Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" private String deadline;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":" public Deadline(String name, String deadline) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":" super(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":" this.deadline \u003d deadline;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" @Override","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" public String toString() {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":" String doneIndicator \u003d super.getIsDone() ? \"X\" : \" \";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" return \"[D][\" + doneIndicator + \"] \" + super.getName() ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":" + \" (by: \" + this.deadline + \")\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":15}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public class Event extends Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" private String from;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":" private String to;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":" public Event(String name, String from, String to) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":" super(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" this.from \u003d from;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" this.to \u003d to;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":" @Override","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" public String toString() {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":" String doneIndicator \u003d super.getIsDone() ? \"X\" : \" \";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":" return \"[E][\" + doneIndicator + \"] \" + super.getName() ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":" + \" (from: \" + this.from + \" to: \" + this.to + \")\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":17}},{"path":"src/main/java/Fiona.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"import java.io.BufferedReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":"import java.io.IOException;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":"import java.io.InputStreamReader;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":"import java.util.ArrayList;","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":"import java.util.List;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":"public class Fiona {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" private static String line \u003d \"-------------------------------------------------------------\";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" public static void main(String[] args) throws IOException, FionaException {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" BufferedReader br \u003d new BufferedReader(new InputStreamReader(System.in));","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" List\u003cTask\u003e taskList \u003d new ArrayList\u003c\u003e();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line+\"\\nHello! I\u0027m Fiona.\\nWhat can I do for you?\\n\"+line);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":" while (true) {","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"darrenchooji"},"content":" String[] inputs \u003d br.readLine().trim().split(\"\\\\s+\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"darrenchooji"},"content":" String action \u003d inputs[0];","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"darrenchooji"},"content":" if (action.equals(\"bye\")) break;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line);","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"darrenchooji"},"content":" try {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"darrenchooji"},"content":" if (action.equals(\"todo\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"darrenchooji"},"content":" if (inputs.length \u003c 2 || inputs[1].trim().isEmpty()) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"darrenchooji"},"content":" throw new FionaException(\"The description of a todo cannot be empty.\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"darrenchooji"},"content":" String name \u003d inputs[1].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"darrenchooji"},"content":" Task t \u003d new Todo(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"darrenchooji"},"content":" taskList.add(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Now you have \"+taskList.size()+\" task(s) in the list.\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"deadline\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"darrenchooji"},"content":" if (inputs.length \u003c 2 || inputs[1].trim().isEmpty() || !inputs[1].contains(\"/by\")) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"darrenchooji"},"content":" throw new FionaException(\"The description of a deadline must include a \u0027/by\u0027 clause.\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"darrenchooji"},"content":" String[] parts \u003d inputs[1].split(\"/by\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":39,"author":{"gitId":"darrenchooji"},"content":" String name \u003d parts[0].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":40,"author":{"gitId":"darrenchooji"},"content":" String deadline \u003d parts[1].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":41,"author":{"gitId":"darrenchooji"},"content":" Task t \u003d new Deadline(name, deadline);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":42,"author":{"gitId":"darrenchooji"},"content":" taskList.add(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":43,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":44,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":45,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Now you have \"+taskList.size()+\" task(s) in the list.\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":46,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":47,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"event\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":48,"author":{"gitId":"darrenchooji"},"content":" if (inputs.length \u003c 2 || inputs[1].trim().isEmpty() || !inputs[1].contains(\"/from\") || !inputs[1].contains(\"/to\")) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":49,"author":{"gitId":"darrenchooji"},"content":" throw new FionaException(\"The description of an event must include \u0027/from\u0027 and \u0027/to\u0027 clauses.\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":50,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":51,"author":{"gitId":"darrenchooji"},"content":" String[] fromSplit \u003d inputs[1].split(\"/from\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":52,"author":{"gitId":"darrenchooji"},"content":" String name \u003d fromSplit[0].trim();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":53,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":54,"author":{"gitId":"darrenchooji"},"content":" String[] toSplit \u003d fromSplit[1].split(\"/to\", 2);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":55,"author":{"gitId":"darrenchooji"},"content":" String from \u003d toSplit[0].trim(); ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":56,"author":{"gitId":"darrenchooji"},"content":" String to \u003d toSplit[1].trim(); ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":57,"author":{"gitId":"darrenchooji"},"content":" Task t \u003d new Event(name, from, to);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":58,"author":{"gitId":"darrenchooji"},"content":" taskList.add(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":59,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":60,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":61,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Now you have \"+taskList.size()+\" task(s) in the list.\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":62,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":63,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"list\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":64,"author":{"gitId":"darrenchooji"},"content":" for (Task t : taskList) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":65,"author":{"gitId":"darrenchooji"},"content":" System.out.println(t.getId() + \". \"+t);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":66,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":67,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":68,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"mark\")) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":69,"author":{"gitId":"darrenchooji"},"content":" if (inputs.length \u003c 2) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":70,"author":{"gitId":"darrenchooji"},"content":" throw new FionaException(\"You must specify a valid task number to mark as done.\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":71,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":72,"author":{"gitId":"darrenchooji"},"content":" int id \u003d Integer.parseInt(inputs[1])-1;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":73,"author":{"gitId":"darrenchooji"},"content":" taskList.get(id).setDone();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":74,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":75,"author":{"gitId":"darrenchooji"},"content":" System.out.println(taskList.get(id));","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":76,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":77,"author":{"gitId":"darrenchooji"},"content":" } else if (action.equals(\"unmark\")) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":78,"author":{"gitId":"darrenchooji"},"content":" if (inputs.length \u003c 2) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":79,"author":{"gitId":"darrenchooji"},"content":" throw new FionaException(\"You must specify a valid task number to mark as not done yet.\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":80,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":81,"author":{"gitId":"darrenchooji"},"content":" int id \u003d Integer.parseInt(inputs[1])-1;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":82,"author":{"gitId":"darrenchooji"},"content":" taskList.get(id).setUndone();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":83,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"OK, I\u0027ve marked this task as not done yet :\");","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":84,"author":{"gitId":"darrenchooji"},"content":" System.out.println(taskList.get(id));","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":85,"author":{"gitId":"darrenchooji"},"content":" ","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":86,"author":{"gitId":"darrenchooji"},"content":" } else {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":87,"author":{"gitId":"darrenchooji"},"content":" throw new FionaException(\"I\u0027m sorry, but I don\u0027t know what that means :-(\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":88,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":89,"author":{"gitId":"darrenchooji"},"content":" } catch (FionaException fE) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":90,"author":{"gitId":"darrenchooji"},"content":" System.out.println(fE.getMessage());","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":91,"author":{"gitId":"darrenchooji"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":92,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"The task number you specified must be a valid integer!\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":93,"author":{"gitId":"darrenchooji"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":94,"author":{"gitId":"darrenchooji"},"content":" System.out.println(\"The task number you specified does not exist!\");","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":95,"author":{"gitId":"darrenchooji"},"content":" } ","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":96,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":97,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":98,"author":{"gitId":"darrenchooji"},"content":" System.out.println(line+\"\\nBye. Hope to see you again soon!\\n\"+line);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":99,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-23","isFullCredit":false},{"lineNumber":100,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-23","isFullCredit":false}],"authorContributionMap":{"darrenchooji":100}},{"path":"src/main/java/FionaException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public class FionaException extends Exception {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" public FionaException(String message) {","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":" super(message);","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-25","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-25","isFullCredit":false}],"authorContributionMap":{"darrenchooji":5}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public abstract class Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" private int id;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":" private String name;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":" private boolean isDone;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":" private static int numOfTask \u003d 0;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" public Task(String name) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" ++numOfTask;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" this.id \u003d numOfTask;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" this.name \u003d name;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":" this.isDone \u003d false;","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"darrenchooji"},"content":" public int getId() { return this.id; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"darrenchooji"},"content":" public String getName() { return this.name; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"darrenchooji"},"content":" public boolean getIsDone() { return this.isDone; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"darrenchooji"},"content":" public void setDone() { this.isDone \u003d true; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":22,"author":{"gitId":"darrenchooji"},"content":" public void setUndone() { this.isDone \u003d false; }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":23}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"public class Todo extends Task {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":" public Todo(String name) {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":" super(name);","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":"","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"darrenchooji"},"content":" @Override","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"darrenchooji"},"content":" public String toString() {","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"darrenchooji"},"content":" String doneIndicator \u003d super.getIsDone() ? \"X\" : \" \";","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"darrenchooji"},"content":" return \"[T][\" + doneIndicator+\"] \"+super.getName();","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"darrenchooji"},"content":" }","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"darrenchooji"},"content":"}","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":11}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"darrenchooji"},"content":"todo borrow book","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"darrenchooji"},"content":"deadline return book /by Sunday","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"darrenchooji"},"content":"event project meeting /from Mon 2pm /to 4pm","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"darrenchooji"},"content":"list","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"darrenchooji"},"content":"bye","lastModifiedDate":"2025-01-24","isFullCredit":false}],"authorContributionMap":{"darrenchooji":5}},{"path":"text-ui-test/runtest.sh","fileType":"sh","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"#!/usr/bin/env bash","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":2,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":3,"author":{"gitId":"-"},"content":"# create bin directory if it doesn\u0027t exist","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":4,"author":{"gitId":"-"},"content":"if [ ! -d \"../bin\" ]","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":5,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":6,"author":{"gitId":"-"},"content":" mkdir ../bin","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":7,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":8,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":9,"author":{"gitId":"-"},"content":"# delete output from previous run","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":10,"author":{"gitId":"-"},"content":"if [ -e \"./ACTUAL.TXT\" ]","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":11,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":12,"author":{"gitId":"-"},"content":" rm ACTUAL.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":13,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":14,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":15,"author":{"gitId":"-"},"content":"# compile the code into the bin folder, terminates if error occurred","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":16,"author":{"gitId":"-"},"content":"if ! javac -cp ../src/main/java -Xlint:none -d ../bin ../src/main/java/*.java","lastModifiedDate":"2020-08-25","isFullCredit":false},{"lineNumber":17,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":18,"author":{"gitId":"-"},"content":" echo \"********** BUILD FAILURE **********\"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":19,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":20,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":21,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"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","isFullCredit":false},{"lineNumber":23,"author":{"gitId":"darrenchooji"},"content":"java -classpath ../bin Fiona \u003c input.txt \u003e ACTUAL.TXT","lastModifiedDate":"2025-01-24","isFullCredit":false},{"lineNumber":24,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":25,"author":{"gitId":"-"},"content":"# convert to UNIX format","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":26,"author":{"gitId":"-"},"content":"cp EXPECTED.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":27,"author":{"gitId":"-"},"content":"dos2unix ACTUAL.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":28,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":29,"author":{"gitId":"-"},"content":"# compare the output to the expected output","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":30,"author":{"gitId":"-"},"content":"diff ACTUAL.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":31,"author":{"gitId":"-"},"content":"if [ $? -eq 0 ]","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":32,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":33,"author":{"gitId":"-"},"content":" echo \"Test result: PASSED\"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":34,"author":{"gitId":"-"},"content":" exit 0","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":35,"author":{"gitId":"-"},"content":"else","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":36,"author":{"gitId":"-"},"content":" echo \"Test result: FAILED\"","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":37,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25","isFullCredit":false},{"lineNumber":38,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25","isFullCredit":false}],"authorContributionMap":{"darrenchooji":1,"-":37}}] diff --git a/darrenchooji_ip_master/commits.json b/darrenchooji_ip_master/commits.json index b34519eb..4e2b8a97 100644 --- a/darrenchooji_ip_master/commits.json +++ b/darrenchooji_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"darrenchooji":[{"date":"2025-01-23","commitResults":[{"hash":"1388a21b355c3e1fde68b7d05a1f5fc90ca671ba","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":11,"deletions":0}}},{"hash":"8e0fbef51658d3b7665ab972f8a092d89f3bd271","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":0,"deletions":10}}},{"hash":"cc027d8830a9e1f029005f51885ff6d4fbb7d577","isMergeCommit":false,"messageTitle":"Level-1","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":15,"deletions":7}}},{"hash":"720ff3abaacd2e79ac9e69e8913e592d49a730ed","isMergeCommit":false,"messageTitle":"Level-0 done","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":13}}},{"hash":"f780af18dee44f7ef95c967203a5fae7f891a5de","isMergeCommit":false,"messageTitle":"Level-1 done","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":1}}},{"hash":"f0523cff75c38f939d0b316c87280af014ee647a","isMergeCommit":false,"messageTitle":"Level-1 done","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":1}}},{"hash":"6352ccdcd515db0a739c6233bced9fcba0cf11d7","isMergeCommit":false,"messageTitle":"Level-2 done","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":2}}}]},{"date":"2025-01-24","commitResults":[{"hash":"6e8a0e6ecdf49c50c8ed7e774cf7791cebc05e57","isMergeCommit":false,"messageTitle":"Level-3 Done","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":65,"deletions":14}}},{"hash":"76b3aca64e50add092fe243e94115bf6f54000b4","isMergeCommit":false,"messageTitle":"Level-3 Done","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":2,"deletions":4}}},{"hash":"6bee6d73ba247959701a9a8447e91210ebabf09c","isMergeCommit":false,"messageTitle":"Level-4 Done","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":103,"deletions":42}}},{"hash":"78e447a85ab65fce7242242bcd10b83ad077f473","isMergeCommit":false,"messageTitle":"A-TextUiTesting done","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":5,"deletions":0},"sh":{"insertions":1,"deletions":1}}},{"hash":"80ee56e16f04d5de054d1bbf52c373cfcf75a09b","isMergeCommit":false,"messageTitle":"A-TextUiTesting done","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":1}}}]}]},"authorFileTypeContributionMap":{"darrenchooji":{"java":141,"md":0,"fxml":0,"sh":1,"bat":0,"gradle":0,"txt":5}},"authorContributionVariance":{"darrenchooji":3857.982},"authorDisplayNameMap":{"darrenchooji":"CS2103T-T17-4 CHOO..RREN"}} +{"authorDailyContributionsMap":{"darrenchooji":[{"date":"2025-01-23","commitResults":[{"hash":"1388a21b355c3e1fde68b7d05a1f5fc90ca671ba","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":11,"deletions":0}}},{"hash":"8e0fbef51658d3b7665ab972f8a092d89f3bd271","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":0,"deletions":10}}},{"hash":"cc027d8830a9e1f029005f51885ff6d4fbb7d577","isMergeCommit":false,"messageTitle":"Level-1","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":15,"deletions":7}}},{"hash":"720ff3abaacd2e79ac9e69e8913e592d49a730ed","isMergeCommit":false,"messageTitle":"Level-0 done","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":13}}},{"hash":"f780af18dee44f7ef95c967203a5fae7f891a5de","isMergeCommit":false,"messageTitle":"Level-1 done","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":1}}},{"hash":"f0523cff75c38f939d0b316c87280af014ee647a","isMergeCommit":false,"messageTitle":"Level-1 done","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":1}}},{"hash":"6352ccdcd515db0a739c6233bced9fcba0cf11d7","isMergeCommit":false,"messageTitle":"Level-2 done","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":14,"deletions":2}}}]},{"date":"2025-01-24","commitResults":[{"hash":"6e8a0e6ecdf49c50c8ed7e774cf7791cebc05e57","isMergeCommit":false,"messageTitle":"Level-3 Done","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":65,"deletions":14}}},{"hash":"76b3aca64e50add092fe243e94115bf6f54000b4","isMergeCommit":false,"messageTitle":"Level-3 Done","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":2,"deletions":4}}},{"hash":"6bee6d73ba247959701a9a8447e91210ebabf09c","isMergeCommit":false,"messageTitle":"Level-4 Done","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":103,"deletions":42}}},{"hash":"78e447a85ab65fce7242242bcd10b83ad077f473","isMergeCommit":false,"messageTitle":"A-TextUiTesting done","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":5,"deletions":0},"sh":{"insertions":1,"deletions":1}}},{"hash":"80ee56e16f04d5de054d1bbf52c373cfcf75a09b","isMergeCommit":false,"messageTitle":"A-TextUiTesting done","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":1}}}]},{"date":"2025-01-25","commitResults":[{"hash":"7c88b35208884610c5b712b2d615675e9900a4b0","isMergeCommit":false,"messageTitle":"Level-5 done","messageBody":"","tags":["Level-5"],"fileTypesAndContributionMap":{"java":{"insertions":79,"deletions":49}}}]}]},"authorFileTypeContributionMap":{"darrenchooji":{"java":171,"md":0,"fxml":0,"sh":1,"bat":0,"gradle":0,"txt":5}},"authorContributionVariance":{"darrenchooji":4276.875},"authorDisplayNameMap":{"darrenchooji":"CS2103T-T17-4 CHOO..RREN"}} diff --git a/reposense-logs/reposense.log.0 b/reposense-logs/reposense.log.0 index 964d1638..69955a40 100644 --- a/reposense-logs/reposense.log.0 +++ b/reposense-logs/reposense.log.0 @@ -1,42 +1,42 @@ -Jan 25, 2025 1:04:12 AM reposense.system.LogsManager addFileHandler +Jan 25, 2025 2:15:27 AM reposense.system.LogsManager addFileHandler INFO: Log temp folder has been successfully created -Jan 25, 2025 1:04:12 AM reposense.parser.CsvParser validateHeader +Jan 25, 2025 2:15:27 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 -Jan 25, 2025 1:04:13 AM reposense.parser.CsvParser validateHeader +Jan 25, 2025 2:15:28 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 -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ernestnzx found. The alias will belong to the last author - Ernestnzx -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kennethsoh found. The alias will belong to the last author - kennethsoh -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias deborah lu found. The alias will belong to the last author - deberinoo -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias engulfy found. The alias will belong to the last author - Engulfy -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kumar2215 found. The alias will belong to the last author - kumar2215 -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias fieash found. The alias will belong to the last author - Fieash -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias tanxingzhong found. The alias will belong to the last author - TanXingZhong -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ovotter found. The alias will belong to the last author - OvOtter -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ernestnzx found. The alias will belong to the last author - Ernestnzx -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kennethsoh found. The alias will belong to the last author - kennethsoh -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias deborah lu found. The alias will belong to the last author - deberinoo -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias engulfy found. The alias will belong to the last author - Engulfy -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kumar2215 found. The alias will belong to the last author - kumar2215 -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias fieash found. The alias will belong to the last author - Fieash -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias tanxingzhong found. The alias will belong to the last author - TanXingZhong -Jan 25, 2025 1:04:13 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Jan 25, 2025 2:15:28 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ovotter found. The alias will belong to the last author - OvOtter -Jan 25, 2025 1:04:13 AM reposense.git.GitConfig getGlobalGitLfsConfig +Jan 25, 2025 2:15:28 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 @@ -52,23 +52,23 @@ fatal: unable to read config file '/home/runner/.gitconfig': No such file or dir at reposense.system.CommandRunner.runCommand(CommandRunner.java:21) ... 3 more -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/samuelkwik/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TasmiaH0508/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/feconi1024/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/samuelkwik/ip.git... +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Neilchen863/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Neilchen863/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/samuelkwik/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/TasmiaH0508/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/samuelkwik/ip.git to complete... +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/feconi1024/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Neilchen863/ip.git to complete... +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "feconi1024/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/feconi1024/ip.git' 'repos/feconi1024_ip/ip_bare' on path . : Cloning into bare repository 'repos/feconi1024_ip/ip_bare'... @@ -84,307 +84,277 @@ 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) -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JuhromeAlexander/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:28 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JuhromeAlexander/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/samuelkwik/ip.git completed! -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/TasmiaH0508/ip.git completed! -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/samuelkwik/ip.git completed! +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Neilchen863/ip.git completed! -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/twhjames/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LonelyFort/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/twhjames/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zeotheburrito/ip.git... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LonelyFort/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zeotheburrito/ip.git to complete... -Jan 25, 2025 1:04:13 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zeotheburrito/ip.git... +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [1/428] Analyzing https://github.com/TasmiaH0508/ip.git (master)... +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [3/428] Analyzing https://github.com/Neilchen863/ip.git (master)... -Jan 25, 2025 1:04:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [1/428] Analyzing https://github.com/samuelkwik/ip.git (master)... -Jan 25, 2025 1:04:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [2/428] Analyzing https://github.com/TasmiaH0508/ip.git (master)... -Jan 25, 2025 1:04:13 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zeotheburrito/ip.git to complete... +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [2/428] Analyzing https://github.com/samuelkwik/ip.git (master)... +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Neilchen863/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Neilchen863/ip.git (master)... -Jan 25, 2025 1:04:13 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/samuelkwik/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/samuelkwik/ip.git (master)... -Jan 25, 2025 1:04:13 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TasmiaH0508/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/samuelkwik/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TasmiaH0508/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/samuelkwik/ip.git (master)... +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JuhromeAlexander/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SAN-MUYUN/ip.git... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [4/428] Analyzing https://github.com/JuhromeAlexander/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:29 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SAN-MUYUN/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JuhromeAlexander/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JuhromeAlexander/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zeotheburrito/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chanjunlin/ip.git... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/twhjames/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chanjunlin/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zedonggg/ip.git... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LonelyFort/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jonzyyyy/ip.git... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zedonggg/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jonzyyyy/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SAN-MUYUN/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Bryce-3D/ip.git... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Neilchen863/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Bryce-3D/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TasmiaH0508/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/JuhromeAlexander/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Neilchen863/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TasmiaH0508/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/samuelkwik/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TasmiaH0508/ip.git (master)... +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JuhromeAlexander/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JuhromeAlexander/ip.git (master) completed! -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/samuelkwik/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [5/428] Analyzing https://github.com/zeotheburrito/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Neilchen863/ip.git (master) completed! -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TasmiaH0508/ip.git (master) completed! -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [6/428] Analyzing https://github.com/twhjames/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [7/428] Analyzing https://github.com/LonelyFort/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/samuelkwik/ip.git (master) completed! -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [8/428] Analyzing https://github.com/SAN-MUYUN/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chanjunlin/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LonelyFort/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LonelyFort/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Leeisateam/ip.git... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zedonggg/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/twhjames/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/twhjames/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JuhromeAlexander/ip.git (master) completed! +Jan 25, 2025 2:15:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Neilchen863/ip.git (master) completed! +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zeotheburrito/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/twhjames/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chanjunlin/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [5/428] Analyzing https://github.com/zeotheburrito/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LonelyFort/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [6/428] Analyzing https://github.com/LonelyFort/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zedonggg/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [7/428] Analyzing https://github.com/twhjames/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jonzyyyy/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chanjunlin/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zedonggg/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jonzyyyy/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zeotheburrito/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Luoq1-Xu/ip.git... -Jan 25, 2025 1:04:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zeotheburrito/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/twhjames/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/twhjames/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LonelyFort/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LonelyFort/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SAN-MUYUN/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Bryce-3D/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [8/428] Analyzing https://github.com/SAN-MUYUN/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Bryce-3D/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zeotheburrito/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SAN-MUYUN/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SAN-MUYUN/ip.git (master)... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jonzyyyy/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Leeisateam/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kubrian/ip.git... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Luoq1-Xu/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kubrian/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Bryce-3D/ip.git completed! -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kea-S/ip.git... -Jan 25, 2025 1:04:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kea-S/ip.git to complete... -Jan 25, 2025 1:04:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zeotheburrito/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zeotheburrito/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zeotheburrito/ip.git (master) completed! -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [9/428] Analyzing https://github.com/chanjunlin/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chanjunlin/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chanjunlin/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SAN-MUYUN/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Luoq1-Xu/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Leeisateam/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Shamanbenny/ip.git... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kubrian/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/CVincent0907/ip.git... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Fieash/ip.git... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Shamanbenny/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SAN-MUYUN/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kea-S/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SAN-MUYUN/ip.git (master) completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Fieash/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [10/428] Analyzing https://github.com/zedonggg/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/CVincent0907/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lyhthaddeus/ip.git... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lyhthaddeus/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zedonggg/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zedonggg/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LonelyFort/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LonelyFort/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chanjunlin/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LonelyFort/ip.git (master) completed! -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/twhjames/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/twhjames/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/twhjames/ip.git (master) completed! +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zedonggg/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Leeisateam/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [9/428] Analyzing https://github.com/zedonggg/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Leeisateam/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chanjunlin/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [10/428] Analyzing https://github.com/chanjunlin/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Luoq1-Xu/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jonzyyyy/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zedonggg/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zedonggg/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Luoq1-Xu/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kubrian/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [11/428] Analyzing https://github.com/jonzyyyy/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chanjunlin/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chanjunlin/ip.git (master) completed! -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [12/428] Analyzing https://github.com/Bryce-3D/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kubrian/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chanjunlin/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chanjunlin/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jonzyyyy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jonzyyyy/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Shamanbenny/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CVincent0907/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Reshiro/ip.git... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/josejhkim/ip.git... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/josejhkim/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Reshiro/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Bryce-3D/ip.git completed! +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [12/428] Analyzing https://github.com/Bryce-3D/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kea-S/ip.git... +Jan 25, 2025 2:15:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kea-S/ip.git to complete... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Bryce-3D/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Bryce-3D/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Fieash/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/twhjames/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kaungzinye/ip.git... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/twhjames/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lyhthaddeus/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kaungzinye/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/twhjames/ip.git (master) completed! -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jingchun19/ip.git... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [13/428] Analyzing https://github.com/Luoq1-Xu/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jingchun19/ip.git to complete... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zedonggg/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Luoq1-Xu/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Luoq1-Xu/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chanjunlin/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zedonggg/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zedonggg/ip.git (master) completed! -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [14/428] Analyzing https://github.com/Leeisateam/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Leeisateam/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Leeisateam/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chanjunlin/ip.git (master)... +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chanjunlin/ip.git (master) completed! +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jonzyyyy/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jonzyyyy/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jonzyyyy/ip.git (master) completed! -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [15/428] Analyzing https://github.com/kubrian/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Bryce-3D/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Bryce-3D/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Bryce-3D/ip.git (master) completed! +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Leeisateam/ip.git completed! +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [13/428] Analyzing https://github.com/Leeisateam/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Shamanbenny/ip.git... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Shamanbenny/ip.git to complete... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Leeisateam/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Leeisateam/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Luoq1-Xu/ip.git completed! +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/CVincent0907/ip.git... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [14/428] Analyzing https://github.com/Luoq1-Xu/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Leeisateam/ip.git (master)... -Jan 25, 2025 1:04:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/josejhkim/ip.git completed! -Jan 25, 2025 1:04:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kubrian/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kubrian/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Reshiro/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kaungzinye/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/githubcsuser/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/minhkiwi14/ip.git... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/CVincent0907/ip.git to complete... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Luoq1-Xu/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Luoq1-Xu/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Leeisateam/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kubrian/ip.git completed! +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Leeisateam/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChauuuLe/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [15/428] Analyzing https://github.com/kubrian/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Fieash/ip.git... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Fieash/ip.git to complete... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kea-S/ip.git completed! +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lyhthaddeus/ip.git... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [16/428] Analyzing https://github.com/kea-S/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lyhthaddeus/ip.git to complete... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kubrian/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kubrian/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepos SEVERE: Branch master does not exist in https://github.com/kea-S/ip.git! Analysis terminated. reposense.git.exception.GitBranchException: reposense.system.CommandRunnerProcessException: Error returned from command git rev-parse --verify master on path repos/kea-S_ip/ip_bare : fatal: Needed a single revision @@ -398,381 +368,451 @@ fatal: Needed a single revision at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChauuuLe/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [17/428] Analyzing https://github.com/CVincent0907/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/minhkiwi14/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Bryce-3D/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/githubcsuser/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jingchun19/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CVincent0907/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CVincent0907/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Bryce-3D/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gandwarf/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Bryce-3D/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [18/428] Analyzing https://github.com/Shamanbenny/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gandwarf/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Shamanbenny/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Shamanbenny/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Luoq1-Xu/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Luoq1-Xu/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Luoq1-Xu/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kubrian/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kubrian/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kubrian/ip.git (master) completed! +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Shamanbenny/ip.git completed! +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [17/428] Analyzing https://github.com/Shamanbenny/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Reshiro/ip.git... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Reshiro/ip.git to complete... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CVincent0907/ip.git completed! +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/josejhkim/ip.git... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [18/428] Analyzing https://github.com/CVincent0907/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Shamanbenny/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Shamanbenny/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/josejhkim/ip.git to complete... +Jan 25, 2025 2:15:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CVincent0907/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CVincent0907/ip.git (master)... +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Fieash/ip.git completed! +Jan 25, 2025 2:15:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lyhthaddeus/ip.git completed! +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepos INFO: [19/428] Analyzing https://github.com/Fieash/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kaungzinye/ip.git... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jingchun19/ip.git... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [20/428] Analyzing https://github.com/lyhthaddeus/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jingchun19/ip.git to complete... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kaungzinye/ip.git to complete... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lyhthaddeus/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lyhthaddeus/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Fieash/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Fieash/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/CVincent0907/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/githubcsuser/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/minhkiwi14/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lyhthaddeus/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CVincent0907/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChauuuLe/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lyhthaddeus/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CVincent0907/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [20/428] Analyzing https://github.com/lyhthaddeus/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dnardnar/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/avinazz3/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dnardnar/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tadacheng/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gandwarf/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/avinazz3/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lyhthaddeus/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lyhthaddeus/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/izniy/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tadacheng/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/izniy/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lyhthaddeus/ip.git (master) completed! +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Shamanbenny/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Fieash/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lyhthaddeus/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Shamanbenny/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lyhthaddeus/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lyhthaddeus/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Shamanbenny/ip.git (master) completed! +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Fieash/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Fieash/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [21/428] Analyzing https://github.com/josejhkim/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Fieash/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Shamanbenny/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [22/428] Analyzing https://github.com/kaungzinye/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [23/428] Analyzing https://github.com/Reshiro/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/josejhkim/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/josejhkim/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kaungzinye/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kaungzinye/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kubrian/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Reshiro/ip.git completed! +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [21/428] Analyzing https://github.com/Reshiro/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/githubcsuser/ip.git... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/githubcsuser/ip.git to complete... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Reshiro/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Reshiro/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kubrian/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kubrian/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [24/428] Analyzing https://github.com/jingchun19/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/josejhkim/ip.git completed! +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [22/428] Analyzing https://github.com/josejhkim/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/minhkiwi14/ip.git... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/minhkiwi14/ip.git to complete... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/josejhkim/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/josejhkim/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Reshiro/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jingchun19/ip.git completed! +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Reshiro/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [23/428] Analyzing https://github.com/jingchun19/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChauuuLe/ip.git... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kaungzinye/ip.git completed! +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Reshiro/ip.git (master) completed! +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChauuuLe/ip.git to complete... +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gandwarf/ip.git... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [24/428] Analyzing https://github.com/kaungzinye/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jingchun19/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jingchun19/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gandwarf/ip.git to complete... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kaungzinye/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kaungzinye/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jingchun19/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jingchun19/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jingchun19/ip.git (master) completed! +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kaungzinye/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dnardnar/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/avinazz3/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/coffeemocha/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tadacheng/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/reuben-thomas/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Casielim/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/coffeemocha/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/izniy/ip.git completed! -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Reshiro/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MakiseKurisuX/ip.git... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Casielim/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/josejhkim/ip.git (master)... +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kaungzinye/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/reuben-thomas/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kaungzinye/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MakiseKurisuX/ip.git to complete... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [25/428] Analyzing https://github.com/minhkiwi14/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jingchun19/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Reshiro/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Reshiro/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [26/428] Analyzing https://github.com/githubcsuser/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jingchun19/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jingchun19/ip.git (master) completed! -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/minhkiwi14/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/minhkiwi14/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [27/428] Analyzing https://github.com/ChauuuLe/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/josejhkim/ip.git (master)... -Jan 25, 2025 1:04:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/githubcsuser/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/githubcsuser/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/josejhkim/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/josejhkim/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChauuuLe/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChauuuLe/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [28/428] Analyzing https://github.com/gandwarf/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/githubcsuser/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [25/428] Analyzing https://github.com/githubcsuser/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dnardnar/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dnardnar/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/githubcsuser/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/githubcsuser/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/minhkiwi14/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/avinazz3/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [26/428] Analyzing https://github.com/minhkiwi14/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/avinazz3/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/minhkiwi14/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/minhkiwi14/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/githubcsuser/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gandwarf/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChauuuLe/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tadacheng/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [27/428] Analyzing https://github.com/gandwarf/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tadacheng/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/githubcsuser/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/githubcsuser/ip.git (master) completed! +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [28/428] Analyzing https://github.com/ChauuuLe/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/izniy/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/izniy/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gandwarf/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gandwarf/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChauuuLe/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChauuuLe/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChauuuLe/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [29/428] Analyzing https://github.com/avinazz3/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/avinazz3/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/avinazz3/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChauuuLe/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChauuuLe/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/minhkiwi14/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/minhkiwi14/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChauuuLe/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/minhkiwi14/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [30/428] Analyzing https://github.com/dnardnar/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/coffeemocha/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/githubcsuser/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bkkuan/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChauuuLe/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChauuuLe/ip.git (master) completed! +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gandwarf/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gandwarf/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gandwarf/ip.git (master) completed! +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dnardnar/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [29/428] Analyzing https://github.com/dnardnar/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/coffeemocha/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/coffeemocha/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dnardnar/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dnardnar/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gandwarf/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Casielim/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/reuben-thomas/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bkkuan/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/avinazz3/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [30/428] Analyzing https://github.com/avinazz3/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/reuben-thomas/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/reuben-thomas/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/avinazz3/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/avinazz3/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dnardnar/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/avinazz3/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Hackari/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Hackari/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/githubcsuser/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gandwarf/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/caroline1233456/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/githubcsuser/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/avinazz3/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gandwarf/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [31/428] Analyzing https://github.com/tadacheng/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/avinazz3/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/MakiseKurisuX/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NHT020305/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [32/428] Analyzing https://github.com/izniy/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [33/428] Analyzing https://github.com/coffeemocha/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NHT020305/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/caroline1233456/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dnardnar/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dnardnar/ip.git (master) completed! +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/izniy/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [31/428] Analyzing https://github.com/izniy/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Casielim/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Casielim/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tadacheng/ip.git completed! +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [32/428] Analyzing https://github.com/tadacheng/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MakiseKurisuX/ip.git... +Jan 25, 2025 2:15:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MakiseKurisuX/ip.git to complete... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/izniy/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/izniy/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tadacheng/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tadacheng/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tadacheng/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tadacheng/ip.git (master)... +Jan 25, 2025 2:15:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tadacheng/ip.git (master) completed! +Jan 25, 2025 2:15:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/izniy/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/izniy/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/izniy/ip.git (master) completed! +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/coffeemocha/ip.git completed! +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [33/428] Analyzing https://github.com/coffeemocha/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bkkuan/ip.git... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bkkuan/ip.git to complete... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/coffeemocha/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/coffeemocha/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/izniy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/izniy/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/reuben-thomas/ip.git completed! +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/coffeemocha/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dnardnar/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Hackari/ip.git... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [34/428] Analyzing https://github.com/reuben-thomas/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Hackari/ip.git to complete... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/coffeemocha/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/coffeemocha/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [34/428] Analyzing https://github.com/Casielim/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dnardnar/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dnardnar/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [35/428] Analyzing https://github.com/reuben-thomas/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Casielim/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Casielim/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tadacheng/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/reuben-thomas/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/reuben-thomas/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NHT020305/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Casielim/ip.git completed! +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [35/428] Analyzing https://github.com/Casielim/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/caroline1233456/ip.git... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/caroline1233456/ip.git to complete... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/MakiseKurisuX/ip.git completed! +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [36/428] Analyzing https://github.com/MakiseKurisuX/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Casielim/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Casielim/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NHT020305/ip.git... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NHT020305/ip.git to complete... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/reuben-thomas/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MakiseKurisuX/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MakiseKurisuX/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/reuben-thomas/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/reuben-thomas/ip.git (master) completed! +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MakiseKurisuX/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MakiseKurisuX/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MakiseKurisuX/ip.git (master) completed! +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Casielim/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Casielim/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Casielim/ip.git (master) completed! +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/bkkuan/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tadacheng/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [37/428] Analyzing https://github.com/bkkuan/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Inquisitivrx/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tadacheng/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Hackari/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [36/428] Analyzing https://github.com/MakiseKurisuX/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Inquisitivrx/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bkkuan/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bkkuan/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Hackari/ip.git completed! +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [38/428] Analyzing https://github.com/Hackari/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/quantin96/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/caroline1233456/ip.git completed! -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/quantin96/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MakiseKurisuX/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MakiseKurisuX/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Hackari/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Hackari/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bkkuan/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bkkuan/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bkkuan/ip.git (master) completed! +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Hackari/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/caroline1233456/ip.git completed! +Jan 25, 2025 2:15:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Hackari/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [39/428] Analyzing https://github.com/caroline1233456/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nguyenvukhang/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wailydest/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Hackari/ip.git (master) completed! +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NHT020305/ip.git completed! +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nguyenvukhang/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/izniy/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [40/428] Analyzing https://github.com/NHT020305/ip.git (master)... +Jan 25, 2025 2:15:34 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wailydest/ip.git... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wailydest/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MakiseKurisuX/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/izniy/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/izniy/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [37/428] Analyzing https://github.com/NHT020305/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MakiseKurisuX/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MakiseKurisuX/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [38/428] Analyzing https://github.com/bkkuan/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/caroline1233456/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/caroline1233456/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NHT020305/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NHT020305/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bkkuan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bkkuan/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Casielim/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Casielim/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Casielim/ip.git (master) completed! -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [39/428] Analyzing https://github.com/Hackari/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/caroline1233456/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/caroline1233456/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NHT020305/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/caroline1233456/ip.git (master) completed! +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NHT020305/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NHT020305/ip.git (master) completed! +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "wailydest/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/wailydest/ip.git' 'repos/wailydest_ip/ip_bare' on path . : Cloning into bare repository 'repos/wailydest_ip/ip_bare'... @@ -788,533 +828,473 @@ 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) -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Prog-Neuro-Com/ip.git... -Jan 25, 2025 1:04:17 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Prog-Neuro-Com/ip.git to complete... -Jan 25, 2025 1:04:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Hackari/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Hackari/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/reuben-thomas/ip.git (master)... -Jan 25, 2025 1:04:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/reuben-thomas/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/reuben-thomas/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [40/428] Analyzing https://github.com/caroline1233456/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/caroline1233456/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/caroline1233456/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Inquisitivrx/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/quantin96/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bkkuan/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nguyenvukhang/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [41/428] Analyzing https://github.com/Inquisitivrx/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/RickyHFR/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xa0412/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/RickyHFR/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AerollingOverDeepBlueSeas/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Inquisitivrx/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Inquisitivrx/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/quantin96/ip.git completed! +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [42/428] Analyzing https://github.com/quantin96/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xa0412/ip.git... +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Inquisitivrx/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xa0412/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Inquisitivrx/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Inquisitivrx/ip.git (master) completed! +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/quantin96/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/quantin96/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/quantin96/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/quantin96/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/quantin96/ip.git (master) completed! +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nguyenvukhang/ip.git completed! +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [43/428] Analyzing https://github.com/nguyenvukhang/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AerollingOverDeepBlueSeas/ip.git... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AerollingOverDeepBlueSeas/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bkkuan/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bkkuan/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [41/428] Analyzing https://github.com/nguyenvukhang/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NHT020305/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Hackari/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nguyenvukhang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nguyenvukhang/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NHT020305/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NHT020305/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [42/428] Analyzing https://github.com/quantin96/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Hackari/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Hackari/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [43/428] Analyzing https://github.com/Inquisitivrx/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/quantin96/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/quantin96/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Inquisitivrx/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Inquisitivrx/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/caroline1233456/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nguyenvukhang/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nguyenvukhang/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nguyenvukhang/ip.git (master) completed! +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Prog-Neuro-Com/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [44/428] Analyzing https://github.com/Prog-Neuro-Com/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NightlyAffair/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NightlyAffair/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/caroline1233456/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/caroline1233456/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [44/428] Analyzing https://github.com/Prog-Neuro-Com/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nguyenvukhang/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Prog-Neuro-Com/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Prog-Neuro-Com/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nguyenvukhang/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nguyenvukhang/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/quantin96/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Inquisitivrx/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/quantin96/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/quantin96/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Inquisitivrx/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Prog-Neuro-Com/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Prog-Neuro-Com/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Prog-Neuro-Com/ip.git (master) completed! +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/RickyHFR/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Inquisitivrx/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xa0412/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [45/428] Analyzing https://github.com/RickyHFR/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xuxuezhou/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xuxuezhou/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RickyHFR/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RickyHFR/ip.git (master)... +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xa0412/ip.git completed! +Jan 25, 2025 2:15:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [46/428] Analyzing https://github.com/xa0412/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/deannapoh/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AerollingOverDeepBlueSeas/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:35 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/deannapoh/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RickyHFR/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RickyHFR/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/souledfigurine/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [47/428] Analyzing https://github.com/AerollingOverDeepBlueSeas/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xa0412/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xa0412/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RickyHFR/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RickyHFR/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RickyHFR/ip.git (master) completed! +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xa0412/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xa0412/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xa0412/ip.git (master) completed! +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AerollingOverDeepBlueSeas/ip.git completed! +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [47/428] Analyzing https://github.com/AerollingOverDeepBlueSeas/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/souledfigurine/ip.git... +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/souledfigurine/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/AerollingOverDeepBlueSeas/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/AerollingOverDeepBlueSeas/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Prog-Neuro-Com/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Prog-Neuro-Com/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Prog-Neuro-Com/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AerollingOverDeepBlueSeas/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AerollingOverDeepBlueSeas/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AerollingOverDeepBlueSeas/ip.git (master) completed! +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/NightlyAffair/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [48/428] Analyzing https://github.com/NightlyAffair/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/raw-asparagus/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/raw-asparagus/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xa0412/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NightlyAffair/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NightlyAffair/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xa0412/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xa0412/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AerollingOverDeepBlueSeas/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/xuxuezhou/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/deannapoh/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [49/428] Analyzing https://github.com/xuxuezhou/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/lilyium/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vrisdng/ip.git... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AerollingOverDeepBlueSeas/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RickyHFR/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AerollingOverDeepBlueSeas/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/souledfigurine/ip.git completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [50/428] Analyzing https://github.com/deannapoh/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/lilyium/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dingZvel/ip.git... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vrisdng/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xuxuezhou/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xuxuezhou/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dingZvel/ip.git to complete... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RickyHFR/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RickyHFR/ip.git (master) completed! -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [51/428] Analyzing https://github.com/souledfigurine/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NightlyAffair/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NightlyAffair/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NightlyAffair/ip.git (master) completed! +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xuxuezhou/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xuxuezhou/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xuxuezhou/ip.git (master) completed! +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/deannapoh/ip.git completed! +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [50/428] Analyzing https://github.com/deannapoh/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vrisdng/ip.git... +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vrisdng/ip.git to complete... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/deannapoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/deannapoh/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/deannapoh/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/deannapoh/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/deannapoh/ip.git (master) completed! +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/souledfigurine/ip.git completed! +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [51/428] Analyzing https://github.com/souledfigurine/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dingZvel/ip.git... +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dingZvel/ip.git to complete... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/souledfigurine/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/souledfigurine/ip.git (master)... -Jan 25, 2025 1:04:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xuxuezhou/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xuxuezhou/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xuxuezhou/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NightlyAffair/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NightlyAffair/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/souledfigurine/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/souledfigurine/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/souledfigurine/ip.git (master) completed! +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/raw-asparagus/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NightlyAffair/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [52/428] Analyzing https://github.com/raw-asparagus/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/blobfish465/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/blobfish465/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/raw-asparagus/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/raw-asparagus/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/souledfigurine/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/souledfigurine/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/souledfigurine/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/deannapoh/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/deannapoh/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/deannapoh/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lilyium/ip.git completed! +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zenn345/ip.git... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [53/428] Analyzing https://github.com/lilyium/ip.git (master)... +Jan 25, 2025 2:15:36 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zenn345/ip.git to complete... +Jan 25, 2025 2:15:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lilyium/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lilyium/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/raw-asparagus/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/raw-asparagus/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/raw-asparagus/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lilyium/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lilyium/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/vrisdng/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [53/428] Analyzing https://github.com/lilyium/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zenn345/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lilyium/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [54/428] Analyzing https://github.com/vrisdng/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/johngao122/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zenn345/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dingZvel/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lilyium/ip.git (master) completed! +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/johngao122/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/panomia01/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [55/428] Analyzing https://github.com/dingZvel/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/panomia01/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lilyium/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lilyium/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vrisdng/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vrisdng/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/vrisdng/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vrisdng/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vrisdng/ip.git (master) completed! +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dingZvel/ip.git completed! +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [55/428] Analyzing https://github.com/dingZvel/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/panomia01/ip.git... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/panomia01/ip.git to complete... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dingZvel/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dingZvel/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dingZvel/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dingZvel/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dingZvel/ip.git (master) completed! +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/blobfish465/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KimHan01/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [56/428] Analyzing https://github.com/blobfish465/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KimHan01/ip.git... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/KimHan01/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/blobfish465/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/blobfish465/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lilyium/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lilyium/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dingZvel/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lilyium/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/vrisdng/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dingZvel/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dingZvel/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vrisdng/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vrisdng/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/panomia01/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [57/428] Analyzing https://github.com/panomia01/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zenn345/ip.git completed! +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [57/428] Analyzing https://github.com/zenn345/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/limshaoqi/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/limshaoqi/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zenn345/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/johngao122/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YosieSYX/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [58/428] Analyzing https://github.com/zenn345/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/panomia01/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/panomia01/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [59/428] Analyzing https://github.com/johngao122/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/caando/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YosieSYX/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zenn345/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zenn345/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/caando/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/johngao122/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/johngao122/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KimHan01/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicholasdaijh/ip.git... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zenn345/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicholasdaijh/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zenn345/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zenn345/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [60/428] Analyzing https://github.com/KimHan01/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/johngao122/ip.git completed! +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [58/428] Analyzing https://github.com/johngao122/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YosieSYX/ip.git... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YosieSYX/ip.git to complete... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/johngao122/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/johngao122/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/blobfish465/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KimHan01/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KimHan01/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/panomia01/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/johngao122/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/blobfish465/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/johngao122/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/blobfish465/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/panomia01/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/johngao122/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/panomia01/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/johngao122/ip.git (master) completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/panomia01/ip.git completed! +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [59/428] Analyzing https://github.com/panomia01/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/caando/ip.git... +Jan 25, 2025 2:15:37 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/caando/ip.git to complete... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/panomia01/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/panomia01/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/panomia01/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/panomia01/ip.git (master)... +Jan 25, 2025 2:15:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/panomia01/ip.git (master) completed! +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KimHan01/ip.git completed! +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [60/428] Analyzing https://github.com/KimHan01/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicholasdaijh/ip.git... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicholasdaijh/ip.git to complete... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KimHan01/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KimHan01/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/limshaoqi/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/reaneechua/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [61/428] Analyzing https://github.com/limshaoqi/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/reaneechua/ip.git... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/reaneechua/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YosieSYX/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/javentankangle/ip.git... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [62/428] Analyzing https://github.com/YosieSYX/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/caando/ip.git completed! -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/javentankangle/ip.git to complete... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/limshaoqi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/limshaoqi/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [63/428] Analyzing https://github.com/caando/ip.git (master)... -Jan 25, 2025 1:04:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yjunyeu/ip.git... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/KimHan01/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KimHan01/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KimHan01/ip.git (master) completed! +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/limshaoqi/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/limshaoqi/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/limshaoqi/ip.git (master) completed! +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YosieSYX/ip.git completed! +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [62/428] Analyzing https://github.com/YosieSYX/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/javentankangle/ip.git... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/javentankangle/ip.git to complete... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/YosieSYX/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/YosieSYX/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/YosieSYX/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/YosieSYX/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/YosieSYX/ip.git (master) completed! +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/caando/ip.git completed! +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [63/428] Analyzing https://github.com/caando/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yjunyeu/ip.git... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yjunyeu/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/caando/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/caando/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KimHan01/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KimHan01/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/caando/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/caando/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/caando/ip.git (master) completed! +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nicholasdaijh/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [64/428] Analyzing https://github.com/nicholasdaijh/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hyizhak/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hyizhak/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/reaneechua/ip.git completed! +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nicholasdaijh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nicholasdaijh/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/YosieSYX/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/limshaoqi/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/YosieSYX/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/limshaoqi/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/YosieSYX/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/limshaoqi/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/caando/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/caando/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/caando/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicholasdaijh/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nicholasdaijh/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nicholasdaijh/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yjunyeu/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/reaneechua/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [65/428] Analyzing https://github.com/reaneechua/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [66/428] Analyzing https://github.com/yjunyeu/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wj200/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kaidama97/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/javentankangle/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wj200/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kaidama97/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lesterlimjj/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [67/428] Analyzing https://github.com/javentankangle/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lesterlimjj/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/reaneechua/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/reaneechua/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yjunyeu/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yjunyeu/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/javentankangle/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/javentankangle/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hyizhak/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/reaneechua/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dexterleng/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [68/428] Analyzing https://github.com/hyizhak/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dexterleng/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/reaneechua/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/reaneechua/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/javentankangle/ip.git completed! +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [66/428] Analyzing https://github.com/javentankangle/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kaidama97/ip.git... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kaidama97/ip.git to complete... +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicholasdaijh/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/javentankangle/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/javentankangle/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nicholasdaijh/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nicholasdaijh/ip.git (master) completed! +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "wj200/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/wj200/ip.git' 'repos/wj200_ip/ip_bare' on path . : Cloning into bare repository 'repos/wj200_ip/ip_bare'... @@ -1330,287 +1310,317 @@ 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) -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lesterlimjj/ip.git... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lesterlimjj/ip.git to complete... +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/javentankangle/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/javentankangle/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/javentankangle/ip.git (master) completed! +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yjunyeu/ip.git completed! +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [67/428] Analyzing https://github.com/yjunyeu/ip.git (master)... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dexterleng/ip.git... +Jan 25, 2025 2:15:38 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dexterleng/ip.git to complete... +Jan 25, 2025 2:15:38 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yjunyeu/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yjunyeu/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yjunyeu/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yjunyeu/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yjunyeu/ip.git (master) completed! +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hyizhak/ip.git completed! +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [68/428] Analyzing https://github.com/hyizhak/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/isaacchua0309/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/isaacchua0309/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hyizhak/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hyizhak/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yjunyeu/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/javentankangle/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hyizhak/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yjunyeu/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yjunyeu/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/hyizhak/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/hyizhak/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/javentankangle/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/javentankangle/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Kaidama97/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [69/428] Analyzing https://github.com/Kaidama97/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SanShaoQian/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SanShaoQian/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Kaidama97/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Kaidama97/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/lesterlimjj/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [70/428] Analyzing https://github.com/lesterlimjj/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuyang011/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Kaidama97/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Kaidama97/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuyang011/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lesterlimjj/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lesterlimjj/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/isaacchua0309/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kaidama97/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kaidama97/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kaidama97/ip.git (master) completed! +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dexterleng/ip.git completed! -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [71/428] Analyzing https://github.com/isaacchua0309/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [71/428] Analyzing https://github.com/dexterleng/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/bipplane/ip.git... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [72/428] Analyzing https://github.com/dexterleng/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ditzchann/ip.git... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lesterlimjj/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ditzchann/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/bipplane/ip.git to complete... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kaidama97/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/isaacchua0309/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/isaacchua0309/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dexterleng/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dexterleng/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kaidama97/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lesterlimjj/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lesterlimjj/ip.git (master)... -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kaidama97/ip.git (master) completed! -Jan 25, 2025 1:04:20 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lesterlimjj/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dexterleng/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dexterleng/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SanShaoQian/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dexterleng/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/isaacchua0309/ip.git completed! +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [72/428] Analyzing https://github.com/isaacchua0309/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ditzchann/ip.git... +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ditzchann/ip.git to complete... +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/isaacchua0309/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/isaacchua0309/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SanShaoQian/ip.git completed! +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [73/428] Analyzing https://github.com/SanShaoQian/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Ernestnzx/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ernestnzx/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/isaacchua0309/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yuyang011/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/isaacchua0309/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SanShaoQian/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SanShaoQian/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/popova-mariia/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/isaacchua0309/ip.git (master) completed! +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yuyang011/ip.git completed! +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [74/428] Analyzing https://github.com/yuyang011/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/isaacchua0309/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/popova-mariia/ip.git... +Jan 25, 2025 2:15:39 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/popova-mariia/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/isaacchua0309/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SanShaoQian/ip.git (master)... +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yuyang011/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yuyang011/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SanShaoQian/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SanShaoQian/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SanShaoQian/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ditzchann/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bipplane/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Partillay/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JohannsenLum/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [75/428] Analyzing https://github.com/Ditzchann/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [76/428] Analyzing https://github.com/bipplane/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yuyang011/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JohannsenLum/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Partillay/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yuyang011/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yuyang011/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bipplane/ip.git completed! +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [75/428] Analyzing https://github.com/bipplane/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Partillay/ip.git... +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Partillay/ip.git to complete... +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bipplane/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bipplane/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bipplane/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bipplane/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bipplane/ip.git (master) completed! +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ditzchann/ip.git completed! +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [76/428] Analyzing https://github.com/Ditzchann/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JohannsenLum/ip.git... +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JohannsenLum/ip.git to complete... +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ditzchann/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ditzchann/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ditzchann/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ditzchann/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ditzchann/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bipplane/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bipplane/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bipplane/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Ernestnzx/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [77/428] Analyzing https://github.com/Ernestnzx/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xk1234/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xk1234/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ernestnzx/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ernestnzx/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/popova-mariia/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [78/428] Analyzing https://github.com/popova-mariia/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Wrongian/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Wrongian/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ernestnzx/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/popova-mariia/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/popova-mariia/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ernestnzx/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/popova-mariia/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ernestnzx/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ernestnzx/ip.git (master) completed! +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Partillay/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [79/428] Analyzing https://github.com/Partillay/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/varuuuun/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/varuuuun/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ernestnzx/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JohannsenLum/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ernestnzx/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Partillay/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Partillay/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/popova-mariia/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/popova-mariia/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/popova-mariia/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Siyan-G/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Partillay/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Partillay/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Partillay/ip.git (master) completed! +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JohannsenLum/ip.git completed! +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [80/428] Analyzing https://github.com/JohannsenLum/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Partillay/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Partillay/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Siyan-G/ip.git... +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Siyan-G/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JohannsenLum/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JohannsenLum/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Partillay/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Partillay/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Partillay/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/xk1234/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [81/428] Analyzing https://github.com/xk1234/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/leewaikin19/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:40 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/leewaikin19/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JohannsenLum/ip.git (master)... +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xk1234/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xk1234/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JohannsenLum/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JohannsenLum/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JohannsenLum/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xk1234/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xk1234/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xk1234/ip.git (master) completed! +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Wrongian/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [82/428] Analyzing https://github.com/Wrongian/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wilsonsfh/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wilsonsfh/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xk1234/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Wrongian/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Wrongian/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xk1234/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xk1234/ip.git (master) completed! -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/varuuuun/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [83/428] Analyzing https://github.com/varuuuun/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/waylonggggg/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/waylonggggg/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/varuuuun/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/varuuuun/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Wrongian/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Wrongian/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Wrongian/ip.git (master) completed! +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "wilsonsfh/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/wilsonsfh/ip.git' 'repos/wilsonsfh_ip/ip_bare' on path . : Cloning into bare repository 'repos/wilsonsfh_ip/ip_bare'... @@ -1626,105 +1636,101 @@ 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) -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/swatirajesh277/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/swatirajesh277/ip.git to complete... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/varuuuun/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/varuuuun/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/varuuuun/ip.git (master) completed! +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Siyan-G/ip.git completed! -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/varuuuun/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/varuuuun/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [84/428] Analyzing https://github.com/Siyan-G/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/samuelneo/ip.git... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/swatirajesh277/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [84/428] Analyzing https://github.com/Siyan-G/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/samuelneo/ip.git to complete... -Jan 25, 2025 1:04:21 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Siyan-G/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Siyan-G/ip.git (master)... -Jan 25, 2025 1:04:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Wrongian/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Wrongian/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Wrongian/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Siyan-G/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Siyan-G/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Siyan-G/ip.git (master) completed! +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/leewaikin19/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [85/428] Analyzing https://github.com/leewaikin19/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/FabianHeng/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/FabianHeng/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/leewaikin19/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/leewaikin19/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/varuuuun/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/varuuuun/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/varuuuun/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Siyan-G/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Siyan-G/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Siyan-G/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/leewaikin19/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/leewaikin19/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/leewaikin19/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/waylonggggg/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/swatirajesh277/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [86/428] Analyzing https://github.com/waylonggggg/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/adoubleb/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/malihahaque/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [87/428] Analyzing https://github.com/swatirajesh277/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/malihahaque/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/adoubleb/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/waylonggggg/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/waylonggggg/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/swatirajesh277/ip.git completed! +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [87/428] Analyzing https://github.com/swatirajesh277/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/malihahaque/ip.git... +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/malihahaque/ip.git to complete... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/waylonggggg/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/swatirajesh277/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/swatirajesh277/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/waylonggggg/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/waylonggggg/ip.git (master) completed! +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/swatirajesh277/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/swatirajesh277/ip.git (master)... +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/swatirajesh277/ip.git (master) completed! +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/samuelneo/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [88/428] Analyzing https://github.com/samuelneo/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ioubread/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/swatirajesh277/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/swatirajesh277/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:41 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ioubread/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/samuelneo/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/samuelneo/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/FabianHeng/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/thegrimbee/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [89/428] Analyzing https://github.com/FabianHeng/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "malihahaque/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/malihahaque/ip.git' 'repos/malihahaque_ip/ip_bare' on path . : Cloning into bare repository 'repos/malihahaque_ip/ip_bare'... @@ -1740,13 +1746,29 @@ 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) -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/J4Joshua/ip.git... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/waylonggggg/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/thegrimbee/ip.git... +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/thegrimbee/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/FabianHeng/ip.git completed! +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [89/428] Analyzing https://github.com/FabianHeng/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/J4Joshua/ip.git... +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/J4Joshua/ip.git to complete... +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/FabianHeng/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/FabianHeng/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/samuelneo/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/samuelneo/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/samuelneo/ip.git (master) completed! +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "ioubread/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/ioubread/ip.git' 'repos/ioubread_ip/ip_bare' on path . : Cloning into bare repository 'repos/ioubread_ip/ip_bare'... @@ -1762,201 +1784,179 @@ 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) -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nictjh/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/J4Joshua/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nictjh/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/waylonggggg/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/waylonggggg/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/FabianHeng/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/FabianHeng/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/swatirajesh277/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/swatirajesh277/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/swatirajesh277/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/samuelneo/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/samuelneo/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/samuelneo/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/FabianHeng/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/FabianHeng/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/FabianHeng/ip.git (master) completed! +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/adoubleb/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [90/428] Analyzing https://github.com/adoubleb/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gn07/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/gn07/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/FabianHeng/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/FabianHeng/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/adoubleb/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/adoubleb/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/adoubleb/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/adoubleb/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/adoubleb/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/J4Joshua/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/thegrimbee/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [91/428] Analyzing https://github.com/J4Joshua/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [91/428] Analyzing https://github.com/thegrimbee/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Bill-1/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [92/428] Analyzing https://github.com/thegrimbee/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/datletu/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Bill-1/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/datletu/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nictjh/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/thegrimbee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/thegrimbee/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/thegrimbee/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/thegrimbee/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/thegrimbee/ip.git (master) completed! +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/J4Joshua/ip.git completed! +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [92/428] Analyzing https://github.com/J4Joshua/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/datletu/ip.git... +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/datletu/ip.git to complete... +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/J4Joshua/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/J4Joshua/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Nano-233/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nictjh/ip.git completed! +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [93/428] Analyzing https://github.com/nictjh/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Nano-233/ip.git... +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Nano-233/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nictjh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nictjh/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/thegrimbee/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/thegrimbee/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/thegrimbee/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nictjh/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nictjh/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nictjh/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/J4Joshua/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nictjh/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/J4Joshua/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/J4Joshua/ip.git (master) completed! -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nictjh/ip.git (master)... +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nictjh/ip.git (master) completed! +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gn07/ip.git completed! -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [94/428] Analyzing https://github.com/gn07/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chuahziyang/ip.git... -Jan 25, 2025 1:04:22 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:42 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chuahziyang/ip.git to complete... -Jan 25, 2025 1:04:22 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gn07/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gn07/ip.git (master)... -Jan 25, 2025 1:04:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gn07/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gn07/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gn07/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Bill-1/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/datletu/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [95/428] Analyzing https://github.com/Bill-1/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuqiannemo/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuqiannemo/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sivaramjeychand/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [96/428] Analyzing https://github.com/datletu/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sivaramjeychand/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Nano-233/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Bill-1/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Bill-1/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Bill-1/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Bill-1/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Bill-1/ip.git (master) completed! +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/datletu/ip.git completed! +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [96/428] Analyzing https://github.com/datletu/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sivaramjeychand/ip.git... +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sivaramjeychand/ip.git to complete... +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/datletu/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/datletu/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [97/428] Analyzing https://github.com/Nano-233/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/datletu/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/datletu/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/datletu/ip.git (master) completed! +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chuahziyang/ip.git completed! +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [97/428] Analyzing https://github.com/chuahziyang/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dexterkwxn/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dexterkwxn/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Nano-233/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Nano-233/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chuahziyang/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [98/428] Analyzing https://github.com/chuahziyang/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Nano-233/ip.git completed! +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [98/428] Analyzing https://github.com/Nano-233/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nlqhung130403/ip.git... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/datletu/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nlqhung130403/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Bill-1/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/datletu/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chuahziyang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chuahziyang/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/datletu/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Bill-1/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Bill-1/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Nano-233/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Nano-233/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Nano-233/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Nano-233/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Nano-233/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chuahziyang/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chuahziyang/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chuahziyang/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Nano-233/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Nano-233/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Nano-233/ip.git (master) completed! +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "nlqhung130403/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/nlqhung130403/ip.git' 'repos/nlqhung130403_ip/ip_bare' on path . : Cloning into bare repository 'repos/nlqhung130403_ip/ip_bare'... @@ -1972,61 +1972,65 @@ 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) -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/huangtian666/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/huangtian666/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yuqiannemo/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [99/428] Analyzing https://github.com/yuqiannemo/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SahanaAvantika/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sivaramjeychand/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SahanaAvantika/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yuqiannemo/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yuqiannemo/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuqiannemo/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yuqiannemo/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yuqiannemo/ip.git (master) completed! +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sivaramjeychand/ip.git completed! +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [100/428] Analyzing https://github.com/sivaramjeychand/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/pranavyey/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/pranavyey/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yuqiannemo/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yuqiannemo/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sivaramjeychand/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sivaramjeychand/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sivaramjeychand/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sivaramjeychand/ip.git (master)... +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sivaramjeychand/ip.git (master) completed! +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dexterkwxn/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Gu0Fengming/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [101/428] Analyzing https://github.com/dexterkwxn/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Gu0Fengming/ip.git... +Jan 25, 2025 2:15:43 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Gu0Fengming/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dexterkwxn/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dexterkwxn/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sivaramjeychand/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sivaramjeychand/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sivaramjeychand/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuqiannemo/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yuqiannemo/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yuqiannemo/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dexterkwxn/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dexterkwxn/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dexterkwxn/ip.git (master) completed! +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Gu0Fengming/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Gu0Fengming/ip.git' 'repos/Gu0Fengming_ip/ip_bare' on path . : Cloning into bare repository 'repos/Gu0Fengming_ip/ip_bare'... @@ -2042,53 +2046,55 @@ 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) -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/VikramGoyal23/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/VikramGoyal23/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dexterkwxn/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dexterkwxn/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/huangtian666/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [102/428] Analyzing https://github.com/huangtian666/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SahanaAvantika/ip.git completed! +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [102/428] Analyzing https://github.com/SahanaAvantika/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/meloppeitreet/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/meloppeitreet/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/huangtian666/ip.git completed! +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [103/428] Analyzing https://github.com/huangtian666/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/WhyAre/ip.git... +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/WhyAre/ip.git to complete... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SahanaAvantika/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SahanaAvantika/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/huangtian666/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/huangtian666/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SahanaAvantika/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [103/428] Analyzing https://github.com/SahanaAvantika/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/WhyAre/ip.git... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/huangtian666/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/huangtian666/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SahanaAvantika/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/huangtian666/ip.git (master) completed! +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SahanaAvantika/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SahanaAvantika/ip.git (master) completed! +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/pranavyey/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/WhyAre/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [104/428] Analyzing https://github.com/pranavyey/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zechary28/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zechary28/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SahanaAvantika/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SahanaAvantika/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/huangtian666/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/huangtian666/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "meloppeitreet/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/meloppeitreet/ip.git' 'repos/meloppeitreet_ip/ip_bare' on path . : Cloning into bare repository 'repos/meloppeitreet_ip/ip_bare'... @@ -2104,599 +2110,609 @@ 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) -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nickt121/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nickt121/ip.git to complete... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/pranavyey/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/pranavyey/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nickt121/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/pranavyey/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/pranavyey/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/pranavyey/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SahanaAvantika/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SahanaAvantika/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SahanaAvantika/ip.git (master) completed! -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/VikramGoyal23/ip.git completed! -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [105/428] Analyzing https://github.com/VikramGoyal23/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chinpcbenjamin/ip.git... -Jan 25, 2025 1:04:23 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chinpcbenjamin/ip.git to complete... -Jan 25, 2025 1:04:23 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/VikramGoyal23/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/VikramGoyal23/ip.git (master)... -Jan 25, 2025 1:04:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/VikramGoyal23/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/VikramGoyal23/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/VikramGoyal23/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/WhyAre/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [106/428] Analyzing https://github.com/WhyAre/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TheEnd-alr-taken/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zechary28/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/TheEnd-alr-taken/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zuoshihua/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [107/428] Analyzing https://github.com/zechary28/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/WhyAre/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/WhyAre/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zechary28/ip.git completed! +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nickt121/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zuoshihua/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [107/428] Analyzing https://github.com/zechary28/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zuoshihua/ip.git... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [108/428] Analyzing https://github.com/nickt121/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/GZTan23/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/GZTan23/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/WhyAre/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/WhyAre/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:44 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zuoshihua/ip.git to complete... +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zechary28/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zechary28/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nickt121/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nickt121/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/WhyAre/ip.git (master)... +Jan 25, 2025 2:15:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zechary28/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zechary28/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/WhyAre/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zechary28/ip.git (master) completed! +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/WhyAre/ip.git (master) completed! +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nickt121/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nickt121/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nickt121/ip.git (master) completed! +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/chinpcbenjamin/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [109/428] Analyzing https://github.com/chinpcbenjamin/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/clx3210/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/clx3210/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zechary28/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zechary28/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chinpcbenjamin/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chinpcbenjamin/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nickt121/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nickt121/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nickt121/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/WhyAre/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chinpcbenjamin/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/WhyAre/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TheEnd-alr-taken/ip.git completed! +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chinpcbenjamin/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/WhyAre/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chinpcbenjamin/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TheEnd-alr-taken/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [110/428] Analyzing https://github.com/TheEnd-alr-taken/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Victoria281/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GZTan23/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Victoria281/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/TheEnd-alr-taken/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/TheEnd-alr-taken/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GZTan23/ip.git completed! +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [111/428] Analyzing https://github.com/GZTan23/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ziliangstanley/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ziliangstanley/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zuoshihua/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/TheEnd-alr-taken/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/TheEnd-alr-taken/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [112/428] Analyzing https://github.com/zuoshihua/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Ben926/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TheEnd-alr-taken/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Ben926/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GZTan23/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GZTan23/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TheEnd-alr-taken/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zuoshihua/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zuoshihua/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/TheEnd-alr-taken/ip.git (master) completed! +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/GZTan23/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/GZTan23/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/GZTan23/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TheEnd-alr-taken/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zuoshihua/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zuoshihua/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zuoshihua/ip.git (master) completed! +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/clx3210/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TheEnd-alr-taken/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [113/428] Analyzing https://github.com/clx3210/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CXl0l0/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/TheEnd-alr-taken/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CXl0l0/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zuoshihua/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/clx3210/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/clx3210/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zuoshihua/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zuoshihua/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/clx3210/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Victoria281/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/clx3210/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ziliangstanley/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/clx3210/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/blacksesamezongzi/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [114/428] Analyzing https://github.com/Victoria281/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/clx3210/ip.git (master)... +Jan 25, 2025 2:15:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/clx3210/ip.git (master) completed! +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/blacksesamezongzi/ip.git to complete... +Jan 25, 2025 2:15:45 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ziliangstanley/ip.git completed! +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [115/428] Analyzing https://github.com/ziliangstanley/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LsmnBmnc/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/blacksesamezongzi/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ben926/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LsmnBmnc/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [116/428] Analyzing https://github.com/Ben926/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YashvanGH/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ziliangstanley/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ziliangstanley/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Victoria281/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Victoria281/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YashvanGH/ip.git to complete... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ben926/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ben926/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ziliangstanley/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ziliangstanley/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Victoria281/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ben926/ip.git completed! +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Victoria281/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Victoria281/ip.git (master) completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CXl0l0/ip.git completed! -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sunpterodactyl/ip.git... -Jan 25, 2025 1:04:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [117/428] Analyzing https://github.com/CXl0l0/ip.git (master)... -Jan 25, 2025 1:04:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sunpterodactyl/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CXl0l0/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CXl0l0/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [116/428] Analyzing https://github.com/Ben926/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YashvanGH/ip.git... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YashvanGH/ip.git to complete... +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ben926/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ben926/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ziliangstanley/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ziliangstanley/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ziliangstanley/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ben926/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ben926/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ben926/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CXl0l0/ip.git completed! +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [117/428] Analyzing https://github.com/CXl0l0/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sunpterodactyl/ip.git... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sunpterodactyl/ip.git to complete... +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CXl0l0/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CXl0l0/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/CXl0l0/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CXl0l0/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CXl0l0/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LsmnBmnc/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [118/428] Analyzing https://github.com/LsmnBmnc/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Zhannyhong/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Zhannyhong/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LsmnBmnc/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LsmnBmnc/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YashvanGH/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/blacksesamezongzi/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [119/428] Analyzing https://github.com/blacksesamezongzi/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/MrAsparag00se/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [119/428] Analyzing https://github.com/YashvanGH/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nhocmt227/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [120/428] Analyzing https://github.com/blacksesamezongzi/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/MrAsparag00se/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nhocmt227/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LsmnBmnc/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LsmnBmnc/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/blacksesamezongzi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/blacksesamezongzi/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/YashvanGH/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/YashvanGH/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/blacksesamezongzi/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sunpterodactyl/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [121/428] Analyzing https://github.com/sunpterodactyl/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mjyan02/ip.git... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LsmnBmnc/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/blacksesamezongzi/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/blacksesamezongzi/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mjyan02/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sunpterodactyl/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sunpterodactyl/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LsmnBmnc/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LsmnBmnc/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LsmnBmnc/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YashvanGH/ip.git completed! +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [120/428] Analyzing https://github.com/YashvanGH/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nhocmt227/ip.git... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nhocmt227/ip.git to complete... +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/YashvanGH/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/YashvanGH/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/YashvanGH/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YashvanGH/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/YashvanGH/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sunpterodactyl/ip.git completed! +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [121/428] Analyzing https://github.com/sunpterodactyl/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mjyan02/ip.git... +Jan 25, 2025 2:15:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mjyan02/ip.git to complete... +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sunpterodactyl/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sunpterodactyl/ip.git (master)... +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sunpterodactyl/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sunpterodactyl/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sunpterodactyl/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Zhannyhong/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [122/428] Analyzing https://github.com/Zhannyhong/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/senshir/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/senshir/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Zhannyhong/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Zhannyhong/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [122/428] Analyzing https://github.com/Zhannyhong/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/MrAsparag00se/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nhocmt227/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/senshir/ip.git to complete... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [123/428] Analyzing https://github.com/MrAsparag00se/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/niha81/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/niha81/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [124/428] Analyzing https://github.com/nhocmt227/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Emmanuel2001/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Zhannyhong/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Zhannyhong/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/MrAsparag00se/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/MrAsparag00se/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nhocmt227/ip.git completed! +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Emmanuel2001/ip.git... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [124/428] Analyzing https://github.com/nhocmt227/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Emmanuel2001/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MrAsparag00se/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nhocmt227/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nhocmt227/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MrAsparag00se/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zhannyhong/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MrAsparag00se/ip.git (master) completed! +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zhannyhong/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zhannyhong/ip.git (master) completed! +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nhocmt227/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nhocmt227/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nhocmt227/ip.git (master) completed! +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/mjyan02/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [125/428] Analyzing https://github.com/mjyan02/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/mhaikelll/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/mhaikelll/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zhannyhong/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zhannyhong/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MrAsparag00se/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zhannyhong/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mjyan02/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mjyan02/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MrAsparag00se/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MrAsparag00se/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nhocmt227/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mjyan02/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mjyan02/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mjyan02/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nhocmt227/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nhocmt227/ip.git (master) completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/senshir/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [126/428] Analyzing https://github.com/senshir/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ongxinyii/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ongxinyii/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/senshir/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/senshir/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/niha81/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Emmanuel2001/ip.git completed! -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [127/428] Analyzing https://github.com/niha81/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/botosek/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/botosek/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [128/428] Analyzing https://github.com/Emmanuel2001/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/leedeen01/ip.git... -Jan 25, 2025 1:04:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/leedeen01/ip.git to complete... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/senshir/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/senshir/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/niha81/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/niha81/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/senshir/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Emmanuel2001/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Emmanuel2001/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Emmanuel2001/ip.git completed! +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/leedeen01/ip.git... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [128/428] Analyzing https://github.com/Emmanuel2001/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/leedeen01/ip.git to complete... +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/senshir/ip.git (master)... -Jan 25, 2025 1:04:25 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/niha81/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/senshir/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/niha81/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/niha81/ip.git (master) completed! +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Emmanuel2001/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Emmanuel2001/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Emmanuel2001/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Emmanuel2001/ip.git (master)... +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Emmanuel2001/ip.git (master) completed! +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/mhaikelll/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [129/428] Analyzing https://github.com/mhaikelll/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jensen188/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jensen188/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mhaikelll/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mhaikelll/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/niha81/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Emmanuel2001/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/niha81/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/niha81/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mhaikelll/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Emmanuel2001/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Emmanuel2001/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mhaikelll/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mhaikelll/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ongxinyii/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [130/428] Analyzing https://github.com/ongxinyii/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/botosek/ip.git completed! +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [130/428] Analyzing https://github.com/botosek/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/caxewhy/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/caxewhy/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ongxinyii/ip.git completed! +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yuqing-tham/ip.git... +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [131/428] Analyzing https://github.com/ongxinyii/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yuqing-tham/ip.git to complete... +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/botosek/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/botosek/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ongxinyii/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ongxinyii/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ongxinyii/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/leedeen01/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/botosek/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [131/428] Analyzing https://github.com/leedeen01/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yuqing-tham/ip.git... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ongxinyii/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [132/428] Analyzing https://github.com/leedeen01/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JadeCheah/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [132/428] Analyzing https://github.com/botosek/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ongxinyii/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yuqing-tham/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JadeCheah/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/leedeen01/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/leedeen01/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/botosek/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/botosek/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/botosek/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ongxinyii/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/botosek/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/botosek/ip.git (master) completed! +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ongxinyii/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ongxinyii/ip.git (master) completed! +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leedeen01/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leedeen01/ip.git (master)... +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leedeen01/ip.git (master) completed! +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Jensen188/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [133/428] Analyzing https://github.com/Jensen188/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/glennliew/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/glennliew/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jensen188/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jensen188/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leedeen01/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leedeen01/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/botosek/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leedeen01/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/botosek/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/botosek/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Jensen188/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/caxewhy/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jensen188/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jensen188/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/caxewhy/ip.git completed! +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [134/428] Analyzing https://github.com/caxewhy/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kerktaiheng/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kerktaiheng/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/caxewhy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/caxewhy/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/caxewhy/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/caxewhy/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/caxewhy/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yuqing-tham/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JadeCheah/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [135/428] Analyzing https://github.com/yuqing-tham/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Xavierlhm/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Xavierlhm/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yuqing-tham/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yuqing-tham/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/caxewhy/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/caxewhy/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/caxewhy/ip.git (master) completed! +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JadeCheah/ip.git completed! +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [136/428] Analyzing https://github.com/JadeCheah/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Terentwc/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Terentwc/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JadeCheah/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JadeCheah/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yuqing-tham/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yuqing-tham/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuqing-tham/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yuqing-tham/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yuqing-tham/ip.git (master) completed! +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JadeCheah/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JadeCheah/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JadeCheah/ip.git (master) completed! +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/glennliew/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/qilstiano/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [137/428] Analyzing https://github.com/glennliew/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/qilstiano/ip.git... +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/qilstiano/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/glennliew/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/glennliew/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Terentwc/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Terentwc/ip.git' 'repos/Terentwc_ip/ip_bare' on path . : Cloning into bare repository 'repos/Terentwc_ip/ip_bare'... @@ -2712,459 +2728,443 @@ 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) -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/FadhilPM/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/glennliew/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/glennliew/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JadeCheah/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/glennliew/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/FadhilPM/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JadeCheah/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JadeCheah/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/glennliew/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/glennliew/ip.git (master) completed! +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kerktaiheng/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [138/428] Analyzing https://github.com/kerktaiheng/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/keyansheng/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/keyansheng/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kerktaiheng/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kerktaiheng/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/glennliew/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/glennliew/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/glennliew/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuqing-tham/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yuqing-tham/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yuqing-tham/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kerktaiheng/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Xavierlhm/ip.git completed! -Jan 25, 2025 1:04:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kerktaiheng/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [139/428] Analyzing https://github.com/Xavierlhm/ip.git (master)... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Mingyuan03/ip.git... -Jan 25, 2025 1:04:26 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Mingyuan03/ip.git to complete... -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kerktaiheng/ip.git (master) completed! -Jan 25, 2025 1:04:26 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Xavierlhm/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Xavierlhm/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kerktaiheng/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kerktaiheng/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kerktaiheng/ip.git (master) completed! +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Xavierlhm/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Xavierlhm/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Xavierlhm/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/qilstiano/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [140/428] Analyzing https://github.com/qilstiano/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/shashwatchan/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/shashwatchan/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/qilstiano/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/qilstiano/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/FadhilPM/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [141/428] Analyzing https://github.com/FadhilPM/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zhenglong1603/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zhenglong1603/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/qilstiano/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/FadhilPM/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/FadhilPM/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/qilstiano/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/qilstiano/ip.git (master) completed! +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/FadhilPM/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/FadhilPM/ip.git (master)... +Jan 25, 2025 2:15:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/FadhilPM/ip.git (master) completed! +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/keyansheng/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [142/428] Analyzing https://github.com/keyansheng/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AnWe11/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AnWe11/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/qilstiano/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/keyansheng/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/keyansheng/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/qilstiano/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/qilstiano/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Mingyuan03/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [143/428] Analyzing https://github.com/Mingyuan03/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Rae2480/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Rae2480/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Mingyuan03/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Mingyuan03/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/FadhilPM/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/FadhilPM/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/FadhilPM/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/keyansheng/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Mingyuan03/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/keyansheng/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/keyansheng/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Mingyuan03/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Mingyuan03/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/shashwatchan/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [144/428] Analyzing https://github.com/shashwatchan/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Timothy-Ho0203/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Timothy-Ho0203/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shashwatchan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shashwatchan/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhenglong1603/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shashwatchan/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shashwatchan/ip.git (master)... +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shashwatchan/ip.git (master) completed! +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhenglong1603/ip.git completed! +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [145/428] Analyzing https://github.com/zhenglong1603/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/weiwong834/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/weiwong834/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shashwatchan/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shashwatchan/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zhenglong1603/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zhenglong1603/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhenglong1603/ip.git (master)... +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhenglong1603/ip.git (master)... +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhenglong1603/ip.git (master) completed! +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AnWe11/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [146/428] Analyzing https://github.com/AnWe11/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/juneha1120/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/juneha1120/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/AnWe11/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/AnWe11/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Rae2480/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [147/428] Analyzing https://github.com/Rae2480/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wei-song1/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wei-song1/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhenglong1603/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Rae2480/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Rae2480/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhenglong1603/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhenglong1603/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AnWe11/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AnWe11/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AnWe11/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Rae2480/ip.git (master)... +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Timothy-Ho0203/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zephaniahong/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [148/428] Analyzing https://github.com/Timothy-Ho0203/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zephaniahong/ip.git... +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zephaniahong/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Rae2480/ip.git (master)... +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Rae2480/ip.git (master) completed! +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Timothy-Ho0203/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Timothy-Ho0203/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Timothy-Ho0203/ip.git (master)... +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/weiwong834/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/WeiHungLoh/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Timothy-Ho0203/ip.git (master)... +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Timothy-Ho0203/ip.git (master) completed! +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [149/428] Analyzing https://github.com/weiwong834/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/WeiHungLoh/ip.git... +Jan 25, 2025 2:15:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/WeiHungLoh/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/juneha1120/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Rae2480/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kokseen1/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [150/428] Analyzing https://github.com/juneha1120/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kokseen1/ip.git to complete... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/weiwong834/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/weiwong834/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Rae2480/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Rae2480/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/weiwong834/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/weiwong834/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/weiwong834/ip.git (master) completed! +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/juneha1120/ip.git completed! +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [150/428] Analyzing https://github.com/juneha1120/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kokseen1/ip.git... +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kokseen1/ip.git to complete... +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/juneha1120/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/juneha1120/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Timothy-Ho0203/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Timothy-Ho0203/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Timothy-Ho0203/ip.git (master) completed! -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wei-song1/ip.git completed! -Jan 25, 2025 1:04:27 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [151/428] Analyzing https://github.com/wei-song1/ip.git (master)... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wzhua02/ip.git... -Jan 25, 2025 1:04:27 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wzhua02/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/weiwong834/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wei-song1/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wei-song1/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/weiwong834/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/weiwong834/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/juneha1120/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/juneha1120/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/juneha1120/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zephaniahong/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SociallyIneptWeeb/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [152/428] Analyzing https://github.com/zephaniahong/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SociallyIneptWeeb/ip.git... +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SociallyIneptWeeb/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wei-song1/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zephaniahong/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zephaniahong/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wei-song1/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/WeiHungLoh/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wei-song1/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wei-song1/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/WeiHungLoh/ip.git completed! +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [153/428] Analyzing https://github.com/WeiHungLoh/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/bhavinaa/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/bhavinaa/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/WeiHungLoh/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/WeiHungLoh/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/WeiHungLoh/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/WeiHungLoh/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/WeiHungLoh/ip.git (master) completed! +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zephaniahong/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zephaniahong/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zephaniahong/ip.git (master) completed! +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kokseen1/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [154/428] Analyzing https://github.com/kokseen1/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ToxOptimism/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/WeiHungLoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/WeiHungLoh/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ToxOptimism/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kokseen1/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kokseen1/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wzhua02/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [155/428] Analyzing https://github.com/wzhua02/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuto1115/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuto1115/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/WeiHungLoh/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wzhua02/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wzhua02/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/WeiHungLoh/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/WeiHungLoh/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kokseen1/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kokseen1/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kokseen1/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wzhua02/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SociallyIneptWeeb/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wzhua02/ip.git (master)... +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wzhua02/ip.git (master) completed! +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [156/428] Analyzing https://github.com/SociallyIneptWeeb/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/curiousfun88/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/curiousfun88/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SociallyIneptWeeb/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SociallyIneptWeeb/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/bhavinaa/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [157/428] Analyzing https://github.com/bhavinaa/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Windofbitter/ip.git... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wzhua02/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Windofbitter/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ToxOptimism/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bhavinaa/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bhavinaa/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wzhua02/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wzhua02/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bhavinaa/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bhavinaa/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bhavinaa/ip.git (master) completed! +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SociallyIneptWeeb/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SociallyIneptWeeb/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SociallyIneptWeeb/ip.git (master) completed! +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ToxOptimism/ip.git completed! +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [158/428] Analyzing https://github.com/ToxOptimism/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/DESU-CLUB/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/DESU-CLUB/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ToxOptimism/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ToxOptimism/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zephaniahong/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yuto1115/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/changjy81/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/changjy81/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zephaniahong/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zephaniahong/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [159/428] Analyzing https://github.com/yuto1115/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/changjy81/ip.git to complete... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yuto1115/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yuto1115/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bhavinaa/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuto1115/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yuto1115/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yuto1115/ip.git (master) completed! +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ToxOptimism/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ToxOptimism/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ToxOptimism/ip.git (master) completed! +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/curiousfun88/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [160/428] Analyzing https://github.com/curiousfun88/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jeremiah33-3/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jeremiah33-3/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bhavinaa/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bhavinaa/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [160/428] Analyzing https://github.com/curiousfun88/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuto1115/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/curiousfun88/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/curiousfun88/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yuto1115/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yuto1115/ip.git (master) completed! -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Windofbitter/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/curiousfun88/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [161/428] Analyzing https://github.com/Windofbitter/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/heyitssakinah/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/heyitssakinah/ip.git to complete... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DESU-CLUB/ip.git completed! -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mingshan2705/ip.git... -Jan 25, 2025 1:04:28 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/curiousfun88/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/curiousfun88/ip.git (master) completed! +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Windofbitter/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Windofbitter/ip.git (master)... -Jan 25, 2025 1:04:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mingshan2705/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SociallyIneptWeeb/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/changjy81/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ToxOptimism/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SociallyIneptWeeb/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nanditaselvaraju/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SociallyIneptWeeb/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "heyitssakinah/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/heyitssakinah/ip.git' 'repos/heyitssakinah_ip/ip_bare' on path . : Cloning into bare repository 'repos/heyitssakinah_ip/ip_bare'... @@ -3180,145 +3180,143 @@ 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) -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/boinkkitty/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nanditaselvaraju/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mingshan2705/ip.git... +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mingshan2705/ip.git to complete... +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DESU-CLUB/ip.git completed! +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Windofbitter/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepos INFO: [162/428] Analyzing https://github.com/DESU-CLUB/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/curiousfun88/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/boinkkitty/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ToxOptimism/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ToxOptimism/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [163/428] Analyzing https://github.com/changjy81/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/curiousfun88/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/curiousfun88/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nanditaselvaraju/ip.git... +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nanditaselvaraju/ip.git to complete... +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Windofbitter/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DESU-CLUB/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DESU-CLUB/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Windofbitter/ip.git (master) completed! +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/changjy81/ip.git completed! +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [163/428] Analyzing https://github.com/changjy81/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/boinkkitty/ip.git... +Jan 25, 2025 2:15:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/boinkkitty/ip.git to complete... +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DESU-CLUB/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/changjy81/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/changjy81/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/DESU-CLUB/ip.git (master)... +Jan 25, 2025 2:15:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/DESU-CLUB/ip.git (master) completed! +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Jeremiah33-3/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zwliew/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepos INFO: [164/428] Analyzing https://github.com/Jeremiah33-3/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zwliew/ip.git... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zwliew/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jeremiah33-3/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jeremiah33-3/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mingshan2705/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vikeedough/ip.git... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DESU-CLUB/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/changjy81/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vikeedough/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/DESU-CLUB/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/changjy81/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/DESU-CLUB/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [165/428] Analyzing https://github.com/mingshan2705/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/changjy81/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jeremiah33-3/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jeremiah33-3/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Jeremiah33-3/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jeremiah33-3/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jeremiah33-3/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mingshan2705/ip.git completed! +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [165/428] Analyzing https://github.com/mingshan2705/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vikeedough/ip.git... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vikeedough/ip.git to complete... +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mingshan2705/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mingshan2705/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/boinkkitty/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/nanditaselvaraju/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [166/428] Analyzing https://github.com/nanditaselvaraju/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/alexandtheoh/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [166/428] Analyzing https://github.com/boinkkitty/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [167/428] Analyzing https://github.com/nanditaselvaraju/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nat-ong555/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/alexandtheoh/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nat-ong555/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/boinkkitty/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/boinkkitty/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nanditaselvaraju/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nanditaselvaraju/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Windofbitter/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zwliew/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/advaypakhale/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/advaypakhale/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nanditaselvaraju/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Windofbitter/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Windofbitter/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mingshan2705/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nanditaselvaraju/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nanditaselvaraju/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [168/428] Analyzing https://github.com/zwliew/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mingshan2705/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mingshan2705/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mingshan2705/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zwliew/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zwliew/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/boinkkitty/ip.git completed! +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [167/428] Analyzing https://github.com/boinkkitty/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nat-ong555/ip.git... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nat-ong555/ip.git to complete... +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/boinkkitty/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/boinkkitty/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zwliew/ip.git completed! +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/boinkkitty/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [168/428] Analyzing https://github.com/zwliew/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/advaypakhale/ip.git... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/advaypakhale/ip.git to complete... +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/boinkkitty/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/boinkkitty/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vikeedough/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [169/428] Analyzing https://github.com/vikeedough/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jonaturn/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jonaturn/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zwliew/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zwliew/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zwliew/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zwliew/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zwliew/ip.git (master) completed! +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "advaypakhale/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/advaypakhale/ip.git' 'repos/advaypakhale_ip/ip_bare' on path . : Cloning into bare repository 'repos/advaypakhale_ip/ip_bare'... @@ -3334,51 +3332,59 @@ 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) -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jonaturn/ip.git... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jonaturn/ip.git to complete... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vikeedough/ip.git completed! +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [169/428] Analyzing https://github.com/vikeedough/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/simenggg/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/simenggg/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zwliew/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/vikeedough/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/vikeedough/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zwliew/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zwliew/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nat-ong555/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hsinyilow/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [170/428] Analyzing https://github.com/nat-ong555/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/alexandtheoh/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [170/428] Analyzing https://github.com/alexandtheoh/ip.git (master)... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hsinyilow/ip.git... +Jan 25, 2025 2:15:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hsinyilow/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [171/428] Analyzing https://github.com/alexandtheoh/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/namitdeb739/ip.git... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alexandtheoh/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alexandtheoh/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/vikeedough/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vikeedough/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vikeedough/ip.git (master) completed! +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nat-ong555/ip.git completed! +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [171/428] Analyzing https://github.com/nat-ong555/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/namitdeb739/ip.git... +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/namitdeb739/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nat-ong555/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nat-ong555/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vikeedough/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vikeedough/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alexandtheoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alexandtheoh/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alexandtheoh/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alexandtheoh/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alexandtheoh/ip.git (master) completed! +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "simenggg/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/simenggg/ip.git' 'repos/simenggg_ip/ip_bare' on path . : Cloning into bare repository 'repos/simenggg_ip/ip_bare'... @@ -3394,113 +3400,107 @@ 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) -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/GrassHeadd/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/GrassHeadd/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nat-ong555/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alexandtheoh/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nat-ong555/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nat-ong555/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alexandtheoh/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alexandtheoh/ip.git (master) completed! -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jonaturn/ip.git completed! -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [172/428] Analyzing https://github.com/jonaturn/ip.git (master)... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SheYuting/ip.git... -Jan 25, 2025 1:04:29 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SheYuting/ip.git to complete... -Jan 25, 2025 1:04:29 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jonaturn/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jonaturn/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jonaturn/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jonaturn/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jonaturn/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/hsinyilow/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/namitdeb739/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [173/428] Analyzing https://github.com/namitdeb739/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [173/428] Analyzing https://github.com/hsinyilow/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ypuppy/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [174/428] Analyzing https://github.com/hsinyilow/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cyhni/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cyhni/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ypuppy/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hsinyilow/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/namitdeb739/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hsinyilow/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/namitdeb739/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/namitdeb739/ip.git completed! +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hsinyilow/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [174/428] Analyzing https://github.com/namitdeb739/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cyhni/ip.git... +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cyhni/ip.git to complete... +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/GrassHeadd/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [175/428] Analyzing https://github.com/GrassHeadd/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wentingchua/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [175/428] Analyzing https://github.com/GrassHeadd/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hsinyilow/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hsinyilow/ip.git (master) completed! +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wentingchua/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/namitdeb739/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/namitdeb739/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GrassHeadd/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GrassHeadd/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/GrassHeadd/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/GrassHeadd/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/GrassHeadd/ip.git (master) completed! +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/namitdeb739/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/namitdeb739/ip.git (master)... +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/namitdeb739/ip.git (master) completed! +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SheYuting/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepos INFO: [176/428] Analyzing https://github.com/SheYuting/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/matthanfoo/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/matthanfoo/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/namitdeb739/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/GrassHeadd/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hsinyilow/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/namitdeb739/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/namitdeb739/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SheYuting/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SheYuting/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/GrassHeadd/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/GrassHeadd/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hsinyilow/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hsinyilow/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SheYuting/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SheYuting/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:54 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SheYuting/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "matthanfoo/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/matthanfoo/ip.git' 'repos/matthanfoo_ip/ip_bare' on path . : Cloning into bare repository 'repos/matthanfoo_ip/ip_bare'... @@ -3516,47 +3516,39 @@ 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) -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/minnibb/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/minnibb/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cyhni/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ypuppy/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [177/428] Analyzing https://github.com/ypuppy/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/patil-np/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [177/428] Analyzing https://github.com/cyhni/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/patil-np/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/iamanoob44/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [178/428] Analyzing https://github.com/ypuppy/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/iamanoob44/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wentingchua/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cyhni/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cyhni/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ypuppy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ypuppy/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [179/428] Analyzing https://github.com/wentingchua/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aekyr/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aekyr/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wentingchua/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wentingchua/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ypuppy/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ypuppy/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ypuppy/ip.git (master) completed! +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cyhni/ip.git completed! +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [178/428] Analyzing https://github.com/cyhni/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/iamanoob44/ip.git... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wentingchua/ip.git completed! +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/iamanoob44/ip.git to complete... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "minnibb/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/minnibb/ip.git' 'repos/minnibb_ip/ip_bare' on path . : Cloning into bare repository 'repos/minnibb_ip/ip_bare'... @@ -3572,173 +3564,181 @@ 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) -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aekyr/ip.git... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/namprice227/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [179/428] Analyzing https://github.com/wentingchua/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aekyr/ip.git to complete... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/namprice227/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ypuppy/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cyhni/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ypuppy/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ypuppy/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cyhni/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cyhni/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wentingchua/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wentingchua/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wentingchua/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cyhni/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cyhni/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wentingchua/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wentingchua/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cyhni/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cyhni/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cyhni/ip.git (master) completed! +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/patil-np/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepos INFO: [180/428] Analyzing https://github.com/patil-np/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/moingshoing/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/moingshoing/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/patil-np/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/patil-np/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/iamanoob44/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/patil-np/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/patil-np/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/patil-np/ip.git (master) completed! +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aekyr/ip.git completed! +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [181/428] Analyzing https://github.com/aekyr/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/aaronlim02/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [181/428] Analyzing https://github.com/iamanoob44/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/aaronlim02/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aekyr/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/iamanoob44/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/iamanoob44/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [182/428] Analyzing https://github.com/aekyr/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/aekyr/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/aekyr/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/iamanoob44/ip.git completed! +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/namprice227/ip.git completed! +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [182/428] Analyzing https://github.com/iamanoob44/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TiewJiaLiang/ip.git... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TiewJiaLiang/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/namprice227/ip.git completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepos INFO: [183/428] Analyzing https://github.com/namprice227/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zlllllr/ip.git... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/patil-np/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/aekyr/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/aekyr/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TiewJiaLiang/ip.git to complete... +Jan 25, 2025 2:15:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zlllllr/ip.git to complete... -Jan 25, 2025 1:04:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/patil-np/ip.git (master)... -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/patil-np/ip.git (master) completed! -Jan 25, 2025 1:04:30 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/namprice227/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/namprice227/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iamanoob44/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iamanoob44/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iamanoob44/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/iamanoob44/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/iamanoob44/ip.git (master)... +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/namprice227/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/namprice227/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:55 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/namprice227/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iamanoob44/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iamanoob44/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iamanoob44/ip.git (master) completed! +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/aekyr/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/aekyr/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/aekyr/ip.git (master) completed! +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/moingshoing/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/juniper285/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepos INFO: [184/428] Analyzing https://github.com/moingshoing/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/juniper285/ip.git... +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/juniper285/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/aekyr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/moingshoing/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/moingshoing/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/aekyr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/aekyr/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/moingshoing/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/moingshoing/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/moingshoing/ip.git (master) completed! +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/aaronlim02/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepos INFO: [185/428] Analyzing https://github.com/aaronlim02/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Huan-Kiat/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Huan-Kiat/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/aaronlim02/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/aaronlim02/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/TiewJiaLiang/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [186/428] Analyzing https://github.com/TiewJiaLiang/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kimseunghyun-kr/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kimseunghyun-kr/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/moingshoing/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepos +INFO: [186/428] Analyzing https://github.com/TiewJiaLiang/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zlllllr/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kimseunghyun-kr/ip.git to complete... +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepos INFO: [187/428] Analyzing https://github.com/zlllllr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NaelAnoob/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NaelAnoob/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/moingshoing/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/moingshoing/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TiewJiaLiang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TiewJiaLiang/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/aaronlim02/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zlllllr/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zlllllr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/aaronlim02/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/aaronlim02/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TiewJiaLiang/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zlllllr/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TiewJiaLiang/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TiewJiaLiang/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zlllllr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zlllllr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zlllllr/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "NaelAnoob/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/NaelAnoob/ip.git' 'repos/NaelAnoob_ip/ip_bare' on path . : Cloning into bare repository 'repos/NaelAnoob_ip/ip_bare'... @@ -3754,353 +3754,357 @@ 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) -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/loyaltypollution/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/loyaltypollution/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/juniper285/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepos INFO: [188/428] Analyzing https://github.com/juniper285/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/lauhengyi/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/lauhengyi/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/juniper285/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/juniper285/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/juniper285/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/juniper285/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/juniper285/ip.git (master) completed! +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Huan-Kiat/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepos INFO: [189/428] Analyzing https://github.com/Huan-Kiat/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/davidchongg/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/davidchongg/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Huan-Kiat/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Huan-Kiat/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kimseunghyun-kr/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ambertan77/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Huan-Kiat/ip.git (master)... +Jan 25, 2025 2:15:56 AM reposense.report.ReportGenerator analyzeRepos INFO: [190/428] Analyzing https://github.com/kimseunghyun-kr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ambertan77/ip.git... +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ambertan77/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/juniper285/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/juniper285/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kimseunghyun-kr/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kimseunghyun-kr/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/juniper285/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Huan-Kiat/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Huan-Kiat/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Huan-Kiat/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kimseunghyun-kr/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kimseunghyun-kr/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/loyaltypollution/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepos INFO: [191/428] Analyzing https://github.com/loyaltypollution/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ceilingFan456/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ceilingFan456/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/loyaltypollution/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/loyaltypollution/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/loyaltypollution/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/loyaltypollution/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/loyaltypollution/ip.git (master) completed! +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/lauhengyi/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepos INFO: [192/428] Analyzing https://github.com/lauhengyi/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/WhiteBear82/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/WhiteBear82/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lauhengyi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lauhengyi/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/loyaltypollution/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kimseunghyun-kr/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kimseunghyun-kr/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kimseunghyun-kr/ip.git (master) completed! +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lauhengyi/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lauhengyi/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lauhengyi/ip.git (master) completed! +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/davidchongg/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ambertan77/ip.git completed! +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/weien02/ip.git... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepos INFO: [193/428] Analyzing https://github.com/davidchongg/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Sean-G-Han/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Sean-G-Han/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/loyaltypollution/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/loyaltypollution/ip.git (master) completed! -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ambertan77/ip.git completed! -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/davidchongg/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/davidchongg/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepos INFO: [194/428] Analyzing https://github.com/ambertan77/ip.git (master)... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/weien02/ip.git... -Jan 25, 2025 1:04:31 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/weien02/ip.git to complete... -Jan 25, 2025 1:04:31 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Sean-G-Han/ip.git to complete... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ambertan77/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ambertan77/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kimseunghyun-kr/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lauhengyi/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lauhengyi/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lauhengyi/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kimseunghyun-kr/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kimseunghyun-kr/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/davidchongg/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/davidchongg/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ambertan77/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ambertan77/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ambertan77/ip.git (master) completed! +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/davidchongg/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/davidchongg/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/davidchongg/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ambertan77/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ceilingFan456/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aisyahally/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepos INFO: [195/428] Analyzing https://github.com/ceilingFan456/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aisyahally/ip.git... +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/aisyahally/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ambertan77/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ambertan77/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ceilingFan456/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ceilingFan456/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/WhiteBear82/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepos INFO: [196/428] Analyzing https://github.com/WhiteBear82/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wallacepck/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wallacepck/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/WhiteBear82/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/WhiteBear82/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ceilingFan456/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ceilingFan456/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ceilingFan456/ip.git (master) completed! +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/WhiteBear82/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/WhiteBear82/ip.git (master)... +Jan 25, 2025 2:15:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/WhiteBear82/ip.git (master) completed! +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Sean-G-Han/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos INFO: [197/428] Analyzing https://github.com/Sean-G-Han/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Shanyey/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Shanyey/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/weien02/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Sean-G-Han/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Sean-G-Han/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos INFO: [198/428] Analyzing https://github.com/weien02/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/isawangyx/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/isawangyx/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Sean-G-Han/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Sean-G-Han/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/weien02/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/weien02/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/WhiteBear82/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ceilingFan456/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/WhiteBear82/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/WhiteBear82/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ceilingFan456/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ceilingFan456/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Sean-G-Han/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/weien02/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Sean-G-Han/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Sean-G-Han/ip.git (master) completed! +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/weien02/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/weien02/ip.git (master) completed! +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/aisyahally/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos INFO: [199/428] Analyzing https://github.com/aisyahally/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Nova1729/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Nova1729/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/aisyahally/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/aisyahally/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Sean-G-Han/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Sean-G-Han/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Sean-G-Han/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/aisyahally/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/aisyahally/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/aisyahally/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/weien02/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wallacepck/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [200/428] Analyzing https://github.com/wallacepck/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/dragonesejosh/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [200/428] Analyzing https://github.com/wallacepck/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/aisyahally/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/aisyahally/ip.git (master) completed! +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/dragonesejosh/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/weien02/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/weien02/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wallacepck/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wallacepck/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wallacepck/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wallacepck/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wallacepck/ip.git (master) completed! +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Shanyey/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos INFO: [201/428] Analyzing https://github.com/Shanyey/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Masunori/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/isawangyx/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wallacepck/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Masunori/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wallacepck/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Shanyey/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Shanyey/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/isawangyx/ip.git completed! +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos INFO: [202/428] Analyzing https://github.com/isawangyx/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sciphi-123/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sciphi-123/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Shanyey/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Shanyey/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/isawangyx/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/isawangyx/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Shanyey/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Shanyey/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Shanyey/ip.git (master) completed! +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/isawangyx/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Nova1729/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/isawangyx/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Shanyey/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/isawangyx/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Shanyey/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Nova1729/ip.git completed! +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos INFO: [203/428] Analyzing https://github.com/Nova1729/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xumarcus/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xumarcus/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Nova1729/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Nova1729/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/dragonesejosh/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepos INFO: [204/428] Analyzing https://github.com/dragonesejosh/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/DanielJames0302/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:58 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/DanielJames0302/ip.git to complete... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dragonesejosh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dragonesejosh/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Nova1729/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dragonesejosh/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Nova1729/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Nova1729/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Nova1729/ip.git (master)... +Jan 25, 2025 2:15:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dragonesejosh/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:58 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dragonesejosh/ip.git (master) completed! -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Nova1729/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Nova1729/ip.git (master) completed! +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Masunori/ip.git completed! -Jan 25, 2025 1:04:32 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepos INFO: [205/428] Analyzing https://github.com/Masunori/ip.git (master)... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CloudKai/ip.git... -Jan 25, 2025 1:04:32 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CloudKai/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Masunori/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Masunori/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/sciphi-123/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jhwan0707/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepos INFO: [206/428] Analyzing https://github.com/sciphi-123/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jhwan0707/ip.git... +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jhwan0707/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Masunori/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Masunori/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sciphi-123/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sciphi-123/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Masunori/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sciphi-123/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Masunori/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Masunori/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sciphi-123/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sciphi-123/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sciphi-123/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DanielJames0302/ip.git completed! +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepos +INFO: [207/428] Analyzing https://github.com/DanielJames0302/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "jhwan0707/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/jhwan0707/ip.git' 'repos/jhwan0707_ip/ip_bare' on path . : Cloning into bare repository 'repos/jhwan0707_ip/ip_bare'... @@ -4116,47 +4120,37 @@ 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) -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/h-b-k-nishi/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/h-b-k-nishi/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xumarcus/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TanJieHaoAmos/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [207/428] Analyzing https://github.com/xumarcus/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xumarcus/ip.git completed! +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/TanJieHaoAmos/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DanielJames0302/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [208/428] Analyzing https://github.com/DanielJames0302/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/h-b-k-nishi/ip.git to complete... +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Melvan-Chan/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepos +INFO: [208/428] Analyzing https://github.com/xumarcus/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Melvan-Chan/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xumarcus/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xumarcus/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DanielJames0302/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DanielJames0302/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CloudKai/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SuspectBlue/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [209/428] Analyzing https://github.com/CloudKai/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SuspectBlue/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CloudKai/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CloudKai/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xumarcus/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xumarcus/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DanielJames0302/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/DanielJames0302/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/DanielJames0302/ip.git (master) completed! +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Melvan-Chan/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Melvan-Chan/ip.git' 'repos/Melvan-Chan_ip/ip_bare' on path . : Cloning into bare repository 'repos/Melvan-Chan_ip/ip_bare'... @@ -4172,161 +4166,173 @@ 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) -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SuspectBlue/ip.git... +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SuspectBlue/ip.git to complete... +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xumarcus/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xumarcus/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xumarcus/ip.git (master) completed! +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CloudKai/ip.git completed! +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepos +INFO: [209/428] Analyzing https://github.com/CloudKai/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jniaorx/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:15:59 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jniaorx/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DanielJames0302/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/DanielJames0302/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/DanielJames0302/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CloudKai/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:15:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CloudKai/ip.git (master)... +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/CloudKai/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/h-b-k-nishi/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [210/428] Analyzing https://github.com/h-b-k-nishi/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mogmyij/ip.git... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:15:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CloudKai/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mogmyij/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:15:59 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CloudKai/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/h-b-k-nishi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/h-b-k-nishi/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/TanJieHaoAmos/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos +INFO: [210/428] Analyzing https://github.com/TanJieHaoAmos/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mogmyij/ip.git... +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mogmyij/ip.git to complete... +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/h-b-k-nishi/ip.git completed! +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos +INFO: [211/428] Analyzing https://github.com/h-b-k-nishi/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/darHH/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [211/428] Analyzing https://github.com/TanJieHaoAmos/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/darHH/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TanJieHaoAmos/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TanJieHaoAmos/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xumarcus/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xumarcus/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xumarcus/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/h-b-k-nishi/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/h-b-k-nishi/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TanJieHaoAmos/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TanJieHaoAmos/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/TanJieHaoAmos/ip.git (master) completed! +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SuspectBlue/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos INFO: [212/428] Analyzing https://github.com/SuspectBlue/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/teesha902/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/teesha902/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TanJieHaoAmos/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TanJieHaoAmos/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/h-b-k-nishi/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/TanJieHaoAmos/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SuspectBlue/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SuspectBlue/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jniaorx/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/h-b-k-nishi/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/h-b-k-nishi/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/h-b-k-nishi/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SuspectBlue/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SuspectBlue/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SuspectBlue/ip.git (master) completed! +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jniaorx/ip.git completed! +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos INFO: [213/428] Analyzing https://github.com/jniaorx/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Seethevon/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Seethevon/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jniaorx/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jniaorx/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jniaorx/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jniaorx/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jniaorx/ip.git (master) completed! +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/mogmyij/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos INFO: [214/428] Analyzing https://github.com/mogmyij/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wenruu/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wenruu/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SuspectBlue/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mogmyij/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mogmyij/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SuspectBlue/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SuspectBlue/ip.git (master) completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/darHH/ip.git completed! -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Kkenjji/ip.git... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos INFO: [215/428] Analyzing https://github.com/darHH/ip.git (master)... -Jan 25, 2025 1:04:33 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kkenjji/ip.git to complete... -Jan 25, 2025 1:04:33 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/darHH/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/darHH/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mogmyij/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jniaorx/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/teesha902/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mogmyij/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos INFO: [216/428] Analyzing https://github.com/teesha902/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/CoreySiah/ip.git... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mogmyij/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CoreySiah/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mogmyij/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/darHH/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jniaorx/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jniaorx/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/darHH/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/darHH/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mogmyij/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mogmyij/ip.git (master) completed! +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/teesha902/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/teesha902/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/darHH/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/darHH/ip.git (master) completed! +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Seethevon/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/pastchum/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepos INFO: [217/428] Analyzing https://github.com/Seethevon/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/pastchum/ip.git... +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/pastchum/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/teesha902/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Seethevon/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Seethevon/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/teesha902/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/teesha902/ip.git (master) completed! +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "CoreySiah/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/CoreySiah/ip.git' 'repos/CoreySiah_ip/ip_bare' on path . : Cloning into bare repository 'repos/CoreySiah_ip/ip_bare'... @@ -4342,263 +4348,271 @@ 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) -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gengyudong/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gengyudong/ip.git to complete... +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Seethevon/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Seethevon/ip.git (master)... +Jan 25, 2025 2:16:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Seethevon/ip.git (master) completed! +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wenruu/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepos INFO: [218/428] Analyzing https://github.com/wenruu/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/potatodudedude/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gengyudong/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/potatodudedude/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kkenjji/ip.git completed! +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wenruu/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wenruu/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kkenjji/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepos INFO: [219/428] Analyzing https://github.com/Kkenjji/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/GCheeYang/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/GCheeYang/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Seethevon/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kkenjji/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kkenjji/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/teesha902/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Seethevon/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Seethevon/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/teesha902/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/teesha902/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Kkenjji/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wenruu/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Kkenjji/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Kkenjji/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wenruu/ip.git (master)... +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wenruu/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wenruu/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/pastchum/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepos INFO: [220/428] Analyzing https://github.com/pastchum/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/flljy940/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/flljy940/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/pastchum/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/pastchum/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/pastchum/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/pastchum/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/pastchum/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gengyudong/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/potatodudedude/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepos INFO: [221/428] Analyzing https://github.com/gengyudong/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Alolononon/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bryantjandra/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [222/428] Analyzing https://github.com/potatodudedude/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bryantjandra/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Alolononon/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gengyudong/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gengyudong/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/potatodudedude/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/potatodudedude/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/potatodudedude/ip.git completed! +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepos +INFO: [222/428] Analyzing https://github.com/potatodudedude/ip.git (master)... +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bryantjandra/ip.git... +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/GCheeYang/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Junixm/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepos INFO: [223/428] Analyzing https://github.com/GCheeYang/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Junixm/ip.git... +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bryantjandra/ip.git to complete... +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Junixm/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/potatodudedude/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/potatodudedude/ip.git (master)... +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GCheeYang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GCheeYang/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/gengyudong/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/potatodudedude/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/gengyudong/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/gengyudong/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/potatodudedude/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/potatodudedude/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/GCheeYang/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/GCheeYang/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/GCheeYang/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/potatodudedude/ip.git (master)... +Jan 25, 2025 2:16:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/potatodudedude/ip.git (master)... +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/potatodudedude/ip.git (master) completed! +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/flljy940/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:01 AM reposense.report.ReportGenerator analyzeRepos INFO: [224/428] Analyzing https://github.com/flljy940/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/broccoli-hater/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:01 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/broccoli-hater/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/flljy940/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/flljy940/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/flljy940/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bryantjandra/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/flljy940/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RT0118/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [225/428] Analyzing https://github.com/bryantjandra/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Alolononon/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/flljy940/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Alolononon/ip.git completed! +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [225/428] Analyzing https://github.com/Alolononon/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RT0118/ip.git... +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/RT0118/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [226/428] Analyzing https://github.com/Alolononon/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/luna-ortus-cor/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/luna-ortus-cor/ip.git to complete... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bryantjandra/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bryantjandra/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Alolononon/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Alolononon/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bryantjandra/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bryantjandra/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bryantjandra/ip.git (master) completed! -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Junixm/ip.git completed! -Jan 25, 2025 1:04:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [227/428] Analyzing https://github.com/Junixm/ip.git (master)... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tim0tay/ip.git... -Jan 25, 2025 1:04:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tim0tay/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [226/428] Analyzing https://github.com/Junixm/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/luna-ortus-cor/ip.git... +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/luna-ortus-cor/ip.git to complete... +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Junixm/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Junixm/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bryantjandra/ip.git completed! +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [227/428] Analyzing https://github.com/bryantjandra/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tim0tay/ip.git... +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tim0tay/ip.git to complete... +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bryantjandra/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bryantjandra/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Alolononon/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Alolononon/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Alolononon/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bryantjandra/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bryantjandra/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bryantjandra/ip.git (master) completed! +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Junixm/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Junixm/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Junixm/ip.git (master) completed! +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/broccoli-hater/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepos INFO: [228/428] Analyzing https://github.com/broccoli-hater/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/shawnnygoh/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/shawnnygoh/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Junixm/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/broccoli-hater/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/broccoli-hater/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Junixm/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Junixm/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/broccoli-hater/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/broccoli-hater/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/broccoli-hater/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/RT0118/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepos INFO: [229/428] Analyzing https://github.com/RT0118/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Mil-leon/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Mil-leon/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/RT0118/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/RT0118/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/luna-ortus-cor/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [230/428] Analyzing https://github.com/luna-ortus-cor/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jeronkk/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [230/428] Analyzing https://github.com/luna-ortus-cor/ip.git (master)... +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jeronkk/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:02 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/tim0tay/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/luna-ortus-cor/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/luna-ortus-cor/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepos INFO: [231/428] Analyzing https://github.com/tim0tay/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/wyongqiing/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/wyongqiing/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/luna-ortus-cor/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/luna-ortus-cor/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tim0tay/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tim0tay/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RT0118/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/shawnnygoh/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepos INFO: [232/428] Analyzing https://github.com/shawnnygoh/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/veehz/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RT0118/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RT0118/ip.git (master) completed! +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/veehz/ip.git to complete... +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shawnnygoh/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shawnnygoh/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tim0tay/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "jeronkk/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/jeronkk/ip.git' 'repos/jeronkk_ip/ip_bare' on path . : Cloning into bare repository 'repos/jeronkk_ip/ip_bare'... @@ -4614,93 +4628,83 @@ 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) -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/adwinang/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/veehz/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shawnnygoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shawnnygoh/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/adwinang/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RT0118/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RT0118/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RT0118/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tim0tay/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tim0tay/ip.git (master) completed! +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shawnnygoh/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shawnnygoh/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shawnnygoh/ip.git (master) completed! +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor generateFileInfo +WARNING: File "data/words.txt" has 4234910B size. The file size limit is set at 500000B. Exact line diffs will be excluded from report... +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Mil-leon/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepos INFO: [233/428] Analyzing https://github.com/Mil-leon/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/danplatypus30/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/danplatypus30/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Mil-leon/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Mil-leon/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tim0tay/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tim0tay/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tim0tay/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shawnnygoh/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shawnnygoh/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shawnnygoh/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/wyongqiing/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/WilkinsAng/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepos INFO: [234/428] Analyzing https://github.com/wyongqiing/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/WilkinsAng/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Mil-leon/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wyongqiing/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wyongqiing/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/adwinang/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor generateFileInfo -WARNING: File "data/words.txt" has 4234910B size. The file size limit is set at 500000B. Exact line diffs will be excluded from report... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Mil-leon/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Mil-leon/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Mil-leon/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [235/428] Analyzing https://github.com/adwinang/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wyongqiing/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/veehz/ip.git completed! +Jan 25, 2025 2:16:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wyongqiing/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wyongqiing/ip.git (master) completed! +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/arshinsikka/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [235/428] Analyzing https://github.com/veehz/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/arshinsikka/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/veehz/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/adwinang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/adwinang/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/adwinang/ip.git completed! +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/veehz/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/veehz/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [236/428] Analyzing https://github.com/adwinang/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/laishuya/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [236/428] Analyzing https://github.com/veehz/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wyongqiing/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/laishuya/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wyongqiing/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wyongqiing/ip.git (master) completed! -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/adwinang/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/adwinang/ip.git (master)... +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "WilkinsAng/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/WilkinsAng/ip.git' 'repos/WilkinsAng_ip/ip_bare' on path . : Cloning into bare repository 'repos/WilkinsAng_ip/ip_bare'... @@ -4716,375 +4720,369 @@ 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) -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/aquaimpact/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:03 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/aquaimpact/ip.git to complete... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/adwinang/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/adwinang/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/adwinang/ip.git (master) completed! +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/danplatypus30/ip.git completed! -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/veehz/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/veehz/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shelialia/ip.git... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepos INFO: [237/428] Analyzing https://github.com/danplatypus30/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shelialia/ip.git... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shelialia/ip.git to complete... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/danplatypus30/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/danplatypus30/ip.git (master)... -Jan 25, 2025 1:04:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shelialia/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/adwinang/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/adwinang/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/adwinang/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/veehz/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/danplatypus30/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/danplatypus30/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/danplatypus30/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/veehz/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/veehz/ip.git (master) completed! +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/arshinsikka/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepos INFO: [238/428] Analyzing https://github.com/arshinsikka/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LF1928/ip.git... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LF1928/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/laishuya/ip.git completed! +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Charlesl12/ip.git... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [239/428] Analyzing https://github.com/laishuya/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Charlesl12/ip.git to complete... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/arshinsikka/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/arshinsikka/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shelialia/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/laishuya/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/laishuya/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/laishuya/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/aquaimpact/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [239/428] Analyzing https://github.com/shelialia/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Charlesl12/ip.git... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [240/428] Analyzing https://github.com/aquaimpact/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/hzk-lab/ip.git... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/castryl/ip.git... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Charlesl12/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/castryl/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/arshinsikka/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shelialia/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shelialia/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hzk-lab/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/arshinsikka/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/aquaimpact/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/aquaimpact/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/arshinsikka/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/arshinsikka/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [240/428] Analyzing https://github.com/laishuya/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/laishuya/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/laishuya/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/veehz/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/laishuya/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LF1928/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/amir-dha/ip.git... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/veehz/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/veehz/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [241/428] Analyzing https://github.com/aquaimpact/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/amir-dha/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/laishuya/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/laishuya/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [242/428] Analyzing https://github.com/LF1928/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/aquaimpact/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/aquaimpact/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/aquaimpact/ip.git (master) completed! +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shelialia/ip.git completed! +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [241/428] Analyzing https://github.com/shelialia/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/castryl/ip.git... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/castryl/ip.git to complete... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shelialia/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shelialia/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shelialia/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hzk-lab/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/aquaimpact/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/aquaimpact/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jiangsuwangjing/ip.git... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LF1928/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LF1928/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shelialia/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shelialia/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LF1928/ip.git completed! +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [242/428] Analyzing https://github.com/LF1928/ip.git (master)... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/amir-dha/ip.git... +Jan 25, 2025 2:16:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/amir-dha/ip.git to complete... +Jan 25, 2025 2:16:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LF1928/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LF1928/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Charlesl12/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [243/428] Analyzing https://github.com/hzk-lab/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [243/428] Analyzing https://github.com/Charlesl12/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jiangsuwangjing/ip.git... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jiangsuwangjing/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Charlesl12/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Charlesl12/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Charlesl12/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LF1928/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Charlesl12/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Charlesl12/ip.git (master) completed! +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hzk-lab/ip.git completed! +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LF1928/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LF1928/ip.git (master) completed! +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [244/428] Analyzing https://github.com/hzk-lab/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Noob-No-1/ip.git... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Noob-No-1/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hzk-lab/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hzk-lab/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hzk-lab/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hzk-lab/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hzk-lab/ip.git (master) completed! +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/castryl/ip.git completed! -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [245/428] Analyzing https://github.com/castryl/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/subiloble/ip.git... -Jan 25, 2025 1:04:36 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/subiloble/ip.git to complete... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/aquaimpact/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LF1928/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LF1928/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LF1928/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/aquaimpact/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/aquaimpact/ip.git (master) completed! -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [244/428] Analyzing https://github.com/Charlesl12/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [245/428] Analyzing https://github.com/castryl/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Charlesl12/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Charlesl12/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/castryl/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/castryl/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hzk-lab/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hzk-lab/ip.git (master)... -Jan 25, 2025 1:04:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hzk-lab/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/castryl/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Charlesl12/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/castryl/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/castryl/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Charlesl12/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Charlesl12/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/amir-dha/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [246/428] Analyzing https://github.com/amir-dha/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kai824/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [246/428] Analyzing https://github.com/amir-dha/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kai824/ip.git to complete... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/amir-dha/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/amir-dha/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jiangsuwangjing/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [247/428] Analyzing https://github.com/jiangsuwangjing/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/UltimateHG/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kai824/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [247/428] Analyzing https://github.com/jiangsuwangjing/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/UltimateHG/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Noob-No-1/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/amir-dha/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jiangsuwangjing/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jiangsuwangjing/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/amir-dha/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/amir-dha/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/amir-dha/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/amir-dha/ip.git (master) completed! +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Noob-No-1/ip.git completed! +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepos INFO: [248/428] Analyzing https://github.com/Noob-No-1/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/liy722/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/liy722/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/subiloble/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jiangsuwangjing/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Noob-No-1/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Noob-No-1/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jiancheng37/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jiancheng37/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jiangsuwangjing/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jiangsuwangjing/ip.git (master) completed! +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Noob-No-1/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Noob-No-1/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Noob-No-1/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/subiloble/ip.git completed! +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepos INFO: [249/428] Analyzing https://github.com/subiloble/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/amir-dha/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jiangsuwangjing/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jiancheng37/ip.git... +Jan 25, 2025 2:16:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jiancheng37/ip.git to complete... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/subiloble/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/subiloble/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/amir-dha/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/amir-dha/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jiangsuwangjing/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jiangsuwangjing/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/subiloble/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/subiloble/ip.git (master)... +Jan 25, 2025 2:16:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/subiloble/ip.git (master) completed! +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kai824/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepos INFO: [250/428] Analyzing https://github.com/kai824/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gohlucas/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/gohlucas/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kai824/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kai824/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/subiloble/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/UltimateHG/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/liy722/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepos INFO: [251/428] Analyzing https://github.com/UltimateHG/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/farhan-navas/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/monobeartae/ip.git... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/subiloble/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/subiloble/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [252/428] Analyzing https://github.com/liy722/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/monobeartae/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/farhan-navas/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/liy722/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/liy722/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/UltimateHG/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/UltimateHG/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jiancheng37/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LeeJiaWei23/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LeeJiaWei23/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kai824/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kai824/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kai824/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/UltimateHG/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/UltimateHG/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/UltimateHG/ip.git (master) completed! +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/liy722/ip.git completed! +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [252/428] Analyzing https://github.com/liy722/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/monobeartae/ip.git... +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/monobeartae/ip.git to complete... +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/liy722/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/liy722/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jiancheng37/ip.git completed! +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepos INFO: [253/428] Analyzing https://github.com/jiancheng37/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LeeJiaWei23/ip.git... +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/liy722/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/UltimateHG/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LeeJiaWei23/ip.git to complete... +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/liy722/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/liy722/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/UltimateHG/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/UltimateHG/ip.git (master) completed! -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jiancheng37/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jiancheng37/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jiancheng37/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jiancheng37/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jiancheng37/ip.git (master) completed! +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gohlucas/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Hugo-Chia/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepos INFO: [254/428] Analyzing https://github.com/gohlucas/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/farhan-navas/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Hugo-Chia/ip.git... +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Hugo-Chia/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/monobeartae/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/davidfoo07/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/gohlucas/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/gohlucas/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gohlucas/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/farhan-navas/ip.git completed! +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gohlucas/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gohlucas/ip.git (master) completed! +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepos INFO: [255/428] Analyzing https://github.com/farhan-navas/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GabriellaGloria/ip.git... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GabriellaGloria/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/davidfoo07/ip.git... +Jan 25, 2025 2:16:06 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/davidfoo07/ip.git to complete... -Jan 25, 2025 1:04:37 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/farhan-navas/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/farhan-navas/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LeeJiaWei23/ip.git completed! -Jan 25, 2025 1:04:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jiancheng37/ip.git (master)... -Jan 25, 2025 1:04:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Codekrodile/ip.git... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jiancheng37/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jiancheng37/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [256/428] Analyzing https://github.com/monobeartae/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Codekrodile/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/monobeartae/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/monobeartae/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/farhan-navas/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/farhan-navas/ip.git (master)... +Jan 25, 2025 2:16:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/farhan-navas/ip.git (master) completed! +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LeeJiaWei23/ip.git completed! +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/monobeartae/ip.git completed! +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "davidfoo07/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/davidfoo07/ip.git' 'repos/davidfoo07_ip/ip_bare' on path . : Cloning into bare repository 'repos/davidfoo07_ip/ip_bare'... @@ -5100,29 +5098,41 @@ 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) -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GabriellaGloria/ip.git... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GabriellaGloria/ip.git to complete... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [256/428] Analyzing https://github.com/LeeJiaWei23/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Codekrodile/ip.git... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [257/428] Analyzing https://github.com/monobeartae/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/elizazaa/ip.git... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Codekrodile/ip.git to complete... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/elizazaa/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gohlucas/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/farhan-navas/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gohlucas/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gohlucas/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [257/428] Analyzing https://github.com/LeeJiaWei23/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/farhan-navas/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/farhan-navas/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LeeJiaWei23/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LeeJiaWei23/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/monobeartae/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/monobeartae/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Hugo-Chia/ip.git completed! +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [258/428] Analyzing https://github.com/Hugo-Chia/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zacklow28/ip.git... +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/monobeartae/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zacklow28/ip.git to complete... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "elizazaa/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/elizazaa/ip.git' 'repos/elizazaa_ip/ip_bare' on path . : Cloning into bare repository 'repos/elizazaa_ip/ip_bare'... @@ -5138,131 +5148,145 @@ 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) -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zacklow28/ip.git... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Hugo-Chia/ip.git completed! -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zacklow28/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [258/428] Analyzing https://github.com/Hugo-Chia/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/basil-boh/ip.git... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GabriellaGloria/ip.git completed! -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/darrenchooji/ip.git... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/basil-boh/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/darrenchooji/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/monobeartae/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/monobeartae/ip.git (master) completed! +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Hugo-Chia/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Hugo-Chia/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/basil-boh/ip.git to complete... +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LeeJiaWei23/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LeeJiaWei23/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LeeJiaWei23/ip.git (master) completed! +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Hugo-Chia/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Hugo-Chia/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Hugo-Chia/ip.git (master) completed! +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Codekrodile/ip.git completed! -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/monobeartae/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [259/428] Analyzing https://github.com/Codekrodile/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/darrenchooji/ip.git... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/darrenchooji/ip.git to complete... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Codekrodile/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Codekrodile/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GabriellaGloria/ip.git completed! +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/0x4F776C/ip.git... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/monobeartae/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/monobeartae/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [259/428] Analyzing https://github.com/GabriellaGloria/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [260/428] Analyzing https://github.com/GabriellaGloria/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/0x4F776C/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Codekrodile/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GabriellaGloria/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GabriellaGloria/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Hugo-Chia/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LeeJiaWei23/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Hugo-Chia/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Hugo-Chia/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LeeJiaWei23/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [260/428] Analyzing https://github.com/Codekrodile/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Codekrodile/ip.git (master)... +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Codekrodile/ip.git (master) completed! +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zacklow28/ip.git completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LeeJiaWei23/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator analyzeRepos INFO: [261/428] Analyzing https://github.com/zacklow28/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Meatsushi64/ip.git... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:07 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Meatsushi64/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Codekrodile/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Codekrodile/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zacklow28/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zacklow28/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/basil-boh/ip.git completed! -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/GabriellaGloria/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NhatMinh0208/ip.git... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NhatMinh0208/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/darrenchooji/ip.git completed! -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jodielzy/ip.git... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/GabriellaGloria/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/GabriellaGloria/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zacklow28/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zacklow28/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zacklow28/ip.git (master) completed! +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/basil-boh/ip.git completed! +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NhatMinh0208/ip.git... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepos INFO: [262/428] Analyzing https://github.com/basil-boh/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jodielzy/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Codekrodile/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/0x4F776C/ip.git completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NhatMinh0208/ip.git to complete... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/basil-boh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/basil-boh/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Xzh119/ip.git... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Codekrodile/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Codekrodile/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/basil-boh/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/darrenchooji/ip.git completed! +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jodielzy/ip.git... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepos INFO: [263/428] Analyzing https://github.com/darrenchooji/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Xzh119/ip.git to complete... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jodielzy/ip.git to complete... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/darrenchooji/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/basil-boh/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/basil-boh/ip.git (master) completed! +Jan 25, 2025 2:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/darrenchooji/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zacklow28/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zacklow28/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zacklow28/ip.git (master) completed! -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/0x4F776C/ip.git completed! +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepos INFO: [264/428] Analyzing https://github.com/0x4F776C/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Xzh119/ip.git... +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Xzh119/ip.git to complete... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/0x4F776C/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/0x4F776C/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Meatsushi64/ip.git completed! +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/darrenchooji/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [265/428] Analyzing https://github.com/Meatsushi64/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/leeyenshen/ip.git... +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/leeyenshen/ip.git to complete... +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/darrenchooji/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/darrenchooji/ip.git (master) completed! +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Meatsushi64/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Meatsushi64/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Xzh119/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Xzh119/ip.git' 'repos/Xzh119_ip/ip_bare' on path . : Cloning into bare repository 'repos/Xzh119_ip/ip_bare'... @@ -5278,423 +5302,497 @@ 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) -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/leeyenshen/ip.git... -Jan 25, 2025 1:04:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/basil-boh/ip.git (master)... -Jan 25, 2025 1:04:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/leeyenshen/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/basil-boh/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/basil-boh/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/darrenchooji/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/darrenchooji/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/darrenchooji/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Meatsushi64/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [265/428] Analyzing https://github.com/Meatsushi64/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ki1r0/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NhatMinh0208/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ki1r0/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/0x4F776C/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/0x4F776C/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/0x4F776C/ip.git (master) completed! +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NhatMinh0208/ip.git completed! +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepos INFO: [266/428] Analyzing https://github.com/NhatMinh0208/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/karthu0301/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/karthu0301/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Meatsushi64/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Meatsushi64/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jodielzy/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kennethsoh/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NhatMinh0208/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NhatMinh0208/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kennethsoh/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/0x4F776C/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/0x4F776C/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/0x4F776C/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Meatsushi64/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Meatsushi64/ip.git (master)... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Meatsushi64/ip.git (master) completed! +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jodielzy/ip.git completed! +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepos INFO: [267/428] Analyzing https://github.com/jodielzy/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kennethsoh/ip.git... +Jan 25, 2025 2:16:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kennethsoh/ip.git to complete... +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jodielzy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jodielzy/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leeyenshen/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/angjozee/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/angjozee/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/NhatMinh0208/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ki1r0/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NhatMinh0208/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NhatMinh0208/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [268/428] Analyzing https://github.com/leeyenshen/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/deberinoo/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/karthu0301/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/deberinoo/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lilduckling/ip.git... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jodielzy/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kennethsoh/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lilduckling/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leeyenshen/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leeyenshen/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChinZJ/ip.git... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jodielzy/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jodielzy/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leeyenshen/ip.git completed! +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [268/428] Analyzing https://github.com/leeyenshen/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/angjozee/ip.git... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/angjozee/ip.git to complete... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leeyenshen/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leeyenshen/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ki1r0/ip.git completed! +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/deberinoo/ip.git... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepos INFO: [269/428] Analyzing https://github.com/ki1r0/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChinZJ/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Meatsushi64/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Meatsushi64/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Meatsushi64/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [270/428] Analyzing https://github.com/karthu0301/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/deberinoo/ip.git to complete... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ki1r0/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ki1r0/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leeyenshen/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leeyenshen/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/karthu0301/ip.git completed! +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leeyenshen/ip.git (master) completed! +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [270/428] Analyzing https://github.com/karthu0301/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lilduckling/ip.git... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lilduckling/ip.git to complete... +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ki1r0/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/karthu0301/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/karthu0301/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ki1r0/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/angjozee/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ki1r0/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ki1r0/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/themintchoco/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kennethsoh/ip.git completed! +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepos INFO: [271/428] Analyzing https://github.com/kennethsoh/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/themintchoco/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChinZJ/ip.git... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChinZJ/ip.git to complete... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kennethsoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kennethsoh/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/karthu0301/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leeyenshen/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leeyenshen/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leeyenshen/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [272/428] Analyzing https://github.com/angjozee/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/karthu0301/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/karthu0301/ip.git (master) completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lilduckling/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [273/428] Analyzing https://github.com/lilduckling/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/crmlatte/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/deberinoo/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/crmlatte/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChinZJ/ip.git completed! -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kennethsoh/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kennethsoh/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kennethsoh/ip.git (master) completed! +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/angjozee/ip.git completed! +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [272/428] Analyzing https://github.com/angjozee/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/themintchoco/ip.git... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/themintchoco/ip.git to complete... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/angjozee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/angjozee/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/deberinoo/ip.git completed! +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [273/428] Analyzing https://github.com/deberinoo/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/crmlatte/ip.git... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/crmlatte/ip.git to complete... +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/angjozee/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/angjozee/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/angjozee/ip.git (master) completed! +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/deberinoo/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/deberinoo/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/deberinoo/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lilduckling/ip.git completed! +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/pang-yy/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [274/428] Analyzing https://github.com/lilduckling/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/deberinoo/ip.git (master)... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/deberinoo/ip.git (master) completed! +Jan 25, 2025 2:16:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/pang-yy/ip.git to complete... +Jan 25, 2025 2:16:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lilduckling/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lilduckling/ip.git (master)... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DengTianle/ip.git... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/pang-yy/ip.git to complete... -Jan 25, 2025 1:04:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DengTianle/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kennethsoh/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kennethsoh/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kennethsoh/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [274/428] Analyzing https://github.com/deberinoo/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lilduckling/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/deberinoo/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/deberinoo/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/angjozee/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/themintchoco/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChinZJ/ip.git completed! +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [275/428] Analyzing https://github.com/ChinZJ/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DengTianle/ip.git... +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lilduckling/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DengTianle/ip.git to complete... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lilduckling/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/itsapaulblem/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [275/428] Analyzing https://github.com/ChinZJ/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/itsapaulblem/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/angjozee/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/angjozee/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [276/428] Analyzing https://github.com/themintchoco/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChinZJ/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChinZJ/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/crmlatte/ip.git completed! +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/themintchoco/ip.git completed! +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [276/428] Analyzing https://github.com/crmlatte/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/itsapaulblem/ip.git... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/itsapaulblem/ip.git to complete... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [277/428] Analyzing https://github.com/themintchoco/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicholasohjj/ip.git... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicholasohjj/ip.git to complete... +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChinZJ/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/themintchoco/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/themintchoco/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/crmlatte/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/crmlatte/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/crmlatte/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChinZJ/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChinZJ/ip.git (master) completed! +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/pang-yy/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DengTianle/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicholasohjj/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cscms03/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/brvndonkoh/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [278/428] Analyzing https://github.com/pang-yy/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cscms03/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicholasohjj/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/brvndonkoh/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/deberinoo/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/deberinoo/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/deberinoo/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [277/428] Analyzing https://github.com/pang-yy/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/crmlatte/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/crmlatte/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/crmlatte/ip.git (master) completed! +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/pang-yy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/pang-yy/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itsapaulblem/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xenyeo/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xenyeo/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/themintchoco/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicholasohjj/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/themintchoco/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/themintchoco/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [278/428] Analyzing https://github.com/crmlatte/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cscms03/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/weiyanminoo/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/brvndonkoh/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/weiyanminoo/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Golddirio/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/crmlatte/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/crmlatte/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SherrinfordHR/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Golddirio/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SherrinfordHR/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChinZJ/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChinZJ/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChinZJ/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DengTianle/ip.git completed! +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepos INFO: [279/428] Analyzing https://github.com/DengTianle/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/brvndonkoh/ip.git... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/brvndonkoh/ip.git to complete... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/DengTianle/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/DengTianle/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/pang-yy/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/crmlatte/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/pang-yy/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/pang-yy/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/DengTianle/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/DengTianle/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [280/428] Analyzing https://github.com/itsapaulblem/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xenyeo/ip.git completed! -Jan 25, 2025 1:04:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/crmlatte/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/crmlatte/ip.git (master) completed! -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [281/428] Analyzing https://github.com/nicholasohjj/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ShiJianXi/ip.git... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/itsapaulblem/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/itsapaulblem/ip.git (master)... -Jan 25, 2025 1:04:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ShiJianXi/ip.git to complete... -Jan 25, 2025 1:04:40 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/themintchoco/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/themintchoco/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/themintchoco/ip.git (master) completed! +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DengTianle/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/DengTianle/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/DengTianle/ip.git (master) completed! +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicholasohjj/ip.git completed! +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [280/428] Analyzing https://github.com/nicholasohjj/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xenyeo/ip.git... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xenyeo/ip.git to complete... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itsapaulblem/ip.git completed! +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [281/428] Analyzing https://github.com/itsapaulblem/ip.git (master)... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/weiyanminoo/ip.git... +Jan 25, 2025 2:16:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/weiyanminoo/ip.git to complete... +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nicholasohjj/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nicholasohjj/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/itsapaulblem/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/itsapaulblem/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cscms03/ip.git completed! +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [282/428] Analyzing https://github.com/cscms03/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Golddirio/ip.git... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Golddirio/ip.git to complete... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cscms03/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cscms03/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicholasohjj/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nicholasohjj/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nicholasohjj/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/brvndonkoh/ip.git completed! +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SherrinfordHR/ip.git... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [283/428] Analyzing https://github.com/brvndonkoh/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SherrinfordHR/ip.git to complete... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/brvndonkoh/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/brvndonkoh/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/itsapaulblem/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/itsapaulblem/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/itsapaulblem/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cscms03/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cscms03/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cscms03/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/brvndonkoh/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/brvndonkoh/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/brvndonkoh/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/weiyanminoo/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [284/428] Analyzing https://github.com/weiyanminoo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ShiJianXi/ip.git... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ShiJianXi/ip.git to complete... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/luna-ortus-cor/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/weiyanminoo/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/weiyanminoo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xenyeo/ip.git completed! +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SomneelSaha2004/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [285/428] Analyzing https://github.com/xenyeo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/weiyanminoo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SomneelSaha2004/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/weiyanminoo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/weiyanminoo/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xenyeo/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xenyeo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/luna-ortus-cor/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/luna-ortus-cor/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Golddirio/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xenyeo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [286/428] Analyzing https://github.com/Golddirio/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/varsha13152/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/varsha13152/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xenyeo/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xenyeo/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Golddirio/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Golddirio/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SherrinfordHR/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [287/428] Analyzing https://github.com/SherrinfordHR/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AnAfterthought/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:11 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AnAfterthought/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DengTianle/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/DengTianle/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/DengTianle/ip.git (master) completed! -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [282/428] Analyzing https://github.com/cscms03/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicholasohjj/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Golddirio/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SherrinfordHR/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SherrinfordHR/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Golddirio/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Golddirio/ip.git (master) completed! +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SherrinfordHR/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SherrinfordHR/ip.git (master)... +Jan 25, 2025 2:16:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SherrinfordHR/ip.git (master) completed! +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ShiJianXi/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [288/428] Analyzing https://github.com/ShiJianXi/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/philbertshea/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cscms03/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cscms03/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nicholasohjj/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nicholasohjj/ip.git (master) completed! -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [283/428] Analyzing https://github.com/brvndonkoh/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/philbertshea/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/brvndonkoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/brvndonkoh/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ShiJianXi/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ShiJianXi/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SomneelSaha2004/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NoahKoh/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/varsha13152/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [289/428] Analyzing https://github.com/SomneelSaha2004/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/NoahKoh/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AnAfterthought/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SomneelSaha2004/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SomneelSaha2004/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ShiJianXi/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SomneelSaha2004/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ShiJianXi/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ShiJianXi/ip.git (master) completed! +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SomneelSaha2004/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SomneelSaha2004/ip.git (master) completed! +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/varsha13152/ip.git completed! +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [290/428] Analyzing https://github.com/varsha13152/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/szelingtan/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/szelingtan/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/varsha13152/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/varsha13152/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AnAfterthought/ip.git completed! +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [291/428] Analyzing https://github.com/AnAfterthought/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/geeliette/ip.git... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/itsapaulblem/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/geeliette/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/itsapaulblem/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/itsapaulblem/ip.git (master) completed! -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [284/428] Analyzing https://github.com/xenyeo/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xenyeo/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xenyeo/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/brvndonkoh/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/brvndonkoh/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/brvndonkoh/ip.git (master) completed! -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [285/428] Analyzing https://github.com/weiyanminoo/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cscms03/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AnAfterthought/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AnAfterthought/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AnAfterthought/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AnAfterthought/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AnAfterthought/ip.git (master) completed! +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/varsha13152/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/varsha13152/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/varsha13152/ip.git (master) completed! +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "geeliette/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/geeliette/ip.git' 'repos/geeliette_ip/ip_bare' on path . : Cloning into bare repository 'repos/geeliette_ip/ip_bare'... @@ -5710,201 +5808,293 @@ 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) -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kylieluk88/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kylieluk88/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/weiyanminoo/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/weiyanminoo/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cscms03/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cscms03/ip.git (master) completed! -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [286/428] Analyzing https://github.com/Golddirio/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/philbertshea/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/chen-xiangrui/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Golddirio/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Golddirio/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NoahKoh/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [292/428] Analyzing https://github.com/philbertshea/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/chen-xiangrui/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/philbertshea/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/philbertshea/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NoahKoh/ip.git completed! +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Eun777/ip.git... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/szelingtan/ip.git completed! -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [293/428] Analyzing https://github.com/NoahKoh/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Eun777/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NoahKoh/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NoahKoh/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NoahKoh/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NoahKoh/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NoahKoh/ip.git (master) completed! +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/philbertshea/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/philbertshea/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/philbertshea/ip.git (master) completed! +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/szelingtan/ip.git completed! +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [294/428] Analyzing https://github.com/szelingtan/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Zerolegacy/ip.git... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/weiyanminoo/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Zerolegacy/ip.git to complete... -Jan 25, 2025 1:04:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/weiyanminoo/ip.git (master)... -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/weiyanminoo/ip.git (master) completed! -Jan 25, 2025 1:04:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [287/428] Analyzing https://github.com/SherrinfordHR/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SherrinfordHR/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SherrinfordHR/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/szelingtan/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/szelingtan/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/szelingtan/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/szelingtan/ip.git (master)... +Jan 25, 2025 2:16:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/szelingtan/ip.git (master) completed! +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kylieluk88/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [295/428] Analyzing https://github.com/kylieluk88/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/bryonk/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/bryonk/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Golddirio/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Golddirio/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Golddirio/ip.git (master) completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [288/428] Analyzing https://github.com/ShiJianXi/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kylieluk88/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kylieluk88/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kylieluk88/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/chen-xiangrui/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [296/428] Analyzing https://github.com/chen-xiangrui/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kararei/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Eun777/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ShiJianXi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ShiJianXi/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xplus2g4/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kararei/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Zerolegacy/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SherrinfordHR/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kylieluk88/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kylieluk88/ip.git (master) completed! +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chen-xiangrui/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chen-xiangrui/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [297/428] Analyzing https://github.com/Eun777/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xplus2g4/ip.git... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xplus2g4/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Eun777/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Eun777/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chen-xiangrui/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chen-xiangrui/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chen-xiangrui/ip.git (master) completed! +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Eun777/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Eun777/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Eun777/ip.git (master) completed! +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Zerolegacy/ip.git completed! +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [298/428] Analyzing https://github.com/Zerolegacy/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/soonami69/ip.git... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SherrinfordHR/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SherrinfordHR/ip.git (master) completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [289/428] Analyzing https://github.com/SomneelSaha2004/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/soonami69/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xenyeo/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xenyeo/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xenyeo/ip.git (master) completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [290/428] Analyzing https://github.com/varsha13152/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SomneelSaha2004/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SomneelSaha2004/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Zerolegacy/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Zerolegacy/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zerolegacy/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zerolegacy/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zerolegacy/ip.git (master) completed! +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/bryonk/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/varsha13152/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/varsha13152/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [299/428] Analyzing https://github.com/bryonk/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/BladerX11/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/BladerX11/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bryonk/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bryonk/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bryonk/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kararei/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [300/428] Analyzing https://github.com/kararei/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/charlenelau-20/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bryonk/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bryonk/ip.git (master) completed! +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/charlenelau-20/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/xplus2g4/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kararei/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kararei/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [301/428] Analyzing https://github.com/xplus2g4/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/carineang/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/soonami69/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/carineang/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xplus2g4/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xplus2g4/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kararei/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kararei/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kararei/ip.git (master) completed! +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xplus2g4/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xplus2g4/ip.git (master)... +Jan 25, 2025 2:16:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xplus2g4/ip.git (master) completed! +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/soonami69/ip.git completed! +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [302/428] Analyzing https://github.com/soonami69/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/codebreaker64/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/codebreaker64/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ShiJianXi/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SomneelSaha2004/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ShiJianXi/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ShiJianXi/ip.git (master) completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [291/428] Analyzing https://github.com/AnAfterthought/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SomneelSaha2004/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SomneelSaha2004/ip.git (master) completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [292/428] Analyzing https://github.com/philbertshea/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/soonami69/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/soonami69/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/soonami69/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/soonami69/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/soonami69/ip.git (master) completed! +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/BladerX11/ip.git completed! -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AnAfterthought/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AnAfterthought/ip.git (master)... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [303/428] Analyzing https://github.com/BladerX11/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/OvOtter/ip.git... -Jan 25, 2025 1:04:42 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/OvOtter/ip.git to complete... -Jan 25, 2025 1:04:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/philbertshea/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/philbertshea/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/charlenelau-20/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/BladerX11/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/BladerX11/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/BladerX11/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/BladerX11/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/BladerX11/ip.git (master) completed! +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/carineang/ip.git completed! +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [304/428] Analyzing https://github.com/carineang/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jsjk112344/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jsjk112344/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/carineang/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/charlenelau-20/ip.git completed! +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [305/428] Analyzing https://github.com/charlenelau-20/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jaylontan/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/carineang/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/carineang/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jaylontan/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/charlenelau-20/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/charlenelau-20/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/carineang/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/carineang/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/charlenelau-20/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/carineang/ip.git (master) completed! +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/charlenelau-20/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/charlenelau-20/ip.git (master) completed! +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/codebreaker64/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/rannn367/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [306/428] Analyzing https://github.com/codebreaker64/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/rannn367/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/varsha13152/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/varsha13152/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/varsha13152/ip.git (master) completed! -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [293/428] Analyzing https://github.com/NoahKoh/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/codebreaker64/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/codebreaker64/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/codebreaker64/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/codebreaker64/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/codebreaker64/ip.git (master) completed! +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/OvOtter/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NoahKoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NoahKoh/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [307/428] Analyzing https://github.com/OvOtter/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Stickiem/ip.git... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Stickiem/ip.git to complete... +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/OvOtter/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/OvOtter/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "rannn367/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/rannn367/ip.git' 'repos/rannn367_ip/ip_bare' on path . : Cloning into bare repository 'repos/rannn367_ip/ip_bare'... @@ -5920,141 +6110,161 @@ 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) -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Stickiem/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Stickiem/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ryanlow64/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ryanlow64/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AnAfterthought/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/OvOtter/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/OvOtter/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/OvOtter/ip.git (master) completed! +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Jsjk112344/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [308/428] Analyzing https://github.com/Jsjk112344/ip.git (master)... +Jan 25, 2025 2:16:14 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/feliciahmq/ip.git... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AnAfterthought/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AnAfterthought/ip.git (master) completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jaylontan/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [294/428] Analyzing https://github.com/szelingtan/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/feliciahmq/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jaylontan/ip.git completed! +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [309/428] Analyzing https://github.com/jaylontan/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gajinkee/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jsjk112344/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jsjk112344/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/gajinkee/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/szelingtan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/szelingtan/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NoahKoh/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/philbertshea/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NoahKoh/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NoahKoh/ip.git (master) completed! -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [295/428] Analyzing https://github.com/kylieluk88/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jaylontan/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jaylontan/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jsjk112344/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jsjk112344/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jsjk112344/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jaylontan/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jaylontan/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jaylontan/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Stickiem/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/philbertshea/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/philbertshea/ip.git (master) completed! -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [296/428] Analyzing https://github.com/chen-xiangrui/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [310/428] Analyzing https://github.com/Stickiem/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/mihirniyogi/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kylieluk88/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kylieluk88/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ryanlow64/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/mihirniyogi/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Stickiem/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Stickiem/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Stickiem/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ryanlow64/ip.git completed! +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [311/428] Analyzing https://github.com/ryanlow64/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Frozennfishh/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Frozennfishh/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chen-xiangrui/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chen-xiangrui/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Stickiem/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Stickiem/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ryanlow64/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ryanlow64/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ryanlow64/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ryanlow64/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ryanlow64/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/feliciahmq/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [312/428] Analyzing https://github.com/feliciahmq/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Benjam11n/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gajinkee/ip.git completed! -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Benjam11n/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gajinkee/ip.git completed! +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/feliciahmq/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/feliciahmq/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [313/428] Analyzing https://github.com/gajinkee/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/gekjunxu/ip.git... -Jan 25, 2025 1:04:43 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/gekjunxu/ip.git to complete... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/szelingtan/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/szelingtan/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/szelingtan/ip.git (master) completed! -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [297/428] Analyzing https://github.com/Eun777/ip.git (master)... -Jan 25, 2025 1:04:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Eun777/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Eun777/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kylieluk88/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kylieluk88/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kylieluk88/ip.git (master) completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [298/428] Analyzing https://github.com/Zerolegacy/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gajinkee/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gajinkee/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gajinkee/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/feliciahmq/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gajinkee/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gajinkee/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/feliciahmq/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/feliciahmq/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/mihirniyogi/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [314/428] Analyzing https://github.com/mihirniyogi/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/mistyk786/ip.git... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chen-xiangrui/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mistyk786/ip.git to complete... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/mihirniyogi/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/mihirniyogi/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mihirniyogi/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mihirniyogi/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mihirniyogi/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Frozennfishh/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Zerolegacy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Zerolegacy/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [315/428] Analyzing https://github.com/Frozennfishh/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jordon0802/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mistyk786/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jordon0802/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chen-xiangrui/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chen-xiangrui/ip.git (master) completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [299/428] Analyzing https://github.com/bryonk/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Benjam11n/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bryonk/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bryonk/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mervyn-teo/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mervyn-teo/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Frozennfishh/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Frozennfishh/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Frozennfishh/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Frozennfishh/ip.git (master)... +Jan 25, 2025 2:16:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Frozennfishh/ip.git (master) completed! +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "mistyk786/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/mistyk786/ip.git' 'repos/mistyk786_ip/ip_bare' on path . : Cloning into bare repository 'repos/mistyk786_ip/ip_bare'... @@ -6070,87 +6280,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) -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mervyn-teo/ip.git... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mervyn-teo/ip.git to complete... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Benjam11n/ip.git completed! +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [316/428] Analyzing https://github.com/Benjam11n/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JunXiang26/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JunXiang26/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/gekjunxu/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Benjam11n/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Benjam11n/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [317/428] Analyzing https://github.com/gekjunxu/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/salads-source/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/salads-source/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zerolegacy/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Eun777/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zerolegacy/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zerolegacy/ip.git (master) completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [300/428] Analyzing https://github.com/kararei/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Eun777/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Eun777/ip.git (master) completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [301/428] Analyzing https://github.com/xplus2g4/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kararei/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kararei/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xplus2g4/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xplus2g4/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kararei/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kararei/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kararei/ip.git (master) completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [302/428] Analyzing https://github.com/soonami69/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gekjunxu/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gekjunxu/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gekjunxu/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Benjam11n/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gekjunxu/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gekjunxu/ip.git (master) completed! +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Benjam11n/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Benjam11n/ip.git (master) completed! +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jordon0802/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/soonami69/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/soonami69/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bryonk/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mervyn-teo/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [318/428] Analyzing https://github.com/jordon0802/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/arnavbajpai/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/arnavbajpai/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JunXiang26/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bryonk/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bryonk/ip.git (master) completed! -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jordon0802/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jordon0802/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jordon0802/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mervyn-teo/ip.git completed! +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [319/428] Analyzing https://github.com/mervyn-teo/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AndreChia/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZaydM18/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [303/428] Analyzing https://github.com/BladerX11/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZaydM18/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/salads-source/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jordon0802/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AndreChia/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/BladerX11/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/BladerX11/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Taoseeker/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jordon0802/ip.git (master) completed! +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/mervyn-teo/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/mervyn-teo/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "arnavbajpai/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/arnavbajpai/ip.git' 'repos/arnavbajpai_ip/ip_bare' on path . : Cloning into bare repository 'repos/arnavbajpai_ip/ip_bare'... @@ -6166,1383 +6366,1191 @@ 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) -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/junngithub/ip.git... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZaydM18/ip.git... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZaydM18/ip.git to complete... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JunXiang26/ip.git completed! +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [320/428] Analyzing https://github.com/JunXiang26/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Taoseeker/ip.git... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mervyn-teo/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Taoseeker/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xplus2g4/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mervyn-teo/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JunXiang26/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JunXiang26/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mervyn-teo/ip.git (master) completed! +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/salads-source/ip.git completed! +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/junngithub/ip.git... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [321/428] Analyzing https://github.com/salads-source/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/junngithub/ip.git to complete... -Jan 25, 2025 1:04:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xplus2g4/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xplus2g4/ip.git (master) completed! -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [304/428] Analyzing https://github.com/charlenelau-20/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/charlenelau-20/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/charlenelau-20/ip.git (master)... -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZaydM18/ip.git completed! -Jan 25, 2025 1:04:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/0xF41/ip.git... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/soonami69/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/salads-source/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/salads-source/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JunXiang26/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JunXiang26/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JunXiang26/ip.git (master) completed! +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/salads-source/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/salads-source/ip.git (master)... +Jan 25, 2025 2:16:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/salads-source/ip.git (master) completed! +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AndreChia/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [322/428] Analyzing https://github.com/AndreChia/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/0xF41/ip.git... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/0xF41/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AndreChia/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AndreChia/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZaydM18/ip.git completed! +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [323/428] Analyzing https://github.com/ZaydM18/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nicolaskjh/ip.git... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/soonami69/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/soonami69/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [305/428] Analyzing https://github.com/carineang/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nicolaskjh/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Taoseeker/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZaydM18/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZaydM18/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/FooNicholas/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/carineang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/carineang/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [324/428] Analyzing https://github.com/Taoseeker/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/FooNicholas/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AndreChia/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Taoseeker/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Taoseeker/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZaydM18/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AndreChia/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AndreChia/ip.git (master) completed! +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZaydM18/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZaydM18/ip.git (master) completed! +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/junngithub/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [325/428] Analyzing https://github.com/junngithub/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sherwinee/ip.git... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/charlenelau-20/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sherwinee/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/charlenelau-20/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/charlenelau-20/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [306/428] Analyzing https://github.com/codebreaker64/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/codebreaker64/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/codebreaker64/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/BladerX11/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/BladerX11/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/BladerX11/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [307/428] Analyzing https://github.com/OvOtter/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/carineang/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/codebreaker64/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/OvOtter/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/OvOtter/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/codebreaker64/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/codebreaker64/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/carineang/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/carineang/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [308/428] Analyzing https://github.com/Jsjk112344/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [309/428] Analyzing https://github.com/jaylontan/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/junngithub/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/junngithub/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Taoseeker/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Taoseeker/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Taoseeker/ip.git (master) completed! +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/junngithub/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/junngithub/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/junngithub/ip.git (master) completed! +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/0xF41/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [326/428] Analyzing https://github.com/0xF41/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ho-thanh-und/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicolaskjh/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/FooNicholas/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jsjk112344/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jsjk112344/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ho-thanh-und/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sherwinee/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kumar2215/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jaylontan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jaylontan/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KarKuen/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kumar2215/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DiligentPenguinn/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DiligentPenguinn/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KarKuen/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/OvOtter/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/OvOtter/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/OvOtter/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [310/428] Analyzing https://github.com/Stickiem/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jsjk112344/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Stickiem/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Stickiem/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jsjk112344/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jsjk112344/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [311/428] Analyzing https://github.com/ryanlow64/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jaylontan/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jaylontan/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jaylontan/ip.git (master) completed! -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [312/428] Analyzing https://github.com/feliciahmq/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ryanlow64/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ryanlow64/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ho-thanh-und/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hutongyan/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/feliciahmq/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/feliciahmq/ip.git (master)... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DiligentPenguinn/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kumar2215/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hutongyan/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xinniyee/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/noahang/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KarKuen/ip.git completed! -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xinniyee/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kevinlimantoro123/ip.git... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/noahang/ip.git to complete... -Jan 25, 2025 1:04:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kevinlimantoro123/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ryanlow64/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Stickiem/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ryanlow64/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ryanlow64/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [313/428] Analyzing https://github.com/gajinkee/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Stickiem/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Stickiem/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [314/428] Analyzing https://github.com/mihirniyogi/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gajinkee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gajinkee/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/mihirniyogi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/mihirniyogi/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hutongyan/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/feliciahmq/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shuang26/ip.git... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mihirniyogi/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shuang26/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xinniyee/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/noahang/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/feliciahmq/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/feliciahmq/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jovin-Ang/ip.git... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Clifong/ip.git... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [315/428] Analyzing https://github.com/Frozennfishh/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mihirniyogi/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mihirniyogi/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [316/428] Analyzing https://github.com/Benjam11n/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kevinlimantoro123/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Clifong/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jovin-Ang/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gajinkee/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cyrolite/ip.git... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cyrolite/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Benjam11n/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Benjam11n/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Frozennfishh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Frozennfishh/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gajinkee/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gajinkee/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [317/428] Analyzing https://github.com/gekjunxu/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gekjunxu/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gekjunxu/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Frozennfishh/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Frozennfishh/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Frozennfishh/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [318/428] Analyzing https://github.com/jordon0802/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jordon0802/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jordon0802/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shuang26/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/awlarpi/ip.git... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Benjam11n/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jovin-Ang/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/awlarpi/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wswddl/ip.git... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gekjunxu/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Benjam11n/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Clifong/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Benjam11n/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [319/428] Analyzing https://github.com/mervyn-teo/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cyrolite/ip.git completed! -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ernestlsy/ip.git... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wswddl/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Engulfy/ip.git... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gekjunxu/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gekjunxu/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Engulfy/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [320/428] Analyzing https://github.com/JunXiang26/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ernestlsy/ip.git to complete... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/mervyn-teo/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/mervyn-teo/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JunXiang26/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JunXiang26/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jordon0802/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jordon0802/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jordon0802/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [321/428] Analyzing https://github.com/salads-source/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/salads-source/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/salads-source/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JunXiang26/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JunXiang26/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JunXiang26/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [322/428] Analyzing https://github.com/ZaydM18/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/luna-ortus-cor/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZaydM18/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZaydM18/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mervyn-teo/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mervyn-teo/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mervyn-teo/ip.git (master) completed! -Jan 25, 2025 1:04:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [323/428] Analyzing https://github.com/AndreChia/ip.git (master)... -Jan 25, 2025 1:04:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZaydM18/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/awlarpi/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AndreChia/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AndreChia/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xinnnyeee/ip.git... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZaydM18/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZaydM18/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [324/428] Analyzing https://github.com/Taoseeker/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xinnnyeee/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wswddl/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Taoseeker/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Taoseeker/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Engulfy/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/deseansoh/ip.git... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/salads-source/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ernestlsy/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nikingoda/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nikingoda/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/delonlee01/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/deseansoh/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/luna-ortus-cor/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/salads-source/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/salads-source/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/luna-ortus-cor/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/delonlee01/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [325/428] Analyzing https://github.com/junngithub/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [326/428] Analyzing https://github.com/0xF41/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/junngithub/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/junngithub/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/0xF41/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/0xF41/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AndreChia/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AndreChia/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AndreChia/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicolaskjh/ip.git completed! +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos INFO: [327/428] Analyzing https://github.com/nicolaskjh/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Taoseeker/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Taoseeker/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kumar2215/ip.git... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kumar2215/ip.git to complete... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nicolaskjh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nicolaskjh/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Taoseeker/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/FooNicholas/ip.git completed! +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos INFO: [328/428] Analyzing https://github.com/FooNicholas/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KarKuen/ip.git... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/0xF41/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/junngithub/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/FooNicholas/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/FooNicholas/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KarKuen/ip.git to complete... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/0xF41/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/0xF41/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/junngithub/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/junngithub/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sherwinee/ip.git completed! +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/FooNicholas/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/FooNicholas/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepos INFO: [329/428] Analyzing https://github.com/sherwinee/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [330/428] Analyzing https://github.com/ho-thanh-und/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DiligentPenguinn/ip.git... +Jan 25, 2025 2:16:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DiligentPenguinn/ip.git to complete... +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sherwinee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sherwinee/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xinnnyeee/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ho-thanh-und/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ho-thanh-und/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nathtiekk/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nathtiekk/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/deseansoh/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nikingoda/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/CHI-ME/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HarishB99/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/CHI-ME/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/delonlee01/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HarishB99/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chenxy12345/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chenxy12345/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/FooNicholas/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/FooNicholas/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/FooNicholas/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sherwinee/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [331/428] Analyzing https://github.com/DiligentPenguinn/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicolaskjh/ip.git (master)... +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sherwinee/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/DiligentPenguinn/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/DiligentPenguinn/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sherwinee/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicolaskjh/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [332/428] Analyzing https://github.com/kumar2215/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ho-thanh-und/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ho-thanh-und/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ho-thanh-und/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kumar2215/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kumar2215/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nicolaskjh/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [333/428] Analyzing https://github.com/KarKuen/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nicolaskjh/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [334/428] Analyzing https://github.com/hutongyan/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ho-thanh-und/ip.git completed! +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [330/428] Analyzing https://github.com/ho-thanh-und/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hutongyan/ip.git... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hutongyan/ip.git to complete... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ho-thanh-und/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ho-thanh-und/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kumar2215/ip.git completed! +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [331/428] Analyzing https://github.com/kumar2215/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xinniyee/ip.git... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KarKuen/ip.git completed! +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xinniyee/ip.git to complete... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [332/428] Analyzing https://github.com/KarKuen/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/noahang/ip.git... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/noahang/ip.git to complete... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kumar2215/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kumar2215/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ho-thanh-und/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/KarKuen/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/KarKuen/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hutongyan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hutongyan/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ho-thanh-und/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ho-thanh-und/ip.git (master) completed! +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DiligentPenguinn/ip.git completed! +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kevinlimantoro123/ip.git... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [333/428] Analyzing https://github.com/DiligentPenguinn/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kevinlimantoro123/ip.git to complete... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/DiligentPenguinn/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/DiligentPenguinn/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KarKuen/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KarKuen/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KarKuen/ip.git (master) completed! +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kumar2215/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kumar2215/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kumar2215/ip.git (master) completed! +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/DiligentPenguinn/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nathtiekk/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zonnie-23/ip.git... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/DiligentPenguinn/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/DiligentPenguinn/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hutongyan/ip.git completed! +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [334/428] Analyzing https://github.com/hutongyan/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shuang26/ip.git... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shuang26/ip.git to complete... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hutongyan/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hutongyan/ip.git (master)... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xinniyee/ip.git completed! +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepos INFO: [335/428] Analyzing https://github.com/xinniyee/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zonnie-23/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KarKuen/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jovin-Ang/ip.git... +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jovin-Ang/ip.git to complete... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xinniyee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xinniyee/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KarKuen/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KarKuen/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/noahang/ip.git completed! +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Clifong/ip.git... +Jan 25, 2025 2:16:18 AM reposense.report.ReportGenerator analyzeRepos INFO: [336/428] Analyzing https://github.com/noahang/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CHI-ME/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Clifong/ip.git to complete... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kevinlimantoro123/ip.git completed! +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/noahang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/noahang/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hutongyan/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kumar2215/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zyonwee/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HarishB99/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/K1mcheee/ip.git... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kumar2215/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kumar2215/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepos INFO: [337/428] Analyzing https://github.com/kevinlimantoro123/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zyonwee/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/K1mcheee/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chenxy12345/ip.git completed! -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Liu-Jihan/ip.git... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cyrolite/ip.git... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cyrolite/ip.git to complete... +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xinniyee/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xinniyee/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hutongyan/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xinniyee/ip.git (master) completed! +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kevinlimantoro123/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kevinlimantoro123/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/hutongyan/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/hutongyan/ip.git (master) completed! -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [338/428] Analyzing https://github.com/shuang26/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Liu-Jihan/ip.git to complete... -Jan 25, 2025 1:04:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shuang26/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shuang26/ip.git (master)... -Jan 25, 2025 1:04:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xinniyee/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/noahang/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xinniyee/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xinniyee/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/noahang/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/noahang/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kevinlimantoro123/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kevinlimantoro123/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kevinlimantoro123/ip.git (master) completed! +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shuang26/ip.git completed! +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [338/428] Analyzing https://github.com/shuang26/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/awlarpi/ip.git... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/awlarpi/ip.git to complete... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shuang26/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shuang26/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jovin-Ang/ip.git completed! +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wswddl/ip.git... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepos INFO: [339/428] Analyzing https://github.com/Jovin-Ang/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [340/428] Analyzing https://github.com/Clifong/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wswddl/ip.git to complete... +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shuang26/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jovin-Ang/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jovin-Ang/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Clifong/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Clifong/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shuang26/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Zonnie-23/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shuang26/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shuang26/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Clifong/ip.git completed! +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [340/428] Analyzing https://github.com/Clifong/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ernestlsy/ip.git... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ernestlsy/ip.git to complete... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cyrolite/ip.git completed! +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Clifong/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Clifong/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepos INFO: [341/428] Analyzing https://github.com/cyrolite/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TrKNguyen/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TrKNguyen/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Engulfy/ip.git... +Jan 25, 2025 2:16:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Engulfy/ip.git to complete... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/cyrolite/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/cyrolite/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zyonwee/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/K1mcheee/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TeaMakesMePee/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/potatoems/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/potatoems/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TeaMakesMePee/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Liu-Jihan/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hhlh27/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hhlh27/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "TrKNguyen/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/TrKNguyen/ip.git' 'repos/TrKNguyen_ip/ip_bare' on path . : -Cloning into bare repository 'repos/TrKNguyen_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:275) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:218) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zihung20/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zihung20/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kevinlimantoro123/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "potatoems/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/potatoems/ip.git' 'repos/potatoems_ip/ip_bare' on path . : -Cloning into bare repository 'repos/potatoems_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:275) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:218) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hengjeekuan/ip.git... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kevinlimantoro123/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kevinlimantoro123/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hengjeekuan/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [342/428] Analyzing https://github.com/awlarpi/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/awlarpi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/awlarpi/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cyrolite/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Clifong/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cyrolite/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jovin-Ang/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cyrolite/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [343/428] Analyzing https://github.com/wswddl/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Clifong/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jovin-Ang/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jovin-Ang/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Clifong/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jovin-Ang/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [344/428] Analyzing https://github.com/Engulfy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [345/428] Analyzing https://github.com/ernestlsy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Clifong/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Clifong/ip.git (master)... +Jan 25, 2025 2:16:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Clifong/ip.git (master) completed! +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/awlarpi/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [342/428] Analyzing https://github.com/awlarpi/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xinnnyeee/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xinnnyeee/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/awlarpi/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/awlarpi/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wswddl/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [343/428] Analyzing https://github.com/wswddl/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/deseansoh/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/deseansoh/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ernestlsy/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wswddl/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wswddl/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [344/428] Analyzing https://github.com/ernestlsy/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nikingoda/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nikingoda/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ernestlsy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ernestlsy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Engulfy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Engulfy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Engulfy/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/awlarpi/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TeaMakesMePee/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [345/428] Analyzing https://github.com/Engulfy/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/delonlee01/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/delonlee01/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/awlarpi/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/awlarpi/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hrishikeshsathyian/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [346/428] Analyzing https://github.com/xinnnyeee/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hrishikeshsathyian/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xinnnyeee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xinnnyeee/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hhlh27/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kannan171/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zihung20/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kannan171/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jamesberyl/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jamesberyl/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hengjeekuan/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ryuse/ip.git... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Engulfy/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Engulfy/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wswddl/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ryuse/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Engulfy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wswddl/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wswddl/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [347/428] Analyzing https://github.com/deseansoh/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ernestlsy/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ernestlsy/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Engulfy/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ernestlsy/ip.git (master) completed! +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Engulfy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Engulfy/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [348/428] Analyzing https://github.com/nikingoda/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ernestlsy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xinnnyeee/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [346/428] Analyzing https://github.com/xinnnyeee/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nathtiekk/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nathtiekk/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xinnnyeee/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xinnnyeee/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/deseansoh/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xinnnyeee/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [347/428] Analyzing https://github.com/deseansoh/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/CHI-ME/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/CHI-ME/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xinnnyeee/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xinnnyeee/ip.git (master) completed! +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/deseansoh/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/deseansoh/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nikingoda/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HarishB99/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [348/428] Analyzing https://github.com/nikingoda/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HarishB99/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nikingoda/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nikingoda/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ernestlsy/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ernestlsy/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/delonlee01/ip.git completed! +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepos INFO: [349/428] Analyzing https://github.com/delonlee01/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xinnnyeee/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xinnnyeee/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xinnnyeee/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chenxy12345/ip.git... +Jan 25, 2025 2:16:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chenxy12345/ip.git to complete... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/delonlee01/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/delonlee01/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nikingoda/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nikingoda/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nikingoda/ip.git (master) completed! +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/delonlee01/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/delonlee01/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/delonlee01/ip.git (master) completed! +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/deseansoh/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/deseansoh/ip.git (master)... +Jan 25, 2025 2:16:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/deseansoh/ip.git (master) completed! +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nathtiekk/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [350/428] Analyzing https://github.com/nathtiekk/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/delonlee01/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/delonlee01/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zonnie-23/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zonnie-23/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nathtiekk/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nathtiekk/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nikingoda/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hrishikeshsathyian/ip.git completed! -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nikingoda/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nikingoda/ip.git (master) completed! -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Billy026/ip.git... -Jan 25, 2025 1:04:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [351/428] Analyzing https://github.com/CHI-ME/ip.git (master)... -Jan 25, 2025 1:04:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Billy026/ip.git to complete... -Jan 25, 2025 1:04:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nathtiekk/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nathtiekk/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nathtiekk/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [352/428] Analyzing https://github.com/HarishB99/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CHI-ME/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [351/428] Analyzing https://github.com/CHI-ME/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zyonwee/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zyonwee/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/CHI-ME/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/CHI-ME/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kannan171/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Parrycys/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Parrycys/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HarishB99/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [352/428] Analyzing https://github.com/HarishB99/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/K1mcheee/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/K1mcheee/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HarishB99/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HarishB99/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jamesberyl/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/meglwhy/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/meglwhy/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ryuse/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PriyadarshiCharvi/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PriyadarshiCharvi/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/CHI-ME/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CHI-ME/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CHI-ME/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chenxy12345/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Liu-Jihan/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [353/428] Analyzing https://github.com/chenxy12345/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/delonlee01/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Liu-Jihan/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chenxy12345/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chenxy12345/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/delonlee01/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/delonlee01/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [354/428] Analyzing https://github.com/Zonnie-23/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HarishB99/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Zonnie-23/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Zonnie-23/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HarishB99/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HarishB99/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chenxy12345/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chenxy12345/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chenxy12345/ip.git (master) completed! +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Zonnie-23/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [354/428] Analyzing https://github.com/Zonnie-23/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TrKNguyen/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TrKNguyen/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Zonnie-23/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Zonnie-23/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zonnie-23/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zonnie-23/ip.git (master)... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zonnie-23/ip.git (master) completed! +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zyonwee/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [355/428] Analyzing https://github.com/zyonwee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/deseansoh/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TeaMakesMePee/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TeaMakesMePee/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zyonwee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zyonwee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/deseansoh/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/deseansoh/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chenxy12345/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "TrKNguyen/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/TrKNguyen/ip.git' 'repos/TrKNguyen_ip/ip_bare' on path . : +Cloning into bare repository 'repos/TrKNguyen_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:275) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:218) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/potatoems/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/potatoems/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/K1mcheee/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hhlh27/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [356/428] Analyzing https://github.com/K1mcheee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Billy026/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/clarabellelim/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hhlh27/ip.git to complete... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/K1mcheee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/K1mcheee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chenxy12345/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chenxy12345/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Liu-Jihan/ip.git completed! +Jan 25, 2025 2:16:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zihung20/ip.git... +Jan 25, 2025 2:16:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [357/428] Analyzing https://github.com/Liu-Jihan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/clarabellelim/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Parrycys/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zyonwee/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zihung20/ip.git to complete... +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zyonwee/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zyonwee/ip.git (master) completed! +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Liu-Jihan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Liu-Jihan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/CJ-783/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/meglwhy/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/CJ-783/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jasonzhou97/ip.git... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zonnie-23/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jasonzhou97/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zonnie-23/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zonnie-23/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [358/428] Analyzing https://github.com/TeaMakesMePee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PriyadarshiCharvi/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jensenhuangyankai/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jensenhuangyankai/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/TeaMakesMePee/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/TeaMakesMePee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zyonwee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/K1mcheee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/K1mcheee/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/K1mcheee/ip.git (master) completed! +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "potatoems/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/potatoems/ip.git' 'repos/potatoems_ip/ip_bare' on path . : +Cloning into bare repository 'repos/potatoems_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:275) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:218) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hengjeekuan/ip.git... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hengjeekuan/ip.git to complete... +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Liu-Jihan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zyonwee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zyonwee/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Liu-Jihan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [359/428] Analyzing https://github.com/hhlh27/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Liu-Jihan/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/K1mcheee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/K1mcheee/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [360/428] Analyzing https://github.com/zihung20/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [361/428] Analyzing https://github.com/hengjeekuan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TeaMakesMePee/ip.git completed! +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [358/428] Analyzing https://github.com/TeaMakesMePee/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hrishikeshsathyian/ip.git... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hrishikeshsathyian/ip.git to complete... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/TeaMakesMePee/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/TeaMakesMePee/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hhlh27/ip.git completed! +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kannan171/ip.git... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [359/428] Analyzing https://github.com/hhlh27/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kannan171/ip.git to complete... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/hhlh27/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/hhlh27/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zihung20/ip.git completed! +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jamesberyl/ip.git... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [360/428] Analyzing https://github.com/zihung20/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jamesberyl/ip.git to complete... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zihung20/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zihung20/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hengjeekuan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hengjeekuan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TeaMakesMePee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TeaMakesMePee/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TeaMakesMePee/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/clarabellelim/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [362/428] Analyzing https://github.com/hrishikeshsathyian/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/quangthangisme/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/quangthangisme/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CJ-783/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hengjeekuan/ip.git completed! +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ryuse/ip.git... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [361/428] Analyzing https://github.com/hengjeekuan/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ryuse/ip.git to complete... +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hhlh27/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hengjeekuan/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hengjeekuan/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hhlh27/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hhlh27/ip.git (master) completed! +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zihung20/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zihung20/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zihung20/ip.git (master) completed! +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/hengjeekuan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/benedictleejr/ip.git... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hrishikeshsathyian/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hrishikeshsathyian/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jasonzhou97/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/benedictleejr/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nja99/ip.git... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/hengjeekuan/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/hengjeekuan/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hrishikeshsathyian/ip.git completed! +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [362/428] Analyzing https://github.com/hrishikeshsathyian/ip.git (master)... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Billy026/ip.git... +Jan 25, 2025 2:16:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Billy026/ip.git to complete... +Jan 25, 2025 2:16:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hrishikeshsathyian/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hrishikeshsathyian/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hrishikeshsathyian/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kannan171/ip.git completed! +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hrishikeshsathyian/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hrishikeshsathyian/ip.git (master) completed! +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepos INFO: [363/428] Analyzing https://github.com/Kannan171/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nja99/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jensenhuangyankai/ip.git completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Parrycys/ip.git... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Parrycys/ip.git to complete... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kannan171/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kannan171/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hhlh27/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GaaneshT/ip.git... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zihung20/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GaaneshT/ip.git to complete... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hhlh27/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hhlh27/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jamesberyl/ip.git completed! +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepos INFO: [364/428] Analyzing https://github.com/jamesberyl/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zihung20/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zihung20/ip.git (master) completed! -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/meglwhy/ip.git... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/meglwhy/ip.git to complete... +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kannan171/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ryuse/ip.git completed! +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepos INFO: [365/428] Analyzing https://github.com/Ryuse/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PriyadarshiCharvi/ip.git... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PriyadarshiCharvi/ip.git to complete... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jamesberyl/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jamesberyl/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ryuse/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ryuse/ip.git (master)... -Jan 25, 2025 1:04:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hrishikeshsathyian/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hrishikeshsathyian/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hrishikeshsathyian/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kannan171/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [366/428] Analyzing https://github.com/Billy026/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Kannan171/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Kannan171/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [367/428] Analyzing https://github.com/Parrycys/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Billy026/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Billy026/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ryuse/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ryuse/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jamesberyl/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jamesberyl/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jamesberyl/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Parrycys/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Parrycys/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [368/428] Analyzing https://github.com/meglwhy/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ryuse/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/quangthangisme/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/meglwhy/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/meglwhy/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ryuse/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ryuse/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Billy026/ip.git completed! +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [366/428] Analyzing https://github.com/Billy026/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/clarabellelim/ip.git... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/clarabellelim/ip.git to complete... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Billy026/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Billy026/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Billy026/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Billy026/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Billy026/ip.git (master) completed! +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Parrycys/ip.git completed! +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [367/428] Analyzing https://github.com/Parrycys/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/CJ-783/ip.git... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/CJ-783/ip.git to complete... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Parrycys/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Parrycys/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/meglwhy/ip.git completed! +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PriyadarshiCharvi/ip.git completed! +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jasonzhou97/ip.git... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [368/428] Analyzing https://github.com/meglwhy/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepos INFO: [369/428] Analyzing https://github.com/PriyadarshiCharvi/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wilsonh0/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/benedictleejr/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sreelakshmiharidos/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wilsonh0/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sreelakshmiharidos/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nja99/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/PriyadarshiCharvi/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/PriyadarshiCharvi/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/iuhiah/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GaaneshT/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/iuhiah/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/e1093051/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/e1093051/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jensenhuangyankai/ip.git... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jensenhuangyankai/ip.git to complete... +Jan 25, 2025 2:16:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jasonzhou97/ip.git to complete... +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Parrycys/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/meglwhy/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/meglwhy/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/PriyadarshiCharvi/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/PriyadarshiCharvi/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Parrycys/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Parrycys/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [370/428] Analyzing https://github.com/clarabellelim/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Billy026/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Billy026/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Billy026/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [371/428] Analyzing https://github.com/CJ-783/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/PriyadarshiCharvi/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PriyadarshiCharvi/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PriyadarshiCharvi/ip.git (master) completed! +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/meglwhy/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/meglwhy/ip.git (master)... +Jan 25, 2025 2:16:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/meglwhy/ip.git (master) completed! +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/clarabellelim/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [370/428] Analyzing https://github.com/clarabellelim/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/quangthangisme/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/quangthangisme/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/clarabellelim/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/clarabellelim/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PriyadarshiCharvi/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PriyadarshiCharvi/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/clarabellelim/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/clarabellelim/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/clarabellelim/ip.git (master) completed! +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CJ-783/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [371/428] Analyzing https://github.com/CJ-783/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/benedictleejr/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/benedictleejr/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/CJ-783/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/CJ-783/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CJ-783/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/CJ-783/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/CJ-783/ip.git (master) completed! +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jasonzhou97/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [372/428] Analyzing https://github.com/Jasonzhou97/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/meglwhy/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/meglwhy/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [373/428] Analyzing https://github.com/jensenhuangyankai/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nja99/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nja99/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jasonzhou97/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jasonzhou97/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jensenhuangyankai/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GaaneshT/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [373/428] Analyzing https://github.com/jensenhuangyankai/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GaaneshT/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jensenhuangyankai/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jensenhuangyankai/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/clarabellelim/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sreelakshmiharidos/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wilsonh0/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/clarabellelim/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/clarabellelim/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [374/428] Analyzing https://github.com/quangthangisme/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jon-seana/ip.git... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jensenhuangyankai/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cerulyean/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/iuhiah/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CJ-783/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cerulyean/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jon-seana/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/e1093051/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wowwwp/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/quangthangisme/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/quangthangisme/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Judy1x4/ip.git... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/CJ-783/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jensenhuangyankai/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/CJ-783/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jensenhuangyankai/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [375/428] Analyzing https://github.com/benedictleejr/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [376/428] Analyzing https://github.com/nja99/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Judy1x4/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wowwwp/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nja99/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nja99/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/benedictleejr/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/benedictleejr/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/quangthangisme/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Jasonzhou97/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jasonzhou97/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jasonzhou97/ip.git (master) completed! +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/quangthangisme/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [374/428] Analyzing https://github.com/quangthangisme/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wilsonh0/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wilsonh0/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/quangthangisme/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/quangthangisme/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/quangthangisme/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/quangthangisme/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/quangthangisme/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [377/428] Analyzing https://github.com/GaaneshT/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/benedictleejr/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [375/428] Analyzing https://github.com/benedictleejr/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sreelakshmiharidos/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sreelakshmiharidos/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/benedictleejr/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/benedictleejr/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/benedictleejr/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jasonzhou97/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jasonzhou97/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [378/428] Analyzing https://github.com/wilsonh0/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/benedictleejr/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/benedictleejr/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nja99/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [376/428] Analyzing https://github.com/nja99/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/iuhiah/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/iuhiah/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GaaneshT/ip.git completed! +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nja99/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nja99/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [377/428] Analyzing https://github.com/GaaneshT/ip.git (master)... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/e1093051/ip.git... +Jan 25, 2025 2:16:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/e1093051/ip.git to complete... +Jan 25, 2025 2:16:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GaaneshT/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GaaneshT/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [379/428] Analyzing https://github.com/sreelakshmiharidos/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/GaaneshT/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/GaaneshT/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nja99/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/GaaneshT/ip.git (master) completed! +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nja99/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nja99/ip.git (master) completed! +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wilsonh0/ip.git completed! +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [378/428] Analyzing https://github.com/wilsonh0/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jon-seana/ip.git... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jon-seana/ip.git to complete... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wilsonh0/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wilsonh0/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wilsonh0/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wilsonh0/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wilsonh0/ip.git (master) completed! +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sreelakshmiharidos/ip.git completed! +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [379/428] Analyzing https://github.com/sreelakshmiharidos/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cerulyean/ip.git... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cerulyean/ip.git to complete... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sreelakshmiharidos/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sreelakshmiharidos/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nja99/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nja99/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nja99/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [380/428] Analyzing https://github.com/iuhiah/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jon-seana/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cerulyean/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sreelakshmiharidos/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/findingfaey/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HAITAO2003/ip.git... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/findingfaey/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sreelakshmiharidos/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Judy1x4/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sreelakshmiharidos/ip.git (master) completed! -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/iuhiah/ip.git completed! +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [380/428] Analyzing https://github.com/iuhiah/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wowwwp/ip.git... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wowwwp/ip.git to complete... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/iuhiah/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/iuhiah/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/e1093051/ip.git completed! +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [381/428] Analyzing https://github.com/e1093051/ip.git (master)... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HAITAO2003/ip.git to complete... -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wowwwp/ip.git completed! -Jan 25, 2025 1:04:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LuBolin/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chenxu20/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LuBolin/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Judy1x4/ip.git... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Judy1x4/ip.git to complete... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/e1093051/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/e1093051/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chenxu20/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/GaaneshT/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wilsonh0/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/GaaneshT/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/GaaneshT/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [382/428] Analyzing https://github.com/cerulyean/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iuhiah/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iuhiah/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iuhiah/ip.git (master) completed! +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/e1093051/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/e1093051/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/e1093051/ip.git (master) completed! +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jon-seana/ip.git completed! +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [382/428] Analyzing https://github.com/jon-seana/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/findingfaey/ip.git... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/findingfaey/ip.git to complete... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jon-seana/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jon-seana/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jon-seana/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jon-seana/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jon-seana/ip.git (master) completed! +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "findingfaey/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/findingfaey/ip.git' 'repos/findingfaey_ip/ip_bare' on path . : Cloning into bare repository 'repos/findingfaey_ip/ip_bare'... @@ -7558,111 +7566,115 @@ 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) -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TanXingZhong/ip.git... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wilsonh0/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wilsonh0/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TanXingZhong/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [383/428] Analyzing https://github.com/jon-seana/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HAITAO2003/ip.git... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HAITAO2003/ip.git to complete... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cerulyean/ip.git completed! +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [383/428] Analyzing https://github.com/cerulyean/ip.git (master)... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LuBolin/ip.git... +Jan 25, 2025 2:16:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LuBolin/ip.git to complete... +Jan 25, 2025 2:16:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/cerulyean/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/cerulyean/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jon-seana/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jon-seana/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/e1093051/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iuhiah/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/e1093051/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cerulyean/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/e1093051/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iuhiah/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [384/428] Analyzing https://github.com/Judy1x4/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iuhiah/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [385/428] Analyzing https://github.com/wowwwp/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cerulyean/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cerulyean/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wowwwp/ip.git completed! +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [384/428] Analyzing https://github.com/wowwwp/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chenxu20/ip.git... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chenxu20/ip.git to complete... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wowwwp/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wowwwp/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Judy1x4/ip.git completed! +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [385/428] Analyzing https://github.com/Judy1x4/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TanXingZhong/ip.git... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TanXingZhong/ip.git to complete... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Judy1x4/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Judy1x4/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jon-seana/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jon-seana/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jon-seana/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wowwwp/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wowwwp/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wowwwp/ip.git (master) completed! +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Judy1x4/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Judy1x4/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Judy1x4/ip.git (master) completed! +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LuBolin/ip.git completed! +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/HAITAO2003/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [386/428] Analyzing https://github.com/LuBolin/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Kiranlimtl/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [386/428] Analyzing https://github.com/HAITAO2003/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chenxu20/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Kiranlimtl/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [387/428] Analyzing https://github.com/chenxu20/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [387/428] Analyzing https://github.com/HAITAO2003/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/andong0909/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/andong0909/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LuBolin/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LuBolin/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LuBolin/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HAITAO2003/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HAITAO2003/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LuBolin/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LuBolin/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LuBolin/ip.git (master) completed! +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HAITAO2003/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HAITAO2003/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HAITAO2003/ip.git (master) completed! +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TanXingZhong/ip.git completed! +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [388/428] Analyzing https://github.com/TanXingZhong/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/m0destly/ip.git... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wowwwp/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chenxu20/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chenxu20/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chenxu20/ip.git completed! +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/m0destly/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Judy1x4/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TanXingZhong/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wowwwp/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wowwwp/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [388/428] Analyzing https://github.com/LuBolin/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Judy1x4/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Judy1x4/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [389/428] Analyzing https://github.com/TanXingZhong/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [389/428] Analyzing https://github.com/chenxu20/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/GauhVish/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess WARNING: Exception met while trying to clone the repo "Kiranlimtl/ip[master]", will skip this repo. reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Kiranlimtl/ip.git' 'repos/Kiranlimtl_ip/ip_bare' on path . : Cloning into bare repository 'repos/Kiranlimtl_ip/ip_bare'... @@ -7678,155 +7690,143 @@ 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) -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/awc1116/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/awc1116/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/GauhVish/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LuBolin/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LuBolin/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/awc1116/ip.git to complete... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TanXingZhong/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TanXingZhong/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HAITAO2003/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chenxu20/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chenxu20/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chenxu20/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HAITAO2003/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HAITAO2003/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chenxu20/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chenxu20/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LuBolin/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LuBolin/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LuBolin/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TanXingZhong/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TanXingZhong/ip.git (master)... +Jan 25, 2025 2:16:26 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/TanXingZhong/ip.git (master) completed! +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/andong0909/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [390/428] Analyzing https://github.com/andong0909/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TobyCyan/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/TobyCyan/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/andong0909/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/andong0909/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/andong0909/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/andong0909/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/andong0909/ip.git (master) completed! +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/m0destly/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [391/428] Analyzing https://github.com/m0destly/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/itsvari/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/itsvari/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/m0destly/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/m0destly/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GauhVish/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [392/428] Analyzing https://github.com/GauhVish/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AbiHalim/ip.git... -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/awc1116/ip.git completed! -Jan 25, 2025 1:04:51 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AbiHalim/ip.git... +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [392/428] Analyzing https://github.com/awc1116/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AbiHalim/ip.git to complete... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GauhVish/ip.git completed! +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [393/428] Analyzing https://github.com/GauhVish/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/awc1116/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/awc1116/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/GauhVish/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/GauhVish/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TanXingZhong/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TanXingZhong/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/andong0909/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/TanXingZhong/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [393/428] Analyzing https://github.com/awc1116/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/andong0909/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/andong0909/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/GauhVish/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/m0destly/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/GauhVish/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/GauhVish/ip.git (master) completed! -Jan 25, 2025 1:04:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/awc1116/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/awc1116/ip.git (master)... -Jan 25, 2025 1:04:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/m0destly/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/m0destly/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/m0destly/ip.git (master) completed! -Jan 25, 2025 1:04:52 AM reposense.report.RepoCloner waitForCloneProcess +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/TobyCyan/ip.git completed! -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepos +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepos INFO: [394/428] Analyzing https://github.com/TobyCyan/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TobyCyan/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TobyCyan/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itsvari/ip.git completed! -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [395/428] Analyzing https://github.com/itsvari/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/itsvari/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/itsvari/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/awc1116/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/awc1116/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/awc1116/ip.git (master) completed! +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TobyCyan/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AbiHalim/ip.git completed! -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TobyCyan/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [396/428] Analyzing https://github.com/AbiHalim/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TobyCyan/ip.git (master) completed! -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator updateRepoConfig +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AbiHalim/ip.git completed! +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [395/428] Analyzing https://github.com/AbiHalim/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itsvari/ip.git completed! +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/AbiHalim/ip.git (master) does not contain a standalone config file. -Jan 25, 2025 1:04:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Jan 25, 2025 2:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/AbiHalim/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [396/428] Analyzing https://github.com/itsvari/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/itsvari/ip.git (master) does not contain a standalone config file. +Jan 25, 2025 2:16:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/itsvari/ip.git (master)... +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AbiHalim/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AbiHalim/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AbiHalim/ip.git (master) completed! -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Jan 25, 2025 2:16:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/itsvari/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/awc1116/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Jan 25, 2025 2:16:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/itsvari/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepo +Jan 25, 2025 2:16:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/itsvari/ip.git (master) completed! -Jan 25, 2025 1:04:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/awc1116/ip.git (master)... -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/awc1116/ip.git (master) completed! -Jan 25, 2025 1:04:52 AM reposense.report.ReportGenerator generateReposReport +Jan 25, 2025 2:16:28 AM reposense.report.ReportGenerator generateReposReport INFO: The report is generated at /home/runner/work/ip-dashboard/ip-dashboard/reposense-report -Jan 25, 2025 1:04:52 AM reposense.RepoSense main -INFO: Elapsed processing time: 40.89 second(s) +Jan 25, 2025 2:16:28 AM reposense.RepoSense main +INFO: Elapsed processing time: 1 minute(s) 1.44 second(s) diff --git a/summary.json b/summary.json index 4916b4a1..e7b5033d 100644 --- a/summary.json +++ b/summary.json @@ -1 +1 @@ -{"repoSenseVersion":"e53c52c96a","reportGeneratedTime":"Sat, 25 Jan 2025 09:04:13 UTC+08:00","reportGenerationTime":" 40.33 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/kubrian/ip.git","repoName":"ip","organization":"kubrian","domainName":"github"},"branch":"master","displayName":"kubrian/ip[master]","outputFolderName":"kubrian_ip_master"},{"location":{"location":"https://github.com/FadhilPM/ip.git","repoName":"ip","organization":"FadhilPM","domainName":"github"},"branch":"master","displayName":"FadhilPM/ip[master]","outputFolderName":"FadhilPM_ip_master"},{"location":{"location":"https://github.com/raw-asparagus/ip.git","repoName":"ip","organization":"raw-asparagus","domainName":"github"},"branch":"master","displayName":"raw-asparagus/ip[master]","outputFolderName":"raw-asparagus_ip_master"},{"location":{"location":"https://github.com/samuelkwik/ip.git","repoName":"ip","organization":"samuelkwik","domainName":"github"},"branch":"master","displayName":"samuelkwik/ip[master]","outputFolderName":"samuelkwik_ip_master"},{"location":{"location":"https://github.com/castryl/ip.git","repoName":"ip","organization":"castryl","domainName":"github"},"branch":"master","displayName":"castryl/ip[master]","outputFolderName":"castryl_ip_master"},{"location":{"location":"https://github.com/mingshan2705/ip.git","repoName":"ip","organization":"mingshan2705","domainName":"github"},"branch":"master","displayName":"mingshan2705/ip[master]","outputFolderName":"mingshan2705_ip_master"},{"location":{"location":"https://github.com/nguyenvukhang/ip.git","repoName":"ip","organization":"nguyenvukhang","domainName":"github"},"branch":"master","displayName":"nguyenvukhang/ip[master]","outputFolderName":"nguyenvukhang_ip_master"},{"location":{"location":"https://github.com/NightlyAffair/ip.git","repoName":"ip","organization":"NightlyAffair","domainName":"github"},"branch":"master","displayName":"NightlyAffair/ip[master]","outputFolderName":"NightlyAffair_ip_master"},{"location":{"location":"https://github.com/Ernestnzx/ip.git","repoName":"ip","organization":"Ernestnzx","domainName":"github"},"branch":"master","displayName":"Ernestnzx/ip[master]","outputFolderName":"Ernestnzx_ip_master"},{"location":{"location":"https://github.com/zephaniahong/ip.git","repoName":"ip","organization":"zephaniahong","domainName":"github"},"branch":"master","displayName":"zephaniahong/ip[master]","outputFolderName":"zephaniahong_ip_master"},{"location":{"location":"https://github.com/davidchongg/ip.git","repoName":"ip","organization":"davidchongg","domainName":"github"},"branch":"master","displayName":"davidchongg/ip[master]","outputFolderName":"davidchongg_ip_master"},{"location":{"location":"https://github.com/teesha902/ip.git","repoName":"ip","organization":"teesha902","domainName":"github"},"branch":"master","displayName":"teesha902/ip[master]","outputFolderName":"teesha902_ip_master"},{"location":{"location":"https://github.com/wowwwp/ip.git","repoName":"ip","organization":"wowwwp","domainName":"github"},"branch":"master","displayName":"wowwwp/ip[master]","outputFolderName":"wowwwp_ip_master"},{"location":{"location":"https://github.com/subiloble/ip.git","repoName":"ip","organization":"subiloble","domainName":"github"},"branch":"master","displayName":"subiloble/ip[master]","outputFolderName":"subiloble_ip_master"},{"location":{"location":"https://github.com/xuxuezhou/ip.git","repoName":"ip","organization":"xuxuezhou","domainName":"github"},"branch":"master","displayName":"xuxuezhou/ip[master]","outputFolderName":"xuxuezhou_ip_master"},{"location":{"location":"https://github.com/RT0118/ip.git","repoName":"ip","organization":"RT0118","domainName":"github"},"branch":"master","displayName":"RT0118/ip[master]","outputFolderName":"RT0118_ip_master"},{"location":{"location":"https://github.com/Inquisitivrx/ip.git","repoName":"ip","organization":"Inquisitivrx","domainName":"github"},"branch":"master","displayName":"Inquisitivrx/ip[master]","outputFolderName":"Inquisitivrx_ip_master"},{"location":{"location":"https://github.com/bryonk/ip.git","repoName":"ip","organization":"bryonk","domainName":"github"},"branch":"master","displayName":"bryonk/ip[master]","outputFolderName":"bryonk_ip_master"},{"location":{"location":"https://github.com/ChinZJ/ip.git","repoName":"ip","organization":"ChinZJ","domainName":"github"},"branch":"master","displayName":"ChinZJ/ip[master]","outputFolderName":"ChinZJ_ip_master"},{"location":{"location":"https://github.com/dnardnar/ip.git","repoName":"ip","organization":"dnardnar","domainName":"github"},"branch":"master","displayName":"dnardnar/ip[master]","outputFolderName":"dnardnar_ip_master"},{"location":{"location":"https://github.com/TheEnd-alr-taken/ip.git","repoName":"ip","organization":"TheEnd-alr-taken","domainName":"github"},"branch":"master","displayName":"TheEnd-alr-taken/ip[master]","outputFolderName":"TheEnd-alr-taken_ip_master"},{"location":{"location":"https://github.com/nathtiekk/ip.git","repoName":"ip","organization":"nathtiekk","domainName":"github"},"branch":"master","displayName":"nathtiekk/ip[master]","outputFolderName":"nathtiekk_ip_master"},{"location":{"location":"https://github.com/Jeremiah33-3/ip.git","repoName":"ip","organization":"Jeremiah33-3","domainName":"github"},"branch":"master","displayName":"Jeremiah33-3/ip[master]","outputFolderName":"Jeremiah33-3_ip_master"},{"location":{"location":"https://github.com/aisyahally/ip.git","repoName":"ip","organization":"aisyahally","domainName":"github"},"branch":"master","displayName":"aisyahally/ip[master]","outputFolderName":"aisyahally_ip_master"},{"location":{"location":"https://github.com/kylieluk88/ip.git","repoName":"ip","organization":"kylieluk88","domainName":"github"},"branch":"master","displayName":"kylieluk88/ip[master]","outputFolderName":"kylieluk88_ip_master"},{"location":{"location":"https://github.com/zlllllr/ip.git","repoName":"ip","organization":"zlllllr","domainName":"github"},"branch":"master","displayName":"zlllllr/ip[master]","outputFolderName":"zlllllr_ip_master"},{"location":{"location":"https://github.com/quantin96/ip.git","repoName":"ip","organization":"quantin96","domainName":"github"},"branch":"master","displayName":"quantin96/ip[master]","outputFolderName":"quantin96_ip_master"},{"location":{"location":"https://github.com/SheYuting/ip.git","repoName":"ip","organization":"SheYuting","domainName":"github"},"branch":"master","displayName":"SheYuting/ip[master]","outputFolderName":"SheYuting_ip_master"},{"location":{"location":"https://github.com/GaaneshT/ip.git","repoName":"ip","organization":"GaaneshT","domainName":"github"},"branch":"master","displayName":"GaaneshT/ip[master]","outputFolderName":"GaaneshT_ip_master"},{"location":{"location":"https://github.com/leedeen01/ip.git","repoName":"ip","organization":"leedeen01","domainName":"github"},"branch":"master","displayName":"leedeen01/ip[master]","outputFolderName":"leedeen01_ip_master"},{"location":{"location":"https://github.com/aquaimpact/ip.git","repoName":"ip","organization":"aquaimpact","domainName":"github"},"branch":"master","displayName":"aquaimpact/ip[master]","outputFolderName":"aquaimpact_ip_master"},{"location":{"location":"https://github.com/GCheeYang/ip.git","repoName":"ip","organization":"GCheeYang","domainName":"github"},"branch":"master","displayName":"GCheeYang/ip[master]","outputFolderName":"GCheeYang_ip_master"},{"location":{"location":"https://github.com/awc1116/ip.git","repoName":"ip","organization":"awc1116","domainName":"github"},"branch":"master","displayName":"awc1116/ip[master]","outputFolderName":"awc1116_ip_master"},{"location":{"location":"https://github.com/brvndonkoh/ip.git","repoName":"ip","organization":"brvndonkoh","domainName":"github"},"branch":"master","displayName":"brvndonkoh/ip[master]","outputFolderName":"brvndonkoh_ip_master"},{"location":{"location":"https://github.com/jiancheng37/ip.git","repoName":"ip","organization":"jiancheng37","domainName":"github"},"branch":"master","displayName":"jiancheng37/ip[master]","outputFolderName":"jiancheng37_ip_master"},{"location":{"location":"https://github.com/philbertshea/ip.git","repoName":"ip","organization":"philbertshea","domainName":"github"},"branch":"master","displayName":"philbertshea/ip[master]","outputFolderName":"philbertshea_ip_master"},{"location":{"location":"https://github.com/WhyAre/ip.git","repoName":"ip","organization":"WhyAre","domainName":"github"},"branch":"master","displayName":"WhyAre/ip[master]","outputFolderName":"WhyAre_ip_master"},{"location":{"location":"https://github.com/kokseen1/ip.git","repoName":"ip","organization":"kokseen1","domainName":"github"},"branch":"master","displayName":"kokseen1/ip[master]","outputFolderName":"kokseen1_ip_master"},{"location":{"location":"https://github.com/kennethsoh/ip.git","repoName":"ip","organization":"kennethsoh","domainName":"github"},"branch":"master","displayName":"kennethsoh/ip[master]","outputFolderName":"kennethsoh_ip_master"},{"location":{"location":"https://github.com/basil-boh/ip.git","repoName":"ip","organization":"basil-boh","domainName":"github"},"branch":"master","displayName":"basil-boh/ip[master]","outputFolderName":"basil-boh_ip_master"},{"location":{"location":"https://github.com/twhjames/ip.git","repoName":"ip","organization":"twhjames","domainName":"github"},"branch":"master","displayName":"twhjames/ip[master]","outputFolderName":"twhjames_ip_master"},{"location":{"location":"https://github.com/FabianHeng/ip.git","repoName":"ip","organization":"FabianHeng","domainName":"github"},"branch":"master","displayName":"FabianHeng/ip[master]","outputFolderName":"FabianHeng_ip_master"},{"location":{"location":"https://github.com/delonlee01/ip.git","repoName":"ip","organization":"delonlee01","domainName":"github"},"branch":"master","displayName":"delonlee01/ip[master]","outputFolderName":"delonlee01_ip_master"},{"location":{"location":"https://github.com/dexterleng/ip.git","repoName":"ip","organization":"dexterleng","domainName":"github"},"branch":"master","displayName":"dexterleng/ip[master]","outputFolderName":"dexterleng_ip_master"},{"location":{"location":"https://github.com/CJ-783/ip.git","repoName":"ip","organization":"CJ-783","domainName":"github"},"branch":"master","displayName":"CJ-783/ip[master]","outputFolderName":"CJ-783_ip_master"},{"location":{"location":"https://github.com/codebreaker64/ip.git","repoName":"ip","organization":"codebreaker64","domainName":"github"},"branch":"master","displayName":"codebreaker64/ip[master]","outputFolderName":"codebreaker64_ip_master"},{"location":{"location":"https://github.com/JuhromeAlexander/ip.git","repoName":"ip","organization":"JuhromeAlexander","domainName":"github"},"branch":"master","displayName":"JuhromeAlexander/ip[master]","outputFolderName":"JuhromeAlexander_ip_master"},{"location":{"location":"https://github.com/lesterlimjj/ip.git","repoName":"ip","organization":"lesterlimjj","domainName":"github"},"branch":"master","displayName":"lesterlimjj/ip[master]","outputFolderName":"lesterlimjj_ip_master"},{"location":{"location":"https://github.com/MakiseKurisuX/ip.git","repoName":"ip","organization":"MakiseKurisuX","domainName":"github"},"branch":"master","displayName":"MakiseKurisuX/ip[master]","outputFolderName":"MakiseKurisuX_ip_master"},{"location":{"location":"https://github.com/AnAfterthought/ip.git","repoName":"ip","organization":"AnAfterthought","domainName":"github"},"branch":"master","displayName":"AnAfterthought/ip[master]","outputFolderName":"AnAfterthought_ip_master"},{"location":{"location":"https://github.com/SuspectBlue/ip.git","repoName":"ip","organization":"SuspectBlue","domainName":"github"},"branch":"master","displayName":"SuspectBlue/ip[master]","outputFolderName":"SuspectBlue_ip_master"},{"location":{"location":"https://github.com/Ryuse/ip.git","repoName":"ip","organization":"Ryuse","domainName":"github"},"branch":"master","displayName":"Ryuse/ip[master]","outputFolderName":"Ryuse_ip_master"},{"location":{"location":"https://github.com/boinkkitty/ip.git","repoName":"ip","organization":"boinkkitty","domainName":"github"},"branch":"master","displayName":"boinkkitty/ip[master]","outputFolderName":"boinkkitty_ip_master"},{"location":{"location":"https://github.com/Jovin-Ang/ip.git","repoName":"ip","organization":"Jovin-Ang","domainName":"github"},"branch":"master","displayName":"Jovin-Ang/ip[master]","outputFolderName":"Jovin-Ang_ip_master"},{"location":{"location":"https://github.com/yuyang011/ip.git","repoName":"ip","organization":"yuyang011","domainName":"github"},"branch":"master","displayName":"yuyang011/ip[master]","outputFolderName":"yuyang011_ip_master"},{"location":{"location":"https://github.com/JunXiang26/ip.git","repoName":"ip","organization":"JunXiang26","domainName":"github"},"branch":"master","displayName":"JunXiang26/ip[master]","outputFolderName":"JunXiang26_ip_master"},{"location":{"location":"https://github.com/Parrycys/ip.git","repoName":"ip","organization":"Parrycys","domainName":"github"},"branch":"master","displayName":"Parrycys/ip[master]","outputFolderName":"Parrycys_ip_master"},{"location":{"location":"https://github.com/JohannsenLum/ip.git","repoName":"ip","organization":"JohannsenLum","domainName":"github"},"branch":"master","displayName":"JohannsenLum/ip[master]","outputFolderName":"JohannsenLum_ip_master"},{"location":{"location":"https://github.com/Zerolegacy/ip.git","repoName":"ip","organization":"Zerolegacy","domainName":"github"},"branch":"master","displayName":"Zerolegacy/ip[master]","outputFolderName":"Zerolegacy_ip_master"},{"location":{"location":"https://github.com/xenyeo/ip.git","repoName":"ip","organization":"xenyeo","domainName":"github"},"branch":"master","displayName":"xenyeo/ip[master]","outputFolderName":"xenyeo_ip_master"},{"location":{"location":"https://github.com/adwinang/ip.git","repoName":"ip","organization":"adwinang","domainName":"github"},"branch":"master","displayName":"adwinang/ip[master]","outputFolderName":"adwinang_ip_master"},{"location":{"location":"https://github.com/botosek/ip.git","repoName":"ip","organization":"botosek","domainName":"github"},"branch":"master","displayName":"botosek/ip[master]","outputFolderName":"botosek_ip_master"},{"location":{"location":"https://github.com/quangthangisme/ip.git","repoName":"ip","organization":"quangthangisme","domainName":"github"},"branch":"master","displayName":"quangthangisme/ip[master]","outputFolderName":"quangthangisme_ip_master"},{"location":{"location":"https://github.com/NHT020305/ip.git","repoName":"ip","organization":"NHT020305","domainName":"github"},"branch":"master","displayName":"NHT020305/ip[master]","outputFolderName":"NHT020305_ip_master"},{"location":{"location":"https://github.com/Partillay/ip.git","repoName":"ip","organization":"Partillay","domainName":"github"},"branch":"master","displayName":"Partillay/ip[master]","outputFolderName":"Partillay_ip_master"},{"location":{"location":"https://github.com/tadacheng/ip.git","repoName":"ip","organization":"tadacheng","domainName":"github"},"branch":"master","displayName":"tadacheng/ip[master]","outputFolderName":"tadacheng_ip_master"},{"location":{"location":"https://github.com/ToxOptimism/ip.git","repoName":"ip","organization":"ToxOptimism","domainName":"github"},"branch":"master","displayName":"ToxOptimism/ip[master]","outputFolderName":"ToxOptimism_ip_master"},{"location":{"location":"https://github.com/johngao122/ip.git","repoName":"ip","organization":"johngao122","domainName":"github"},"branch":"master","displayName":"johngao122/ip[master]","outputFolderName":"johngao122_ip_master"},{"location":{"location":"https://github.com/zyonwee/ip.git","repoName":"ip","organization":"zyonwee","domainName":"github"},"branch":"master","displayName":"zyonwee/ip[master]","outputFolderName":"zyonwee_ip_master"},{"location":{"location":"https://github.com/hhlh27/ip.git","repoName":"ip","organization":"hhlh27","domainName":"github"},"branch":"master","displayName":"hhlh27/ip[master]","outputFolderName":"hhlh27_ip_master"},{"location":{"location":"https://github.com/Victoria281/ip.git","repoName":"ip","organization":"Victoria281","domainName":"github"},"branch":"master","displayName":"Victoria281/ip[master]","outputFolderName":"Victoria281_ip_master"},{"location":{"location":"https://github.com/gn07/ip.git","repoName":"ip","organization":"gn07","domainName":"github"},"branch":"master","displayName":"gn07/ip[master]","outputFolderName":"gn07_ip_master"},{"location":{"location":"https://github.com/deberinoo/ip.git","repoName":"ip","organization":"deberinoo","domainName":"github"},"branch":"master","displayName":"deberinoo/ip[master]","outputFolderName":"deberinoo_ip_master"},{"location":{"location":"https://github.com/hsinyilow/ip.git","repoName":"ip","organization":"hsinyilow","domainName":"github"},"branch":"master","displayName":"hsinyilow/ip[master]","outputFolderName":"hsinyilow_ip_master"},{"location":{"location":"https://github.com/broccoli-hater/ip.git","repoName":"ip","organization":"broccoli-hater","domainName":"github"},"branch":"master","displayName":"broccoli-hater/ip[master]","outputFolderName":"broccoli-hater_ip_master"},{"location":{"location":"https://github.com/bkkuan/ip.git","repoName":"ip","organization":"bkkuan","domainName":"github"},"branch":"master","displayName":"bkkuan/ip[master]","outputFolderName":"bkkuan_ip_master"},{"location":{"location":"https://github.com/huangtian666/ip.git","repoName":"ip","organization":"huangtian666","domainName":"github"},"branch":"master","displayName":"huangtian666/ip[master]","outputFolderName":"huangtian666_ip_master"},{"location":{"location":"https://github.com/feliciahmq/ip.git","repoName":"ip","organization":"feliciahmq","domainName":"github"},"branch":"master","displayName":"feliciahmq/ip[master]","outputFolderName":"feliciahmq_ip_master"},{"location":{"location":"https://github.com/kararei/ip.git","repoName":"ip","organization":"kararei","domainName":"github"},"branch":"master","displayName":"kararei/ip[master]","outputFolderName":"kararei_ip_master"},{"location":{"location":"https://github.com/0x4F776C/ip.git","repoName":"ip","organization":"0x4F776C","domainName":"github"},"branch":"master","displayName":"0x4F776C/ip[master]","outputFolderName":"0x4F776C_ip_master"},{"location":{"location":"https://github.com/Kaidama97/ip.git","repoName":"ip","organization":"Kaidama97","domainName":"github"},"branch":"master","displayName":"Kaidama97/ip[master]","outputFolderName":"Kaidama97_ip_master"},{"location":{"location":"https://github.com/Shamanbenny/ip.git","repoName":"ip","organization":"Shamanbenny","domainName":"github"},"branch":"master","displayName":"Shamanbenny/ip[master]","outputFolderName":"Shamanbenny_ip_master"},{"location":{"location":"https://github.com/KarKuen/ip.git","repoName":"ip","organization":"KarKuen","domainName":"github"},"branch":"master","displayName":"KarKuen/ip[master]","outputFolderName":"KarKuen_ip_master"},{"location":{"location":"https://github.com/caxewhy/ip.git","repoName":"ip","organization":"caxewhy","domainName":"github"},"branch":"master","displayName":"caxewhy/ip[master]","outputFolderName":"caxewhy_ip_master"},{"location":{"location":"https://github.com/sherwinee/ip.git","repoName":"ip","organization":"sherwinee","domainName":"github"},"branch":"master","displayName":"sherwinee/ip[master]","outputFolderName":"sherwinee_ip_master"},{"location":{"location":"https://github.com/ceilingFan456/ip.git","repoName":"ip","organization":"ceilingFan456","domainName":"github"},"branch":"master","displayName":"ceilingFan456/ip[master]","outputFolderName":"ceilingFan456_ip_master"},{"location":{"location":"https://github.com/xplus2g4/ip.git","repoName":"ip","organization":"xplus2g4","domainName":"github"},"branch":"master","displayName":"xplus2g4/ip[master]","outputFolderName":"xplus2g4_ip_master"},{"location":{"location":"https://github.com/dragonesejosh/ip.git","repoName":"ip","organization":"dragonesejosh","domainName":"github"},"branch":"master","displayName":"dragonesejosh/ip[master]","outputFolderName":"dragonesejosh_ip_master"},{"location":{"location":"https://github.com/sivaramjeychand/ip.git","repoName":"ip","organization":"sivaramjeychand","domainName":"github"},"branch":"master","displayName":"sivaramjeychand/ip[master]","outputFolderName":"sivaramjeychand_ip_master"},{"location":{"location":"https://github.com/Kannan171/ip.git","repoName":"ip","organization":"Kannan171","domainName":"github"},"branch":"master","displayName":"Kannan171/ip[master]","outputFolderName":"Kannan171_ip_master"},{"location":{"location":"https://github.com/luna-ortus-cor/ip.git","repoName":"ip","organization":"luna-ortus-cor","domainName":"github"},"branch":"master","displayName":"luna-ortus-cor/ip[master]","outputFolderName":"luna-ortus-cor_ip_master"},{"location":{"location":"https://github.com/zwliew/ip.git","repoName":"ip","organization":"zwliew","domainName":"github"},"branch":"master","displayName":"zwliew/ip[master]","outputFolderName":"zwliew_ip_master"},{"location":{"location":"https://github.com/dexterkwxn/ip.git","repoName":"ip","organization":"dexterkwxn","domainName":"github"},"branch":"master","displayName":"dexterkwxn/ip[master]","outputFolderName":"dexterkwxn_ip_master"},{"location":{"location":"https://github.com/xumarcus/ip.git","repoName":"ip","organization":"xumarcus","domainName":"github"},"branch":"master","displayName":"xumarcus/ip[master]","outputFolderName":"xumarcus_ip_master"},{"location":{"location":"https://github.com/shashwatchan/ip.git","repoName":"ip","organization":"shashwatchan","domainName":"github"},"branch":"master","displayName":"shashwatchan/ip[master]","outputFolderName":"shashwatchan_ip_master"},{"location":{"location":"https://github.com/Leeisateam/ip.git","repoName":"ip","organization":"Leeisateam","domainName":"github"},"branch":"master","displayName":"Leeisateam/ip[master]","outputFolderName":"Leeisateam_ip_master"},{"location":{"location":"https://github.com/kimseunghyun-kr/ip.git","repoName":"ip","organization":"kimseunghyun-kr","domainName":"github"},"branch":"master","displayName":"kimseunghyun-kr/ip[master]","outputFolderName":"kimseunghyun-kr_ip_master"},{"location":{"location":"https://github.com/Bryce-3D/ip.git","repoName":"ip","organization":"Bryce-3D","domainName":"github"},"branch":"master","displayName":"Bryce-3D/ip[master]","outputFolderName":"Bryce-3D_ip_master"},{"location":{"location":"https://github.com/loyaltypollution/ip.git","repoName":"ip","organization":"loyaltypollution","domainName":"github"},"branch":"master","displayName":"loyaltypollution/ip[master]","outputFolderName":"loyaltypollution_ip_master"},{"location":{"location":"https://github.com/josejhkim/ip.git","repoName":"ip","organization":"josejhkim","domainName":"github"},"branch":"master","displayName":"josejhkim/ip[master]","outputFolderName":"josejhkim_ip_master"},{"location":{"location":"https://github.com/cscms03/ip.git","repoName":"ip","organization":"cscms03","domainName":"github"},"branch":"master","displayName":"cscms03/ip[master]","outputFolderName":"cscms03_ip_master"},{"location":{"location":"https://github.com/limshaoqi/ip.git","repoName":"ip","organization":"limshaoqi","domainName":"github"},"branch":"master","displayName":"limshaoqi/ip[master]","outputFolderName":"limshaoqi_ip_master"},{"location":{"location":"https://github.com/caando/ip.git","repoName":"ip","organization":"caando","domainName":"github"},"branch":"master","displayName":"caando/ip[master]","outputFolderName":"caando_ip_master"},{"location":{"location":"https://github.com/Hugo-Chia/ip.git","repoName":"ip","organization":"Hugo-Chia","domainName":"github"},"branch":"master","displayName":"Hugo-Chia/ip[master]","outputFolderName":"Hugo-Chia_ip_master"},{"location":{"location":"https://github.com/wilsonh0/ip.git","repoName":"ip","organization":"wilsonh0","domainName":"github"},"branch":"master","displayName":"wilsonh0/ip[master]","outputFolderName":"wilsonh0_ip_master"},{"location":{"location":"https://github.com/carineang/ip.git","repoName":"ip","organization":"carineang","domainName":"github"},"branch":"master","displayName":"carineang/ip[master]","outputFolderName":"carineang_ip_master"},{"location":{"location":"https://github.com/zenn345/ip.git","repoName":"ip","organization":"zenn345","domainName":"github"},"branch":"master","displayName":"zenn345/ip[master]","outputFolderName":"zenn345_ip_master"},{"location":{"location":"https://github.com/juneha1120/ip.git","repoName":"ip","organization":"juneha1120","domainName":"github"},"branch":"master","displayName":"juneha1120/ip[master]","outputFolderName":"juneha1120_ip_master"},{"location":{"location":"https://github.com/Windofbitter/ip.git","repoName":"ip","organization":"Windofbitter","domainName":"github"},"branch":"master","displayName":"Windofbitter/ip[master]","outputFolderName":"Windofbitter_ip_master"},{"location":{"location":"https://github.com/shawnnygoh/ip.git","repoName":"ip","organization":"shawnnygoh","domainName":"github"},"branch":"master","displayName":"shawnnygoh/ip[master]","outputFolderName":"shawnnygoh_ip_master"},{"location":{"location":"https://github.com/HAITAO2003/ip.git","repoName":"ip","organization":"HAITAO2003","domainName":"github"},"branch":"master","displayName":"HAITAO2003/ip[master]","outputFolderName":"HAITAO2003_ip_master"},{"location":{"location":"https://github.com/e1093051/ip.git","repoName":"ip","organization":"e1093051","domainName":"github"},"branch":"master","displayName":"e1093051/ip[master]","outputFolderName":"e1093051_ip_master"},{"location":{"location":"https://github.com/samuelneo/ip.git","repoName":"ip","organization":"samuelneo","domainName":"github"},"branch":"master","displayName":"samuelneo/ip[master]","outputFolderName":"samuelneo_ip_master"},{"location":{"location":"https://github.com/nicholasohjj/ip.git","repoName":"ip","organization":"nicholasohjj","domainName":"github"},"branch":"master","displayName":"nicholasohjj/ip[master]","outputFolderName":"nicholasohjj_ip_master"},{"location":{"location":"https://github.com/nja99/ip.git","repoName":"ip","organization":"nja99","domainName":"github"},"branch":"master","displayName":"nja99/ip[master]","outputFolderName":"nja99_ip_master"},{"location":{"location":"https://github.com/Clifong/ip.git","repoName":"ip","organization":"Clifong","domainName":"github"},"branch":"master","displayName":"Clifong/ip[master]","outputFolderName":"Clifong_ip_master"},{"location":{"location":"https://github.com/ziliangstanley/ip.git","repoName":"ip","organization":"ziliangstanley","domainName":"github"},"branch":"master","displayName":"ziliangstanley/ip[master]","outputFolderName":"ziliangstanley_ip_master"},{"location":{"location":"https://github.com/isaacchua0309/ip.git","repoName":"ip","organization":"isaacchua0309","domainName":"github"},"branch":"master","displayName":"isaacchua0309/ip[master]","outputFolderName":"isaacchua0309_ip_master"},{"location":{"location":"https://github.com/Mingyuan03/ip.git","repoName":"ip","organization":"Mingyuan03","domainName":"github"},"branch":"master","displayName":"Mingyuan03/ip[master]","outputFolderName":"Mingyuan03_ip_master"},{"location":{"location":"https://github.com/Wrongian/ip.git","repoName":"ip","organization":"Wrongian","domainName":"github"},"branch":"master","displayName":"Wrongian/ip[master]","outputFolderName":"Wrongian_ip_master"},{"location":{"location":"https://github.com/DESU-CLUB/ip.git","repoName":"ip","organization":"DESU-CLUB","domainName":"github"},"branch":"master","displayName":"DESU-CLUB/ip[master]","outputFolderName":"DESU-CLUB_ip_master"},{"location":{"location":"https://github.com/Emmanuel2001/ip.git","repoName":"ip","organization":"Emmanuel2001","domainName":"github"},"branch":"master","displayName":"Emmanuel2001/ip[master]","outputFolderName":"Emmanuel2001_ip_master"},{"location":{"location":"https://github.com/avinazz3/ip.git","repoName":"ip","organization":"avinazz3","domainName":"github"},"branch":"master","displayName":"avinazz3/ip[master]","outputFolderName":"avinazz3_ip_master"},{"location":{"location":"https://github.com/jonzyyyy/ip.git","repoName":"ip","organization":"jonzyyyy","domainName":"github"},"branch":"master","displayName":"jonzyyyy/ip[master]","outputFolderName":"jonzyyyy_ip_master"},{"location":{"location":"https://github.com/Huan-Kiat/ip.git","repoName":"ip","organization":"Huan-Kiat","domainName":"github"},"branch":"master","displayName":"Huan-Kiat/ip[master]","outputFolderName":"Huan-Kiat_ip_master"},{"location":{"location":"https://github.com/chanjunlin/ip.git","repoName":"ip","organization":"chanjunlin","domainName":"github"},"branch":"master","displayName":"chanjunlin/ip[master]","outputFolderName":"chanjunlin_ip_master"},{"location":{"location":"https://github.com/bryantjandra/ip.git","repoName":"ip","organization":"bryantjandra","domainName":"github"},"branch":"master","displayName":"bryantjandra/ip[master]","outputFolderName":"bryantjandra_ip_master"},{"location":{"location":"https://github.com/gajinkee/ip.git","repoName":"ip","organization":"gajinkee","domainName":"github"},"branch":"master","displayName":"gajinkee/ip[master]","outputFolderName":"gajinkee_ip_master"},{"location":{"location":"https://github.com/SociallyIneptWeeb/ip.git","repoName":"ip","organization":"SociallyIneptWeeb","domainName":"github"},"branch":"master","displayName":"SociallyIneptWeeb/ip[master]","outputFolderName":"SociallyIneptWeeb_ip_master"},{"location":{"location":"https://github.com/nickt121/ip.git","repoName":"ip","organization":"nickt121","domainName":"github"},"branch":"master","displayName":"nickt121/ip[master]","outputFolderName":"nickt121_ip_master"},{"location":{"location":"https://github.com/themintchoco/ip.git","repoName":"ip","organization":"themintchoco","domainName":"github"},"branch":"master","displayName":"themintchoco/ip[master]","outputFolderName":"themintchoco_ip_master"},{"location":{"location":"https://github.com/Zhannyhong/ip.git","repoName":"ip","organization":"Zhannyhong","domainName":"github"},"branch":"master","displayName":"Zhannyhong/ip[master]","outputFolderName":"Zhannyhong_ip_master"},{"location":{"location":"https://github.com/gohlucas/ip.git","repoName":"ip","organization":"gohlucas","domainName":"github"},"branch":"master","displayName":"gohlucas/ip[master]","outputFolderName":"gohlucas_ip_master"},{"location":{"location":"https://github.com/ki1r0/ip.git","repoName":"ip","organization":"ki1r0","domainName":"github"},"branch":"master","displayName":"ki1r0/ip[master]","outputFolderName":"ki1r0_ip_master"},{"location":{"location":"https://github.com/Luoq1-Xu/ip.git","repoName":"ip","organization":"Luoq1-Xu","domainName":"github"},"branch":"master","displayName":"Luoq1-Xu/ip[master]","outputFolderName":"Luoq1-Xu_ip_master"},{"location":{"location":"https://github.com/noahang/ip.git","repoName":"ip","organization":"noahang","domainName":"github"},"branch":"master","displayName":"noahang/ip[master]","outputFolderName":"noahang_ip_master"},{"location":{"location":"https://github.com/Frozennfishh/ip.git","repoName":"ip","organization":"Frozennfishh","domainName":"github"},"branch":"master","displayName":"Frozennfishh/ip[master]","outputFolderName":"Frozennfishh_ip_master"},{"location":{"location":"https://github.com/SAN-MUYUN/ip.git","repoName":"ip","organization":"SAN-MUYUN","domainName":"github"},"branch":"master","displayName":"SAN-MUYUN/ip[master]","outputFolderName":"SAN-MUYUN_ip_master"},{"location":{"location":"https://github.com/ernestlsy/ip.git","repoName":"ip","organization":"ernestlsy","domainName":"github"},"branch":"master","displayName":"ernestlsy/ip[master]","outputFolderName":"ernestlsy_ip_master"},{"location":{"location":"https://github.com/Benjam11n/ip.git","repoName":"ip","organization":"Benjam11n","domainName":"github"},"branch":"master","displayName":"Benjam11n/ip[master]","outputFolderName":"Benjam11n_ip_master"},{"location":{"location":"https://github.com/lauhengyi/ip.git","repoName":"ip","organization":"lauhengyi","domainName":"github"},"branch":"master","displayName":"lauhengyi/ip[master]","outputFolderName":"lauhengyi_ip_master"},{"location":{"location":"https://github.com/zedonggg/ip.git","repoName":"ip","organization":"zedonggg","domainName":"github"},"branch":"master","displayName":"zedonggg/ip[master]","outputFolderName":"zedonggg_ip_master"},{"location":{"location":"https://github.com/hrishikeshsathyian/ip.git","repoName":"ip","organization":"hrishikeshsathyian","domainName":"github"},"branch":"master","displayName":"hrishikeshsathyian/ip[master]","outputFolderName":"hrishikeshsathyian_ip_master"},{"location":{"location":"https://github.com/bipplane/ip.git","repoName":"ip","organization":"bipplane","domainName":"github"},"branch":"master","displayName":"bipplane/ip[master]","outputFolderName":"bipplane_ip_master"},{"location":{"location":"https://github.com/MrAsparag00se/ip.git","repoName":"ip","organization":"MrAsparag00se","domainName":"github"},"branch":"master","displayName":"MrAsparag00se/ip[master]","outputFolderName":"MrAsparag00se_ip_master"},{"location":{"location":"https://github.com/zhenglong1603/ip.git","repoName":"ip","organization":"zhenglong1603","domainName":"github"},"branch":"master","displayName":"zhenglong1603/ip[master]","outputFolderName":"zhenglong1603_ip_master"},{"location":{"location":"https://github.com/Siyan-G/ip.git","repoName":"ip","organization":"Siyan-G","domainName":"github"},"branch":"master","displayName":"Siyan-G/ip[master]","outputFolderName":"Siyan-G_ip_master"},{"location":{"location":"https://github.com/tim0tay/ip.git","repoName":"ip","organization":"tim0tay","domainName":"github"},"branch":"master","displayName":"tim0tay/ip[master]","outputFolderName":"tim0tay_ip_master"},{"location":{"location":"https://github.com/jensenhuangyankai/ip.git","repoName":"ip","organization":"jensenhuangyankai","domainName":"github"},"branch":"master","displayName":"jensenhuangyankai/ip[master]","outputFolderName":"jensenhuangyankai_ip_master"},{"location":{"location":"https://github.com/gengyudong/ip.git","repoName":"ip","organization":"gengyudong","domainName":"github"},"branch":"master","displayName":"gengyudong/ip[master]","outputFolderName":"gengyudong_ip_master"},{"location":{"location":"https://github.com/awlarpi/ip.git","repoName":"ip","organization":"awlarpi","domainName":"github"},"branch":"master","displayName":"awlarpi/ip[master]","outputFolderName":"awlarpi_ip_master"},{"location":{"location":"https://github.com/kaungzinye/ip.git","repoName":"ip","organization":"kaungzinye","domainName":"github"},"branch":"master","displayName":"kaungzinye/ip[master]","outputFolderName":"kaungzinye_ip_master"},{"location":{"location":"https://github.com/sciphi-123/ip.git","repoName":"ip","organization":"sciphi-123","domainName":"github"},"branch":"master","displayName":"sciphi-123/ip[master]","outputFolderName":"sciphi-123_ip_master"},{"location":{"location":"https://github.com/junngithub/ip.git","repoName":"ip","organization":"junngithub","domainName":"github"},"branch":"master","displayName":"junngithub/ip[master]","outputFolderName":"junngithub_ip_master"},{"location":{"location":"https://github.com/potatodudedude/ip.git","repoName":"ip","organization":"potatodudedude","domainName":"github"},"branch":"master","displayName":"potatodudedude/ip[master]","outputFolderName":"potatodudedude_ip_master"},{"location":{"location":"https://github.com/m0destly/ip.git","repoName":"ip","organization":"m0destly","domainName":"github"},"branch":"master","displayName":"m0destly/ip[master]","outputFolderName":"m0destly_ip_master"},{"location":{"location":"https://github.com/iamanoob44/ip.git","repoName":"ip","organization":"iamanoob44","domainName":"github"},"branch":"master","displayName":"iamanoob44/ip[master]","outputFolderName":"iamanoob44_ip_master"},{"location":{"location":"https://github.com/itsapaulblem/ip.git","repoName":"ip","organization":"itsapaulblem","domainName":"github"},"branch":"master","displayName":"itsapaulblem/ip[master]","outputFolderName":"itsapaulblem_ip_master"},{"location":{"location":"https://github.com/moingshoing/ip.git","repoName":"ip","organization":"moingshoing","domainName":"github"},"branch":"master","displayName":"moingshoing/ip[master]","outputFolderName":"moingshoing_ip_master"},{"location":{"location":"https://github.com/chen-xiangrui/ip.git","repoName":"ip","organization":"chen-xiangrui","domainName":"github"},"branch":"master","displayName":"chen-xiangrui/ip[master]","outputFolderName":"chen-xiangrui_ip_master"},{"location":{"location":"https://github.com/mihirniyogi/ip.git","repoName":"ip","organization":"mihirniyogi","domainName":"github"},"branch":"master","displayName":"mihirniyogi/ip[master]","outputFolderName":"mihirniyogi_ip_master"},{"location":{"location":"https://github.com/darHH/ip.git","repoName":"ip","organization":"darHH","domainName":"github"},"branch":"master","displayName":"darHH/ip[master]","outputFolderName":"darHH_ip_master"},{"location":{"location":"https://github.com/Codekrodile/ip.git","repoName":"ip","organization":"Codekrodile","domainName":"github"},"branch":"master","displayName":"Codekrodile/ip[master]","outputFolderName":"Codekrodile_ip_master"},{"location":{"location":"https://github.com/nicolaskjh/ip.git","repoName":"ip","organization":"nicolaskjh","domainName":"github"},"branch":"master","displayName":"nicolaskjh/ip[master]","outputFolderName":"nicolaskjh_ip_master"},{"location":{"location":"https://github.com/laishuya/ip.git","repoName":"ip","organization":"laishuya","domainName":"github"},"branch":"master","displayName":"laishuya/ip[master]","outputFolderName":"laishuya_ip_master"},{"location":{"location":"https://github.com/GrassHeadd/ip.git","repoName":"ip","organization":"GrassHeadd","domainName":"github"},"branch":"master","displayName":"GrassHeadd/ip[master]","outputFolderName":"GrassHeadd_ip_master"},{"location":{"location":"https://github.com/leeyenshen/ip.git","repoName":"ip","organization":"leeyenshen","domainName":"github"},"branch":"master","displayName":"leeyenshen/ip[master]","outputFolderName":"leeyenshen_ip_master"},{"location":{"location":"https://github.com/cyrolite/ip.git","repoName":"ip","organization":"cyrolite","domainName":"github"},"branch":"master","displayName":"cyrolite/ip[master]","outputFolderName":"cyrolite_ip_master"},{"location":{"location":"https://github.com/mhaikelll/ip.git","repoName":"ip","organization":"mhaikelll","domainName":"github"},"branch":"master","displayName":"mhaikelll/ip[master]","outputFolderName":"mhaikelll_ip_master"},{"location":{"location":"https://github.com/LonelyFort/ip.git","repoName":"ip","organization":"LonelyFort","domainName":"github"},"branch":"master","displayName":"LonelyFort/ip[master]","outputFolderName":"LonelyFort_ip_master"},{"location":{"location":"https://github.com/Engulfy/ip.git","repoName":"ip","organization":"Engulfy","domainName":"github"},"branch":"master","displayName":"Engulfy/ip[master]","outputFolderName":"Engulfy_ip_master"},{"location":{"location":"https://github.com/jingchun19/ip.git","repoName":"ip","organization":"jingchun19","domainName":"github"},"branch":"master","displayName":"jingchun19/ip[master]","outputFolderName":"jingchun19_ip_master"},{"location":{"location":"https://github.com/LeeJiaWei23/ip.git","repoName":"ip","organization":"LeeJiaWei23","domainName":"github"},"branch":"master","displayName":"LeeJiaWei23/ip[master]","outputFolderName":"LeeJiaWei23_ip_master"},{"location":{"location":"https://github.com/wenruu/ip.git","repoName":"ip","organization":"wenruu","domainName":"github"},"branch":"master","displayName":"wenruu/ip[master]","outputFolderName":"wenruu_ip_master"},{"location":{"location":"https://github.com/nicholasdaijh/ip.git","repoName":"ip","organization":"nicholasdaijh","domainName":"github"},"branch":"master","displayName":"nicholasdaijh/ip[master]","outputFolderName":"nicholasdaijh_ip_master"},{"location":{"location":"https://github.com/Timothy-Ho0203/ip.git","repoName":"ip","organization":"Timothy-Ho0203","domainName":"github"},"branch":"master","displayName":"Timothy-Ho0203/ip[master]","outputFolderName":"Timothy-Ho0203_ip_master"},{"location":{"location":"https://github.com/mervyn-teo/ip.git","repoName":"ip","organization":"mervyn-teo","domainName":"github"},"branch":"master","displayName":"mervyn-teo/ip[master]","outputFolderName":"mervyn-teo_ip_master"},{"location":{"location":"https://github.com/SherrinfordHR/ip.git","repoName":"ip","organization":"SherrinfordHR","domainName":"github"},"branch":"master","displayName":"SherrinfordHR/ip[master]","outputFolderName":"SherrinfordHR_ip_master"},{"location":{"location":"https://github.com/kumar2215/ip.git","repoName":"ip","organization":"kumar2215","domainName":"github"},"branch":"master","displayName":"kumar2215/ip[master]","outputFolderName":"kumar2215_ip_master"},{"location":{"location":"https://github.com/clx3210/ip.git","repoName":"ip","organization":"clx3210","domainName":"github"},"branch":"master","displayName":"clx3210/ip[master]","outputFolderName":"clx3210_ip_master"},{"location":{"location":"https://github.com/curiousfun88/ip.git","repoName":"ip","organization":"curiousfun88","domainName":"github"},"branch":"master","displayName":"curiousfun88/ip[master]","outputFolderName":"curiousfun88_ip_master"},{"location":{"location":"https://github.com/cerulyean/ip.git","repoName":"ip","organization":"cerulyean","domainName":"github"},"branch":"master","displayName":"cerulyean/ip[master]","outputFolderName":"cerulyean_ip_master"},{"location":{"location":"https://github.com/Shanyey/ip.git","repoName":"ip","organization":"Shanyey","domainName":"github"},"branch":"master","displayName":"Shanyey/ip[master]","outputFolderName":"Shanyey_ip_master"},{"location":{"location":"https://github.com/weien02/ip.git","repoName":"ip","organization":"weien02","domainName":"github"},"branch":"master","displayName":"weien02/ip[master]","outputFolderName":"weien02_ip_master"},{"location":{"location":"https://github.com/waylonggggg/ip.git","repoName":"ip","organization":"waylonggggg","domainName":"github"},"branch":"master","displayName":"waylonggggg/ip[master]","outputFolderName":"waylonggggg_ip_master"},{"location":{"location":"https://github.com/jonaturn/ip.git","repoName":"ip","organization":"jonaturn","domainName":"github"},"branch":"master","displayName":"jonaturn/ip[master]","outputFolderName":"jonaturn_ip_master"},{"location":{"location":"https://github.com/Junixm/ip.git","repoName":"ip","organization":"Junixm","domainName":"github"},"branch":"master","displayName":"Junixm/ip[master]","outputFolderName":"Junixm_ip_master"},{"location":{"location":"https://github.com/mogmyij/ip.git","repoName":"ip","organization":"mogmyij","domainName":"github"},"branch":"master","displayName":"mogmyij/ip[master]","outputFolderName":"mogmyij_ip_master"},{"location":{"location":"https://github.com/TeaMakesMePee/ip.git","repoName":"ip","organization":"TeaMakesMePee","domainName":"github"},"branch":"master","displayName":"TeaMakesMePee/ip[master]","outputFolderName":"TeaMakesMePee_ip_master"},{"location":{"location":"https://github.com/vikeedough/ip.git","repoName":"ip","organization":"vikeedough","domainName":"github"},"branch":"master","displayName":"vikeedough/ip[master]","outputFolderName":"vikeedough_ip_master"},{"location":{"location":"https://github.com/deseansoh/ip.git","repoName":"ip","organization":"deseansoh","domainName":"github"},"branch":"master","displayName":"deseansoh/ip[master]","outputFolderName":"deseansoh_ip_master"},{"location":{"location":"https://github.com/danplatypus30/ip.git","repoName":"ip","organization":"danplatypus30","domainName":"github"},"branch":"master","displayName":"danplatypus30/ip[master]","outputFolderName":"danplatypus30_ip_master"},{"location":{"location":"https://github.com/TiewJiaLiang/ip.git","repoName":"ip","organization":"TiewJiaLiang","domainName":"github"},"branch":"master","displayName":"TiewJiaLiang/ip[master]","outputFolderName":"TiewJiaLiang_ip_master"},{"location":{"location":"https://github.com/TanJieHaoAmos/ip.git","repoName":"ip","organization":"TanJieHaoAmos","domainName":"github"},"branch":"master","displayName":"TanJieHaoAmos/ip[master]","outputFolderName":"TanJieHaoAmos_ip_master"},{"location":{"location":"https://github.com/AndreChia/ip.git","repoName":"ip","organization":"AndreChia","domainName":"github"},"branch":"master","displayName":"AndreChia/ip[master]","outputFolderName":"AndreChia_ip_master"},{"location":{"location":"https://github.com/Xavierlhm/ip.git","repoName":"ip","organization":"Xavierlhm","domainName":"github"},"branch":"master","displayName":"Xavierlhm/ip[master]","outputFolderName":"Xavierlhm_ip_master"},{"location":{"location":"https://github.com/0xF41/ip.git","repoName":"ip","organization":"0xF41","domainName":"github"},"branch":"master","displayName":"0xF41/ip[master]","outputFolderName":"0xF41_ip_master"},{"location":{"location":"https://github.com/wallacepck/ip.git","repoName":"ip","organization":"wallacepck","domainName":"github"},"branch":"master","displayName":"wallacepck/ip[master]","outputFolderName":"wallacepck_ip_master"},{"location":{"location":"https://github.com/xa0412/ip.git","repoName":"ip","organization":"xa0412","domainName":"github"},"branch":"master","displayName":"xa0412/ip[master]","outputFolderName":"xa0412_ip_master"},{"location":{"location":"https://github.com/Alolononon/ip.git","repoName":"ip","organization":"Alolononon","domainName":"github"},"branch":"master","displayName":"Alolononon/ip[master]","outputFolderName":"Alolononon_ip_master"},{"location":{"location":"https://github.com/gekjunxu/ip.git","repoName":"ip","organization":"gekjunxu","domainName":"github"},"branch":"master","displayName":"gekjunxu/ip[master]","outputFolderName":"gekjunxu_ip_master"},{"location":{"location":"https://github.com/WhiteBear82/ip.git","repoName":"ip","organization":"WhiteBear82","domainName":"github"},"branch":"master","displayName":"WhiteBear82/ip[master]","outputFolderName":"WhiteBear82_ip_master"},{"location":{"location":"https://github.com/nictjh/ip.git","repoName":"ip","organization":"nictjh","domainName":"github"},"branch":"master","displayName":"nictjh/ip[master]","outputFolderName":"nictjh_ip_master"},{"location":{"location":"https://github.com/darrenchooji/ip.git","repoName":"ip","organization":"darrenchooji","domainName":"github"},"branch":"master","displayName":"darrenchooji/ip[master]","outputFolderName":"darrenchooji_ip_master"},{"location":{"location":"https://github.com/panomia01/ip.git","repoName":"ip","organization":"panomia01","domainName":"github"},"branch":"master","displayName":"panomia01/ip[master]","outputFolderName":"panomia01_ip_master"},{"location":{"location":"https://github.com/Mil-leon/ip.git","repoName":"ip","organization":"Mil-leon","domainName":"github"},"branch":"master","displayName":"Mil-leon/ip[master]","outputFolderName":"Mil-leon_ip_master"},{"location":{"location":"https://github.com/zuoshihua/ip.git","repoName":"ip","organization":"zuoshihua","domainName":"github"},"branch":"master","displayName":"zuoshihua/ip[master]","outputFolderName":"zuoshihua_ip_master"},{"location":{"location":"https://github.com/Fieash/ip.git","repoName":"ip","organization":"Fieash","domainName":"github"},"branch":"master","displayName":"Fieash/ip[master]","outputFolderName":"Fieash_ip_master"},{"location":{"location":"https://github.com/jon-seana/ip.git","repoName":"ip","organization":"jon-seana","domainName":"github"},"branch":"master","displayName":"jon-seana/ip[master]","outputFolderName":"jon-seana_ip_master"},{"location":{"location":"https://github.com/ShiJianXi/ip.git","repoName":"ip","organization":"ShiJianXi","domainName":"github"},"branch":"master","displayName":"ShiJianXi/ip[master]","outputFolderName":"ShiJianXi_ip_master"},{"location":{"location":"https://github.com/CloudKai/ip.git","repoName":"ip","organization":"CloudKai","domainName":"github"},"branch":"master","displayName":"CloudKai/ip[master]","outputFolderName":"CloudKai_ip_master"},{"location":{"location":"https://github.com/AnWe11/ip.git","repoName":"ip","organization":"AnWe11","domainName":"github"},"branch":"master","displayName":"AnWe11/ip[master]","outputFolderName":"AnWe11_ip_master"},{"location":{"location":"https://github.com/wzhua02/ip.git","repoName":"ip","organization":"wzhua02","domainName":"github"},"branch":"master","displayName":"wzhua02/ip[master]","outputFolderName":"wzhua02_ip_master"},{"location":{"location":"https://github.com/KimHan01/ip.git","repoName":"ip","organization":"KimHan01","domainName":"github"},"branch":"master","displayName":"KimHan01/ip[master]","outputFolderName":"KimHan01_ip_master"},{"location":{"location":"https://github.com/cyhni/ip.git","repoName":"ip","organization":"cyhni","domainName":"github"},"branch":"master","displayName":"cyhni/ip[master]","outputFolderName":"cyhni_ip_master"},{"location":{"location":"https://github.com/wei-song1/ip.git","repoName":"ip","organization":"wei-song1","domainName":"github"},"branch":"master","displayName":"wei-song1/ip[master]","outputFolderName":"wei-song1_ip_master"},{"location":{"location":"https://github.com/javentankangle/ip.git","repoName":"ip","organization":"javentankangle","domainName":"github"},"branch":"master","displayName":"javentankangle/ip[master]","outputFolderName":"javentankangle_ip_master"},{"location":{"location":"https://github.com/coffeemocha/ip.git","repoName":"ip","organization":"coffeemocha","domainName":"github"},"branch":"master","displayName":"coffeemocha/ip[master]","outputFolderName":"coffeemocha_ip_master"},{"location":{"location":"https://github.com/reuben-thomas/ip.git","repoName":"ip","organization":"reuben-thomas","domainName":"github"},"branch":"master","displayName":"reuben-thomas/ip[master]","outputFolderName":"reuben-thomas_ip_master"},{"location":{"location":"https://github.com/varuuuun/ip.git","repoName":"ip","organization":"varuuuun","domainName":"github"},"branch":"master","displayName":"varuuuun/ip[master]","outputFolderName":"varuuuun_ip_master"},{"location":{"location":"https://github.com/itsvari/ip.git","repoName":"ip","organization":"itsvari","domainName":"github"},"branch":"master","displayName":"itsvari/ip[master]","outputFolderName":"itsvari_ip_master"},{"location":{"location":"https://github.com/namitdeb739/ip.git","repoName":"ip","organization":"namitdeb739","domainName":"github"},"branch":"master","displayName":"namitdeb739/ip[master]","outputFolderName":"namitdeb739_ip_master"},{"location":{"location":"https://github.com/weiyanminoo/ip.git","repoName":"ip","organization":"weiyanminoo","domainName":"github"},"branch":"master","displayName":"weiyanminoo/ip[master]","outputFolderName":"weiyanminoo_ip_master"},{"location":{"location":"https://github.com/changjy81/ip.git","repoName":"ip","organization":"changjy81","domainName":"github"},"branch":"master","displayName":"changjy81/ip[master]","outputFolderName":"changjy81_ip_master"},{"location":{"location":"https://github.com/LuBolin/ip.git","repoName":"ip","organization":"LuBolin","domainName":"github"},"branch":"master","displayName":"LuBolin/ip[master]","outputFolderName":"LuBolin_ip_master"},{"location":{"location":"https://github.com/aaronlim02/ip.git","repoName":"ip","organization":"aaronlim02","domainName":"github"},"branch":"master","displayName":"aaronlim02/ip[master]","outputFolderName":"aaronlim02_ip_master"},{"location":{"location":"https://github.com/Ben926/ip.git","repoName":"ip","organization":"Ben926","domainName":"github"},"branch":"master","displayName":"Ben926/ip[master]","outputFolderName":"Ben926_ip_master"},{"location":{"location":"https://github.com/Hackari/ip.git","repoName":"ip","organization":"Hackari","domainName":"github"},"branch":"master","displayName":"Hackari/ip[master]","outputFolderName":"Hackari_ip_master"},{"location":{"location":"https://github.com/Jsjk112344/ip.git","repoName":"ip","organization":"Jsjk112344","domainName":"github"},"branch":"master","displayName":"Jsjk112344/ip[master]","outputFolderName":"Jsjk112344_ip_master"},{"location":{"location":"https://github.com/adoubleb/ip.git","repoName":"ip","organization":"adoubleb","domainName":"github"},"branch":"master","displayName":"adoubleb/ip[master]","outputFolderName":"adoubleb_ip_master"},{"location":{"location":"https://github.com/alexandtheoh/ip.git","repoName":"ip","organization":"alexandtheoh","domainName":"github"},"branch":"master","displayName":"alexandtheoh/ip[master]","outputFolderName":"alexandtheoh_ip_master"},{"location":{"location":"https://github.com/soonami69/ip.git","repoName":"ip","organization":"soonami69","domainName":"github"},"branch":"master","displayName":"soonami69/ip[master]","outputFolderName":"soonami69_ip_master"},{"location":{"location":"https://github.com/jaylontan/ip.git","repoName":"ip","organization":"jaylontan","domainName":"github"},"branch":"master","displayName":"jaylontan/ip[master]","outputFolderName":"jaylontan_ip_master"},{"location":{"location":"https://github.com/zechary28/ip.git","repoName":"ip","organization":"zechary28","domainName":"github"},"branch":"master","displayName":"zechary28/ip[master]","outputFolderName":"zechary28_ip_master"},{"location":{"location":"https://github.com/Zonnie-23/ip.git","repoName":"ip","organization":"Zonnie-23","domainName":"github"},"branch":"master","displayName":"Zonnie-23/ip[master]","outputFolderName":"Zonnie-23_ip_master"},{"location":{"location":"https://github.com/benedictleejr/ip.git","repoName":"ip","organization":"benedictleejr","domainName":"github"},"branch":"master","displayName":"benedictleejr/ip[master]","outputFolderName":"benedictleejr_ip_master"},{"location":{"location":"https://github.com/pastchum/ip.git","repoName":"ip","organization":"pastchum","domainName":"github"},"branch":"master","displayName":"pastchum/ip[master]","outputFolderName":"pastchum_ip_master"},{"location":{"location":"https://github.com/farhan-navas/ip.git","repoName":"ip","organization":"farhan-navas","domainName":"github"},"branch":"master","displayName":"farhan-navas/ip[master]","outputFolderName":"farhan-navas_ip_master"},{"location":{"location":"https://github.com/lilyium/ip.git","repoName":"ip","organization":"lilyium","domainName":"github"},"branch":"master","displayName":"lilyium/ip[master]","outputFolderName":"lilyium_ip_master"},{"location":{"location":"https://github.com/chuahziyang/ip.git","repoName":"ip","organization":"chuahziyang","domainName":"github"},"branch":"master","displayName":"chuahziyang/ip[master]","outputFolderName":"chuahziyang_ip_master"},{"location":{"location":"https://github.com/Seethevon/ip.git","repoName":"ip","organization":"Seethevon","domainName":"github"},"branch":"master","displayName":"Seethevon/ip[master]","outputFolderName":"Seethevon_ip_master"},{"location":{"location":"https://github.com/yuto1115/ip.git","repoName":"ip","organization":"yuto1115","domainName":"github"},"branch":"master","displayName":"yuto1115/ip[master]","outputFolderName":"yuto1115_ip_master"},{"location":{"location":"https://github.com/DanielJames0302/ip.git","repoName":"ip","organization":"DanielJames0302","domainName":"github"},"branch":"master","displayName":"DanielJames0302/ip[master]","outputFolderName":"DanielJames0302_ip_master"},{"location":{"location":"https://github.com/yuqing-tham/ip.git","repoName":"ip","organization":"yuqing-tham","domainName":"github"},"branch":"master","displayName":"yuqing-tham/ip[master]","outputFolderName":"yuqing-tham_ip_master"},{"location":{"location":"https://github.com/SomneelSaha2004/ip.git","repoName":"ip","organization":"SomneelSaha2004","domainName":"github"},"branch":"master","displayName":"SomneelSaha2004/ip[master]","outputFolderName":"SomneelSaha2004_ip_master"},{"location":{"location":"https://github.com/CHI-ME/ip.git","repoName":"ip","organization":"CHI-ME","domainName":"github"},"branch":"master","displayName":"CHI-ME/ip[master]","outputFolderName":"CHI-ME_ip_master"},{"location":{"location":"https://github.com/charlenelau-20/ip.git","repoName":"ip","organization":"charlenelau-20","domainName":"github"},"branch":"master","displayName":"charlenelau-20/ip[master]","outputFolderName":"charlenelau-20_ip_master"},{"location":{"location":"https://github.com/wswddl/ip.git","repoName":"ip","organization":"wswddl","domainName":"github"},"branch":"master","displayName":"wswddl/ip[master]","outputFolderName":"wswddl_ip_master"},{"location":{"location":"https://github.com/veehz/ip.git","repoName":"ip","organization":"veehz","domainName":"github"},"branch":"master","displayName":"veehz/ip[master]","outputFolderName":"veehz_ip_master"},{"location":{"location":"https://github.com/Judy1x4/ip.git","repoName":"ip","organization":"Judy1x4","domainName":"github"},"branch":"master","displayName":"Judy1x4/ip[master]","outputFolderName":"Judy1x4_ip_master"},{"location":{"location":"https://github.com/zihung20/ip.git","repoName":"ip","organization":"zihung20","domainName":"github"},"branch":"master","displayName":"zihung20/ip[master]","outputFolderName":"zihung20_ip_master"},{"location":{"location":"https://github.com/pang-yy/ip.git","repoName":"ip","organization":"pang-yy","domainName":"github"},"branch":"master","displayName":"pang-yy/ip[master]","outputFolderName":"pang-yy_ip_master"},{"location":{"location":"https://github.com/CXl0l0/ip.git","repoName":"ip","organization":"CXl0l0","domainName":"github"},"branch":"master","displayName":"CXl0l0/ip[master]","outputFolderName":"CXl0l0_ip_master"},{"location":{"location":"https://github.com/swatirajesh277/ip.git","repoName":"ip","organization":"swatirajesh277","domainName":"github"},"branch":"master","displayName":"swatirajesh277/ip[master]","outputFolderName":"swatirajesh277_ip_master"},{"location":{"location":"https://github.com/flljy940/ip.git","repoName":"ip","organization":"flljy940","domainName":"github"},"branch":"master","displayName":"flljy940/ip[master]","outputFolderName":"flljy940_ip_master"},{"location":{"location":"https://github.com/DiligentPenguinn/ip.git","repoName":"ip","organization":"DiligentPenguinn","domainName":"github"},"branch":"master","displayName":"DiligentPenguinn/ip[master]","outputFolderName":"DiligentPenguinn_ip_master"},{"location":{"location":"https://github.com/GabriellaGloria/ip.git","repoName":"ip","organization":"GabriellaGloria","domainName":"github"},"branch":"master","displayName":"GabriellaGloria/ip[master]","outputFolderName":"GabriellaGloria_ip_master"},{"location":{"location":"https://github.com/minhkiwi14/ip.git","repoName":"ip","organization":"minhkiwi14","domainName":"github"},"branch":"master","displayName":"minhkiwi14/ip[master]","outputFolderName":"minhkiwi14_ip_master"},{"location":{"location":"https://github.com/NhatMinh0208/ip.git","repoName":"ip","organization":"NhatMinh0208","domainName":"github"},"branch":"master","displayName":"NhatMinh0208/ip[master]","outputFolderName":"NhatMinh0208_ip_master"},{"location":{"location":"https://github.com/ChauuuLe/ip.git","repoName":"ip","organization":"ChauuuLe","domainName":"github"},"branch":"master","displayName":"ChauuuLe/ip[master]","outputFolderName":"ChauuuLe_ip_master"},{"location":{"location":"https://github.com/nikingoda/ip.git","repoName":"ip","organization":"nikingoda","domainName":"github"},"branch":"master","displayName":"nikingoda/ip[master]","outputFolderName":"nikingoda_ip_master"},{"location":{"location":"https://github.com/ho-thanh-und/ip.git","repoName":"ip","organization":"ho-thanh-und","domainName":"github"},"branch":"master","displayName":"ho-thanh-und/ip[master]","outputFolderName":"ho-thanh-und_ip_master"},{"location":{"location":"https://github.com/Kkenjji/ip.git","repoName":"ip","organization":"Kkenjji","domainName":"github"},"branch":"master","displayName":"Kkenjji/ip[master]","outputFolderName":"Kkenjji_ip_master"},{"location":{"location":"https://github.com/Bill-1/ip.git","repoName":"ip","organization":"Bill-1","domainName":"github"},"branch":"master","displayName":"Bill-1/ip[master]","outputFolderName":"Bill-1_ip_master"},{"location":{"location":"https://github.com/nhocmt227/ip.git","repoName":"ip","organization":"nhocmt227","domainName":"github"},"branch":"master","displayName":"nhocmt227/ip[master]","outputFolderName":"nhocmt227_ip_master"},{"location":{"location":"https://github.com/Jensen188/ip.git","repoName":"ip","organization":"Jensen188","domainName":"github"},"branch":"master","displayName":"Jensen188/ip[master]","outputFolderName":"Jensen188_ip_master"},{"location":{"location":"https://github.com/TobyCyan/ip.git","repoName":"ip","organization":"TobyCyan","domainName":"github"},"branch":"master","displayName":"TobyCyan/ip[master]","outputFolderName":"TobyCyan_ip_master"},{"location":{"location":"https://github.com/LsmnBmnc/ip.git","repoName":"ip","organization":"LsmnBmnc","domainName":"github"},"branch":"master","displayName":"LsmnBmnc/ip[master]","outputFolderName":"LsmnBmnc_ip_master"},{"location":{"location":"https://github.com/sreelakshmiharidos/ip.git","repoName":"ip","organization":"sreelakshmiharidos","domainName":"github"},"branch":"master","displayName":"sreelakshmiharidos/ip[master]","outputFolderName":"sreelakshmiharidos_ip_master"},{"location":{"location":"https://github.com/meglwhy/ip.git","repoName":"ip","organization":"meglwhy","domainName":"github"},"branch":"master","displayName":"meglwhy/ip[master]","outputFolderName":"meglwhy_ip_master"},{"location":{"location":"https://github.com/JadeCheah/ip.git","repoName":"ip","organization":"JadeCheah","domainName":"github"},"branch":"master","displayName":"JadeCheah/ip[master]","outputFolderName":"JadeCheah_ip_master"},{"location":{"location":"https://github.com/ZaydM18/ip.git","repoName":"ip","organization":"ZaydM18","domainName":"github"},"branch":"master","displayName":"ZaydM18/ip[master]","outputFolderName":"ZaydM18_ip_master"},{"location":{"location":"https://github.com/leewaikin19/ip.git","repoName":"ip","organization":"leewaikin19","domainName":"github"},"branch":"master","displayName":"leewaikin19/ip[master]","outputFolderName":"leewaikin19_ip_master"},{"location":{"location":"https://github.com/kevinlimantoro123/ip.git","repoName":"ip","organization":"kevinlimantoro123","domainName":"github"},"branch":"master","displayName":"kevinlimantoro123/ip[master]","outputFolderName":"kevinlimantoro123_ip_master"},{"location":{"location":"https://github.com/xinnnyeee/ip.git","repoName":"ip","organization":"xinnnyeee","domainName":"github"},"branch":"master","displayName":"xinnnyeee/ip[master]","outputFolderName":"xinnnyeee_ip_master"},{"location":{"location":"https://github.com/githubcsuser/ip.git","repoName":"ip","organization":"githubcsuser","domainName":"github"},"branch":"master","displayName":"githubcsuser/ip[master]","outputFolderName":"githubcsuser_ip_master"},{"location":{"location":"https://github.com/xk1234/ip.git","repoName":"ip","organization":"xk1234","domainName":"github"},"branch":"master","displayName":"xk1234/ip[master]","outputFolderName":"xk1234_ip_master"},{"location":{"location":"https://github.com/UltimateHG/ip.git","repoName":"ip","organization":"UltimateHG","domainName":"github"},"branch":"master","displayName":"UltimateHG/ip[master]","outputFolderName":"UltimateHG_ip_master"},{"location":{"location":"https://github.com/kerktaiheng/ip.git","repoName":"ip","organization":"kerktaiheng","domainName":"github"},"branch":"master","displayName":"kerktaiheng/ip[master]","outputFolderName":"kerktaiheng_ip_master"},{"location":{"location":"https://github.com/Stickiem/ip.git","repoName":"ip","organization":"Stickiem","domainName":"github"},"branch":"master","displayName":"Stickiem/ip[master]","outputFolderName":"Stickiem_ip_master"},{"location":{"location":"https://github.com/zacklow28/ip.git","repoName":"ip","organization":"zacklow28","domainName":"github"},"branch":"master","displayName":"zacklow28/ip[master]","outputFolderName":"zacklow28_ip_master"},{"location":{"location":"https://github.com/WeiHungLoh/ip.git","repoName":"ip","organization":"WeiHungLoh","domainName":"github"},"branch":"master","displayName":"WeiHungLoh/ip[master]","outputFolderName":"WeiHungLoh_ip_master"},{"location":{"location":"https://github.com/monobeartae/ip.git","repoName":"ip","organization":"monobeartae","domainName":"github"},"branch":"master","displayName":"monobeartae/ip[master]","outputFolderName":"monobeartae_ip_master"},{"location":{"location":"https://github.com/Charlesl12/ip.git","repoName":"ip","organization":"Charlesl12","domainName":"github"},"branch":"master","displayName":"Charlesl12/ip[master]","outputFolderName":"Charlesl12_ip_master"},{"location":{"location":"https://github.com/TanXingZhong/ip.git","repoName":"ip","organization":"TanXingZhong","domainName":"github"},"branch":"master","displayName":"TanXingZhong/ip[master]","outputFolderName":"TanXingZhong_ip_master"},{"location":{"location":"https://github.com/NoahKoh/ip.git","repoName":"ip","organization":"NoahKoh","domainName":"github"},"branch":"master","displayName":"NoahKoh/ip[master]","outputFolderName":"NoahKoh_ip_master"},{"location":{"location":"https://github.com/shuang26/ip.git","repoName":"ip","organization":"shuang26","domainName":"github"},"branch":"master","displayName":"shuang26/ip[master]","outputFolderName":"shuang26_ip_master"},{"location":{"location":"https://github.com/reaneechua/ip.git","repoName":"ip","organization":"reaneechua","domainName":"github"},"branch":"master","displayName":"reaneechua/ip[master]","outputFolderName":"reaneechua_ip_master"},{"location":{"location":"https://github.com/HarishB99/ip.git","repoName":"ip","organization":"HarishB99","domainName":"github"},"branch":"master","displayName":"HarishB99/ip[master]","outputFolderName":"HarishB99_ip_master"},{"location":{"location":"https://github.com/BladerX11/ip.git","repoName":"ip","organization":"BladerX11","domainName":"github"},"branch":"master","displayName":"BladerX11/ip[master]","outputFolderName":"BladerX11_ip_master"},{"location":{"location":"https://github.com/jordon0802/ip.git","repoName":"ip","organization":"jordon0802","domainName":"github"},"branch":"master","displayName":"jordon0802/ip[master]","outputFolderName":"jordon0802_ip_master"},{"location":{"location":"https://github.com/chinpcbenjamin/ip.git","repoName":"ip","organization":"chinpcbenjamin","domainName":"github"},"branch":"master","displayName":"chinpcbenjamin/ip[master]","outputFolderName":"chinpcbenjamin_ip_master"},{"location":{"location":"https://github.com/blobfish465/ip.git","repoName":"ip","organization":"blobfish465","domainName":"github"},"branch":"master","displayName":"blobfish465/ip[master]","outputFolderName":"blobfish465_ip_master"},{"location":{"location":"https://github.com/Taoseeker/ip.git","repoName":"ip","organization":"Taoseeker","domainName":"github"},"branch":"master","displayName":"Taoseeker/ip[master]","outputFolderName":"Taoseeker_ip_master"},{"location":{"location":"https://github.com/juniper285/ip.git","repoName":"ip","organization":"juniper285","domainName":"github"},"branch":"master","displayName":"juniper285/ip[master]","outputFolderName":"juniper285_ip_master"},{"location":{"location":"https://github.com/hengjeekuan/ip.git","repoName":"ip","organization":"hengjeekuan","domainName":"github"},"branch":"master","displayName":"hengjeekuan/ip[master]","outputFolderName":"hengjeekuan_ip_master"},{"location":{"location":"https://github.com/datletu/ip.git","repoName":"ip","organization":"datletu","domainName":"github"},"branch":"master","displayName":"datletu/ip[master]","outputFolderName":"datletu_ip_master"},{"location":{"location":"https://github.com/J4Joshua/ip.git","repoName":"ip","organization":"J4Joshua","domainName":"github"},"branch":"master","displayName":"J4Joshua/ip[master]","outputFolderName":"J4Joshua_ip_master"},{"location":{"location":"https://github.com/ypuppy/ip.git","repoName":"ip","organization":"ypuppy","domainName":"github"},"branch":"master","displayName":"ypuppy/ip[master]","outputFolderName":"ypuppy_ip_master"},{"location":{"location":"https://github.com/RickyHFR/ip.git","repoName":"ip","organization":"RickyHFR","domainName":"github"},"branch":"master","displayName":"RickyHFR/ip[master]","outputFolderName":"RickyHFR_ip_master"},{"location":{"location":"https://github.com/Jasonzhou97/ip.git","repoName":"ip","organization":"Jasonzhou97","domainName":"github"},"branch":"master","displayName":"Jasonzhou97/ip[master]","outputFolderName":"Jasonzhou97_ip_master"},{"location":{"location":"https://github.com/iuhiah/ip.git","repoName":"ip","organization":"iuhiah","domainName":"github"},"branch":"master","displayName":"iuhiah/ip[master]","outputFolderName":"iuhiah_ip_master"},{"location":{"location":"https://github.com/LF1928/ip.git","repoName":"ip","organization":"LF1928","domainName":"github"},"branch":"master","displayName":"LF1928/ip[master]","outputFolderName":"LF1928_ip_master"},{"location":{"location":"https://github.com/patil-np/ip.git","repoName":"ip","organization":"patil-np","domainName":"github"},"branch":"master","displayName":"patil-np/ip[master]","outputFolderName":"patil-np_ip_master"},{"location":{"location":"https://github.com/glennliew/ip.git","repoName":"ip","organization":"glennliew","domainName":"github"},"branch":"master","displayName":"glennliew/ip[master]","outputFolderName":"glennliew_ip_master"},{"location":{"location":"https://github.com/Noob-No-1/ip.git","repoName":"ip","organization":"Noob-No-1","domainName":"github"},"branch":"master","displayName":"Noob-No-1/ip[master]","outputFolderName":"Noob-No-1_ip_master"},{"location":{"location":"https://github.com/ryanlow64/ip.git","repoName":"ip","organization":"ryanlow64","domainName":"github"},"branch":"master","displayName":"ryanlow64/ip[master]","outputFolderName":"ryanlow64_ip_master"},{"location":{"location":"https://github.com/souledfigurine/ip.git","repoName":"ip","organization":"souledfigurine","domainName":"github"},"branch":"master","displayName":"souledfigurine/ip[master]","outputFolderName":"souledfigurine_ip_master"},{"location":{"location":"https://github.com/lilduckling/ip.git","repoName":"ip","organization":"lilduckling","domainName":"github"},"branch":"master","displayName":"lilduckling/ip[master]","outputFolderName":"lilduckling_ip_master"},{"location":{"location":"https://github.com/zeotheburrito/ip.git","repoName":"ip","organization":"zeotheburrito","domainName":"github"},"branch":"master","displayName":"zeotheburrito/ip[master]","outputFolderName":"zeotheburrito_ip_master"},{"location":{"location":"https://github.com/weiwong834/ip.git","repoName":"ip","organization":"weiwong834","domainName":"github"},"branch":"master","displayName":"weiwong834/ip[master]","outputFolderName":"weiwong834_ip_master"},{"location":{"location":"https://github.com/chenxy12345/ip.git","repoName":"ip","organization":"chenxy12345","domainName":"github"},"branch":"master","displayName":"chenxy12345/ip[master]","outputFolderName":"chenxy12345_ip_master"},{"location":{"location":"https://github.com/chenxu20/ip.git","repoName":"ip","organization":"chenxu20","domainName":"github"},"branch":"master","displayName":"chenxu20/ip[master]","outputFolderName":"chenxu20_ip_master"},{"location":{"location":"https://github.com/thegrimbee/ip.git","repoName":"ip","organization":"thegrimbee","domainName":"github"},"branch":"master","displayName":"thegrimbee/ip[master]","outputFolderName":"thegrimbee_ip_master"},{"location":{"location":"https://github.com/K1mcheee/ip.git","repoName":"ip","organization":"K1mcheee","domainName":"github"},"branch":"master","displayName":"K1mcheee/ip[master]","outputFolderName":"K1mcheee_ip_master"},{"location":{"location":"https://github.com/SahanaAvantika/ip.git","repoName":"ip","organization":"SahanaAvantika","domainName":"github"},"branch":"master","displayName":"SahanaAvantika/ip[master]","outputFolderName":"SahanaAvantika_ip_master"},{"location":{"location":"https://github.com/pranavyey/ip.git","repoName":"ip","organization":"pranavyey","domainName":"github"},"branch":"master","displayName":"pranavyey/ip[master]","outputFolderName":"pranavyey_ip_master"},{"location":{"location":"https://github.com/isawangyx/ip.git","repoName":"ip","organization":"isawangyx","domainName":"github"},"branch":"master","displayName":"isawangyx/ip[master]","outputFolderName":"isawangyx_ip_master"},{"location":{"location":"https://github.com/Rae2480/ip.git","repoName":"ip","organization":"Rae2480","domainName":"github"},"branch":"master","displayName":"Rae2480/ip[master]","outputFolderName":"Rae2480_ip_master"},{"location":{"location":"https://github.com/mjyan02/ip.git","repoName":"ip","organization":"mjyan02","domainName":"github"},"branch":"master","displayName":"mjyan02/ip[master]","outputFolderName":"mjyan02_ip_master"},{"location":{"location":"https://github.com/Golddirio/ip.git","repoName":"ip","organization":"Golddirio","domainName":"github"},"branch":"master","displayName":"Golddirio/ip[master]","outputFolderName":"Golddirio_ip_master"},{"location":{"location":"https://github.com/yjunyeu/ip.git","repoName":"ip","organization":"yjunyeu","domainName":"github"},"branch":"master","displayName":"yjunyeu/ip[master]","outputFolderName":"yjunyeu_ip_master"},{"location":{"location":"https://github.com/andong0909/ip.git","repoName":"ip","organization":"andong0909","domainName":"github"},"branch":"master","displayName":"andong0909/ip[master]","outputFolderName":"andong0909_ip_master"},{"location":{"location":"https://github.com/senshir/ip.git","repoName":"ip","organization":"senshir","domainName":"github"},"branch":"master","displayName":"senshir/ip[master]","outputFolderName":"senshir_ip_master"},{"location":{"location":"https://github.com/Nova1729/ip.git","repoName":"ip","organization":"Nova1729","domainName":"github"},"branch":"master","displayName":"Nova1729/ip[master]","outputFolderName":"Nova1729_ip_master"},{"location":{"location":"https://github.com/wentingchua/ip.git","repoName":"ip","organization":"wentingchua","domainName":"github"},"branch":"master","displayName":"wentingchua/ip[master]","outputFolderName":"wentingchua_ip_master"},{"location":{"location":"https://github.com/TasmiaH0508/ip.git","repoName":"ip","organization":"TasmiaH0508","domainName":"github"},"branch":"master","displayName":"TasmiaH0508/ip[master]","outputFolderName":"TasmiaH0508_ip_master"},{"location":{"location":"https://github.com/Meatsushi64/ip.git","repoName":"ip","organization":"Meatsushi64","domainName":"github"},"branch":"master","displayName":"Meatsushi64/ip[master]","outputFolderName":"Meatsushi64_ip_master"},{"location":{"location":"https://github.com/jiangsuwangjing/ip.git","repoName":"ip","organization":"jiangsuwangjing","domainName":"github"},"branch":"master","displayName":"jiangsuwangjing/ip[master]","outputFolderName":"jiangsuwangjing_ip_master"},{"location":{"location":"https://github.com/angjozee/ip.git","repoName":"ip","organization":"angjozee","domainName":"github"},"branch":"master","displayName":"angjozee/ip[master]","outputFolderName":"angjozee_ip_master"},{"location":{"location":"https://github.com/YashvanGH/ip.git","repoName":"ip","organization":"YashvanGH","domainName":"github"},"branch":"master","displayName":"YashvanGH/ip[master]","outputFolderName":"YashvanGH_ip_master"},{"location":{"location":"https://github.com/amir-dha/ip.git","repoName":"ip","organization":"amir-dha","domainName":"github"},"branch":"master","displayName":"amir-dha/ip[master]","outputFolderName":"amir-dha_ip_master"},{"location":{"location":"https://github.com/Ditzchann/ip.git","repoName":"ip","organization":"Ditzchann","domainName":"github"},"branch":"master","displayName":"Ditzchann/ip[master]","outputFolderName":"Ditzchann_ip_master"},{"location":{"location":"https://github.com/jodielzy/ip.git","repoName":"ip","organization":"jodielzy","domainName":"github"},"branch":"master","displayName":"jodielzy/ip[master]","outputFolderName":"jodielzy_ip_master"},{"location":{"location":"https://github.com/salads-source/ip.git","repoName":"ip","organization":"salads-source","domainName":"github"},"branch":"master","displayName":"salads-source/ip[master]","outputFolderName":"salads-source_ip_master"},{"location":{"location":"https://github.com/karthu0301/ip.git","repoName":"ip","organization":"karthu0301","domainName":"github"},"branch":"master","displayName":"karthu0301/ip[master]","outputFolderName":"karthu0301_ip_master"},{"location":{"location":"https://github.com/keyansheng/ip.git","repoName":"ip","organization":"keyansheng","domainName":"github"},"branch":"master","displayName":"keyansheng/ip[master]","outputFolderName":"keyansheng_ip_master"},{"location":{"location":"https://github.com/Masunori/ip.git","repoName":"ip","organization":"Masunori","domainName":"github"},"branch":"master","displayName":"Masunori/ip[master]","outputFolderName":"Masunori_ip_master"},{"location":{"location":"https://github.com/DengTianle/ip.git","repoName":"ip","organization":"DengTianle","domainName":"github"},"branch":"master","displayName":"DengTianle/ip[master]","outputFolderName":"DengTianle_ip_master"},{"location":{"location":"https://github.com/crmlatte/ip.git","repoName":"ip","organization":"crmlatte","domainName":"github"},"branch":"master","displayName":"crmlatte/ip[master]","outputFolderName":"crmlatte_ip_master"},{"location":{"location":"https://github.com/Eun777/ip.git","repoName":"ip","organization":"Eun777","domainName":"github"},"branch":"master","displayName":"Eun777/ip[master]","outputFolderName":"Eun777_ip_master"},{"location":{"location":"https://github.com/aekyr/ip.git","repoName":"ip","organization":"aekyr","domainName":"github"},"branch":"master","displayName":"aekyr/ip[master]","outputFolderName":"aekyr_ip_master"},{"location":{"location":"https://github.com/qilstiano/ip.git","repoName":"ip","organization":"qilstiano","domainName":"github"},"branch":"master","displayName":"qilstiano/ip[master]","outputFolderName":"qilstiano_ip_master"},{"location":{"location":"https://github.com/nat-ong555/ip.git","repoName":"ip","organization":"nat-ong555","domainName":"github"},"branch":"master","displayName":"nat-ong555/ip[master]","outputFolderName":"nat-ong555_ip_master"},{"location":{"location":"https://github.com/jamesberyl/ip.git","repoName":"ip","organization":"jamesberyl","domainName":"github"},"branch":"master","displayName":"jamesberyl/ip[master]","outputFolderName":"jamesberyl_ip_master"},{"location":{"location":"https://github.com/xinniyee/ip.git","repoName":"ip","organization":"xinniyee","domainName":"github"},"branch":"master","displayName":"xinniyee/ip[master]","outputFolderName":"xinniyee_ip_master"},{"location":{"location":"https://github.com/popova-mariia/ip.git","repoName":"ip","organization":"popova-mariia","domainName":"github"},"branch":"master","displayName":"popova-mariia/ip[master]","outputFolderName":"popova-mariia_ip_master"},{"location":{"location":"https://github.com/izniy/ip.git","repoName":"ip","organization":"izniy","domainName":"github"},"branch":"master","displayName":"izniy/ip[master]","outputFolderName":"izniy_ip_master"},{"location":{"location":"https://github.com/FooNicholas/ip.git","repoName":"ip","organization":"FooNicholas","domainName":"github"},"branch":"master","displayName":"FooNicholas/ip[master]","outputFolderName":"FooNicholas_ip_master"},{"location":{"location":"https://github.com/SanShaoQian/ip.git","repoName":"ip","organization":"SanShaoQian","domainName":"github"},"branch":"master","displayName":"SanShaoQian/ip[master]","outputFolderName":"SanShaoQian_ip_master"},{"location":{"location":"https://github.com/ambertan77/ip.git","repoName":"ip","organization":"ambertan77","domainName":"github"},"branch":"master","displayName":"ambertan77/ip[master]","outputFolderName":"ambertan77_ip_master"},{"location":{"location":"https://github.com/shelialia/ip.git","repoName":"ip","organization":"shelialia","domainName":"github"},"branch":"master","displayName":"shelialia/ip[master]","outputFolderName":"shelialia_ip_master"},{"location":{"location":"https://github.com/niha81/ip.git","repoName":"ip","organization":"niha81","domainName":"github"},"branch":"master","displayName":"niha81/ip[master]","outputFolderName":"niha81_ip_master"},{"location":{"location":"https://github.com/deannapoh/ip.git","repoName":"ip","organization":"deannapoh","domainName":"github"},"branch":"master","displayName":"deannapoh/ip[master]","outputFolderName":"deannapoh_ip_master"},{"location":{"location":"https://github.com/clarabellelim/ip.git","repoName":"ip","organization":"clarabellelim","domainName":"github"},"branch":"master","displayName":"clarabellelim/ip[master]","outputFolderName":"clarabellelim_ip_master"},{"location":{"location":"https://github.com/Sean-G-Han/ip.git","repoName":"ip","organization":"Sean-G-Han","domainName":"github"},"branch":"master","displayName":"Sean-G-Han/ip[master]","outputFolderName":"Sean-G-Han_ip_master"},{"location":{"location":"https://github.com/PriyadarshiCharvi/ip.git","repoName":"ip","organization":"PriyadarshiCharvi","domainName":"github"},"branch":"master","displayName":"PriyadarshiCharvi/ip[master]","outputFolderName":"PriyadarshiCharvi_ip_master"},{"location":{"location":"https://github.com/VikramGoyal23/ip.git","repoName":"ip","organization":"VikramGoyal23","domainName":"github"},"branch":"master","displayName":"VikramGoyal23/ip[master]","outputFolderName":"VikramGoyal23_ip_master"},{"location":{"location":"https://github.com/arshinsikka/ip.git","repoName":"ip","organization":"arshinsikka","domainName":"github"},"branch":"master","displayName":"arshinsikka/ip[master]","outputFolderName":"arshinsikka_ip_master"},{"location":{"location":"https://github.com/AerollingOverDeepBlueSeas/ip.git","repoName":"ip","organization":"AerollingOverDeepBlueSeas","domainName":"github"},"branch":"master","displayName":"AerollingOverDeepBlueSeas/ip[master]","outputFolderName":"AerollingOverDeepBlueSeas_ip_master"},{"location":{"location":"https://github.com/szelingtan/ip.git","repoName":"ip","organization":"szelingtan","domainName":"github"},"branch":"master","displayName":"szelingtan/ip[master]","outputFolderName":"szelingtan_ip_master"},{"location":{"location":"https://github.com/nanditaselvaraju/ip.git","repoName":"ip","organization":"nanditaselvaraju","domainName":"github"},"branch":"master","displayName":"nanditaselvaraju/ip[master]","outputFolderName":"nanditaselvaraju_ip_master"},{"location":{"location":"https://github.com/namprice227/ip.git","repoName":"ip","organization":"namprice227","domainName":"github"},"branch":"master","displayName":"namprice227/ip[master]","outputFolderName":"namprice227_ip_master"},{"location":{"location":"https://github.com/vrisdng/ip.git","repoName":"ip","organization":"vrisdng","domainName":"github"},"branch":"master","displayName":"vrisdng/ip[master]","outputFolderName":"vrisdng_ip_master"},{"location":{"location":"https://github.com/varsha13152/ip.git","repoName":"ip","organization":"varsha13152","domainName":"github"},"branch":"master","displayName":"varsha13152/ip[master]","outputFolderName":"varsha13152_ip_master"},{"location":{"location":"https://github.com/Liu-Jihan/ip.git","repoName":"ip","organization":"Liu-Jihan","domainName":"github"},"branch":"master","displayName":"Liu-Jihan/ip[master]","outputFolderName":"Liu-Jihan_ip_master"},{"location":{"location":"https://github.com/sunpterodactyl/ip.git","repoName":"ip","organization":"sunpterodactyl","domainName":"github"},"branch":"master","displayName":"sunpterodactyl/ip[master]","outputFolderName":"sunpterodactyl_ip_master"},{"location":{"location":"https://github.com/bhavinaa/ip.git","repoName":"ip","organization":"bhavinaa","domainName":"github"},"branch":"master","displayName":"bhavinaa/ip[master]","outputFolderName":"bhavinaa_ip_master"},{"location":{"location":"https://github.com/ongxinyii/ip.git","repoName":"ip","organization":"ongxinyii","domainName":"github"},"branch":"master","displayName":"ongxinyii/ip[master]","outputFolderName":"ongxinyii_ip_master"},{"location":{"location":"https://github.com/CVincent0907/ip.git","repoName":"ip","organization":"CVincent0907","domainName":"github"},"branch":"master","displayName":"CVincent0907/ip[master]","outputFolderName":"CVincent0907_ip_master"},{"location":{"location":"https://github.com/Nano-233/ip.git","repoName":"ip","organization":"Nano-233","domainName":"github"},"branch":"master","displayName":"Nano-233/ip[master]","outputFolderName":"Nano-233_ip_master"},{"location":{"location":"https://github.com/Billy026/ip.git","repoName":"ip","organization":"Billy026","domainName":"github"},"branch":"master","displayName":"Billy026/ip[master]","outputFolderName":"Billy026_ip_master"},{"location":{"location":"https://github.com/GZTan23/ip.git","repoName":"ip","organization":"GZTan23","domainName":"github"},"branch":"master","displayName":"GZTan23/ip[master]","outputFolderName":"GZTan23_ip_master"},{"location":{"location":"https://github.com/dingZvel/ip.git","repoName":"ip","organization":"dingZvel","domainName":"github"},"branch":"master","displayName":"dingZvel/ip[master]","outputFolderName":"dingZvel_ip_master"},{"location":{"location":"https://github.com/hutongyan/ip.git","repoName":"ip","organization":"hutongyan","domainName":"github"},"branch":"master","displayName":"hutongyan/ip[master]","outputFolderName":"hutongyan_ip_master"},{"location":{"location":"https://github.com/wyongqiing/ip.git","repoName":"ip","organization":"wyongqiing","domainName":"github"},"branch":"master","displayName":"wyongqiing/ip[master]","outputFolderName":"wyongqiing_ip_master"},{"location":{"location":"https://github.com/Neilchen863/ip.git","repoName":"ip","organization":"Neilchen863","domainName":"github"},"branch":"master","displayName":"Neilchen863/ip[master]","outputFolderName":"Neilchen863_ip_master"},{"location":{"location":"https://github.com/gandwarf/ip.git","repoName":"ip","organization":"gandwarf","domainName":"github"},"branch":"master","displayName":"gandwarf/ip[master]","outputFolderName":"gandwarf_ip_master"},{"location":{"location":"https://github.com/lyhthaddeus/ip.git","repoName":"ip","organization":"lyhthaddeus","domainName":"github"},"branch":"master","displayName":"lyhthaddeus/ip[master]","outputFolderName":"lyhthaddeus_ip_master"},{"location":{"location":"https://github.com/jniaorx/ip.git","repoName":"ip","organization":"jniaorx","domainName":"github"},"branch":"master","displayName":"jniaorx/ip[master]","outputFolderName":"jniaorx_ip_master"},{"location":{"location":"https://github.com/YosieSYX/ip.git","repoName":"ip","organization":"YosieSYX","domainName":"github"},"branch":"master","displayName":"YosieSYX/ip[master]","outputFolderName":"YosieSYX_ip_master"},{"location":{"location":"https://github.com/liy722/ip.git","repoName":"ip","organization":"liy722","domainName":"github"},"branch":"master","displayName":"liy722/ip[master]","outputFolderName":"liy722_ip_master"},{"location":{"location":"https://github.com/Casielim/ip.git","repoName":"ip","organization":"Casielim","domainName":"github"},"branch":"master","displayName":"Casielim/ip[master]","outputFolderName":"Casielim_ip_master"},{"location":{"location":"https://github.com/Prog-Neuro-Com/ip.git","repoName":"ip","organization":"Prog-Neuro-Com","domainName":"github"},"branch":"master","displayName":"Prog-Neuro-Com/ip[master]","outputFolderName":"Prog-Neuro-Com_ip_master"},{"location":{"location":"https://github.com/yuqiannemo/ip.git","repoName":"ip","organization":"yuqiannemo","domainName":"github"},"branch":"master","displayName":"yuqiannemo/ip[master]","outputFolderName":"yuqiannemo_ip_master"},{"location":{"location":"https://github.com/caroline1233456/ip.git","repoName":"ip","organization":"caroline1233456","domainName":"github"},"branch":"master","displayName":"caroline1233456/ip[master]","outputFolderName":"caroline1233456_ip_master"},{"location":{"location":"https://github.com/AbiHalim/ip.git","repoName":"ip","organization":"AbiHalim","domainName":"github"},"branch":"master","displayName":"AbiHalim/ip[master]","outputFolderName":"AbiHalim_ip_master"},{"location":{"location":"https://github.com/GauhVish/ip.git","repoName":"ip","organization":"GauhVish","domainName":"github"},"branch":"master","displayName":"GauhVish/ip[master]","outputFolderName":"GauhVish_ip_master"},{"location":{"location":"https://github.com/Reshiro/ip.git","repoName":"ip","organization":"Reshiro","domainName":"github"},"branch":"master","displayName":"Reshiro/ip[master]","outputFolderName":"Reshiro_ip_master"},{"location":{"location":"https://github.com/blacksesamezongzi/ip.git","repoName":"ip","organization":"blacksesamezongzi","domainName":"github"},"branch":"master","displayName":"blacksesamezongzi/ip[master]","outputFolderName":"blacksesamezongzi_ip_master"},{"location":{"location":"https://github.com/hyizhak/ip.git","repoName":"ip","organization":"hyizhak","domainName":"github"},"branch":"master","displayName":"hyizhak/ip[master]","outputFolderName":"hyizhak_ip_master"},{"location":{"location":"https://github.com/hzk-lab/ip.git","repoName":"ip","organization":"hzk-lab","domainName":"github"},"branch":"master","displayName":"hzk-lab/ip[master]","outputFolderName":"hzk-lab_ip_master"},{"location":{"location":"https://github.com/OvOtter/ip.git","repoName":"ip","organization":"OvOtter","domainName":"github"},"branch":"master","displayName":"OvOtter/ip[master]","outputFolderName":"OvOtter_ip_master"},{"location":{"location":"https://github.com/kai824/ip.git","repoName":"ip","organization":"kai824","domainName":"github"},"branch":"master","displayName":"kai824/ip[master]","outputFolderName":"kai824_ip_master"},{"location":{"location":"https://github.com/h-b-k-nishi/ip.git","repoName":"ip","organization":"h-b-k-nishi","domainName":"github"},"branch":"master","displayName":"h-b-k-nishi/ip[master]","outputFolderName":"h-b-k-nishi_ip_master"}],"errorSet":[{"repoName":"jhwan0707/ip[master]","errorMessage":"Failed to clone from https://github.com/jhwan0707/ip.git"},{"repoName":"wilsonsfh/ip[master]","errorMessage":"Failed to clone from https://github.com/wilsonsfh/ip.git"},{"repoName":"rannn367/ip[master]","errorMessage":"Failed to clone from https://github.com/rannn367/ip.git"},{"repoName":"minnibb/ip[master]","errorMessage":"Failed to clone from https://github.com/minnibb/ip.git"},{"repoName":"matthanfoo/ip[master]","errorMessage":"Failed to clone from https://github.com/matthanfoo/ip.git"},{"repoName":"findingfaey/ip[master]","errorMessage":"Failed to clone from https://github.com/findingfaey/ip.git"},{"repoName":"Kiranlimtl/ip[master]","errorMessage":"Failed to clone from https://github.com/Kiranlimtl/ip.git"},{"repoName":"wj200/ip[master]","errorMessage":"Failed to clone from https://github.com/wj200/ip.git"},{"repoName":"kea-S/ip[master]","errorMessage":"Branch \"master\" does not exist."},{"repoName":"CoreySiah/ip[master]","errorMessage":"Failed to clone from https://github.com/CoreySiah/ip.git"},{"repoName":"potatoems/ip[master]","errorMessage":"Failed to clone from https://github.com/potatoems/ip.git"},{"repoName":"WilkinsAng/ip[master]","errorMessage":"Failed to clone from https://github.com/WilkinsAng/ip.git"},{"repoName":"Xzh119/ip[master]","errorMessage":"Failed to clone from https://github.com/Xzh119/ip.git"},{"repoName":"feconi1024/ip[master]","errorMessage":"Failed to clone from https://github.com/feconi1024/ip.git"},{"repoName":"simenggg/ip[master]","errorMessage":"Failed to clone from https://github.com/simenggg/ip.git"},{"repoName":"Melvan-Chan/ip[master]","errorMessage":"Failed to clone from https://github.com/Melvan-Chan/ip.git"},{"repoName":"jeronkk/ip[master]","errorMessage":"Failed to clone from https://github.com/jeronkk/ip.git"},{"repoName":"Gu0Fengming/ip[master]","errorMessage":"Failed to clone from https://github.com/Gu0Fengming/ip.git"},{"repoName":"advaypakhale/ip[master]","errorMessage":"Failed to clone from https://github.com/advaypakhale/ip.git"},{"repoName":"NaelAnoob/ip[master]","errorMessage":"Failed to clone from https://github.com/NaelAnoob/ip.git"},{"repoName":"wailydest/ip[master]","errorMessage":"Failed to clone from https://github.com/wailydest/ip.git"},{"repoName":"TrKNguyen/ip[master]","errorMessage":"Failed to clone from https://github.com/TrKNguyen/ip.git"},{"repoName":"davidfoo07/ip[master]","errorMessage":"Failed to clone from https://github.com/davidfoo07/ip.git"},{"repoName":"Terentwc/ip[master]","errorMessage":"Failed to clone from https://github.com/Terentwc/ip.git"},{"repoName":"geeliette/ip[master]","errorMessage":"Failed to clone from https://github.com/geeliette/ip.git"},{"repoName":"meloppeitreet/ip[master]","errorMessage":"Failed to clone from https://github.com/meloppeitreet/ip.git"},{"repoName":"heyitssakinah/ip[master]","errorMessage":"Failed to clone from https://github.com/heyitssakinah/ip.git"},{"repoName":"malihahaque/ip[master]","errorMessage":"Failed to clone from https://github.com/malihahaque/ip.git"},{"repoName":"ioubread/ip[master]","errorMessage":"Failed to clone from https://github.com/ioubread/ip.git"},{"repoName":"arnavbajpai/ip[master]","errorMessage":"Failed to clone from https://github.com/arnavbajpai/ip.git"},{"repoName":"elizazaa/ip[master]","errorMessage":"Failed to clone from https://github.com/elizazaa/ip.git"},{"repoName":"nlqhung130403/ip[master]","errorMessage":"Failed to clone from https://github.com/nlqhung130403/ip.git"},{"repoName":"mistyk786/ip[master]","errorMessage":"Failed to clone from https://github.com/mistyk786/ip.git"}],"sinceDate":"2025-01-10","untilDate":"2025-01-25","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"}},"isAuthorshipAnalyzed":false,"blurbs":{"urlBlurbMap":{}}} +{"repoSenseVersion":"e53c52c96a","reportGeneratedTime":"Sat, 25 Jan 2025 10:15:28 UTC+08:00","reportGenerationTime":" 1 minute(s) 0.88 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/kubrian/ip.git","repoName":"ip","organization":"kubrian","domainName":"github"},"branch":"master","displayName":"kubrian/ip[master]","outputFolderName":"kubrian_ip_master"},{"location":{"location":"https://github.com/FadhilPM/ip.git","repoName":"ip","organization":"FadhilPM","domainName":"github"},"branch":"master","displayName":"FadhilPM/ip[master]","outputFolderName":"FadhilPM_ip_master"},{"location":{"location":"https://github.com/raw-asparagus/ip.git","repoName":"ip","organization":"raw-asparagus","domainName":"github"},"branch":"master","displayName":"raw-asparagus/ip[master]","outputFolderName":"raw-asparagus_ip_master"},{"location":{"location":"https://github.com/samuelkwik/ip.git","repoName":"ip","organization":"samuelkwik","domainName":"github"},"branch":"master","displayName":"samuelkwik/ip[master]","outputFolderName":"samuelkwik_ip_master"},{"location":{"location":"https://github.com/castryl/ip.git","repoName":"ip","organization":"castryl","domainName":"github"},"branch":"master","displayName":"castryl/ip[master]","outputFolderName":"castryl_ip_master"},{"location":{"location":"https://github.com/mingshan2705/ip.git","repoName":"ip","organization":"mingshan2705","domainName":"github"},"branch":"master","displayName":"mingshan2705/ip[master]","outputFolderName":"mingshan2705_ip_master"},{"location":{"location":"https://github.com/nguyenvukhang/ip.git","repoName":"ip","organization":"nguyenvukhang","domainName":"github"},"branch":"master","displayName":"nguyenvukhang/ip[master]","outputFolderName":"nguyenvukhang_ip_master"},{"location":{"location":"https://github.com/NightlyAffair/ip.git","repoName":"ip","organization":"NightlyAffair","domainName":"github"},"branch":"master","displayName":"NightlyAffair/ip[master]","outputFolderName":"NightlyAffair_ip_master"},{"location":{"location":"https://github.com/Ernestnzx/ip.git","repoName":"ip","organization":"Ernestnzx","domainName":"github"},"branch":"master","displayName":"Ernestnzx/ip[master]","outputFolderName":"Ernestnzx_ip_master"},{"location":{"location":"https://github.com/zephaniahong/ip.git","repoName":"ip","organization":"zephaniahong","domainName":"github"},"branch":"master","displayName":"zephaniahong/ip[master]","outputFolderName":"zephaniahong_ip_master"},{"location":{"location":"https://github.com/davidchongg/ip.git","repoName":"ip","organization":"davidchongg","domainName":"github"},"branch":"master","displayName":"davidchongg/ip[master]","outputFolderName":"davidchongg_ip_master"},{"location":{"location":"https://github.com/teesha902/ip.git","repoName":"ip","organization":"teesha902","domainName":"github"},"branch":"master","displayName":"teesha902/ip[master]","outputFolderName":"teesha902_ip_master"},{"location":{"location":"https://github.com/wowwwp/ip.git","repoName":"ip","organization":"wowwwp","domainName":"github"},"branch":"master","displayName":"wowwwp/ip[master]","outputFolderName":"wowwwp_ip_master"},{"location":{"location":"https://github.com/subiloble/ip.git","repoName":"ip","organization":"subiloble","domainName":"github"},"branch":"master","displayName":"subiloble/ip[master]","outputFolderName":"subiloble_ip_master"},{"location":{"location":"https://github.com/xuxuezhou/ip.git","repoName":"ip","organization":"xuxuezhou","domainName":"github"},"branch":"master","displayName":"xuxuezhou/ip[master]","outputFolderName":"xuxuezhou_ip_master"},{"location":{"location":"https://github.com/RT0118/ip.git","repoName":"ip","organization":"RT0118","domainName":"github"},"branch":"master","displayName":"RT0118/ip[master]","outputFolderName":"RT0118_ip_master"},{"location":{"location":"https://github.com/Inquisitivrx/ip.git","repoName":"ip","organization":"Inquisitivrx","domainName":"github"},"branch":"master","displayName":"Inquisitivrx/ip[master]","outputFolderName":"Inquisitivrx_ip_master"},{"location":{"location":"https://github.com/bryonk/ip.git","repoName":"ip","organization":"bryonk","domainName":"github"},"branch":"master","displayName":"bryonk/ip[master]","outputFolderName":"bryonk_ip_master"},{"location":{"location":"https://github.com/ChinZJ/ip.git","repoName":"ip","organization":"ChinZJ","domainName":"github"},"branch":"master","displayName":"ChinZJ/ip[master]","outputFolderName":"ChinZJ_ip_master"},{"location":{"location":"https://github.com/dnardnar/ip.git","repoName":"ip","organization":"dnardnar","domainName":"github"},"branch":"master","displayName":"dnardnar/ip[master]","outputFolderName":"dnardnar_ip_master"},{"location":{"location":"https://github.com/TheEnd-alr-taken/ip.git","repoName":"ip","organization":"TheEnd-alr-taken","domainName":"github"},"branch":"master","displayName":"TheEnd-alr-taken/ip[master]","outputFolderName":"TheEnd-alr-taken_ip_master"},{"location":{"location":"https://github.com/nathtiekk/ip.git","repoName":"ip","organization":"nathtiekk","domainName":"github"},"branch":"master","displayName":"nathtiekk/ip[master]","outputFolderName":"nathtiekk_ip_master"},{"location":{"location":"https://github.com/Jeremiah33-3/ip.git","repoName":"ip","organization":"Jeremiah33-3","domainName":"github"},"branch":"master","displayName":"Jeremiah33-3/ip[master]","outputFolderName":"Jeremiah33-3_ip_master"},{"location":{"location":"https://github.com/aisyahally/ip.git","repoName":"ip","organization":"aisyahally","domainName":"github"},"branch":"master","displayName":"aisyahally/ip[master]","outputFolderName":"aisyahally_ip_master"},{"location":{"location":"https://github.com/kylieluk88/ip.git","repoName":"ip","organization":"kylieluk88","domainName":"github"},"branch":"master","displayName":"kylieluk88/ip[master]","outputFolderName":"kylieluk88_ip_master"},{"location":{"location":"https://github.com/zlllllr/ip.git","repoName":"ip","organization":"zlllllr","domainName":"github"},"branch":"master","displayName":"zlllllr/ip[master]","outputFolderName":"zlllllr_ip_master"},{"location":{"location":"https://github.com/quantin96/ip.git","repoName":"ip","organization":"quantin96","domainName":"github"},"branch":"master","displayName":"quantin96/ip[master]","outputFolderName":"quantin96_ip_master"},{"location":{"location":"https://github.com/SheYuting/ip.git","repoName":"ip","organization":"SheYuting","domainName":"github"},"branch":"master","displayName":"SheYuting/ip[master]","outputFolderName":"SheYuting_ip_master"},{"location":{"location":"https://github.com/GaaneshT/ip.git","repoName":"ip","organization":"GaaneshT","domainName":"github"},"branch":"master","displayName":"GaaneshT/ip[master]","outputFolderName":"GaaneshT_ip_master"},{"location":{"location":"https://github.com/leedeen01/ip.git","repoName":"ip","organization":"leedeen01","domainName":"github"},"branch":"master","displayName":"leedeen01/ip[master]","outputFolderName":"leedeen01_ip_master"},{"location":{"location":"https://github.com/aquaimpact/ip.git","repoName":"ip","organization":"aquaimpact","domainName":"github"},"branch":"master","displayName":"aquaimpact/ip[master]","outputFolderName":"aquaimpact_ip_master"},{"location":{"location":"https://github.com/GCheeYang/ip.git","repoName":"ip","organization":"GCheeYang","domainName":"github"},"branch":"master","displayName":"GCheeYang/ip[master]","outputFolderName":"GCheeYang_ip_master"},{"location":{"location":"https://github.com/awc1116/ip.git","repoName":"ip","organization":"awc1116","domainName":"github"},"branch":"master","displayName":"awc1116/ip[master]","outputFolderName":"awc1116_ip_master"},{"location":{"location":"https://github.com/brvndonkoh/ip.git","repoName":"ip","organization":"brvndonkoh","domainName":"github"},"branch":"master","displayName":"brvndonkoh/ip[master]","outputFolderName":"brvndonkoh_ip_master"},{"location":{"location":"https://github.com/jiancheng37/ip.git","repoName":"ip","organization":"jiancheng37","domainName":"github"},"branch":"master","displayName":"jiancheng37/ip[master]","outputFolderName":"jiancheng37_ip_master"},{"location":{"location":"https://github.com/philbertshea/ip.git","repoName":"ip","organization":"philbertshea","domainName":"github"},"branch":"master","displayName":"philbertshea/ip[master]","outputFolderName":"philbertshea_ip_master"},{"location":{"location":"https://github.com/WhyAre/ip.git","repoName":"ip","organization":"WhyAre","domainName":"github"},"branch":"master","displayName":"WhyAre/ip[master]","outputFolderName":"WhyAre_ip_master"},{"location":{"location":"https://github.com/kokseen1/ip.git","repoName":"ip","organization":"kokseen1","domainName":"github"},"branch":"master","displayName":"kokseen1/ip[master]","outputFolderName":"kokseen1_ip_master"},{"location":{"location":"https://github.com/kennethsoh/ip.git","repoName":"ip","organization":"kennethsoh","domainName":"github"},"branch":"master","displayName":"kennethsoh/ip[master]","outputFolderName":"kennethsoh_ip_master"},{"location":{"location":"https://github.com/basil-boh/ip.git","repoName":"ip","organization":"basil-boh","domainName":"github"},"branch":"master","displayName":"basil-boh/ip[master]","outputFolderName":"basil-boh_ip_master"},{"location":{"location":"https://github.com/twhjames/ip.git","repoName":"ip","organization":"twhjames","domainName":"github"},"branch":"master","displayName":"twhjames/ip[master]","outputFolderName":"twhjames_ip_master"},{"location":{"location":"https://github.com/FabianHeng/ip.git","repoName":"ip","organization":"FabianHeng","domainName":"github"},"branch":"master","displayName":"FabianHeng/ip[master]","outputFolderName":"FabianHeng_ip_master"},{"location":{"location":"https://github.com/delonlee01/ip.git","repoName":"ip","organization":"delonlee01","domainName":"github"},"branch":"master","displayName":"delonlee01/ip[master]","outputFolderName":"delonlee01_ip_master"},{"location":{"location":"https://github.com/dexterleng/ip.git","repoName":"ip","organization":"dexterleng","domainName":"github"},"branch":"master","displayName":"dexterleng/ip[master]","outputFolderName":"dexterleng_ip_master"},{"location":{"location":"https://github.com/CJ-783/ip.git","repoName":"ip","organization":"CJ-783","domainName":"github"},"branch":"master","displayName":"CJ-783/ip[master]","outputFolderName":"CJ-783_ip_master"},{"location":{"location":"https://github.com/codebreaker64/ip.git","repoName":"ip","organization":"codebreaker64","domainName":"github"},"branch":"master","displayName":"codebreaker64/ip[master]","outputFolderName":"codebreaker64_ip_master"},{"location":{"location":"https://github.com/JuhromeAlexander/ip.git","repoName":"ip","organization":"JuhromeAlexander","domainName":"github"},"branch":"master","displayName":"JuhromeAlexander/ip[master]","outputFolderName":"JuhromeAlexander_ip_master"},{"location":{"location":"https://github.com/lesterlimjj/ip.git","repoName":"ip","organization":"lesterlimjj","domainName":"github"},"branch":"master","displayName":"lesterlimjj/ip[master]","outputFolderName":"lesterlimjj_ip_master"},{"location":{"location":"https://github.com/MakiseKurisuX/ip.git","repoName":"ip","organization":"MakiseKurisuX","domainName":"github"},"branch":"master","displayName":"MakiseKurisuX/ip[master]","outputFolderName":"MakiseKurisuX_ip_master"},{"location":{"location":"https://github.com/AnAfterthought/ip.git","repoName":"ip","organization":"AnAfterthought","domainName":"github"},"branch":"master","displayName":"AnAfterthought/ip[master]","outputFolderName":"AnAfterthought_ip_master"},{"location":{"location":"https://github.com/SuspectBlue/ip.git","repoName":"ip","organization":"SuspectBlue","domainName":"github"},"branch":"master","displayName":"SuspectBlue/ip[master]","outputFolderName":"SuspectBlue_ip_master"},{"location":{"location":"https://github.com/Ryuse/ip.git","repoName":"ip","organization":"Ryuse","domainName":"github"},"branch":"master","displayName":"Ryuse/ip[master]","outputFolderName":"Ryuse_ip_master"},{"location":{"location":"https://github.com/boinkkitty/ip.git","repoName":"ip","organization":"boinkkitty","domainName":"github"},"branch":"master","displayName":"boinkkitty/ip[master]","outputFolderName":"boinkkitty_ip_master"},{"location":{"location":"https://github.com/Jovin-Ang/ip.git","repoName":"ip","organization":"Jovin-Ang","domainName":"github"},"branch":"master","displayName":"Jovin-Ang/ip[master]","outputFolderName":"Jovin-Ang_ip_master"},{"location":{"location":"https://github.com/yuyang011/ip.git","repoName":"ip","organization":"yuyang011","domainName":"github"},"branch":"master","displayName":"yuyang011/ip[master]","outputFolderName":"yuyang011_ip_master"},{"location":{"location":"https://github.com/JunXiang26/ip.git","repoName":"ip","organization":"JunXiang26","domainName":"github"},"branch":"master","displayName":"JunXiang26/ip[master]","outputFolderName":"JunXiang26_ip_master"},{"location":{"location":"https://github.com/Parrycys/ip.git","repoName":"ip","organization":"Parrycys","domainName":"github"},"branch":"master","displayName":"Parrycys/ip[master]","outputFolderName":"Parrycys_ip_master"},{"location":{"location":"https://github.com/JohannsenLum/ip.git","repoName":"ip","organization":"JohannsenLum","domainName":"github"},"branch":"master","displayName":"JohannsenLum/ip[master]","outputFolderName":"JohannsenLum_ip_master"},{"location":{"location":"https://github.com/Zerolegacy/ip.git","repoName":"ip","organization":"Zerolegacy","domainName":"github"},"branch":"master","displayName":"Zerolegacy/ip[master]","outputFolderName":"Zerolegacy_ip_master"},{"location":{"location":"https://github.com/xenyeo/ip.git","repoName":"ip","organization":"xenyeo","domainName":"github"},"branch":"master","displayName":"xenyeo/ip[master]","outputFolderName":"xenyeo_ip_master"},{"location":{"location":"https://github.com/adwinang/ip.git","repoName":"ip","organization":"adwinang","domainName":"github"},"branch":"master","displayName":"adwinang/ip[master]","outputFolderName":"adwinang_ip_master"},{"location":{"location":"https://github.com/botosek/ip.git","repoName":"ip","organization":"botosek","domainName":"github"},"branch":"master","displayName":"botosek/ip[master]","outputFolderName":"botosek_ip_master"},{"location":{"location":"https://github.com/quangthangisme/ip.git","repoName":"ip","organization":"quangthangisme","domainName":"github"},"branch":"master","displayName":"quangthangisme/ip[master]","outputFolderName":"quangthangisme_ip_master"},{"location":{"location":"https://github.com/NHT020305/ip.git","repoName":"ip","organization":"NHT020305","domainName":"github"},"branch":"master","displayName":"NHT020305/ip[master]","outputFolderName":"NHT020305_ip_master"},{"location":{"location":"https://github.com/Partillay/ip.git","repoName":"ip","organization":"Partillay","domainName":"github"},"branch":"master","displayName":"Partillay/ip[master]","outputFolderName":"Partillay_ip_master"},{"location":{"location":"https://github.com/tadacheng/ip.git","repoName":"ip","organization":"tadacheng","domainName":"github"},"branch":"master","displayName":"tadacheng/ip[master]","outputFolderName":"tadacheng_ip_master"},{"location":{"location":"https://github.com/ToxOptimism/ip.git","repoName":"ip","organization":"ToxOptimism","domainName":"github"},"branch":"master","displayName":"ToxOptimism/ip[master]","outputFolderName":"ToxOptimism_ip_master"},{"location":{"location":"https://github.com/johngao122/ip.git","repoName":"ip","organization":"johngao122","domainName":"github"},"branch":"master","displayName":"johngao122/ip[master]","outputFolderName":"johngao122_ip_master"},{"location":{"location":"https://github.com/zyonwee/ip.git","repoName":"ip","organization":"zyonwee","domainName":"github"},"branch":"master","displayName":"zyonwee/ip[master]","outputFolderName":"zyonwee_ip_master"},{"location":{"location":"https://github.com/hhlh27/ip.git","repoName":"ip","organization":"hhlh27","domainName":"github"},"branch":"master","displayName":"hhlh27/ip[master]","outputFolderName":"hhlh27_ip_master"},{"location":{"location":"https://github.com/Victoria281/ip.git","repoName":"ip","organization":"Victoria281","domainName":"github"},"branch":"master","displayName":"Victoria281/ip[master]","outputFolderName":"Victoria281_ip_master"},{"location":{"location":"https://github.com/gn07/ip.git","repoName":"ip","organization":"gn07","domainName":"github"},"branch":"master","displayName":"gn07/ip[master]","outputFolderName":"gn07_ip_master"},{"location":{"location":"https://github.com/deberinoo/ip.git","repoName":"ip","organization":"deberinoo","domainName":"github"},"branch":"master","displayName":"deberinoo/ip[master]","outputFolderName":"deberinoo_ip_master"},{"location":{"location":"https://github.com/hsinyilow/ip.git","repoName":"ip","organization":"hsinyilow","domainName":"github"},"branch":"master","displayName":"hsinyilow/ip[master]","outputFolderName":"hsinyilow_ip_master"},{"location":{"location":"https://github.com/broccoli-hater/ip.git","repoName":"ip","organization":"broccoli-hater","domainName":"github"},"branch":"master","displayName":"broccoli-hater/ip[master]","outputFolderName":"broccoli-hater_ip_master"},{"location":{"location":"https://github.com/bkkuan/ip.git","repoName":"ip","organization":"bkkuan","domainName":"github"},"branch":"master","displayName":"bkkuan/ip[master]","outputFolderName":"bkkuan_ip_master"},{"location":{"location":"https://github.com/huangtian666/ip.git","repoName":"ip","organization":"huangtian666","domainName":"github"},"branch":"master","displayName":"huangtian666/ip[master]","outputFolderName":"huangtian666_ip_master"},{"location":{"location":"https://github.com/feliciahmq/ip.git","repoName":"ip","organization":"feliciahmq","domainName":"github"},"branch":"master","displayName":"feliciahmq/ip[master]","outputFolderName":"feliciahmq_ip_master"},{"location":{"location":"https://github.com/kararei/ip.git","repoName":"ip","organization":"kararei","domainName":"github"},"branch":"master","displayName":"kararei/ip[master]","outputFolderName":"kararei_ip_master"},{"location":{"location":"https://github.com/0x4F776C/ip.git","repoName":"ip","organization":"0x4F776C","domainName":"github"},"branch":"master","displayName":"0x4F776C/ip[master]","outputFolderName":"0x4F776C_ip_master"},{"location":{"location":"https://github.com/Kaidama97/ip.git","repoName":"ip","organization":"Kaidama97","domainName":"github"},"branch":"master","displayName":"Kaidama97/ip[master]","outputFolderName":"Kaidama97_ip_master"},{"location":{"location":"https://github.com/Shamanbenny/ip.git","repoName":"ip","organization":"Shamanbenny","domainName":"github"},"branch":"master","displayName":"Shamanbenny/ip[master]","outputFolderName":"Shamanbenny_ip_master"},{"location":{"location":"https://github.com/KarKuen/ip.git","repoName":"ip","organization":"KarKuen","domainName":"github"},"branch":"master","displayName":"KarKuen/ip[master]","outputFolderName":"KarKuen_ip_master"},{"location":{"location":"https://github.com/caxewhy/ip.git","repoName":"ip","organization":"caxewhy","domainName":"github"},"branch":"master","displayName":"caxewhy/ip[master]","outputFolderName":"caxewhy_ip_master"},{"location":{"location":"https://github.com/sherwinee/ip.git","repoName":"ip","organization":"sherwinee","domainName":"github"},"branch":"master","displayName":"sherwinee/ip[master]","outputFolderName":"sherwinee_ip_master"},{"location":{"location":"https://github.com/ceilingFan456/ip.git","repoName":"ip","organization":"ceilingFan456","domainName":"github"},"branch":"master","displayName":"ceilingFan456/ip[master]","outputFolderName":"ceilingFan456_ip_master"},{"location":{"location":"https://github.com/xplus2g4/ip.git","repoName":"ip","organization":"xplus2g4","domainName":"github"},"branch":"master","displayName":"xplus2g4/ip[master]","outputFolderName":"xplus2g4_ip_master"},{"location":{"location":"https://github.com/dragonesejosh/ip.git","repoName":"ip","organization":"dragonesejosh","domainName":"github"},"branch":"master","displayName":"dragonesejosh/ip[master]","outputFolderName":"dragonesejosh_ip_master"},{"location":{"location":"https://github.com/sivaramjeychand/ip.git","repoName":"ip","organization":"sivaramjeychand","domainName":"github"},"branch":"master","displayName":"sivaramjeychand/ip[master]","outputFolderName":"sivaramjeychand_ip_master"},{"location":{"location":"https://github.com/Kannan171/ip.git","repoName":"ip","organization":"Kannan171","domainName":"github"},"branch":"master","displayName":"Kannan171/ip[master]","outputFolderName":"Kannan171_ip_master"},{"location":{"location":"https://github.com/luna-ortus-cor/ip.git","repoName":"ip","organization":"luna-ortus-cor","domainName":"github"},"branch":"master","displayName":"luna-ortus-cor/ip[master]","outputFolderName":"luna-ortus-cor_ip_master"},{"location":{"location":"https://github.com/zwliew/ip.git","repoName":"ip","organization":"zwliew","domainName":"github"},"branch":"master","displayName":"zwliew/ip[master]","outputFolderName":"zwliew_ip_master"},{"location":{"location":"https://github.com/dexterkwxn/ip.git","repoName":"ip","organization":"dexterkwxn","domainName":"github"},"branch":"master","displayName":"dexterkwxn/ip[master]","outputFolderName":"dexterkwxn_ip_master"},{"location":{"location":"https://github.com/xumarcus/ip.git","repoName":"ip","organization":"xumarcus","domainName":"github"},"branch":"master","displayName":"xumarcus/ip[master]","outputFolderName":"xumarcus_ip_master"},{"location":{"location":"https://github.com/shashwatchan/ip.git","repoName":"ip","organization":"shashwatchan","domainName":"github"},"branch":"master","displayName":"shashwatchan/ip[master]","outputFolderName":"shashwatchan_ip_master"},{"location":{"location":"https://github.com/Leeisateam/ip.git","repoName":"ip","organization":"Leeisateam","domainName":"github"},"branch":"master","displayName":"Leeisateam/ip[master]","outputFolderName":"Leeisateam_ip_master"},{"location":{"location":"https://github.com/kimseunghyun-kr/ip.git","repoName":"ip","organization":"kimseunghyun-kr","domainName":"github"},"branch":"master","displayName":"kimseunghyun-kr/ip[master]","outputFolderName":"kimseunghyun-kr_ip_master"},{"location":{"location":"https://github.com/Bryce-3D/ip.git","repoName":"ip","organization":"Bryce-3D","domainName":"github"},"branch":"master","displayName":"Bryce-3D/ip[master]","outputFolderName":"Bryce-3D_ip_master"},{"location":{"location":"https://github.com/loyaltypollution/ip.git","repoName":"ip","organization":"loyaltypollution","domainName":"github"},"branch":"master","displayName":"loyaltypollution/ip[master]","outputFolderName":"loyaltypollution_ip_master"},{"location":{"location":"https://github.com/josejhkim/ip.git","repoName":"ip","organization":"josejhkim","domainName":"github"},"branch":"master","displayName":"josejhkim/ip[master]","outputFolderName":"josejhkim_ip_master"},{"location":{"location":"https://github.com/cscms03/ip.git","repoName":"ip","organization":"cscms03","domainName":"github"},"branch":"master","displayName":"cscms03/ip[master]","outputFolderName":"cscms03_ip_master"},{"location":{"location":"https://github.com/limshaoqi/ip.git","repoName":"ip","organization":"limshaoqi","domainName":"github"},"branch":"master","displayName":"limshaoqi/ip[master]","outputFolderName":"limshaoqi_ip_master"},{"location":{"location":"https://github.com/caando/ip.git","repoName":"ip","organization":"caando","domainName":"github"},"branch":"master","displayName":"caando/ip[master]","outputFolderName":"caando_ip_master"},{"location":{"location":"https://github.com/Hugo-Chia/ip.git","repoName":"ip","organization":"Hugo-Chia","domainName":"github"},"branch":"master","displayName":"Hugo-Chia/ip[master]","outputFolderName":"Hugo-Chia_ip_master"},{"location":{"location":"https://github.com/wilsonh0/ip.git","repoName":"ip","organization":"wilsonh0","domainName":"github"},"branch":"master","displayName":"wilsonh0/ip[master]","outputFolderName":"wilsonh0_ip_master"},{"location":{"location":"https://github.com/carineang/ip.git","repoName":"ip","organization":"carineang","domainName":"github"},"branch":"master","displayName":"carineang/ip[master]","outputFolderName":"carineang_ip_master"},{"location":{"location":"https://github.com/zenn345/ip.git","repoName":"ip","organization":"zenn345","domainName":"github"},"branch":"master","displayName":"zenn345/ip[master]","outputFolderName":"zenn345_ip_master"},{"location":{"location":"https://github.com/juneha1120/ip.git","repoName":"ip","organization":"juneha1120","domainName":"github"},"branch":"master","displayName":"juneha1120/ip[master]","outputFolderName":"juneha1120_ip_master"},{"location":{"location":"https://github.com/Windofbitter/ip.git","repoName":"ip","organization":"Windofbitter","domainName":"github"},"branch":"master","displayName":"Windofbitter/ip[master]","outputFolderName":"Windofbitter_ip_master"},{"location":{"location":"https://github.com/shawnnygoh/ip.git","repoName":"ip","organization":"shawnnygoh","domainName":"github"},"branch":"master","displayName":"shawnnygoh/ip[master]","outputFolderName":"shawnnygoh_ip_master"},{"location":{"location":"https://github.com/HAITAO2003/ip.git","repoName":"ip","organization":"HAITAO2003","domainName":"github"},"branch":"master","displayName":"HAITAO2003/ip[master]","outputFolderName":"HAITAO2003_ip_master"},{"location":{"location":"https://github.com/e1093051/ip.git","repoName":"ip","organization":"e1093051","domainName":"github"},"branch":"master","displayName":"e1093051/ip[master]","outputFolderName":"e1093051_ip_master"},{"location":{"location":"https://github.com/samuelneo/ip.git","repoName":"ip","organization":"samuelneo","domainName":"github"},"branch":"master","displayName":"samuelneo/ip[master]","outputFolderName":"samuelneo_ip_master"},{"location":{"location":"https://github.com/nicholasohjj/ip.git","repoName":"ip","organization":"nicholasohjj","domainName":"github"},"branch":"master","displayName":"nicholasohjj/ip[master]","outputFolderName":"nicholasohjj_ip_master"},{"location":{"location":"https://github.com/nja99/ip.git","repoName":"ip","organization":"nja99","domainName":"github"},"branch":"master","displayName":"nja99/ip[master]","outputFolderName":"nja99_ip_master"},{"location":{"location":"https://github.com/Clifong/ip.git","repoName":"ip","organization":"Clifong","domainName":"github"},"branch":"master","displayName":"Clifong/ip[master]","outputFolderName":"Clifong_ip_master"},{"location":{"location":"https://github.com/ziliangstanley/ip.git","repoName":"ip","organization":"ziliangstanley","domainName":"github"},"branch":"master","displayName":"ziliangstanley/ip[master]","outputFolderName":"ziliangstanley_ip_master"},{"location":{"location":"https://github.com/isaacchua0309/ip.git","repoName":"ip","organization":"isaacchua0309","domainName":"github"},"branch":"master","displayName":"isaacchua0309/ip[master]","outputFolderName":"isaacchua0309_ip_master"},{"location":{"location":"https://github.com/Mingyuan03/ip.git","repoName":"ip","organization":"Mingyuan03","domainName":"github"},"branch":"master","displayName":"Mingyuan03/ip[master]","outputFolderName":"Mingyuan03_ip_master"},{"location":{"location":"https://github.com/Wrongian/ip.git","repoName":"ip","organization":"Wrongian","domainName":"github"},"branch":"master","displayName":"Wrongian/ip[master]","outputFolderName":"Wrongian_ip_master"},{"location":{"location":"https://github.com/DESU-CLUB/ip.git","repoName":"ip","organization":"DESU-CLUB","domainName":"github"},"branch":"master","displayName":"DESU-CLUB/ip[master]","outputFolderName":"DESU-CLUB_ip_master"},{"location":{"location":"https://github.com/Emmanuel2001/ip.git","repoName":"ip","organization":"Emmanuel2001","domainName":"github"},"branch":"master","displayName":"Emmanuel2001/ip[master]","outputFolderName":"Emmanuel2001_ip_master"},{"location":{"location":"https://github.com/avinazz3/ip.git","repoName":"ip","organization":"avinazz3","domainName":"github"},"branch":"master","displayName":"avinazz3/ip[master]","outputFolderName":"avinazz3_ip_master"},{"location":{"location":"https://github.com/jonzyyyy/ip.git","repoName":"ip","organization":"jonzyyyy","domainName":"github"},"branch":"master","displayName":"jonzyyyy/ip[master]","outputFolderName":"jonzyyyy_ip_master"},{"location":{"location":"https://github.com/Huan-Kiat/ip.git","repoName":"ip","organization":"Huan-Kiat","domainName":"github"},"branch":"master","displayName":"Huan-Kiat/ip[master]","outputFolderName":"Huan-Kiat_ip_master"},{"location":{"location":"https://github.com/chanjunlin/ip.git","repoName":"ip","organization":"chanjunlin","domainName":"github"},"branch":"master","displayName":"chanjunlin/ip[master]","outputFolderName":"chanjunlin_ip_master"},{"location":{"location":"https://github.com/bryantjandra/ip.git","repoName":"ip","organization":"bryantjandra","domainName":"github"},"branch":"master","displayName":"bryantjandra/ip[master]","outputFolderName":"bryantjandra_ip_master"},{"location":{"location":"https://github.com/gajinkee/ip.git","repoName":"ip","organization":"gajinkee","domainName":"github"},"branch":"master","displayName":"gajinkee/ip[master]","outputFolderName":"gajinkee_ip_master"},{"location":{"location":"https://github.com/SociallyIneptWeeb/ip.git","repoName":"ip","organization":"SociallyIneptWeeb","domainName":"github"},"branch":"master","displayName":"SociallyIneptWeeb/ip[master]","outputFolderName":"SociallyIneptWeeb_ip_master"},{"location":{"location":"https://github.com/nickt121/ip.git","repoName":"ip","organization":"nickt121","domainName":"github"},"branch":"master","displayName":"nickt121/ip[master]","outputFolderName":"nickt121_ip_master"},{"location":{"location":"https://github.com/themintchoco/ip.git","repoName":"ip","organization":"themintchoco","domainName":"github"},"branch":"master","displayName":"themintchoco/ip[master]","outputFolderName":"themintchoco_ip_master"},{"location":{"location":"https://github.com/Zhannyhong/ip.git","repoName":"ip","organization":"Zhannyhong","domainName":"github"},"branch":"master","displayName":"Zhannyhong/ip[master]","outputFolderName":"Zhannyhong_ip_master"},{"location":{"location":"https://github.com/gohlucas/ip.git","repoName":"ip","organization":"gohlucas","domainName":"github"},"branch":"master","displayName":"gohlucas/ip[master]","outputFolderName":"gohlucas_ip_master"},{"location":{"location":"https://github.com/ki1r0/ip.git","repoName":"ip","organization":"ki1r0","domainName":"github"},"branch":"master","displayName":"ki1r0/ip[master]","outputFolderName":"ki1r0_ip_master"},{"location":{"location":"https://github.com/Luoq1-Xu/ip.git","repoName":"ip","organization":"Luoq1-Xu","domainName":"github"},"branch":"master","displayName":"Luoq1-Xu/ip[master]","outputFolderName":"Luoq1-Xu_ip_master"},{"location":{"location":"https://github.com/noahang/ip.git","repoName":"ip","organization":"noahang","domainName":"github"},"branch":"master","displayName":"noahang/ip[master]","outputFolderName":"noahang_ip_master"},{"location":{"location":"https://github.com/Frozennfishh/ip.git","repoName":"ip","organization":"Frozennfishh","domainName":"github"},"branch":"master","displayName":"Frozennfishh/ip[master]","outputFolderName":"Frozennfishh_ip_master"},{"location":{"location":"https://github.com/SAN-MUYUN/ip.git","repoName":"ip","organization":"SAN-MUYUN","domainName":"github"},"branch":"master","displayName":"SAN-MUYUN/ip[master]","outputFolderName":"SAN-MUYUN_ip_master"},{"location":{"location":"https://github.com/ernestlsy/ip.git","repoName":"ip","organization":"ernestlsy","domainName":"github"},"branch":"master","displayName":"ernestlsy/ip[master]","outputFolderName":"ernestlsy_ip_master"},{"location":{"location":"https://github.com/Benjam11n/ip.git","repoName":"ip","organization":"Benjam11n","domainName":"github"},"branch":"master","displayName":"Benjam11n/ip[master]","outputFolderName":"Benjam11n_ip_master"},{"location":{"location":"https://github.com/lauhengyi/ip.git","repoName":"ip","organization":"lauhengyi","domainName":"github"},"branch":"master","displayName":"lauhengyi/ip[master]","outputFolderName":"lauhengyi_ip_master"},{"location":{"location":"https://github.com/zedonggg/ip.git","repoName":"ip","organization":"zedonggg","domainName":"github"},"branch":"master","displayName":"zedonggg/ip[master]","outputFolderName":"zedonggg_ip_master"},{"location":{"location":"https://github.com/hrishikeshsathyian/ip.git","repoName":"ip","organization":"hrishikeshsathyian","domainName":"github"},"branch":"master","displayName":"hrishikeshsathyian/ip[master]","outputFolderName":"hrishikeshsathyian_ip_master"},{"location":{"location":"https://github.com/bipplane/ip.git","repoName":"ip","organization":"bipplane","domainName":"github"},"branch":"master","displayName":"bipplane/ip[master]","outputFolderName":"bipplane_ip_master"},{"location":{"location":"https://github.com/MrAsparag00se/ip.git","repoName":"ip","organization":"MrAsparag00se","domainName":"github"},"branch":"master","displayName":"MrAsparag00se/ip[master]","outputFolderName":"MrAsparag00se_ip_master"},{"location":{"location":"https://github.com/zhenglong1603/ip.git","repoName":"ip","organization":"zhenglong1603","domainName":"github"},"branch":"master","displayName":"zhenglong1603/ip[master]","outputFolderName":"zhenglong1603_ip_master"},{"location":{"location":"https://github.com/Siyan-G/ip.git","repoName":"ip","organization":"Siyan-G","domainName":"github"},"branch":"master","displayName":"Siyan-G/ip[master]","outputFolderName":"Siyan-G_ip_master"},{"location":{"location":"https://github.com/tim0tay/ip.git","repoName":"ip","organization":"tim0tay","domainName":"github"},"branch":"master","displayName":"tim0tay/ip[master]","outputFolderName":"tim0tay_ip_master"},{"location":{"location":"https://github.com/jensenhuangyankai/ip.git","repoName":"ip","organization":"jensenhuangyankai","domainName":"github"},"branch":"master","displayName":"jensenhuangyankai/ip[master]","outputFolderName":"jensenhuangyankai_ip_master"},{"location":{"location":"https://github.com/gengyudong/ip.git","repoName":"ip","organization":"gengyudong","domainName":"github"},"branch":"master","displayName":"gengyudong/ip[master]","outputFolderName":"gengyudong_ip_master"},{"location":{"location":"https://github.com/awlarpi/ip.git","repoName":"ip","organization":"awlarpi","domainName":"github"},"branch":"master","displayName":"awlarpi/ip[master]","outputFolderName":"awlarpi_ip_master"},{"location":{"location":"https://github.com/kaungzinye/ip.git","repoName":"ip","organization":"kaungzinye","domainName":"github"},"branch":"master","displayName":"kaungzinye/ip[master]","outputFolderName":"kaungzinye_ip_master"},{"location":{"location":"https://github.com/sciphi-123/ip.git","repoName":"ip","organization":"sciphi-123","domainName":"github"},"branch":"master","displayName":"sciphi-123/ip[master]","outputFolderName":"sciphi-123_ip_master"},{"location":{"location":"https://github.com/junngithub/ip.git","repoName":"ip","organization":"junngithub","domainName":"github"},"branch":"master","displayName":"junngithub/ip[master]","outputFolderName":"junngithub_ip_master"},{"location":{"location":"https://github.com/potatodudedude/ip.git","repoName":"ip","organization":"potatodudedude","domainName":"github"},"branch":"master","displayName":"potatodudedude/ip[master]","outputFolderName":"potatodudedude_ip_master"},{"location":{"location":"https://github.com/m0destly/ip.git","repoName":"ip","organization":"m0destly","domainName":"github"},"branch":"master","displayName":"m0destly/ip[master]","outputFolderName":"m0destly_ip_master"},{"location":{"location":"https://github.com/iamanoob44/ip.git","repoName":"ip","organization":"iamanoob44","domainName":"github"},"branch":"master","displayName":"iamanoob44/ip[master]","outputFolderName":"iamanoob44_ip_master"},{"location":{"location":"https://github.com/itsapaulblem/ip.git","repoName":"ip","organization":"itsapaulblem","domainName":"github"},"branch":"master","displayName":"itsapaulblem/ip[master]","outputFolderName":"itsapaulblem_ip_master"},{"location":{"location":"https://github.com/moingshoing/ip.git","repoName":"ip","organization":"moingshoing","domainName":"github"},"branch":"master","displayName":"moingshoing/ip[master]","outputFolderName":"moingshoing_ip_master"},{"location":{"location":"https://github.com/chen-xiangrui/ip.git","repoName":"ip","organization":"chen-xiangrui","domainName":"github"},"branch":"master","displayName":"chen-xiangrui/ip[master]","outputFolderName":"chen-xiangrui_ip_master"},{"location":{"location":"https://github.com/mihirniyogi/ip.git","repoName":"ip","organization":"mihirniyogi","domainName":"github"},"branch":"master","displayName":"mihirniyogi/ip[master]","outputFolderName":"mihirniyogi_ip_master"},{"location":{"location":"https://github.com/darHH/ip.git","repoName":"ip","organization":"darHH","domainName":"github"},"branch":"master","displayName":"darHH/ip[master]","outputFolderName":"darHH_ip_master"},{"location":{"location":"https://github.com/Codekrodile/ip.git","repoName":"ip","organization":"Codekrodile","domainName":"github"},"branch":"master","displayName":"Codekrodile/ip[master]","outputFolderName":"Codekrodile_ip_master"},{"location":{"location":"https://github.com/nicolaskjh/ip.git","repoName":"ip","organization":"nicolaskjh","domainName":"github"},"branch":"master","displayName":"nicolaskjh/ip[master]","outputFolderName":"nicolaskjh_ip_master"},{"location":{"location":"https://github.com/laishuya/ip.git","repoName":"ip","organization":"laishuya","domainName":"github"},"branch":"master","displayName":"laishuya/ip[master]","outputFolderName":"laishuya_ip_master"},{"location":{"location":"https://github.com/GrassHeadd/ip.git","repoName":"ip","organization":"GrassHeadd","domainName":"github"},"branch":"master","displayName":"GrassHeadd/ip[master]","outputFolderName":"GrassHeadd_ip_master"},{"location":{"location":"https://github.com/leeyenshen/ip.git","repoName":"ip","organization":"leeyenshen","domainName":"github"},"branch":"master","displayName":"leeyenshen/ip[master]","outputFolderName":"leeyenshen_ip_master"},{"location":{"location":"https://github.com/cyrolite/ip.git","repoName":"ip","organization":"cyrolite","domainName":"github"},"branch":"master","displayName":"cyrolite/ip[master]","outputFolderName":"cyrolite_ip_master"},{"location":{"location":"https://github.com/mhaikelll/ip.git","repoName":"ip","organization":"mhaikelll","domainName":"github"},"branch":"master","displayName":"mhaikelll/ip[master]","outputFolderName":"mhaikelll_ip_master"},{"location":{"location":"https://github.com/LonelyFort/ip.git","repoName":"ip","organization":"LonelyFort","domainName":"github"},"branch":"master","displayName":"LonelyFort/ip[master]","outputFolderName":"LonelyFort_ip_master"},{"location":{"location":"https://github.com/Engulfy/ip.git","repoName":"ip","organization":"Engulfy","domainName":"github"},"branch":"master","displayName":"Engulfy/ip[master]","outputFolderName":"Engulfy_ip_master"},{"location":{"location":"https://github.com/jingchun19/ip.git","repoName":"ip","organization":"jingchun19","domainName":"github"},"branch":"master","displayName":"jingchun19/ip[master]","outputFolderName":"jingchun19_ip_master"},{"location":{"location":"https://github.com/LeeJiaWei23/ip.git","repoName":"ip","organization":"LeeJiaWei23","domainName":"github"},"branch":"master","displayName":"LeeJiaWei23/ip[master]","outputFolderName":"LeeJiaWei23_ip_master"},{"location":{"location":"https://github.com/wenruu/ip.git","repoName":"ip","organization":"wenruu","domainName":"github"},"branch":"master","displayName":"wenruu/ip[master]","outputFolderName":"wenruu_ip_master"},{"location":{"location":"https://github.com/nicholasdaijh/ip.git","repoName":"ip","organization":"nicholasdaijh","domainName":"github"},"branch":"master","displayName":"nicholasdaijh/ip[master]","outputFolderName":"nicholasdaijh_ip_master"},{"location":{"location":"https://github.com/Timothy-Ho0203/ip.git","repoName":"ip","organization":"Timothy-Ho0203","domainName":"github"},"branch":"master","displayName":"Timothy-Ho0203/ip[master]","outputFolderName":"Timothy-Ho0203_ip_master"},{"location":{"location":"https://github.com/mervyn-teo/ip.git","repoName":"ip","organization":"mervyn-teo","domainName":"github"},"branch":"master","displayName":"mervyn-teo/ip[master]","outputFolderName":"mervyn-teo_ip_master"},{"location":{"location":"https://github.com/SherrinfordHR/ip.git","repoName":"ip","organization":"SherrinfordHR","domainName":"github"},"branch":"master","displayName":"SherrinfordHR/ip[master]","outputFolderName":"SherrinfordHR_ip_master"},{"location":{"location":"https://github.com/kumar2215/ip.git","repoName":"ip","organization":"kumar2215","domainName":"github"},"branch":"master","displayName":"kumar2215/ip[master]","outputFolderName":"kumar2215_ip_master"},{"location":{"location":"https://github.com/clx3210/ip.git","repoName":"ip","organization":"clx3210","domainName":"github"},"branch":"master","displayName":"clx3210/ip[master]","outputFolderName":"clx3210_ip_master"},{"location":{"location":"https://github.com/curiousfun88/ip.git","repoName":"ip","organization":"curiousfun88","domainName":"github"},"branch":"master","displayName":"curiousfun88/ip[master]","outputFolderName":"curiousfun88_ip_master"},{"location":{"location":"https://github.com/cerulyean/ip.git","repoName":"ip","organization":"cerulyean","domainName":"github"},"branch":"master","displayName":"cerulyean/ip[master]","outputFolderName":"cerulyean_ip_master"},{"location":{"location":"https://github.com/Shanyey/ip.git","repoName":"ip","organization":"Shanyey","domainName":"github"},"branch":"master","displayName":"Shanyey/ip[master]","outputFolderName":"Shanyey_ip_master"},{"location":{"location":"https://github.com/weien02/ip.git","repoName":"ip","organization":"weien02","domainName":"github"},"branch":"master","displayName":"weien02/ip[master]","outputFolderName":"weien02_ip_master"},{"location":{"location":"https://github.com/waylonggggg/ip.git","repoName":"ip","organization":"waylonggggg","domainName":"github"},"branch":"master","displayName":"waylonggggg/ip[master]","outputFolderName":"waylonggggg_ip_master"},{"location":{"location":"https://github.com/jonaturn/ip.git","repoName":"ip","organization":"jonaturn","domainName":"github"},"branch":"master","displayName":"jonaturn/ip[master]","outputFolderName":"jonaturn_ip_master"},{"location":{"location":"https://github.com/Junixm/ip.git","repoName":"ip","organization":"Junixm","domainName":"github"},"branch":"master","displayName":"Junixm/ip[master]","outputFolderName":"Junixm_ip_master"},{"location":{"location":"https://github.com/mogmyij/ip.git","repoName":"ip","organization":"mogmyij","domainName":"github"},"branch":"master","displayName":"mogmyij/ip[master]","outputFolderName":"mogmyij_ip_master"},{"location":{"location":"https://github.com/TeaMakesMePee/ip.git","repoName":"ip","organization":"TeaMakesMePee","domainName":"github"},"branch":"master","displayName":"TeaMakesMePee/ip[master]","outputFolderName":"TeaMakesMePee_ip_master"},{"location":{"location":"https://github.com/vikeedough/ip.git","repoName":"ip","organization":"vikeedough","domainName":"github"},"branch":"master","displayName":"vikeedough/ip[master]","outputFolderName":"vikeedough_ip_master"},{"location":{"location":"https://github.com/deseansoh/ip.git","repoName":"ip","organization":"deseansoh","domainName":"github"},"branch":"master","displayName":"deseansoh/ip[master]","outputFolderName":"deseansoh_ip_master"},{"location":{"location":"https://github.com/danplatypus30/ip.git","repoName":"ip","organization":"danplatypus30","domainName":"github"},"branch":"master","displayName":"danplatypus30/ip[master]","outputFolderName":"danplatypus30_ip_master"},{"location":{"location":"https://github.com/TiewJiaLiang/ip.git","repoName":"ip","organization":"TiewJiaLiang","domainName":"github"},"branch":"master","displayName":"TiewJiaLiang/ip[master]","outputFolderName":"TiewJiaLiang_ip_master"},{"location":{"location":"https://github.com/TanJieHaoAmos/ip.git","repoName":"ip","organization":"TanJieHaoAmos","domainName":"github"},"branch":"master","displayName":"TanJieHaoAmos/ip[master]","outputFolderName":"TanJieHaoAmos_ip_master"},{"location":{"location":"https://github.com/AndreChia/ip.git","repoName":"ip","organization":"AndreChia","domainName":"github"},"branch":"master","displayName":"AndreChia/ip[master]","outputFolderName":"AndreChia_ip_master"},{"location":{"location":"https://github.com/Xavierlhm/ip.git","repoName":"ip","organization":"Xavierlhm","domainName":"github"},"branch":"master","displayName":"Xavierlhm/ip[master]","outputFolderName":"Xavierlhm_ip_master"},{"location":{"location":"https://github.com/0xF41/ip.git","repoName":"ip","organization":"0xF41","domainName":"github"},"branch":"master","displayName":"0xF41/ip[master]","outputFolderName":"0xF41_ip_master"},{"location":{"location":"https://github.com/wallacepck/ip.git","repoName":"ip","organization":"wallacepck","domainName":"github"},"branch":"master","displayName":"wallacepck/ip[master]","outputFolderName":"wallacepck_ip_master"},{"location":{"location":"https://github.com/xa0412/ip.git","repoName":"ip","organization":"xa0412","domainName":"github"},"branch":"master","displayName":"xa0412/ip[master]","outputFolderName":"xa0412_ip_master"},{"location":{"location":"https://github.com/Alolononon/ip.git","repoName":"ip","organization":"Alolononon","domainName":"github"},"branch":"master","displayName":"Alolononon/ip[master]","outputFolderName":"Alolononon_ip_master"},{"location":{"location":"https://github.com/gekjunxu/ip.git","repoName":"ip","organization":"gekjunxu","domainName":"github"},"branch":"master","displayName":"gekjunxu/ip[master]","outputFolderName":"gekjunxu_ip_master"},{"location":{"location":"https://github.com/WhiteBear82/ip.git","repoName":"ip","organization":"WhiteBear82","domainName":"github"},"branch":"master","displayName":"WhiteBear82/ip[master]","outputFolderName":"WhiteBear82_ip_master"},{"location":{"location":"https://github.com/nictjh/ip.git","repoName":"ip","organization":"nictjh","domainName":"github"},"branch":"master","displayName":"nictjh/ip[master]","outputFolderName":"nictjh_ip_master"},{"location":{"location":"https://github.com/darrenchooji/ip.git","repoName":"ip","organization":"darrenchooji","domainName":"github"},"branch":"master","displayName":"darrenchooji/ip[master]","outputFolderName":"darrenchooji_ip_master"},{"location":{"location":"https://github.com/panomia01/ip.git","repoName":"ip","organization":"panomia01","domainName":"github"},"branch":"master","displayName":"panomia01/ip[master]","outputFolderName":"panomia01_ip_master"},{"location":{"location":"https://github.com/Mil-leon/ip.git","repoName":"ip","organization":"Mil-leon","domainName":"github"},"branch":"master","displayName":"Mil-leon/ip[master]","outputFolderName":"Mil-leon_ip_master"},{"location":{"location":"https://github.com/zuoshihua/ip.git","repoName":"ip","organization":"zuoshihua","domainName":"github"},"branch":"master","displayName":"zuoshihua/ip[master]","outputFolderName":"zuoshihua_ip_master"},{"location":{"location":"https://github.com/Fieash/ip.git","repoName":"ip","organization":"Fieash","domainName":"github"},"branch":"master","displayName":"Fieash/ip[master]","outputFolderName":"Fieash_ip_master"},{"location":{"location":"https://github.com/jon-seana/ip.git","repoName":"ip","organization":"jon-seana","domainName":"github"},"branch":"master","displayName":"jon-seana/ip[master]","outputFolderName":"jon-seana_ip_master"},{"location":{"location":"https://github.com/ShiJianXi/ip.git","repoName":"ip","organization":"ShiJianXi","domainName":"github"},"branch":"master","displayName":"ShiJianXi/ip[master]","outputFolderName":"ShiJianXi_ip_master"},{"location":{"location":"https://github.com/CloudKai/ip.git","repoName":"ip","organization":"CloudKai","domainName":"github"},"branch":"master","displayName":"CloudKai/ip[master]","outputFolderName":"CloudKai_ip_master"},{"location":{"location":"https://github.com/AnWe11/ip.git","repoName":"ip","organization":"AnWe11","domainName":"github"},"branch":"master","displayName":"AnWe11/ip[master]","outputFolderName":"AnWe11_ip_master"},{"location":{"location":"https://github.com/wzhua02/ip.git","repoName":"ip","organization":"wzhua02","domainName":"github"},"branch":"master","displayName":"wzhua02/ip[master]","outputFolderName":"wzhua02_ip_master"},{"location":{"location":"https://github.com/KimHan01/ip.git","repoName":"ip","organization":"KimHan01","domainName":"github"},"branch":"master","displayName":"KimHan01/ip[master]","outputFolderName":"KimHan01_ip_master"},{"location":{"location":"https://github.com/cyhni/ip.git","repoName":"ip","organization":"cyhni","domainName":"github"},"branch":"master","displayName":"cyhni/ip[master]","outputFolderName":"cyhni_ip_master"},{"location":{"location":"https://github.com/wei-song1/ip.git","repoName":"ip","organization":"wei-song1","domainName":"github"},"branch":"master","displayName":"wei-song1/ip[master]","outputFolderName":"wei-song1_ip_master"},{"location":{"location":"https://github.com/javentankangle/ip.git","repoName":"ip","organization":"javentankangle","domainName":"github"},"branch":"master","displayName":"javentankangle/ip[master]","outputFolderName":"javentankangle_ip_master"},{"location":{"location":"https://github.com/coffeemocha/ip.git","repoName":"ip","organization":"coffeemocha","domainName":"github"},"branch":"master","displayName":"coffeemocha/ip[master]","outputFolderName":"coffeemocha_ip_master"},{"location":{"location":"https://github.com/reuben-thomas/ip.git","repoName":"ip","organization":"reuben-thomas","domainName":"github"},"branch":"master","displayName":"reuben-thomas/ip[master]","outputFolderName":"reuben-thomas_ip_master"},{"location":{"location":"https://github.com/varuuuun/ip.git","repoName":"ip","organization":"varuuuun","domainName":"github"},"branch":"master","displayName":"varuuuun/ip[master]","outputFolderName":"varuuuun_ip_master"},{"location":{"location":"https://github.com/itsvari/ip.git","repoName":"ip","organization":"itsvari","domainName":"github"},"branch":"master","displayName":"itsvari/ip[master]","outputFolderName":"itsvari_ip_master"},{"location":{"location":"https://github.com/namitdeb739/ip.git","repoName":"ip","organization":"namitdeb739","domainName":"github"},"branch":"master","displayName":"namitdeb739/ip[master]","outputFolderName":"namitdeb739_ip_master"},{"location":{"location":"https://github.com/weiyanminoo/ip.git","repoName":"ip","organization":"weiyanminoo","domainName":"github"},"branch":"master","displayName":"weiyanminoo/ip[master]","outputFolderName":"weiyanminoo_ip_master"},{"location":{"location":"https://github.com/changjy81/ip.git","repoName":"ip","organization":"changjy81","domainName":"github"},"branch":"master","displayName":"changjy81/ip[master]","outputFolderName":"changjy81_ip_master"},{"location":{"location":"https://github.com/LuBolin/ip.git","repoName":"ip","organization":"LuBolin","domainName":"github"},"branch":"master","displayName":"LuBolin/ip[master]","outputFolderName":"LuBolin_ip_master"},{"location":{"location":"https://github.com/aaronlim02/ip.git","repoName":"ip","organization":"aaronlim02","domainName":"github"},"branch":"master","displayName":"aaronlim02/ip[master]","outputFolderName":"aaronlim02_ip_master"},{"location":{"location":"https://github.com/Ben926/ip.git","repoName":"ip","organization":"Ben926","domainName":"github"},"branch":"master","displayName":"Ben926/ip[master]","outputFolderName":"Ben926_ip_master"},{"location":{"location":"https://github.com/Hackari/ip.git","repoName":"ip","organization":"Hackari","domainName":"github"},"branch":"master","displayName":"Hackari/ip[master]","outputFolderName":"Hackari_ip_master"},{"location":{"location":"https://github.com/Jsjk112344/ip.git","repoName":"ip","organization":"Jsjk112344","domainName":"github"},"branch":"master","displayName":"Jsjk112344/ip[master]","outputFolderName":"Jsjk112344_ip_master"},{"location":{"location":"https://github.com/adoubleb/ip.git","repoName":"ip","organization":"adoubleb","domainName":"github"},"branch":"master","displayName":"adoubleb/ip[master]","outputFolderName":"adoubleb_ip_master"},{"location":{"location":"https://github.com/alexandtheoh/ip.git","repoName":"ip","organization":"alexandtheoh","domainName":"github"},"branch":"master","displayName":"alexandtheoh/ip[master]","outputFolderName":"alexandtheoh_ip_master"},{"location":{"location":"https://github.com/soonami69/ip.git","repoName":"ip","organization":"soonami69","domainName":"github"},"branch":"master","displayName":"soonami69/ip[master]","outputFolderName":"soonami69_ip_master"},{"location":{"location":"https://github.com/jaylontan/ip.git","repoName":"ip","organization":"jaylontan","domainName":"github"},"branch":"master","displayName":"jaylontan/ip[master]","outputFolderName":"jaylontan_ip_master"},{"location":{"location":"https://github.com/zechary28/ip.git","repoName":"ip","organization":"zechary28","domainName":"github"},"branch":"master","displayName":"zechary28/ip[master]","outputFolderName":"zechary28_ip_master"},{"location":{"location":"https://github.com/Zonnie-23/ip.git","repoName":"ip","organization":"Zonnie-23","domainName":"github"},"branch":"master","displayName":"Zonnie-23/ip[master]","outputFolderName":"Zonnie-23_ip_master"},{"location":{"location":"https://github.com/benedictleejr/ip.git","repoName":"ip","organization":"benedictleejr","domainName":"github"},"branch":"master","displayName":"benedictleejr/ip[master]","outputFolderName":"benedictleejr_ip_master"},{"location":{"location":"https://github.com/pastchum/ip.git","repoName":"ip","organization":"pastchum","domainName":"github"},"branch":"master","displayName":"pastchum/ip[master]","outputFolderName":"pastchum_ip_master"},{"location":{"location":"https://github.com/farhan-navas/ip.git","repoName":"ip","organization":"farhan-navas","domainName":"github"},"branch":"master","displayName":"farhan-navas/ip[master]","outputFolderName":"farhan-navas_ip_master"},{"location":{"location":"https://github.com/lilyium/ip.git","repoName":"ip","organization":"lilyium","domainName":"github"},"branch":"master","displayName":"lilyium/ip[master]","outputFolderName":"lilyium_ip_master"},{"location":{"location":"https://github.com/chuahziyang/ip.git","repoName":"ip","organization":"chuahziyang","domainName":"github"},"branch":"master","displayName":"chuahziyang/ip[master]","outputFolderName":"chuahziyang_ip_master"},{"location":{"location":"https://github.com/Seethevon/ip.git","repoName":"ip","organization":"Seethevon","domainName":"github"},"branch":"master","displayName":"Seethevon/ip[master]","outputFolderName":"Seethevon_ip_master"},{"location":{"location":"https://github.com/yuto1115/ip.git","repoName":"ip","organization":"yuto1115","domainName":"github"},"branch":"master","displayName":"yuto1115/ip[master]","outputFolderName":"yuto1115_ip_master"},{"location":{"location":"https://github.com/DanielJames0302/ip.git","repoName":"ip","organization":"DanielJames0302","domainName":"github"},"branch":"master","displayName":"DanielJames0302/ip[master]","outputFolderName":"DanielJames0302_ip_master"},{"location":{"location":"https://github.com/yuqing-tham/ip.git","repoName":"ip","organization":"yuqing-tham","domainName":"github"},"branch":"master","displayName":"yuqing-tham/ip[master]","outputFolderName":"yuqing-tham_ip_master"},{"location":{"location":"https://github.com/SomneelSaha2004/ip.git","repoName":"ip","organization":"SomneelSaha2004","domainName":"github"},"branch":"master","displayName":"SomneelSaha2004/ip[master]","outputFolderName":"SomneelSaha2004_ip_master"},{"location":{"location":"https://github.com/CHI-ME/ip.git","repoName":"ip","organization":"CHI-ME","domainName":"github"},"branch":"master","displayName":"CHI-ME/ip[master]","outputFolderName":"CHI-ME_ip_master"},{"location":{"location":"https://github.com/charlenelau-20/ip.git","repoName":"ip","organization":"charlenelau-20","domainName":"github"},"branch":"master","displayName":"charlenelau-20/ip[master]","outputFolderName":"charlenelau-20_ip_master"},{"location":{"location":"https://github.com/wswddl/ip.git","repoName":"ip","organization":"wswddl","domainName":"github"},"branch":"master","displayName":"wswddl/ip[master]","outputFolderName":"wswddl_ip_master"},{"location":{"location":"https://github.com/veehz/ip.git","repoName":"ip","organization":"veehz","domainName":"github"},"branch":"master","displayName":"veehz/ip[master]","outputFolderName":"veehz_ip_master"},{"location":{"location":"https://github.com/Judy1x4/ip.git","repoName":"ip","organization":"Judy1x4","domainName":"github"},"branch":"master","displayName":"Judy1x4/ip[master]","outputFolderName":"Judy1x4_ip_master"},{"location":{"location":"https://github.com/zihung20/ip.git","repoName":"ip","organization":"zihung20","domainName":"github"},"branch":"master","displayName":"zihung20/ip[master]","outputFolderName":"zihung20_ip_master"},{"location":{"location":"https://github.com/pang-yy/ip.git","repoName":"ip","organization":"pang-yy","domainName":"github"},"branch":"master","displayName":"pang-yy/ip[master]","outputFolderName":"pang-yy_ip_master"},{"location":{"location":"https://github.com/CXl0l0/ip.git","repoName":"ip","organization":"CXl0l0","domainName":"github"},"branch":"master","displayName":"CXl0l0/ip[master]","outputFolderName":"CXl0l0_ip_master"},{"location":{"location":"https://github.com/swatirajesh277/ip.git","repoName":"ip","organization":"swatirajesh277","domainName":"github"},"branch":"master","displayName":"swatirajesh277/ip[master]","outputFolderName":"swatirajesh277_ip_master"},{"location":{"location":"https://github.com/flljy940/ip.git","repoName":"ip","organization":"flljy940","domainName":"github"},"branch":"master","displayName":"flljy940/ip[master]","outputFolderName":"flljy940_ip_master"},{"location":{"location":"https://github.com/DiligentPenguinn/ip.git","repoName":"ip","organization":"DiligentPenguinn","domainName":"github"},"branch":"master","displayName":"DiligentPenguinn/ip[master]","outputFolderName":"DiligentPenguinn_ip_master"},{"location":{"location":"https://github.com/GabriellaGloria/ip.git","repoName":"ip","organization":"GabriellaGloria","domainName":"github"},"branch":"master","displayName":"GabriellaGloria/ip[master]","outputFolderName":"GabriellaGloria_ip_master"},{"location":{"location":"https://github.com/minhkiwi14/ip.git","repoName":"ip","organization":"minhkiwi14","domainName":"github"},"branch":"master","displayName":"minhkiwi14/ip[master]","outputFolderName":"minhkiwi14_ip_master"},{"location":{"location":"https://github.com/NhatMinh0208/ip.git","repoName":"ip","organization":"NhatMinh0208","domainName":"github"},"branch":"master","displayName":"NhatMinh0208/ip[master]","outputFolderName":"NhatMinh0208_ip_master"},{"location":{"location":"https://github.com/ChauuuLe/ip.git","repoName":"ip","organization":"ChauuuLe","domainName":"github"},"branch":"master","displayName":"ChauuuLe/ip[master]","outputFolderName":"ChauuuLe_ip_master"},{"location":{"location":"https://github.com/nikingoda/ip.git","repoName":"ip","organization":"nikingoda","domainName":"github"},"branch":"master","displayName":"nikingoda/ip[master]","outputFolderName":"nikingoda_ip_master"},{"location":{"location":"https://github.com/ho-thanh-und/ip.git","repoName":"ip","organization":"ho-thanh-und","domainName":"github"},"branch":"master","displayName":"ho-thanh-und/ip[master]","outputFolderName":"ho-thanh-und_ip_master"},{"location":{"location":"https://github.com/Kkenjji/ip.git","repoName":"ip","organization":"Kkenjji","domainName":"github"},"branch":"master","displayName":"Kkenjji/ip[master]","outputFolderName":"Kkenjji_ip_master"},{"location":{"location":"https://github.com/Bill-1/ip.git","repoName":"ip","organization":"Bill-1","domainName":"github"},"branch":"master","displayName":"Bill-1/ip[master]","outputFolderName":"Bill-1_ip_master"},{"location":{"location":"https://github.com/nhocmt227/ip.git","repoName":"ip","organization":"nhocmt227","domainName":"github"},"branch":"master","displayName":"nhocmt227/ip[master]","outputFolderName":"nhocmt227_ip_master"},{"location":{"location":"https://github.com/Jensen188/ip.git","repoName":"ip","organization":"Jensen188","domainName":"github"},"branch":"master","displayName":"Jensen188/ip[master]","outputFolderName":"Jensen188_ip_master"},{"location":{"location":"https://github.com/TobyCyan/ip.git","repoName":"ip","organization":"TobyCyan","domainName":"github"},"branch":"master","displayName":"TobyCyan/ip[master]","outputFolderName":"TobyCyan_ip_master"},{"location":{"location":"https://github.com/LsmnBmnc/ip.git","repoName":"ip","organization":"LsmnBmnc","domainName":"github"},"branch":"master","displayName":"LsmnBmnc/ip[master]","outputFolderName":"LsmnBmnc_ip_master"},{"location":{"location":"https://github.com/sreelakshmiharidos/ip.git","repoName":"ip","organization":"sreelakshmiharidos","domainName":"github"},"branch":"master","displayName":"sreelakshmiharidos/ip[master]","outputFolderName":"sreelakshmiharidos_ip_master"},{"location":{"location":"https://github.com/meglwhy/ip.git","repoName":"ip","organization":"meglwhy","domainName":"github"},"branch":"master","displayName":"meglwhy/ip[master]","outputFolderName":"meglwhy_ip_master"},{"location":{"location":"https://github.com/JadeCheah/ip.git","repoName":"ip","organization":"JadeCheah","domainName":"github"},"branch":"master","displayName":"JadeCheah/ip[master]","outputFolderName":"JadeCheah_ip_master"},{"location":{"location":"https://github.com/ZaydM18/ip.git","repoName":"ip","organization":"ZaydM18","domainName":"github"},"branch":"master","displayName":"ZaydM18/ip[master]","outputFolderName":"ZaydM18_ip_master"},{"location":{"location":"https://github.com/leewaikin19/ip.git","repoName":"ip","organization":"leewaikin19","domainName":"github"},"branch":"master","displayName":"leewaikin19/ip[master]","outputFolderName":"leewaikin19_ip_master"},{"location":{"location":"https://github.com/kevinlimantoro123/ip.git","repoName":"ip","organization":"kevinlimantoro123","domainName":"github"},"branch":"master","displayName":"kevinlimantoro123/ip[master]","outputFolderName":"kevinlimantoro123_ip_master"},{"location":{"location":"https://github.com/xinnnyeee/ip.git","repoName":"ip","organization":"xinnnyeee","domainName":"github"},"branch":"master","displayName":"xinnnyeee/ip[master]","outputFolderName":"xinnnyeee_ip_master"},{"location":{"location":"https://github.com/githubcsuser/ip.git","repoName":"ip","organization":"githubcsuser","domainName":"github"},"branch":"master","displayName":"githubcsuser/ip[master]","outputFolderName":"githubcsuser_ip_master"},{"location":{"location":"https://github.com/xk1234/ip.git","repoName":"ip","organization":"xk1234","domainName":"github"},"branch":"master","displayName":"xk1234/ip[master]","outputFolderName":"xk1234_ip_master"},{"location":{"location":"https://github.com/UltimateHG/ip.git","repoName":"ip","organization":"UltimateHG","domainName":"github"},"branch":"master","displayName":"UltimateHG/ip[master]","outputFolderName":"UltimateHG_ip_master"},{"location":{"location":"https://github.com/kerktaiheng/ip.git","repoName":"ip","organization":"kerktaiheng","domainName":"github"},"branch":"master","displayName":"kerktaiheng/ip[master]","outputFolderName":"kerktaiheng_ip_master"},{"location":{"location":"https://github.com/Stickiem/ip.git","repoName":"ip","organization":"Stickiem","domainName":"github"},"branch":"master","displayName":"Stickiem/ip[master]","outputFolderName":"Stickiem_ip_master"},{"location":{"location":"https://github.com/zacklow28/ip.git","repoName":"ip","organization":"zacklow28","domainName":"github"},"branch":"master","displayName":"zacklow28/ip[master]","outputFolderName":"zacklow28_ip_master"},{"location":{"location":"https://github.com/WeiHungLoh/ip.git","repoName":"ip","organization":"WeiHungLoh","domainName":"github"},"branch":"master","displayName":"WeiHungLoh/ip[master]","outputFolderName":"WeiHungLoh_ip_master"},{"location":{"location":"https://github.com/monobeartae/ip.git","repoName":"ip","organization":"monobeartae","domainName":"github"},"branch":"master","displayName":"monobeartae/ip[master]","outputFolderName":"monobeartae_ip_master"},{"location":{"location":"https://github.com/Charlesl12/ip.git","repoName":"ip","organization":"Charlesl12","domainName":"github"},"branch":"master","displayName":"Charlesl12/ip[master]","outputFolderName":"Charlesl12_ip_master"},{"location":{"location":"https://github.com/TanXingZhong/ip.git","repoName":"ip","organization":"TanXingZhong","domainName":"github"},"branch":"master","displayName":"TanXingZhong/ip[master]","outputFolderName":"TanXingZhong_ip_master"},{"location":{"location":"https://github.com/NoahKoh/ip.git","repoName":"ip","organization":"NoahKoh","domainName":"github"},"branch":"master","displayName":"NoahKoh/ip[master]","outputFolderName":"NoahKoh_ip_master"},{"location":{"location":"https://github.com/shuang26/ip.git","repoName":"ip","organization":"shuang26","domainName":"github"},"branch":"master","displayName":"shuang26/ip[master]","outputFolderName":"shuang26_ip_master"},{"location":{"location":"https://github.com/reaneechua/ip.git","repoName":"ip","organization":"reaneechua","domainName":"github"},"branch":"master","displayName":"reaneechua/ip[master]","outputFolderName":"reaneechua_ip_master"},{"location":{"location":"https://github.com/HarishB99/ip.git","repoName":"ip","organization":"HarishB99","domainName":"github"},"branch":"master","displayName":"HarishB99/ip[master]","outputFolderName":"HarishB99_ip_master"},{"location":{"location":"https://github.com/BladerX11/ip.git","repoName":"ip","organization":"BladerX11","domainName":"github"},"branch":"master","displayName":"BladerX11/ip[master]","outputFolderName":"BladerX11_ip_master"},{"location":{"location":"https://github.com/jordon0802/ip.git","repoName":"ip","organization":"jordon0802","domainName":"github"},"branch":"master","displayName":"jordon0802/ip[master]","outputFolderName":"jordon0802_ip_master"},{"location":{"location":"https://github.com/chinpcbenjamin/ip.git","repoName":"ip","organization":"chinpcbenjamin","domainName":"github"},"branch":"master","displayName":"chinpcbenjamin/ip[master]","outputFolderName":"chinpcbenjamin_ip_master"},{"location":{"location":"https://github.com/blobfish465/ip.git","repoName":"ip","organization":"blobfish465","domainName":"github"},"branch":"master","displayName":"blobfish465/ip[master]","outputFolderName":"blobfish465_ip_master"},{"location":{"location":"https://github.com/Taoseeker/ip.git","repoName":"ip","organization":"Taoseeker","domainName":"github"},"branch":"master","displayName":"Taoseeker/ip[master]","outputFolderName":"Taoseeker_ip_master"},{"location":{"location":"https://github.com/juniper285/ip.git","repoName":"ip","organization":"juniper285","domainName":"github"},"branch":"master","displayName":"juniper285/ip[master]","outputFolderName":"juniper285_ip_master"},{"location":{"location":"https://github.com/hengjeekuan/ip.git","repoName":"ip","organization":"hengjeekuan","domainName":"github"},"branch":"master","displayName":"hengjeekuan/ip[master]","outputFolderName":"hengjeekuan_ip_master"},{"location":{"location":"https://github.com/datletu/ip.git","repoName":"ip","organization":"datletu","domainName":"github"},"branch":"master","displayName":"datletu/ip[master]","outputFolderName":"datletu_ip_master"},{"location":{"location":"https://github.com/J4Joshua/ip.git","repoName":"ip","organization":"J4Joshua","domainName":"github"},"branch":"master","displayName":"J4Joshua/ip[master]","outputFolderName":"J4Joshua_ip_master"},{"location":{"location":"https://github.com/ypuppy/ip.git","repoName":"ip","organization":"ypuppy","domainName":"github"},"branch":"master","displayName":"ypuppy/ip[master]","outputFolderName":"ypuppy_ip_master"},{"location":{"location":"https://github.com/RickyHFR/ip.git","repoName":"ip","organization":"RickyHFR","domainName":"github"},"branch":"master","displayName":"RickyHFR/ip[master]","outputFolderName":"RickyHFR_ip_master"},{"location":{"location":"https://github.com/Jasonzhou97/ip.git","repoName":"ip","organization":"Jasonzhou97","domainName":"github"},"branch":"master","displayName":"Jasonzhou97/ip[master]","outputFolderName":"Jasonzhou97_ip_master"},{"location":{"location":"https://github.com/iuhiah/ip.git","repoName":"ip","organization":"iuhiah","domainName":"github"},"branch":"master","displayName":"iuhiah/ip[master]","outputFolderName":"iuhiah_ip_master"},{"location":{"location":"https://github.com/LF1928/ip.git","repoName":"ip","organization":"LF1928","domainName":"github"},"branch":"master","displayName":"LF1928/ip[master]","outputFolderName":"LF1928_ip_master"},{"location":{"location":"https://github.com/patil-np/ip.git","repoName":"ip","organization":"patil-np","domainName":"github"},"branch":"master","displayName":"patil-np/ip[master]","outputFolderName":"patil-np_ip_master"},{"location":{"location":"https://github.com/glennliew/ip.git","repoName":"ip","organization":"glennliew","domainName":"github"},"branch":"master","displayName":"glennliew/ip[master]","outputFolderName":"glennliew_ip_master"},{"location":{"location":"https://github.com/Noob-No-1/ip.git","repoName":"ip","organization":"Noob-No-1","domainName":"github"},"branch":"master","displayName":"Noob-No-1/ip[master]","outputFolderName":"Noob-No-1_ip_master"},{"location":{"location":"https://github.com/ryanlow64/ip.git","repoName":"ip","organization":"ryanlow64","domainName":"github"},"branch":"master","displayName":"ryanlow64/ip[master]","outputFolderName":"ryanlow64_ip_master"},{"location":{"location":"https://github.com/souledfigurine/ip.git","repoName":"ip","organization":"souledfigurine","domainName":"github"},"branch":"master","displayName":"souledfigurine/ip[master]","outputFolderName":"souledfigurine_ip_master"},{"location":{"location":"https://github.com/lilduckling/ip.git","repoName":"ip","organization":"lilduckling","domainName":"github"},"branch":"master","displayName":"lilduckling/ip[master]","outputFolderName":"lilduckling_ip_master"},{"location":{"location":"https://github.com/zeotheburrito/ip.git","repoName":"ip","organization":"zeotheburrito","domainName":"github"},"branch":"master","displayName":"zeotheburrito/ip[master]","outputFolderName":"zeotheburrito_ip_master"},{"location":{"location":"https://github.com/weiwong834/ip.git","repoName":"ip","organization":"weiwong834","domainName":"github"},"branch":"master","displayName":"weiwong834/ip[master]","outputFolderName":"weiwong834_ip_master"},{"location":{"location":"https://github.com/chenxy12345/ip.git","repoName":"ip","organization":"chenxy12345","domainName":"github"},"branch":"master","displayName":"chenxy12345/ip[master]","outputFolderName":"chenxy12345_ip_master"},{"location":{"location":"https://github.com/chenxu20/ip.git","repoName":"ip","organization":"chenxu20","domainName":"github"},"branch":"master","displayName":"chenxu20/ip[master]","outputFolderName":"chenxu20_ip_master"},{"location":{"location":"https://github.com/thegrimbee/ip.git","repoName":"ip","organization":"thegrimbee","domainName":"github"},"branch":"master","displayName":"thegrimbee/ip[master]","outputFolderName":"thegrimbee_ip_master"},{"location":{"location":"https://github.com/K1mcheee/ip.git","repoName":"ip","organization":"K1mcheee","domainName":"github"},"branch":"master","displayName":"K1mcheee/ip[master]","outputFolderName":"K1mcheee_ip_master"},{"location":{"location":"https://github.com/SahanaAvantika/ip.git","repoName":"ip","organization":"SahanaAvantika","domainName":"github"},"branch":"master","displayName":"SahanaAvantika/ip[master]","outputFolderName":"SahanaAvantika_ip_master"},{"location":{"location":"https://github.com/pranavyey/ip.git","repoName":"ip","organization":"pranavyey","domainName":"github"},"branch":"master","displayName":"pranavyey/ip[master]","outputFolderName":"pranavyey_ip_master"},{"location":{"location":"https://github.com/isawangyx/ip.git","repoName":"ip","organization":"isawangyx","domainName":"github"},"branch":"master","displayName":"isawangyx/ip[master]","outputFolderName":"isawangyx_ip_master"},{"location":{"location":"https://github.com/Rae2480/ip.git","repoName":"ip","organization":"Rae2480","domainName":"github"},"branch":"master","displayName":"Rae2480/ip[master]","outputFolderName":"Rae2480_ip_master"},{"location":{"location":"https://github.com/mjyan02/ip.git","repoName":"ip","organization":"mjyan02","domainName":"github"},"branch":"master","displayName":"mjyan02/ip[master]","outputFolderName":"mjyan02_ip_master"},{"location":{"location":"https://github.com/Golddirio/ip.git","repoName":"ip","organization":"Golddirio","domainName":"github"},"branch":"master","displayName":"Golddirio/ip[master]","outputFolderName":"Golddirio_ip_master"},{"location":{"location":"https://github.com/yjunyeu/ip.git","repoName":"ip","organization":"yjunyeu","domainName":"github"},"branch":"master","displayName":"yjunyeu/ip[master]","outputFolderName":"yjunyeu_ip_master"},{"location":{"location":"https://github.com/andong0909/ip.git","repoName":"ip","organization":"andong0909","domainName":"github"},"branch":"master","displayName":"andong0909/ip[master]","outputFolderName":"andong0909_ip_master"},{"location":{"location":"https://github.com/senshir/ip.git","repoName":"ip","organization":"senshir","domainName":"github"},"branch":"master","displayName":"senshir/ip[master]","outputFolderName":"senshir_ip_master"},{"location":{"location":"https://github.com/Nova1729/ip.git","repoName":"ip","organization":"Nova1729","domainName":"github"},"branch":"master","displayName":"Nova1729/ip[master]","outputFolderName":"Nova1729_ip_master"},{"location":{"location":"https://github.com/wentingchua/ip.git","repoName":"ip","organization":"wentingchua","domainName":"github"},"branch":"master","displayName":"wentingchua/ip[master]","outputFolderName":"wentingchua_ip_master"},{"location":{"location":"https://github.com/TasmiaH0508/ip.git","repoName":"ip","organization":"TasmiaH0508","domainName":"github"},"branch":"master","displayName":"TasmiaH0508/ip[master]","outputFolderName":"TasmiaH0508_ip_master"},{"location":{"location":"https://github.com/Meatsushi64/ip.git","repoName":"ip","organization":"Meatsushi64","domainName":"github"},"branch":"master","displayName":"Meatsushi64/ip[master]","outputFolderName":"Meatsushi64_ip_master"},{"location":{"location":"https://github.com/jiangsuwangjing/ip.git","repoName":"ip","organization":"jiangsuwangjing","domainName":"github"},"branch":"master","displayName":"jiangsuwangjing/ip[master]","outputFolderName":"jiangsuwangjing_ip_master"},{"location":{"location":"https://github.com/angjozee/ip.git","repoName":"ip","organization":"angjozee","domainName":"github"},"branch":"master","displayName":"angjozee/ip[master]","outputFolderName":"angjozee_ip_master"},{"location":{"location":"https://github.com/YashvanGH/ip.git","repoName":"ip","organization":"YashvanGH","domainName":"github"},"branch":"master","displayName":"YashvanGH/ip[master]","outputFolderName":"YashvanGH_ip_master"},{"location":{"location":"https://github.com/amir-dha/ip.git","repoName":"ip","organization":"amir-dha","domainName":"github"},"branch":"master","displayName":"amir-dha/ip[master]","outputFolderName":"amir-dha_ip_master"},{"location":{"location":"https://github.com/Ditzchann/ip.git","repoName":"ip","organization":"Ditzchann","domainName":"github"},"branch":"master","displayName":"Ditzchann/ip[master]","outputFolderName":"Ditzchann_ip_master"},{"location":{"location":"https://github.com/jodielzy/ip.git","repoName":"ip","organization":"jodielzy","domainName":"github"},"branch":"master","displayName":"jodielzy/ip[master]","outputFolderName":"jodielzy_ip_master"},{"location":{"location":"https://github.com/salads-source/ip.git","repoName":"ip","organization":"salads-source","domainName":"github"},"branch":"master","displayName":"salads-source/ip[master]","outputFolderName":"salads-source_ip_master"},{"location":{"location":"https://github.com/karthu0301/ip.git","repoName":"ip","organization":"karthu0301","domainName":"github"},"branch":"master","displayName":"karthu0301/ip[master]","outputFolderName":"karthu0301_ip_master"},{"location":{"location":"https://github.com/keyansheng/ip.git","repoName":"ip","organization":"keyansheng","domainName":"github"},"branch":"master","displayName":"keyansheng/ip[master]","outputFolderName":"keyansheng_ip_master"},{"location":{"location":"https://github.com/Masunori/ip.git","repoName":"ip","organization":"Masunori","domainName":"github"},"branch":"master","displayName":"Masunori/ip[master]","outputFolderName":"Masunori_ip_master"},{"location":{"location":"https://github.com/DengTianle/ip.git","repoName":"ip","organization":"DengTianle","domainName":"github"},"branch":"master","displayName":"DengTianle/ip[master]","outputFolderName":"DengTianle_ip_master"},{"location":{"location":"https://github.com/crmlatte/ip.git","repoName":"ip","organization":"crmlatte","domainName":"github"},"branch":"master","displayName":"crmlatte/ip[master]","outputFolderName":"crmlatte_ip_master"},{"location":{"location":"https://github.com/Eun777/ip.git","repoName":"ip","organization":"Eun777","domainName":"github"},"branch":"master","displayName":"Eun777/ip[master]","outputFolderName":"Eun777_ip_master"},{"location":{"location":"https://github.com/aekyr/ip.git","repoName":"ip","organization":"aekyr","domainName":"github"},"branch":"master","displayName":"aekyr/ip[master]","outputFolderName":"aekyr_ip_master"},{"location":{"location":"https://github.com/qilstiano/ip.git","repoName":"ip","organization":"qilstiano","domainName":"github"},"branch":"master","displayName":"qilstiano/ip[master]","outputFolderName":"qilstiano_ip_master"},{"location":{"location":"https://github.com/nat-ong555/ip.git","repoName":"ip","organization":"nat-ong555","domainName":"github"},"branch":"master","displayName":"nat-ong555/ip[master]","outputFolderName":"nat-ong555_ip_master"},{"location":{"location":"https://github.com/jamesberyl/ip.git","repoName":"ip","organization":"jamesberyl","domainName":"github"},"branch":"master","displayName":"jamesberyl/ip[master]","outputFolderName":"jamesberyl_ip_master"},{"location":{"location":"https://github.com/xinniyee/ip.git","repoName":"ip","organization":"xinniyee","domainName":"github"},"branch":"master","displayName":"xinniyee/ip[master]","outputFolderName":"xinniyee_ip_master"},{"location":{"location":"https://github.com/popova-mariia/ip.git","repoName":"ip","organization":"popova-mariia","domainName":"github"},"branch":"master","displayName":"popova-mariia/ip[master]","outputFolderName":"popova-mariia_ip_master"},{"location":{"location":"https://github.com/izniy/ip.git","repoName":"ip","organization":"izniy","domainName":"github"},"branch":"master","displayName":"izniy/ip[master]","outputFolderName":"izniy_ip_master"},{"location":{"location":"https://github.com/FooNicholas/ip.git","repoName":"ip","organization":"FooNicholas","domainName":"github"},"branch":"master","displayName":"FooNicholas/ip[master]","outputFolderName":"FooNicholas_ip_master"},{"location":{"location":"https://github.com/SanShaoQian/ip.git","repoName":"ip","organization":"SanShaoQian","domainName":"github"},"branch":"master","displayName":"SanShaoQian/ip[master]","outputFolderName":"SanShaoQian_ip_master"},{"location":{"location":"https://github.com/ambertan77/ip.git","repoName":"ip","organization":"ambertan77","domainName":"github"},"branch":"master","displayName":"ambertan77/ip[master]","outputFolderName":"ambertan77_ip_master"},{"location":{"location":"https://github.com/shelialia/ip.git","repoName":"ip","organization":"shelialia","domainName":"github"},"branch":"master","displayName":"shelialia/ip[master]","outputFolderName":"shelialia_ip_master"},{"location":{"location":"https://github.com/niha81/ip.git","repoName":"ip","organization":"niha81","domainName":"github"},"branch":"master","displayName":"niha81/ip[master]","outputFolderName":"niha81_ip_master"},{"location":{"location":"https://github.com/deannapoh/ip.git","repoName":"ip","organization":"deannapoh","domainName":"github"},"branch":"master","displayName":"deannapoh/ip[master]","outputFolderName":"deannapoh_ip_master"},{"location":{"location":"https://github.com/clarabellelim/ip.git","repoName":"ip","organization":"clarabellelim","domainName":"github"},"branch":"master","displayName":"clarabellelim/ip[master]","outputFolderName":"clarabellelim_ip_master"},{"location":{"location":"https://github.com/Sean-G-Han/ip.git","repoName":"ip","organization":"Sean-G-Han","domainName":"github"},"branch":"master","displayName":"Sean-G-Han/ip[master]","outputFolderName":"Sean-G-Han_ip_master"},{"location":{"location":"https://github.com/PriyadarshiCharvi/ip.git","repoName":"ip","organization":"PriyadarshiCharvi","domainName":"github"},"branch":"master","displayName":"PriyadarshiCharvi/ip[master]","outputFolderName":"PriyadarshiCharvi_ip_master"},{"location":{"location":"https://github.com/VikramGoyal23/ip.git","repoName":"ip","organization":"VikramGoyal23","domainName":"github"},"branch":"master","displayName":"VikramGoyal23/ip[master]","outputFolderName":"VikramGoyal23_ip_master"},{"location":{"location":"https://github.com/arshinsikka/ip.git","repoName":"ip","organization":"arshinsikka","domainName":"github"},"branch":"master","displayName":"arshinsikka/ip[master]","outputFolderName":"arshinsikka_ip_master"},{"location":{"location":"https://github.com/AerollingOverDeepBlueSeas/ip.git","repoName":"ip","organization":"AerollingOverDeepBlueSeas","domainName":"github"},"branch":"master","displayName":"AerollingOverDeepBlueSeas/ip[master]","outputFolderName":"AerollingOverDeepBlueSeas_ip_master"},{"location":{"location":"https://github.com/szelingtan/ip.git","repoName":"ip","organization":"szelingtan","domainName":"github"},"branch":"master","displayName":"szelingtan/ip[master]","outputFolderName":"szelingtan_ip_master"},{"location":{"location":"https://github.com/nanditaselvaraju/ip.git","repoName":"ip","organization":"nanditaselvaraju","domainName":"github"},"branch":"master","displayName":"nanditaselvaraju/ip[master]","outputFolderName":"nanditaselvaraju_ip_master"},{"location":{"location":"https://github.com/namprice227/ip.git","repoName":"ip","organization":"namprice227","domainName":"github"},"branch":"master","displayName":"namprice227/ip[master]","outputFolderName":"namprice227_ip_master"},{"location":{"location":"https://github.com/vrisdng/ip.git","repoName":"ip","organization":"vrisdng","domainName":"github"},"branch":"master","displayName":"vrisdng/ip[master]","outputFolderName":"vrisdng_ip_master"},{"location":{"location":"https://github.com/varsha13152/ip.git","repoName":"ip","organization":"varsha13152","domainName":"github"},"branch":"master","displayName":"varsha13152/ip[master]","outputFolderName":"varsha13152_ip_master"},{"location":{"location":"https://github.com/Liu-Jihan/ip.git","repoName":"ip","organization":"Liu-Jihan","domainName":"github"},"branch":"master","displayName":"Liu-Jihan/ip[master]","outputFolderName":"Liu-Jihan_ip_master"},{"location":{"location":"https://github.com/sunpterodactyl/ip.git","repoName":"ip","organization":"sunpterodactyl","domainName":"github"},"branch":"master","displayName":"sunpterodactyl/ip[master]","outputFolderName":"sunpterodactyl_ip_master"},{"location":{"location":"https://github.com/bhavinaa/ip.git","repoName":"ip","organization":"bhavinaa","domainName":"github"},"branch":"master","displayName":"bhavinaa/ip[master]","outputFolderName":"bhavinaa_ip_master"},{"location":{"location":"https://github.com/ongxinyii/ip.git","repoName":"ip","organization":"ongxinyii","domainName":"github"},"branch":"master","displayName":"ongxinyii/ip[master]","outputFolderName":"ongxinyii_ip_master"},{"location":{"location":"https://github.com/CVincent0907/ip.git","repoName":"ip","organization":"CVincent0907","domainName":"github"},"branch":"master","displayName":"CVincent0907/ip[master]","outputFolderName":"CVincent0907_ip_master"},{"location":{"location":"https://github.com/Nano-233/ip.git","repoName":"ip","organization":"Nano-233","domainName":"github"},"branch":"master","displayName":"Nano-233/ip[master]","outputFolderName":"Nano-233_ip_master"},{"location":{"location":"https://github.com/Billy026/ip.git","repoName":"ip","organization":"Billy026","domainName":"github"},"branch":"master","displayName":"Billy026/ip[master]","outputFolderName":"Billy026_ip_master"},{"location":{"location":"https://github.com/GZTan23/ip.git","repoName":"ip","organization":"GZTan23","domainName":"github"},"branch":"master","displayName":"GZTan23/ip[master]","outputFolderName":"GZTan23_ip_master"},{"location":{"location":"https://github.com/dingZvel/ip.git","repoName":"ip","organization":"dingZvel","domainName":"github"},"branch":"master","displayName":"dingZvel/ip[master]","outputFolderName":"dingZvel_ip_master"},{"location":{"location":"https://github.com/hutongyan/ip.git","repoName":"ip","organization":"hutongyan","domainName":"github"},"branch":"master","displayName":"hutongyan/ip[master]","outputFolderName":"hutongyan_ip_master"},{"location":{"location":"https://github.com/wyongqiing/ip.git","repoName":"ip","organization":"wyongqiing","domainName":"github"},"branch":"master","displayName":"wyongqiing/ip[master]","outputFolderName":"wyongqiing_ip_master"},{"location":{"location":"https://github.com/Neilchen863/ip.git","repoName":"ip","organization":"Neilchen863","domainName":"github"},"branch":"master","displayName":"Neilchen863/ip[master]","outputFolderName":"Neilchen863_ip_master"},{"location":{"location":"https://github.com/gandwarf/ip.git","repoName":"ip","organization":"gandwarf","domainName":"github"},"branch":"master","displayName":"gandwarf/ip[master]","outputFolderName":"gandwarf_ip_master"},{"location":{"location":"https://github.com/lyhthaddeus/ip.git","repoName":"ip","organization":"lyhthaddeus","domainName":"github"},"branch":"master","displayName":"lyhthaddeus/ip[master]","outputFolderName":"lyhthaddeus_ip_master"},{"location":{"location":"https://github.com/jniaorx/ip.git","repoName":"ip","organization":"jniaorx","domainName":"github"},"branch":"master","displayName":"jniaorx/ip[master]","outputFolderName":"jniaorx_ip_master"},{"location":{"location":"https://github.com/YosieSYX/ip.git","repoName":"ip","organization":"YosieSYX","domainName":"github"},"branch":"master","displayName":"YosieSYX/ip[master]","outputFolderName":"YosieSYX_ip_master"},{"location":{"location":"https://github.com/liy722/ip.git","repoName":"ip","organization":"liy722","domainName":"github"},"branch":"master","displayName":"liy722/ip[master]","outputFolderName":"liy722_ip_master"},{"location":{"location":"https://github.com/Casielim/ip.git","repoName":"ip","organization":"Casielim","domainName":"github"},"branch":"master","displayName":"Casielim/ip[master]","outputFolderName":"Casielim_ip_master"},{"location":{"location":"https://github.com/Prog-Neuro-Com/ip.git","repoName":"ip","organization":"Prog-Neuro-Com","domainName":"github"},"branch":"master","displayName":"Prog-Neuro-Com/ip[master]","outputFolderName":"Prog-Neuro-Com_ip_master"},{"location":{"location":"https://github.com/yuqiannemo/ip.git","repoName":"ip","organization":"yuqiannemo","domainName":"github"},"branch":"master","displayName":"yuqiannemo/ip[master]","outputFolderName":"yuqiannemo_ip_master"},{"location":{"location":"https://github.com/caroline1233456/ip.git","repoName":"ip","organization":"caroline1233456","domainName":"github"},"branch":"master","displayName":"caroline1233456/ip[master]","outputFolderName":"caroline1233456_ip_master"},{"location":{"location":"https://github.com/AbiHalim/ip.git","repoName":"ip","organization":"AbiHalim","domainName":"github"},"branch":"master","displayName":"AbiHalim/ip[master]","outputFolderName":"AbiHalim_ip_master"},{"location":{"location":"https://github.com/GauhVish/ip.git","repoName":"ip","organization":"GauhVish","domainName":"github"},"branch":"master","displayName":"GauhVish/ip[master]","outputFolderName":"GauhVish_ip_master"},{"location":{"location":"https://github.com/Reshiro/ip.git","repoName":"ip","organization":"Reshiro","domainName":"github"},"branch":"master","displayName":"Reshiro/ip[master]","outputFolderName":"Reshiro_ip_master"},{"location":{"location":"https://github.com/blacksesamezongzi/ip.git","repoName":"ip","organization":"blacksesamezongzi","domainName":"github"},"branch":"master","displayName":"blacksesamezongzi/ip[master]","outputFolderName":"blacksesamezongzi_ip_master"},{"location":{"location":"https://github.com/hyizhak/ip.git","repoName":"ip","organization":"hyizhak","domainName":"github"},"branch":"master","displayName":"hyizhak/ip[master]","outputFolderName":"hyizhak_ip_master"},{"location":{"location":"https://github.com/hzk-lab/ip.git","repoName":"ip","organization":"hzk-lab","domainName":"github"},"branch":"master","displayName":"hzk-lab/ip[master]","outputFolderName":"hzk-lab_ip_master"},{"location":{"location":"https://github.com/OvOtter/ip.git","repoName":"ip","organization":"OvOtter","domainName":"github"},"branch":"master","displayName":"OvOtter/ip[master]","outputFolderName":"OvOtter_ip_master"},{"location":{"location":"https://github.com/kai824/ip.git","repoName":"ip","organization":"kai824","domainName":"github"},"branch":"master","displayName":"kai824/ip[master]","outputFolderName":"kai824_ip_master"},{"location":{"location":"https://github.com/h-b-k-nishi/ip.git","repoName":"ip","organization":"h-b-k-nishi","domainName":"github"},"branch":"master","displayName":"h-b-k-nishi/ip[master]","outputFolderName":"h-b-k-nishi_ip_master"}],"errorSet":[{"repoName":"jhwan0707/ip[master]","errorMessage":"Failed to clone from https://github.com/jhwan0707/ip.git"},{"repoName":"wilsonsfh/ip[master]","errorMessage":"Failed to clone from https://github.com/wilsonsfh/ip.git"},{"repoName":"rannn367/ip[master]","errorMessage":"Failed to clone from https://github.com/rannn367/ip.git"},{"repoName":"minnibb/ip[master]","errorMessage":"Failed to clone from https://github.com/minnibb/ip.git"},{"repoName":"matthanfoo/ip[master]","errorMessage":"Failed to clone from https://github.com/matthanfoo/ip.git"},{"repoName":"findingfaey/ip[master]","errorMessage":"Failed to clone from https://github.com/findingfaey/ip.git"},{"repoName":"Kiranlimtl/ip[master]","errorMessage":"Failed to clone from https://github.com/Kiranlimtl/ip.git"},{"repoName":"wj200/ip[master]","errorMessage":"Failed to clone from https://github.com/wj200/ip.git"},{"repoName":"kea-S/ip[master]","errorMessage":"Branch \"master\" does not exist."},{"repoName":"CoreySiah/ip[master]","errorMessage":"Failed to clone from https://github.com/CoreySiah/ip.git"},{"repoName":"potatoems/ip[master]","errorMessage":"Failed to clone from https://github.com/potatoems/ip.git"},{"repoName":"WilkinsAng/ip[master]","errorMessage":"Failed to clone from https://github.com/WilkinsAng/ip.git"},{"repoName":"Xzh119/ip[master]","errorMessage":"Failed to clone from https://github.com/Xzh119/ip.git"},{"repoName":"feconi1024/ip[master]","errorMessage":"Failed to clone from https://github.com/feconi1024/ip.git"},{"repoName":"simenggg/ip[master]","errorMessage":"Failed to clone from https://github.com/simenggg/ip.git"},{"repoName":"Melvan-Chan/ip[master]","errorMessage":"Failed to clone from https://github.com/Melvan-Chan/ip.git"},{"repoName":"jeronkk/ip[master]","errorMessage":"Failed to clone from https://github.com/jeronkk/ip.git"},{"repoName":"Gu0Fengming/ip[master]","errorMessage":"Failed to clone from https://github.com/Gu0Fengming/ip.git"},{"repoName":"advaypakhale/ip[master]","errorMessage":"Failed to clone from https://github.com/advaypakhale/ip.git"},{"repoName":"NaelAnoob/ip[master]","errorMessage":"Failed to clone from https://github.com/NaelAnoob/ip.git"},{"repoName":"wailydest/ip[master]","errorMessage":"Failed to clone from https://github.com/wailydest/ip.git"},{"repoName":"TrKNguyen/ip[master]","errorMessage":"Failed to clone from https://github.com/TrKNguyen/ip.git"},{"repoName":"davidfoo07/ip[master]","errorMessage":"Failed to clone from https://github.com/davidfoo07/ip.git"},{"repoName":"Terentwc/ip[master]","errorMessage":"Failed to clone from https://github.com/Terentwc/ip.git"},{"repoName":"geeliette/ip[master]","errorMessage":"Failed to clone from https://github.com/geeliette/ip.git"},{"repoName":"meloppeitreet/ip[master]","errorMessage":"Failed to clone from https://github.com/meloppeitreet/ip.git"},{"repoName":"heyitssakinah/ip[master]","errorMessage":"Failed to clone from https://github.com/heyitssakinah/ip.git"},{"repoName":"malihahaque/ip[master]","errorMessage":"Failed to clone from https://github.com/malihahaque/ip.git"},{"repoName":"ioubread/ip[master]","errorMessage":"Failed to clone from https://github.com/ioubread/ip.git"},{"repoName":"arnavbajpai/ip[master]","errorMessage":"Failed to clone from https://github.com/arnavbajpai/ip.git"},{"repoName":"elizazaa/ip[master]","errorMessage":"Failed to clone from https://github.com/elizazaa/ip.git"},{"repoName":"nlqhung130403/ip[master]","errorMessage":"Failed to clone from https://github.com/nlqhung130403/ip.git"},{"repoName":"mistyk786/ip[master]","errorMessage":"Failed to clone from https://github.com/mistyk786/ip.git"}],"sinceDate":"2025-01-10","untilDate":"2025-01-25","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"}},"isAuthorshipAnalyzed":false,"blurbs":{"urlBlurbMap":{}}}