Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Wright (0.41 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    mckinsey
    
    // med : 2015-08-06 Medistry LLC
    med
    
    // media : 2014-03-06 Binky Moon, LLC
    media
    
    // meet : 2014-01-16 Charleston Road Registry Inc.
    meet
    
    // melbourne : 2014-05-29 The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation
    melbourne
    
    // meme : 2014-01-30 Charleston Road Registry Inc.
    meme
    
    // memorial : 2014-10-16 Dog Beach, LLC
    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)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        val call = client.newCall(Request(server.url("/a")))
        val executor = Executors.newSingleThreadExecutor()
        val result = executor.submit<Response?> { call.execute() }
        Thread.sleep(100) // wait for it to go in flight.
        call.cancel()
        assertFailsWith<IOException> {
          result.get()!!.body.bytes()
        }
        assertThat(server.requestCount).isEqualTo(1)
      }
    
      @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)
Back to top