Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mano (0.2 sec)

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

            ),
          )
        }
        assertFailsWith<ProtocolException> {
          getResponse(newRequest("/0"))
        }.also { expected ->
          assertThat(expected.message).isEqualTo(
            "Too many follow-up requests: 21",
          )
        }
      }
    
      @Test
      fun httpsWithCustomTrustManager() {
        val hostnameVerifier = RecordingHostnameVerifier()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

            .build()
        assertFailsWith<IOException> {
          client.newCall(Request.Builder().url(server.url("/0")).build()).execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Too many follow-up requests: 21")
        }
      }
    
      /**
       * We had a bug where we were passing a null route to the authenticator.
       * https://github.com/square/okhttp/issues/3809
       */
      @Test
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        )
        val url = server.url("/a")
        assertThat(get(url).body.string()).isEqualTo("a")
        val i = cache.urls()
        assertThat(i.next()).isEqualTo(url.toString())
        i.remove()
    
        // Too many calls to remove().
        assertFailsWith<IllegalStateException> {
          i.remove()
        }
      }
    
      @Test
      fun elementEvictedBetweenHasNextAndNext() {
        // Put a response in the cache.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    maif
    
    // maison : 2013-12-05 Binky Moon, LLC
    maison
    
    // makeup : 2015-01-15 XYZ.COM LLC
    makeup
    
    // man : 2014-12-04 MAN SE
    man
    
    // management : 2013-11-07 Binky Moon, LLC
    management
    
    // mango : 2013-10-24 PUNTO FA S.L.
    mango
    
    // map : 2016-06-09 Charleston Road Registry Inc.
    map
    
    // market : 2014-03-06 Dog Beach, LLC
    market
    
    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