Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for validPadding (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava/src/com/google/common/io/BaseEncoding.java

          this.mask = chars.length - 1;
    
          this.decodabet = decodabet;
    
          boolean[] validPadding = new boolean[charsPerChunk];
          for (int i = 0; i < bytesPerChunk; i++) {
            validPadding[divide(i * 8, bitsPerChar, CEILING)] = true;
          }
          this.validPadding = validPadding;
          this.ignoreCase = ignoreCase;
        }
    
        private static byte[] decodabetFor(char[] chars) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Oct 06 14:51:47 GMT 2025
    - 41.7K bytes
    - Click Count (0)
Back to Top