- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for Share1 (0.96 sec)
-
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/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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
"-u", "testuser;test123", // "-s", "public;/share;yes;no;no;testuser1,testuser", // "-s", "users;/srv;no;no;no;testuser1,testuser2", // "-s", "testuser1 private share;/testuser1;no;no;no;testuser1", // "-s", "testuser2 private share;/testuser2;no;no;no;testuser2", // "-s", "empty;/empty;no;no;no;testuser", //
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 30K 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) -
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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 31.9K 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) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
* For the input "ジュ", the converter might return a list containing "zyu", "ju", and "jyu". * </p> * */ public class KatakanaToAlphabetConverter implements ReadingConverter { /** Static conversion map shared across all instances. */ private static final Map<String, String[]> CONVERT_MAP = generateConvertMapping(); /** Transliterator for full-width to half-width conversion. */ protected Transliterator fullWidthHalfWidth;
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} if (path == null) { path = System.getenv("path"); } final List<String> pathList = new ArrayList<>(); pathList.add("/usr/share/fess/bin"); if (path != null) { stream(path.split(File.pathSeparator)).of(stream -> stream.map(String::trim).forEach(s -> pathList.add(s))); } if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.4K bytes - Viewed (0)