Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for are (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
        @Size(max = 1000)
        public String defaultLabelValue;
    
        /**
         * Default sort order for search results.
         * Defines how search results are ordered when no specific sort is requested.
         */
        @Size(max = 1000)
        public String defaultSortValue;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. README.md

    server](https://fess.codelibs.org/15.3/admin/webconfig-guide.html), [file system](https://fess.codelibs.org/15.3/admin/fileconfig-guide.html), or [Data Store](https://fess.codelibs.org/15.3/admin/dataconfig-guide.html) (such as a CSV or database). Many file formats are supported including (but not limited to): Microsoft Office, PDF, and zip.
    
    *[Fess Site Search](https://github.com/codelibs/fess-site-search)* is a free alternative to [Google Site Search](https://enterprise.google.com/search/products/gss.html)....
    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. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Are you sure you want to delete? */
        public static final String LABELS_search_list_delete_confirmation = "{labels.search_list_delete_confirmation}";
    
        /** The key of the message: Delete All by this Query */
        public static final String LABELS_search_list_button_delete_all = "{labels.search_list_button_delete_all}";
    
        /** The key of the message: Are you sure you want to delete all by this query? */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 156.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                logger.debug("Initializing {}", this.getClass().getSimpleName());
            }
            ComponentUtil.getSsoManager().register(this);
    
            // Default SAML settings
            // NOTE: Many security settings are set to false by default for compatibility.
            // For production use, it is STRONGLY RECOMMENDED to enable security features:
            // - onelogin.saml2.security.authnrequest_signed
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  5. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        }
    
        /**
         * Updates the user's group and role membership information with lazy loading for parent groups.
         * Direct groups are retrieved synchronously, while parent groups are fetched asynchronously
         * to avoid login delays when users have many nested group memberships.
         * @param user The Entra ID user to update.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        /**
         * Checks if domain services are enabled for Entra ID authentication.
         * Uses new entraid.use.ds key with fallback to legacy aad.use.ds.
         * @return true if domain services are enabled, false otherwise.
         */
        default boolean isEntraIdUseDomainServices() {
            String value = getSystemProperty("entraid.use.ds", null);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            }
            return Constants.TRUE.equalsIgnoreCase(secure);
        }
    
        /**
         * Interface for rewriting search request parameters.
         *
         * Implementations can modify search parameters before they are processed
         * by the search engine, allowing for custom parameter transformation logic.
         */
        public interface SearchRequestParamsRewriter {
            /**
             * Rewrites the given search request parameters.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /** A map of listeners for configuration updates. */
        protected Map<String, Supplier<String>> updateConfigListenerMap = new HashMap<>();
    
        /** A set of names of threads that are currently waiting. */
        protected Set<String> waitingThreadNames = Collections.synchronizedSet(new HashSet<>());
    
        /**
         * Initializes the SystemHelper.
    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