Home
last modified time | relevance | path

Searched +full:x +full:- +full:age (Results 1 – 25 of 74) sorted by relevance

123

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/xml/
Dobject_with_namespaces_and_nested_list.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <ObjectWithNamespacesAndNestedList xmlns="http://example.com/namespace" xmlns:x="http://example.com…
4 <person age="11">AAA</person>
5 <person age="22">BBB</person>
/plugin/statistics/vendor/mustangostang/spyc/
Dspyc.yaml7 # license: [MIT License, http://www.opensource.org/licenses/mit-license.php]
8 # copyright: (c) 2005-2006 Chris Wanstrath, 2006-2014 Vlad Andersen
10 # spyc.yaml - A file containing the YAML that Spyc understands.
12 ---
14 # Mappings - with proper types
28 Negative: -90
34 - PHP Class
35 - Basic YAML Loader
36 - Very Basic YAML Dumper
39 -
[all …]
/plugin/statistics/vendor/mustangostang/spyc/php4/
Dtest.php49 # license: [MIT License, http://www.opensource.org/licenses/mit-license.php]
10 # copyright: (c) 2005-2006 Chris Wanstrath
15 # Pretty lo-fi. Let's see if we can't get some unit testing going in the next,
71 "os" => "os x 10.4.1"))
79 if ($yaml[5] != array("program" => "Adium", "platform" => "OS X",
116 if ($yaml[9] != array("name" => "chris", "age" => "young", "brand" => "lucky strike"))
120 if ($yaml[10] != array("name" => "mark", "age" => "older than chris",
124 # References -- they're shaky, but functional
150 if ($yaml[15] != array( 'name' => "Foo, Bar's", 'age' => 20))
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
Dvocab.bpe155 Ġe x
184 - -
278 Ġ -
396 -- --
488 x t
590 i x
643 a x
728 ---- ----
815 e x
886 o x
[all …]
/plugin/smartcache/
Daction.php14 'author' => 'Simon-Shlomo Poil',
25 $controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 'smartAddlastmod');
26 // $controller->register_hook('ACTION_HEADER_SEND', 'BEFORE', $this,'smartAddHeader');
36 $JSINFO['lastmod'] = (string) 'X';
41 $JSINFO['lastmod'] = (string) 'X';
49 //$event->data[] = 'Cache-Control: public, max-age='.max($conf['cachetime'], 2000000);
50 //$event->data['test2'] = 'Pragma: cache';
51 //$event->data['test'] = 'X-PINGback: test';
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Dcollections.js74 {length: -2},
152 assert.deepEqual(doubled, [2, 4, 6], 'OO-style doubled numbers');
157 assert.deepEqual(ids, ['1', '2'], 'Can use collection methods on Array-likes.');
166 var people = [{name: 'moe', age: 30}, {name: 'curly', age: 50}]; property
183 assert.equal(sum, 6, 'OO-style reduce');
265 …assert.strictEqual(_.find(array, function(x) { return x === 55; }), void 0, 'iterates array-likes … argument
278 a: {x: 1, z: 3}, property
279 b: {x: 2, z: 2}, property
280 c: {x: 3, z: 4}, property
281 d: {x: 4, z: 1} property
[all …]
Dobjects.js10 // the test above is not safe because it relies on for-in enumeration order
35 assert.deepEqual(_.keys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');
40 // the test above is not safe because it relies on for-in enumeration order
63 assert.deepEqual(_.allKeys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');
72 y.x = 'z';
73 assert.deepEqual(_.allKeys(y), ['x'], 'should get keys from constructor');
97 …assert.deepEqual(['b', 'd'], _.functions(obj), 'can grab the function names of any passed-in objec…
111 assert.equal(_.extend({a: 'x'}, {a: 'b'}).a, 'b', 'properties in source override destination');
112 … assert.equal(_.extend({x: 'x'}, {a: 'b'}).x, 'x', "properties not in source don't get overriden"); property
113 result = _.extend({x: 'x'}, {a: 'a'}, {b: 'b'}); property
[all …]
/plugin/mathpublish/
Dimg.php16 header('Content-Type: image/png;');
18 header('Cache-Control: public, proxy-revalidate, no-transform, max-age=' . max($conf['cachetime'], …
21 http_sendfile($cache); // exits if x-sendfile support
27 print 'Could not read file - bad permissions?';
32 header('Content-Type: image/png');
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
DXmlSerializationTest.php55 $this->serialize($obj);
63 if ($this->hasDeserializer()) {
64 … self::assertSame($boolean, $this->deserialize('<result>' . $xmlBoolean . '</result>', 'boolean'));
76 $object = $this->deserialize(
87 self::assertInstanceOf('stdClass', $object->getElement());
88 …tInstanceOf('JMS\Serializer\Tests\Fixtures\AccessorSetterElement', $object->getElement()->element);
89 self::assertEquals('attribute-different', $object->getElement()->element->getAttribute());
90 self::assertEquals('element-different', $object->getElement()->element->getElement());
91 self::assertEquals(['collectionEntry' => 'collectionEntry'], $object->getCollection());
98 $person->name = 'Matthias Noback';
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Browser/
H A DPluginTest.php17 $this->server->addPlugin($this->plugin = new Plugin());
18 $this->server->tree->getNodeForPath('')->createDirectory('dir2');
25 $this->server->httpRequest = $request;
26 $this->server->exec();
28 …$this->assertEquals(200, $this->response->getStatus(), "Incorrect status received. Full response b…
29 $this->assertEquals(
31 'X-Sabre-Version' => [DAV\Version::VERSION],
32 'Content-Type' => ['text/html; charset=utf-8'],
33 'Content-Security-Policy' => ["img-src 'self'; style-src 'self';"]
35 $this->response->getHeaders()
[all …]
/plugin/sequencediagram/bower_components/lodash/doc/
DREADME.md3 <!-- div class="toc-container" -->
5 <!-- div -->
8 * <a href="#_chunkarray-size1">`_.chunk`</a>
10 * <a href="#_concatarray-values">`_.concat`</a>
11 * <a href="#_differencearray-values">`_.difference`</a>
12 * <a href="#_differencebyarray-values-iteratee_identity">`_.differenceBy`</a>
13 * <a href="#_differencewitharray-values-comparator">`_.differenceWith`</a>
14 * <a href="#_droparray-n1">`_.drop`</a>
15 * <a href="#_droprightarray-n1">`_.dropRight`</a>
16 * <a href="#_droprightwhilearray-predicate_identity">`_.dropRightWhile`</a>
[all …]
/plugin/pureldap/_test/
H A DADClientTest.php20 * All tests assume to be running against https://github.com/splitbrain/vagrant-active-directory
62 'mobile' => '+63 (483) 526-8809',
65 $client = $this->getClient();
66 $user = $client->getUser('a.legrand@example.local');
68 …$this->assertGreaterThan(mktime(0,0,0,6,1,2023), $user['lastpwd'], 'lastpwd should be a timestamp'…
70 $this->assertSame($expect, $user);
73 $user = $client->getUser('a.legrand');
75 $this->assertSame($expect, $user);
78 $user = $client->getUser('A.LeGrand');
80 $this->assertSame($expect, $user);
[all …]
/plugin/farm/install/animaltemplate/conf/
Ddokuwiki.php19 $conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection
20 $conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect
37 $conf['signature'] = ' --- //[[@MAIL@|@NAME@]] @DATE@//'; //signature see wiki:config for details
54 … // 'visible' - replace @ with [at], . with [dot] and - with [dash]
55 … // 'hex' - use hex entities to encode the mail address
56 // 'none' - do not obfuscate addresses
59 /* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */
80 // letter, a digit, '_', '-', or '.'.
84 // bz2 generates smaller files, but needs more cpu-power
85 $conf['cachetime'] = 60*60*24; //maximum age for cachefile in seconds (defaults to a day)
[all …]
/plugin/calendar/classes/
DRateLimiter.php3 * Calendar Plugin - Rate Limiter
6 * Uses file-based tracking for simplicity and compatibility.
8 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
32 /** @var int Cleanup probability (1 in X requests) */
81 $action = preg_replace('/[^a-z0-9_]/', '', strtolower($action));
118 $windowStart = $now - $window;
190 'reset' => $data['blocked_until'] - $now,
196 $windowStart = $now - $window;
202 'remaining' => max(0, $limit - $currentRequests),
229 * @param int $maxAge Maximum age in seconds (default 1 hour)
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
Dmodel.js13 id: '1-the-tempest',
111 assert.equal(doc.url(), '/collection/1-the-tempest');
113 assert.equal(doc.url(), '/collection/1-the-tempest');
185 a = new Backbone.Model({foo: 1, bar: 2, baz: 3, id: -5});
191 assert.ok(!new Backbone.Model({id: -5}).isNew(), 'is false for a negative integer');
296 …QUnit.test('#2030 - set with failed validate, followed by another set triggers change', function(a…
300 if (attrs.x > 1) {
306 var model = new Model({x: 0}); property
307 model.on('change:x', function() { attr++; });
309 model.set({x: 2}, {validate: true}); property
[all …]
/plugin/asciidocjs/node_modules/lodash/
Dlodash.js11 /** Used as a safe reference for `undefined` in pre-ES5 environments. */
21 var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',
25 /** Used to stand-in for `undefined` hash values. */
76 MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,
140 var reEscape = /<%-([\s\S]+?)%>/g,
147 …rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:…
151 * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
168 var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
174 * - "()," (modification of function parameters)
175 * - "=" (default value)
[all …]
Dcore.js4 * Build: `lodash core -o ./dist/lodash.core.js`
12 /** Used as a safe reference for `undefined` in pre-ES5 environments. */
53 var reIsUint = /^(?:0|[1-9]\d*)$/;
79 /*--------------------------------------------------------------------------*/
103 * @returns {number} Returns the index of the matched value, else `-1`.
107 index = fromIndex + (fromRight ? 1 : -1);
109 while ((fromRight ? index-- : ++index < length)) {
114 return -1;
204 /*--------------------------------------------------------------------------*/
206 /** Used for built-in method references. */
[all …]
/plugin/latex/
Dadmin.php51 if(time() - fileatime($fname) - $this->_timelimit > 0)
54 return $this->_timelimit;
59 if(time() - filemtime($fname) - $this->_timelimit > 0)
74 // atime: age based on fileatime().
75 // mtime: age based on filemtime().
80 $meddir = $conf['mediadir'] . '/' . strtr($this->getConf('latex_namespace'),':','/');
82 $this->_timelimit = $timelimit;
104 $this->output = "";
115 $this->output .= '<div class="info">'.$this->getLang('refresh_note').'</div>';
119 $this->output .= "<pre>Purge result ([x] = deleted):\n";
[all …]
/plugin/latex-was/
Dadmin.php51 if(time() - fileatime($fname) - $this->_timelimit > 0)
54 return $this->_timelimit;
59 if(time() - filemtime($fname) - $this->_timelimit > 0)
74 // atime: age based on fileatime().
75 // mtime: age based on filemtime().
80 $meddir = $conf['mediadir'] . '/' . strtr($this->getConf('latex_namespace'),':','/');
82 $this->_timelimit = $timelimit;
104 $this->output = "";
115 $this->output .= '<div class="info">'.$this->getLang('refresh_note').'</div>';
119 $this->output .= "<pre>Purge result ([x] = deleted):\n";
[all …]
/plugin/latexwas/
Dadmin.php51 if(time() - fileatime($fname) - $this->_timelimit > 0)
54 return $this->_timelimit;
59 if(time() - filemtime($fname) - $this->_timelimit > 0)
74 // atime: age based on fileatime().
75 // mtime: age based on filemtime().
80 $meddir = $conf['mediadir'] . '/' . strtr($this->getConf('latex_namespace'),':','/');
82 $this->_timelimit = $timelimit;
104 $this->output = "";
115 $this->output .= '<div class="info">'.$this->getLang('refresh_note').'</div>';
119 $this->output .= "<pre>Purge result ([x] = deleted):\n";
[all …]
/plugin/preservefilenames/
Daction_anteater.php33 $this->common = new PreserveFilenames_Common();
35 $controller->register_hook('MEDIA_UPLOAD_FINISH', 'AFTER', $this, '_saveMeta');
36 $controller->register_hook('MEDIA_DELETE_FILE', 'AFTER', $this, '_deleteMeta');
37 $controller->register_hook('MEDIA_SENDFILE', 'BEFORE', $this, '_sendFile');
38 … $controller->register_hook('PARSER_HANDLER_DONE', 'BEFORE', $this, '_replaceLinkTitle');
39 … $controller->register_hook('RENDERER_CONTENT_POSTPROCESS', 'AFTER', $this, '_replaceLinkURL');
40 … $controller->register_hook('MEDIAMANAGER_STARTED', 'AFTER', $this, '_exportToJSINFO');
41 … $controller->register_hook('MEDIAMANAGER_CONTENT_OUTPUT', 'BEFORE', $this, '_showMediaList');
42 … $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, '_showMediaListAjax');
43 …$controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, '_replaceSnippetDownlo…
[all …]
/plugin/sequencediagram/bower_components/lodash/
Dlodash.js11 /** Used as a safe reference for `undefined` in pre-ES5 environments. */
21 var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',
24 /** Used to stand-in for `undefined` hash values. */
75 MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,
139 var reEscape = /<%-([\s\S]+?)%>/g,
146 …rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:…
150 * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
166 var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
173 …* [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexica…
181 var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.js11 /** Used as a safe reference for `undefined` in pre-ES5 environments. */
21 var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',
24 /** Used to stand-in for `undefined` hash values. */
75 MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,
139 var reEscape = /<%-([\s\S]+?)%>/g,
146 …rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:…
150 * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
166 var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
173 …* [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexica…
181 var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
[all …]
/plugin/combo/action/
H A Dstaticresource.php50 const NO_TRANSFORM = "no-transform";
63 … $controller->register_hook('FETCH_MEDIA_STATUS', 'BEFORE', $this, 'handleMediaStatus', array());
69 $controller->register_hook('MEDIA_SENDFILE', 'BEFORE', $this, 'handleSendFile', array());
95 $event->data['download'] = false;
97 $event->data['status'] = HttpResponseStatus::NOT_AUTHORIZED;
110 $fetcher = $executionContext->createPathMainFetcherFromUrl($fetchUrl);
111 $fetchPath = $fetcher->getFetchPath();
112 $filePath = $fetchPath->toAbsoluteId();
127 ->response()
128 ->setStatus(400)
[all …]
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
Dpdfmake.js64 normal: 'Roboto-Regular.ttf',
65 bold: 'Roboto-Medium.ttf',
66 italics: 'Roboto-Italic.ttf',
67 bolditalics: 'Roboto-Italic.ttf'
122 iFrame.style.left = '-99999px';
231 * - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances,
234 * - Safari 5-7 lacks support for changing the `Object.prototype.constructor` property
237 * - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function.
239 * - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of
253 typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray`
[all …]

123