- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for setaun (0.11 sec)
-
CLAUDE.md
## Development Commands ### Setup ```bash # Download OpenSearch plugins (required before first build) mvn antrun:run # Generate DBFlute source code (when schema changes) mvn dbflute:download # One-time setup mvn dbflute:freegen mvn license:format ``` ### Build ```bash # Standard build mvn package # Clean build
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken(); return asHtml(path_AdminGeneral_AdminGeneralJsp).useForm(EditForm.class, setup -> { setup.setup(form -> { updateForm(fessConfig, form); }); }); } /** * Sends a test mail using the provided notification settings. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java
RenderDataUtil.register(data, "accessTokenItems", accessTokenService.getAccessTokenList(accessTokenPager)); }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(accessTokenPager, form, op -> op.include("id")); }); }); } private HtmlResponse asEditHtml() {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 15.9K bytes - Viewed (0) -
CLAUDE.md
**Test Resources**: `src/test/resources/` **Pattern**: ```java public class MyTest extends UTFlute { @Override protected void setUp() throws Exception { super.setUp(); // Setup } public void test_method_scenario() throws Exception { // Given // When // Then } } ```Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
RenderDataUtil.register(data, "labelTypeItems", labelTypeService.getLabelTypeList(labelTypePager)); // page navi }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(labelTypePager, form, op -> op.include("name", "value")); }); }); } /** * Returns HTML response for the edit page.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 17.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
* This test covers URL parsing, connection state management, and thread-safety. */ public class HandlerTest extends PlainTestCase { @Override protected void setUp() throws Exception { super.setUp(); new StandardCrawlerContainer(); } /** * Test that the gcs protocol is correctly recognized. */ public void test_protocol() throws Exception {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * View class for managing facet query configurations and their display. * This class handles the setup and organization of query facets for the search interface, * including automatic generation of file type facets and custom query mappings. */ public class FacetQueryView { /** Logger instance for this class */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
} private HtmlResponse asListHtml(final UploadForm uploadForm) { return asHtml(path_AdminDesign_AdminDesignJsp).useForm(DesignForm.class, setup -> { setup.setup(form -> { copyBeanToBean(uploadForm, form, op -> op.include("designFile", "designFileName")); }); }); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
README.md
$ git clone https://github.com/codelibs/fess.git ``` 2. Import the cloned repository as a [Maven](https://maven.apache.org/) project on [Eclipse](https://www.eclipse.org/eclipseide/) or another IDE. ### Setup for OpenSearch Plugins Run antrun:run to download plugins into the plugins directory: $ mvn antrun:run ### Run FessRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java
private static final String ACCESS_KEY = "AKIAIOSFODNN7EXAMPLE"; public S3Client s3Client; private GenericContainer minioServer; @Override protected void setUp() throws Exception { super.setUp(); final int port = 9000; logger.info("Creating {}", IMAGE_NAME); minioServer = new GenericContainer<>(IMAGE_NAME)// .withEnv("MINIO_ACCESS_KEY", ACCESS_KEY)//Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 20.5K bytes - Viewed (0)