- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 1,285 for url (0.05 sec)
-
src/main/resources/fess_label_it.properties
labels.web_crawling_configuration=Scansione web labels.web_crawling_title_details=Configurazione scansione web labels.included_urls=URL da includere nella scansione labels.excluded_urls=URL da escludere dalla scansione labels.included_doc_urls=URL da includere nella ricerca labels.excluded_doc_urls=URL da escludere dalla ricerca labels.user_agent=User-Agent labels.web_crawling_button_create=Crea
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.4K bytes - Viewed (0) -
cmd/generic-handlers.go
return (aType == authTypeAnonymous || aType == authTypeJWT) && req.URL.Path == minioReservedBucketPath+prometheusMetricsPathLegacy || req.URL.Path == minioReservedBucketPath+prometheusMetricsV2ClusterPath || req.URL.Path == minioReservedBucketPath+prometheusMetricsV2NodePath || req.URL.Path == minioReservedBucketPath+prometheusMetricsV2BucketPath || req.URL.Path == minioReservedBucketPath+prometheusMetricsV2ResourcePath ||
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.7K bytes - Viewed (1) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java
private String id; private String url; public TestUrlQueue(String id, String url) { this.id = id; this.url = url; } @Override public String getId() { return id; } @Override public String getUrl() { return url; } @OverrideRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/jcifs/util/PathValidatorTest.java
String url = "smb://user:pass@server/share"; String normalized = validator.validateSmbUrl(url); assertTrue(normalized.contains("user:pass@")); } @Test public void testSmbUrlWithPort() throws Exception { String url = "smb://server:445/share"; String normalized = validator.validateSmbUrl(url);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.6K bytes - Viewed (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() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.3K bytes - Viewed (0) -
cmd/bucket-encryption-handlers.go
if errors.Is(err, kes.ErrKeyNotFound) { writeErrorResponse(ctx, w, toAPIError(ctx, errKMSKeyNotFound), r.URL) return } writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } } configData, err := xml.Marshal(encConfig) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } // Store the bucket encryption configuration in the object layer
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 6.4K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/MockResponseSniTest.kt
handshakeCertificates.trustManager, ).dns(dns) .build() server.enqueue(MockResponse()) val url = server .url("/") .newBuilder() .host("localhost.localdomain") .build() val call = client.newCall(Request(url = url)) val response = call.execute() assertThat(response.isSuccessful).isTrue() val recordedRequest = server.takeRequest()Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/resources/fess_label_zh_CN.properties
labels.createdTime=创建时间 labels.depth=深度 labels.excludedPaths=要从爬网中排除的路径 labels.excludedUrls=要从爬网中排除的URL labels.excludedDocPaths=要从搜索中排除的路径 labels.excludedDocUrls=要从搜索中排除的URL labels.hostname=主机名 labels.id=ID labels.includedPaths=要包含在爬网中的路径 labels.includedUrls=要包含在爬网中的URL labels.includedDocPaths=要包含在搜索中的路径 labels.includedDocUrls=要包含在搜索中的URL labels.maxAccessCount=最大访问数 labels.name=名称 labels.numOfThread=线程数 labels.duplicateHostName=重复名称
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java
public void processUrl(final String url) { if (includeFilteringPattern != null) { addInclude(url.replaceAll(urlPattern, includeFilteringPattern)); } if (excludeFilteringPattern != null) { addExclude(url.replaceAll(urlPattern, excludeFilteringPattern)); } } /** * Returns the URL pattern. * @return The URL pattern. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.2K bytes - Viewed (0)