- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for Fallback (2 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
() -> asHtml(path_AdminWizard_AdminWizardConfigJsp)); return null; } } /** * Retrieves an integer value from system properties with a default fallback. * * @param key the property key to look up * @param defaultValue the default value if the property is not found or invalid * @return the integer value or default value */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 16.3K bytes - Viewed (0) -
ADDING_NEW_LANGUAGE.md
## File Structure Language resource files are located in: ``` src/main/resources/ ├── fess_label.properties # Base English labels (fallback) ├── fess_label_[locale].properties # Language-specific labels (~1,056 lines) ├── fess_message.properties # Base English messages (fallback) └── fess_message_[locale].properties # Language-specific messages (~200 lines) ``` ### Naming Convention
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 11:36:30 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
CLAUDE.md
**Registration**: ```java extractorFactory.addExtractor("text/html", htmlExtractor, 2); // Weight 2 extractorFactory.addExtractor("text/html", tikaExtractor, 1); // Fallback ``` ### Helpers **RobotsTxtHelper**: RFC 9309 parsing, user-agent matching, crawl-delay, sitemaps **SitemapsHelper**: Sitemap XML parsing, index handling **MimeTypeHelper**: MIME detection via Tika
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
delayMillisForWaitingNewUrl = getParamValue(params, "delayMillisForWaitingNewUrl", delayMillisForWaitingNewUrl); } /** * Helper method to get parameter value from map with default fallback. * * @param params parameter map * @param key parameter key * @param defaultValue default value if parameter not found * @return parameter value or default value */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:58:39 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
// Create GroovyShell with custom class loader for proper resource management GroovyClassLoader classLoader = null; try { // Get parent class loader with fallback to ensure robustness across threading contexts ClassLoader parentClassLoader = Thread.currentThread().getContextClassLoader(); if (parentClassLoader == null) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* authentication context without requiring users to explicitly enter credentials. * * The authenticator supports various configuration options including delegation, * basic authentication fallback, and localhost authentication bypass. */ public class SpnegoAuthenticator implements SsoAuthenticator { /** Logger for this class. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
} if (isSearchField(field)) { return fieldBuilder.buildQuery(field, text, boost); } // Fallback: treat as default field query context.addFieldLog(Constants.DEFAULT_FIELD, text); return buildDefaultQueryBuilder(fessConfig, context, defaultBuilder); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 11:39:05 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
return getSystemPropertyAsInt(Constants.LTR_WINDOW_SIZE_PROPERTY, 100); } /** * Gets the permission fields for Entra ID authentication. * Uses new entraid.permission.fields key with fallback to legacy aad.permission.fields. * @return Array of permission field names. */ default String[] getEntraIdPermissionFields() { String value = getSystemProperty("entraid.permission.fields", 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) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} finally { SMailCallbackContext.clearPreparedMessageHookOnThread(); } } } /** * Retrieves a value from a map with a default fallback. * * @param dataMap the map to retrieve the value from * @param key the key to look up * @param defaultValue the default value to return if key is not found or value is blankRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 31.4K bytes - Viewed (0)