golang-gopkg-eapache-queue.v1 1.1.0-2 source package in Ubuntu

Changelog

golang-gopkg-eapache-queue.v1 (1.1.0-2) unstable; urgency=medium

  * Team upload
  * Add github.com/eapache/queue to Go-Import-Path
  * Update Standards-Version to 4.6.2 (no changes)

 -- Shengjing Zhu <email address hidden>  Sun, 01 Jan 2023 16:57:18 +0800

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-gopkg-eapache-queue.v1_1.1.0-2.dsc 1.7 KiB e3850f45df3ff48dc077cc7ee78675bc1af2322ef97320c920689ffe3959fd06
golang-gopkg-eapache-queue.v1_1.1.0.orig.tar.gz 3.4 KiB 2be4716ba2bba5f7c125a8fe72ba534f02cf0d7d98d3a372d4ebe54b170f7329
golang-gopkg-eapache-queue.v1_1.1.0-2.debian.tar.xz 2.9 KiB e138a525c660aa1dd52a66ea159f6740341dbaefec0e1aae1807ff2ac5135eb2

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.