| /plugin/aichat/vendor/bdelespierre/php-kmeans/src/KMeans/ |
| D | Point.php | 31 protected $space; variable in KMeans\\Point 35 public function __construct(Space $space, array $coordinates) argument 37 $this->space = $space; 38 $this->dimention = $space->getDimention(); 46 'data' => isset($this->space[$this]) ? $this->space[$this] : null, 52 if ($point->space !== $this->space) { 53 throw new \LogicException("can only calculate distances from points in the same space"); 81 public function belongsTo(Space $space): bool argument 83 return $this->space === $space; 86 public function getSpace(): Space [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/unittest/ |
| D | test.white-space.php | 5 $tree = $this->runPipeline(file_get_contents('test.white-space.1.html')); 10 'Incorrect line box number in DIV with "white-space: normal" [%s]'); 15 'Incorrect line box number in DIV with "white-space: pre" [%s]'); 20 … 'Incorrect line box number in DIV with "white-space: pre" without leading linefeeds [%s]'); 25 … 'Incorrect line box number in DIV with "white-space: pre" with trailing empty line [%s]'); 30 'Incorrect line box number in DIV with "white-space: nowrap" [%s]'); 35 'Incorrect line box number in DIV with "white-space: pre-wrap" [%s]'); 40 … 'Incorrect line box number in DIV with "white-space: pre-wrap" without leading linefeeds [%s]'); 45 … 'Incorrect line box number in DIV with "white-space: pre-line" with trailing empty line [%s]'); 49 $tree = $this->runPipeline(file_get_contents('test.white-space.2.html')); [all …]
|
| D | test.white-space.2.html | 1 <div id="div-normal" style="white-space: normal; width: 10em; border: solid black 1px; margin: 10px… 7 <div id="div-pre" style="white-space: pre; width: 10em; border: solid black 1px; margin: 10px; padd… 13 <div id="div-pre2" style="white-space: pre; width: 10em; border: solid black 1px; margin: 10px; pad… 18 <div id="div-pre3" style="white-space: pre; width: 10em; border: solid black 1px; margin: 10px; pad… 24 <div id="div-nowrap" style="white-space: nowrap; width: 10em; border: solid black 1px; margin: 10px… 30 <div id="div-pre-wrap" style="white-space: pre-wrap; width: 10em; border: solid black 1px; margin: … 36 <div id="div-pre-wrap2" style="white-space: pre-wrap; width: 10em; border: solid black 1px; margin:… 41 <div id="div-pre-line" style="white-space: pre-line; width: 10em; border: solid black 1px; margin: …
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/ |
| D | ruleset.xml | 111 …space after the method name. The opening brace MUST go on its own line, and the closing brace MUST… 118 …<!-- In the argument list, there MUST NOT be a space before each comma, and there MUST be one spac… 131 …thesis and opening brace MUST be placed together on their own line with one space between them. --> 142 …space between the method or function name and the opening parenthesis, there MUST NOT be a space a… 152 There MUST be one space after the control structure keyword 153 There MUST NOT be a space after the opening parenthesis 154 There MUST NOT be a space before the closing parenthesis 155 There MUST be one space between the closing parenthesis and the opening brace 198 …<!-- Closures MUST be declared with a space after the function keyword, and a space before and aft… 200 …There MUST NOT be a space after the opening parenthesis of the argument list or variable list, and… [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/ |
| D | trim_block.test | 25 Trim leading space: 37 Trim trailing space: 54 return ['leading' => 'leading space', 'trailing' => 'trailing space', 'both' => 'both'] 67 Trim leading space: 68 leading space 69 leading space 71 Trim trailing space:
|
| /plugin/aichat/vendor/bdelespierre/php-kmeans/ |
| D | README.md | 25 // prepare 50 points of 2D space to be clustered 39 // create a 2-dimentions space 40 $space = new KMeans\Space(2); 42 // add points to space 44 $space->addPoint($coordinates); 48 $clusters = $space->solve(3); 63 **Note:** the example is given with points of a 2D space but it will work with any dimention >1. 105 ### List all points of a space/cluster: 116 $point = $space->addPoint([$x, $y, $z], "user #123"); 122 $data = $space[$point]; // e.g. "user #123" [all …]
|
| D | demo.php | 5 // prepare 50 points of 2D space to be clustered 19 // create a 2-dimentions space 20 $space = new KMeans\Space(2); variable 22 // add points to space 24 $space->addPoint($coordinates); 28 $clusters = $space->solve(3);
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/ |
| D | Comment.php | 109 $space = $this->_collectWhitespace($string, $char, $numChars); 110 if ($space !== null) { 111 $tokens[$stackPtr] = $space; 114 $content = PHP_CodeSniffer::prepareForOutput($space['content']); 118 $char += strlen($space['content']); 193 $space = $this->_collectWhitespace($string, $start, $end); 194 if ($space !== null) { 195 $tokens[] = $space; 196 $start += strlen($space['content']); 217 $space = $this->_collectWhitespace($string, $start, $end); [all …]
|
| /plugin/today/_test/ |
| H A D | SyntaxTodayTest.php | 13 * Tests for the `{today name:space}` syntax component of the today plugin 24 '{today name:space}', 26 'namespace' => 'name:space', 29 'name:space:' . date('Y-m-d'), 33 '{today name:space Y:Y-m-d}', 35 'namespace' => 'name:space', 38 'name:space:' . date('Y:Y-m-d') 67 'namespace' => 'name:space',
|
| /plugin/jquery-syntax/jquery-syntax/base/ |
| D | jquery.syntax.layout.list.css | 11 white-space: pre-wrap; 13 white-space: -moz-pre-wrap; 15 white-space: -o-pre-wrap; 18 _white-space: pre; } 37 white-space: pre-wrap; 39 white-space: -moz-pre-wrap; 41 white-space: -o-pre-wrap; 44 _white-space: pre; }
|
| /plugin/displayorphans/lang/en/ |
| D | settings.php | 13 $lang['ignore_orphaned_pages'] = "Space-separated list of pages to ignore when generating tables of… 14 $lang['ignore_orphaned_namespaces'] = "Space-separated list of namespaces to ignore when generating… 15 $lang['ignore_wanted_pages'] = "Space-separated list of pages to ignore when generating tables of w… 16 $lang['ignore_wanted_namespaces'] = "Space-separated list of namespaces to ignore when generating t… 17 $lang['ignore_linked_pages'] = "Space-separated list of pages to ignore when generating tables of l… 18 $lang['ignore_linked_namespaces'] = "Space-separated list of namespaces to ignore when generating t…
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | output.js | 292 space(); 370 var space = options.beautify ? function() { 439 space(); 444 space(); 575 space : space, 974 output.space(); 976 output.space(); 985 output.space(); 994 output.space(); 1003 output.space(); [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ |
| D | OperatorSpacingSniff.php | 125 // If it's not a reference, then we expect one space either side of the 131 // Check there is one space before the & operator. 133 $error = 'Expected 1 space before "&" operator; 0 found'; 139 $phpcsFile->recordMetric($stackPtr, 'Space before operator', 0); 147 $phpcsFile->recordMetric($stackPtr, 'Space before operator', $found); 151 $error = 'Expected 1 space before "&" operator; %s found'; 160 // Check there is one space after the & operator. 162 $error = 'Expected 1 space after "&" operator; 0 found'; 168 $phpcsFile->recordMetric($stackPtr, 'Space after operator', 0); 176 $phpcsFile->recordMetric($stackPtr, 'Space after operator', $found); [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/ |
| D | ExceptionNamespaceTest.php | 3 namespace My\Space; 23 * @expectedExceptionMessage My\Space\ExceptionNamespaceTest::ERROR_MESSAGE 24 * @expectedExceptionCode My\Space\ExceptionNamespaceTest::ERROR_CODE 32 * @expectedExceptionCode My\Space\ExceptionNamespaceTest::UNKNOWN_CODE_CONSTANT 33 * @expectedExceptionMessage My\Space\ExceptionNamespaceTest::UNKNOWN_MESSAGE_CONSTANT
|
| /plugin/ckgedit/ckeditor/plugins/a11yhelp/dialogs/lang/ |
| D | en-au.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | en-gb.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | hi.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | lt.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | ar.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| /plugin/ckgdoku/ckeditor/plugins/a11yhelp/dialogs/lang/ |
| D | mn.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | en-gb.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | mk.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of curre… 7 …SPACE or ENTER to select the list option. Press ESC to close the list-box."},{name:"Editor Element… 8 …ame:" Access previous focus space command",legend:"Press ${accessPreviousSpace} to access the clos… 9 {name:" Access next focus space command",legend:"Press ${accessNextSpace} to access the closest unr…
|
| D | ar.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | tt.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|
| D | th.js | 5 …he next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activa… 6 …SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or R… 7 … RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select… 8 …space command",legend:"Press ${accessPreviousSpace} to access the closest unreachable focus space …
|