golang-github-svent-go-nbreader 0~20150201-2 source package in Ubuntu

Changelog

golang-github-svent-go-nbreader (0~20150201-2) unstable; urgency=medium

  * Fix DH_GOPKG typo.

 -- ChangZhuo Chen (陳昌倬) <email address hidden>  Mon, 23 Jan 2017 22:33:02 +0800

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
Bionic release universe misc

Builds

Zesty: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-svent-go-nbreader_0~20150201-2.dsc 2.2 KiB 7199a137c14f62e35e2b12d6816b1d569a18f5ca1c6665fd615dee1522aaff2d
golang-github-svent-go-nbreader_0~20150201.orig.tar.xz 2.6 KiB 4b5c152cabef20649f953644a065c88fdd59220959f0d3ec6961aac2c77c18d0
golang-github-svent-go-nbreader_0~20150201-2.debian.tar.xz 2.2 KiB 61dd8dd46a59f54088a205fa2de7dd5494e7ac36a983ca5f37d784e087eaf343

Available diffs

No changes file available.

Binary packages built by this source

golang-github-svent-go-nbreader-dev: non-blocking io.Reader for go

 go-nbreader provides a non-blocking io.Reader for go (golang). It
 allows one to specify two timeouts:
 .
  * Timeout: Read() returns after the specified timeout, even if no data
    has been read.
 .
  * ChunkTimeout: Read() returns if no data has been read for the
    specified time, even if the overall timeout has not been hit yet.
    ChunkTimeout must be smaller than Timeout.
 .
 When the internal buffer contains at least blockSize bytes, Read()
 returns regardless of the specified timeouts.