- Sort Score
- Num 10 results
- Language All
Results 291 - 300 of 734 for Curl (0.1 seconds)
-
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return getHelpUrl(url); } /** * Gets the help URL for a given base URL. * * @param url The base URL. * @return The localized help URL. */ protected String getHelpUrl(final String url) { final Locale locale = ComponentUtil.getRequestManager().getUserLocale(); if (locale != null) { final String lang = locale.getLanguage();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
} @Test public void test_isUrlCrawlable_noExcludePattern() { DataStoreParams paramMap = new DataStoreParams(); String url = "http://example.com/test.html"; boolean result = indexUpdateCallback.isUrlCrawlable(paramMap, url); assertTrue(result); } @Test public void test_isUrlCrawlable_excludePatternAsString() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0) -
okhttp-zstd/src/test/java/okhttp3/zstd/ZstdInterceptorTest.kt
return result.readByteString() } private fun response( url: String, body: ByteString, fn: Response.Builder.() -> Unit = {}, ): Response = Response .Builder() .body(body.toResponseBody("text/plain".toMediaType())) .code(200) .message("OK") .request(Request.Builder().url(url).build()) .protocol(Protocol.HTTP_2) .apply(fn) .build()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Aug 01 06:04:22 GMT 2025 - 4.8K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for failure URL administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** The URL that failed during crawling */ public String url; /** Minimum error count filter */ public Integer errorCountMin;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.2K bytes - Click Count (0) -
docs/assets/css/app.css
@font-face { font-family: cash-market; src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal } @font-face { font-family: cash-market; src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal } @font-face {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 08 07:57:03 GMT 2022 - 1.1K bytes - Click Count (2) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
assertEquals(128, result.length()); } } catch (Exception e) { // Expected for empty map without URL } // Test with null URL Map<String, Object> nullUrlMap = new HashMap<>(); nullUrlMap.put("url", null); try { String result = crawlingInfoHelper.generateId(nullUrlMap); if (result != null) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
* Applies URL decoding with the specified character encoding. * * @param queryString the query string to parse * @param enc the character encoding to use for URL decoding * @return a map of parameter names to their decoded values * @throws IOException if an error occurs during URL decoding */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java
public Map<String, String[]> fields = new HashMap<>(); /** Search query parameter that caused the error */ public String q; /** URL parameter associated with the error */ public String url; /** Number of results parameter */ public String num; /** Sort order parameter for search results */ public String sort;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.5K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/DevServer.kt
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 1.9K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/ConfigureTimeouts.kt
.readTimeout(5, TimeUnit.SECONDS) .callTimeout(10, TimeUnit.SECONDS) .build() fun run() { val request = Request .Builder() .url("http://httpbin.org/delay/2") // This URL is served with a 2 second delay. .build() client.newCall(request).execute().use { response -> println("Response completed: $response") } } } fun main() {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 1.3K bytes - Click Count (0)