- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for considers (1.22 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
* time they are accessed. The value "never" should be used to describe * archived URLs. * * Please note that the value of this tag is considered a hint and not a * command. Even though search engine crawlers may consider this information * when making decisions, they may crawl pages marked "hourly" less * frequently than that, and they may crawl pages marked "yearly" more
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacCredentialTypeTest.java
class PacCredentialTypeTest { /** * Tests the constructor with a valid byte array. */ @Test void testConstructorWithValidData() { // A byte array with a length less than 32 should be considered valid. byte[] validData = new byte[31]; assertDoesNotThrow(() -> new PacCredentialType(validData)); } /** * Tests the constructor with a null byte array, which should throw an exception.Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/RequestHeader.java
* String value = header.getValue(); * boolean isValid = header.isValid(); * </pre> * * <p>Note: The name should not be blank and the value should not be null for the header to be considered valid.</p> * * @see java.io.Serializable */ public class RequestHeader implements Serializable { private static final long serialVersionUID = 1L; /** * The name of the request header.
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3K 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
protected CrawlerContainer crawlerContainer; /** Transformer used to transform response data */ protected Transformer transformer; /** HTTP status codes considered successful */ protected int[] successfulHttpCodes; /** HTTP status codes considered not modified */ protected int[] notModifiedHttpCodes; /** * Constructs a new DefaultResponseProcessor. */ public DefaultResponseProcessor() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K 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) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
} /** * Configuration settings for the Fess application. */ @Resource protected FessConfig fessConfig; /** * Time interval in milliseconds after which jobs are considered expired. * Default is 2 hours (2 * 60 * 60 * 1000L). */ protected long expiredJobInterval = 2 * 60 * 60 * 1000L; // 2hours /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java
@Required public String dictId; /** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The input terms that should be considered synonymous */ @Required @Size(max = 1000) public String inputs; /** The output synonyms that should be matched for the input terms */ @Required @Size(max = 1000)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
} } return null; } /** * Returns a {@link ConstructorDesc} that matches the given arguments. * <p> * If the parameter type is a number, it is considered a match if the argument can be converted to the number type. * </p> * * @param args * the constructor argumentsRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1)