golang-github-shenwei356-bpool 0.0~git20160710.f9e0ee4-3 source package in Ubuntu

Changelog

golang-github-shenwei356-bpool (0.0~git20160710.f9e0ee4-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + golang-github-shenwei356-bpool-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Sat, 26 Nov 2022 03:56:25 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-shenwei356-bpool_0.0~git20160710.f9e0ee4-3.dsc 2.3 KiB 097c4ae8da4313ca4b6330b6a9a8d3a5b0d60b77bb9bc63c7a21a01b23516a94
golang-github-shenwei356-bpool_0.0~git20160710.f9e0ee4.orig.tar.xz 6.4 KiB d380c91cdbb3de4089ed12a0fe63d236dc8c5a2a94b2b0988ef33493770b00cd
golang-github-shenwei356-bpool_0.0~git20160710.f9e0ee4-3.debian.tar.xz 2.2 KiB aca247ddd81d6ac64d10926b08f774c43d65acd60cde603780b3a343dda68754

No changes file available.

Binary packages built by this source

golang-github-shenwei356-bpool-dev: Buffer/Byte pool for Go (library)

 This library implements leaky pools of byte arrays and Buffers as bounded
 channels. It is based on the leaky buffer example from the Effective
 .
 Bpool provides the following pool types:
 .
  BufferPool: fixed-size pool of bytes.Buffers
  BytePool: fixed-size pool of byte slices with a pre-set width
  SizedBufferPool: alternative to BufferPool that pre-sizes the
              capacity of buffers issued from the pool and discards
              buffers that have grown too large upon return.
 .
 A common use case for this package is to use buffers
 to execute HTML templates against (via ExecuteTemplate) or encode JSON
 into (via json.NewEncoder). This allows you to catch any rendering
 or marshalling errors prior to writing to a http.ResponseWriter,
 which helps to avoid writing incomplete or malformed data to the
 response.