Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for flushQuietly (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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)
  2. 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)
  3. 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)
Back to Top