Home
last modified time | relevance | path

Searched refs:configs (Results 1 – 25 of 61) sorted by relevance

123

/plugin/cacherevisionseraser2/
Dconfigs.php17 $this->configs['confrevision'] = 2; // Configurations file revision, LEAVE THIS UNCHANGED!
18 $this->configs['menusort'] = 67; // position in admin menu (Default: 67)
20 $this->configs['allow_allcachedel'] = true; // Allow delection of cache class? false=No true=Yes (…
21 $this->configs['allow_allrevisdel'] = true; // Allow delection of old revisions class? false=No tr…
22 $this->configs['debuglist'] = false; // For debugging only, show some internal information …
23 $this->configs['cache_delext_repo'] = -1; // Delete extension ".repo"? 4 states option (Default…
24 $this->configs['cache_delext_gz'] = -1; // Delete extension ".gz"? 4 states option (Default: …
25 $this->configs['cache_delext_i'] = -1; // Delete extension ".i"? 4 states option (Default: -…
26 $this->configs['cache_delext_xhtml'] = -1; // Delete extension ".xhtml"? 4 states option (Defaul…
27 $this->configs['cache_delext_js'] = -1; // Delete extension ".js"? 4 states option (Default: …
[all …]
Dconfigs.in.php17 $this->configs['confrevision'] = 2; // Configurations file revision, LEAVE THIS UNCHANGED!
18 $this->configs['menusort'] = 67; // position in admin menu (Default: 67)
20 $this->configs['allow_allcachedel'] = true; // Allow delection of cache class? false=No true=Yes (…
21 $this->configs['allow_allrevisdel'] = true; // Allow delection of old revisions class? false=No tr…
22 $this->configs['debuglist'] = false; // For debugging only, show some internal information …
23 $this->configs['cache_delext_repo'] = -1; // Delete extension ".repo"? 4 states option (Default…
24 $this->configs['cache_delext_gz'] = -1; // Delete extension ".gz"? 4 states option (Default: …
25 $this->configs['cache_delext_i'] = -1; // Delete extension ".i"? 4 states option (Default: -…
26 $this->configs['cache_delext_xhtml'] = -1; // Delete extension ".xhtml"? 4 states option (Defaul…
27 $this->configs['cache_delext_js'] = -1; // Delete extension ".js"? 4 states option (Default: …
[all …]
/plugin/cacherevisionseraser/
Dconfigs.in.php17 $this->configs['confrevision'] = 2; // Configurations file revision, LEAVE THIS UNCHANGED!
18 $this->configs['menusort'] = 67; // position in admin menu (Default: 67)
20 $this->configs['allow_allcachedel'] = true; // Allow delection of cache class? false=No true=Yes (…
21 $this->configs['allow_allrevisdel'] = true; // Allow delection of old revisions class? false=No tr…
22 $this->configs['debuglist'] = false; // For debugging only, show some internal information …
23 $this->configs['cache_delext_i'] = -1; // Delete extension ".i"? 4 states option (Default: -…
24 $this->configs['cache_delext_xhtml'] = -1; // Delete extension ".xhtml"? 4 states option (Defaul…
25 $this->configs['cache_delext_js'] = -1; // Delete extension ".js"? 4 states option (Default: …
26 $this->configs['cache_delext_css'] = -1; // Delete extension ".css"? 4 states option (Default:…
27 $this->configs['cache_delext_mediaP'] = -1; // Delete extension ".media.*"? 4 states option (Defa…
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DPredictionMode.php165 …public static function hasSLLConflictTerminatingPrediction(int $mode, ATNConfigSet $configs) : bool argument
172 if (self::allConfigsInRuleStopStates($configs)) {
181 if ($configs->hasSemanticContext) {
185 foreach ($configs->elements() as $c) {
190 $configs = $dup;
196 $altsets = self::getConflictingAltSubsets($configs);
198 … return self::hasConflictingAltSet($altsets) && !self::hasStateAssociatedWithOneAlt($configs);
206 * @param ATNConfigSet $configs The configuration set to test.
211 public static function hasConfigInRuleStopState(ATNConfigSet $configs) : bool argument
213 foreach ($configs->elements() as $c) {
[all …]
H A DATNConfigSet.php48 public $configs = []; variable in Antlr\\Antlr4\\Runtime\\Atn\\ATNConfigSet
163 $this->configs[] = $config; // track order here
203 return $this->configs;
209 foreach ($this->configs as $config) {
226 foreach ($this->configs as $config) {
241 foreach ($this->configs as $config) {
252 return $this->configs[$index];
265 foreach ($this->configs as $config) {
275 public function addAll(array $configs) : void argument
277 foreach ($configs as $config) {
[all …]
H A DParserATNSimulator.php395 …$dfa->s0->configs = $s0_closure; // not used for prediction but useful to know start configs anyway
504 $e = $this->noViableAlt($input, $outerContext, $previousD->configs, $startIndex);
509 $previousD->configs,
523 $conflictingAlts = $D->configs->getConflictingAlts();
571 $D->configs,
590 throw $this->noViableAlt($input, $outerContext, $D->configs, $startIndex);
598 … $this->reportAmbiguity($dfa, $D, $startIndex, $stopIndex, false, $alts, $D->configs);
651 $reach = $this->computeReachSet($previousD->configs, $t, false);
670 (string) $previousD->configs,
682 $D->configs->uniqueAlt = $predictedAlt;
[all …]
H A DLexerATNSimulator.php190 $this->log[] = \sprintf('start state closure=%s', (string) $ds0->configs);
203 $this->log[] = \sprintf('execATN loop starting closure: %s', (string) $s->configs);
253 return $this->failOrAccept($this->prevAccept, $input, $s->configs, $t);
301 $this->getReachableConfigSet($input, $s->configs, $reach, $t);
451 $configs = new OrderedATNConfigSet();
456 $this->closure($input, $cfg, $configs, false, false, false);
459 return $configs;
474 ATNConfigSet $configs, argument
500 $configs->add($config);
505 … $configs->add(new LexerATNConfig($config, $config->state, PredictionContext::empty()));
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DDFAState.php44 public $configs; variable in Antlr\\Antlr4\\Runtime\\Dfa\\DFAState
96 public function __construct(?ATNConfigSet $configs = null, int $stateNumber = -1) argument
98 $this->configs = $configs ?? new ATNConfigSet();
126 return Equality::equals($this->configs, $other->configs);
131 $s = \sprintf('%d:%s', $this->stateNumber, (string) $this->configs);
148 return Hasher::hash($this->configs);
/plugin/confmanager/configTypes/
DConfigManagerTwoLineLeftImageConfigCascade.php29 $configs = $this->readConfig();
30 $default = $configs['default'];
31 $local = $configs['local'];
32 $configs = array_merge($default, $local);
34 uksort($configs, [$this->helper, '_sortHuman']);
98 $configs = $this->readConfig();
99 if (isset($configs['default'][$key])) {
183 $configs = $this->readConfig();
184 if (isset($configs['default'][$key])) {
DConfigManagerSingleLineConfigCascade.php27 $configs = $this->readConfig();
28 $default = $configs['default'];
29 $local = $configs['local'];
30 $configs = array_merge($default, $local);
32 usort($configs, [$this->helper, '_sortHuman']);
DConfigManagerTwoLineConfigCascade.php20 $configs = $this->readConfig();
21 $default = $configs['default'];
22 $local = $configs['local'];
23 $configs = array_merge($default, $local);
25 uksort($configs, [$this->helper, '_sortHuman']);
DConfigManagerTwoLineRightImageConfigCascade.php29 $configs = $this->readConfig();
30 $path = $this->imageFolder . $configs[$configtype][$key];
109 $configs = $this->readConfig();
110 if (isset($configs['default'][$key])) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DDiagnosticErrorListener.php55 ATNConfigSet $configs argument
66 $this->getConflictingAlts($ambigAlts, $configs),
79 ATNConfigSet $configs argument
98 ATNConfigSet $configs argument
143 * @param ATNConfigSet $configs The conflicting or ambiguous
149 protected function getConflictingAlts(?BitSet $reportedAlts, ATNConfigSet $configs) : BitSet argument
156 foreach ($configs->configs as $config) {
H A DProxyErrorListener.php54 ATNConfigSet $configs argument
57 …istener->reportAmbiguity($recognizer, $dfa, $startIndex, $stopIndex, $exact, $ambigAlts, $configs);
67 ATNConfigSet $configs argument
76 $configs
87 ATNConfigSet $configs argument
90 …tener->reportContextSensitivity($recognizer, $dfa, $startIndex, $stopIndex, $prediction, $configs);
H A DBaseErrorListener.php38 ATNConfigSet $configs argument
48 ATNConfigSet $configs argument
58 ATNConfigSet $configs argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/
DListGithubEnterpriseConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firebaseappcheck/
DGoogleFirebaseAppcheckV1betaBatchGetAppAttestConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
DGoogleFirebaseAppcheckV1betaBatchGetDeviceCheckConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
DGoogleFirebaseAppcheckV1betaBatchGetSafetyNetConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
DGoogleFirebaseAppcheckV1betaBatchGetPlayIntegrityConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
DGoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
DGoogleFirebaseAppcheckV1betaBatchGetRecaptchaV3ConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
DGoogleFirebaseAppcheckV1betaBatchGetRecaptchaConfigsResponse.php29 public function setConfigs($configs) argument
31 $this->configs = $configs;
38 return $this->configs;
/plugin/confmanager/
Dhelper.php16 static $configs = null;
17 if ($configs === null) {
18 $configs = [];
19 Event::createAndTrigger('CONFMANAGER_CONFIGFILES_REGISTER', $configs, null, false);
20 usort($configs, [$this, '_sortByConfigName']);
22 return $configs;
/plugin/advanced/admin/
Dconfig.php94 $configs = $config_cascade[$file];
96 $file_default = @$configs['default'][0];
97 $file_local = @$configs['local'][0];
98 $file_protected = @$configs['protected'][0];
104 $configs = $config_cascade[$tab][$file];
107 if (is_array(@$configs)) {
108 $file_local = @$configs[0];
110 $file_local = $configs;
148 $configs = $config_cascade['userscript'];
149 if (is_array(@$configs['default'])) {
[all …]

123