Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 143 for boiler (0.07 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java

        @Nonnull
        static ToolchainsBuilderRequest build(
                @Nonnull Session session, @Nullable Source globalToolchainsSource, @Nullable Source userToolchainsSource) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .globalToolchainsSource(globalToolchainsSource)
                    .userToolchainsSource(userToolchainsSource)
                    .build();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementInjector.java

                    Dependency.Builder builder,
                    Dependency target,
                    Dependency source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
                // optional flag is not managed
            }
    
            @Override
            protected void mergeDependency_Exclusions(
                    Dependency.Builder builder,
                    Dependency target,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * is meant for exclusive consumption by the model builder and is opaque to the cache implementation. The cache key is
     * formed by a combination of group id, artifact id, version and tag. The first three components generally refer to the
     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .source(nonNull(source, "source cannot be null"))
                    .build();
        }
    
        @Nonnull
        static ProjectBuilderRequest build(@Nonnull Session session, @Nonnull Path path) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

        /**
         * Updates the context class loader such that the container will search the project realm when the model builder
         * injects the lifecycle bindings from the packaging in the next step. The context class loader is to be reset by
         * the project builder when the project is fully assembled.
         *
         * @param project The project whose class realm should be selected, must not be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsBuilderFactoryTest.java

        void testCompleteWiring() {
            SettingsBuilder builder = new DefaultSettingsBuilder();
            assertNotNull(builder);
    
            SettingsBuilderRequest request = SettingsBuilderRequest.builder()
                    .session(session)
                    .userSettingsSource(Source.fromPath(getSettings("settings-simple")))
                    .build();
    
            SettingsBuilderResult result = builder.build(request);
            assertNotNull(result);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultModelBuildingListener.java

    import org.apache.maven.plugin.PluginManagerException;
    import org.apache.maven.plugin.PluginResolutionException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    
    /**
     * Processes events from the model builder while building the effective model for a {@link MavenProject} instance.
     *
     */
    public class DefaultModelBuildingListener implements ModelBuildingListener {
    
        private final MavenProject project;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java

                @Nonnull Session session,
                @Nullable Source globalSettingsSource,
                @Nullable Source projectSettingsSource,
                @Nullable Source userSettingsSource) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .globalSettingsSource(globalSettingsSource)
                    .projectSettingsSource(projectSettingsSource)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

        }
    
        private static final ExtensionDescriptorBuilder BUILDER = new ExtensionDescriptorBuilder();
    
        public static CoreExtensionEntry discoverFrom(ClassRealm loader) {
            Set<String> artifacts = new LinkedHashSet<>();
            Set<String> packages = new LinkedHashSet<>();
    
            try {
                Enumeration<URL> urls = loader.getResources(BUILDER.getExtensionDescriptorLocation());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 07:14:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

    import org.apache.maven.lifecycle.internal.TaskSegment;
    import org.apache.maven.lifecycle.internal.builder.Builder;
    import org.apache.maven.project.MavenProject;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Builds the full lifecycle in weave-mode (phase by phase as opposed to project-by-project).
     * <p>
     * This builder uses a number of threads equal to the minimum of the degree of concurrency (which is the thread count
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top