Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for openInputStream (0.39 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. api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java

            try {
                FileObject inputFile = processingEnv.getFiler().getResource(StandardLocation.CLASS_OUTPUT, "", path);
                try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputFile.openInputStream()))) {
                    String line;
                    StringBuilder contentBuilder = new StringBuilder();
                    while ((line = reader.readLine()) != null) {
                        if (!line.trim().startsWith("#")) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/java/jcifs/smb/SmbFile.java

        @Override
        public SmbFileInputStream openInputStream() throws SmbException {
            return new SmbFileInputStream(this);
        }
    
        @Override
        public SmbFileInputStream openInputStream(final int sharing) throws SmbException {
            return openInputStream(0, O_RDONLY, sharing);
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top