golang-github-tsenart-tb 0.0~git20151208.0.19f4c3d-2 source package in Ubuntu

Changelog

golang-github-tsenart-tb (0.0~git20151208.0.19f4c3d-2) unstable; urgency=medium

  * Build-Depends on golang-any instead of golang-go

 -- Dr. Tobias Quathamer <email address hidden>  Wed, 30 Nov 2016 16:48:47 +0100

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
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc
Bionic release universe misc

Builds

Zesty: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-tsenart-tb_0.0~git20151208.0.19f4c3d-2.dsc 2.2 KiB 22d15df0ec56dc21c100d1b138403ecc85565c5e2f591a6780908be784189fbf
golang-github-tsenart-tb_0.0~git20151208.0.19f4c3d.orig.tar.xz 6.0 KiB aa9c25213ccc7f8e41a975acff55954f0cd2daad9ea05c98d1c44567857f2764
golang-github-tsenart-tb_0.0~git20151208.0.19f4c3d-2.debian.tar.xz 2.0 KiB 7575cedce865868e99e9368af007429790235cf8bd70ab86c32aed57ca3441e3

No changes file available.

Binary packages built by this source

golang-github-tsenart-tb-dev: generic lock-free implementation of the "Token-Bucket" algorithm

 The token bucket is an algorithm used in packet switched computer
 networks and telecommunications networks. It can be used to check
 that data transmissions, in the form of packets, conform to defined
 limits on bandwidth and burstiness (a measure of the unevenness
 or variations in the traffic flow).
 .
 This implementation of the token bucket generalises its applications
 beyond packet rate conformance. Hence, the word generic. You can use it
 to throttle any flow over time as long as it can be expressed as a
 number (bytes/s, requests/s, messages/s, packets/s, potatoes/s,
 heartbeats/s, etc...).
 .
 The lock-free part of the description refers to the lock-free
 programming techniques (CAS loop) used in the core Bucket
 methods (Take and Put).