Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getErrorStream (0.5 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        @Override
        public boolean usingProxy() {
            return connection.usingProxy();
        }
    
        @Override
        public InputStream getErrorStream() {
            try {
                handshake();
            } catch (final IOException ex) {}
            return connection.getErrorStream();
        }
    
        private int parseResponseCode() throws IOException {
            try {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
        @Override
        public boolean usingProxy() {
            return this.connection.usingProxy();
        }
    
        @Override
        public InputStream getErrorStream() {
            handshake();
            return this.connection.getErrorStream();
        }
    
        private int parseResponseCode() throws IOException {
            try {
                final String response = this.connection.getHeaderField(0);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/curl/CurlRequest.java

                        } else {
                            if (GZIP.equals(con.getContentEncoding())) {
                                return new GZIPInputStream(con.getErrorStream());
                            } else {
                                return con.getErrorStream();
                            }
                        }
                    } catch (IOException e) {
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                    }
                }, "ProcessCloser-input-" + sessionId).start();
                new Thread(() -> {
                    try {
                        CloseableUtil.closeQuietly(process.getErrorStream());
                    } catch (final Exception e) {
                        logger.warn("Could not close a process error stream.", e);
                    } finally {
                        latch.countDown();
                    }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 06:54:47 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java

                    when(conn.getHeaderField(index++)).thenReturn(entry.getValue().get(0));
                }
            }
    
            if (code >= 400 && stream != null) {
                when(conn.getErrorStream()).thenReturn(stream);
            } else if (stream != null) {
                when(conn.getInputStream()).thenReturn(stream);
            }
        }
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                        }
                    });
                    CommonPoolUtil.execute(() -> {
                        try {
                            CloseableUtil.closeQuietly(p.getErrorStream());
                        } catch (final Exception e) {
                            logger.warn("Could not close a process error stream.", e);
                        }
                    });
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 08:02:36 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top