Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for search_engine (0.04 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. default */
        String search_engine_TYPE = "search_engine.type";
    
        /** The key of the configuration. e.g. http://localhost:9201 */
        String search_engine_HTTP_URL = "search_engine.http.url";
    
        /** The key of the configuration. e.g.  */
        String search_engine_HTTP_SSL_certificate_authorities = "search_engine.http.ssl.certificate_authorities";
    
        /** The key of the configuration. e.g.  */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/Constants.java

        public static final String MATCHES_ALL_QUERY = "*:*";
    
        /** Configuration key for search engine HTTP address. */
        public static final String FESS_SEARCH_ENGINE_HTTP_ADDRESS = "fess.search_engine.http_address";
    
        /** Default number of results per page. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default starting count for pagination. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

                assertNull(e.getComponentName());
            }
        }
    
        public void test_throwAndCatchWithCause() {
            // Test throwing and catching the exception with cause
            String componentName = "searchEngine";
            Exception expectedCause = new IllegalStateException("Not initialized");
    
            try {
                throw new ContainerNotAvailableException(componentName, expectedCause);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top