- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 281 for longer (1.62 sec)
-
fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_wildcard.txt
User-agent: EndPathBot Disallow: /fish$ Disallow: /temp$ Allow: /fishing # Test complex patterns User-agent: ComplexBot Disallow: / Allow: /$ Allow: /index.html$ Allow: /public/ # Test priority rules (longer match wins) User-agent: PriorityBot Disallow: /store Allow: /store/public Disallow: /store/public/sale # Test Allow vs Disallow with same length (Allow wins) User-agent: SameLengthBot Disallow: /page
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 14:03:41 UTC 2025 - 910 bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
} return Pattern.compile(regex.toString()); } /** * Calculates the priority length for this pattern. * According to RFC 9309, longer patterns have higher priority. * The priority length is the number of characters before any wildcard. * * @param pattern the path pattern * @return the priority length */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
try { cache.getInputStream(); fail("Expected IOException for deleted file"); } catch (IOException e) { // Expected - file no longer exists } } @Test public void testFileBasedCacheCloseNonExistentFile() { tempFile = new File(Curl.tmpDir, "non-existent-file.tmp"); assertFalse(tempFile.exists());Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 11.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
/** * Target indices for OpenSearch. */ public static final String TARGET_INDICES = "crawler.opensearch.target_indices"; /** * Logger instance. */ private static final Logger logger = LogManager.getLogger(FesenClient.class); /** * The OpenSearch client. */ protected Client client; /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 26.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
assertNotNull(keywords); assertEquals(0, keywords.length); // Should return empty array } @Test public void testParseQueryWithLongTerm() { // Test query with term longer than MAX_QUERY_TERM_LENGTH (48) StringBuilder sb = new StringBuilder(); for (int i = 0; i < 50; i++) { sb.append("a"); } String query = sb.toString();
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
private static boolean isAsciiPrintable(final char ch) { return ch >= 32 && ch < 127; } /** * Creates a new String from a char array. * <p> * Note: This method no longer uses internal JDK APIs for safety and compatibility. * It now uses the standard String constructor. * </p> * * @param chars * the char arrayRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.doc_score=Score: labels.development_mode_warning=Fess is running in development mode. Please install OpenSearch separately in a production environment. labels.eol_error=The system you are using is no longer supported. Please refer to the product support lifecycle page and upgrade. labels.tooltip_search_view=Search Screen labels.tooltip_run_crawler=Run Crawler labels.tooltip_forum=Forum labels.tooltip_onlinehelp=Help
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.doc_score=Score: labels.development_mode_warning=Fess is running in development mode. Please install OpenSearch separately in a production environment. labels.eol_error=The system you are using is no longer supported. Please refer to the product support lifecycle page and upgrade. labels.tooltip_search_view=Search Screen labels.tooltip_run_crawler=Run Crawler labels.tooltip_forum=Forum labels.tooltip_onlinehelp=Help
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_development_mode_warning = "{labels.development_mode_warning}"; /** The key of the message: The system you are using is no longer supported. Please refer to the product support lifecycle page and upgrade. */ public static final String LABELS_eol_error = "{labels.eol_error}"; /** The key of the message: Search Screen */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 156.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
// that should be handled by the job framework if (logger.isDebugEnabled()) { logger.debug("Script raised JobProcessingException", e); } throw e; } catch (final Exception e) { // Log and return null for other exceptions to maintain backward compatibilityRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0)