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

Changelog

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

  * No change rebuild to gain buildinfo.

 -- Dimitri John Ledkov <email address hidden>  Sat, 17 Feb 2024 18:35:40 +0000

Upload details

Uploaded by:
Dimitri John Ledkov
Uploaded to:
Noble
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
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-2build1.debian.tar.xz 2.1 KiB a9d3a5daa697c9bcdfcd5d0b71fe2f1803a1e3738547a91dbd55bb600855e7e3
golang-github-tsenart-tb_0.0~git20151208.0.19f4c3d-2build1.dsc 2.3 KiB 014af243b01fc2498005e5f44335495f769451a136d5517b80f088728eb83828

View changes file

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).