- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for execTime (0.14 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java
* @param execTime The exec time of the project in milliseconds. * @param wallTime The wall time of the project in milliseconds. */ protected BuildSummary(MavenProject project, long execTime, long wallTime) { this.project = Objects.requireNonNull(project, "project cannot be null"); // TODO Validate for < 0? this.execTime = execTime; this.wallTime = wallTime; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java
* @param wallTime The wall time of the project in milliseconds. * @param execTime The exec time of the project in milliseconds. */ public BuildSuccess(MavenProject project, long wallTime, long execTime) { super(project, wallTime, execTime); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
* @param execTime The exec time of the project in milliseconds. * @param wallTime The wall time of the project in milliseconds. * @param cause The cause of the build failure, may be {@code null}. */ public BuildFailure(MavenProject project, long execTime, long wallTime, Throwable cause) { super(project, execTime, wallTime); this.cause = cause; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0)