golang-github-nozzle-throttler 1.1-4 source package in Ubuntu

Changelog

golang-github-nozzle-throttler (1.1-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + golang-github-nozzle-throttler-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Sat, 26 Nov 2022 03:54:54 +0000

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
Questing release universe misc
Plucky release universe misc
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-github-nozzle-throttler_1.1-4.dsc 2.2 KiB cb86d66cba75395563eae0cb0f8484811c2e779f59d6736ef877383be92e248e
golang-github-nozzle-throttler_1.1.orig.tar.gz 8.9 KiB e9e81b32f24dd5f798247ea7a1d32a82afe1819c97e744f4186c462884e2f0be
golang-github-nozzle-throttler_1.1-4.debian.tar.xz 2.3 KiB 7d7dc646fe9128f46b6f2bdbaf2681aa8c0a1bcacf4ef14dca894069873be89c

Available diffs

No changes file available.

Binary packages built by this source

golang-github-nozzle-throttler-dev: Fill the gap between WaitGroup and manually monitor goroutines with channels

 The API is almost identical to WaitGroups,
 but it allows you to set a max number of workers that can be
 running simultaneously. It uses channels internally to block until a job
 completes by calling Done() or until all jobs have been completed. It
 also provides a built in error channel that captures your goroutine
 errors and provides access to them as []error after you exit the loop.