Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for matchVersion (0.19 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                        ArtifactVersion selectedVersion = resetArtifact
                                                .getVersionRange()
                                                .matchVersion(resetArtifact.getAvailableVersions());
    
                                        if (selectedVersion != null) {
                                            resetArtifact.selectVersion(selectedVersion.toString());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                    if (i.hasNext()) {
                        buf.append(',');
                    }
                }
                return buf.toString();
            }
        }
    
        public ArtifactVersion matchVersion(List<ArtifactVersion> versions) {
            // TODO could be more efficient by sorting the list and then moving along the restrictions in order?
    
            ArtifactVersion matched = null;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. buildSrc/src/main/kotlin/AlpnVersions.kt

     * limitations under the License.
     */
    
    // https://www.eclipse.org/jetty/documentation/current/alpn-chapter.html#alpn-versions
    private fun alpnBootVersionForPatchVersion(patchVersion: Int): String? {
      return when (patchVersion) {
        in 0..24 -> "8.1.0.v20141016"
        in 25..30 -> "8.1.2.v20141202"
        in 31..50 -> "8.1.3.v20150130"
        in 51..59 -> "8.1.4.v20150727"
        in 60..64 -> "8.1.5.v20150921"
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top