- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 1,428 for Curl (0.11 sec)
-
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
super.setUp(); crawlingInfoHelper = new CrawlingInfoHelper(); } public void test_generateId() { final Map<String, Object> dataMap = new HashMap<String, Object>(); dataMap.put("url", "http://example.com/"); assertEquals( "6b2d3770573e53f9f2d743e0598fad397c34968566001329c436f041871fd8af950b32ce77da6cc4a5561a6ccf4d2d7741269209ac254c234a972029ec92110e",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.5K bytes - Viewed (0) -
docs/features/calls.md
If a conditional GET was successful, responses from the network and cache are merged as directed by the spec. ## Follow-up Requests When your requested URL has moved, the webserver will return a response code like `302` to indicate the document’s new URL. OkHttp will follow the redirect to retrieve a final response.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
resultMap.put("url", termQueryBuilder.value().toString()); return 1; } return 0; } }; ComponentUtil.register(client, "searchEngineClient"); final String url = "http://test.com/"; assertEquals(1, indexingHelper.deleteDocumentByUrl(client, url));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 08:54:24 UTC 2024 - 23.4K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt
} } private fun supportsUrl(url: HttpUrl): Boolean { lock.assertHeld() val routeUrl = route.address.url if (url.port != routeUrl.port) { return false // Port mismatch. } if (url.host == routeUrl.host) { return true // Host match. The URL is supported. }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 15.4K bytes - Viewed (0) -
ci/official/utilities/extract_resultstore_links.py
if not current_url: url_lines['start'] = i elif current_url == url: url_lines['end'] = i else: result_store_links[current_url]['next_url'] = i url_lines['start'] = i current_url = url previous_end_line = None for url, lines in result_store_links.items(): lines['status'] = InvokeStatus.passed # default to passed
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Nov 08 17:50:27 UTC 2023 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
@ValidateTypeFailure public String pageNumber; @ValidateTypeFailure public Integer crudMode; @Required @Size(max = 1000) public String id; @Required public String url; @Required public String threadName; public String errorName; public String errorLog; @Required @ValidateTypeFailure public String errorCount; @Required
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/assemblies/files/generate-thumbnail
#!/bin/bash cmd_type=$1 url=$2 output_file=$3 image_size=100x100 target_file=$(echo "$url" | sed -e "s#^file:/*#/#g") check_command() { cmd=$1 cmd_path=$(command -v "${cmd}") if [[ ! -e "${cmd_path}" ]] ; then echo "${cmd} does not exist." exit 1 fi } if [[ x"$HOME" = "x/root" ]] ; then HOME=/var/lib/fess fi if [[ x"${cmd_type}" = "xmsoffice" ]] ; then check_command convert
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 12 13:13:28 UTC 2023 - 2.5K bytes - Viewed (0) -
tests/test_tutorial/test_behind_a_proxy/test_tutorial004.py
"servers": [ { "url": IsOneOf( "https://stag.example.com/", # TODO: remove when deprecating Pydantic v1 "https://stag.example.com", ), "description": "Staging environment", }, { "url": IsOneOf( "https://prod.example.com/",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 1.6K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/LetsEncryptTest.java
} } catch (SSLHandshakeException sslhe) { assertTrue(androidMorEarlier); } } private void sendRequest(OkHttpClient client, String url) throws IOException { Request request = new Request.Builder() .url(url) .build(); try (Response response = client.newCall(request).execute()) { assertTrue(response.code() == 200 || response.code() == 404);
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Nov 17 07:40:31 UTC 2020 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/ITBase.java
} public static String getFessUrl() { return System.getProperty("test.fess.url", DEFAULT_FESS_URL); } public static String getEsUrl() { return System.getProperty("test.search_engine.url", DEFAULT_SEARCH_ENGINE_URL); } protected static RequestSpecification checkMethodBase(final Map<String, Object> body) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0)