Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for decodingStream (0.21 seconds)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

          throws IOException {
        byte[] bytes = decoded.getBytes(UTF_8);
        try (InputStream decodingStream = encoding.decodingStream(new StringReader(encoded))) {
          for (int i = 0; i < bytes.length; i++) {
            assertThat(decodingStream.read()).isEqualTo(bytes[i] & 0xFF);
          }
          assertThat(decodingStream.read()).isEqualTo(-1);
        }
      }
    
      public void testToString() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 24.7K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/io/BaseEncoding.java

          }
          return delegate.decodeTo(target, stripped);
        }
    
        @Override
        @J2ktIncompatible
        @GwtIncompatible // Reader,InputStream
        public InputStream decodingStream(Reader reader) {
          return delegate.decodingStream(ignoringReader(reader, separator));
        }
    
        @Override
        public BaseEncoding omitPadding() {
          return delegate.omitPadding().withSeparator(separator, afterEveryChars);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 41.6K bytes
    - Click Count (0)
Back to Top