- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 1,285 for Url (0.02 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
} /** * Processes a crawling request for a specific URL. * Executes the full crawling pipeline including client execution, rule processing, * transformation, and data extraction. * * @param crawlingConfig the crawling configuration to use * @param crawlingInfoId the crawling session ID * @param url the URL to process * @return a map containing the processed document data
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
return this.max_xmit; } /** * Get a handle to a service * * @param url * the DCE/RPC service URL * @param tc * context to use * @return a DCERPC handle for the given url * @throws MalformedURLException * if the URL is malformed * @throws DcerpcException * if there is an error establishing the connection
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java
url = "http://test.com/hoge1.pdf"; resourceName = null; assertNull(tikaExtractor.getPassword(createParams(url, resourceName))); url = "http://test.com/hoge1.pdf"; resourceName = "hoge2.pdf"; assertNull(tikaExtractor.getPassword(createParams(url, resourceName))); url = null; resourceName = "hoge2.pdf";
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
} /** * Returns the path of the Zip file specified by the URL. * * @param zipUrl * URL pointing to the Zip file. Must not be {@literal null}. * @return The path of the Zip file specified by the URL. */ public static String toZipFilePath(final URL zipUrl) { assertArgumentNotNull("zipUrl", zipUrl); final String urlString = zipUrl.getPath();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
* @param childUrlList the set of child URLs * @param url the parent URL * @param depth the depth of the child URLs * @param encoding the encoding of the child URLs */ protected void storeChildUrls(final CrawlerContext crawlerContext, final Set<RequestData> childUrlList, final String url, final int depth, final String encoding) { // add url and filter final Set<String> urlSet = new HashSet<>();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RecordingExecutor.kt
} fun assertJobs(vararg expectedUrls: String) { val actualUrls = calls.map { it.request.url.toString() } assertThat(actualUrls).containsExactly(*expectedUrls) } fun finishJob(url: String) { val i = calls.iterator() while (i.hasNext()) { val call = i.next() if (call.request.url.toString() == url) { i.remove() dispatcherTest.dispatcher.finishedAccessor(call) return
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
*/ protected IndexResponse insert(final Object target, final OpType opType) { final String url = getUrl(target); if (url == null) { throw new OpenSearchAccessException("url is null."); } final String id = getId(getSessionId(target), url); try (final XContentBuilder source = getXContentBuilder(target)) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FastFallbackTest.kt
.connectTimeout(60, TimeUnit.SECONDS) // Deliberately exacerbate slow fallbacks. .dns { dnsResults } .fastFallback(true) .build() url = serverIpv4 .url("/") .newBuilder() .host("localhost") .build() } @AfterEach internal fun tearDown() { serverIpv4.close() serverIpv6.close() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/lambda/README.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
* Tests the fluent API, parameter handling, and request configuration. */ public class CurlRequestTest { @Test public void testConstructor() { String url = "https://example.com"; CurlRequest request = new CurlRequest(Method.GET, url); assertEquals(Method.GET, request.method()); assertEquals("UTF-8", request.encoding()); assertEquals(1024 * 1024, request.threshold());
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0)