File: control

package info (click to toggle)
golang-github-cenkalti-backoff 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie, trixie-proposed-updates
  • size: 148 kB
  • sloc: makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,146 bytes parent folder | download
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
27
Source: golang-github-cenkalti-backoff
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Martina Ferrari <tina@debian.org>,
           Félix Sipma <felix+debian@gueux.org>,
           Anthony Fok <foka@debian.org>,
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any (>= 2:1.18~)
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-cenkalti-backoff
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-cenkalti-backoff.git
Homepage: https://github.com/cenkalti/backoff
XS-Go-Import-Path: github.com/cenkalti/backoff

Package: golang-github-cenkalti-backoff-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: exponential backoff algorithm in Go
 Exponential backoff is an algorithm that uses feedback to multiplicatively
 decrease the rate of some process, in order to gradually find an acceptable
 rate. The retries exponentially increase and stop increasing when a certain
 threshold is met.