- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 283 for word (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
/** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The input word that should be stemmed differently */ @Required @Size(max = 1000) public String input; /** The desired stem output for the input word */ @Required @Size(max = 1000) public String output; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file. errors.failed_to_download_badword_file = Failed to download a bad word file. errors.failed_to_upload_badword_file = Failed to upload a bad word file. errors.failed_to_download_mapping_file = Failed to download a mapping file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file. errors.failed_to_download_badword_file = Failed to download a bad word file. errors.failed_to_upload_badword_file = Failed to upload a bad word file. errors.failed_to_download_mapping_file = Failed to download a mapping file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Seed value for popular word suggestion. suggest.popular.word.seed=0 # Tags for popular word suggestion. suggest.popular.word.tags= # Fields for popular word suggestion. suggest.popular.word.fields= # Excluded words for popular word suggestion. suggest.popular.word.excludes= # Number of popular words to suggest. suggest.popular.word.size=10 # Window size for popular word suggestion.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BadWordPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for bad word management with pagination support. * Provides pagination functionality for bad word lists. */ public class BadWordPager implements Serializable { private static final long serialVersionUID = 1L; /** Default page size for bad word pagination. */ public static final int DEFAULT_PAGE_SIZE = 20;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for bad word administration. * Extends BaseSearchBody with bad word-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The bad word ID to search for. */ public String id; /** * Default constructor for SearchBody. */ public SearchBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
} break; default: break; } return OptionalEntity.empty(); } /** * Get the bad word. * @param form The create form. * @return The bad word. */ public static OptionalEntity<BadWord> getBadWord(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
public Integer crudMode; /** * The bad word to be filtered from search suggestions. */ @Required @Pattern(regexp = "[^\\s]+") public String suggestWord; /** * The username of the user who created this bad word entry. */ @Size(max = 1000) public String createdBy; /** * The timestamp when this bad word entry was created. */ @ValidateTypeFailure
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
* Represents EOF (End of File). */ public static final int TT_EOF = -1; /** * Represents a Quote. */ public static final int TT_QUOTE = '\''; /** * Represents a word. */ public static final int TT_WORD = -3; private static final int TT_NOTHING = -4; private static final int NEED_CHAR = Integer.MAX_VALUE; private static final int QUOTE = '\'';
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
errors.failed_to_download_elevate_file = Fehler beim Herunterladen einer Elevate-Word-Datei. errors.failed_to_upload_elevate_file = Fehler beim Hochladen einer Elevate-Word-Datei. errors.failed_to_download_badword_file = Fehler beim Herunterladen einer Bad-Word-Datei. errors.failed_to_upload_badword_file = Fehler beim Hochladen einer Bad-Word-Datei. errors.failed_to_download_mapping_file = Fehler beim Herunterladen einer Mapping-Datei.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 12.7K bytes - Viewed (0)