- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 64 for Uri (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
/** * Preprocesses a URI to ensure it has the correct GCS protocol prefix. * @param uri the URI to preprocess * @return the preprocessed URI with gcs:// prefix * @throws CrawlerSystemException if the URI is empty */ protected String preprocessUri(final String uri) { if (StringUtil.isEmpty(uri)) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 17.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
// base href final String baseHref = getBaseHref(document); URI uri; try { uri = new URI(baseHref == null ? responseData.getUrl() : baseHref); } catch (final Exception e) { uri = new URI(responseData.getUrl()); } final URI baseUri = uri; getChildUrlRules(responseData, resultData).forEach(entry -> {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
} } /** * Preprocesses a URI to ensure it's in the correct format for file system access. * * @param uri the URI to preprocess * @return the preprocessed URI * @throws CrawlerSystemException if the URI is empty */ protected String preprocessUri(final String uri) { if (StringUtil.isEmpty(uri)) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 15.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
} /** * Preprocesses a URI to ensure it has the correct S3 protocol prefix. * @param uri the URI to preprocess * @return the preprocessed URI with s3:// prefix * @throws CrawlerSystemException if the URI is empty */ protected String preprocessUri(final String uri) { if (StringUtil.isEmpty(uri)) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
} /** * Preprocesses the URI before processing the request. * * @param uri the URI to preprocess * @return the preprocessed URI * @throws CrawlerSystemException if the URI is empty */ protected String preprocessUri(final String uri) { if (StringUtil.isEmpty(uri)) { throw new CrawlerSystemException("SMB URI is empty. Please provide a valid SMB URI (smb://...).");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/ftp/FtpClient.java
@Override public ResponseData doGet(final String uri) { return processRequest(uri, true); } /** * Processes an FTP request to retrieve data from the specified URI. * This method handles the complete FTP request lifecycle including timeout management, * connection setup, and data retrieval. * * @param uri The URI to retrieve data fromRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java
// Test that accessTimeoutTask null check prevents NPE StorageClient client = new StorageClient() { @Override protected ResponseData processRequest(final String uri, final boolean includeContent) { // Skip init() and directly test timeout handling org.codelibs.fess.crawler.client.AccessTimeoutTarget accessTimeoutTarget = null;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} else if (urlStr.startsWith("//")) { value = "http:" + urlStr; } else { value = urlStr; } try { final URI uri = URI.create(value); final String host = uri.getHost(); if (StringUtil.isBlank(host) || "http".equalsIgnoreCase(host) || "https".equalsIgnoreCase(host)) { return false; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.7K bytes - Viewed (0)