Codebase list golang-gopkg-eapache-queue.v1 / 14052f68-6566-48f5-b9cf-db4debff0b24/main debian / control
14052f68-6566-48f5-b9cf-db4debff0b24/main

Tree @14052f68-6566-48f5-b9cf-db4debff0b24/main (Download .tar.gz)

control @14052f68-6566-48f5-b9cf-db4debff0b24/main

1841a00
 
51a76f6
1841a00
59201a5
c3b244b
1841a00
 
 
10e8f19
 
1841a00
51a76f6
1841a00
 
 
 
 
1359758
1841a00
 
 
 
 
 
Source: golang-gopkg-eapache-queue.v1
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tim Potter <tpot@hpe.com>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-go
Standards-Version: 3.9.6
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-gopkg-eapache-queue.v1.git
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-gopkg-eapache-queue.v1
Homepage: https://github.com/eapache/queue
XS-Go-Import-Path: gopkg.in/eapache/queue.v1

Package: golang-gopkg-eapache-queue.v1-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Multi-Arch: foreign
Description: 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.