Adjust some timings
This commit is contained in:
Родитель
2928feefc8
Коммит
8c49ba0c61
|
@ -1601,10 +1601,10 @@ function initialize() {
|
|||
total = 0;
|
||||
count = 0;
|
||||
window.setTimeout(function() {
|
||||
location.href = "/submit?results="+encodeURIComponent(JSON.stringify({
|
||||
"__total__": total/count,
|
||||
"aquarium": total/count
|
||||
}))
|
||||
location.href = "/submit?results="+encodeURIComponent(JSON.stringify([
|
||||
{"name": "__total__", "time": total/count*1000},
|
||||
{"name": "aquarium", "time": total/count*1000}
|
||||
]))
|
||||
}, 10000);
|
||||
|
||||
}, 5000);
|
||||
|
|
|
@ -120,7 +120,7 @@ function warmup()
|
|||
|
||||
function start()
|
||||
{
|
||||
window.setTimeout(next, 1000);
|
||||
window.setTimeout(next, 10000);
|
||||
}
|
||||
|
||||
function next()
|
||||
|
|
|
@ -50,6 +50,6 @@ window.onload = function() {
|
|||
BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
|
||||
NotifyError: PrintError,
|
||||
NotifyScore: PrintScore });
|
||||
}, 1000);
|
||||
}, 10000);
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
while :
|
||||
do
|
||||
python dostuff.py
|
||||
sleep 800
|
||||
sleep 60
|
||||
done
|
||||
|
|
|
@ -121,7 +121,7 @@ function warmup()
|
|||
|
||||
function start()
|
||||
{
|
||||
window.setTimeout(next, 1000);
|
||||
window.setTimeout(next, 10000);
|
||||
}
|
||||
|
||||
function next()
|
||||
|
|
Загрузка…
Ссылка в новой задаче