Codebase list golang-gopkg-eapache-queue.v1 / upstream/1.1.0+git20180227.1.093482f
Import upstream version 1.1.0+git20180227.1.093482f Debian Janitor 1 year, 3 months ago
2 changed file(s) with 1 addition(s) and 24 deletion(s). Raw diff Collapse all Expand all
+0
-23
.gitignore less more
0 # Compiled Object files, Static and Dynamic libs (Shared Objects)
1 *.o
2 *.a
3 *.so
4
5 # Folders
6 _obj
7 _test
8
9 # Architecture specific extensions/prefixes
10 *.[568vq]
11 [568vq].out
12
13 *.cgo1.go
14 *.cgo2.c
15 _cgo_defun.c
16 _cgo_gotypes.go
17 _cgo_export.*
18
19 _testmain.go
20
21 *.exe
22 *.test
11 =====
22
33 [![Build Status](https://travis-ci.org/eapache/queue.svg)](https://travis-ci.org/eapache/queue)
4 [![GoDoc](https://godoc.org/github.com/eapache/queue?status.png)](https://godoc.org/github.com/eapache/queue)
4 [![GoDoc](https://godoc.org/github.com/eapache/queue?status.svg)](https://godoc.org/github.com/eapache/queue)
55 [![Code of Conduct](https://img.shields.io/badge/code%20of%20conduct-active-blue.svg)](https://eapache.github.io/conduct.html)
66
77 A fast Golang queue using a ring-buffer, based on the version suggested by Dariusz Górecki.