- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 63 for sampla (0.28 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractorTest.java
assertTrue(content.contains("title")); assertTrue(content.contains("Sample Document")); assertTrue(content.contains("author")); assertTrue(content.contains("John Doe")); // Verify metadata extraction assertNotNull(extractData.getValues("title")); assertEquals("Sample Document", extractData.getValues("title")[0]); assertNotNull(extractData.getValues("author"));
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
defaultSettings.put("onelogin.saml2.security.logoutrequest_signed", "false"); defaultSettings.put("onelogin.saml2.security.logoutresponse_signed", "false"); defaultSettings.put("onelogin.saml2.security.want_messages_signed", "false"); defaultSettings.put("onelogin.saml2.security.want_assertions_signed", "false");
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/ds/DataStoreFactory.java
private static final Logger logger = LogManager.getLogger(DataStoreFactory.class); /** * Map containing registered data store instances indexed by their names and class simple names. * All keys are stored in lowercase for case-insensitive lookup. */ protected Map<String, DataStore> dataStoreMap = new LinkedHashMap<>(); /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9K bytes - Viewed (0) -
fess-crawler/src/test/resources/extractor/json/test.json
{ "title": "Sample Document", "author": "John Doe", "version": "1.0", "published": "2025-01-15", "tags": ["crawler", "extractor", "json"], "content": { "summary": "This is a sample JSON document for testing", "body": "The extractor should handle nested objects and arrays properly" }, "metadata": { "created_at": "2025-01-01T00:00:00Z", "updated_at": "2025-01-15T12:00:00Z" }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 412 bytes - Viewed (0) -
fess-crawler/src/test/resources/extractor/markdown/test.md
--- title: Sample Markdown Document author: John Doe date: 2025-01-15 tags: - crawler - extractor - markdown --- # Introduction This is a sample Markdown document for testing the MarkdownExtractor. ## Features The extractor should handle: - YAML front matter extraction - Heading structure - **Bold text** and *italic text* - Lists and other formatting ### Code Examples
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 767 bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
assertEquals(expected, XmlUtil.escapeXml(input)); } public void test_escapeXml_noSpecialChars() { // Test string without special characters String input = "Simple text without special characters"; assertEquals(input, XmlUtil.escapeXml(input)); } public void test_stripInvalidXMLCharacters_null() { // Test null input
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
public QueryProcessor() { // Default constructor } private static final Logger logger = LogManager.getLogger(QueryProcessor.class); /** * Map of query commands indexed by query class simple names. * Used to lookup appropriate command handlers for different query types. */ protected Map<String, QueryCommand> queryCommandMap = new HashMap<>(); /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImplTest.java
String sessionId = "session123"; List<String> urlList = new ArrayList<>(); urlList.add("https://example.com/.*"); urlList.add("https://test.com/.*"); urlList.add("https://sample.org/.*"); // Execute service.addIncludeUrlFilter(sessionId, urlList); // Verify - each URL should be added once
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 11.1K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"application/set-registration-initiation", "application/sgml", "application/sgml-open-catalog", "application/shf+xml", "application/sieve", "application/simple-filter+xml", "application/simple-message-summary", "application/simplesymbolcontainer", "application/slate", "application/smil+xml", "application/soap+fastinfoset", "application/soap+xml",
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 50.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
+ " <loc>http://www.example.com/sample.html</loc>\n" + " <image:image>\n" + " <image:loc>http://www.example.com/image.jpg</image:loc>\n" + " <image:caption>Sample image caption</image:caption>\n" + " <image:title>Sample image title</image:title>\n" + " <image:geo_location>Tokyo, Japan</image:geo_location>\n"
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 36.7K bytes - Viewed (0)