Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for Poveda (0.2 sec)

  1. okhttp/src/main/kotlin/okhttp3/TlsVersion.kt

      TLS_1_2("TLSv1.2"), // 2008.
      TLS_1_1("TLSv1.1"), // 2006.
      TLS_1_0("TLSv1"), // 1999.
      SSL_3_0("SSLv3"), // 1996.
      ;
    
      @JvmName("-deprecated_javaName")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "javaName"),
        level = DeprecationLevel.ERROR,
      )
      fun javaName(): String = javaName
    
      companion object {
        @JvmStatic
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 1.5K bytes
    - Viewed (1)
  2. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

      }
    
      @Test
      fun redirect() {
        server.enqueue(
          MockResponse.Builder()
            .code(HttpURLConnection.HTTP_MOVED_TEMP)
            .addHeader("Location: " + server.url("/new-path"))
            .body("This page has moved!")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .body("This is the new location!")
            .build(),
        )
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/ConnectionReuseTest.kt

                  .build()
              },
            )
            .build()
        server.enqueue(
          MockResponse(
            code = 301,
            headers = headersOf("Location", "/b"),
            body = "/a has moved!",
          ),
        )
        server.enqueue(
          MockResponse(body = "/b is here"),
        )
        val request = Request(server.url("/"))
        val call = client.newCall(request)
        call.execute().use { response ->
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    smola.no smushcdn.com smøla.no sn sn.cn snaase.no snasa.no sncf snillfjord.no snoasa.no snowflake.app snåase.no snåsa.no so so.gov.pl so.it sobetsu.hokkaido.jp soc.dz soc.lk soc.srcf.net soccer sochi.su social society.museum sodegaura.chiba.jp soeda.fukuoka.jp softbank software software.aero sogndal.no sogne.no sohu soja.okayama.jp soka.saitama.jp sokndal.no sola.no solar sologne.museum solund.no solutions soma.fukushima.jp somna.no sondre-land.no sondrio.it song songdalen.no soni.nara.jp sony...
    Others
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    oki.fukuoka.jp
    omuta.fukuoka.jp
    onga.fukuoka.jp
    onojo.fukuoka.jp
    oto.fukuoka.jp
    saigawa.fukuoka.jp
    sasaguri.fukuoka.jp
    shingu.fukuoka.jp
    shinyoshitomi.fukuoka.jp
    shonai.fukuoka.jp
    soeda.fukuoka.jp
    sue.fukuoka.jp
    tachiarai.fukuoka.jp
    tagawa.fukuoka.jp
    takata.fukuoka.jp
    toho.fukuoka.jp
    toyotsu.fukuoka.jp
    tsuiki.fukuoka.jp
    ukiha.fukuoka.jp
    umi.fukuoka.jp
    usui.fukuoka.jp
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top