- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for 84 (0.03 sec)
-
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
this.ownerUserSid = new SID(buffer, bufferIndex); bufferIndex += 8 + 4 * this.ownerUserSid.sub_authority_count; } if (ownerGOffset > 0) { bufferIndex = start + ownerGOffset; this.ownerGroupSid = new SID(buffer, bufferIndex); bufferIndex += 8 + 4 * this.ownerGroupSid.sub_authority_count; } bufferIndex = start + daclOffset;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java
} @Test @DisplayName("readSecurityBuffer correctly extracts data") void testReadSecurityBuffer() { byte[] buf = new byte[8 + 4]; byte[] payload = { 0x11, 0x22, 0x33, 0x44 }; NtlmMessage.writeSecurityBuffer(buf, 0, 8, payload); byte[] extracted = NtlmMessage.readSecurityBuffer(buf, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNtTransactionResponseTest.java
} @Test void testReadParameterWordsWireFormat_bufDataStartIsZero() { // Test case when bufDataStart is initially 0. byte[] buffer = new byte[37]; // 3 reserved + 8*4 bytes for int4 values + 2 bytes for setupCount int bufferIndex = 0; // Reserved bytes buffer[bufferIndex++] = 0x00; buffer[bufferIndex++] = 0x00; buffer[bufferIndex++] = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
void testReadDataWireFormat() throws SMBProtocolDecodingException { byte[] buffer = new byte[256]; response.setDataWireFormatReturn(84); int result = response.readDataWireFormat(buffer, 0, buffer.length); assertEquals(84, result); } @Test @DisplayName("Test readParametersWireFormat with exception") void testReadParametersWireFormatWithException() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
this.suppliedWorkstation = suppliedWorkstation; } @Override public byte[] toByteArray() { try { int flags = getFlags(); int size = 8 * 4 + ((flags & NTLMSSP_NEGOTIATE_VERSION) != 0 ? 8 : 0); byte[] domain = {}; final String suppliedDomainString = getSuppliedDomain();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
listOf("5.0", "7.3"), // 5.0 <=version < 7.3 listOf("7.3", "7.6"), // 7.3 <=version < 7.6 listOf("7.6", "8.2"), // 7.6 <=version < 8.2 listOf("8.2", "8.4"), // 8.2 <=version < 8.4 listOf("8.4", "8.6"), // 8.4 <=version < 8.6 listOf("8.6", "8.8"), // 8.6 <=version < 8.8 listOf("8.8", "8.10"), // 8.8 <=version < 8.10 listOf("8.10", "8.13"), // 8.10 <=version < 8.13
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 05:08:24 UTC 2025 - 8.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Fingerprint2011Test.java
.put(261, 0xab753446a3bbd532L) .put(208, 0x54242fe06a291c3fL) .put(166, 0x4f7acff7703a635bL) .put(132, 0xa784bd0a1f22cc7fL) .put(105, 0xf19118e187456638L) .put(84, 0x3e2e58f9196abfe5L) .put(67, 0xd38ae3dec0107aeaL) .put(53, 0xea3033885868e10eL) .put(42, 0x1394a146d0d7e04bL) .put(33, 0x9962499315d2e8daL) .put(26, 0x0849f5cfa85489b5L)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 7.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- cloud.google.com/go/accesscontextmanager: v1.8.1 → v1.8.4 - cloud.google.com/go/aiplatform: v1.48.0 → v1.58.0 - cloud.google.com/go/analytics: v0.21.3 → v0.22.0 - cloud.google.com/go/apigateway: v1.6.1 → v1.6.4 - cloud.google.com/go/apigeeconnect: v1.6.1 → v1.6.4 - cloud.google.com/go/apigeeregistry: v0.7.1 → v0.8.2 - cloud.google.com/go/appengine: v1.8.1 → v1.8.4 - cloud.google.com/go/area120: v0.8.1 → v0.8.4
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java
// Verify additional information assertEquals(0x12345678, SMBUtil.readInt4(buffer, 80)); // Verify query flags assertEquals(0xABCDEF00, SMBUtil.readInt4(buffer, 84)); // Verify file ID byte[] actualFileId = new byte[16]; System.arraycopy(buffer, 88, actualFileId, 0, 16); assertArrayEquals(testFileId, actualFileId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
buf[idx++] = 0; // totalDataCount high idx += 2; // 2-byte reserved field (not 4 as the code shows) buf[6] = 2; // parameterCount low buf[7] = 0; // high buf[8] = 4; // parameterOffset low buf[9] = 0; // high buf[10] = 6; // parameterDisplacement low buf[11] = 0; // high buf[12] = 7; // dataCount low buf[13] = 0; // high
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0)