- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for Uri (0.01 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/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) -
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/client/smb1/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("SMB1 URI is empty. Please provide a valid SMB1 URI (smb1://...).");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/s3/S3ClientTest.java
// Test that accessTimeoutTask null check prevents NPE S3Client client = new S3Client() { @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: Thu Dec 11 07:57:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
} /** * SAX event handler called when an XML start element is encountered. * Processes collection definitions and tracks the element hierarchy. * * @param uri the namespace URI, or empty string if none * @param localName the local name without prefix, or empty string if namespace processing is not performedRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/gcs/GcsClientTest.java
// Test that accessTimeoutTask null check prevents NPE GcsClient client = new GcsClient() { @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: Thu Dec 11 08:38:29 UTC 2025 - 19.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.net.protocol.s3; import java.io.IOException; import java.io.InputStream; import java.net.URI; import java.net.URL; import java.net.URLConnection; import java.net.URLDecoder; import java.net.URLStreamHandler; import java.nio.charset.StandardCharsets; import org.codelibs.core.lang.StringUtil;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0)