- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for max_io (0.04 sec)
-
docs/config/README.md
pauses up to '250ms' per object when the system has `max_io` number of concurrent requests. It is possible to adjust the `max_sleep` and `max_io` values thereby increasing the healing speed. The delays between each operation of the healer can be adjusted by the `mc admin config set alias/ heal max_sleep=1s` and maximum concurrent requests allowed before we start slowing things down can be configured with `mc admin config set alias/ heal max_io=30` . By default the wait delay is `250ms` beyond 100...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.1K bytes - Viewed (1) -
gradlew
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockTest.java
void testSetMidWithBoundaryValues() { // Test with MAX_VALUE long maxMid = Long.MAX_VALUE; doNothing().when(messageBlock).setMid(maxMid); when(messageBlock.getMid()).thenReturn(maxMid); messageBlock.setMid(maxMid); assertEquals(maxMid, messageBlock.getMid()); // Test with MIN_VALUE long minMid = Long.MIN_VALUE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
void testMaximumValues() { // Given long maxMid = Long.MAX_VALUE; long maxAsyncId = Long.MAX_VALUE; int maxCredits = Integer.MAX_VALUE; int maxTreeId = Integer.MAX_VALUE; // When Smb2CancelRequest request = new Smb2CancelRequest(mockConfig, maxMid, maxAsyncId); request.setRequestCredits(maxCredits); request.setTid(maxTreeId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
} @Test @DisplayName("Test createCancel with maximum MID value") void testCreateCancelWithMaxMid() { // Set MID to maximum value int maxMid = 0xFFFF; transaction.setMid(maxMid); // Create cancel request CommonServerMessageBlockRequest cancelRequest = transaction.createCancel(); // Verify it creates a valid cancel request with max MID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java
} @Test void testLargeBatchParameters() { // Test with maximum allowed values int maxSid = 0xFFFF; int maxResumeKey = 0x7FFFFFFF; int maxBatchCount = 65535; int maxBatchSize = 65535; trans2FindNext2 = new Trans2FindNext2(config, maxSid, maxResumeKey, TEST_FILENAME, maxBatchCount, maxBatchSize); byte[] buffer = new byte[512];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/resources/fess_label_es.properties
labels.confirmPassword=Confirmar labels.crawler=Rastreador labels.crudMode=Modo labels.errorCountMax=Número máximo de errores labels.errorCountMin=Número mínimo de errores labels.facet=Faceta labels.geo=Geo labels.groups=Grupos labels.hash=Hash labels.kuromojiFile=Archivo Kuromoji labels.maxSize=Tamaño máximo labels.order=Orden labels.purgeSuggestSearchLogDay=Eliminar información de sugerencias anterior labels.q=Consulta
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
src/main/resources/fess_label_pt_BR.properties
labels.confirmPassword=Confirmar labels.crawler=Rastreador labels.crudMode=Modo labels.errorCountMax=Número máximo de erros labels.errorCountMin=Número mínimo de erros labels.facet=Faceta labels.geo=Geo labels.groups=Grupos labels.hash=Hash labels.kuromojiFile=Arquivo Kuromoji labels.maxSize=Tamanho máximo labels.order=Ordem labels.purgeSuggestSearchLogDay=Excluir informações de sugestão anteriores labels.q=Consulta
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.1K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
TimeUnit.MILLISECONDS); log.info("Authentication rate limiter initialized: maxAccount={}, maxIp={}, maxGlobal={}/min", maxAttemptsPerAccount, maxAttemptsPerIp, maxGlobalAttemptsPerMinute); } /** * Check if authentication attempt is allowed *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/IntMathTest.java
} } } private static final BigInteger MAX_INT = BigInteger.valueOf(Integer.MAX_VALUE); private static final BigInteger MIN_INT = BigInteger.valueOf(Integer.MIN_VALUE); private static int saturatedCast(BigInteger big) { if (big.compareTo(MAX_INT) > 0) { return Integer.MAX_VALUE; } if (big.compareTo(MIN_INT) < 0) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 24.1K bytes - Viewed (0)