- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for run (0.01 sec)
-
.github/workflows/maven.yml
- name: Install fess-parent run: | cd fess-parent mvn install -Dgpg.skip=true - name: Download Plugins with Maven run: mvn -B antrun:run --file pom.xml - 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) -
README.md
### Setup for OpenSearch Plugins Run antrun:run to download plugins into the plugins directory: $ mvn antrun:run ### Run Fess Run or debug org.codelibs.fess.FessBoot on your IDE, and then access http://localhost:8080/ ### Build Package Run the `package` goal and then the release file will be created in target/releases. $ mvn packageRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
CLAUDE.md
``` ### Testing ```bash # Run unit tests (*Test.java) 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) -
.github/workflows/codeql-analysis.yml
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v3 # âšī¸ Command-line programs to run using the OS shell. # đ https://git.io/JvXDl # âī¸ If the Autobuild fails above, remove it and uncomment the following three linesRegistered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 2.1K bytes - Viewed (0) -
CLAUDE.md
## Development Commands ### Build and Test ```bash # Clean build and run tests mvn clean test # Full build with packaging mvn clean package # Run tests only mvn test # Run specific tests mvn test -Dtest=CurlTest mvn test -Dtest=CurlRequestTest mvn test -Dtest=CurlResponseTest mvn test -Dtest=CurlExceptionTest ```
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 3.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java
} /** * Test run method with no URLs in queue. */ public void test_run_noUrlsInQueue() throws Exception { when(urlQueueService.poll(anyString())).thenReturn(null); crawlerContext.setStatus(CrawlerStatus.RUNNING); crawlerContext.maxThreadCheckCount = 1; // Will exit after 1 check crawlerThread.run();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.3K bytes - Viewed (0) -
.github/workflows/maven.yml
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 677 bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
/** * Flag indicating whether the crawler runs in background mode. */ protected boolean background = false; /** * Flag indicating whether crawler threads run as daemon threads. */ protected boolean daemon = false; /** * Priority for crawler threads. */ protected int threadPriority = Thread.NORM_PRIORITY; /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 17K bytes - Viewed (0) -
CLAUDE.md
--- ## Development Workflow ### Build Commands ```bash mvn compile # Compile mvn test # Run all tests mvn test -Dtest=SuggesterTest # Run specific test mvn package # Package JAR mvn formatter:format license:format # Format code and apply licenses
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 16K bytes - Viewed (0)