- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 665 for 16 (0.02 sec)
-
src/main/java/jcifs/smb1/util/Hexdump.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
} @Test public void testKeyIsolation() { String sessionId1 = "session-1"; String sessionId2 = "session-2"; byte[] key1 = new byte[16]; byte[] key2 = new byte[16]; new SecureRandom().nextBytes(key1); new SecureRandom().nextBytes(key2); keyManager.storeSessionKey(sessionId1, key1, "AES");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionServicePacket.java
return ((src[srcIndex] & 0xFF) << 24) + ((src[srcIndex + 1] & 0xFF) << 16) + ((src[srcIndex + 2] & 0xFF) << 8) + (src[srcIndex + 3] & 0xFF); } static int readLength(final byte[] src, int srcIndex) { srcIndex++; return ((src[srcIndex++] & 0x01) << 16) + ((src[srcIndex++] & 0xFF) << 8) + (src[srcIndex++] & 0xFF); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/ppc64.s
SRAWCC R3, R4 // 7c841e31 SRD $16, R3, R4 // 78648402 SRD R3, R4, R5 // 7c851c36 SRDCC R3, R4 // 7c841c37 SRAD $16, R3, R4 // 7c648674 SRAD R3, R4, R5 // 7c851e34 SRDCC R3, R4 // 7c841c37 ROTLW $16, R3, R4 // 5464803e ROTLW R3, R4, R5 // 5c85183e
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 21 18:27:17 UTC 2024 - 51.7K bytes - Viewed (0) -
src/config/eclipse/formatter/javascript.xml
<setting id="org.eclipse.wst.jsdt.core.formatter.alignment_for_parameters_in_constructor_declaration" value="16"/> <setting id="org.eclipse.wst.jsdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration" value="16"/> <setting id="org.eclipse.wst.jsdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" value="insert"/>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Mar 23 21:27:06 UTC 2015 - 29.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/operand_test.go
{"$1", "$1"}, {"$-1", "$-1"}, {"$1000", "$1000"}, {"$1000000000", "$1000000000"}, {"$0x7fff3c000", "$34358935552"}, {"$1234", "$1234"}, {"$~15", "$-16"}, {"$16", "$16"}, {"-16(RSP)", "-16(RSP)"}, {"16(RSP)", "16(RSP)"}, {"1(R1)", "1(R1)"}, {"-1(R4)", "-1(R4)"}, {"18740(R5)", "18740(R5)"}, {"$2", "$2"}, {"$-24(R4)", "$-24(R4)"}, {"-24(RSP)", "-24(RSP)"}, {"$24(RSP)", "$24(RSP)"},
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 23.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java
// Verify context name byte[] nameBytes = new byte[4]; System.arraycopy(buffer, 16, nameBytes, 0, 4); assertEquals("DLse", new String(nameBytes)); // Verify lease key (first 16 bytes of data) byte[] leaseKeyBytes = new byte[16]; System.arraycopy(buffer, 24, leaseKeyBytes, 0, 16); assertArrayEquals(key.getKey(), leaseKeyBytes);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/HandleInfoTest.java
private byte[] testFileId; private Smb2LeaseKey testLeaseKey; @BeforeEach public void setUp() { testGuid = new HandleGuid(); testFileId = new byte[16]; for (int i = 0; i < 16; i++) { testFileId[i] = (byte) (i + 1); } testLeaseKey = new Smb2LeaseKey(); } @Test public void testHandleInfoCreation() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 4.6K bytes - Viewed (0) -
buildscripts/rewrite-old-new.sh
MINIO_CONFIG_DIR="$WORK_DIR/.minio" MINIO_OLD=("$PWD/minio.RELEASE.2020-10-28T08-16-50Z" --config-dir "$MINIO_CONFIG_DIR" server) MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server) if [ ! -x "$PWD/minio" ]; then echo "minio executable binary not found in current directory" exit 1 fi function download_old_release() { if [ ! -f minio.RELEASE.2020-10-28T08-16-50Z ]; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
private Smb2CloseResponse response; private byte[] testFileId; private String testFileName; @BeforeEach void setUp() { // Create a test file ID (16 bytes) testFileId = new byte[16]; for (int i = 0; i < 16; i++) { testFileId[i] = (byte) (i + 1); } testFileName = "test-file.txt"; response = new Smb2CloseResponse(mockConfig, testFileId, testFileName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0)