- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for LimitedInputStream (0.12 sec)
-
guava/src/com/google/common/io/ByteStreams.java
*/ @J2ktIncompatible public static InputStream limit(InputStream in, long limit) { return new LimitedInputStream(in, limit); } @J2ktIncompatible private static final class LimitedInputStream extends FilterInputStream { private long left; private long mark = -1; LimitedInputStream(InputStream in, long limit) { super(in); checkNotNull(in);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 31.1K bytes - Viewed (0)