Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for wallTime (0.03 sec)

  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;
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. 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, Duration execTime, Duration wallTime, Throwable cause) {
            super(project, execTime, wallTime);
            this.cause = cause;
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. 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);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top