Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 6969 (0.02 sec)

  1. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         * Test <a href="https://issues.apache.org/jira/browse/MNG-6964">MNG-6964</a> edge cases
         * for qualifiers that start with "-0.", which was showing A == C and B == C but A &lt; B.
         */
        @Test
        void testMng6964() {
            String a = "1-0.alpha";
            String b = "1-0.beta";
            String c = "1";
    
            checkVersionsOrder(a, c); // Now a < c, but before MNG-6964 they were equal
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                    if (size() == 0) {
                        return 0; // 1-0 = 1- (normalize) = 1
                    }
                    // Compare the entire list of items with null - not just the first one, MNG-6964
                    for (Item i : this) {
                        int result = i.compareTo(null);
                        if (result != 0) {
                            return result;
                        }
                    }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X954,
        X955,
        X956,
        X957,
        X958,
        X959,
        X960,
        X961,
        X962,
        X963,
        X964,
        X965,
        X966,
        X967,
        X968,
        X969,
        X970,
        X971,
        X972,
        X973,
        X974,
        X975,
        X976,
        X977,
        X978,
        X979,
        X980,
        X981,
        X982,
        X983,
        X984,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X954,
        X955,
        X956,
        X957,
        X958,
        X959,
        X960,
        X961,
        X962,
        X963,
        X964,
        X965,
        X966,
        X967,
        X968,
        X969,
        X970,
        X971,
        X972,
        X973,
        X974,
        X975,
        X976,
        X977,
        X978,
        X979,
        X980,
        X981,
        X982,
        X983,
        X984,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. docs/LICENSE

         public may access the material from a place and at a time
         individually chosen by them.
    
      j. Sui Generis Database Rights means rights other than copyright
         resulting from Directive 96/9/EC of the European Parliament and of
         the Council of 11 March 1996 on the legal protection of databases,
         as amended and/or succeeded, as well as other essentially
         equivalent rights anywhere in the world.
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
Back to top