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

Last updated: July 03,2024

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

This guide covers the steps necessary to install golang-github-cloudflare-backoff-devel.noarch on Fedora 34

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

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

In this section, we are going to explain the necessary steps to uninstall golang-github-cloudflare-backoff-devel.noarch on Fedora 34:

$ 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 34

Last metadata expiration check: 5:24:21 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : golang-github-cloudflare-backoff-devel
Version : 0
Release : 0.7.20190628git647f3cd.fc34
Architecture : noarch
Size : 14 k
Source : golang-github-cloudflare-backoff-0-0.7.20190628git647f3cd.fc34.src.rpm
Repository : updates
Summary : Backoff timer shared between several projects
URL : https://github.com/cloudflare/backoff
License : BSD
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