Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for WriteByte (0.31 sec)

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

        }
      }
    
      @Test
      fun singleByteReadIsSigned() {
        server.enqueue(
          MockResponse.Builder()
            .body(
              Buffer()
                .writeByte(-2)
                .writeByte(-1),
            )
            .build(),
        )
        val response = getResponse(newRequest("/"))
        val inputStream = response.body.byteStream()
        assertThat(inputStream.read()).isEqualTo(254)
    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. api/go1.10.txt

    pkg strings, method (*Builder) Len() int
    pkg strings, method (*Builder) Reset()
    pkg strings, method (*Builder) String() string
    pkg strings, method (*Builder) Write([]uint8) (int, error)
    pkg strings, method (*Builder) WriteByte(uint8) error
    pkg strings, method (*Builder) WriteRune(int32) (int, error)
    pkg strings, method (*Builder) WriteString(string) (int, error)
    pkg strings, type Builder struct
    pkg syscall (freebsd-386), const SYS_UTIMENSAT = 547
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertFailsWith<ConnectionShutdownException> {
          connection.newStream(headerEntries("b", "banana"), false)
        }
        val sink = stream.getSink().buffer()
        assertFailsWith<IOException> {
          sink.writeByte(0)
          sink.flush()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("stream finished")
        }
        assertFailsWith<IOException> {
          stream.getSource().read(Buffer(), 1)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 75.4K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg hash/maphash, method (*Hash) Sum([]uint8) []uint8
    pkg hash/maphash, method (*Hash) Sum64() uint64
    pkg hash/maphash, method (*Hash) Write([]uint8) (int, error)
    pkg hash/maphash, method (*Hash) WriteByte(uint8) error
    pkg hash/maphash, method (*Hash) WriteString(string) (int, error)
    pkg hash/maphash, type Hash struct
    pkg hash/maphash, type Seed struct
    pkg log, const Lmsgprefix = 64
    pkg log, const Lmsgprefix ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg bufio, method (*Writer) Available() int
    pkg bufio, method (*Writer) Buffered() int
    pkg bufio, method (*Writer) Flush() error
    pkg bufio, method (*Writer) Write([]uint8) (int, error)
    pkg bufio, method (*Writer) WriteByte(uint8) error
    pkg bufio, method (*Writer) WriteRune(int32) (int, error)
    pkg bufio, method (*Writer) WriteString(string) (int, error)
    pkg bufio, method (ReadWriter) Available() int
    pkg bufio, method (ReadWriter) Flush() error
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  6. api/go1.1.txt

    pkg image, const YCbCrSubsampleRatio444 = 0
    pkg image/draw, const Over = 0
    pkg image/draw, const Src = 1
    pkg image/jpeg, const DefaultQuality = 75
    pkg io, type ByteWriter interface { WriteByte }
    pkg io, type ByteWriter interface, WriteByte(uint8) error
    pkg io, var ErrNoProgress error
    pkg log, const Ldate = 1
    pkg log, const Llongfile = 8
    pkg log, const Lmicroseconds = 4
    pkg log, const Lshortfile = 16
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top