Home
last modified time | relevance | path

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

12345

/plugin/icalevents/vendor/sabre/vobject/bin/
H A Dmergeduplicates.php55 $stats = [ variable
67 global $stats;
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']++;
159 $stats['Error']++;
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A 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 abou
[all...]
/plugin/combo/syntax/
H A Dlink.php611 * @param array $stats
614 $stats = &$renderer->stats;
622 if (!array_key_exists(renderer_plugin_combo_analytics::INTERNAL_LINK_COUNT, $stats)) {
623 $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_COUNT] = 0;
625 $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_COUNT]++;
635 $internalLinkBroken = $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_BROKEN_COUNT] ?? 0;
636 $stats[renderer_plugin_combo_analytics::INTERNAL_LINK_BROKEN_COUNT] = $internalLinkBroken + 1;
637 $stats[renderer_plugin_combo_analytics::INFO][] = "The internal linked page `{$linkedPage}` does not exist";
655 $stats[renderer_plugin_combo_analytic
[all...]
H A Dmedia.php139 $actualMediaCount = $renderer->stats[renderer_plugin_combo_analytics::MEDIA_COUNT] ?? 0;
140 $renderer->stats[renderer_plugin_combo_analytics::MEDIA_COUNT] = $actualMediaCount + 1;
149 $actualInternalMediaCount = $renderer->stats[renderer_plugin_combo_analytics::INTERNAL_MEDIA_COUNT] ?? 0;
150 $renderer->stats[renderer_plugin_combo_analytics::INTERNAL_MEDIA_COUNT] = $actualInternalMediaCount + 1;
158 $brokenMediaCount = $renderer->stats[renderer_plugin_combo_analytics::INTERNAL_BROKEN_MEDIA_COUNT] ?? 0;
159 $renderer->stats[renderer_plugin_combo_analytics::INTERNAL_BROKEN_MEDIA_COUNT] = $brokenMediaCount + 1;
163 $mediaCount = $renderer->stats[renderer_plugin_combo_analytics::EXTERNAL_MEDIA_COUNT] ?? 0;
164 $renderer->stats[renderer_plugin_combo_analytics::EXTERNAL_MEDIA_COUNT] = $mediaCount + 1;
/plugin/combo/renderer/
H A Danalytics.php27 * A analysis Renderer that exports stats/quality/metadata in a json format
147 public $stats = array(); // the stats variable in renderer_plugin_combo_analytics
224 $statExport = $this->stats;
233 * Edit author 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[sel
[all...]
/plugin/zip/pear/File/Archive/Writer/
H A 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/
H A 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/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DGetCustomerUserStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
H A DGetSearchApplicationSessionStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
H A DGetSearchApplicationUserStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
H A DGetCustomerSessionStatsResponse.php29 public function setStats($stats) argument
31 $this->stats = $stats;
38 return $this->stats;
H A DGetCustomerIndexStatsResponse.php47 public function setStats($stats) argument
49 $this->stats = $stats;
56 return $this->stats;
H A DGetDataSourceIndexStatsResponse.php47 public function setStats($stats) argument
49 $this->stats = $stats;
56 return $this->stats;
H A DGetSearchApplicationQueryStatsResponse.php33 public function setStats($stats) argument
35 $this->stats = $stats;
42 return $this->stats;
H A DGetCustomerQueryStatsResponse.php33 public function setStats($stats) argument
35 $this->stats = $stats;
42 return $this->stats;
H A DGetCustomerSearchApplicationStatsResponse.php47 public function setStats($stats) argument
49 $this->stats = $stats;
56 return $this->stats;
/plugin/loglog/helper/
H A 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/
H A 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/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DResultSet.php63 public function setStats(ResultSetStats $stats) argument
65 $this->stats = $stats;
72 return $this->stats;
H A DPartialResultSet.php85 public function setStats(ResultSetStats $stats) argument
87 $this->stats = $stats;
94 return $this->stats;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1OptimizedStatsResponse.php84 public function setStats(GoogleCloudApigeeV1OptimizedStatsNode $stats) argument
86 $this->stats = $stats;
93 return $this->stats;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1AssetDiscoveryStatus.php104 public function setStats(GoogleCloudDataplexV1AssetDiscoveryStatusStats $stats) argument
106 $this->stats = $stats;
113 return $this->stats;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2StoredInfoTypeVersion.php97 public function setStats(GooglePrivacyDlpV2StoredInfoTypeStats $stats) argument
99 $this->stats = $stats;
106 return $this->stats;
/plugin/wikistats/
H A DREADME.md14 …uwiki.org/plugin:numberof "plugin numberof"), [stats](https://www.dokuwiki.org/plugin:stats "plugi…
98 {{wikistats>ns = -wiki & type = stats}}
103 ### Type of stats displayed
105 To display only topic (pages) stats
110 To display only resources stats
147 > namespaces stats
182 * Support namespaces restrictions for tags stats
186 * Add total for resources and namespaces stats
202 * Namespace stats now show medias counts
204 * Plugin now display stats even if Tag plugin is not installed
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vault/
H A DExport.php168 public function setStats(ExportStats $stats) argument
170 $this->stats = $stats;
177 return $this->stats;

12345