- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for isInMemory (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
} } // --- isInMemory() tests --- @Test public void testIsInMemory_WithByteArray() { // ## Arrange ## ContentCache cache = new ContentCache("test".getBytes()); // ## Assert ## assertTrue(cache.isInMemory()); } @Test public void testIsInMemory_WithFile() throws IOException {Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 15.9K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java
cos.write(new byte[] { 0, 1, 2 }); assertTrue(cos.isInMemory()); cos.write(new byte[] { 3, 4 }); assertTrue(cos.isInMemory()); cos.write(new byte[] { 5 }); assertTrue(cos.isInMemory()); assertFalse(cos.done); cos.close(); } @Test public void testMultipleWritesExceedingThreshold() throws IOException {
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 11.7K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
} dfos.flush(); final ContentCache contentCache; logger.fine(() -> "Response in " + (dfos.isInMemory() ? "Memory" : "File")); if (dfos.isInMemory()) { contentCache = new ContentCache(dfos.getData()); } else { contentCache = new ContentCache(dfos.getFile()); }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)