Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Future (0.17 sec)

  1. maven-core/src/test/resources/projects/future-model-version-pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
        <modelVersion>4.9.1</modelVersion>
        <groupId>tests.project</groupId>
        <artifactId>future-model-version</artifactId>
        <version>1</version>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Sep 11 16:17:26 GMT 2023
    - 939 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/future-schema-model-version-pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
        <modelVersion>4.999.999</modelVersion>
        <!-- this should be a fake "future" version that only has modelVersion understood by us -->
        <coordinates>tests.project:future-model-version</coordinates>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Jun 03 20:33:44 GMT 2019
    - 993 bytes
    - Viewed (0)
  3. maven-core/src/site/apt/inheritance.apt

    +-----+
    <project>
     <modelVersion>4.0.0</modelVersion>
     <parent>
       <groupId></groupId>
       <artifactId></artifactId>
       <version></version>
     </parent>
    </project>
    +-----+
    
    Extending the POM in the future
    
      In order to anticipate changes in the structure of the POM as new releases of
      maven occur, the maven inheritance model must be pinned against a particular
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/shared/run.cmd

    if exist "%USERPROFILE%\mavenrc_post.bat" echo Warning: The mavenrc_post.bat script is deprecated and will be removed in a future version. >&2
    if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
    if exist "%USERPROFILE%\mavenrc_post.cmd" echo Warning: The mavenrc_post.cmd script is deprecated and will be removed in a future version. >&2
    if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
    :skipRcPost
    
    Batch File
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Mar 05 22:52:54 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/CompletionServiceStub.java

                projectBuildFutureTask.run();
            }
            return projectBuildFutureTask;
        }
    
        public Future<ProjectSegment> take() throws InterruptedException {
            return null;
        }
    
        public Future<ProjectSegment> poll() {
            return null;
        }
    
        public Future<ProjectSegment> poll(long timeout, TimeUnit unit) throws InterruptedException {
            return null;
        }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java

                LOGGER.warn("It is highly recommended to fix these problems"
                        + " because they threaten the stability of your build.");
                LOGGER.warn("");
                LOGGER.warn("For this reason, future Maven versions might no"
                        + " longer support building such malformed projects.");
                LOGGER.warn("");
            }
    
            return projects;
        }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                        }
                        return true;
                    }
                });
                ForkJoinPool pool = new ForkJoinPool(MAX_CAP);
                try {
                    pool.execute(future);
                    result = future.get();
                } finally {
                    pool.shutdownNow();
                }
            } catch (Exception e) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

                        // don't stop processing in case a future segment explicitly excludes this repo
                    }
                    // check for external:http:*
                    else if (EXTERNAL_HTTP_WILDCARD.equals(repo) && isExternalHttpRepo(originalRepository)) {
                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionEvent.java

    /**
     * <p>
     * Encapsulates parameters of ProjectExecutionListener callback methods and is meant to provide API evolution path
     * should it become necessary to introduce new parameters in the existing callbacks in the future.
     * </p>
     * <strong>Note:</strong> This class is part of work in progress and can be changed or removed without notice.
     *
     * @see ProjectExecutionListener
     * @since 3.1.2
     */
    public class ProjectExecutionEvent {
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        .collect(Collectors.toList());
                try {
                    List<Future<InterimResult>> futures = executor.invokeAll(tasks);
                    List<InterimResult> list = new ArrayList<>();
                    for (Future<InterimResult> future : futures) {
                        InterimResult interimResult = future.get();
                        list.add(interimResult);
                    }
                    return list;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 55.4K bytes
    - Viewed (0)
Back to top