Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for dove (9.01 sec)

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

     *
     * All event methods must execute fast, without external locking, cannot throw exceptions, attempt
     * to mutate the event parameters, or be re-entrant back into the client. Any IO - writing to files
     * or network should be done asynchronously.
     */
    abstract class EventListener {
      /**
       * Invoked as soon as a call is enqueued or executed by a client. In case of thread or stream
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

        transferKind.setBody(mockResponse, "I love puppies but hate spiders", 1)
        server.enqueue(mockResponse.build())
    
        // Make sure that calling skip() doesn't omit bytes from the cache.
        val request = Request.Builder().url(server.url("/")).build()
        val response1 = client.newCall(request).execute()
        val in1 = response1.body.source()
        assertThat(in1.readUtf8("I love ".length.toLong())).isEqualTo("I love ")
    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)
  3. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

      private fun acceptConnections() {
        while (true) {
          val socket: Socket
          try {
            socket = serverSocket!!.accept()
          } catch (e: SocketException) {
            logger.fine("${this@MockWebServer} done accepting connections: ${e.message}")
            return
          }
    
          val socketPolicy = dispatcher.peek().socketPolicy
          if (socketPolicy === DisconnectAtStart) {
            dispatchBookkeepingRequest(0, socket)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Mar 31 17:16:15 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F540..1F543  ; valid                  ;      ; NV8    # 6.1  CIRCLED CROSS POMMEE..NOTCHED LEFT SEMICIRCLE WITH THREE DOTS
    1F544..1F54A  ; valid                  ;      ; NV8    # 7.0  NOTCHED RIGHT SEMICIRCLE WITH THREE DOTS..DOVE OF PEACE
    1F54B..1F54F  ; valid                  ;      ; NV8    # 8.0  KAABA..BOWL OF HYGIEIA
    1F550..1F567  ; valid                  ;      ; NV8    # 6.0  CLOCK FACE ONE OCLOCK..CLOCK FACE TWELVE-THIRTY
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/HttpMethod.kt

      fun invalidatesCache(method: String): Boolean =
        (
          method == "POST" || method == "PATCH" || method == "PUT" ||
            method == "DELETE" || method == "MOVE"
        )
    
      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun requiresRequestBody(method: String): Boolean =
        (
          method == "POST" || method == "PUT" ||
    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 (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

              return
            }
    
            // Write the mask to start a multibyte value.
            out.writeByte(bits or prefixMask)
            value -= prefixMask
    
            // Write 7 bits at a time 'til we're done.
            while (value >= 0x80) {
              val b = value and 0x7f
              out.writeByte(b or 0x80)
              value = value ushr 7
            }
            out.writeByte(value)
          }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 22.5K bytes
    - Viewed (1)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // london : 2013-11-14 Dot London Domains Limited
    london
    
    // lotte : 2014-11-07 Lotte Holdings Co., Ltd.
    lotte
    
    // lotto : 2014-04-10 Identity Digital Limited
    lotto
    
    // love : 2014-12-22 Merchant Law Group LLP
    love
    
    // lpl : 2015-07-30 LPL Holdings, Inc.
    lpl
    
    // lplfinancial : 2015-07-30 LPL Holdings, Inc.
    lplfinancial
    
    // ltd : 2014-09-25 Binky Moon, LLC
    ltd
    
    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)
  8. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    dnsupdate.info dnsupdater.de do docs doctor does-it.net doesntexist.com doesntexist.org dog dolls.museum domains donetsk.ua donna.no donostia.museum dontexist.com dontexist.net dontexist.org doomdns.com doomdns.org dopaas.com doshi.yamanashi.jp dot dovre.no download dp.ua dr.in dr.na dr.tr drammen.no drangedal.no dray-dns.de drayddns.com draydns.de dreamhosters.com drive drobak.no drr.ac drud.io drud.us drøbak.no dscloud.biz dscloud.me dscloud.mobi dsmynas.com dsmynas.net dsmynas.org dst.mi.us dtv...
    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)
Back to top