golang-github-oxtoacart-bpool 0.0~git20150712.4e1c556-1.1 source package in Ubuntu

Changelog

golang-github-oxtoacart-bpool (0.0~git20150712.4e1c556-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Sat, 09 Jan 2021 17:01:58 +0100

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
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-oxtoacart-bpool_0.0~git20150712.4e1c556-1.1.dsc 2.3 KiB 0447686a2c20def26866f10e2fc22ae788936934ec7441afaa7d1d4272179408
golang-github-oxtoacart-bpool_0.0~git20150712.4e1c556.orig.tar.xz 6.4 KiB 25bdc3628ba848db2936d1633929d2f45b165196a5c1dc6be2b3f041905c4d09
golang-github-oxtoacart-bpool_0.0~git20150712.4e1c556-1.1.debian.tar.xz 1.6 KiB a56c1909b9ba80a48adef0583bef0ada912df9b621d6ba375f83378d06bc4aca

No changes file available.

Binary packages built by this source

golang-github-oxtoacart-bpool-dev: Buffer/Byte pool for Go

 bpool implements leaky pools of byte arrays and Buffers as bounded
 channels.
 .
 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.