Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getErrorStream (0.06 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: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/JobProcessTest.java

                return null;
            }
    
            @Override
            public InputStream getInputStream() {
                return inputStream;
            }
    
            @Override
            public InputStream getErrorStream() {
                return null;
            }
    
            @Override
            public int waitFor() throws InterruptedException {
                return 0;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  3. 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: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  4. 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: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K 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: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/PythonJobTest.java

                return null;
            }
    
            @Override
            public java.io.InputStream getInputStream() {
                return null;
            }
    
            @Override
            public java.io.InputStream getErrorStream() {
                return null;
            }
        }
    
        private static class TestInputStreamThread extends InputStreamThread {
            private final String output;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

            @Override
            public java.io.InputStream getInputStream() {
                return new java.io.ByteArrayInputStream(new byte[0]);
            }
    
            @Override
            public java.io.InputStream getErrorStream() {
                return new java.io.ByteArrayInputStream(new byte[0]);
            }
        }
    
        private static class TestInputStreamThread extends InputStreamThread {
            private final String output;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

                return null;
            }
    
            @Override
            public java.io.InputStream getInputStream() {
                return null;
            }
    
            @Override
            public java.io.InputStream getErrorStream() {
                return null;
            }
        }
    
        // Mock FessConfig implementation
        private class MockFessConfig extends TestFessConfig {
            private static final long serialVersionUID = 1L;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top