Home
last modified time | relevance | path

Searched refs:isFresh (Results 1 – 20 of 20) sorted by last modified time

/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/
H A DCoalescingDirectoryResource.php37 public function isFresh($timestamp) function in Assetic\\Factory\\Resource\\CoalescingDirectoryResource
40 if (!$file->isFresh($timestamp)) {
H A DResourceInterface.php28 public function isFresh($timestamp); function
H A DDirectoryResource.php40 public function isFresh($timestamp) function in Assetic\\Factory\\Resource\\DirectoryResource
47 if (!$resource->isFresh($timestamp)) {
H A DFileResource.php33 public function isFresh($timestamp) function in Assetic\\Factory\\Resource\\FileResource
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DTwigResource.php43 public function isFresh($timestamp) function in Assetic\\Extension\\Twig\\TwigResource
46 return $this->loader->isFresh($this->name, $timestamp);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/
H A DCachedFormulaLoader.php58 …if (!$this->configCache->has($id) || ($this->debug && !$resource->isFresh($this->configCache->getT…
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DClassHierarchyMetadata.php34 public function isFresh(int $timestamp): bool function in Metadata\\ClassHierarchyMetadata
37 if (!$metadata->isFresh($timestamp)) {
H A DClassMetadata.php58 public function isFresh(?int $timestamp = null): bool function in Metadata\\ClassMetadata
H A DMetadataFactory.php96 if ($this->debug && !$classMetadata->isFresh()) {
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DEnvironment.php589 return $this->lastModifiedExtension <= $time && $this->getLoader()->isFresh($name, $time);
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
H A DArrayLoader.php91 public function isFresh($name, $time) function in Twig\\Loader\\ArrayLoader
H A DChainLoader.php145 public function isFresh($name, $time) function in Twig\\Loader\\ChainLoader
154 return $loader->isFresh($name, $time);
H A DFilesystemLoader.php181 public function isFresh($name, $time) function in Twig\\Loader\\FilesystemLoader
H A DLoaderInterface.php58 public function isFresh($name, $time); function
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/
H A DArrayTest.php97 $this->assertTrue($loader->isFresh('foo', time()));
107 $loader->isFresh('foo', time());
117 $loader->isFresh($name, time());
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
H A DClassMetadataTest.php34 $this->assertTrue($metadata->isFresh());
39 $this->assertFalse($metadata->isFresh());
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst459 public function isFresh($name, $time)
H A Dapi.rst310 function isFresh($name, $time);
313 The ``isFresh()`` method must return ``true`` if the current cached template
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Loader/
H A DString.php59 public function isFresh($name, $time) function in Twig_Loader_String
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG685 …* added an Exception to Twig_Loader_Array::isFresh() method when the template does not exist to be…