- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for usingProxy (0.12 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
} public void disconnect() { connection.disconnect(); handshakeComplete = false; connected = false; } public boolean usingProxy() { return connection.usingProxy(); } public InputStream getErrorStream() { try { handshake(); } catch (IOException ex) { } return connection.getErrorStream(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/IOIntegrationTest.java
MockHttpURLConnection(URL u) { super(u); } @Override public void disconnect() { // Do Nothing } @Override public boolean usingProxy() { return false; } @Override public void connect() throws IOException { // Do Nothing } @Override
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Mon Nov 14 21:05:19 UTC 2022 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
this.connection.disconnect(); this.handshakeComplete = false; this.connected = false; } @Override public boolean usingProxy () { return this.connection.usingProxy(); } @Override public InputStream getErrorStream () { handshake(); return this.connection.getErrorStream(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0)