- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 512 for reading_ (0.06 sec)
-
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
*/ package org.codelibs.fess.suggest.constants; public final class FieldNames { public static final String ID = "_id"; public static final String TEXT = "text"; public static final String READING_PREFIX = "reading_"; public static final String SCORE = "score"; public static final String QUERY_FREQ = "queryFreq"; public static final String DOC_FREQ = "docFreq"; public static final String USER_BOOST = "userBoost";
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
final Map<String, Object> secondLine = new HashMap<>(); secondLine.put("text", item.getText()); // reading final String[][] readings = item.getReadings(); for (int i = 0; i < readings.length; i++) { secondLine.put("reading_" + i, readings[i]); } secondLine.put("fields", item.getFields()); secondLine.put("queryFreq", item.getQueryFreq());
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java
protected void setUp() throws Exception { file1 = File.createTempFile("kuromoji_", ".txt"); FileUtil.write( file1.getAbsolutePath(), "token1,seg1,reading1,pos1\ntoken2,seg2,reading2,pos2\ntoken3,seg3,reading3,pos3" .getBytes(Constants.UTF_8)); } @Override protected void tearDown() throws Exception { file1.delete(); } */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
next = SMBUtil.readInt4(buffer, cci); cci += 4; int nameOffset = SMBUtil.readInt2(buffer, cci); int nameLength = SMBUtil.readInt2(buffer, cci + 2); cci += 4; int dataOffset = SMBUtil.readInt2(buffer, cci + 2); cci += 4; int dataLength = SMBUtil.readInt4(buffer, cci); cci += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java
bufferIndex += 8; extFileAttributes = readInt4( buffer, bufferIndex ); bufferIndex += 4; allocationSize = readInt8( buffer, bufferIndex ); bufferIndex += 8; endOfFile = readInt8( buffer, bufferIndex ); bufferIndex += 8; fileType = readInt2( buffer, bufferIndex ); bufferIndex += 2; deviceState = readInt2( buffer, bufferIndex ); bufferIndex += 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
// e.changeTime = readTime( buffer, bufferIndex + 32 ); e.endOfFile = readInt8( buffer, bufferIndex + 40 ); // e.allocationSize = readInt8( buffer, bufferIndex + 48 ); e.extFileAttributes = readInt4( buffer, bufferIndex + 56 ); e.fileNameLength = readInt4( buffer, bufferIndex + 60 ); // e.eaSize = readInt4( buffer, bufferIndex + 64 ); // e.shortNameLength = buffer[bufferIndex + 68] & 0xFF;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/SMBUtil.java
+ ( ( src[ srcIndex + 3 ] & 0xFF ) << 24 ); } public static long readInt8 ( byte[] src, int srcIndex ) { return ( readInt4(src, srcIndex) & 0xFFFFFFFFL ) + ( (long) ( readInt4(src, srcIndex + 4) ) << 32 ); } public static void writeInt8 ( long val, byte[] dst, int dstIndex ) { dst[ dstIndex ] = (byte) ( val ); dst[ ++dstIndex ] = (byte) ( val >>= 8 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
// these are common between SYNC/ASYNC SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; SMBUtil.readInt2(buffer, bufferIndex); this.creditCharge = SMBUtil.readInt2(buffer, bufferIndex + 2); bufferIndex += 4; this.status = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.command = SMBUtil.readInt2(buffer, bufferIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionRetargetResponsePacket.java
if ( in.read(buffer, bufferIndex, this.length) != this.length ) { throw new IOException("unexpected EOF reading netbios retarget session response"); } int addr = readInt4(buffer, bufferIndex); bufferIndex += 4; new NbtAddress(null, addr, false, NbtAddress.B_NODE); readInt2(buffer, bufferIndex); return this.length; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionServicePacket.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0)