How to Install and Uninstall golang-github-cloudflare-backoff-devel.noarch Package on Fedora 36

Last updated: May 15,2024

1. Install "golang-github-cloudflare-backoff-devel.noarch" package

Here is a brief guide to show you how to install golang-github-cloudflare-backoff-devel.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install golang-github-cloudflare-backoff-devel.noarch

2. Uninstall "golang-github-cloudflare-backoff-devel.noarch" package

This tutorial shows how to uninstall golang-github-cloudflare-backoff-devel.noarch on Fedora 36:

$ sudo dnf remove golang-github-cloudflare-backoff-devel.noarch $ sudo dnf autoremove

3. Information about the golang-github-cloudflare-backoff-devel.noarch package on Fedora 36

Last metadata expiration check: 0:58:30 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : golang-github-cloudflare-backoff-devel
Version : 0
Release : 0.10.20190628git647f3cd.fc36
Architecture : noarch
Size : 14 k
Source : golang-github-cloudflare-backoff-0-0.10.20190628git647f3cd.fc36.src.rpm
Repository : updates
Summary : Backoff timer shared between several projects
URL : https://github.com/cloudflare/backoff
License : BSD-2-Clause
Description : This package implements the backoff strategy described in the AWS Architecture
: Blog article "Exponential Backoff And Jitter". 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.
:
: This package contains the source code needed for building packages that
: reference the following Go import paths:
: – github.com/cloudflare/backoff