Home
last modified time | relevance | path

Searched refs:isHit (Results 1 – 6 of 6) sorted by last modified time

/plugin/authgooglesheets/vendor/google/auth/src/Cache/
H A DMemoryCacheItemPool.php78 return isset($this->items[$key]) && $this->items[$key]->isHit();
H A DTypedItem.php40 private bool $isHit = false; variable in Google\\Auth\\Cache\\TypedItem
65 return $this->isHit() ? $this->value : null;
71 public function isHit(): bool function in Google\\Auth\\Cache\\TypedItem
73 if (!$this->isHit) {
89 $this->isHit = true;
H A DSysVCacheItemPool.php127 return isset($this->items[$key]) && $this->items[$key]->isHit();
H A DItem.php49 private $isHit = false; variable in Google\\Auth\\Cache\\Item
72 return $this->isHit() ? $this->value : null;
78 public function isHit() function in Google\\Auth\\Cache\\Item
80 if (!$this->isHit) {
96 $this->isHit = true;
/plugin/authgooglesheets/vendor/google/auth/src/
H A DCacheTrait.php59 if ($cacheItem->isHit()) {
/plugin/authgooglesheets/vendor/psr/cache/src/
H A DCacheItemInterface.php60 public function isHit(); function