Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 393 for failed (0.05 sec)

  1. OkHttpTest.kt

    .execute() L851: L852: response.use { L853: assertEquals(200, response.code) L854: assertEquals(Protocol.HTTP_2, response.protocol) L855: } L856: L857: // Only logs to the test logger above L858: // Will fail if "adb shell setprop log.tag.okhttp.Http2 DEBUG" is called L859: assertEquals(setOf(OkHttpTest::class.java.name), testHandler.calls.keys) L860: } L861: L862: fun testCachedRequest() { L863: enableTls() L864: L865: server.enqueue(MockResponse(body = "abc", headers =...
    github.com/square/okhttp/android-test/src/andro...
    Sat Jan 20 10:30:28 UTC 2024
      27K bytes
  2. codeql.yml

    matrix.language }} L68: build-mode: ${{ matrix.build-mode }} L69: # If you wish to specify custom queries, you can do so here or in a config file. L70: # By default, queries listed here will override any specified in a config file. L71: # Prefix the list here with "+" to use these queries and those in the config file. L72: L73: # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your...
    github.com/codelibs/fess/.github/workflows/code...
    Wed Aug 14 23:51:19 UTC 2024
      4.4K bytes
  3. LICENSE

    L108: L109: (d) If the Work includes a "NOTICE" text file as part of its L110: distribution, then any Derivative Works that You distribute must L111: include a readable copy of the attribution notices contained L112: within such NOTICE file, excluding those notices that do not L113: pertain to any part of the Derivative Works, in at least one L114: of the following places: within a NOTICE text file distributed L115: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/vendo...
    Sun Sep 22 18:50:45 UTC 2024
      10.7K bytes
  4. Http2Reader.kt

    `windowSizeIncrement` bytes can be sent on `streamId`, or the L519: * connection if `streamId` is zero. L520: */ L521: fun windowUpdate( L522: streamId: Int, L523: windowSizeIncrement: Long, L524: ) L525: L526: /** L527: * Called when reading a headers or priority frame. This may be used to change the stream's L528: * weight from the default (16) to a new value. L529: * L530: * @param streamId stream which has a priority change. L531: * @param streamDependency...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Jan 08 01:13:22 UTC 2024
      19.9K bytes
  5. LICENSE

    L106: L107: (d) If the Work includes a "NOTICE" text file as part of its L108: distribution, then any Derivative Works that You distribute must L109: include a readable copy of the attribution notices contained L110: within such NOTICE file, excluding those notices that do not L111: pertain to any part of the Derivative Works, in at least one L112: of the following places: within a NOTICE text file distributed L113: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Tue Oct 22 13:56:22 UTC 2024
      10.5K bytes
  6. events.md

    L214: return EventListener.NONE; L215: } L216: } L217: }; L218: L219: ... L220:} L221:``` L222: L223:### Events with Failures L224: L225:When an operation fails, a failure method is called. This is `connectFailed()` for failures while building a connection to the server, and `callFailed()` when the HTTP call fails permanently. When a failure happens it is possible that a `start` event won’t have a corresponding `end` event. L226: L227:![Events Diagram](../assets/images/events_with_failures@2x.png)...
    github.com/square/okhttp/docs/features/events.md
    Sun Feb 06 02:19:09 UTC 2022
      7.7K bytes
  7. LICENSE

    L108: L109: (d) If the Work includes a "NOTICE" text file as part of its L110: distribution, then any Derivative Works that You distribute must L111: include a readable copy of the attribution notices contained L112: within such NOTICE file, excluding those notices that do not L113: pertain to any part of the Derivative Works, in at least one L114: of the following places: within a NOTICE text file distributed L115: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/vendo...
    Sun Sep 22 18:50:45 UTC 2024
      10.6K bytes
  8. LICENSE

    L108: L109: (d) If the Work includes a "NOTICE" text file as part of its L110: distribution, then any Derivative Works that You distribute must L111: include a readable copy of the attribution notices contained L112: within such NOTICE file, excluding those notices that do not L113: pertain to any part of the Derivative Works, in at least one L114: of the following places: within a NOTICE text file distributed L115: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/vendo...
    Sun Sep 22 18:50:45 UTC 2024
      10.6K bytes
  9. LICENSE

    L106: L107: (d) If the Work includes a "NOTICE" text file as part of its L108: distribution, then any Derivative Works that You distribute must L109: include a readable copy of the attribution notices contained L110: within such NOTICE file, excluding those notices that do not L111: pertain to any part of the Derivative Works, in at least one L112: of the following places: within a NOTICE text file distributed L113: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Fri Apr 01 18:49:15 UTC 2022
      11.1K bytes
  10. Dispatcher.kt

    than [maxRequests] requests are in flight when this is invoked, those requests will L48: * remain in flight. L49: */ L50: var maxRequests = 64 L51: get() = this.withLock { field } L52: set(maxRequests) { L53: require(maxRequests >= 1) { "max < 1: $maxRequests" } L54: this.withLock { L55: field = maxRequests L56: } L57: promoteAndExecute() L58: } L59: L60: /** L61: * The maximum number of requests for each host to execute concurrently. This limits requests...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Thu Jun 20 14:10:53 UTC 2024
      9K bytes
Back to top