Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for openInputStream (0.65 sec)

  1. src/test/java/jcifs/SmbResourceTest.java

                // Given
                when(mockResource.openInputStream()).thenReturn(mockInputStream);
                when(mockResource.openInputStream(anyInt())).thenReturn(mockInputStream);
                when(mockResource.openInputStream(anyInt(), anyInt(), anyInt())).thenReturn(mockInputStream);
    
                // When
                InputStream is1 = mockResource.openInputStream();
                InputStream is2 = mockResource.openInputStream(1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 35K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Closer.java

     *
     * <p>This class is intended to be used in the following pattern:
     *
     * {@snippet :
     * Closer closer = Closer.create();
     * try {
     *   InputStream in = closer.register(openInputStream());
     *   OutputStream out = closer.register(openOutputStream());
     *   // do stuff
     * } catch (Throwable e) {
     *   // ensure that any checked exception types other than IOException that could be thrown are
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         */
        InputStream openInputStream(int sharing) throws CIFSException;
    
        /**
         * Opens an input stream reading the file (read only, sharable)
         *
         * @return input stream, needs to be closed when finished
         * @throws CIFSException if an error occurs accessing the resource
         */
        InputStream openInputStream() throws CIFSException;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
Back to top