Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for expectedData (0.1 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

          },
        )
      }
    
      @Test fun maxLengthDataFrame() {
        val expectedData = ByteArray(Http2.INITIAL_MAX_FRAME_SIZE)
        Arrays.fill(expectedData, 2.toByte())
        writeMedium(frame, expectedData.size)
        frame.writeByte(Http2.TYPE_DATA)
        frame.writeByte(FLAG_NONE)
        frame.writeInt(expectedStreamId and 0x7fffffff)
        frame.write(expectedData)
    
        // Check writer sends the same bytes.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top