Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Time (0.41 sec)

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

        List<Profile> getProfiles();
    
        /**
         * Gets the start time of the build.
         *
         * @return The start time of the build or {@code null} if unknown.
         */
        Date getBuildStartTime();
    
        /**
         * Sets the start time of the build.
         *
         * @param buildStartTime The start time of the build, may be {@code null}.
         */
        void setBuildStartTime(Date buildStartTime);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

         *
         * @param project The project being summarized, must not be {@code null}.
         * @param time The build time of the project in milliseconds.
         */
        public BuildSuccess(MavenProject project, long time) {
            super(project, time);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Dependency scope.
     * This represents at which time the dependency will be used, for example, at compile time only,
     * at run time or at test time.  For a given dependency, the scope is directly derived from the
     * {@link org.apache.maven.api.model.Dependency#getScope()} and will be used when using {@link PathScope}
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java

        }
    
        public void registerBuildFailure(MavenProject project, Exception error, String task, long time) {
            buildFailuresByProject.put(getProjectKey(project), new BuildFailure(project, time, error));
        }
    
        public boolean hasBuildFailures() {
            return !buildFailuresByProject.isEmpty();
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  5. Jenkinsfile.its

     */
    
    pipeline {
      agent { node { label 'ubuntu' } }
      options {
        durabilityHint('PERFORMANCE_OPTIMIZED')
        buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '5'))
        timeout(time: 180, unit: 'MINUTES')
      }
      parameters {
        string( defaultValue: 'master', description: 'Core Its branch (default master)',
                name: 'ITS_BRANCH' )
      }
      stages {
        stage("Build Maven Core") {
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Dec 26 16:42:35 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         */
        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    
        /**
         * Module information for the path specified at construction time.
         * This map is usually either empty if no module was found, or a singleton map.
         * It may however contain more than one entry if module hierarchy was detected,
         * in which case there is one key per sub-directory.
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    in order to avoid inconsistency the Agreement is copyrighted and may only
    be modified in the following manner. The Agreement Steward reserves the right
    to publish new versions (including revisions) of this Agreement from time
    to time. No one other than the Agreement Steward has the right to modify this
    Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse
    Foundation may assign the responsibility to serve as the Agreement Steward
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

    @Singleton
    @Deprecated
    public class SnapshotTransformation extends AbstractVersionTransformation {
        private static final String DEFAULT_SNAPSHOT_TIMESTAMP_FORMAT = "yyyyMMdd.HHmmss";
    
        private static final TimeZone DEFAULT_SNAPSHOT_TIME_ZONE = TimeZone.getTimeZone("Etc/UTC");
    
        private String deploymentTimestamp;
    
        public void transformForResolve(Artifact artifact, RepositoryRequest request) throws ArtifactResolutionException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    + If you're planning to implement a new feature, it makes sense to discuss your changes
      on the [dev list](https://maven.apache.org/mailing-lists.html) first.
      This way you can make sure you're not wasting your time on something that isn't
      considered to be in Apache Maven's scope.
    + Submit a ticket for your issue, assuming one does not already exist.
      + Clearly describe the issue, including steps to reproduce when it is a bug.
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

     * invocations of Maven.
     */
    public interface BuildResumptionDataRepository {
        /**
         * Persists any data needed to resume the build at a later point in time, using a new Maven invocation. This method
         * may also decide it is not needed or meaningful to persist such data, and return <code>false</code> to indicate
         * so.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
Back to top