- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for contentsEqual (0.06 sec)
-
guava/src/com/google/common/io/ByteStreams.java
if (result == -1) { break; } total += result; } return total; } /** Compares the contents of the two {@link InputStream}s for equality. */ static boolean contentsEqual(InputStream in1, InputStream in2) throws IOException { byte[] buf1 = createBuffer(); byte[] buf2 = createBuffer(); while (true) { int read1 = read(in1, buf1, 0, BUFFER_SIZE);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 31.1K bytes - Viewed (0)