Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for flushRequest (0.06 seconds)

  1. src/test/java/jcifs/internal/smb2/RequestWithFileIdTest.java

            RequestWithFileId readRequest = new Smb2ReadRequest(mockConfig, testFileId, testOutputBuffer, 0);
            RequestWithFileId writeRequest = new Smb2WriteRequest(mockConfig, testFileId);
            RequestWithFileId flushRequest = new Smb2FlushRequest(mockConfig, testFileId);
            RequestWithFileId ioctlRequest = new Smb2IoctlRequest(mockConfig, 0x00090000, testFileId);
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/Exchange.kt

        return RequestBodySink(
          delegate = rawRequestBody,
          contentLength = contentLength,
          isSocket = false,
        )
      }
    
      @Throws(IOException::class)
      fun flushRequest() {
        try {
          codec.flushRequest()
        } catch (e: IOException) {
          call.eventListener.requestFailed(call, e)
          trackFailure(e)
          throw e
        }
      }
    
      @Throws(IOException::class)
      fun finishRequest() {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Nov 05 18:28:35 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

        }
        check(state == STATE_READING_RESPONSE_BODY || state == STATE_CLOSED) {
          "Trailers cannot be read because the state is $state"
        }
        return trailers
      }
    
      override fun flushRequest() {
        socket.sink.flush()
      }
    
      override fun finishRequest() {
        socket.sink.flush()
      }
    
      /** Returns bytes of a request header for sending on an HTTP transport. */
      fun writeRequest(
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Thu Jul 31 04:18:40 GMT 2025
    - 17.5K bytes
    - Click Count (7)
Back to Top