Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for puts (0.13 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

                if (request.getArtifactDependencies() != null) {
                    for (Artifact artifact : request.getArtifactDependencies()) {
                        artifacts.put(artifact.getDependencyConflictId(), artifact);
                    }
                }
    
                List<Dependency> dependencies = new ArrayList<>();
                if (request.getArtifact() instanceof ArtifactWithDependencies) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

            projects = segmentChunks.iterator();
            for (ProjectSegment segmentChunk : segmentChunks) {
                final ByteArrayOutputStream value = new ByteArrayOutputStream();
                streams.put(segmentChunk, value);
                printStreams.put(segmentChunk, new PrintStream(value));
            }
            setNext();
            this.originalSystemOUtStream = originalSystemOut;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/ValidatingConfigurationListener.java

            if (mojoDescriptor.getParameters() != null) {
                for (Parameter param : mojoDescriptor.getParameters()) {
                    if (param.isRequired()) {
                        missingParameters.put(param.getName(), param);
                    }
                }
            }
        }
    
        public Collection<Parameter> getMissingParameters() {
            return missingParameters.values();
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecyclePhase.java

                return Collections.emptyMap();
            }
    
            Map<String, String> phases = new LinkedHashMap<>();
            for (Map.Entry<String, LifecyclePhase> e : lifecyclePhases.entrySet()) {
                phases.put(e.getKey(), e.getValue().toString());
            }
            return phases;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecyclePluginResolver.java

                            plugin, session.getRepositorySession(), project.getRemotePluginRepositories());
                    plugin.setVersion(pluginVersionResolver.resolve(request).getVersion());
                }
                versions.put(plugin.getKey(), plugin.getVersion());
            }
    
            PluginManagement pluginManagement = project.getPluginManagement();
            if (pluginManagement != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java

            this.whiteList = new IdentityHashMap<>();
    
            for (MavenProject project : whiteList) {
                this.whiteList.put(project, null);
            }
        }
    
        /**
         * @since 3.5.0
         */
        public List<MavenProject> getAllProjects() {
            return this.projectDependencyGraph.getAllProjects();
        }
    
    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)
  7. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

        private ArtifactStatus(String key, int rank) {
            this.rank = rank;
            this.key = key;
    
            if (map == null) {
                map = new HashMap<>();
            }
            map.put(key, this);
        }
    
        public static ArtifactStatus valueOf(String status) {
            ArtifactStatus retVal = null;
    
            if (status != null) {
                retVal = map.get(status);
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

                DependencyManagement depMgmt = target.getDependencyManagement();
    
                if (depMgmt != null) {
                    for (Dependency dependency : depMgmt.getDependencies()) {
                        dependencies.put(dependency.getManagementKey(), dependency);
                    }
                } else {
                    depMgmt = DependencyManagement.newInstance();
                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .packaging("pom")
                    .build();
            Map<String, String> props = new HashMap<>();
            int count = entropy.nextInt(10);
            for (int i = 0; i < count; i++) {
                props.put("name" + Long.toHexString(entropy.nextLong()), "value" + Long.toHexString(entropy.nextLong()));
            }
            count = entropy.nextInt(3);
            List<Repository> repos = new ArrayList<>();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                    restrictions.add(Restriction.EVERYTHING);
                }
            }
    
            cached = new VersionRange(version, restrictions);
            CACHE_SPEC.put(spec, cached);
            return cached;
        }
    
        private static Restriction parseRestriction(String spec) throws InvalidVersionSpecificationException {
            boolean lowerBoundInclusive = spec.startsWith("[");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
Back to top