- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 534 for reading_ (0.04 sec)
-
src/main/java/jcifs/smb1/util/MimeMap.java
import java.io.IOException; import java.io.InputStream; /** * MIME type mapping utility for file extensions. * Provides mappings between file extensions and their corresponding MIME types * by reading from a resource file containing extension-to-MIME-type mappings. */ public class MimeMap { private static final int IN_SIZE = 7000; private static final int ST_START = 1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java
totalParameterCount = readInt4(buffer, bufferIndex); if (bufDataStart == 0) { bufDataStart = totalParameterCount; } bufferIndex += 4; totalDataCount = readInt4(buffer, bufferIndex); bufferIndex += 4; parameterCount = readInt4(buffer, bufferIndex); bufferIndex += 4; parameterOffset = readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
bufferIndex += 2; this.parameterDisplacement = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.dataCount = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.dataOffset = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.dataDisplacement = SMBUtil.readInt2(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.3K bytes - Viewed (0) -
README.md
``` #### 2. Add Suggestion Documents ```java import org.codelibs.fess.suggest.entity.SuggestItem; // Create suggestion item with text, readings, and metadata String[][] readings = new String[2][]; readings[0] = new String[]{"kensaku", "engine"}; readings[1] = new String[]{"search", "injin"}; String[] tags = new String[]{"technology", "search"}; String[] roles = new String[]{"admin", "user"};
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/DocumentReader.java
*/ package org.codelibs.fess.suggest.index.contents.document; import java.io.Closeable; import java.util.Map; /** * Interface for reading documents and extracting their contents into a map. * Implementations of this interface should provide the logic for reading * documents and converting them into a key-value structure. * * <p>This interface extends {@link java.io.Closeable}, so implementations
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
// Verify complete structure assertEquals(9, SMBUtil.readInt2(buffer, bodyOffset)); // Structure size assertEquals(0, SMBUtil.readInt2(buffer, bodyOffset + 2)); // Tree flags assertEquals(Smb2Constants.SMB2_HEADER_LENGTH + 8, SMBUtil.readInt2(buffer, bodyOffset + 4)); // Path offset assertEquals(pathBytes.length, SMBUtil.readInt2(buffer, bodyOffset + 6)); // Path length // Verify path content
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
assertEquals(5120L, SMBUtil.readInt8(buffer, offset + 8)); assertEquals(8192, SMBUtil.readInt4(buffer, offset + 16)); offset += CHUNK_SIZE; assertEquals(12288L, SMBUtil.readInt8(buffer, offset)); assertEquals(13312L, SMBUtil.readInt8(buffer, offset + 8)); assertEquals(16384, SMBUtil.readInt4(buffer, offset + 16)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
// Verify first chunk assertEquals(100L, SMBUtil.readInt8(buffer, 0)); assertEquals(200L, SMBUtil.readInt8(buffer, 8)); assertEquals(300, SMBUtil.readInt4(buffer, 16)); // Verify second chunk assertEquals(400L, SMBUtil.readInt8(buffer, EXPECTED_SIZE)); assertEquals(500L, SMBUtil.readInt8(buffer, EXPECTED_SIZE + 8));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java
final int start = bufferIndex; this.namedPipeState = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.readDataAvailable = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.numberOfMessages = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.messageLength = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0)