Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 173 for integration (0.43 sec)

  1. README.md

        $ mvn jdeb:jdeb # .deb package
    
    ### Generate Source Code
    
        $ mvn dbflute:download # (one time command)
        $ mvn dbflute:freegen
        $ mvn license:format
    
    ### Integration Tests
    
    Launch Fess Server and run the following command:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  2. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. CHANGELOG.md

    | com.squareup.okhttp3:mockwebserver3-junit4:5.0.0 | mockwebserver3.junit4 | Optional JUnit 4 integration.     |
    | com.squareup.okhttp3:mockwebserver3-junit5:5.0.0 | mockwebserver3.junit5 | Optional JUnit 5 integration.     |
    | com.squareup.okhttp3:mockwebserver:5.0.0         | okhttp3.mockwebserver | Obsolete. Depends on JUnit 4.     |
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  4. okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

    import java.util.concurrent.ThreadFactory
    import java.util.concurrent.TimeUnit
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    
    /**
     * Integration test to confirm that [TaskRunner] works with a real backend. Business logic is all
     * exercised by [TaskRunnerTest].
     *
     * This test is doing real sleeping with tolerances of 250 ms. Hopefully that's enough for even the
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

    /**
     * Helper class for crawler logging operations.
     * Extends LogHelperImpl to provide specialized logging functionality for crawler operations,
     * including failure URL tracking and crawler statistics integration.
     */
    public class CrawlerLogHelper extends LogHelperImpl {
    
        /**
         * Creates a new instance of CrawlerLogHelper.
         */
        public CrawlerLogHelper() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

        // is difficult to maintain due to frequent API changes.
        // The focus is on testing the class structure and basic functionality
        // that can be verified without full integration testing.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  7. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java

    import org.dbflute.s2dao.metadata.TnBeanMetaDataFactory;
    import org.dbflute.twowaysql.factory.SqlAnalyzerFactory;
    
    /**
     * Implementation of DBFlute's InvokerAssistant interface for OpenSearch integration.
     * This class provides basic scaffolding for DBFlute behavior invoker assistance,
     * primarily returning null implementations as placeholders for OpenSearch-specific functionality.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.RestAssured;
    import io.restassured.path.json.JsonPath;
    
    /**
     * Integration Tests which need an execution of crawler
     * - /api/admin/joblog
     * - /api/admin/crawlinginfo
     * - /api/admin/failureurl
     * - /api/admin/searchlist
     * */
    @Tag("it")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            assertNotNull("SystemHelper should be registered", ComponentUtil.getSystemHelper());
            assertNotNull("FessConfig should be set", ComponentUtil.getFessConfig());
            assertTrue("Component integration test should be fast", true);
        }
    
        public void test_basic_functionality() {
            // Basic functionality test without complex operations
            try {
                List<String> emptyIds = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top