- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 264 for creation (2.7 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
// Test task creation with null path Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", "application/pdf"); Tuple3<String, String, String> task = thumbnailGenerator.createTask(null, docMap); assertNull(task); } public void test_createTask_withEmptyPath() { // Test task creation with empty path
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Pattern; import jakarta.validation.constraints.Size; /** * Form class for creating access tokens in the admin interface. * This form handles the creation of API access tokens with configurable permissions and expiration dates. */ public class CreateForm { /** * Creates a new CreateForm instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
*/ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of crawling information records based on the provided pager criteria. * The results are ordered by creation time in descending order and the pager is updated with * pagination metadata including total count and page number list. * * @param crawlingInfoPager the pager object containing search criteria and pagination settings
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
public void test_create_searchLogEnabled() { // Test configuration for search log creation SuggestCreator.Options options = new SuggestCreator.Options(); assertNotNull(options); } // Test create with documents enabled public void test_create_documentsEnabled() { // Test configuration for document creation SuggestCreator.Options options = new SuggestCreator.Options();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
// Test inherited behavior from ComponentCreatorImpl public void test_getNamingConvention() { assertSame(namingConvention, pagerCreator.getNamingConvention()); } // Test component name creation public void test_fromClassNameToComponentName() { // Test with class name ending with Pager String componentName = namingConvention.fromClassNameToComponentName("com.example.TestPager");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for creating new stopwords dictionary entries. * This form handles the creation of stopwords that should be * excluded from search indexing and analysis. * */ public class CreateForm { /** * Creates a new CreateForm instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java
import org.codelibs.fess.dict.DictionaryFile; import org.codelibs.fess.dict.DictionaryItem; import jakarta.annotation.PostConstruct; /** * Creator for character mapping dictionary files. * Handles the creation and management of character mapping dictionaries used for text normalization. */ public class CharMappingCreator extends DictionaryCreator {
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/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for creating new stemmer override dictionary entries. * This form handles the creation of stemmer override rules that modify * the stemming behavior for specific words. * */ public class CreateForm { /** * Creates a new CreateForm instance.
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/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java
import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * Form class for creating new duplicate host configuration entries. * This form handles the creation of duplicate host mappings that redirect * crawling from duplicate hostnames to the regular canonical hostname. */ public class CreateForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0)