- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for getErrorStream (0.12 sec)
-
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) -
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) -
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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java
Thread out = new Thread(new StreamGobbler(process.getInputStream(), shellContext.writer)); Thread err = new Thread(new StreamGobbler(process.getErrorStream(), shellContext.logger::error)); out.start(); err.start(); int exitCode = process.waitFor(); out.join(); err.join();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 06:54:47 UTC 2025 - 10.9K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
CountDownLatch latch = new CountDownLatch(2); ByteArrayOutputStream stdout = connectStream(process.getInputStream(), latch); ByteArrayOutputStream stderr = connectStream(process.getErrorStream(), latch); process.waitFor(1, TimeUnit.MINUTES); latch.await(1, TimeUnit.MINUTES); return new ExecResult(args, process.exitValue(), stdout.toString(UTF_8), stderr.toString(UTF_8));
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Sep 23 13:49:45 UTC 2025 - 12K bytes - Viewed (0) -
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) -
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)