Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Response (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Gets the redirect response to the login page.
         *
         * @param response The original response.
         * @return The redirect response.
         */
        public HtmlResponse getRedirectResponseToLogin(final HtmlResponse response) {
            return response;
        }
    
        /**
         * Gets the redirect response to the root page.
         *
         * @param response The original response.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                builderLambda.accept(builder);
                final UpdateResponse response = builder.execute().actionGet(fessConfig.getIndexIndexTimeout());
                return response.getResult() == Result.CREATED || response.getResult() == Result.UPDATED;
            } catch (final OpenSearchException e) {
                throw new SearchEngineClientException("Failed to update doc  " + id, e);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  3. README.md

        $ unzip target/releases/fess-*.zip
        $ ./fess-*/bin/fess &
    
    Wait for Fess to be ready (this may take up to 60 seconds):
    
        $ curl -s "http://localhost:8080/api/v1/health"
    
    You should see a JSON response when Fess is ready.
    
    #### 3. Clone Test Data
    
    Required for SearchApiTests:
    
        $ git clone https://github.com/codelibs/fess-testdata.git /tmp/fess-testdata
    
    #### 4. Run Integration Tests
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
Back to top