- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for Shares (0.04 sec)
-
MIGRATION.md
Before starting migration, assess your current system: - **Document Count**: Total number of indexed documents - **Index Size**: Storage requirements for search indices - **Crawl Sources**: URLs, file shares, databases being indexed - **Custom Configurations**: URL patterns, security rules, metadata fields - **Search Features**: Facets, suggestions, security filtering, ranking rules
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 12:40:11 UTC 2025 - 23.2K bytes - Viewed (0) -
CLAUDE.md
### Protocols - **HTTP/HTTPS**: Full crawling, cookies, auth, robots.txt - **File**: Local/network file systems - **FTP**: With authentication - **SMB/CIFS**: Windows shares (SMB1/SMB2+) - **Storage**: MinIO/S3-compatible ### Content Formats Office (Word, Excel, PowerPoint), PDF, Archives (ZIP, TAR, GZ), HTML, XML, JSON, Media (audio/video metadata), Images (EXIF/IPTC/XMP) ---
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
import jakarta.annotation.Resource; /** * The {@link SmbClient} class is a crawler client implementation for accessing files and directories * on SMB (Server Message Block) shares. It extends {@link AbstractCrawlerClient} and utilizes the JCIFS library * to interact with SMB resources. * * <p> * This client supports authentication, content retrieval, and metadata extraction from SMB files.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.4K bytes - Viewed (3) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
import org.codelibs.jcifs.smb1.util.LogStream; import jakarta.annotation.Resource; /** * The {@link SmbClient} class is a crawler client implementation for accessing files and directories * on SMB (Server Message Block) shares using the SMB1 protocol. It extends {@link AbstractCrawlerClient} and utilizes the JCIFS library * to interact with SMB resources. * * <p>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/FullWidthToHalfWidthAlphabetNormalizer.java
if (text == null) { return null; } final char[] chars = new char[text.length()]; for (int i = 0; i < chars.length; i++) { final char c = text.charAt(i); if (c >= 'a' && c <= 'z') { chars[i] = (char) (c - 'a' + 'a'); } else if (c >= 'A' && c <= 'Z') { chars[i] = (char) (c - 'A' + 'A'); } else if (c >= '0' && c <= '9') {
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 1.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
// Test multiple User-agents in sequence (Bot1, Bot2, Bot3 should share the same rules) assertFalse(robotsTxt.allows("/shared/", "Bot1")); assertFalse(robotsTxt.allows("/shared/", "Bot2")); assertFalse(robotsTxt.allows("/shared/", "Bot3")); // Test sitemaps - should parse valid sitemaps and ignore invalid onesRegistered: 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/resources/org/codelibs/fess/crawler/helper/robots_malformed.txt
Disallow: /path%20encoded/ Disallow: /path?query=value Disallow: /path#fragment Allow: /unicode/日本語/ # Case 10: Multiple User-agents in sequence User-agent: Bot1 User-agent: Bot2 User-agent: Bot3 Disallow: /shared/ # Case 11: Sitemap with various formats Sitemap: http://example.com/sitemap.xml sitemap: http://example.com/sitemap2.xml SITEMAP: http://example.com/sitemap3.xml Sitemap: # empty sitemap (should be ignored)
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
if (isEmpty(name)) { return name; } final char[] chars = name.toCharArray(); if (chars.length >= 2 && Character.isUpperCase(chars[0]) && Character.isUpperCase(chars[1])) { return name; } chars[0] = Character.toLowerCase(chars[0]); return new String(chars); } /** * Capitalizes a string according to JavaBeans conventions.
Registered: 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_message_id.properties
# --------------- constraints.AssertFalse.message = {item} harus bernilai false. constraints.AssertTrue.message = {item} harus bernilai true. constraints.DecimalMax.message = {item} harus kurang dari {value}. constraints.DecimalMin.message = {item} harus lebih dari {value}. constraints.Digits.message = {item} harus berupa angka. (expected: <number>.<number>) constraints.Future.message = {item} harus berupa nilai masa depan.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 07 14:12:58 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLogTest.java
assertEquals("カテゴリ:技術", queryLog.getFilterQueryString()); } @Test public void test_specialCharacters() throws Exception { String query = "test-query_with.special@chars!"; QueryLog queryLog = new QueryLog(query, null); assertEquals(query, queryLog.getQueryString()); } @Test public void test_longQuery() throws Exception {
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 13 00:40:54 UTC 2025 - 3.4K bytes - Viewed (0)