Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 162 for Dadd (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java

            if (scopes != null) {
                for (String scope : scopes) {
                    addScope(scope);
                }
            }
        }
    
        private void addScope(String scope) {
            this.scopes.add(scope);
    
            addScopeInternal(scope);
        }
    
        public Set<String> getScopes() {
            return scopes;
        }
    
        @Override
        public int hashCode() {
            int hash = 17;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java

            List<MavenProject> filtered = new ArrayList<>(projects.size());
    
            for (MavenProject project : projects) {
                if (whiteList.containsKey(project)) {
                    filtered.add(project);
                }
            }
    
            return filtered;
        }
    
        @Override
        public String toString() {
            return getSortedProjects().toString();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

            List<MojoExecution> mojoExecutions = phaseBindings.computeIfAbsent(priority, k -> new ArrayList<>());
    
            mojoExecutions.add(mojoExecution);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

                        selected = type;
                    } else if (unknown) {
                        // More than one filtered value, and we don't know how to handle at least one of them.
                        // TODO: add a plugin mechanism for allowing plugin to specify their selection algorithm.
                        return Optional.empty();
                    }
                }
            }
            if (classes & modules) {
    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)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

         */
        protected ArtifactTypeRegistry getArtifactTypeRegistry() {
            DefaultArtifactTypeRegistry stereotypes = new DefaultArtifactTypeRegistry();
            new DefaultTypeProvider().types().forEach(stereotypes::add);
            return stereotypes;
        }
    
        protected ArtifactDescriptorPolicy getArtifactDescriptorPolicy() {
            return new SimpleArtifactDescriptorPolicy(true, true);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

                    if (repository.isRepositoryManager()) {
                        this.repositories.addAll(repository.getMirroredRepositories());
                    } else {
                        this.repositories.add(repository);
                    }
                }
                this.parentRealm = parentRealm;
                this.foreignImports = (foreignImports != null) ? foreignImports : Collections.emptyMap();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

                this.profiles = new ArrayList<>(profiles);
            } else {
                this.profiles.clear();
            }
        }
    
        public void addProfile(Profile profile) {
            profiles.add(profile);
        }
    
        public List<Profile> getProfiles() {
            return profiles;
        }
    
        public Date getBuildStartTime() {
            return buildStartTime;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

                    if (!groupedToolchains.containsKey(model.getType())) {
                        groupedToolchains.put(model.getType(), new ArrayList<>());
                    }
    
                    groupedToolchains.get(model.getType()).add(model);
                }
    
                request.setToolchains(groupedToolchains);
            }
            return request;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

            List<String> msgs = new ArrayList<>();
            msgs.add("*****************************************************************");
            msgs.add("* Your build is requesting parallel execution, but project      *");
            msgs.add("* contains the following plugin(s) that have goals not marked   *");
            msgs.add("* as @threadSafe to support parallel building.                  *");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

            ArrayList<org.eclipse.aether.scope.DependencyScope> result = new ArrayList<>();
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.COMPILE.id(), DependencyScope.COMPILE.isTransitive(), all()));
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.RUNTIME.id(),
                    DependencyScope.RUNTIME.isTransitive(),
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
Back to top