Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for emptyMap (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/ReactorReader.java

        }
    
        public List<String> findVersions(Artifact artifact) {
            List<String> versions = getProjects()
                    .getOrDefault(artifact.getGroupId(), Collections.emptyMap())
                    .getOrDefault(artifact.getArtifactId(), Collections.emptyMap())
                    .values()
                    .stream()
                    .map(MavenProject::getVersion)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        /**
         * Constructs an empty instance for non-modular dependencies.
         *
         * @see #NONE
         */
        private PathModularization() {
            descriptors = Collections.emptyMap();
            isModuleHierarchy = false;
        }
    
        /**
         * Finds module information in the given JAR file, output directory, or test output directory.
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecyclePhase.java

            if (lifecyclePhases == null) {
                return null;
            }
    
            if (lifecyclePhases.isEmpty()) {
                return Collections.emptyMap();
            }
    
            Map<String, String> phases = new LinkedHashMap<>();
            for (Map.Entry<String, LifecyclePhase> e : lifecyclePhases.entrySet()) {
                phases.put(e.getKey(), e.getValue().toString());
    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)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

         */
        protected static class DuplicateMerger extends MavenModelMerger {
    
            public Plugin mergePlugin(Plugin target, Plugin source) {
                return super.mergePlugin(target, source, false, Collections.emptyMap());
            }
        }
    
        @Override
        public Model injectDefaultValues(Model model, ModelBuilderRequest request, ModelProblemCollector problems) {
            Model.Builder builder = Model.newBuilder(model);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java

            Map<String, LifecyclePhase> lphases = getLifecyclePhases();
            if (lphases == null) {
                return null;
            }
    
            if (lphases.isEmpty()) {
                return Collections.emptyMap();
            }
    
            Map<String, String> phases = new LinkedHashMap<>();
            for (Map.Entry<String, LifecyclePhase> e : lphases.entrySet()) {
                phases.put(e.getKey(), e.getValue().toString());
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

            this.columnNumber = columnNumber;
            this.source = source;
            this.locations =
                    selfLocationKey != null ? Collections.singletonMap(selfLocationKey, this) : Collections.emptyMap();
        }
    
        public InputLocation(int lineNumber, int columnNumber, InputSource source, Map<Object, InputLocation> locations) {
            this.lineNumber = lineNumber;
            this.columnNumber = columnNumber;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Sep 05 16:06:44 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                mergeModelBase(builder, target, source, true, Collections.emptyMap());
            }
    
            public void mergeBuildBase(BuildBase.Builder builder, BuildBase target, BuildBase source) {
                mergeBuildBase(builder, target, source, true, Collections.emptyMap());
            }
    
            @Override
            protected void mergePluginContainer_Plugins(
    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)
  8. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

                        this.repositories.add(repository);
                    }
                }
                this.parentRealm = parentRealm;
                this.foreignImports = (foreignImports != null) ? foreignImports : Collections.emptyMap();
                this.filter = dependencyFilter;
    
                int hash = 17;
                hash = hash * 31 + CacheUtils.pluginHashCode(plugin);
                hash = hash * 31 + Objects.hashCode(workspace);
    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)
  9. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

                    settingsDecrypter,
                    eventSpyDispatcher,
                    information,
                    defaultTypeRegistry,
                    versionScheme,
                    Collections.emptyMap(),
                    Collections.emptyMap());
    
            MavenExecutionRequest request = new DefaultMavenExecutionRequest();
            request.setLocalRepository(getLocalRepository());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                throws ArtifactResolutionException, ArtifactNotFoundException {
            return resolveTransitively(
                    artifacts,
                    originatingArtifact,
                    Collections.emptyMap(),
                    localRepository,
                    remoteRepositories,
                    source,
                    filter);
        }
    
        public ArtifactResolutionResult resolveTransitively(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 24.8K bytes
    - Viewed (0)
Back to top