Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pass (0.12 sec)

  1. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

       */
      @Test
      fun authorityWithMultipleColons() {
        val httpUrl = parse("http://foo:pass1@bar:pass2@baz/path")
        assertThat(httpUrl.username).isEqualTo("foo")
        assertThat(httpUrl.password).isEqualTo("pass1@bar:pass2")
        assertThat(httpUrl).isEqualTo(parse("http://foo:pass1%40bar%3Apass2@baz/path"))
      }
    
      @Test
      fun usernameAndPassword() {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        overrides the stored "Content-Encoding" header.
     *  Fix: Gracefully shut down the HTTP/2 connection before it exhausts the
        namespace of stream IDs (~536 million streams).
     *  Fix: Never pass a null `Route` to `Authenticator`. There was a bug where
        routes were omitted for eagerly-closed connections.
    
    ## Version 3.9.1
    
    _2017-11-18_
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
Back to top