golang-github-cloudflare-backoff 0.0~git20161212.647f3cd-2 source package in Ubuntu

Changelog

golang-github-cloudflare-backoff (0.0~git20161212.647f3cd-2) unstable; urgency=medium

  * Bump standards version

 -- Reinhard Tartler <email address hidden>  Sat, 27 Jul 2024 07:17:07 +0200

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-cloudflare-backoff_0.0~git20161212.647f3cd-2.dsc 2.5 KiB 1b95b16bd5b3a50a4a28e0ffaef137509673a3853a8a59b43f2a58ad134ad3b2
golang-github-cloudflare-backoff_0.0~git20161212.647f3cd.orig.tar.xz 4.4 KiB 845c089ff258ce20f85645d6aeb9ce2cea017c9626c335e0ee81f8bf6738cabb
golang-github-cloudflare-backoff_0.0~git20161212.647f3cd-2.debian.tar.xz 2.8 KiB aef5dd828d54a92a28b4b0f86c193c1a9b37c010b41128263ac41a4d7395377e

No changes file available.

Binary packages built by this source

golang-github-cloudflare-backoff-dev: Go implementation of "Exponential Backoff And Jitter" (library)

 This package implements the backoff strategy described in the AWS
 Architecture Blog article "Exponential Backoff And Jitter"
 (http://www.awsarchitectureblog.com/2015/03/backoff.html). Essentially,
 the backoff has an interval time.Duration; the *nth* call to backoff
 will return an a time.Duration that is *2 n *interval*. If jitter is
 enabled (which is the default behaviour), the duration is a random value
 between 0 and *2 n * interval*. The backoff is configured with a maximum
 duration that will not be exceeded; e.g., by default, the longest
 duration returned is backoff.DefaultMaxDuration.