Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for throwsException (0.23 sec)

  1. android/guava-tests/test/com/google/common/io/CloserTest.java

        try {
          try {
            throw thrownException;
          } catch (Throwable e) {
            throw closer.rethrow(thrownException, IOException.class);
          } finally {
            assertThat(thrownException.getSuppressed()).isEmpty();
            closer.close();
          }
        } catch (IOException expected) {
          assertSame(thrownException, expected);
        }
    
        assertTrue(c1.isClosed());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

                    if (!result.isUnderflow()) {
                        result.throwException();
                    }
                    break;
                }
                wasUnderflow = result.isUnderflow();
            }
            if (needsFlush) {
                CoderResult result = decoder.flush(charbuffer);
                if (!result.isUnderflow()) {
                    result.throwException();
                }
            }
            clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

             * @return Integer
             */
            public Integer echo(final Integer arg) {
                return arg;
            }
    
            /**
             *
             */
            public void throwException() {
                throw new IllegalStateException("hoge");
            }
        }
    
        /**
         *
         */
        public class MyBean2 {
            /**
             *
             */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top