Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for resume (0.19 sec)

  1. maven-core/src/test/resources/org/apache/maven/execution/resume.properties

    Guillaume Nodet <******@****.***> 1612863438 +0100
    Properties
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Feb 13 10:32:34 GMT 2021
    - 35 bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

        /**
         * Indicates whether or not the build could be resumed by a second invocation of Maven.
         * @see BuildResumptionDataRepository
         * @return <code>true</code> when it is possible to resume the build, <code>false</code> otherwise.
         */
        boolean canResume();
    
        /**
         * Indicate that the build can or cannot be resumed by a second invocation of Maven.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionAnalyzer.java

    /**
     * Instances of this class are responsible for determining whether it makes sense to "resume" a build (i.e., using
     * the {@code --resume} flag.
     */
    public interface BuildResumptionAnalyzer {
        /**
         * Construct an instance of {@link BuildResumptionData} based on the outcome of the current Maven build.
         * @param result Outcome of the current Maven build.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.List;
    
    /**
     * This class holds the information required to enable resuming a Maven build with {@code --resume}.
     */
    public class BuildResumptionData {
        /**
         * The list of projects that remain to be built.
         */
        private final List<String> remainingProjects;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

     */
    @Named
    @Singleton
    public class DefaultBuildResumptionDataRepository implements BuildResumptionDataRepository {
        private static final String RESUME_PROPERTIES_FILENAME = "resume.properties";
        private static final String REMAINING_PROJECTS = "remainingProjects";
        private static final String PROPERTY_DELIMITER = ", ";
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

    /**
     * Instances of this interface retrieve and store data for the --resume / -r feature. This data is used to ensure newer
     * builds of the same project, that have the -r command-line flag, skip successfully built projects during earlier
     * 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
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    g, Throwable); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Suspendable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Suspendable { public abstract void suspend(); public abstract void resume(); } org/codehaus/plexus/PlexusContainer$1.class package org.codehaus.plexus; synchronized class PlexusContainer$1 { } org/codehaus/plexus/PlexusContainer.class package org.codehaus.plexus; public abstract interface PlexusContainer { public static...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            this.projectSelector = new ProjectSelector(); // if necessary switch to DI
        }
    
        @Override
        public Result<ProjectDependencyGraph> build(MavenSession session) {
            try {
                Result<ProjectDependencyGraph> result = sessionDependencyGraph(session);
    
                if (result == null) {
                    final List<MavenProject> projects = getProjectsForMavenReactor(session);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

            Result<ProjectDependencyGraph> result = graphBuilder.build(session);
    
            assertThat(result.hasErrors())
                    .withFailMessage("Expected result not to have errors")
                    .isFalse();
            List<MavenProject> actualReactorProjects = result.get().getSortedProjects();
            assertEquals(2, actualReactorProjects.size());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 27.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    org.codehaus.plexus.classworlds.realm.ClassRealm) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void suspend(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void resume(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; protected void endComponentLifecycl(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public org.codehaus.plexus.MutablePlexusContain...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
Back to top