Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for C2 (0.12 sec)

  1. android/guava/src/com/google/common/collect/Range.java

     *   <li>Ranges are <i>convex</i>: whenever two values are contained, all values in between them
     *       must also be contained. More formally, for any {@code c1 <= c2 <= c3} of type {@code C},
     *       {@code r.contains(c1) && r.contains(c3)} implies {@code r.contains(c2)}). This means that a
     *       {@code Range<Integer>} can never be used to represent, say, "all <i>prime</i> numbers from
     *       1 to 100."
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 27.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

          case 0:
            return none();
          case 1:
            return is((char) table.nextSetBit(0));
          case 2:
            char c1 = (char) table.nextSetBit(0);
            char c2 = (char) table.nextSetBit(c1 + 1);
            return isEither(c1, c2);
          default:
            return isSmall(totalCharacters, table.length())
                ? SmallCharMatcher.from(table, description)
                : new BitSetMatcher(table, description);
        }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
    
            return location;
        }
    
        private static boolean equals(String s1, String s2) {
            String c1 = s1 == null ? "" : s1.trim();
            String c2 = s2 == null ? "" : s2.trim();
            return c1.equals(c2);
        }
    
        private static Severity getSeverity(ModelBuilderRequest request, int errorThreshold) {
            return getSeverity(request.getValidationLevel(), errorThreshold);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top