golang-gopkg-eapache-queue.v1 1.0.2-4 source package in Ubuntu

Changelog

golang-gopkg-eapache-queue.v1 (1.0.2-4) unstable; urgency=medium

  * Team upload.
  * Vcs-* urls: pkg-go-team -> go-team.

 -- Alexandre Viau <email address hidden>  Mon, 05 Feb 2018 23:10:12 -0500

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-gopkg-eapache-queue.v1_1.0.2-4.dsc 2.2 KiB b3b4ea377f4a3e874d8994ddb2235b31cbbe4144291d30e3468a6ed2c7a621a2
golang-gopkg-eapache-queue.v1_1.0.2.orig.tar.gz 3.2 KiB 14282b8a19215157207275d439b139361e2e1dbdc7ae42fed8a21f1b14aa6d56
golang-gopkg-eapache-queue.v1_1.0.2-4.debian.tar.xz 2.2 KiB 90093b6e9bd29728ef215438e4abe65235d2e11d9e09566263e78c048191d456

Available diffs

No changes file available.

Binary packages built by this source

golang-gopkg-eapache-queue.v1-dev: fast golang queue using ring-buffer

 A fast Golang queue using a ring-buffer, based on the version suggested
 by Dariusz Górecki. Using this instead of other, simpler, queue
 implementations (slice+append or linked list) provides substantial memory
 and time benefits, and fewer GC pauses. The queue implemented here is as
 fast as it is in part because it is not thread-safe.