golang-github-moby-locker 1.0.1-3 source package in Ubuntu

Changelog

golang-github-moby-locker (1.0.1-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update standards version to 4.6.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Mon, 21 Nov 2022 11:58:57 +0000

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
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-moby-locker_1.0.1-3.dsc 2.1 KiB a8e91af0008c495893b1f78ecda56526f3fdf5b56fca90512095bbb551f3a3e9
golang-github-moby-locker_1.0.1.orig.tar.gz 6.5 KiB 951323e36ccb7c3b0740ccb33dcf8712f4e832764399e3cc6e76f67f64e5d57d
golang-github-moby-locker_1.0.1-3.debian.tar.xz 2.1 KiB bd6c662e452fda7eb8931e4dc72842105d786b75383d4f6cb1ff8f96f045bfbc

Available diffs

No changes file available.

Binary packages built by this source

golang-github-moby-locker-dev: Go library for creating finer-grained locking

 Locker provides a mechanism for creating finer-grained locking to help free up
 more global locks to handle other tasks.
 .
 The implementation looks close to a sync.Mutex, however, the user must provide
 a reference to use to refer to the underlying lock when locking and unlocking,
 and unlock may generate an error.
 .
 If a lock with a given name does not exist when Lock is called, one is
 created. Lock references are automatically cleaned up on Unlock if nothing
 else is waiting for the lock.