- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getContentEncoding (0.15 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
handshake(); } catch (IOException ex) { } return connection.getContentType(); } public String getContentEncoding() { try { handshake(); } catch (IOException ex) { } return connection.getContentEncoding(); } public long getExpiration() { try { handshake(); } catch (IOException ex) { }
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/main/java/org/codelibs/curl/CurlRequest.java
} writeContent(() -> { try { if (con.getResponseCode() < 400) { if (GZIP.equals(con.getContentEncoding())) { return new GZIPInputStream(con.getInputStream()); } else { return con.getInputStream(); }
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Sun Feb 12 12:21:25 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
public String getContentType () { handshake(); return this.connection.getContentType(); } @Override public String getContentEncoding () { handshake(); return this.connection.getContentEncoding(); } @Override public long getExpiration () { handshake(); return this.connection.getExpiration(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 09 09:29:26 UTC 2024 - 41K bytes - Viewed (0)