- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 55 for check (0.01 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
// UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1]; final ResponseData responseData = (ResponseData) objs[2]; if (logger.isDebugEnabled()) { logger.debug("No rule for ({}, {}). PLEASE CHECK YOUR CONFIGURATION.", responseData.getUrl(), responseData.getMimeType()); } } /** * Processes no response processor found log events. *
Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 14K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
* @param password The password. */ public void setPassword(final String password) { this.password = password; } /** * Checks if this authentication matches the given FTP path. * @param path The FTP path to check. * @return true if it matches, false otherwise. */ boolean matches(final String path) { if (StringUtil.isBlank(path)) { return false;Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
// Check tags assertArrayEquals(new String[] { "tag1", "tag2" }, suggestItem.getTags()); // Check roles assertArrayEquals(new String[] { "role1", "role2", "role3" }, suggestItem.getRoles()); // Check kind assertNotNull(suggestItem.getKinds()); // The kinds array structure might be different boolean hasUserKind = false;Registered: 2025-09-19 09:08 - Last Modified: 2025-09-01 13:33 - 16K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
} /** * Returns the maximum thread check count. * @return The maximum thread check count. */ public int getMaxThreadCheckCount() { return maxThreadCheckCount; } /** * Sets the maximum thread check count. * @param maxThreadCheckCount The maximum thread check count. */Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 8.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CharUtil.java
*/ private CharUtil() { } /** * Checks if the given character is a valid URL character. * * Valid URL characters include: * - Lowercase letters (a-z) * - Uppercase letters (A-Z) * - Digits (0-9) * - Special characters: . - * _ : / + % = & ? # [ ] @ ~ ! $ ' ( ) , ; * * @param c the character to checkRegistered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 2.3K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java
* * <p> * This exception can be thrown when there are problems accessing URLs, files, or any other resources needed for crawling. * It includes constructors to handle messages, causes, or both. * </p> * * <p> * The log level can be set to DEBUG, INFO, WARN, or ERROR, and the class provides methods to check if a specific log level is enabled. * </p> *
Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 3.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImpl.java
/* * (non-Javadoc) * * @see * org.codelibs.fess.crawler.rule.RuleManager#hasRule(org.codelibs.fess.crawler.rule.Rule) */ /** * Checks if the rule manager contains the specified rule. * @param rule the rule to check for * @return true if the rule is present, false otherwise */ @Override public boolean hasRule(final Rule rule) { return ruleList.contains(rule);Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 3.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
// Default constructor } /** * Checks if the given input stream contains valid sitemap data. * @param in the input stream to validate * @return true if the stream contains valid sitemap data, false otherwise */ public boolean isValid(final InputStream in) { return isValid(in, true); } /** * Checks if the given input stream contains valid sitemap data.Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 14.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/RuleManager.java
* @param rule the rule to be removed * @return true if the rule was successfully removed, false otherwise */ boolean removeRule(Rule rule); /** * Checks if the specified rule exists. * * @param rule the rule to check for existence * @return true if the rule exists, false otherwise */ boolean hasRule(Rule rule);Registered: 2025-09-21 03:50 - Last Modified: 2025-07-06 02:13 - 2.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
logger.debug("Ignore a response({}): {}", responseData.getStatus(), responseData.getUrl()); } } /** * Checks if the response is successful based on configured HTTP status codes. * * @param responseData the response data to check * @return true if successful, false otherwise */ protected boolean isSuccessful(final ResponseData responseData) {
Registered: 2025-09-21 03:50 - Last Modified: 2025-08-07 02:55 - 12.5K bytes - Viewed (0)