Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for value2 (0.25 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

         *            <code>null</code>.
         * @param sourceDominant A flag indicating whether either the target object or the source object provides the
         *            dominant data.
         * @param hints A set of key-value pairs that customized merger implementations can use to carry domain-specific
         *            information along, may be <code>null</code>.
         */
        public void merge(
                org.apache.maven.model.Model target,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven4ScopeManagerConfiguration.java

                    all(),
                    MavenArtifactProperties.LOCAL_PATH));
    
            // == sanity check
            if (result.size() != org.apache.maven.api.DependencyScope.values().length - 1) { // sans "undefined"
                throw new IllegalStateException("Maven4 API dependency scope mismatch");
            }
    
            return result;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                        .getLifecyclePhases()
                        .forEach((phase, lifecyclePhase) -> parseLifecyclePhaseDefinitions(plugins, phase, lifecyclePhase));
                lfs.put(id, PluginContainer.newBuilder().plugins(plugins.values()).build());
            });
            return lfs;
        }
    
        static void parseLifecyclePhaseDefinitions(Map<String, Plugin> plugins, String phase, LifecyclePhase goals) {
            InputSource inputSource =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            Xpp3Dom property = new Xpp3Dom("property");
            Xpp3Dom headerName = new Xpp3Dom("name");
            headerName.setValue("header");
            Xpp3Dom headerValue = new Xpp3Dom("value");
            headerValue.setValue("value");
            property.addChild(headerName);
            property.addChild(headerValue);
            httpHeaders.addChild(property);
            httpConfiguration.addChild(httpHeaders);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java

                recessivePlugins.forEach(p -> mergedPlugins.put(p.getPrefix(), p));
                plugins.forEach(p -> mergedPlugins.put(p.getPrefix(), p));
                metadata.setPlugins(new ArrayList<>(mergedPlugins.values()));
            }
    
            // just carry-on as-is
            if (recessive.getVersioning() != null) {
                metadata.setVersioning(recessive.getVersioning());
            }
        }
    
        @Deprecated
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadataGenerator.java

                        versionsMetadata = new VersionsMetadata(artifact, timestamp);
                        versions.put(key, versionsMetadata);
                    }
                }
            }
    
            return versions.values();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                                            DefaultPackagingRegistry.parseLifecyclePhaseDefinitions(plugins, name, phase);
                                            return plugins.values().stream().toList();
                                        }
                                        return List.of();
                                    }
                                })
                                .toList();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/LocalSnapshotMetadata.java

                        versions.put(key, sv);
                    }
                }
            }
    
            metadata = metadata.withVersioning(metadata.getVersioning().withSnapshotVersions(versions.values()));
    
            // just carry-on as-is
            if (recessive.getPlugins() != null && !recessive.getPlugins().isEmpty()) {
                metadata = metadata.withPlugins(new ArrayList<>(recessive.getPlugins()));
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface ModelParser extends SpiService {
    
        /**
         * Option that can be specified in the options map.  The value should be a Boolean.
         */
        String STRICT = "strict";
    
        /**
         * Locates the pom in the given directory.
         *
         * @param dir the directory to locate the pom for, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                boolean isModuleHierarchy = outputModules.isModuleHierarchy() || testModules.isModuleHierarchy();
                for (String moduleName : outputModules.getModuleNames().values()) {
                    Path subdir = test;
                    if (isModuleHierarchy) {
                        // If module hierarchy is used, the directory names shall be the module names.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top