Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for initially (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * but cheaper to compute when the module names are not needed.
         *
         * @see #getPathType(Path)
         */
        private final Map<Path, PathType> pathTypes;
    
        /**
         * Creates an initially empty cache.
         */
        PathModularizationCache() {
            moduleInfo = new HashMap<>();
            pathTypes = new HashMap<>();
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * but cheaper to compute when the module names are not needed.
         *
         * @see #getPathType(Path)
         */
        private final Map<Path, PathType> pathTypes;
    
        /**
         * Creates an initially empty cache.
         */
        PathModularizationCache() {
            moduleInfo = new HashMap<>();
            pathTypes = new HashMap<>();
        }
    
        /**
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

        }
    
        public int getNumberOfBuilds() {
            return projectBuilds.size();
        }
    
        /**
         * Gets all the builds that have no reactor-dependencies
         *
         * @return A set of all the initial builds
         */
        public List<MavenProject> getRootSchedulableBuilds() {
            Set<MavenProject> result = new LinkedHashSet<>();
            for (ProjectSegment projectBuild : projectBuilds) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top