- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 1,686 for hata (0.01 sec)
-
src/test/java/jcifs/util/HMACT64Test.java
hmac.engineUpdate(data, 0, data.length); byte[] result = hmac.engineDigest(); assertArrayEquals(expected, result); } } @Test void testHMACT64WithEmptyData() throws NoSuchAlgorithmException { // Test with empty data byte[] key = "key".getBytes(); byte[] data = EMPTY_DATA;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
/** * Establish RDMA connection */ public abstract void connect() throws IOException; /** * Send data using RDMA */ public abstract void send(ByteBuffer data, RdmaMemoryRegion region) throws IOException; /** * Receive data using RDMA */ public abstract ByteBuffer receive(int timeout) throws IOException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
registerProtocolSchemeItems(data); registerWebConfigItems(data); }); } private HtmlResponse asDetailsHtml() { return asHtml(path_AdminWebauth_AdminWebauthDetailsJsp).renderWith(data -> { registerProtocolSchemeItems(data); registerWebConfigItems(data); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java
byte[] signature = mac.doFinal(); // Place signature in data System.arraycopy(signature, 0, data, SIGNATURE_OFFSET, SIGNATURE_LENGTH); boolean result = digest.verify(data, 0, data.length, 0, msg); // FIXED: Should return true for valid signature (was previously expecting false) assertTrue(result, "Should return true for valid signature");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 43.7K bytes - Viewed (0) -
okhttp-sse/src/test/java/okhttp3/sse/internal/ServerSentEventIteratorTest.kt
fun multiline() { consumeEvents( """ |data: YHOO |data: +2 |data: 10 | | """.trimMargin(), ) assertThat(callbacks.remove()).isEqualTo(Event(null, null, "YHOO\n+2\n10")) } @Test fun multilineCr() { consumeEvents( """ |data: YHOO |data: +2 |data: 10 | | """.trimMargin().replace("\n", "\r"),
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
} if (offset + length > data.length) { throw new IllegalArgumentException("Offset + length exceeds data buffer size"); } if (offset + SIGNATURE_OFFSET + SIGNATURE_LENGTH > data.length) { throw new IllegalArgumentException("Signature field exceeds data buffer size"); } // Use fine-grained locking for better concurrency
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilterStrategies.java
this.bitCount = LongAddables.create(); } // Used by serialization LockFreeBitArray(long[] data) { checkArgument(data.length > 0, "data length is zero!"); this.data = new AtomicLongArray(data); this.bitCount = LongAddables.create(); long bitCount = 0; for (long value : data) { bitCount += Long.bitCount(value); } this.bitCount.add(bitCount); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
} return abbreviateSite(url); } /** * Puts data into the result data map, handling value appending if configured. * If data appending is enabled and the key already exists, values are combined into arrays. * * @param dataMap the data map to modify * @param key the key to store the value under * @param value the value to store */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
} @Test void testReadDataWireFormat_SmbInfoAllocation() throws Exception { // Test reading SMB_INFO_ALLOCATION data response = new Trans2QueryFSInformationResponse(config, FileSystemInformation.SMB_INFO_ALLOCATION); // Prepare buffer with SmbInfoAllocation data byte[] buffer = new byte[100]; int offset = 0; // idFileSystem (4 bytes) - skipped in decode
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0)