Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for wallTime (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java

         * @param wallTime The wall time of the project in milliseconds.
         */
        protected BuildSummary(MavenProject project, Duration execTime, Duration wallTime) {
            this.project = Objects.requireNonNull(project, "project cannot be null");
            // TODO Validate for < 0?
            this.execTime = execTime;
            this.wallTime = wallTime;
        }
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Dec 12 11:02:17 GMT 2024
    - 3K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

         *
         * @param project The project being summarized, must not be {@code null}.
         * @param wallTime The wall time of the project in milliseconds.
         * @param execTime The exec time of the project in milliseconds.
         */
        public BuildSuccess(MavenProject project, Duration wallTime, Duration execTime) {
            super(project, wallTime, execTime);
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Dec 12 11:02:17 GMT 2024
    - 2.1K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                            reactorContext
                                    .getResult()
                                    .addBuildSummary(new BuildSuccess(step.project, clock.wallTime(), clock.execTime()));
                            eventCatapult.fire(ExecutionEvent.Type.ProjectSucceeded, session, null);
                        } else {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
Back to Top