| /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) { 81 public function belongsTo(Space $space): bool argument 83 return $this->space === $space; 88 return $this->space;
|
| D | Cluster.php | 34 protected $space; variable in KMeans\\Cluster 37 public function __construct(Space $space, array $coordinates) argument 39 parent::__construct($space, $coordinates); 88 $centroid = $this->space->newPoint(array_fill(0, $this->dimention, 0));
|
| /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/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/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/authgooglesheets/vendor/google/apiclient-services/src/Drive/ |
| D | GeneratedIds.php | 34 public $space; variable in Google\\Service\\Drive\\GeneratedIds 67 public function setSpace($space) argument 69 $this->space = $space; 76 return $this->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; }
|
| D | jquery.syntax.layout.table.css | 14 white-space: pre-wrap; 16 white-space: -moz-pre-wrap; 18 white-space: -o-pre-wrap; 21 _white-space: pre; }
|
| /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 | 20 $space = new KMeans\Space(2); variable 24 $space->addPoint($coordinates); 28 $clusters = $space->solve(3);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/FirebaseManagement/ |
| D | StatusProto.php | 39 public $space; variable in Google\\Service\\FirebaseManagement\\StatusProto 100 public function setSpace($space) argument 102 $this->space = $space; 109 return $this->space;
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | output.js | 281 var space = options.beautify ? function() { 355 space(); 360 if (options.space_colon) space(); 400 space : space, 541 output.space(); 775 output.space(); 777 output.space(); 779 output.space(); 787 output.space(); 791 output.space(); [all …]
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | _string-trim.js | 5 var space = '[' + spaces + ']'; variable 7 var ltrim = RegExp('^' + space + space + '*'); 8 var rtrim = RegExp(space + space + '*$');
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | _string-trim.js | 5 var space = '[' + spaces + ']'; variable 7 var ltrim = RegExp('^' + space + space + '*'); 8 var rtrim = RegExp(space + space + '*$');
|
| /plugin/wpre/ |
| D | style.css | 3 white-space: pre-wrap; /* css-3 */ 4 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ 5 white-space: -pre-wrap; /* Opera 4-6 */ 6 white-space: -o-pre-wrap; /* Opera 7 */
|
| /plugin/findologicxmlexport/vendor/twig/twig/ |
| D | .editorconfig | 9 indent_style = space 13 indent_style = space 17 indent_style = space
|
| /plugin/tagging/less/ |
| H A D | editable.less | 12 white-space: nowrap; /* prevent wrapping buttons on new line */ 17 display: inline-block; /* should be inline to take effect of parent's white-space: nowrap */ 27 display: inline-block; /* should be inline to take effect of parent's white-space: nowrap */ 29 white-space: normal; /* reset white-space decalred in parent*/ 56 white-space: normal;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/ |
| D | DeprecatedEvent.php | 162 public function setSpace(Space $space) argument 164 $this->space = $space; 171 return $this->space;
|
| D | Message.php | 237 public function setSpace(Space $space) argument 239 $this->space = $space; 246 return $this->space;
|
| /plugin/mapillary/ |
| D | syntax.php | 82 $space = stripos($match, ' '); 83 if ($space > 0) { 84 if ($space < 12) { 87 if ($space > 12) {
|
| /plugin/authucenter/lib/uc_client/lib/ |
| D | xml.class.php | 19 $space = str_repeat("\t", $level); 22 …$s .= $space."<item id=\"$k\">".($htmlon ? '<![CDATA[' : '').$v.($htmlon ? ']]>' : '')."</item>\r\… 24 …$s .= $space."<item id=\"$k\">\r\n".xml_serialize($v, $htmlon, $isnormal, $level + 1).$space."</it…
|
| /plugin/move/script/ |
| D | json2.js | 359 JSON.stringify = function (value, replacer, space) { argument 374 if (typeof space === 'number') { 375 for (i = 0; i < space; i += 1) { 381 } else if (typeof space === 'string') { 382 indent = space;
|
| /plugin/sequencediagram/bower_components/lodash/vendor/json-js/ |
| D | json2.js | 388 JSON.stringify = function (value, replacer, space) { argument 403 if (typeof space === 'number') { 404 for (i = 0; i < space; i += 1) { 410 } else if (typeof space === 'string') { 411 indent = space;
|
| /plugin/diagramsnet/lib/math/jax/output/SVG/fonts/TeX/ |
| D | fontdata.js | 19 …space:1}],8193:[0,0,1000,0,0,{space:1}],8194:[0,0,500,0,0,{space:1}],8195:[0,0,1000,0,0,{space:1}]… property
|
| /plugin/asciidocjs/node_modules/uglify-js/tools/ |
| D | node.js | 68 out.space(); 71 if (i) out.space(); 77 out.space(); 81 out.space();
|