- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for gzipDecompress (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/SearchHelper.java
final String encoded = cookie.getValue(); final byte[] compressed = Base64.getUrlDecoder().decode(encoded); final byte[] jsonBytes = gzipDecompress(compressed); final List<?> list = mapper.readValue(jsonBytes, List.class); final List<RequestParameter> result = new ArrayList<>();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
okhttp-zstd/src/test/java/okhttp3/zstd/ZstdInterceptorTest.kt
result.zstdCompress().buffer().use { it.write(this@zstdCompress) } return result.readByteString() } private fun ByteString.gzipCompress(): ByteString { val result = Buffer() (result as Sink).gzip().buffer().use { it.write(this@gzipCompress) } return result.readByteString() } private fun response( url: String, body: ByteString,
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Aug 01 06:04:22 UTC 2025 - 4.8K bytes - Viewed (1)