ray/doc/examples
mehrdadn 56d2cf6479
Shellcheck rewrites (#9597)
* Fix SC2001: See if you can use ${variable//search/replace} instead.

* Fix SC2010: Don't use ls | grep. Use a glob or a for loop with a condition to allow non-alphanumeric filenames.

* Fix SC2012: Use find instead of ls to better handle non-alphanumeric filenames.

* Fix SC2015: Note that A && B || C is not if-then-else. C may run when A is true.

* Fix SC2028: echo may not expand escape sequences. Use printf.

* Fix SC2034: variable appears unused. Verify use (or export if used externally).

* Fix SC2035: Use ./*glob* or -- *glob* so names with dashes won't become options.

* Fix SC2071: > is for string comparisons. Use -gt instead.

* Fix SC2154: variable is referenced but not assigned

* Fix SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.

* Fix SC2188: This redirection doesn't have a command. Move to its command (or use 'true' as no-op).

* Fix SC2236: Use -n instead of ! -z.

* Fix SC2242: Can only exit with status 0-255. Other data should be written to stdout/stderr.

* Fix SC2086: Double quote to prevent globbing and word splitting.

Co-authored-by: Mehrdad <noreply@github.com>
2020-07-24 17:24:19 -05:00
..
cython Replace all instances of ray.readthedocs.io with ray.io (#7994) 2020-04-13 16:17:05 -07:00
doc_code Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
lbfgs Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
lm Shellcheck rewrites (#9597) 2020-07-24 17:24:19 -05:00
newsreader Replace all instances of ray.readthedocs.io with ray.io (#7994) 2020-04-13 16:17:05 -07:00
streaming [Projects] Refactor cluster specification (#6488) 2019-12-14 22:43:06 -08:00
overview.rst [docs] Render ActorPool documentation, etc (#9433) 2020-07-13 17:59:22 -07:00
plot_example-a3c.rst Replace all instances of ray.readthedocs.io with ray.io (#7994) 2020-04-13 16:17:05 -07:00
plot_example-lm.rst Shellcheck rewrites (#9597) 2020-07-24 17:24:19 -05:00
plot_hyperparameter.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
plot_lbfgs.rst Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
plot_newsreader.rst [docs] Convert Examples to Gallery (#5414) 2019-09-24 15:46:56 -07:00
plot_parameter_server.py [docs] Convert Examples to Gallery (#5414) 2019-09-24 15:46:56 -07:00
plot_pong_example.py [docs] Pictures for all the Examples (#5859) 2019-10-14 14:18:52 -07:00
plot_streaming.rst Replace all instances of ray.readthedocs.io with ray.io (#7994) 2020-04-13 16:17:05 -07:00
README.rst [tune] Improve user guides and API docs (#7716) 2020-04-06 12:16:35 -07:00

:orphan: