Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ExtractorResourceManagementTest.java

                @Override
                public void reset() throws IOException {
                    originalStream.reset();
                }
    
                @Override
                public boolean markSupported() {
                    return originalStream.markSupported();
                }
            };
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. 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 Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
Back to top