- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 437 for max_mem (0.05 sec)
-
android/guava/src/com/google/common/collect/TreeMultiset.java
if (left == null) { return right; } else if (right == null) { return left; } else if (left.height >= right.height) { AvlNode<E> newTop = pred(); // newTop is the maximum node in my left subtree newTop.left = left.removeMax(newTop); newTop.right = right; newTop.distinctElements = distinctElements - 1; newTop.totalCount = totalCount - oldElemCount;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
} /** * Test edge cases for numeric fields */ @Test @DisplayName("Test edge cases for numeric fields") public void testNumericFieldsEdgeCases() { // Test maximum values for int fields serverData.sflags2 = Integer.MAX_VALUE; serverData.smaxMpxCount = Integer.MAX_VALUE; serverData.maxBufferSize = Integer.MAX_VALUE; serverData.sessKey = Integer.MAX_VALUE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
src/archive/tar/format.go
// sub-second times | no | yes | no // sparse files | no | yes | yes // // The table's upper portion shows the [Header] fields, where each format reports // the maximum number of bytes allowed for each string field and // the integer type used to store each numeric field // (where timestamps are stored as the number of seconds since the Unix epoch). //
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
/** * Waits for the crawling thread to terminate within a specified time limit. * This method blocks until the thread completes or the timeout expires. * * @param mills maximum time to wait in milliseconds */ public void awaitTermination(final long mills) { try { join(mills); } catch (final InterruptedException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
} @Test public void testCreateSuggestTextIdWithLongText() { // Test text that exceeds maximum length after encoding StringBuilder sb = new StringBuilder(); for (int i = 0; i < 500; i++) { sb.append("0123456789"); } String longText = sb.toString();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java
assertNotNull(response.getNotifyInformation()); assertTrue(response.getNotifyInformation().isEmpty()); } @Test @DisplayName("Should handle maximum buffer size") void testMaximumBufferSize() throws Exception { // Given - large buffer with many notifications byte[] buffer = new byte[65536]; int offset = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
// Then - Tree flags should be initialized to 0 int flags = (int) treeFlagsField.get(req); assertEquals(0, flags); } @Test @DisplayName("Should handle maximum path length") void testMaximumPathLength() throws Exception { // Given - Create a very long path StringBuilder longPathBuilder = new StringBuilder("\\\\server\\"); for (int i = 0; i < 1000; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt
* Sets the close timeout for web socket connections. A value of 0 means no timeout, otherwise * values must be between 1 and [Integer.MAX_VALUE] when converted to milliseconds. * * The close timeout is the maximum amount of time after the client calls [WebSocket.close] to * wait for a graceful shutdown. If the server doesn't respond the web socket will be canceled. * The default value is 60 seconds. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 51.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
assertEquals("complex-query-id", searchRenderData.getQueryId()); assertFalse(searchRenderData.isPartialResults()); } public void test_edgeCases() { // Test with maximum values searchRenderData.setAllRecordCount(Long.MAX_VALUE); searchRenderData.setCurrentStartRecordNumber(Long.MAX_VALUE - 10); searchRenderData.setCurrentEndRecordNumber(Long.MAX_VALUE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
But now, having `Query(max_length=50)` inside of `Annotated`, we are telling FastAPI that we want it to have **additional validation** for this value, we want it to have maximum 50 characters. 😎 /// tip Here we are using `Query()` because this is a **query parameter**. Later we will see others like `Path()`, `Body()`, `Header()`, and `Cookie()`, that also accept the same arguments as `Query()`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.2K bytes - Viewed (0)