- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for about (3.04 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ExtractorResourceManagementTest.java
fail("Expected exception for invalid Word document"); } catch (final ExtractException e) { // ExtractException with improved message assertTrue("Error message should contain context about Word document or extraction", e.getMessage().contains("Word") || e.getMessage().contains("extract")); } catch (final RuntimeException e) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 10.4K bytes - Viewed (0) -
README.md
Fess is based on [OpenSearch](https://github.com/opensearch-project/OpenSearch), but knowledge/experience about OpenSearch is _not_ required. Fess provides an easy to use Administration GUI to configure the system via your browser.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
// Allow: /public/*.html - should allow HTML files in public directory assertTrue(robotsTxt.allows("/public/index.html", "WildcardBot")); assertTrue(robotsTxt.allows("/public/about.html", "WildcardBot")); // Test EndPathBot - end-of-path ($) patterns // Disallow: /fish$ - should block exactly /fish but not /fishing assertFalse(robotsTxt.allows("/fish", "EndPathBot"));Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
// But importantly, there should be no race condition errors assertEquals(threadCount, failureCount.get()); assertEquals(0, successCount.get()); // All exceptions should be about project ID being blank for (Exception e : exceptions) { assertTrue(e instanceof IOException); assertTrue(e.getMessage().contains("GCS_PROJECT_ID is blank")); } }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
// But importantly, there should be no race condition errors assertEquals(threadCount, failureCount.get()); assertEquals(0, successCount.get()); // All exceptions should be about endpoint being blank for (Exception e : exceptions) { assertTrue(e instanceof IOException); assertTrue(e.getMessage().contains("endpoint is blank")); } } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
* @param includeContent Whether to include the actual content in the response * @param responseData The response data to update * @param client The FTP client used for the operation * @param ftpInfo Information about the FTP connection * @param file The FTP file object, or null if not found */ protected void updateResponseData(final String uri, final boolean includeContent, final ResponseData responseData,Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
pageSize, 0); } } /** * Creates a QueryResponseList containing the search results and metadata. * Wraps the document list with additional information about the search operation * including record counts, timing, and pagination details. * * @param documentList the list of search result documents * @param allRecordCount the total number of records foundRegistered: 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/java/org/codelibs/fess/util/GsaConfigParser.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} } } /** * Sends email notification with crawling results and statistics. * The email contains detailed information about the crawling session including * execution times, index sizes, and status information. * * @param infoMap map containing crawling session information and statistics */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 31.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
*/ protected Pattern invalidUrlPattern = Pattern.compile("^\\s*javascript:|" // + "^\\s*mailto:|" // + "^\\s*irc:|" // + "^\\s*skype:|" // + "^\\s*about:|" + "^\\s*fscommand:|" // + "^\\s*aim:|" // + "^\\s*msnim:|" // + "^\\s*news:|" // + "^\\s*tel:|" // + "^\\s*unsaved:|" // + "^\\s*data:|" //Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0)