Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for checkIsE (0.03 sec)

  1. src/main/java/org/codelibs/fess/storage/StorageClient.java

         */
        void setObjectTags(String objectName, Map<String, String> tags);
    
        /**
         * Ensures the bucket exists, creating it if necessary.
         */
        void ensureBucketExists();
    
        /**
         * Checks if storage is properly configured and accessible.
         *
         * @return true if storage is available
         */
        boolean isAvailable();
    
        /**
         * Closes the client and releases resources.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
        }
    
        /**
         * Checks if the application has reached its end-of-life.
         *
         * @return true if the application is EOL, false otherwise.
         */
        protected boolean isEoled() {
            return getCurrentTimeAsLong() > eolTime;
        }
    
        /**
         * Checks if a permission string is a user permission.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

                    }
                    states.remove(state);
                    return stateData;
                }
            }
            return null;
        }
    
        /**
         * Checks if the request contains authentication data from Entra ID.
         * @param request The HTTP servlet request to check.
         * @return True if authentication data is present, false otherwise.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
            return split(value, ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).toArray(n -> new String[n]));
        }
    
        /**
         * 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.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        Integer getSearchEnginePasswordAsInteger();
    
        /**
         * Get the value for the key 'search_engine.heartbeat_interval'. <br>
         * The value is, e.g. 10000 <br>
         * comment: Interval (ms) for heartbeat checks to the search engine.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEngineHeartbeatInterval();
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top