- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getContentEncoding (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/curl/io/IOIntegrationTest.java
} @Override public InputStream getErrorStream() { return null; // Simulates server returning no error body } @Override public String getContentEncoding() { return null; } @Override public Map<String, List<String>> getHeaderFields() { return Collections.emptyMap(); } } @TestCreated: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 44.1K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
return new ByteArrayInputStream(new byte[0]); } else if (con.getResponseCode() < 400) { if (GZIP.equals(con.getContentEncoding())) { return new GZIPInputStream(con.getInputStream()); } else { return con.getInputStream(); }
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 19.7K bytes - Click Count (0)