Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for underrun (0.04 sec)

  1. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                assertEquals(Long.MAX_VALUE, response.getEndOfFile());
                assertEquals(0xFFFFFFFF, response.getFileAttributes());
            }
    
            @Test
            @DisplayName("Should throw exception for buffer underrun")
            void testReadBytesWireFormatWithBufferUnderrun() {
                // Given
                byte[] buffer = new byte[59]; // One byte too small
                SMBUtil.writeInt2(60, buffer, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

        service.stopAsync();
        enterRun.countDown();
        executionThread.join();
    
        assertEquals(Service.State.FAILED, service.state());
        assertThat(service.failureCause()).hasMessageThat().isEqualTo("kaboom!");
      }
    
      private class ThrowOnShutDown extends AbstractExecutionThreadService {
        @Override
        protected void run() {
          try {
            enterRun.await();
          } catch (InterruptedException e) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top