Search Options

Results per page
Sort
Preferred Languages
Advance

Results 471 - 480 of 615 for sata (0.02 sec)

  1. UrlEscapers.java

    L49: * form parameter names and values</a>. Escaping is performed with the UTF-8 character encoding. L50: * The caller is responsible for <a L51: * href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart-form-data">replacing L52: * any unpaired carriage return or line feed characters with a CR+LF pair</a> on any non-file L53: * inputs before escaping them with this escaper. L54: * L55: * <p>When escaping a String, the following rules apply: L56: *...
    github.com/google/guava/android/guava/src/com/g...
    Fri Jul 19 16:02:36 UTC 2024
      7.1K bytes
  2. MockWebServerTest.kt

    connection.setDoOutput(true) L353: connection.setFixedLengthStreamingMode(1024 * 1024 * 1024) // 1 GB L354: connection.connect() L355: val out = connection.outputStream L356: val data = ByteArray(1024 * 1024) L357: var i = 0 L358: while (i < 1024) { L359: try { L360: out.write(data) L361: out.flush() L362: if (i == 513) { L363: // pause slightly after halfway to make result more predictable L364: Thread.sleep(100) L365: } L366: ...
    github.com/square/okhttp/mockwebserver-deprecat...
    Mon Jan 08 01:13:22 UTC 2024
      21.9K bytes
  3. MockWebServerTest.kt

    connection.doOutput = true L391: connection.setFixedLengthStreamingMode(1024 * 1024 * 1024) // 1 GB L392: connection.connect() L393: val out = connection.outputStream L394: val data = ByteArray(1024 * 1024) L395: var i = 0 L396: while (i < 1024) { L397: try { L398: out!!.write(data) L399: out.flush() L400: if (i == 513) { L401: // pause slightly after half way to make result more predictable L402: Thread.sleep(100) L403: } L404:...
    github.com/square/okhttp/mockwebserver/src/test...
    Mon Jan 08 01:13:22 UTC 2024
      23.5K bytes
  4. HttpLoggingInterceptorTest.kt

    MockResponse.Builder() L686: .setHeader("Content-Type", "text/event-stream") L687: .chunkedBody( L688: """ L689: |event: add L690: |data: 73857293 L691: | L692: |event: remove L693: |data: 2153 L694: | L695: |event: add L696: |data: 113411 L697: | L698: | L699: """.trimMargin(), L700: 8, L701: ) L702: .build(), L703: ) L704: val response = client....
    github.com/square/okhttp/okhttp-logging-interce...
    Sat Apr 06 09:14:38 UTC 2024
      37.6K bytes
  5. ImmutableList.java

    elements) L240: : copyOf(elements.iterator()); L241: } L242: L243: /** L244: * Returns an immutable list containing the given elements, in order. L245: * L246: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L247: * safe to do so. The exact circumstances under which a copy will or will not be performed are L248: * undocumented and subject to change. L249: * L250: * <p>Note that if {@code list} is a {@code List<String>}, then {@code ...
    github.com/google/guava/guava/src/com/google/co...
    Fri Aug 16 19:14:45 UTC 2024
      30.5K bytes
  6. sidebar.jsp

    type="submit" name="search" id="search-btn"> L18: <em class="fa fa-search"> L19: </button> L20: </div> L21: </div> L22: </form> L23: </c:if> L24: <nav class="mt-2"> L25: L26: <ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu"> L27: <li class="nav-header"><la:message key="labels.sidebar.menu" /></li> L28: <c:if test="${fe:permission('admin-dashboard-view')}"> L29: <li class="nav-item"> L30: <a class="nav-link <c:if test="${param....
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Apr 15 20:55:28 UTC 2021
      17.8K bytes
  7. DuplexTest.kt

    L579: } L580: L581: /** L582: * OkHttp currently doesn't implement failing the request body stream independently of failing the L583: * corresponding response body stream. This is necessary if we want servers to be able to stop L584: * inbound data and send an early 400 before the request body completes. L585: * L586: * This test sends a slow request that is canceled by the server. It expects the response to still L587: * be readable after the request stream is canceled. L588: */ L589:...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Sat Jan 20 10:30:28 UTC 2024
      23.9K bytes
  8. SuggestJob.java

    ionId)); L57: } L58: L59: final TimeoutTask timeoutTask = createTimeoutTask(); L60: try { L61: executeSuggestCreator(); L62: } catch (final Exception e) { L63: logger.warn("Failed to create suggest data.", e); L64: resultBuf.append(e.getMessage()).append("\n"); L65: } finally { L66: if (timeoutTask != null && !timeoutTask.isCanceled()) { L67: timeoutTask.cancel(); L68: } L69: } L70: L71:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Jun 23 04:13:47 UTC 2024
      10K bytes
  9. CrawlerPostcard.java

    postbox.post(postcard); L40: return postcard; L41: } L42: L43: // =================================================================================== L44: // Meta Data L45: // ========= L46: @Override L47: protected String getBodyFile() { L48: return PATH; L49: } L50: L51: @Override L52: protected String[] getPropertyNames()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10K bytes
  10. UrlEscapers.java

    L49: * form parameter names and values</a>. Escaping is performed with the UTF-8 character encoding. L50: * The caller is responsible for <a L51: * href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart-form-data">replacing L52: * any unpaired carriage return or line feed characters with a CR+LF pair</a> on any non-file L53: * inputs before escaping them with this escaper. L54: * L55: * <p>When escaping a String, the following rules apply: L56: *...
    github.com/google/guava/guava/src/com/google/co...
    Fri Jul 19 16:02:36 UTC 2024
      7.1K bytes
Back to top