Home
last modified time | relevance | path

Searched refs:key (Results 126 – 150 of 2492) sorted by relevance

12345678910>>...100

/plugin/findologicxmlexport/vendor/twig/twig/src/Cache/
H A DCacheInterface.php38 * @param string $key The cache key
41 public function write($key, $content); argument
46 * @param string $key The cache key
48 public function load($key); argument
53 * @param string $key The cache key
57 public function getTimestamp($key); argument
/plugin/swiftmail/Swift/
H A DCache.php25 abstract public function write($key, $data); argument
30 abstract public function clear($key); argument
36 abstract public function has($key); argument
43 abstract public function read($key, $size=null); argument
49 public function getOutputStream($key) argument
52 $os = new Swift_Cache_OutputStream($this, $key);
/plugin/fedauth/Auth/OpenID/
H A DKVForm.php53 $key = $kv[0];
54 $tkey = trim($key);
55 if ($tkey != $key) {
90 foreach ($values as $key => $value) {
92 list($key, $value) = array($value[0], $value[1]);
95 if (strpos($key, ':') !== false) {
99 if (strpos($key, "\n") !== false) {
106 $serialized .= "$key:$value\n";
/plugin/openid/Auth/OpenID/
H A DKVForm.php56 $key = $kv[0];
57 $tkey = trim($key);
58 if ($tkey != $key) {
95 foreach ($values as $key => $value) {
97 list($key, $value) = [$value[0], $value[1]];
100 if (strpos($key, ':') !== false) {
104 if (strpos($key, "\n") !== false) {
111 $serialized .= "$key:$value\n";
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DServerRequest.php91 foreach ($files as $key => $value) {
93 $normalized[$key] = $value;
95 $normalized[$key] = self::createUploadedFileFromSpec($value);
97 $normalized[$key] = self::normalizeFiles($value);
146 foreach (array_keys($files['tmp_name']) as $key) {
148 'tmp_name' => $files['tmp_name'][$key],
149 'size' => $files['size'][$key],
150 'error' => $files['error'][$key],
151 'name' => $files['name'][$key],
152 'type' => $files['type'][$key],
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DConnection.php275 * @param string $key
280 public function addConfig($key, $value) argument
282 $this->_params['config'][$key] = $value;
288 * @param string $key
292 public function hasConfig($key) argument
296 return isset($config[$key]);
300 * Returns a specific config key or the whole
303 * @param string $key Config key
309 public function getConfig($key argument
[all...]
/plugin/keyboard/
H A Dsyntax.php95 foreach ($match as $key) {
98 } else if (substr($key, 0, 1) == "'" and
100 strlen($key) > 1) {
103 $subst = $this->getLang($key);
133 foreach ($match as $key) {
135 $out[] = $key;
136 } else if (substr($key, 0, 1) == "'" and
138 strlen($key) > 1) {
139 $out[] = substr($key,1,-1);
141 $subst = $this->getLang($key);
[all …]
/plugin/settingstree/
H A Dscript.js60 if (key && changes[key] !== undefined){
62 show_in_hierarchy(key,path);
71 for (var key in conf){
72 if (typeof conf[key] === 'object' && typeof conf[key].config !== undefined)
73 ret[key] = conf[key].config;
136 if (key){
137 show_in_hierarchy(key,path);
146 if (current !== key){
149 …{ call:'plugin_settingstree', operation: 'show_hierarchy', pluginname: pluginname, key: key, secto…
155 $left_col.data('current',key);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC2.php66 protected $key; variable in phpseclib3\\Crypt\\RC2
350 * @param string $key
356 $this->orig_key = $key;
367 if (strlen($key) < 1 || strlen($key) > 128) {
371 $t = strlen($key);
399 $this->key = pack(...$l);
418 $temp = $this->key;
421 $this->key = $temp;
441 $temp = $this->key;
444 $this->key = $temp;
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DElementList.php42 private $key = 0; variable in Sabre\\VObject\\ElementList
51 return $this->elements[$this->key];
62 $this->key++;
71 public function key() { function in Sabre\\VObject\\ElementList
73 return $this->key;
84 return isset($this->elements[$this->key]);
95 $this->key = 0;
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DElementList.php42 private $key = 0; variable in Sabre\\VObject\\ElementList
51 return $this->elements[$this->key];
62 $this->key++;
71 public function key() { function in Sabre\\VObject\\ElementList
73 return $this->key;
84 return isset($this->elements[$this->key]);
95 $this->key = 0;
/plugin/davcal/vendor/sabre/vobject/lib/
H A DElementList.php42 private $key = 0; variable in Sabre\\VObject\\ElementList
51 return $this->elements[$this->key];
62 $this->key++;
71 public function key() { function in Sabre\\VObject\\ElementList
73 return $this->key;
84 return isset($this->elements[$this->key]);
95 $this->key = 0;
/plugin/wysiwyg/fckeditor/_samples/py/
H A Dsampleposteddata.py62 for key in form.keys():
64 value = form[key].value
70 """ % (key, value)
77 for key in os.environ.keys():
78 print "%s: %s<br>" % (key, os.environ.get(key, ""))
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.amr.php72 * @param int $key
76 public function amr_mode_bitrate($key) { argument
87 return (isset($amr_mode_bitrate[$key]) ? $amr_mode_bitrate[$key] : false);
91 * @param int $key
95 public function amr_mode_bytes_per_frame($key) { argument
106 return (isset($amr_mode_bitrate[$key]) ? $amr_mode_bitrate[$key] : false);
/plugin/nsexport/packer/
H A Dpacker.php37 protected function check_key($key) { argument
38 return is_numeric($key);
46 public function get_status($key) { argument
47 if (!$this->check_key($key)) {
50 $this->fileid = $key;
54 public function get_pack($key) { argument
55 if (!$this->check_key($key)) {
61 $this->fileid = $key;
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteKeyboard.php51 * Press a modifier key
54 * @param string $key
57 public function pressKey($key) argument
63 'type' => 'key',
65 'actions' => [['type' => 'keyDown', 'value' => $key]],
71 'value' => [(string) $key],
79 * Release a modifier key
82 * @param string $key
85 public function releaseKey($key) argument
91 'type' => 'key',
[all...]
/plugin/findologicxmlexport/vendor/sebastian/exporter/src/
H A DExporter.php67 foreach ($array as $key => $value) {
69 if ($context->contains($data[$key]) !== false) {
153 foreach ((array) $value as $key => $val) {
158 if (preg_match('/^\0.+\0(.+)$/', $key, $matches)) {
159 $key = $matches[1];
163 if ($key === "\0gcdata") {
167 $array[$key] = $val;
186 foreach ($value as $key => $val) {
251 return 'Array &' . $key;
255 $key = $processed->add($value);
[all …]
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/
H A Dsharedapi.php329 function sharedapi_encrypt($key, $data) { argument
330 $key = sharedapi_get_valid_key($key);
334 function sharedapi_decrypt($key, $data) { argument
335 $key = sharedapi_get_valid_key($key);
341 return sharedapi_encrypt($key, $data);
345 $data = sharedapi_decrypt($key, $data);
353 function sharedapi_get_valid_key($key) { argument
358 return $key;
363 if (strlen($key) < $length) {
446 if ($key) {
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DRegexp.php17 * @param string $key OPTIONAL Regexp key
21 public function __construct(string $key = '', ?string $value = null, float $boost = 1.0) argument
23 if ('' !== $key) {
24 $this->setValue($key, $value, $boost);
29 * Sets the query expression for a key with its boost value.
33 public function setValue(string $key, ?string $value = null, float $boost = 1.0) argument
35 return $this->setParam($key, ['value' => $value, 'boost' => $boost]);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DNewRelicHandler.php99 foreach ($record['formatted']['context'] as $key => $parameter) {
102 … $this->setNewRelicParameter('context_' . $key . '_' . $paramKey, $paramValue);
105 $this->setNewRelicParameter('context_' . $key, $parameter);
111 foreach ($record['formatted']['extra'] as $key => $parameter) {
114 $this->setNewRelicParameter('extra_' . $key . '_' . $paramKey, $paramValue);
117 $this->setNewRelicParameter('extra_' . $key, $parameter);
180 * @param string $key
183 protected function setNewRelicParameter(string $key, $value): void argument
186 newrelic_add_custom_parameter($key, $value);
188 newrelic_add_custom_parameter($key, Utils::jsonEncode($value, null, true));
/plugin/authgooglesheets/vendor/psr/cache/src/
H A DCacheItemPoolInterface.php22 * @param string $key
32 public function getItem($key); argument
59 * @param string $key
69 public function hasItem($key); argument
82 * @param string $key
92 public function deleteItem($key); argument
/plugin/qstat/
H A Dsyntax.php214 $buf .= $this->_renderInformation($key, $data[$key]);
238 switch ($key) {
305 if ($data[$key] == 1) {
349 $key = null;
351 if ($key == null) {
352 $key = $item;
356 $key = null;
397 $key = null;
399 if ($key == null) {
400 $key = $item;
[all …]
/plugin/subjectindex/inc/
H A Dcommon.php42 function remove($key) { argument
43 unset($this->paths[$key]);
44 unset($this->pids[$key]);
69 $key = key($this->paths);
70 $pid = $this->pids[$key];
78 function key() { function in SI_Index
79 return key($this->paths);
186 if ($key !== false) {
197 $this->index->remove($key);
232 foreach ($pid as $key)
[all …]
/plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/Internal/
H A DWebDriverSingleKeyAction.php29 protected $key; variable in Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSingleKeyAction
32 * @param string $key
33 * @todo Remove default $key value in next major version (BC)
39 $key = '' argument
43 if (!in_array($key, self::MODIFIER_KEYS, true)) {
47 $key
51 $this->key = $key;
/plugin/farmer/
H A DDokuWikiFarmCore.php333 foreach ($this->config['inherit'] as $key => $val) {
339 if ($key == 'main') {
344 } elseif ($key == 'license') {
346 'default' => [DOKU_INC . 'conf/' . $key . '.local.php']
348 } elseif ($key == 'userscript') {
352 } elseif ($key == 'userstyle') {
371 } elseif ($key == 'styleini') {
375 } elseif ($key == 'users') {
377 } elseif ($key == 'plugins') {
383 'default' => [DOKU_INC . 'conf/' . $key
[all...]

12345678910>>...100