Skip to content

Commit ecf1664

Browse files
authored
upgrade style (#50)
1 parent b1bb5df commit ecf1664

File tree

5 files changed

+41
-0
lines changed

5 files changed

+41
-0
lines changed

_doc/sg_execution_times.rst

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
:orphan:
3+
4+
.. _sphx_glr_sg_execution_times:
5+
6+
7+
Computation times
8+
=================
9+
**00:00.000** total execution time for 1 file **from all galleries**:
10+
11+
.. container::
12+
13+
.. raw:: html
14+
15+
<style scoped>
16+
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet" />
17+
<link href="https://cdn.datatables.net/1.13.6/css/dataTables.bootstrap5.min.css" rel="stylesheet" />
18+
</style>
19+
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
20+
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
21+
<script src="https://cdn.datatables.net/1.13.6/js/dataTables.bootstrap5.min.js"></script>
22+
<script type="text/javascript" class="init">
23+
$(document).ready( function () {
24+
$('table.sg-datatable').DataTable({order: [[1, 'desc']]});
25+
} );
26+
</script>
27+
28+
.. list-table::
29+
:header-rows: 1
30+
:class: table table-striped sg-datatable
31+
32+
* - Example
33+
- Time
34+
- Mem (MB)
35+
* - :ref:`sphx_glr_auto_examples_plot_logistic_decision.py` (``examples/plot_logistic_decision.py``)
36+
- 00:00.000
37+
- 0.0

_unittests/ut_graph/test_graph_distance.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
@brief test log(time=2s)
33
44
"""
5+
56
import os
67
import unittest
78
import copy

_unittests/ut_graph/test_graphviz.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
@brief test log(time=2s)
33
44
"""
5+
56
import os
67
import unittest
78
from pyquickhelper.pycode import get_temp_folder

_unittests/ut_ml/test_logreg.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
@brief test log(time=2s)
33
@author Xavier Dupre
44
"""
5+
56
import unittest
67
from pyquickhelper.pycode import ExtTestCase
78
from mlstatpy.ml.logreg import criteria, criteria2, random_set_1d, plot_ds

_unittests/ut_optim/test_optim.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
@brief test log(time=6s)
33
"""
4+
45
import io
56
from contextlib import redirect_stdout
67
import unittest

0 commit comments

Comments
 (0)