Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for initial (0.17 sec)

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

         * @return a new message builder
         */
        @Nonnull
        MessageBuilder builder();
    
        /**
         * Creates a new message builder of the specified size.
         * @param size the initial size of the message builder buffer
         * @return a new message builder
         */
        @Nonnull
        MessageBuilder builder(int size);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

    2. License Grants.
    
        2.1. The Initial Developer Grant.
    
        Conditioned upon Your compliance with Section 3.1 below and subject
        to third party intellectual property claims, the Initial Developer
        hereby grants You a world-wide, royalty-free, non-exclusive license:
    
        (a) under intellectual property rights (other than patent or
        trademark) Licensable by Initial Developer, to use, reproduce,
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                        // add missing '/' between url and path
                        url.append('/');
                    }
    
                    url.append(path);
    
                    // ensure resulting url ends with slash if initial url was
                    if (initialUrlEndsWithSlash && !path.endsWith("/")) {
                        url.append('/');
                    }
                }
            }
    
            @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
    CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
    
       1. DEFINITIONS
    
       "Contribution" means:
    
    a) in the case of the initial Contributor, the initial code and documentation
    distributed under this Agreement, and
    
          b) in the case of each subsequent Contributor:
    
             i) changes to the Program, and
    
             ii) additions to the Program;
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS "Contribution" means: a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor: i) changes to the Program, and ii) additions to the Program; where such changes and/or additions to the Program originate from...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

                for (RemoteRepository repository : request.getRepositories()) {
                    requests.add(new MetadataRequest(metadata, repository, REPOSITORY_CONTEXT).setTrace(trace));
                }
            }
    
            // initial try, use locally cached metadata
    
            List<MetadataResult> results = repositorySystem.resolveMetadata(request.getRepositorySession(), requests);
            requests.clear();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                        List<Object> feedback = interpolator.getFeedback();
                        if (feedback != null && !feedback.isEmpty()) {
                            logger.debug("Maven encountered the following problems during initial POM interpolation:");
    
                            Object last = null;
                            for (Object next : feedback) {
                                if (next instanceof Throwable) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 13.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        /**
         * Information about modules in the main output. This field is initially null and is set to a non-null
         * value when the output directories have been set, or when it is too late for setting them.
         */
        private PathModularization outputModules;
    
        /**
         * Creates an initially empty result. Callers should add path elements by calls
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                }
            } finally {
                legacySupport.setSession(null);
            }
    
            return result;
        }
    
        //
        // 1) Setup initial properties.
        //
        // 2) Validate local repository directory is accessible.
        //
        // 3) Create RepositorySystemSession.
        //
        // 4) Create MavenSession.
        //
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelResolver.java

    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * A model resolver to assist building of dependency POMs. This resolver gives priority to those repositories that have
     * been initially specified and repositories discovered in dependency POMs are recessively merged into the search chain.
     *
     * @see DefaultArtifactDescriptorReader
     */
    public class DefaultModelResolver implements ModelResolver {
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 11K bytes
    - Viewed (0)
Back to top