- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 341 for url (0.02 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java
final String url = "http://test.com/"; final ResponseData response = client.execute(RequestDataBuilder.newRequestData().get().url(url).build()); assertEquals(1, testListener.startCount); assertEquals(1, testListener.requestCount); assertEquals(0, testListener.exceptionCount); assertEquals(1, testListener.endCount); assertEquals(url, testListener.requestUrl);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} /** * Validates if the canonical URL is valid relative to the original URL. * Specifically checks for HTTPS to HTTP downgrades. * * @param url the original URL * @param canonicalUrl the canonical URL to validate * @return true if the canonical URL is valid, false otherwise */ protected boolean isValidCanonicalUrl(final String url, final String canonicalUrl) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
* at java.net.URL.<init>(URL.java:480) * at java.net.URL.<init>(URL.java:376) * at java.net.URL.<init>(URL.java:330) * at jcifs.smb.SmbFile.<init>(SmbFile.java:355) * ... * </pre> * * </blockquote> * */ public static void registerSmbURLHandler() { SingletonContext.getInstance();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
} /** * Converts a URL using all configured duplicate host rules. * Applies each duplicate host rule in sequence to transform the URL * according to the configured patterns. * * @param url the URL to convert * @return the converted URL after applying all duplicate host rules, * or null if the input URL is null */ public String convert(final String url) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4K bytes - Viewed (0) -
pom.xml
<description>cUrl-Like Java client</description> <url>https://github.com/codelibs/curl4j</url> <inceptionYear>2011</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>CodeLibs Project</name> <url>http://www.codelibs.org/</url> </organization>
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Sat Dec 20 04:17:15 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
} } /** * * {@inheritDoc} * * @see jcifs.CIFSContext#getPipe(java.lang.String, int) */ @Override public SmbPipeResource getPipe(final String url, final int pipeType) throws CIFSException { try { return new SmbNamedPipe(url, pipeType, this); } catch (final MalformedURLException e) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} String u = url; for (int i = 0; i < maxRedirectCount; i++) { try (final ResponseData responseData = client.execute(RequestDataBuilder.newRequestData().get().url(u).build())) { if (StringUtil.isNotBlank(responseData.getRedirectLocation())) { u = responseData.getRedirectLocation(); continue;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.4K bytes - Viewed (0) -
deps.xml
<antcall target="install.env.jar"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="jar.groupId" value="jakarta/annotation" /> <param name="jar.artifactId" value="jakarta.annotation-api" /> <param name="jar.version" value="2.1.1" /> <param name="file.version" value="2.1.1" /> </antcall> <!-- kopf --> <get dest="${target.dir}/kopf.zip">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 08:57:53 UTC 2025 - 2.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
* Used for hreflang annotation. */ private List<SitemapAlternateLink> alternateLinks; /** * Returns the location URL of this sitemap entry. * @return the location URL */ @Override public String getLoc() { return loc; } /** * Sets the location URL of this sitemap entry.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 9.1K bytes - Viewed (0)