Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mathml (0.2 sec)

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

                val buf = ByteArray(if (writeKind == WriteKind.SMALL_BUFFERS) 256 else 64 * 1024)
                Arrays.fill(buf, 'x'.code.toByte())
                var i = 0
                while (i < n) {
                  sink.write(buf, 0, Math.min(buf.size, n - i))
                  i += buf.size
                }
              }
            }
          }
        val response =
          getResponse(
            Request(
              url = server.url("/"),
    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

            return if (chunked) -1L else size
          }
    
          override fun writeTo(sink: BufferedSink) {
            var count = 0
            while (count < size) {
              sink.write(buffer, 0, Math.min(size - count, writeSize.toLong()).toInt())
              count += writeSize
            }
          }
        }
      }
    
      @Test
      fun emptyResponseBody() {
        server.enqueue(
    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/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    marriott
    
    // marshalls : 2015-07-16 The TJX Companies, Inc.
    marshalls
    
    // maserati : 2015-07-31 Fiat Chrysler Automobiles N.V.
    maserati
    
    // mattel : 2015-08-06 Mattel Sites, Inc.
    mattel
    
    // mba : 2015-04-02 Binky Moon, LLC
    mba
    
    // mckinsey : 2015-07-31 McKinsey Holdings, Inc.
    mckinsey
    
    // med : 2015-08-06 Medistry LLC
    med
    
    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