- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 139 for Limits (0.15 sec)
-
docs/minio-limits.md
# MinIO Server Limits Per Tenant For optimal production setup MinIO recommends Linux kernel version 4.x and later. ## Erasure Code (Multiple Drives / Servers) | Item | Specification | |:----------------------------------------------------------------|:--------------| | Maximum number of servers per cluster | no-limit |
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/SmbConnectionTest.java
// When both are enabled, batch limits should be available int limit = config.getBatchLimit("TreeConnectAndX.QueryInformation"); assertTrue(limit >= 0, "Batch limit should be non-negative when Unicode and batching enabled"); } /** * Test configuration when batching is disabled */ @Test @DisplayName("Batch limit configuration with batching disabled")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
} /** * Set the key rotation bytes limit * * @param limit number of bytes to encrypt before rotating keys */ public void setKeyRotationBytesLimit(long limit) { this.keyRotationBytesLimit = limit; } /** * Set the key rotation time limit * * @param limit time in milliseconds before rotating keys */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
// Make many attempts to trigger global rate limit for (int i = 1; i <= 20; i++) { assertTrue(rateLimiter.checkAttempt("user" + i, "192.168.1." + i), "Attempt " + i + " should be allowed"); } // 21st attempt should be blocked by global rate limit assertFalse(rateLimiter.checkAttempt("user21", "192.168.1.21"), "Should block after global rate limit"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceException.java
return "Free up disk space or use a different location"; case QUOTA: return "Contact administrator to increase quota limits"; case LOCK: return "Release existing locks or wait for them to be released"; case BUFFER: return "Reduce buffer usage or increase buffer pool size"; case THREAD_POOL: return "Reduce concurrent operations or increase thread pool size";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/BufferCache.java
* * Performance optimizations: * - Uses ConcurrentLinkedQueue for O(1) operations * - Lock-free operations for better concurrency * - Proper buffer validation and limits */ public class BufferCache { /** * Private constructor to prevent instantiation of this utility class. */ private BufferCache() { // Utility class - not instantiable }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/compression/DefaultCompressionServiceTest.java
double noneRatio = compressionService.estimateCompressionRatio(testData, CompressionService.COMPRESSION_NONE); assertEquals(1.0, noneRatio, 0.001); } @Test @DisplayName("Test configuration limits") public void testConfigurationLimits() { assertTrue(compressionService.getMinCompressionSize() > 0); assertTrue(compressionService.getMaxCompressionSize() > compressionService.getMinCompressionSize());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
return false; } // Check if we've exceeded time limits long totalElapsed = System.currentTimeMillis() - exception.getOperationStartTime(); if (totalElapsed > maxDelayMs * maxAttempts) { log.debug("Retry time limit exceeded for operation"); return false; } return true; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java
* 3 = SMB_COM_DELETE * 4 = SMB_COM_DELETE_DIRECTORY * 5 = SMB_COM_OPEN_ANDX * 6 = SMB_COM_RENAME * 7 = SMB_COM_TRANSACTION * 8 = SMB_COM_QUERY_INFORMATION */ /* All batch limits are single batch only until further notice */ private static byte[] batchLimits = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }; static {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2FindNext2Test.java
import org.junit.jupiter.api.Test; /** * Unit tests for the Trans2FindNext2 class. */ class Trans2FindNext2Test { /** * Verifies constructor initializes protocol fields and limits correctly. */ @Test void testConstructorInitializesFields() { // Given int sid = 0x2222; int resumeKey = 0x12345678; String filename = "dir\\pattern*";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.9K bytes - Viewed (0)