Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Schile (0.15 sec)

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

                }
              } else {
                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(
    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

          override fun contentLength(): Long {
            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
    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

    // schmidt : 2014-04-03 SCHMIDT GROUPE S.A.S.
    schmidt
    
    // scholarships : 2014-04-24 Scholarships.com, LLC
    scholarships
    
    // school : 2014-12-18 Binky Moon, LLC
    school
    
    // schule : 2014-03-06 Binky Moon, LLC
    schule
    
    // schwarz : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG
    schwarz
    
    // science : 2014-09-11 dot Science Limited
    science
    
    // scot : 2014-01-23 Dot Scot Registry Limited
    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