Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for put (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java

            for (int index = 0; index < sorted.size(); index++) {
                MavenProject project = sorted.get(index);
                String id = ProjectSorter.getId(project);
                this.projects.put(id, project);
                this.order.put(project, index);
            }
        }
    
        /**
         * @since 3.5.0
         */
        public List<MavenProject> getAllProjects() {
            return this.allProjects;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

            Map<String, ExecutionPlanItem> lastInExistingPhases = new HashMap<>();
            for (ExecutionPlanItem executionPlanItem : getExecutionPlanItems()) {
                lastInExistingPhases.put(executionPlanItem.getLifecyclePhase(), executionPlanItem);
            }
    
            ExecutionPlanItem lastSeenExecutionPlanItem = null;
    
            for (String phase : totalPhaseSet) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

                for (String phase : lifecycle.getPhases()) {
                    // The first definition wins.
                    if (!phaseToLifecycleMap.containsKey(phase)) {
                        phaseToLifecycleMap.put(phase, lifecycle);
                    } else if (logger.isWarnEnabled()) {
                        Lifecycle original = phaseToLifecycleMap.get(phase);
                        logger.warn(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

            Map<String, Artifact> artifactMap = new LinkedHashMap<>();
    
            if (artifacts != null) {
                for (Artifact artifact : artifacts) {
                    artifactMap.put(versionlessKey(artifact), artifact);
                }
            }
    
            return artifactMap;
        }
    
        public static Artifact copyArtifactSafe(Artifact artifact) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                        if (existing != null) {
                            existing = mergePlugin(existing, element, sourceDominant, context);
                            master.put(key, existing);
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
                                pending = new ArrayList<>();
                            }
                        } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            final Lock acquiredAggregatorLock;
            final OwnerReentrantLock acquiredProjectLock;
    
            ProjectLock(MavenSession session, MojoDescriptor mojoDescriptor) {
                mojos.put(Thread.currentThread(), mojoDescriptor);
                if (session.getRequest().getDegreeOfConcurrency() > 1) {
                    boolean aggregator = mojoDescriptor.isAggregator();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilderResult.java

            this.problems.addAll(result.getProblems());
    
            for (String modelId : result.getModelIds()) {
                this.modelIds.add(modelId);
                this.rawModels.put(modelId, result.getRawModel(modelId).orElseThrow());
                this.activePomProfiles.put(modelId, result.getActivePomProfiles(modelId));
            }
        }
    
        @Override
        public Model getFileModel() {
            return fileModel;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                    Model model = findRawModel(from, gId, aId);
                    if (model != null) {
                        context.modelByGA.put(new GAKey(gId, aId), new Holder(model));
                        context.modelByPath.put(model.getPomFile(), new Holder(model));
                    }
                    return model;
                }
    
                @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

            Map<String, String> properties = new HashMap<>();
            properties.put(ArtifactProperties.TYPE, id);
            properties.put(ArtifactProperties.LANGUAGE, language.id());
            properties.put(MavenArtifactProperties.INCLUDES_DEPENDENCIES, Boolean.toString(includesDependencies));
            properties.put(
                    MavenArtifactProperties.CONSTITUTES_BUILD_PATH,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

         */
        public void activateRequiredProfile(String id) {
            this.activations.put(id, ActivationSettings.ACTIVATION_REQUIRED);
        }
    
        /**
         * Mark a profile as optional and activated.
         * @param id The identifier of the profile.
         */
        public void activateOptionalProfile(String id) {
            this.activations.put(id, ActivationSettings.ACTIVATION_OPTIONAL);
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.6K bytes
    - Viewed (0)
Back to top