Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for markSupported (0.06 sec)

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

          if (result != -1) {
            left -= result;
          }
          return result;
        }
    
        @Override
        public synchronized void reset() throws IOException {
          if (!in.markSupported()) {
            throw new IOException("Mark not supported");
          }
          if (mark == -1) {
            throw new IOException("Mark not set");
          }
    
          in.reset();
          left = mark;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top