| /plugin/asciidocjs/node_modules/once/ |
| D | README.md | 1 # once chapter 3 Only call a function once. 8 var once = require('once') 11 cb = once(cb) 13 loader.once('load', cb) 14 loader.once('error', cb) 21 // only has to be done once 22 require('once').proto() 25 cb = cb.once() 27 loader.once('load', cb) [all …]
|
| D | once.js | 2 module.exports = wrappy(once) 5 once.proto = once(function () { 8 return once(this) 21 function once (fn) { function
|
| /plugin/jplayer/vendor/symfony/process/Tests/ |
| D | ProcessFailedExceptionTest.php | 28 $process->expects($this->once()) 52 $process->expects($this->once()) 56 $process->expects($this->once()) 60 $process->expects($this->once()) 64 $process->expects($this->once()) 68 $process->expects($this->once()) 72 $process->expects($this->once()) 76 $process->expects($this->once()) 100 $process->expects($this->once()) 110 $process->expects($this->once()) [all …]
|
| /plugin/findologicxmlexport/vendor/jms/serializer/tests/Exclusion/ |
| D | DisjunctExclusionStrategyTest.php | 25 $first->expects($this->once()) 46 $first->expects($this->once()) 51 $last->expects($this->once()) 69 $first->expects($this->once()) 74 $last->expects($this->once()) 92 $first->expects($this->once()) 113 $first->expects($this->once()) 118 $last->expects($this->once()) 136 $first->expects($this->once()) 141 $last->expects($this->once())
|
| /plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/ |
| D | FormErrorHandlerTest.php | 152 $translator->expects($this->once()) 161 $formError->expects($this->once())->method('getMessageTemplate')->willReturn('error!'); 162 $formError->expects($this->once())->method('getMessagePluralization')->willReturn(null); 163 $formError->expects($this->once())->method('getMessageParameters')->willReturn([]); 175 $translator->expects($this->once()) 185 $formError->expects($this->once())->method('getMessageTemplate')->willReturn('error!'); 187 $formError->expects($this->once())->method('getMessageParameters')->willReturn([]); 199 $translator->expects($this->once()) 208 $formError->expects($this->once())->method('getMessageTemplate')->willReturn('error!'); 209 $formError->expects($this->once())->method('getMessagePluralization')->willReturn(null); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/ |
| D | Target.php | 27 public $once; variable in Google\\Service\\Firestore\\Target 60 public function setOnce($once) argument 62 $this->once = $once; 69 return $this->once;
|
| /plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/ |
| D | AppendStreamTest.php | 20 $s->expects($this->once()) 37 $s->expects($this->once()) 40 $s->expects($this->once()) 43 $s->expects($this->once()) 128 $s->expects($this->once()) 131 $s->expects($this->once()) 142 $s->expects($this->once()) 145 $s->expects($this->once())
|
| D | GuzzleStreamWrapperTest.php | 67 $stream->expects($this->once()) 70 $stream->expects($this->once()) 87 $stream->expects($this->once()) 90 $stream->expects($this->once())
|
| /plugin/asciidocjs/node_modules/wrappy/ |
| D | README.md | 12 // make sure a cb is called only once 13 // See also: http://npm.im/once for this specific use case 14 var once = wrappy(function (cb) { 29 var onlyPrintOnce = once(printBoo)
|
| /plugin/findologicxmlexport/vendor/jms/metadata/tests/Driver/ |
| D | DriverChainTest.php | 17 ->expects($this->once()) 30 ->expects($this->once()) 36 ->expects($this->once()) 52 ->expects($this->once())
|
| D | AbstractFileDriverTest.php | 37 ->expects($this->once()) 43 ->expects($this->once()) 55 ->expects($this->once()) 67 ->expects($this->once())
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/ |
| D | ContainerRuntimeLoaderTest.php | 22 $container->expects($this->once())->method('has')->with('stdClass')->willReturn(true); 23 … $container->expects($this->once())->method('get')->with('stdClass')->willReturn(new \stdClass()); 36 $container->expects($this->once())->method('has')->with('Foo');
|
| D | EnvironmentTest.php | 228 $cache->expects($this->once()) 231 $cache->expects($this->once()) 236 $cache->expects($this->once()) 238 $cache->expects($this->once()) 257 $cache->expects($this->once()) 260 $cache->expects($this->once()) 263 $loader->expects($this->once()) 283 $cache->expects($this->once()) 286 $cache->expects($this->once()) 289 $loader->expects($this->once()) [all …]
|
| /plugin/davcal/vendor/sabre/event/ |
| H A D | CHANGELOG.md | 14 * Fixed: `$priority` was ignored in `EventEmitter::once` method. 15 * Fixed: Breaking the event chain was not possible in `EventEmitter::once`. 44 * Added: once, to only listen to an event emitting once.
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Extensions/ |
| D | PhptTestCaseTest.php | 84 ->expects($this->once()) 122 ->expects($this->once()) 200 ->expects($this->once()) 215 ->expects($this->once()) 230 ->expects($this->once())
|
| /plugin/findologicxmlexport/vendor/jms/metadata/tests/ |
| D | MetadataFactoryTest.php | 117 ->expects($this->once()) 126 ->expects($this->once()) 132 ->expects($this->once()) 147 ->expects($this->once()) 192 ->expects($this->once()) 211 ->expects($this->once()) // This is the important part of this test 227 ->expects($this->once())
|
| /plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/ |
| D | GraphNavigatorTest.php | 59 $exclusionStrategy->expects($this->once()) 66 $exclusionStrategy->expects($this->once()) 74 $this->context->expects($this->once()) 92 $exclusionStrategy->expects($this->once()) 98 $exclusionStrategy->expects($this->once()) 104 $this->context->expects($this->once())
|
| D | SerializationContextFactoryTest.php | 50 ->expects($this->once()) 69 ->expects($this->once()) 89 ->expects($this->once()) 108 ->expects($this->once())
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | once.js | 21 function once(func) { function 25 module.exports = once;
|
| /plugin/asciidocjs/node_modules/async/internal/ |
| D | once.js | 6 exports.default = once; 7 function once(fn) { function
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | md1_links_reference_style.md | 14 Indented [once][]. 22 [once]: /url
|
| /plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/ |
| D | SymfonyValidatorValidatorSubscriberTest.php | 28 $this->validator->expects($this->once()) 46 $this->validator->expects($this->once()) 66 $this->validator->expects($this->once())
|
| /plugin/webdav/vendor/sabre/event/ |
| D | CHANGELOG.md | 41 * Fixed: `$priority` was ignored in `EventEmitter::once` method. 42 * Fixed: Breaking the event chain was not possible in `EventEmitter::once`. 71 * Added: once, to only listen to an event emitting once.
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/ |
| D | MockObjectTest.php | 133 $mock->expects($this->once()) 144 $mock->expects($this->once()) 269 $mock->expects($this->once()) 279 $mock->expects($this->once()) 338 $mock->expects($this->once()) 351 $mock->expects($this->once()) 549 $mock->expects($this->once()) 567 $mock->expects($this->once()) 650 $mock->expects($this->once()) 675 $mock->expects($this->once()) [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | TagAttributes.php | 697 $once = "once"; 700 "class" => $once, 701 "id" => $once, 702 "name" => $once, 705 "for" => $once, 706 "type" => $once, 707 "href" => $once, 708 "value" => $once, 709 "title" => $once, 710 "alt" => $once, [all …]
|