- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 1,453 for URL (0.03 sec)
-
src/main/webapp/js/search.js
e.trigger.classList.remove("far"); e.trigger.classList.remove("fa-copy"); e.trigger.classList.add("url-copied"); e.trigger.classList.add("fas"); e.trigger.classList.add("fa-check"); setTimeout(function(){ e.trigger.classList.remove("url-copied"); e.trigger.classList.remove("fas"); e.trigger.classList.remove("fa-check"); e.trigger.classList.add("url-copy");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 7.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImpl.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 7.5K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/UrlSettingsSource.java
*/ public UrlSettingsSource(URL settingsUrl) { super(settingsUrl); } /** * Gets the settings URL of this model source. * * @return The underlying settings URL, never {@code null}. * @deprecated instead use {@link #getUrl()} */ @Deprecated public URL getSettingsUrl() { return getUrl(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java
url.append(parentUrl); concatPath(url, pathAdjustment); concatPath(url, childPath); return url.toString(); } private void concatPath(StringBuilder url, String path) { if (!path.isEmpty()) { boolean initialUrlEndsWithSlash = url.charAt(url.length() - 1) == '/';
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HttpUrlTest.kt
assertThat(url.queryParameterName(1)).isEqualTo(" ") assertThat(url.queryParameter("m")).isEqualTo("m") assertThat(url.queryParameter(" ")).isEqualTo(" ") } @Test fun parsedQueryDoesntIncludeFragment() { val url = parse("http://host/?#fragment") assertThat(url.fragment).isEqualTo("fragment") assertThat(url.query).isEqualTo("")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 67.9K bytes - Viewed (0) -
guava/src/com/google/common/net/UrlEscapers.java
* href="https://url.spec.whatwg.org/#syntax-url-path-segment">URL path segments</a>. The returned * escaper escapes all non-ASCII characters, even though <a * href="https://url.spec.whatwg.org/#url-code-points">many of these are accepted in modern * URLs</a>. (<a href="https://url.spec.whatwg.org/#path-state">If the escaper were to leave these
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 7.1K bytes - Viewed (0) -
cmd/endpoint_test.go
{ ":1234", []string{"/d1", "/d2", "/d3", "/d4"}, ":1234", Endpoints{ Endpoint{URL: &url.URL{Path: mustAbs("/d1")}, IsLocal: true}, Endpoint{URL: &url.URL{Path: mustAbs("/d2")}, IsLocal: true}, Endpoint{URL: &url.URL{Path: mustAbs("/d3")}, IsLocal: true}, Endpoint{URL: &url.URL{Path: mustAbs("/d4")}, IsLocal: true}, }, ErasureSetupType, nil, },
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Jan 13 07:53:03 UTC 2024 - 18.9K bytes - Viewed (0) -
test-site/app/models/ContentsCreator.java
final int endpos = h.indexOf('"'); String url = h.substring(0, endpos); if(url.contains("#")) { continue; } if(url.startsWith("http")) { queue.add(url); } else if(url.startsWith("//")) { queue.add(schema + ":" + url); } else if(url.startsWith("/")) { queue.add(schema + "://" + host + url);
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Fri Nov 06 08:48:32 UTC 2015 - 3.7K bytes - Viewed (0) -
cmd/bucket-notification-handlers.go
return } if s3Error := checkRequestAuthType(ctx, r, policy.GetBucketNotificationAction, bucketName, ""); s3Error != ErrNone { writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL) return } _, err := objAPI.GetBucketInfo(ctx, bucketName, BucketOptions{}) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.1K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/SocksProxyTest.kt
clientTestRule.newClientBuilder() .proxy(socksProxy.proxy()) .build() val request1 = Request.Builder().url(server.url("/")).build() val response1 = client.newCall(request1).execute() assertThat(response1.body.string()).isEqualTo("abc") val request2 = Request.Builder().url(server.url("/")).build() val response2 = client.newCall(request2).execute() assertThat(response2.body.string()).isEqualTo("def")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.5K bytes - Viewed (0)