Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dominant (0.05 sec)

  1. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java

        @Nullable
        public static XmlNode merge(XmlNode dominant, XmlNode recessive) {
            return merge(dominant, recessive, null);
        }
    
        /**
         * Merges two XML nodes.
         */
        @Nullable
        public static XmlNode merge(
                @Nullable XmlNode dominant, @Nullable XmlNode recessive, @Nullable Boolean childMergeOverride) {
            return getService().doMerge(dominant, recessive, childMergeOverride);
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

            return XmlService.merge(this, source, childMergeOverride);
        }
    
        /**
         * Merge recessive into dominant and return either {@code dominant}
         * with merged information or a clone of {@code recessive} if
         * {@code dominant} is {@code null}.
         *
         * @param dominant the node
         * @param recessive if {@code null}, nothing will happen
         * @return the merged node
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jul 19 11:09:56 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

         *
         * @param target the target location
         * @param source the source location
         * @param sourceDominant the boolean indicating of {@code source} is dominant compared to {@code target}
         * @return the merged location
         */
        public static InputLocation merge(InputLocation target, InputLocation source, boolean sourceDominant) {
            if (source == null) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                            }
    
                            // TODO should this be part of mediation?
                            // previous one is more dominant
                            ResolutionNode nearest;
                            ResolutionNode farthest;
    
                            if (resolved == previous) {
                                nearest = previous;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top