Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getUnsortedOrder (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeSelectionSchema.java

                this(Collections.emptyList(), unsortedIndices);
            }
    
            public List<Integer> getSortedOrder() {
                return sortedIndices;
            }
    
            public Collection<Integer> getUnsortedOrder() {
                return unsortedIndices;
            }
        }
    
        /**
         * Given a set of attributes, order those attributes based on the precedence defined by
         * this schema.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

                }
            }
            // If the attribute does not have a known precedence, then we cannot stop
            // until we've disambiguated all of the attributes.
            for (int a : precedenceResult.getUnsortedOrder()) {
                disambiguateRequestedAttribute(a);
                if (remaining.cardinality() == 0) {
                    return;
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top