Commit Graph

20 Commits

Author SHA1 Message Date
09d21345e1 multi: bump Go version
Bump all build go versions to v1.21.0
Bump the minimum build package version to v1.19.0

Debian "buster" is not longer supported. Security updates have been
discontinued since June 30th 2022. We will build using the latest
version, "bookworm".
2023-09-05 10:11:42 -07:00
7070be52b7 queue: replace defer cleanup with t.Cleanup
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-10-13 17:47:04 +08:00
530a2059e5 multi: Fix typos [skip ci] 2022-01-24 12:19:02 +02:00
06433d351e Upgrade to go 1.16 for the left over packages
Upgraded the go to 1.16 for the rest of the packages.
2021-10-19 03:55:13 +00:00
c7fa5ea863 queue: remove unsued waitgroup 2020-04-24 19:15:08 +02:00
f907fbcadc queue: detect close of incoming channel 2020-04-08 08:54:03 +02:00
a223e4eedb queue: add fixed size circular buffer
This commit introduces a fixed size circular buffer  which stores
elements in a fixed size underlying array, wrapping to overwrite items
when the buffer gets full.
2020-03-17 08:22:23 +02:00
ff3063daea queue: fixing doc after cherry pick
This commit just fixes a godoc and adds a new one to the already
merged queue.PriorityQueue.
2019-12-13 16:52:22 +01:00
56282db30a queue: Introducing a general purpose priority queue.
This commit introduces PriorityQueue, which is a general, heap
based priority queue, and PriorityQueueItem which is an interface
that concrete priority queue items must implement.
This implementation is encapsulated, users do not need to use any
other package for full functionality.
PriorityQueue exports the usual public methids: Push, Pop, Top,
Empty and Len. For full documentaton consult the priority_queue.go,
for usage: priority_queue_test.go
2019-12-11 16:08:05 +01:00
976c996fda queue: run go mod tidy 2019-09-23 15:11:20 +02:00
567c357c61 ticker+queue: run go mod tidy 2019-07-26 09:29:38 +02:00
0a9141763e multi: replace manual CAS with sync.Once in several more modules 2019-06-12 09:37:26 -03:00
9d23d382fc Merge pull request #2419 from cfromknecht/brontide-buffer-pool
brontide: read buffer pool
2019-02-18 17:51:17 -08:00
6f96d04b72 multi: add buffer.Write and pool.WriteBuffer, make GCQueue generic 2019-02-15 19:31:24 -08:00
9c8b627f80 queue: add module support 2019-02-12 16:17:42 -08:00
0118120f55 queue/gc_queue_test: adds unit tests for GCQueue 2019-01-31 19:21:32 -08:00
717672ad83 queue/gc_queue: adds GCQueue to back recyclable pools 2019-01-31 19:21:31 -08:00
c27b90f76c queue/queue_test: adds 100% test coverage 2018-12-03 13:58:25 -08:00
a4442608e6 queue/queue: wait group inner go routines, add idempotency 2018-12-03 13:58:25 -08:00
dbf9b4ea4c chainntnfs+queue: move ConcurrentQueue to own package 'queue' 2018-10-18 12:38:10 -07:00