- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 1,110 for curl (0.04 sec)
-
pom.xml
<url>https://github.com/codelibs/fess-crawler</url> <issueManagement> <system>GitHub</system> <url>https://github.com/codelibs/fess-crawler/issues</url> </issueManagement> <scm> <connection>scm:git:******@****.***:codelibs/fess-crawler.git</connection> <developerConnection>scm:git:******@****.***:codelibs/fess-crawler.git</developerConnection> <url>******@****.***:codelibs/fess-crawler.git</url>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 2.2K bytes - Viewed (0) -
docs/ja/docs/python-types.md
しかし、そうすると「最初の文字を大文字に変換するあのメソッド」を呼び出す必要があります。 それは`upper`でしたか?`uppercase`でしたか?それとも`first_uppercase`?または`capitalize`? そして、古くからプログラマーの友人であるエディタで自動補完を試してみます。 関数の最初のパラメータ`first_name`を入力し、ドット(`.`)を入力してから、`Ctrl+Space`を押すと補完が実行されます。 しかし、悲しいことに、これはなんの役にも立ちません: <img src="https://fastapi.tiangolo.com/img/python-types/image01.png"> ### 型の追加 先ほどのコードから一行変更してみましょう。 以下の関数のパラメータ部分を: ```Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
return null; } // trim String url = u.trim(); int idx = url.indexOf('#'); if (idx >= 0) { url = url.substring(0, idx); } url = url.replace("/./", "/"); idx = url.indexOf(";jsessionid"); if (idx >= 0) { url = url.replaceFirst(";jsessionid=[a-zA-Z0-9\\.]*", ""); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Oct 24 12:16:00 UTC 2024 - 19.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
public ResponseData doHead(final String url) { HttpUriRequest httpHead; try { httpHead = new HttpHead(url); } catch (final IllegalArgumentException e) { throw new CrawlingAccessException("The url may not be valid: " + url, e); } return doHttpMethod(url, httpHead); } public ResponseData doHttpMethod(final String url, final HttpUriRequest httpRequest) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 09 09:29:26 UTC 2024 - 41K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/ConnectionListenerTest.kt
@ValueSource(booleans = [true, false]) fun successfulCallEventSequence() { server!!.enqueue(MockResponse(body = "abc")) val call = client.newCall( Request.Builder() .url(server!!.url("/")) .build(), ) val response = call.execute() assertThat(response.code).isEqualTo(200) assertThat(response.body.string()).isEqualTo("abc") response.body.close()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 9.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/jar/JarFileUtilTest.java
} /** * @throws Exception */ public void testRelativePath() throws Exception { final File f = new File("/Program Files/foo.jar"); URL url = new URL("jar:" + f.toURI().toURL() + "!/foo/bar/"); url = new URL(url, ".."); System.out.println(url.toExternalForm()); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
cni/pkg/nodeagent/healthServer_test.go
defer server.Close() makeReq(t, server.URL, constants.LivenessEndpoint, http.StatusOK) makeReq(t, server.URL, constants.ReadinessEndpoint, http.StatusServiceUnavailable) installReady.Store(true) watchReady.Store(true) assert.Equal(t, installReady.Load(), true) assert.Equal(t, watchReady.Load(), true) makeReq(t, server.URL, constants.LivenessEndpoint, http.StatusOK) makeReq(t, server.URL, constants.ReadinessEndpoint, http.StatusOK)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 26 20:34:28 UTC 2024 - 2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CallKotlinTest.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 8.4K bytes - Viewed (0) -
internal/config/identity/plugin/config.go
return config.DefaultHelpPostfix(DefaultKVS, key) } // Help for Identity Plugin Help = config.HelpKVS{ config.HelpKV{ Key: URL, Description: `plugin hook endpoint (HTTP(S)) e.g. "http://localhost:8181/path/to/endpoint"` + defaultHelpPostfix(URL), Type: "url", }, config.HelpKV{ Key: AuthToken, Description: "authorization token for plugin hook endpoint" + defaultHelpPostfix(AuthToken),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 13.3K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml
<url>http://www.apache.org/path/to/parent/</url> <scm> <connection>scm:my-scm:http://domain.org/base</connection> <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection> <url>https://domain.org/base</url> </scm> <distributionManagement> <site> <url>scp://scp.domain.org/base/</url> </site> </distributionManagement>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0)