Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for DeVault (0.04 sec)

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

        default void setSearchLog(final boolean value) {
            setSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, value);
        }
    
        default boolean isSearchLog() {
            return getSystemPropertyAsBoolean(Constants.SEARCH_LOG_PROPERTY, true);
        }
    
        default void setUserInfo(final boolean value) {
            setSystemPropertyAsBoolean(Constants.USER_INFO_PROPERTY, value);
        }
    
        default boolean isUserInfo() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/Constants.java

        /** Default interval time in milliseconds for web crawling. */
        public static final int DEFAULT_INTERVAL_TIME_FOR_WEB = 10000;
    
        /** Default number of threads for file system crawling. */
        public static final int DEFAULT_NUM_OF_THREAD_FOR_FS = 5;
    
        /** Default number of threads for web crawling. */
        public static final int DEFAULT_NUM_OF_THREAD_FOR_WEB = 1;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/StorageClientFactory.java

         * @return detected storage type
         */
        public static StorageType detectStorageType(final String endpoint) {
            if (StringUtil.isBlank(endpoint)) {
                // Default to S3 if no endpoint (uses AWS default)
                return StorageType.S3;
            }
    
            final String lowerEndpoint = endpoint.toLowerCase(Locale.ROOT);
    
            // GCS patterns
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        /** Configuration key for Entra ID default groups. */
        protected static final String ENTRAID_DEFAULT_GROUPS = "entraid.default.groups";
    
        /** Configuration key for Entra ID default roles. */
        protected static final String ENTRAID_DEFAULT_ROLES = "entraid.default.roles";
    
        // Legacy configuration keys for backward compatibility (Azure AD)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     *
     * <h2>Optional Configuration</h2>
     * <pre>
     * # User attribute mapping
     * saml.attribute.group.name=groups
     * saml.attribute.role.name=roles
     *
     * # Default groups/roles for authenticated users
     * saml.default.groups=user
     * saml.default.roles=user
     * </pre>
     *
     * <h2>Security Settings (Production)</h2>
     * <p>For production environments, consider enabling these security features:</p>
     * <pre>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 10000)
        public String appValue;
    
        /**
         * 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.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

    /**
     * OpenID Connect authenticator for SSO integration.
     */
    public class OpenIdConnectAuthenticator implements SsoAuthenticator {
    
        /**
         * Default constructor.
         */
        public OpenIdConnectAuthenticator() {
            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(OpenIdConnectAuthenticator.class);
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g.  */
        String CRAWLER_DOCUMENT_HTML_DEFAULT_INCLUDE_SEARCH_PATTERNS = "crawler.document.html.default.include.search.patterns";
    
        /** The key of the configuration. e.g.  */
        String CRAWLER_DOCUMENT_HTML_DEFAULT_EXCLUDE_SEARCH_PATTERNS = "crawler.document.html.default.exclude.search.patterns";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  9. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Using custom GCS endpoint: {}", endpoint);
                }
            } else {
                // Production: use credentials file or default credentials
                if (StringUtil.isNotBlank(credentialsPath)) {
                    try (FileInputStream fis = new FileInputStream(credentialsPath)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. README.md

    ### Browser UI
    
    - Search UI: http://localhost:8080/
    
    ![Search UI](https://fess.codelibs.org/_images/fess_search_result1.png)
    
    - Admin UI: http://localhost:8080/admin/ (default username/password is admin/admin)
    
    ![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    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