Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 1,137 for Curl (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt

       * cookies.
       */
      fun saveFromResponse(
        url: HttpUrl,
        cookies: List<Cookie>,
      )
    
      /**
       * Load cookies from the jar for an HTTP request to [url]. This method returns a possibly
       * empty list of cookies for the network request.
       *
       * Simple implementations will return the accepted cookies that have not yet expired and that
       * [match][Cookie.matches] [url].
       */
      fun loadForRequest(url: HttpUrl): List<Cookie>
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls3-parent.xml

           child.scm.url.inherit.append.path="false">
        <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 child.site.url.inherit.append.path="false">
          <url>scp://scp.domain.org/base/</url>
        </site>
      </distributionManagement>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.8K bytes
    - Click Count (0)
  3. okhttp-java-net-cookiejar/src/main/kotlin/okhttp3/java/net/cookiejar/JavaNetCookieJar.kt

        }
      }
    
      override fun loadForRequest(url: HttpUrl): List<Cookie> {
        val cookieHeaders =
          try {
            // The RI passes all headers. We don't have 'em, so we don't pass 'em!
            cookieHandler.get(url.toUri(), emptyMap<String, List<String>>())
          } catch (e: IOException) {
            Platform.get().log("Loading cookies failed for " + url.resolve("/...")!!, WARN, e)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Mar 19 07:46:39 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  4. docs/zh/docs/how-to/general.md

    ## OpenAPI 元数据 - 文档 { #openapi-metadata-docs }
    
    要添加 OpenAPI 的元数据,包括许可证、版本、联系方式等,请阅读 [教程 - 元数据和文档 URL](../tutorial/metadata.md) 文档。
    
    ## OpenAPI 自定义 URL { #openapi-custom-url }
    
    要自定义 OpenAPI 的 URL(或删除它),请阅读 [教程 - 元数据和文档 URL](../tutorial/metadata.md#openapi-url) 文档。
    
    ## OpenAPI 文档 URL { #openapi-docs-urls }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  5. docs/en/data/members.yml

      url: https://github.com/tiangolo
    - login: Kludex
      avatar_url: https://avatars.githubusercontent.com/u/7353520
      url: https://github.com/Kludex
    - login: alejsdev
      avatar_url: https://avatars.githubusercontent.com/u/90076947
      url: https://github.com/alejsdev
    - login: svlandeg
      avatar_url: https://avatars.githubusercontent.com/u/8796347
      url: https://github.com/svlandeg
    - login: YuriiMotov
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 18 18:44:00 GMT 2025
    - 819 bytes
    - Click Count (0)
  6. docs/ja/docs/how-to/general.md

    ライセンス、バージョン、連絡先などを含むメタデータを OpenAPI スキーマに追加するには、[チュートリアル - メタデータとドキュメントの URL](../tutorial/metadata.md) を参照してください。
    
    ## OpenAPI のカスタム URL { #openapi-custom-url }
    
    OpenAPI の URL をカスタマイズ(または削除)するには、[チュートリアル - メタデータとドキュメントの URL](../tutorial/metadata.md#openapi-url) を参照してください。
    
    ## OpenAPI ドキュメントの URL { #openapi-docs-urls }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  7. compat/maven-model-builder/src/test/resources/poms/validation/reserved-repository-id.xml

        <repository>
          <id>local</id>
          <url>http://localhost</url>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>local</id>
          <url>http://localhost</url>
        </pluginRepository>
      </pluginRepositories>
    
      <distributionManagement>
        <repository>
          <id>local</id>
          <url>http://localhost</url>
        </repository>
        <snapshotRepository>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  8. tests/test_tutorial/test_body_nested_models/test_tutorial006.py

                "price": 35.4,
                "images": {"url": "http://example.com/image.png", "name": "example image"},
            },
        )
        assert response.status_code == 422, response.text
        assert response.json() == {
            "detail": [
                {
                    "loc": ["body", "images"],
                    "input": {
                        "url": "http://example.com/image.png",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

              Request
                .Builder()
                .url(server.url("/"))
                .build(),
            )
        val client2 =
          client
            .newBuilder()
            .readTimeout(Duration.ofMillis(200))
            .build()
        val call2 =
          client2
            .newCall(
              Request
                .Builder()
                .url(server.url("/"))
                .build(),
            )
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 67.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

        }
    
        @Test
        public void test_execute_skipsDocumentsWithoutUrl() {
            final Map<String, Object> doc = new LinkedHashMap<>();
            doc.put("title", "No URL Doc");
            doc.put("content", "Content without URL");
            setupMockComponents(Collections.singletonList(doc));
    
            final String result = indexExportJob.execute();
    
            assertEquals("Exported 1 documents.", result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
Back to Top