Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for alongside (0.05 sec)

  1. android/guava/src/com/google/common/base/Strings.java

        }
    
        // IF YOU MODIFY THE CODE HERE, you must update StringsRepeatBenchmark
        int len = string.length();
        long longSize = (long) len * (long) count;
        int size = (int) longSize;
        if (size != longSize) {
          throw new ArrayIndexOutOfBoundsException("Required array size too large: " + longSize);
        }
    
        char[] array = new char[size];
        string.getChars(0, len, array, 0);
        int n;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 27 17:53:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top