Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for completa (2.18 sec)

  1. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     *
     * # Single Logout Service URL
     * saml.sp.single_logout_service.url=https://your-fess-server.example.com/sso/logout
     * </pre>
     *
     * <h2>Complete Configuration Example (Okta)</h2>
     * <pre>
     * sso.type=saml
     *
     * # IdP settings from Okta SAML setup instructions
     * saml.idp.entityid=http://www.okta.com/your-app-id
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

        /**
         * Performs a search operation and populates the search render data with results.
         *
         * This method handles the complete search workflow including parameter processing,
         * query execution, result formatting, and logging. It supports automatic retry
         * with escaped queries if the initial search fails.
         *
    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. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                }
            } finally {
                waitingThreadNames.remove(threadName);
            }
            return true;
        }
    
        /**
         * Waits for all waiting threads to complete.
         */
        public void waitForNoWaitingThreads() {
            int count = waitingThreadNames.size();
            while (count > 0) {
                if (logger.isInfoEnabled()) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top