Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 461 for Square (0.08 seconds)

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

  1. docs/assets/images/icon-square.png

    icon-square.png...
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 1.4K bytes
    - Click Count (0)
  2. docs/assets/images/logo-square.png

    logo-square.png...
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 3.7K bytes
    - Click Count (0)
  3. samples/guide/docs/images/logo-square.png

    logo-square.png...
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Mon Jun 24 12:59:42 GMT 2019
    - 3.7K bytes
    - Click Count (0)
  4. okhttp/src/commonTest/kotlin/okhttp3/internal/publicsuffix/ConfiguredPublicSuffixDatabaseTest.kt

        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.bar.square.com"))
          .isEqualTo("bar.square.com")
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.my.square.com"))
          .isEqualTo("foo.my.square.com")
      }
    
      @Test fun wildcardMatch() {
        list.bytes =
          Buffer()
            .writeUtf8("*.square.com\n")
            .writeUtf8("com\n")
            .writeUtf8("example.com\n")
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/RequestCommonTest.kt

        val request =
          Request
            .Builder()
            .url("https://square.com")
            .tag("a" as Any)
            .tag(null)
            .build()
        assertThat(request.tag<Any>()).isNull()
      }
    
      @Test
      fun removeAbsentTag() {
        val request =
          Request
            .Builder()
            .url("https://square.com")
            .tag(null)
            .build()
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Oct 24 11:36:14 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  6. docs/recipes.md

     [AccessHeadersJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/AccessHeaders.java
     [AccessHeadersKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/AccessHeaders.kt
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Aug 30 17:01:12 GMT 2025
    - 47.8K bytes
    - Click Count (0)
  7. docs/security/tls_configuration_history.md

    [OkHttp30]: https://square.github.io/okhttp/changelog_3x/#version-300
    [OkHttp310]: https://square.github.io/okhttp/changelog_3x/#version-310
    [OkHttp311]: https://square.github.io/okhttp/changelog_3x/#version-320
    [OkHttp312]: https://square.github.io/okhttp/changelog_3x/#version-330
    [OkHttp313]: https://square.github.io/okhttp/changelog_3x/#version-340
    [OkHttp314]: https://square.github.io/okhttp/changelog_3x/#version-310
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 9K bytes
    - Click Count (0)
  8. docs/features/calls.md

    ## [Requests](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-request/)
    
    Each HTTP request contains a URL, a method (like `GET` or `POST`), and a list of headers. Requests may also contain a body: a data stream of a specific content type.
    
    ## [Responses](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-response/)
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 3.9K bytes
    - Click Count (0)
  9. docs/works_with_okhttp.md

     * [PersistentCookieJar](https://github.com/franmontiel/PersistentCookieJar): A persistent `CookieJar`.
     * ⬜️ [Picasso](https://github.com/square/picasso): A powerful image downloading and caching library for Android.
     * ⬜️ [Retrofit](https://github.com/square/retrofit): Type-safe HTTP client for Android and Java by Square.
     * [ScribeJava](https://github.com/scribejava/scribejava): Simple OAuth library for Java
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Nov 26 07:59:38 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  10. samples/guide/src/main/java/okhttp3/recipes/PostMultipart.java

        RequestBody requestBody = new MultipartBody.Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart("image", "logo-square.png",
                RequestBody.create(
                    new File("docs/images/logo-square.png"),
                    MEDIA_TYPE_PNG))
            .build();
    
        Request request = new Request.Builder()
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Mon Jun 24 12:59:42 GMT 2019
    - 2.2K bytes
    - Click Count (0)
Back to Top