kubernetes/vendor/github.com/hashicorp/golang-lru
Pavithra Ramesh ce3b145e73 Update vendor k8s-cloud-provider and google API
Ran commands:
hack/pin-dependency.sh github.com/GoogleCloudPlatform/k8s-cloud-provider 27a4ced34534a6c32b63159b100ac0efaa1d37b3
hack/update-vendor.sh

hack/pin-dependency.sh google.golang.org/api 5213b809086156e6e2b262a41394993fcff97439
hack/update-vendor.sh

hack/verify-vendor.sh

merge conflicts
2019-08-27 15:58:55 -07:00
..
simplelru Update vendor package github.com/hashicorp/golang-lru 2019-02-20 07:58:46 +02:00
.gitignore
2q.go Update vendor package github.com/hashicorp/golang-lru 2019-02-20 07:58:46 +02:00
arc.go Update vendor package github.com/hashicorp/golang-lru 2019-02-20 07:58:46 +02:00
BUILD Update vendor package github.com/hashicorp/golang-lru 2019-02-20 07:58:46 +02:00
doc.go Update vendor package github.com/hashicorp/golang-lru 2019-02-20 07:58:46 +02:00
go.mod Update vendor package github.com/hashicorp/golang-lru 2019-02-20 07:58:46 +02:00
LICENSE
lru.go Update vendor k8s-cloud-provider and google API 2019-08-27 15:58:55 -07:00
README.md

golang-lru

This provides the lru package which implements a fixed-size thread safe LRU cache. It is based on the cache in Groupcache.

Documentation

Full docs are available on Godoc

Example

Using the LRU is very simple:

l, _ := New(128)
for i := 0; i < 256; i++ {
    l.Add(i, nil)
}
if l.Len() != 128 {
    panic(fmt.Sprintf("bad len: %v", l.Len()))
}