- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 691 for field3 (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing path mapping configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing path map entries, * including tracking information for optimistic locking and audit trails. * Path mappings are used to transform document URLs and paths during indexing and display. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing related content configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing related content entries, * including tracking information for optimistic locking and audit trails. * Related content configurations define relationships between documents for enhanced search results.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing web authentication configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing web authentication entries, * including tracking information for optimistic locking and audit trails.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java
} /** * The search query used to find the document. * Optional field with maximum length of 1000 characters. */ @Size(max = 1000) public String q; /** * The document ID of the document to delete. * Required field for identifying the specific document. */ @Required public String docId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
*/ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values for creation. * Sets the CRUD mode to CREATE and populates created by and created time fields * with current user and timestamp information. */ public void initialize() { crudMode = CrudMode.CREATE; createdBy = ComponentUtil.getSystemHelper().getUsername();
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/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
doc.put("lang", "ja"); doc.put("title", "タイトル"); // content field is missing languageHelper.updateDocument(doc); assertEquals("ja", doc.get("lang")); assertEquals("タイトル", doc.get("title_ja")); assertNull(doc.get("content_ja")); // content field was not present } public void test_getSupportedLanguage_withWhitespace() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
/** * Creates a sort builder for the specified field and order. * This method handles special cases for score fields and regular field sorting. * * @param field the field name to sort by * @param order the sort order (ASC or DESC) * @return a configured sort builder */ protected SortBuilder<?> createFieldSortBuilder(final String field, final SortOrder order) {
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/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
public Integer pn; /** The number of results to display. */ @ValidateTypeFailure public Integer num; /** The languages. */ public String[] lang; /** The fields. */ public Map<String, String[]> fields = new HashMap<>(); /** The conditions. */ public Map<String, String[]> as = new HashMap<>(); /** The extra queries. */ public String[] ex_q;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
emptyGenerator = new EmptyGenerator(); // Test adding conditions - this should work without container emptyGenerator.addCondition("field1", "pattern1"); emptyGenerator.addCondition("field1", "pattern2"); emptyGenerator.addCondition("field2", "pattern.*"); // We can't test isTarget properly without container, // but we can verify conditions are added
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
queryCommand = new PrefixQueryCommand(); queryCommand.register(); } private void setNotAnalyzedFields(final String... fields) { Set<String> notAnalyzedFieldSet = new HashSet<>(); for (String field : fields) { notAnalyzedFieldSet.add(field); } queryFieldConfig.notAnalyzedFieldSet = notAnalyzedFieldSet; } public void test_getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0)