Home
last modified time | relevance | path

Searched defs:Cache (Results 1 – 25 of 4801) sorted by relevance

12345678910>>...193

/dports/www/gitlab-pages/gitlab-pages-f8512edbec4ec83b426c8ca2dda467de424685e4/vendor/github.com/karlseguin/ccache/v2/
H A Dcache.go20 type Cache struct { struct
21 *Configuration
22 list *list.List
23 size int64
24 buckets []*bucket
25 bucketMask uint32
26 deletables chan *Item
27 promotables chan *Item
28 control chan interface{}
135 func (c *Cache) Clear() {
[all …]
/dports/devel/etcd31/etcd-3.1.20/cmd/vendor/github.com/karlseguin/ccache/
H A Dcache.go11 type Cache struct { struct
12 *Configuration
13 list *list.List
14 size int64
15 buckets []*bucket
16 bucketMask uint32
17 deletables chan *Item
18 promotables chan *Item
110 func (c *Cache) Clear() {
120 func (c *Cache) Stop() {
[all …]
/dports/net/rclone/rclone-1.57.0/vfs/vfscache/
H A Dcache.go40 type Cache struct { struct
45 opt *vfscommon.Options // vfs Options
277 func (c *Cache) InUse(name string) bool {
332 func (c *Cache) Exists(name string) bool {
463 func (c *Cache) CleanUp() error {
521 func (c *Cache) KickCleaner() {
564 func (c *Cache) retryFailedResets() {
587 func (c *Cache) purgeClean(quota int64) {
708 func (c *Cache) clean(kicked bool) {
797 func (c *Cache) TotalInUse() (n int) {
[all …]
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/cache/redis/
H A Dredis.go52 type Cache struct { struct
54 conninfo string
55 dbNum int
56 key string
57 password string
58 maxIdle int
61 timeout time.Duration
131 func (rc *Cache) Incr(key string) error {
137 func (rc *Cache) Decr(key string) error {
143 func (rc *Cache) ClearAll() error {
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/blevesearch/bleve/v2/registry/
H A Dregistry.go40 type Cache struct { struct
41 CharFilters *CharFilterCache
42 Tokenizers *TokenizerCache
43 TokenMaps *TokenMapCache
44 TokenFilters *TokenFilterCache
45 Analyzers *AnalyzerCache
46 DateTimeParsers *DateTimeParserCache
47 FragmentFormatters *FragmentFormatterCache
48 Fragmenters *FragmenterCache
49 Highlighters *HighlighterCache
[all …]
/dports/security/keybase/client-v5.7.1/go/vendor/github.com/blevesearch/bleve/registry/
H A Dregistry.go40 type Cache struct { struct
41 CharFilters *CharFilterCache
42 Tokenizers *TokenizerCache
43 TokenMaps *TokenMapCache
44 TokenFilters *TokenFilterCache
45 Analyzers *AnalyzerCache
46 DateTimeParsers *DateTimeParserCache
47 FragmentFormatters *FragmentFormatterCache
48 Fragmenters *FragmenterCache
49 Highlighters *HighlighterCache
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/blevesearch/bleve/registry/
H A Dregistry.go40 type Cache struct { struct
41 CharFilters *CharFilterCache
42 Tokenizers *TokenizerCache
43 TokenMaps *TokenMapCache
44 TokenFilters *TokenFilterCache
45 Analyzers *AnalyzerCache
46 DateTimeParsers *DateTimeParserCache
47 FragmentFormatters *FragmentFormatterCache
48 Fragmenters *FragmenterCache
49 Highlighters *HighlighterCache
[all …]
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/registry/
H A Dregistry.go40 type Cache struct { struct
41 CharFilters *CharFilterCache
42 Tokenizers *TokenizerCache
43 TokenMaps *TokenMapCache
44 TokenFilters *TokenFilterCache
45 Analyzers *AnalyzerCache
46 DateTimeParsers *DateTimeParserCache
47 FragmentFormatters *FragmentFormatterCache
48 Fragmenters *FragmenterCache
49 Highlighters *HighlighterCache
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/scheduler/internal/cache/fake/
H A Dfake_cache.go26 type Cache struct { struct
27 AssumeFunc func(*v1.Pod)
28 ForgetFunc func(*v1.Pod)
29 IsAssumedPodFunc func(*v1.Pod) bool
30 GetPodFunc func(*v1.Pod) *v1.Pod
34 func (c *Cache) AssumePod(pod *v1.Pod) error {
43 func (c *Cache) ForgetPod(pod *v1.Pod) error {
49 func (c *Cache) AddPod(pod *v1.Pod) error { return nil }
63 func (c *Cache) GetPod(pod *v1.Pod) (*v1.Pod, error) {
82 func (c *Cache) NodeCount() int { return 0 }
[all …]
/dports/sysutils/fusefs-httpdirfs/httpdirfs-1.2.3/src/
H A Dcache.h17 typedef struct Cache Cache; typedef
29 struct Cache { struct
31 FILE *dfp;
33 FILE *mfp;
35 char *path;
37 Link *link;
39 long time;
43 int blksz;
45 long segbc;
47 Seg *seg;
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go15 type Cache struct { struct
16 lru *simplelru.LRU
17 evictedKeys, evictedVals []interface{}
18 onEvictedCB func(k, v interface{})
19 lock sync.RWMutex
42 func (c *Cache) initEvictBuffers() {
49 func (c *Cache) onEvicted(k, v interface{}) {
55 func (c *Cache) Purge() {
98 func (c *Cache) Contains(key interface{}) bool {
218 func (c *Cache) Keys() []interface{} {
[all …]
/dports/net-mgmt/promscale/promscale-0.6.2/pkg/clockcache/
H A Dcache.go16 type Cache struct { struct
19 elementsLock sync.RWMutex
21 elements map[interface{}]*element
22 storage []element
25 dataSize uint64
27 evictions uint64
31 insertLock sync.Mutex
33 next int
303 func (self *Cache) Reset() {
318 func (self *Cache) Len() int {
[all …]
/dports/net/rclone/rclone-1.57.0/lib/cache/
H A Dcache.go13 type Cache struct { struct
14 mu sync.Mutex
15 cache map[string]*cacheEntry
16 expireRunning bool
40 func (c *Cache) noCache() bool {
71 func (c *Cache) used(entry *cacheEntry) {
116 func (c *Cache) Pin(key string) {
121 func (c *Cache) Unpin(key string) {
201 func (c *Cache) cacheExpire() {
219 func (c *Cache) Clear() {
[all …]
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/cmd/compile/internal/ssa/
H A Dcache.go14 type Cache struct { struct
16 values [2000]Value
17 blocks [200]Block
18 locs [2000]Location
22 stackAllocState *stackAllocState
30 deadcode struct {
36 regallocValues []valState
38 ValueToProgAfter []*obj.Prog
39 debugState debugState
41 Liveness interface{} // *gc.livenessFuncCache
[all …]
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/ssa/
H A Dcache.go14 type Cache struct { struct
16 values [2000]Value
17 blocks [200]Block
18 locs [2000]Location
22 stackAllocState *stackAllocState
30 deadcode struct {
36 regallocValues []valState
38 ValueToProgAfter []*obj.Prog
39 debugState debugState
41 Liveness interface{} // *gc.livenessFuncCache
[all …]
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/cache/ssdb/
H A Dssdb.go16 type Cache struct { struct
17 conn *ssdb.Client
18 conninfo []string
27 func (rc *Cache) Get(key string) interface{} {
67 func (rc *Cache) DelMulti(keys []string) error {
106 func (rc *Cache) Delete(key string) error {
117 func (rc *Cache) Incr(key string) error {
128 func (rc *Cache) Decr(key string) error {
139 func (rc *Cache) IsExist(key string) bool {
157 func (rc *Cache) ClearAll() error {
[all …]
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/dns/nextdns/nextdns-1.32.2/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]
/dports/sysutils/consul/consul-1.10.3/vendor/github.com/hashicorp/golang-lru/
H A Dlru.go10 type Cache struct { struct
11 lru simplelru.LRUCache
12 lock sync.RWMutex
34 func (c *Cache) Purge() {
41 func (c *Cache) Add(key, value interface{}) (evicted bool) {
49 func (c *Cache) Get(key interface{}) (value interface{}, ok bool) {
58 func (c *Cache) Contains(key interface{}) bool {
105 func (c *Cache) Remove(key interface{}) (present bool) {
113 func (c *Cache) Resize(size int) (evicted int) {
137 func (c *Cache) Keys() []interface{} {
[all …]

12345678910>>...193