- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for flushQuietly (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava-tests/test/com/google/common/io/FlushablesTest.java
} public void testFlushQuietly_flushableWithEatenException() throws IOException { // make sure that no exception is thrown by flushQuietly when the mock does // throw an exception on flush. setupFlushable(true); Flushables.flushQuietly(mockFlushable); } // Set up a flushable to expect to be flushed, and optionally to // throw an exception.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 3.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FlushablesTest.java
} public void testFlushQuietly_flushableWithEatenException() throws IOException { // make sure that no exception is thrown by flushQuietly when the mock does // throw an exception on flush. setupFlushable(true); Flushables.flushQuietly(mockFlushable); } // Set up a flushable to expect to be flushed, and optionally to // throw an exception.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 3.3K bytes - Click Count (0) -
android/guava/src/com/google/common/io/Flushables.java
* Equivalent to calling {@code flush(flushable, true)}, but with no {@code IOException} in the * signature. * * @param flushable the {@code Flushable} object to be flushed. */ @Beta public static void flushQuietly(Flushable flushable) { try { flush(flushable, true); } catch (IOException e) { logger.log(Level.SEVERE, "IOException should not have been thrown.", e); } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 28 02:48:50 GMT 2024 - 2.5K bytes - Click Count (0)