- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 283 for word (0.02 sec)
-
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
}).createPageNumberList()); return elevateWordList; } /** * Retrieves a specific elevate word by its ID, including associated label type information. * * @param id the unique identifier of the elevate word * @return OptionalEntity containing the elevate word if found, or empty if not found */ public OptionalEntity<ElevateWord> getElevateWord(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/DownloadForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.elevateword; /** * The download form for Elevate Word. * This form is used for downloading elevate word configurations from the admin interface. * */ public class DownloadForm { /** * Default constructor. */ public DownloadForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 963 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
/** * Dictionary item for protected words. * This class represents a single protected word entry in the dictionary. */ public class ProtwordsItem extends DictionaryItem { private final String input; private String newInput; /** * Constructor for ProtwordsItem. * @param id the unique identifier for this item * @param input the protected word input */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/DownloadBody.java
package org.codelibs.fess.app.web.api.admin.elevateword; import org.codelibs.fess.app.web.admin.elevateword.DownloadForm; /** * Download body for elevate word API operations. * This class extends the DownloadForm to provide request body handling * for downloading elevate word configurations via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */
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/api/admin/badword/DownloadBody.java
*/ package org.codelibs.fess.app.web.api.admin.badword; import org.codelibs.fess.app.web.admin.badword.DownloadForm; /** * Download body for Bad Word API operations. * This class extends the DownloadForm to provide request body handling * for downloading bad word dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/EditBody.java
package org.codelibs.fess.app.web.api.admin.badword; import org.codelibs.fess.app.web.admin.badword.EditForm; /** * Request body class for bad word edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for bad word management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Crc32cHashFunction.java
static final int INVERSE_COMPUTE_FOR_WORD_OF_ALL_1S = 0xeee3ddcd; static int computeForWord(int word) { return strideTable[3][word & 0xFF] ^ strideTable[2][(word >>> 8) & 0xFF] ^ strideTable[1][(word >>> 16) & 0xFF] ^ strideTable[0][word >>> 24]; } static int combine(int csum, int crc) { csum ^= crc; for (int i = 0; i < 4; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 21.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
/** Number of records per page */ private int pageSize; /** Current page number */ private int currentPageNumber; /** Search parameter: elevate word ID */ public String id; /** Search parameter: suggest word */ public String suggestWord; /** Search parameter: boost value */ public String boost; /** Search parameter: created by user */ public String createdBy;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
break; default: break; } return OptionalEntity.empty(); } /** * Get the protected word item. * @param form The create form. * @param hook The error hook. * @return The protected word item. */ protected OptionalEntity<ProtwordsItem> createProtwordsItem(final CreateForm form, final VaErrorHook hook) { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
// Test with long phrase (many terms) PhraseQuery.Builder builder = new PhraseQuery.Builder(); String[] words = { "this", "is", "a", "very", "long", "phrase", "query" }; for (String word : words) { builder.add(new Term(Constants.DEFAULT_FIELD, word)); } PhraseQuery phraseQuery = builder.build(); QueryContext context = new QueryContext("test", false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0)