Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for merge (0.04 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

                    return plugin.withExecutions(map(
                            plugin.getExecutions(),
                            execution -> execution.withConfiguration(
                                    XmlNode.merge(execution.getConfiguration(), pluginConfiguration))));
                } else {
                    return plugin;
                }
            });
        }
    
        private List<ReportPlugin> expandReport(List<ReportPlugin> oldPlugins) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileInjector.java

     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
         * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeMap.java

        // lower bound in the merge range is entirely contained by the merge range.
        Set<Entry<Cut<K>, RangeMapEntry<K, V>>> entriesInMergeRange =
            entriesByLowerBound.subMap(range.lowerBound, range.upperBound).entrySet();
    
        // Create entries mapping any unmapped ranges in the merge range to the specified value.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java

        /**
         * @param dominant
         * @param recessive
         * @param recessiveSourceLevel
         */
        public static void merge(Settings dominant, Settings recessive, String recessiveSourceLevel) {
            if (dominant != null && recessive != null) {
                dominant.delegate = SettingsUtilsV4.merge(dominant.getDelegate(), recessive.getDelegate());
            }
        }
    
        /**
         * @param modelProfile
         * @return a profile
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            t2.setAttribute("attr2", "value2");
            t2.setValue("t2Value");
            t2.setInputLocation("t2top");
    
            // merge and check results.
            Xpp3Dom result = Xpp3Dom.mergeXpp3Dom(t1, t2);
    
            // this is still 2, since we're not using the merge-control attribute.
            assertEquals(2, result.getAttributeNames().length);
    
            assertNull(result.getValue());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/management/DefaultDependencyManagementInjector.java

                        if (dependency != null) {
                            Dependency merged = mergeDependency(dependency, managedDependency, false, context);
                            if (merged != dependency) {
                                dependencies.put(key, merged);
                                modified = true;
                            }
                        }
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/DependencyManagementInjector.java

    /**
     * Handles injection of dependency management into the model.
     *
     */
    public interface DependencyManagementInjector {
    
        /**
         * Merges default values from the dependency management section of the given model into itself.
         *
         * @param model The model into which to merge the values specified by its dependency management sections, must not
         *            be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

            result.setLocations(locations);
    
            return result;
        } // -- InputLocation merge( InputLocation, InputLocation, boolean )
    
        /**
         * Method merge.
         *
         * @param target
         * @param indices
         * @param source
         * @return InputLocation
         */
        public static InputLocation merge(
                InputLocation target, InputLocation source, java.util.Collection<Integer> indices) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PluginManagementInjector.java

    /**
     * Handles injection of plugin management into the model.
     *
     */
    public interface PluginManagementInjector {
    
        /**
         * Merges default values from the plugin management section of the given model into itself.
         *
         * @param model The model into which to merge the values specified by its plugin management section, must not be
         *            <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

        ProjectBuildingRequest setRepositorySession(RepositorySystemSession repositorySession);
    
        /**
         * Sets the merge mode used to combine repositories declared in the POM with the repositories specified in this
         * request.
         *
         * @param mode The repository merge mode, must not be {@code null}.
         * @return This request for chaining, never {@code null}.
         * @see #setRemoteRepositories(List)
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top