golang-github-remeh-sizedwaitgroup 0.0~git20180822.5e7302b-1.1 source package in Ubuntu

Changelog

golang-github-remeh-sizedwaitgroup (0.0~git20180822.5e7302b-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:55 +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-remeh-sizedwaitgroup_0.0~git20180822.5e7302b-1.1.dsc 2.4 KiB d66d50e54f095cd290f5dc1f617fd3ecd7cecc458f9597b1ddd197e20b74f785
golang-github-remeh-sizedwaitgroup_0.0~git20180822.5e7302b.orig.tar.xz 2.5 KiB 5f033a219428e29392e8fefc04bf0e57bf74f9198aa9767797b8b7a5ff406b04
golang-github-remeh-sizedwaitgroup_0.0~git20180822.5e7302b-1.1.debian.tar.xz 2.1 KiB 8c152a3784bd277cf504809c3267f1c9c0b306ac252ed8f1cc4657c5dcdc9b0a

No changes file available.

Binary packages built by this source

golang-github-remeh-sizedwaitgroup-dev: Go library for limiting the amount of concurrent goroutines

 SizedWaitGroup has the same role and API as sync.WaitGroup but it adds
 a limit of the amount of goroutines started concurrently.
 .
 SizedWaitGroup adds the feature of limiting the maximum number of
 concurrently started routines. It could for example be used to start
 multiples routines querying a database but without sending too much
 queries in order to not overload the given database.