Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for checkPositive (0.48 seconds)

  1. android/guava/src/com/google/common/math/LongMath.java

    import static com.google.common.math.MathPreconditions.checkNoOverflow;
    import static com.google.common.math.MathPreconditions.checkNonNegative;
    import static com.google.common.math.MathPreconditions.checkPositive;
    import static com.google.common.math.MathPreconditions.checkRoundingUnnecessary;
    import static java.lang.Math.abs;
    import static java.lang.Math.min;
    import static java.lang.Math.nextDown;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 09 23:01:02 GMT 2026
    - 46.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/graph/Graphs.java

        return value;
      }
    
      @CanIgnoreReturnValue
      static int checkPositive(int value) {
        checkArgument(value > 0, "Not true that %s is positive.", value);
        return value;
      }
    
      @CanIgnoreReturnValue
      static long checkPositive(long value) {
        checkArgument(value > 0, "Not true that %s is positive.", value);
        return value;
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 24.4K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/math/MathPreconditionsTest.java

      }
    
      public void testCheckPositive_negativeInt() {
        assertThrows(IllegalArgumentException.class, () -> MathPreconditions.checkPositive("int", -1));
      }
    
      public void testCheckPositive_zeroLong() {
        assertThrows(IllegalArgumentException.class, () -> MathPreconditions.checkPositive("long", 0L));
      }
    
      public void testCheckPositive_maxLong() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/math/MathPreconditionsTest.java

      }
    
      public void testCheckPositive_negativeInt() {
        assertThrows(IllegalArgumentException.class, () -> MathPreconditions.checkPositive("int", -1));
      }
    
      public void testCheckPositive_zeroLong() {
        assertThrows(IllegalArgumentException.class, () -> MathPreconditions.checkPositive("long", 0L));
      }
    
      public void testCheckPositive_maxLong() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 8.1K bytes
    - Click Count (0)
Back to Top