Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 21 of 21 for ArrayIndexOutOfBoundsException (0.39 sec)

  1. android/guava/src/com/google/common/primitives/UnsignedLongs.java

         * a number. Does not verify whether supplied radix is valid, passing an invalid radix will give
         * undefined results or an ArrayIndexOutOfBoundsException.
         */
        static boolean overflowInParse(long current, int digit, int radix) {
          if (current >= 0) {
            if (current < maxValueDivs[radix]) {
              return false;
            }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
Back to top