- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 783 for exceeds (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java
// Multiple writes that exceed threshold should switch to file ContentOutputStream cos = new ContentOutputStream(5, Curl.tmpDir); cos.write(new byte[] { 0, 1, 2 }); assertTrue(cos.isInMemory()); cos.write(new byte[] { 3, 4, 5 }); // Total 6 bytes, exceeds threshold of 5 assertFalse(cos.isInMemory()); File file = cos.getFile();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) -
okhttp/src/jvmTest/kotlin/okhttp3/CallLimitsTest.kt
.build(), ) val call = client.newCall(Request(url = server.url("/"))) assertFailsWith<IOException> { call.execute() } } /** Use a header that exceeds the limits on its own. */ @Test fun largeResponseHeader() { server.enqueue( MockResponse .Builder() .addHeader("Set-Cookie", "a=${"A".repeat(256 * 1024)}")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:02:18 GMT 2026 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java
timeoutTask.cancel(); } if (logNotificationTarget != null) { logNotificationTarget.flush(); } } /** * Offers an event to the buffer. If the buffer exceeds the maximum size, the oldest event is dropped. * * @param event the log notification event to add */ public void offer(final LogNotificationEvent event) { int maxBufferSize; try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
* <p> * <strong>Note:</strong> This method loads the entire file into memory. * An {@link IORuntimeException} will be thrown if the file exceeds the specified maxSize * to prevent OutOfMemoryError. For large files, use streaming APIs instead. * </p> * * @param file * The file. Must not be {@literal null}.Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Feb 12 12:10:45 GMT 2026 - 13.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
final int maxMessageLength = getMaxMessageLength(fessConfig); if (message.length() > maxMessageLength) { logger.warn("Chat message exceeds max length. length={}, max={}", message.length(), maxMessageLength); writeJsonResponse(response, HttpServletResponse.SC_BAD_REQUEST,
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
final String result = chatClient.testBuildAssistantHistoryContent(msg, "smart_summary", 500, 500); // Result should not exceed summaryMaxChars by much (suffix may push slightly, but the body is budgeted) assertTrue(result.length() <= 500 + 50, "result length " + result.length() + " exceeds reasonable bound"); } @Test public void test_smartSummary_longSourceTitlesExceedBudget() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java
// Should we pepper more of these calls throughout the above? Where? CacheTesting.checkValidState(cache); } /** * Tests that when a single entry exceeds the segment's max weight, the new entry is immediately * evicted and nothing else. */ public void testEviction_maxWeight_entryTooBig() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 15K bytes - Click Count (0) -
guava-tests/test/com/google/common/cache/CacheEvictionTest.java
// Should we pepper more of these calls throughout the above? Where? CacheTesting.checkValidState(cache); } /** * Tests that when a single entry exceeds the segment's max weight, the new entry is immediately * evicted and nothing else. */ public void testEviction_maxWeight_entryTooBig() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 15K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt
val length = readInt(firstByte, PREFIX_7_BITS).toLong() // If the compressed or decompressed length exceeds the limit, don't even bother. if (headerListByteCount + length > HEADER_LIMIT) { throw IOException("header byte count limit of $HEADER_LIMIT exceeded") } return if (huffmanDecode) { val decodeBuffer = Buffer()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:02:18 GMT 2026 - 23.2K bytes - Click Count (0) -
doc/godebug.md
tracebacks. ### Go 1.26 Go 1.26 added a new `httpcookiemaxnum` setting that controls the maximum number of cookies that net/http will accept when parsing HTTP headers. If the number of cookie in a header exceeds the number set in `httpcookiemaxnum`, cookie parsing will fail early. The default value is `httpcookiemaxnum=3000`. Setting `httpcookiemaxnum=0` will allow the cookie parsing to accept an indefinite
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Mar 20 15:49:10 GMT 2026 - 26K bytes - Click Count (0)