golang-github-iafan-cwalk 0.0~git20191125.dd7f505-3 source package in Ubuntu

Changelog

golang-github-iafan-cwalk (0.0~git20191125.dd7f505-3) unstable; urgency=medium

  [ Nilesh Patra ]
  * [skip ci] Update email

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Update standards version to 4.5.1, no changes needed.
  * Apply multi-arch hints. + golang-github-iafan-cwalk-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Wed, 23 Nov 2022 20:46:03 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-iafan-cwalk_0.0~git20191125.dd7f505-3.dsc 2.3 KiB f60ff2b73c52dc52cb5f926d0fd8bfe7eb749f90b8e8e7502a2ed77b25d83ed9
golang-github-iafan-cwalk_0.0~git20191125.dd7f505.orig.tar.xz 5.0 KiB ff8df103ad2b40b863023b679d05b32a32147cf1867765754a807585802ab9e9
golang-github-iafan-cwalk_0.0~git20191125.dd7f505-3.debian.tar.xz 2.6 KiB 08030a2d37d75ebfaf03104277aba9ace1f2318893e62207a49ece3836ef7e74

No changes file available.

Binary packages built by this source

golang-github-iafan-cwalk-dev: Concurrent filepath.Walk replacement

 A concurrent version of filepath.Walk function that
 scans files in a directory tree and runs a callback
 for each file.
 .
 Since scanning (and callback execution) is done from within goroutines,
 this may result in a significant performance boost on multicore systems
 in cases when the bottleneck is the CPU, not the I/O.
 .
 Upstream tests showed ~3.5x average speed increase on an 8-core CPU
 and 8 workers. For measurements, upstream used provided
 bin/traversaltime.go utility that measures directory traversal time
 for both concurrent (cwalk.Walk()) and standard (filepath.Walk()) functions.