- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 548 for thai (0.01 seconds)
-
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
super.setUp(testInfo); dictionaryItem = new TestDictionaryItem(); } @Test public void test_getId_defaultValue() { // Test that default ID value is 0 assertEquals(0L, dictionaryItem.getId()); } @Test public void test_getId_afterSetting() { // Test getting ID after setting it dictionaryItem.id = 123L;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java
} long duration = System.nanoTime() - startTime; // Should complete quickly (relaxed threshold for CI environments) // Note: Set-based O(1) lookup should be much faster than O(n) array iteration assertTrue("Set-based lookup should complete quickly (duration: " + duration / 1_000_000 + "ms)", duration < 1_000_000_000); // 1 second (relaxed from 100ms for CI) } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/UploadForm.java
/** * Form for uploading synonym files to the Fess search engine. * Synonyms are words or phrases that should be treated as equivalent during search operations. * This form is used in the admin interface to upload custom synonym dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which synonym dictionary configuration to update.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
dbflute_fess/dfprop/littleAdjustmentMap.dfprop
# The list of table DB names that need to be quoted. Specified tables is quoted on auto-generated SQL. # #; quoteTableNameList = list:{} # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o quoteColumnNameList: (NotRequired - Default list:{}) # The list of column DB names that need to be quoted. Specified columns is quoted on auto-generated SQL.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 25 06:04:16 GMT 2015 - 8.8K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java
Map<AccessorKey, ReplacedAccessor> oldAccessorsOfUpgradedProperties = (Map<AccessorKey, ReplacedAccessor>) context.getUserData().get(OLD_REMOVED_ACCESSORS_OF_UPGRADED_PROPERTIES); // Find accessors that were not removed but should be Map<AccessorKey, ReplacedAccessor> keptAccessors = new HashMap<>(oldAccessorsOfUpgradedProperties); keptAccessors.entrySet().removeIf(e -> {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Aug 19 15:30:48 GMT 2024 - 3.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
@Test public void test_suppressionAndStackTrace() { // Test that suppression and stack trace are disabled (as per constructor) String parentUrl = "http://example.com/parent"; String url = "http://example.com/child"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url); // Verify that suppression is disabled try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
// Test basic properties that exist assertNotNull(item.getInputs()); assertEquals(1, item.getInputs().length); assertEquals("input", item.getInputs()[0]); assertEquals("output", item.getOutput()); } @Test public void test_defensiveCopy_inputs() { // Test that getInputs() returns defensive copyCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java
BoolQueryBuilder boolQueryBuilder = (BoolQueryBuilder) result; // BooleanQueryCommand doesn't seem to apply boost correctly, // so we'll just check that it has clauses assertTrue(boolQueryBuilder.boost() > 0); // Check that the boolean query has the correct number of clauses assertFalse(boolQueryBuilder.must().isEmpty()); assertFalse(boolQueryBuilder.should().isEmpty());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/JobNotFoundException.java
* manipulate a job that does not exist in the system. */ public class JobNotFoundException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new JobNotFoundException with a message derived from the scheduled job. * * @param scheduledJob the scheduled job that was not found */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java
/** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Input terms (comma-separated) that will be mapped to the output term */ @Required @Size(max = 1000) public String inputs; /** Output term that input terms will be mapped to */ @Size(min = 1, max = 1000) public String output; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0)