/dports/www/firefox/firefox-99.0/taskcluster/gecko_taskgraph/util/ |
H A D | perfile.py | 26 tests_per_chunk = 10.0 28 tests_per_chunk = 30.0 94 chunks = test_count / tests_per_chunk
|
/dports/www/firefox-esr/firefox-91.8.0/taskcluster/taskgraph/util/ |
H A D | perfile.py | 27 tests_per_chunk = 10.0 29 tests_per_chunk = 30.0 95 chunks = test_count / tests_per_chunk
|
/dports/mail/thunderbird/thunderbird-91.8.0/taskcluster/taskgraph/util/ |
H A D | perfile.py | 27 tests_per_chunk = 10.0 29 tests_per_chunk = 30.0 95 chunks = test_count / tests_per_chunk
|
/dports/lang/spidermonkey78/firefox-78.9.0/taskcluster/taskgraph/util/ |
H A D | perfile.py | 27 tests_per_chunk = 10.0 29 tests_per_chunk = 30.0 85 chunks = test_count/tests_per_chunk
|
/dports/lang/spidermonkey60/firefox-60.9.0/testing/mozharness/manifestparser/ |
H A D | filters.py | 177 tests_per_chunk = float(len(chunk_tests)) / self.total_chunks 178 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 179 end = int(round(self.this_chunk * tests_per_chunk)) 240 tests_per_chunk = float(len(ordered_dirs)) / self.total_chunks 241 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 242 end = int(round(self.this_chunk * tests_per_chunk))
|
/dports/lang/spidermonkey60/firefox-60.9.0/testing/mozbase/manifestparser/manifestparser/ |
H A D | filters.py | 180 tests_per_chunk = float(len(chunk_tests)) / self.total_chunks 181 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 182 end = int(round(self.this_chunk * tests_per_chunk)) 243 tests_per_chunk = float(len(ordered_dirs)) / self.total_chunks 244 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 245 end = int(round(self.this_chunk * tests_per_chunk))
|
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/mozbase/manifestparser/manifestparser/ |
H A D | filters.py | 177 tests_per_chunk = float(len(chunk_tests)) / self.total_chunks 178 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 179 end = int(round(self.this_chunk * tests_per_chunk)) 240 tests_per_chunk = float(len(ordered_dirs)) / self.total_chunks 241 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 242 end = int(round(self.this_chunk * tests_per_chunk))
|
/dports/lang/spidermonkey78/firefox-78.9.0/testing/mozbase/manifestparser/manifestparser/ |
H A D | filters.py | 202 tests_per_chunk = float(len(chunk_tests)) / self.total_chunks 203 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 204 end = int(round(self.this_chunk * tests_per_chunk)) 265 tests_per_chunk = float(len(ordered_dirs)) / self.total_chunks 266 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 267 end = int(round(self.this_chunk * tests_per_chunk))
|
/dports/www/firefox-esr/firefox-91.8.0/testing/mozbase/manifestparser/manifestparser/ |
H A D | filters.py | 209 tests_per_chunk = float(len(chunk_tests)) / self.total_chunks 211 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 212 end = int(round(self.this_chunk * tests_per_chunk)) 274 tests_per_chunk = float(len(ordered_dirs)) / self.total_chunks 275 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 276 end = int(round(self.this_chunk * tests_per_chunk))
|
/dports/www/firefox/firefox-99.0/testing/mozbase/manifestparser/manifestparser/ |
H A D | filters.py | 209 tests_per_chunk = float(len(chunk_tests)) / self.total_chunks 211 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 212 end = int(round(self.this_chunk * tests_per_chunk)) 274 tests_per_chunk = float(len(ordered_dirs)) / self.total_chunks 275 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 276 end = int(round(self.this_chunk * tests_per_chunk))
|
/dports/mail/thunderbird/thunderbird-91.8.0/testing/mozbase/manifestparser/manifestparser/ |
H A D | filters.py | 209 tests_per_chunk = float(len(chunk_tests)) / self.total_chunks 211 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 212 end = int(round(self.this_chunk * tests_per_chunk)) 274 tests_per_chunk = float(len(ordered_dirs)) / self.total_chunks 275 start = int(round((self.this_chunk - 1) * tests_per_chunk)) 276 end = int(round(self.this_chunk * tests_per_chunk))
|
/dports/security/tor-devel/tor-0.4.7.2-alpha/src/test/ |
H A D | testing_common.c | 405 unsigned tests_per_chunk = CEIL_DIV(n_tests, den); in main() local 406 unsigned start_at = (num-1) * tests_per_chunk; in main() 412 if (idx < start_at || idx >= start_at + tests_per_chunk) { in main()
|
/dports/security/tor/tor-0.4.6.8/src/test/ |
H A D | testing_common.c | 405 unsigned tests_per_chunk = CEIL_DIV(n_tests, den); in main() local 406 unsigned start_at = (num-1) * tests_per_chunk; in main() 412 if (idx < start_at || idx >= start_at + tests_per_chunk) { in main()
|
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/jit-test/ |
H A D | jit_test.py | 262 tests_per_chunk = math.ceil(total_tests / float(options.total_chunks)) 263 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 264 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/www/firefox-esr/firefox-91.8.0/js/src/jit-test/ |
H A D | jit_test.py | 467 tests_per_chunk = math.ceil(total_tests / float(options.total_chunks)) 468 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 469 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/www/firefox/firefox-99.0/js/src/jit-test/ |
H A D | jit_test.py | 467 tests_per_chunk = math.ceil(total_tests / float(options.total_chunks)) 468 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 469 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/jit-test/ |
H A D | jit_test.py | 467 tests_per_chunk = math.ceil(total_tests / float(options.total_chunks)) 468 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 469 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jit-test/ |
H A D | jit_test.py | 290 tests_per_chunk = math.ceil(total_tests / float(options.total_chunks)) 291 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 292 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jit-test/ |
H A D | jit_test.py | 299 tests_per_chunk = math.ceil(total_tests / float(options.total_chunks)) 300 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 301 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/lang/fpc-source/fpc-3.2.2/tests/utils/ |
H A D | gparmake.pp | 11 …writeln('Usage: gparmake [-a] <outputfile> <dirname> <startchunk> <tests_per_chunk> <test1> [<test… 12 …writeln('Output: makefile fragment with rules to run the tests in sequences of <tests_per_chunk>');
|
/dports/www/firefox-esr/firefox-91.8.0/js/src/tests/ |
H A D | jstests.py | 794 tests_per_chunk = math.ceil(test_count / float(options.total_chunks)) 795 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 796 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/www/firefox/firefox-99.0/js/src/tests/ |
H A D | jstests.py | 794 tests_per_chunk = math.ceil(test_count / float(options.total_chunks)) 795 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 796 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/tests/ |
H A D | jstests.py | 794 tests_per_chunk = math.ceil(test_count / float(options.total_chunks)) 795 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 796 end = int(round(options.this_chunk * tests_per_chunk))
|
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/tests/ |
H A D | jstests.py | 596 tests_per_chunk = math.ceil(test_count / float(options.total_chunks)) 597 start = int(round((options.this_chunk - 1) * tests_per_chunk)) 598 end = int(round(options.this_chunk * tests_per_chunk))
|