- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 433 for readings2 (0.04 sec)
-
src/test/java/jcifs/internal/util/SMBUtilTest.java
(byte) 0xCD, (byte) 0xAB // 0xABCD }; assertEquals(0x1234, SMBUtil.readInt2(src, 0)); assertEquals(0xFFFF, SMBUtil.readInt2(src, 2)); assertEquals(0x0000, SMBUtil.readInt2(src, 4)); assertEquals(0xABCD, SMBUtil.readInt2(src, 6)); } @Test void testReadInt4() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java
allocationSize = readInt8(buffer, bufferIndex); bufferIndex += 8; endOfFile = readInt8(buffer, bufferIndex); bufferIndex += 8; fileType = readInt2(buffer, bufferIndex); bufferIndex += 2; deviceState = readInt2(buffer, bufferIndex); bufferIndex += 2; directory = (buffer[bufferIndex++] & 0xFF) > 0; return bufferIndex - start; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
assertEquals(0x0001, SMBUtil.readInt2(buffer, 0)); // Test with FS_SIZE_INFO (3) trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.FS_SIZE_INFO); buffer = new byte[10]; trans2QueryFSInfo.writeParametersWireFormat(buffer, 0); assertEquals(0x0103, SMBUtil.readInt2(buffer, 0)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushRequestTest.java
// Verify bytes written assertEquals(24, written); // Verify structure size (should be 24) assertEquals(24, SMBUtil.readInt2(buffer, offset)); // Verify Reserved1 (2 bytes at offset+2, should be 0) assertEquals(0, SMBUtil.readInt2(buffer, offset + 2)); // Verify Reserved2 (4 bytes at offset+4, should be 0) assertEquals(0, SMBUtil.readInt4(buffer, offset + 4));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
if (subCommand == SmbComTransaction.TRANS2_FIND_FIRST2) { sid = readInt2(buffer, bufferIndex); bufferIndex += 2; } numEntries = readInt2(buffer, bufferIndex); bufferIndex += 2; isEndOfSearch = ((buffer[bufferIndex] & 0x01) == 0x01) == true; bufferIndex += 2; eaErrorOffset = readInt2(buffer, bufferIndex); bufferIndex += 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
bufferIndex += 2; flags = readInt2(buffer, bufferIndex); bufferIndex += 2; if (version == 3) { proximity = readInt2(buffer, bufferIndex); bufferIndex += 2; ttl = readInt2(buffer, bufferIndex); bufferIndex += 2; pathOffset = readInt2(buffer, bufferIndex); bufferIndex += 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/Referral.java
bufferIndex += 2; this.rflags = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; if (this.version == 3) { this.proximity = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.ttl = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java
final int start = bufferIndex; final int structureSize = SMBUtil.readInt2(buffer, bufferIndex); if (structureSize != 9) { throw new SMBProtocolDecodingException("Expected structureSize = 9"); } final int bufferOffset = SMBUtil.readInt2(buffer, bufferIndex + 2) + getHeaderStart(); bufferIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzer.java
/** * Analyzes the given text and returns a list of tokens along with their readings. * * @param text the text to analyze * @param field the field associated with the text * @param lang the language of the text * @return a list of analyzed tokens with their readings */ List<AnalyzeToken> analyzeAndReading(String text, String field, String lang);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequestTest.java
assertEquals(DEFAULT_SECURITY_MODE, SMBUtil.readInt2(buffer, 20)); // Verify dialect count (2 bytes) assertEquals(defaultDialects.length, SMBUtil.readInt2(buffer, 22)); // Verify dialects int dialectOffset = 24; for (int i = 0; i < defaultDialects.length; i++) { assertEquals(defaultDialects[i], SMBUtil.readInt2(buffer, dialectOffset + i * 2)); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.7K bytes - Viewed (0)