This commit is contained in:
Hannes Verschore 2014-06-04 03:05:18 -07:00
Родитель 2928feefc8
Коммит 8c49ba0c61
5 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -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()