Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for run (0.01 sec)

  1. .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 Test
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 06:47:15 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. 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 package
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
  3. 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)
  4. .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 lines
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. .github/workflows/maven.yml

        steps:
        - uses: actions/checkout@v4
        - name: Set up JDK 17
          uses: actions/setup-java@v4
          with:
            java-version: '17'
            distribution: 'temurin'
        - name: Build with Maven
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 677 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

             */
            @Option(name = "-t", aliases = "--numOfThreads", metaVar = "numOfThreads", usage = "The number of threads")
            protected int numOfThreads = 1;
    
            /**
             * Whether to run in cleanup mode to remove old thumbnails.
             */
            @Option(name = "-c", aliases = "--cleanup", usage = "Clean-Up mode")
            protected boolean cleanup;
    
            /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top