- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for considers (2.4 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
current = current.getCause(); } return buf.toString(); } /** * Checks if a checkbox value represents an enabled state. * This method considers "on" and "true" (case-insensitive) as enabled values. * * @param value the checkbox value to check * @return true if the value represents an enabled checkbox, false otherwise */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashMap.java
* </p> * <pre> * Map<K, V> syncMap = Collections.synchronizedMap(new LruHashMap<>(100)); * </pre> * <p> * Alternatively, for high-concurrency scenarios, consider implementing a custom * LRU cache using {@link java.util.concurrent.ConcurrentHashMap} with an eviction strategy. * </p> * * @author koichik * @param <K> the key type * @param <V> the value type */
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
* <li>For high-security applications, consider using AES with GCM mode via {@link #setAlgorithm(String)} and {@link #setTransformation(String)}</li> * <li>Ensure keys are securely generated and stored</li> * <li>For production systems with stringent security requirements, consider using authenticated encryption modes</li> * </ul> * <p> * <strong>Usage Example:</strong> * </p>
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
CLAUDE.md
### When Adding Features 1. Read existing code first (use symbol overview tools) 2. Follow existing patterns 3. Add tests 4. Handle resources properly (try-with-resources) 5. Consider thread safety 6. Update JavaDoc ### When Fixing Bugs 1. Write failing test first 2. Understand root cause 3. Minimal changes 4. Verify no regressions ### When Refactoring
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
} if (SpnegoHttpFilter.Constants.ALLOW_BASIC.equals(name)) { // SECURITY NOTE: Basic authentication is enabled by default for compatibility. // For production, consider setting spnego.allow.basic to false. return getProperty(SPNEGO_ALLOW_BASIC, "true"); } if (SpnegoHttpFilter.Constants.ALLOW_UNSEC_BASIC.equals(name)) {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/sso/saml/SamlAuthenticator.java
* * # 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> * saml.security.authnrequest_signed=true * saml.security.want_messages_signed=true * saml.security.want_assertions_signed=true * </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) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
} /** * Extracts keywords from the given query string based on the specified fields. * * @param q the query string to parse and extract keywords from * @param fields the fields to consider when extracting keywords * @return a list of unique keywords extracted from the query string */ public static List<String> getKeywords(final String q, final String[] fields) {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 11:21:40 UTC 2025 - 17.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
/** Executor service for concurrent search operations across multiple searchers */ protected ExecutorService executorService; /** Size of the window for rank fusion processing, determines how many results to consider */ protected int windowSize; /** Set of available searcher names that can be used for search processing */ protected Set<String> availableSearcherNameSet; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/resources/fess_config.properties
crawler.ignore.robots.txt=false # Whether to ignore robots meta tags during crawling. crawler.ignore.robots.tags=false # Whether to ignore content exceptions during crawling. crawler.ignore.content.exception=true # HTTP status codes considered as failure URLs. crawler.failure.url.status.codes=404 # Interval (seconds) for system monitor during crawling. crawler.system.monitor.interval=60 # Whether to ignore idle threads in hot thread monitoring.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
*/ boolean isCrawlerIgnoreContentException(); /** * Get the value for the key 'crawler.failure.url.status.codes'. <br> * The value is, e.g. 404 <br> * comment: HTTP status codes considered as failure URLs. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getCrawlerFailureUrlStatusCodes(); /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)