- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 321 for Reload (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java
import jakarta.validation.constraints.Pattern; /** * Form for uploading design files to customize the appearance of the Fess search interface. * This form is used in the admin interface to upload CSS, JSP, and other design-related files * that customize the look and feel of the search application. */ public class UploadForm { /** * The multipart file containing design resources to be uploaded.
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/dict/protwords/UploadForm.java
/** * Form for uploading protected words files to the Fess search engine. * Protected words are terms that should not be stemmed or modified during text analysis. * This form is used in the admin interface to upload custom protected words dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which protected words dictionary configuration to update.
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/app/web/api/admin/storage/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading files to the storage system via the admin API. * This form is used in the admin API interface to upload files to the storage backend * with optional path specification for file organization. */ public class UploadForm { /** * The storage path where the file should be uploaded.
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/core/xml/SchemaUtil.java
} /** * Generates a {@link Schema} for W3C XML Schema from a {@link Source}. * * @param schema * {@link Source} to load the W3C XML Schema. Must not be {@literal null}. * @return {@link Schema} */ public static Schema newW3cXmlSchema(final Source schema) { assertArgumentNotNull("schema", schema);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java
configHelper.setLoadCallback(() -> -1); assertEquals(-1, configHelper.load()); } static class TestConfigHelper extends AbstractConfigHelper { private final AtomicInteger loadCallCount = new AtomicInteger(0); private LoadCallback loadCallback = () -> 0; @Override public int load() { loadCallCount.incrementAndGet();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 00:03:47 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * Helper class for managing related query configurations. * This class provides functionality to load, cache, and retrieve related queries * based on search terms and virtual hosts. Related queries are used to suggest * alternative or supplementary search terms to improve search results. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping_edit.jsp
<la:link href="../uploadpage/${f:u(dictId)}" styleClass="btn btn-success btn-xs"> <em class="fa fa-upload"> <la:message key="labels.dict_mapping_link_upload"/> </la:link> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 7.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride_details.jsp
styleClass="btn btn-success btn-xs ${f:h(editableClass)}"> <em class="fa fa-upload"> <la:message key="labels.dict_stemmeroverride_link_upload"/> </la:link> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 7.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
} public void test_load_returnValue() { int result = labelTypeHelper.load(); assertEquals(2, result); // Based on mock data } public void test_getMatchedLabelValueSet_multipleMatches() { // Load some test data first labelTypeHelper.load(); Set<String> result = labelTypeHelper.getMatchedLabelValueSet("/test/path"); assertNotNull(result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
public void test_load() { // Test load method User user = createTestUser("testuser", "password123"); User result = ldapChain.load(user); assertSame(user, result); assertEquals(user, testLdapManager.appliedUser); assertTrue(testLdapManager.applyCalled); } public void test_load_withNullUser() { // Test load with null user
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0)