File: control

package info (click to toggle)
golang-github-remeh-sizedwaitgroup 0.0~git20180822.5e7302b-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 60 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Source: golang-github-remeh-sizedwaitgroup
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Jack Henschel <jackdev@mailbox.org>
Build-Depends: debhelper (>= 11),
               dh-golang,
               golang-any
Standards-Version: 4.3.0
Homepage: https://github.com/remeh/sizedwaitgroup
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-remeh-sizedwaitgroup
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-remeh-sizedwaitgroup.git
XS-Go-Import-Path: github.com/remeh/sizedwaitgroup
Testsuite: autopkgtest-pkg-go

Package: golang-github-remeh-sizedwaitgroup-dev
Architecture: all
Depends: ${misc:Depends}
Description: 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.