- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for interaction (2.37 sec)
-
CLAUDE.md
--- ## Architecture ### Module Structure ``` fess-crawler-parent/ ├── fess-crawler/ # Core framework ├── fess-crawler-lasta/ # LastaFlute DI integration └── fess-crawler-opensearch/ # OpenSearch backend ``` ### Key Design Patterns **Factory**: `CrawlerClientFactory`, `ExtractorFactory` - protocol/format-specific component selection
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
CLAUDE.md
mvn test # Run single unit test mvn test -Dtest=SearchEngineClientTest # Run integration tests (*Tests.java in src/test/java/org/codelibs/fess/it/) # Requires Fess server and OpenSearch running mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" # Run single integration test
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
README.md
$ mvn jdeb:jdeb # .deb package ### Generate Source Code $ mvn dbflute:download # (one time command) $ mvn dbflute:freegen $ mvn license:format ### Integration Tests Integration tests require a running Fess server with OpenSearch. Follow these steps: #### 1. Build Fess $ mvn antrun:run # Download OpenSearch plugins (if not done) $ mvn package # Build the packageRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriter.java
import org.opensearch.action.bulk.BulkRequestBuilder; import org.opensearch.action.bulk.BulkResponse; import org.opensearch.action.get.GetResponse; import org.opensearch.action.index.IndexAction; import org.opensearch.action.index.IndexRequest; import org.opensearch.action.index.IndexRequestBuilder; import org.opensearch.index.query.QueryBuilder; import org.opensearch.transport.client.Client; /**
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 20 08:32:33 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java
import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.opensearch.action.bulk.BulkRequestBuilder; import org.opensearch.action.index.IndexAction; import org.opensearch.action.index.IndexRequestBuilder; import org.opensearch.index.IndexNotFoundException; import org.opensearch.search.sort.SortBuilders; import org.opensearch.search.sort.SortOrder;
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 13:04:17 UTC 2025 - 8.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
import org.apache.pdfbox.pdmodel.common.filespecification.PDEmbeddedFile; import org.apache.pdfbox.pdmodel.common.filespecification.PDFileSpecification; import org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotation; import org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationFileAttachment; import org.apache.pdfbox.text.PDFTextStripper; import org.codelibs.core.lang.ThreadUtil; import org.codelibs.fess.crawler.entity.ExtractData;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 12.8K bytes - Viewed (0) -
.github/workflows/maven.yml
- name: Build with Maven run: mvn -B source:jar javadoc:jar package --file pom.xml - name: Run Fess run: bash src/test/resources/before_script.sh - name: Run Integration TestRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 06:47:15 UTC 2025 - 1.4K bytes - Viewed (0) -
MIGRATION.md
- **Crawl Sources**: URLs, file shares, databases being indexed - **Custom Configurations**: URL patterns, security rules, metadata fields - **Search Features**: Facets, suggestions, security filtering, ranking rules - **Integration Points**: Applications consuming search APIs - **User Permissions**: Access control and label configurations ### 2. Infrastructure Requirements Ensure your Fess environment meets these requirements:
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 12:40:11 UTC 2025 - 23.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* modification checking, and integration with the Fess search engine backend. * * <p>Key features include:</p> * <ul> * <li>Incremental crawling support with last-modified timestamp checking</li> * <li>Document expiration handling</li> * <li>Child URL extraction and queueing</li> * <li>Integration with Fess configuration and permission systems</li>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Controls the level of detail in system log messages. */ @Size(max = 10) public String logLevel; /** * Storage service endpoint URL for cloud storage integration. * Used for storing files in cloud storage services like S3. */ @Size(max = 1000) public String storageEndpoint; /** * Access key for cloud storage authentication.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0)