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 : ConfigCacheFactory.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; /** * Basic implementation of ConfigCacheFactoryInterface that * creates an instance of the default ConfigCache. * * This factory and/or cache <em>do not</em> support cache validation * by means of ResourceChecker instances (that is, service-based). * * @author Matthias Pigulla <mp@webfactory.de> */ class ConfigCacheFactory implements ConfigCacheFactoryInterface { private $debug; /** * @param bool $debug The debug flag to pass to ConfigCache */ public function __construct(bool $debug) { $this->debug = $debug; } /** * {@inheritdoc} */ public function cache(string $file, callable $callback) { $cache = new ConfigCache($file, $this->debug); if (!$cache->isFresh()) { $callback($cache); } return $cache; } }
Close