Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
vendor /
symfony /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
Builder
[ DIR ]
drwxr-xr-x
Definition
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Loader
[ DIR ]
drwxr-xr-x
Resource
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
CHANGELOG.md
4.14
KB
-rw-r--r--
composer.json
1.32
KB
-rw-r--r--
ConfigCacheFactoryInterface.php
958
B
-rw-r--r--
ConfigCacheFactory.php
1.08
KB
-rw-r--r--
ConfigCacheInterface.php
1.25
KB
-rw-r--r--
ConfigCache.php
1.5
KB
-rw-r--r--
FileLocatorInterface.php
1.03
KB
-rw-r--r--
FileLocator.php
2.48
KB
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
README.md
596
B
-rw-r--r--
ResourceCheckerConfigCacheFactory.php
1.05
KB
-rw-r--r--
ResourceCheckerConfigCache.php
5.46
KB
-rw-r--r--
ResourceCheckerInterface.php
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ResourceCheckerInterface.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Config; use Symfony\Component\Config\Resource\ResourceInterface; /** * Interface for ResourceCheckers. * * When a ResourceCheckerConfigCache instance is checked for freshness, all its associated * metadata resources are passed to ResourceCheckers. The ResourceCheckers * can then inspect the resources and decide whether the cache can be considered * fresh or not. * * @author Matthias Pigulla <mp@webfactory.de> * @author Benjamin Klotz <bk@webfactory.de> */ interface ResourceCheckerInterface { /** * Queries the ResourceChecker whether it can validate a given * resource or not. * * @return bool */ public function supports(ResourceInterface $metadata); /** * Validates the resource. * * @param int $timestamp The timestamp at which the cache associated with this resource was created * * @return bool */ public function isFresh(ResourceInterface $resource, int $timestamp); }
Close