Home
last modified time | relevance | path

Searched refs:total_records (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/dports/www/phpgroupware/phpgroupware-0.9.16.017/admin/inc/
H A Dclass.uiaccess_history.inc.php52 $total_records = $this->bo->total($account_id);
56 …'nextmatchs_left' => $this->nextmatchs->left('/index.php',$start,$total_records,'&menuaction=admi…
57 …'nextmatchs_right' => $this->nextmatchs->right('/index.php',$start,$total_records,'&menuaction=adm…
58 'showing' => $this->nextmatchs->show_hits($total_records,$start),
74 …$var['lang_last_x_logins'] = lang('Last %1 logins for %2',$total_records,$GLOBALS['phpgw']->common…
78 $var['lang_last_x_logins'] = lang('Last %1 logins',$total_records);
99 if (! $total_records && $account_id)
108 if ($total_records)
110 $percent = round(($loggedout / $total_records) * 100);
119 'footer_total' => lang('Total records') . ': ' . $total_records
H A Dclass.uilog.inc.php64 $total_records = $this->bo->total($account_id);
68 …'nextmatchs_left' => $this->nextmatchs->left('/index.php',$start,$total_records,'&menuaction=admi…
69 …'nextmatchs_right' => $this->nextmatchs->right('/index.php',$start,$total_records,'&menuaction=adm…
70 'showing' => $this->nextmatchs->show_hits($total_records,$start),
101 if (! $total_records && $account_id)
108 if ( $total_records )
139 …ang('for') . ' ' . $GLOBALS['phpgw']->common->grab_owner_name($account_id) . ': ' . $total_records
146 'footer_total' => lang('Total records') . ': ' . $total_records
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/flight/
H A Dflight_benchmark.cc64 PerformanceStats() : total_records(0), total_bytes(0) {} in PerformanceStats()
66 int64_t total_records; member
69 void Update(const int64_t total_records, const int64_t total_bytes) { in Update()
71 this->total_records += total_records; in Update()
159 const int total_records = token.definition().records_per_stream(); in RunDoPutTest() local
160 while (records_sent < total_records) { in RunDoPutTest()
161 if (records_sent + length > total_records) { in RunDoPutTest()
162 const int last_length = total_records - records_sent; in RunDoPutTest()
250 if (stats.total_records != static_cast<int64_t>(plan->total_records())) { in RunPerformanceTest()
/dports/www/phpgroupware/phpgroupware-0.9.16.017/dj/
H A Ddirectories.php68 $total_records = $db2->num_rows(); variable
79 $left = $GLOBALS['phpgw']->nextmatchs->left('/dj/directories.php',$start,$total_records);
80 $right = $GLOBALS['phpgw']->nextmatchs->right('/dj/directories.php',$start,$total_records);
84 if ($total_records > $limit)
86 …et_var('lang_showing',lang("showing %1 - %2 of %3",($start + 1),($start + $limit),$total_records));
90 $GLOBALS['phpgw']->template->set_var('lang_showing',lang("showing %1",$total_records));
/dports/www/phpgroupware/phpgroupware-0.9.16.017/comic/inc/
H A Dcomic_data.inc.php104 $total_records = $GLOBALS['phpgw']->db->f(0);
106 if ($total_records > $GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'])
108 … if($start + $GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'] > $total_records)
110 $max_turn = $total_records;
116 $match_comment = lang('showing %1 - %2 of %3',($start + 1),$max_turn,$total_records);
120 $match_comment = lang('showing %1',$total_records);
195 …BALS['phpgw']->nextmatchs->show_tpl('/comic/admin_comics.php',$start,$total_records, '','85%', $GL…
/dports/www/phpgroupware/phpgroupware-0.9.16.017/chora/
H A Dsites.php72 $total_records = $db2->num_rows(); variable
88 $left = $phpgw->nextmatchs->left('/chora/sites.php',$start,$total_records);
89 $right = $phpgw->nextmatchs->right('/chora/sites.php',$start,$total_records);
93 if ($total_records > $limit)
95 …et_var('lang_showing',lang("showing %1 - %2 of %3",($start + 1),($start + $limit),$total_records));
99 $t->set_var('lang_showing',lang("showing %1",$total_records));
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/flight/
H A Dflight_benchmark.cc85 int64_t total_records = 0; member
90 void Update(int64_t total_batches, int64_t total_records, int64_t total_bytes) { in Update()
93 this->total_records += total_records; in Update()
206 const int64_t total_records = token.definition().records_per_stream(); in RunDoPutTest() local
208 while (records_sent < total_records) { in RunDoPutTest()
209 if (records_sent + length > total_records) { in RunDoPutTest()
210 const int last_length = total_records - records_sent; in RunDoPutTest()
252 int64_t start_total_records = stats->total_records; in DoSinglePerfRun()
289 int64_t records_for_run = stats->total_records - start_total_records; in DoSinglePerfRun()
290 if (records_for_run != static_cast<int64_t>(plan->total_records())) { in DoSinglePerfRun()
/dports/www/phpgroupware/phpgroupware-0.9.16.017/felamimail/
H A Daddressbook.php83 …('/'.$phpgw_info['flags']['currentapp'].'/addressbook.php',$start,$d->total_records,"&order=$order…
84 …('/'.$phpgw_info['flags']['currentapp'].'/addressbook.php',$start,$d->total_records,"&order=$order…
88 if ($d->total_records > $phpgw_info["user"]["preferences"]["common"]["maxmatchs"])
90 …tart + 1),($start + $phpgw_info["user"]["preferences"]["common"]["maxmatchs"]),$d->total_records));
94 $t->set_var('lang_showing',lang("showing %1",$d->total_records));
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/flight/
H A Dflight_benchmark.cc86 int64_t total_records = 0; member
91 void Update(int64_t total_batches, int64_t total_records, int64_t total_bytes) { in Update()
94 this->total_records += total_records; in Update()
201 const int64_t total_records = token.definition().records_per_stream(); in GetPutData() local
215 while (records_sent < total_records) { in GetPutData()
216 if (records_sent + length > total_records) { in GetPutData()
217 const int last_length = total_records - records_sent; in GetPutData()
285 int64_t start_total_records = stats->total_records; in DoSinglePerfRun()
324 int64_t records_for_run = stats->total_records - start_total_records; in DoSinglePerfRun()
325 if (records_for_run != static_cast<int64_t>(plan->total_records())) { in DoSinglePerfRun()
/dports/www/punbb/punbb-1.4.6/admin/
H A Dindex.php111 $total_records = $total_size = 0; variable
114 $total_records += $status['Rows'];
227 <?php if (isset($total_records) && isset($total_size)): ?>
228 …hp echo $lang_admin_index['Rows'] ?>: <?php echo forum_number_format($total_records) ?></span></li>
/dports/www/phpgroupware/phpgroupware-0.9.16.017/eldaptir/
H A Dservers.php73 $total_records = $db2->num_rows(); variable
87 $left = $GLOBALS['phpgw']->nextmatchs->left('/eldaptir/servers.php',$start,$total_records);
88 $right = $GLOBALS['phpgw']->nextmatchs->right('/eldaptir/servers.php',$start,$total_records);
91 $hits = $GLOBALS['phpgw']->nextmatchs->show_hits($total_records,$start);
/dports/dns/mydns/mydns-1.1.0/src/mydns/
H A Daxfr.c29 static size_t total_records, total_octets; variable
133 total_records++; in axfr_reply()
340 total_records = total_octets = 0; in axfr()
357 total_records, total_octets, in axfr()
361 t->an.size = total_records; in axfr()
/dports/deskutils/egroupware/egroupware/news_admin/inc/
H A Dclass.uiexport.inc.php85 …$left = $this->nextmatchs->left('/index.php',$this->start,$this->bo->catbo->total_records,'menuac…
86 …$right = $this->nextmatchs->right('/index.php',$this->start,$this->bo->catbo->total_records,'menua…
92 'lang_showing' => $this->nextmatchs->show_hits($this->bo->catbo->total_records,$this->start),
/dports/www/phpgroupware/phpgroupware-0.9.16.017/news_admin/inc/
H A Dclass.uiacl.inc.php76 …$left = $this->nextmatchs->left('/index.php',$this->start,$this->bo->catbo->total_records,'menuac…
77 …$right = $this->nextmatchs->right('/index.php',$this->start,$this->bo->catbo->total_records,'menua…
82 'lang_showing' => $this->nextmatchs->show_hits($this->bo->catbo->total_records,$this->start),
H A Dclass.uiexport.inc.php85 …$left = $this->nextmatchs->left('/index.php',$this->start,$this->bo->catbo->total_records,'menuac…
86 …$right = $this->nextmatchs->right('/index.php',$this->start,$this->bo->catbo->total_records,'menua…
92 'lang_showing' => $this->nextmatchs->show_hits($this->bo->catbo->total_records,$this->start),
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/rocksdb/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc69 uint64_t total_records = 0; in Run() local
76 compression, &offset, &total_records, &total_key_size, in Run()
85 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
178 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
237 *total_records += 1; in DumpRecord()
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/rocksdb/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc69 uint64_t total_records = 0; in Run() local
76 compression, &offset, &total_records, &total_key_size, in Run()
85 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
178 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
237 *total_records += 1; in DumpRecord()
/dports/databases/rocksdb/rocksdb-6.26.1/utilities/blob_db/
H A Dblob_dump_tool.cc69 uint64_t total_records = 0; in Run() local
76 compression, &offset, &total_records, &total_key_size, in Run()
85 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
178 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
237 *total_records += 1; in DumpRecord()
/dports/databases/rocksdb-lite/rocksdb-6.26.1/utilities/blob_db/
H A Dblob_dump_tool.cc69 uint64_t total_records = 0; in Run() local
76 compression, &offset, &total_records, &total_key_size, in Run()
85 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
178 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
237 *total_records += 1; in DumpRecord()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/rocksdb/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc69 uint64_t total_records = 0; in Run() local
76 compression, &offset, &total_records, &total_key_size, in Run()
85 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
178 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
237 *total_records += 1; in DumpRecord()
/dports/textproc/sonic/sonic-1.3.0/cargo-crates/librocksdb-sys-6.7.4/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc67 uint64_t total_records = 0; in Run() local
74 compression, &offset, &total_records, &total_key_size, in Run()
83 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
175 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
235 *total_records += 1; in DumpRecord()
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/rocksdb/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc67 uint64_t total_records = 0; in Run() local
74 compression, &offset, &total_records, &total_key_size, in Run()
83 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
175 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
235 *total_records += 1; in DumpRecord()
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/rocksdb/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc67 uint64_t total_records = 0; in Run() local
74 compression, &offset, &total_records, &total_key_size, in Run()
83 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
175 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
235 *total_records += 1; in DumpRecord()
/dports/databases/mariadb103-client/mariadb-10.3.34/storage/rocksdb/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc67 uint64_t total_records = 0;
74 compression, &offset, &total_records, &total_key_size,
83 fprintf(stdout, " total records: %" PRIu64 "\n", total_records);
175 uint64_t* offset, uint64_t* total_records,
235 *total_records += 1;
/dports/databases/mariadb103-server/mariadb-10.3.34/storage/rocksdb/rocksdb/utilities/blob_db/
H A Dblob_dump_tool.cc67 uint64_t total_records = 0; in Run() local
74 compression, &offset, &total_records, &total_key_size, in Run()
83 fprintf(stdout, " total records: %" PRIu64 "\n", total_records); in Run()
175 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
235 *total_records += 1; in DumpRecord()

12345678910>>...12