Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getBuildStartInstant (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        public void setBuildStartTime(Date buildStartTime) {
            setBuildStartInstant(buildStartTime != null ? Instant.ofEpochMilli(buildStartTime.getTime()) : null);
        }
    
        @Override
        public Instant getBuildStartInstant() {
            return this.buildStartTime;
        }
    
        @Override
        public void setBuildStartInstant(Instant buildStartTime) {
            this.buildStartTime = buildStartTime;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

        void setBuildStartTime(Date buildStartTime);
    
        /**
         * Gets the start time of the build.
         *
         * @return The start time of the build or {@code null} if unknown.
         */
        Instant getBuildStartInstant();
    
        /**
         * Sets the start time of the build.
         *
         * @param buildStartInstant The start time of the build, may be {@code null}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top