- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for SuggestConstants (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/constants/SuggestConstants.java
/** * This class contains constants used in the Fess Suggest module. * It is a utility class and should not be instantiated. */ public final class SuggestConstants { // Private constructor to prevent instantiation private SuggestConstants() { } /** An empty string constant. */ public static final String EMPTY_STRING = ""; /** The system property name for user dictionary encoding. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
import java.util.List; import java.util.Map; import org.codelibs.fess.suggest.concurrent.Deferred; import org.codelibs.fess.suggest.constants.FieldNames; import org.codelibs.fess.suggest.constants.SuggestConstants; import org.codelibs.fess.suggest.converter.ReadingConverter; import org.codelibs.fess.suggest.entity.SuggestItem; import org.codelibs.fess.suggest.exception.SuggesterException;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java
/* * TODO if (initialized) { return; } * * if (tokenizerFactory == null) { final String path = System.getProperty(SuggestConstants.USER_DICT_PATH); * final String encoding = System.getProperty(SuggestConstants.USER_DICT_ENCODING); final Map<String, String> * args = new HashMap<>(); args.put("mode", "normal"); args.put("discardPunctuation", "false"); if
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
import java.util.concurrent.atomic.AtomicInteger; import org.codelibs.core.lang.ThreadUtil; import org.codelibs.fess.suggest.constants.FieldNames; import org.codelibs.fess.suggest.constants.SuggestConstants; import org.codelibs.fess.suggest.entity.ElevateWord; import org.codelibs.fess.suggest.entity.SuggestItem; import org.codelibs.fess.suggest.index.SuggestIndexResponse;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java
import java.util.List; import java.util.Map; import org.codelibs.fess.suggest.concurrent.Deferred; import org.codelibs.fess.suggest.constants.FieldNames; import org.codelibs.fess.suggest.constants.SuggestConstants; import org.codelibs.fess.suggest.entity.SuggestItem; import org.codelibs.fess.suggest.exception.SuggesterException; import org.codelibs.fess.suggest.request.Request; import org.opensearch.action.search.SearchRequestBuilder;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
final Kind kind) { this.text = String.join(SuggestConstants.TEXT_SEPARATOR, text); this.readings = readings; this.fields = fields != null ? fields : new String[] {}; this.tags = tags != null ? tags : new String[] {}; if (roles == null || roles.length == 0) { this.roles = new String[] { SuggestConstants.DEFAULT_ROLE }; } else {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 25.1K bytes - Viewed (0)