Home
last modified time | relevance | path

Searched refs:stats (Results 1 – 25 of 134) sorted by relevance

123456

/plugin/icalevents/vendor/sabre/vobject/bin/
Dmergeduplicates.php55 $stats = [ variable
67 global $stats;
68 foreach ($stats as $name => $value) {
72 echo "\033[" . count($stats) . "A";
78 global $stats, $output;
80 $stats["Total written"]++;
87 $stats["Total vcards"]++;
95 $stats["No FN property"]++;
96 $stats['Unique cards']++;
106 $stats['Unique cards']++;
[all …]
/plugin/calendar/
Dget_system_stats.php26 $stats = [ variable
43 $stats['cpu'] = min(100, ($load[0] / 2.0) * 100);
46 $stats['cpu_5min'] = min(100, ($load[1] / 2.0) * 100);
49 $stats['load'] = [
69 $stats['memory'] = ($usedMem / $totalMem) * 100;
87 $stats['memory'] = ($usedPages / $totalPages) * 100;
102 $stats['memory'] = ($usedMem / $totalMem) * 100;
108 if ($stats['memory'] == 0) {
113 $stats['memory'] = ($memUsage / $memLimitBytes) * 100;
125 $stats['uptime'] = sprintf('%dd %dh %dm', $days, $hours, $minutes);
[all …]
Dsync_outlook.php65 $stats = [ variable
679 $stats['skipped']++;
705 $stats['updated']++;
716 $stats['created']++;
719 $stats['errors']++;
738 $stats['skipped']++;
752 $stats['updated']++;
762 $stats['recreated']++;
769 $stats['updated']++;
773 $stats['errors']++;
[all …]
/plugin/combo/renderer/
H A Danalytics.php147 public $stats = array(); // the stats variable in renderer_plugin_combo_analytics
224 $statExport = $this->stats;
303 if (array_key_exists(self::FIXME, $this->stats)) {
304 $fixmeCount = $this->stats[self::FIXME];
366 if (array_key_exists(self::HEADER_POSITION, $this->stats)) {
367 $headersCount = count($this->stats[self::HEADER_POSITION]);
370 $currentHeaderLevel = $this->stats[self::HEADER_STRUCT][$i];
371 $previousHeaderLevel = $this->stats[self::HEADER_STRUCT][$i - 1];
425 $headers = $this->stats[self::HEADING_COUNT] ?? null;
431 $wordCount = $this->stats[self::WORD_COUNT] ?? 0;
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Dnamespaces.asciidoc12 | `indices()` | Index-centric stats and info
13 | `nodes()` | Node-centric stats and info
14 | `cluster()` | Cluster-centric stats and info
30 $response = $client->indices()->stats();
33 // Corresponds to curl -XGET localhost:9200/_nodes/stats
34 $response = $client->nodes()->stats();
37 // Corresponds to curl -XGET localhost:9200/_cluster/stats
38 $response = $client->cluster()->stats();
42 As you can see, the same `stats()` call is made through three different
46 For example, we can requests index stats about a specific index, or multiple
[all …]
/plugin/combo/syntax/
H A Dlink.php653 * @param array $stats
656 $stats = &$renderer->stats;
664 … if (!array_key_exists(renderer_plugin_combo_analytics::INTERNAL_LINK_COUNT, $stats)) {
665 $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_COUNT] = 0;
667 $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_COUNT]++;
677 … $internalLinkBroken = $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_BROKEN_COUNT] ?? 0;
678 … $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_BROKEN_COUNT] = $internalLinkBroken + 1;
679 …$stats[renderer_plugin_combo_analytics::INFO][] = "The internal linked page `{$linkedPage}` does n…
697 … $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_DISTANCE][] = $length;
702 … if (!array_key_exists(renderer_plugin_combo_analytics::EXTERNAL_LINK_COUNT, $stats)) {
[all …]
/plugin/pagestats/
Dhelper.php59 $stats = [
68 $stats['PAGESTATSPAGE'] = $count;
69 $stats['PAGESTATSMB'] = round($size / (1024 * 1024), 2);
73 $stats['MEDIASTATSPAGE'] = $count;
74 $stats['MEDIASTATSMB'] = round($size / (1024 * 1024), 2);
77 $this->saveCache($stats);
79 return $stats;
145 * @param array $stats The stats to cache
147 private function saveCache($stats) { argument
153 'stats' => $stats
Dadmin.php61 $stats = $helper->getStats();
73 …echo '<tr><td>' . $this->getLang('admin_total_pages') . '</td><td>' . hsc($stats['PAGESTATSPAGE'])…
74 …echo '<tr><td>' . $this->getLang('admin_pages_size') . '</td><td>' . hsc($stats['PAGESTATSMB']) . …
75 …echo '<tr><td>' . $this->getLang('admin_total_media') . '</td><td>' . hsc($stats['MEDIASTATSPAGE']…
76 …echo '<tr><td>' . $this->getLang('admin_media_size') . '</td><td>' . hsc($stats['MEDIASTATSMB']) .…
/plugin/zip/pear/File/Archive/Writer/
DTar.php43 var $stats = null; variable in File_Archive_Writer_Tar
138 $this->stats[7] = strlen($this->buffer);
141 $this->tarHeader($this->filename, $this->stats)
148 $this->tarFooter($this->stats[7])
154 function newFile($filename, $stats = array(), argument
159 $this->useBuffer = !isset($stats[7]);
161 $this->stats = $stats;
165 $this->tarHeader($filename, $stats)
/plugin/botbouncer/admin/
Dstatistics.php61 $stats = array();
65 $stats['whitelisted'] += 1;
67 $stats['not spam'] += 1;
70 $stats[$data[1].' '.$data[2]] = (int) $stats[$data[1].' '.$data[2]] + 1;
74 arsort($stats);
84 foreach ($stats as $code => $count){
/plugin/calendar/classes/
DEventCache.php211 $stats = [
223 $stats['size'] += $size;
225 if ($stats['oldest'] === null || $mtime < $stats['oldest']) {
226 $stats['oldest'] = $mtime;
228 if ($stats['newest'] === null || $mtime > $stats['newest']) {
229 $stats['newest'] = $mtime;
233 return $stats;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
DGetCustomerUserStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
DGetSearchApplicationSessionStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
DGetSearchApplicationUserStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
DGetCustomerSessionStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
DGetSearchApplicationQueryStatsResponse.php33 public function setStats($stats) argument
35 $this->stats = $stats;
42 return $this->stats;
DGetCustomerQueryStatsResponse.php33 public function setStats($stats) argument
35 $this->stats = $stats;
42 return $this->stats;
DGetCustomerIndexStatsResponse.php47 public function setStats($stats) argument
49 $this->stats = $stats;
56 return $this->stats;
DGetDataSourceIndexStatsResponse.php47 public function setStats($stats) argument
49 $this->stats = $stats;
56 return $this->stats;
DGetCustomerSearchApplicationStatsResponse.php47 public function setStats($stats) argument
49 $this->stats = $stats;
56 return $this->stats;
/plugin/loglog/helper/
Dreport.php46 $stats = $this->getStats($monthLines);
58 array_keys($stats['admin']),
59 $stats['admin']
65 [$stats['auth_success'], $stats['auth_failed'], $stats['users'], $adminPages],
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
DCrap4j.php58 $stats = $document->createElement('stats');
114 $stats->appendChild($document->createElement('name', 'Method Crap Stats'));
115 $stats->appendChild($document->createElement('methodCount', $fullMethodCount));
116 $stats->appendChild($document->createElement('crapMethodCount', $fullCrapMethodCount));
117 $stats->appendChild($document->createElement('crapLoad', round($fullCrapLoad)));
118 $stats->appendChild($document->createElement('totalCrap', $fullCrap));
126 $stats->appendChild($document->createElement('crapMethodPercent', $crapMethodPercent));
128 $root->appendChild($stats);
/plugin/asciidocjs/node_modules/clean-css/lib/
Dclean.js89 stats: { property
154 output.stats = calculateStatsFrom(output.styles, context);
164 var timeSpent = finishedAt - context.stats.startedAt;
166 delete context.stats.startedAt;
167 context.stats.timeSpent = timeSpent;
168 context.stats.efficiency = 1 - styles.length / context.stats.originalSize;
169 context.stats.minifiedSize = styles.length;
171 return context.stats;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
DResultSet.php63 public function setStats(ResultSetStats $stats) argument
65 $this->stats = $stats;
72 return $this->stats;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
DGoogleCloudApigeeV1OptimizedStatsResponse.php84 public function setStats(GoogleCloudApigeeV1OptimizedStatsNode $stats) argument
86 $this->stats = $stats;
93 return $this->stats;

123456