- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 28 for EXCEEDED (0.08 seconds)
-
tests/test_custom_middleware_exception.py
422, detail={ "name": "ContentSizeLimitExceeded", "code": 999, "message": "File limit exceeded", }, ) return message return inner async def __call__(self, scope, receive, send):Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 2.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java
} @Test public void test_constructorWithMessageAndErrorCode() { final LlmException exception = new LlmException("Rate limit exceeded", LlmException.ERROR_RATE_LIMIT); assertEquals("Rate limit exceeded", exception.getMessage()); assertEquals(LlmException.ERROR_RATE_LIMIT, exception.getErrorCode()); assertNull(exception.getCause()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 04:19:06 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
// finishCrawling should be set when max empty list count is exceeded // In test environment this may not work as expected // assertTrue(indexUpdater.finishCrawling); // Thread may still be alive in test environment // assertFalse(indexUpdater.isAlive()); } // Test run with max error count exceeded @Test public void test_run_maxErrorCountExceeded() throws Exception {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
public class ResultOffsetExceededExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test with normal message String message = "Offset exceeded the limit"; ResultOffsetExceededException exception = new ResultOffsetExceededException(message); assertEquals(message, exception.getMessage()); assertNotNull(exception.getStackTrace());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnectionPool.kt
} } if (connections.isEmpty()) cleanupQueue.cancelAll() } /** * Performs maintenance on this pool, evicting the connection that has been idle the longest if * either it has exceeded the keep alive limit or the idle connections limit. * * Returns the duration in nanoseconds to sleep until the next scheduled call to this method. * Returns -1 if no further cleanups are required. */Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmException.java
public static final String ERROR_SERVICE_UNAVAILABLE = "service_unavailable"; /** Error code for request timeout. */ public static final String ERROR_TIMEOUT = "timeout"; /** Error code for context length exceeded. */ public static final String ERROR_CONTEXT_LENGTH_EXCEEDED = "context_length_exceeded"; /** Error code for model not found. */ public static final String ERROR_MODEL_NOT_FOUND = "model_not_found";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
} catch (final FileUploadByteCountLimitException e) { // special handling handleSizeLimitExceededException(request, e); } catch (final FileUploadException e) { // contains fileCount exceeded handleFileUploadException(e); } } protected void prepareElementsHash() { // traditional name
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:48:41 GMT 2026 - 18.9K bytes - Click Count (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt
// 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() Huffman.decode(source, length, decodeBuffer) decodeBuffer.readByteString() } else {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) -
internal/lru/lru.go
} } c.evictList.Init() } // Add adds a value to the cache. Returns true if an eviction occurred. // Returns false if there was no eviction: the item was already in the cache, // or the size was not exceeded. func (c *LRU[K, V]) Add(key K, value V) (evicted bool) { c.mu.Lock() defer c.mu.Unlock() now := time.Now() // Check for existing item if ent, ok := c.items[key]; ok { c.evictList.MoveToFront(ent)
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 12.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/WebSocket.kt
* that enqueued messages were not transmitted. * * Use this to monitor backpressure and avoid exceeding the 16 MiB outgoing message buffer limit. * When that limit is exceeded, the web socket is gracefully shut down. */ fun queueSize(): Long /** * Attempts to enqueue `text` to be UTF-8 encoded and sent as a the data of a text (type `0x1`) * message. *
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 10 21:45:14 GMT 2026 - 6.1K bytes - Click Count (0)