- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for fit (0.01 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComTransactionTest.java
// Should have no more elements since all data fit in first message assertFalse(transaction.hasMoreElements(), "hasMoreElements should be false when all data is sent"); } @Test @DisplayName("Test transaction with large data requires multiple elements") void testLargeDataMultipleElements() { // Set large amounts that won't fit in one buffer transaction.maxBufferSize = 100;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
// File access constants should fit in lower 16 bits (0x0000FFFF) assertTrue(ACE.FILE_READ_DATA <= 0x0000FFFF, "FILE_READ_DATA should fit in lower 16 bits"); assertTrue(ACE.FILE_WRITE_DATA <= 0x0000FFFF, "FILE_WRITE_DATA should fit in lower 16 bits"); assertTrue(ACE.FILE_WRITE_ATTRIBUTES <= 0x0000FFFF, "FILE_WRITE_ATTRIBUTES should fit in lower 16 bits");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
assertTrue(Smb2Constants.SMB2_DIALECT_ANY < Smb2Constants.SMB2_DIALECT_0300, "Dialect ANY should be less than SMB3 dialects"); } @Test @DisplayName("Capability values should fit in 32-bit integer") void testCapabilityValueRange() { int maxCap = Smb2Constants.SMB2_GLOBAL_CAP_DFS | Smb2Constants.SMB2_GLOBAL_CAP_LEASING | Smb2Constants.SMB2_GLOBAL_CAP_LARGE_MTU
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbWatchHandle.java
* this method should provide all changes (size of that buffer can be adjusted through * {@link jcifs.Configuration#getNotifyBufferSize()}). * If the server cannot fulfill the request because the changes did not fit the buffer * it will return an empty list of changes. * * @return changes since the last invocation * @throws CIFSException if an error occurs retrieving file notifications */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
docs/compression/README.md
~ mc admin config set myminio compression allow_encryption=on ``` Or alternatively through the environment variable `MINIO_COMPRESSION_ALLOW_ENCRYPTION=on`. ### 4. Excluded Types - Already compressed objects are not fit for compression since they do not have compressible patterns. Such objects do not produce efficient [`LZ compression`](https://en.wikipedia.org/wiki/LZ77_and_LZ78) which is a fitness factor for a lossless data compression.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
int NT_STATUS_PENDING = 0x00000103; /** A notify change request is being completed and information is being returned */ int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C; /** The data was too large to fit into the specified buffer */ int NT_STATUS_BUFFER_OVERFLOW = 0x80000005; /** The requested operation was unsuccessful */ int NT_STATUS_UNSUCCESSFUL = 0xC0000001; /** The requested operation is not implemented */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Utf8.java
} } if (utf8Length < utf16Length) { // Necessary and sufficient condition for overflow because of maximum 3x expansion throw new IllegalArgumentException( "UTF-8 length does not fit in int: " + (utf8Length + (1L << 32))); } return utf8Length; } private static int encodedLengthGeneral(CharSequence sequence, int start) { int utf16Length = sequence.length(); int utf8Length = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 7K bytes - Viewed (0) -
cmd/api-headers.go
// // S3 uses B-encoding (Base64) for non-ASCII-heavy metadata and Q-encoding // (quoted-printable) for mostly ASCII strings. Long strings are split at word // boundaries to fit RFC 2047’s 75-character limit, ensuring HTTP parser // compatibility. // // However, this splitting increases header size and can introduce errors, unlike Go’s
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/Hashing.java
* servers {@code alpha}, {@code bravo}, and {@code charlie} and you occasionally need to * take each of the servers offline, {@code consistentHash} will be a poor fit: It provides * no way for you to specify which of the three buckets is disappearing. Thus, if your * buckets change from {@code [alpha, bravo, charlie]} to {@code [bravo, charlie]}, it will
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:06:57 UTC 2025 - 31.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
assertTrue(result1 > 0); // Test at buffer middle int result2 = request.encode(buffer, 128); assertTrue(result2 > 0); // Test near buffer end (should still fit) request.setEncodedSize(16); int result3 = request.encode(buffer, 240); assertEquals(16, result3); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0)