An error occurred fetching the project authors.
- 30 Apr, 2020 1 commit
-
-
Rafael Monnerat authored
This would allow the webrunner invoke it to bootstrap the instance rather them create the folders manually.
-
- 09 Mar, 2020 1 commit
-
-
Bryton Lacquement authored
"max" and "int" became directly accessible in slapos.recipe.template.
-
- 05 Mar, 2018 2 commits
-
-
Rafael Monnerat authored
This change unexpectedly break tests which uses supervisord running supervisord. @gabriel is confirming. /reviewed-on nexedi/slapos!299
-
Ivan Tyagov authored
This is needed for example for wendelin.core arrays + connections See nexedi/slapos.core@b5a1e352 /reviewed-on nexedi/slapos!297
-
- 27 Oct, 2015 4 commits
-
-
Kirill Smelkov authored
Most Ruby projects are built via Bundler[1], e.g. the upcoming GitLab, and Bundler supports building/fetching dependency gems in parallel: http://bundler.io/v1.10/bundle_install.html#jobs via using `--jobs <n>` command line option. All bundler options can be also passed in via environment variable, and this way we can use BUNDLE_JOBS=<n> for default `--jobs <n>`. Let's use it, and this way speedup Ruby-related builds (like we already do for Make- and NumPy- based software). [1] http://bundler.io/ /cc @jerome, @cedric.leninivin, @kazuhiko
-
Kirill Smelkov authored
Starting from NumPy 1.10 numpy's distutils support parallel building http://docs.scipy.org/doc/numpy/user/install.html#basic-installation https://github.com/numpy/numpy/commit/23d54617 and this way software which uses numpy's distutils (scipy, scikit-learn, etc) should support it too. Let's use it, like we currently already use MAKEFLAGS for speeding up make-based projects. /cc @jerome, @cedric.leninivin, @kazuhiko
-
Kirill Smelkov authored
Currently we use '%d' and string formatting on max(1, ncpu / cpu-usage-ratio), because `ncpu / cpu-usage-ratio` is float: In [1]: from __future__ import division In [2]: 8 / 4 Out[2]: 2.0 and jinja2 uses future division by default: {{ 8 / 4 }} -> 2.0 We can however make things more explicit, by explicitly using integer division (// operator) and this way avoid the need for '%d' and string formatting. /cc @jerome, @cedric.leninivin
-
Kirill Smelkov authored
The calculation is full line long, and we are going to reuse this number in a couple of new places, so this way it makes sense to first compute jobs number separately, and then reuse the variable. /cc @jerome, @cedric.leninivin
-
- 20 Jul, 2015 1 commit
-
-
Jérome Perrin authored
-
- 24 Sep, 2014 1 commit
-
-
Cédric Le Ninivin authored
-
- 27 Aug, 2014 1 commit
-
-
Nicolas Wavrant authored
-
- 26 Aug, 2014 1 commit
-
-
Nicolas Wavrant authored
-
- 22 Aug, 2014 3 commits
-
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
- 21 Aug, 2014 1 commit
-
-
Nicolas Wavrant authored
Supervisord will replace Popen instructions
-