ray/python/ray
mehrdadn b14728d999
Shellcheck quoting (#9596)
* Fix SC2006: Use $(...) notation instead of legacy backticked `...`.

* Fix SC2016: Expressions don't expand in single quotes, use double quotes for that.

* Fix SC2046: Quote this to prevent word splitting.

* Fix SC2053: Quote the right-hand side of == in [[ ]] to prevent glob matching.

* Fix SC2068: Double quote array expansions to avoid re-splitting elements.

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

* Fix SC2102: Ranges can only match single chars (mentioned due to duplicates).

* Fix SC2140: Word is of the form "A"B"C" (B indicated). Did you mean "ABC" or "A\"B\"C"?

* Fix SC2145: Argument mixes string and array. Use * or separate argument.

* Fix SC2209: warning: Use var=$(command) to assign output (or quote to assign string).

Co-authored-by: Mehrdad <noreply@github.com>
2020-07-21 21:56:41 -05:00
..
autoscaler Shellcheck quoting (#9596) 2020-07-21 21:56:41 -05:00
cloudpickle Update cloudpickle to version 1.4.1 (#8577) 2020-05-29 17:55:48 -07:00
core Define common data structures with protobuf. (#5121) 2019-07-08 22:41:37 +08:00
dashboard Dashboard next-version API support in backend (#9345) 2020-07-20 12:54:11 -05:00
dataframe Dataframe deprecation (#2353) 2018-07-06 00:16:22 -07:00
experimental [Metric] new cython interface for python worker metric (#9469) 2020-07-19 10:43:21 +08:00
includes fix tag key typo (#9606) 2020-07-21 19:50:54 +08:00
internal [core] Replace task resubmission in raylet with ownership protocol (#9394) 2020-07-15 14:55:51 -07:00
projects [autoscaler] Allow users to disable the cluster config cache (#8117) 2020-07-09 15:47:58 -07:00
pyarrow_files Package pyarrow along with ray. (#822) 2017-08-07 21:17:28 -07:00
scripts [cli] ray memory: added redis_password (#9492) 2020-07-18 00:08:41 -07:00
serve [Serve] Document Metric Infrastructure (#9389) 2020-07-21 14:52:18 -07:00
tests [GCS] fix the fault tolerance about gcs node manager (#9380) 2020-07-22 10:55:51 +08:00
tune [tune] fix pbt checkpoint_freq (#9517) 2020-07-18 00:58:16 -07:00
util Support ray task type checking (#9574) 2020-07-21 19:05:42 -07:00
workers Fetch internal config from raylet (#8195) 2020-04-28 13:12:11 -05:00
__init__.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
_raylet.pxd Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
_raylet.pyi Support ray task type checking (#9574) 2020-07-21 19:05:42 -07:00
_raylet.pyx [Metric] new cython interface for python worker metric (#9469) 2020-07-19 10:43:21 +08:00
actor.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
async_compat.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
cluster_utils.py [Test] Cluster util fix (#8929) 2020-06-29 14:15:41 -05:00
compat.py Fix WSL patch (it doesn't fall under "win32") (#9195) 2020-06-29 21:00:00 -05:00
cross_language.py Option to retry failed actor tasks (#8330) 2020-05-15 20:15:15 -07:00
exceptions.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
function_manager.py Use UTF-8 for encoding of python code for collision hashing (#9586) 2020-07-21 13:16:54 -07:00
gcs_utils.py GCS server use worker table to handle RegisterWorker instead of redis accessor (#9168) 2020-07-06 10:37:25 +08:00
import_thread.py Remove instances of 'raise Exception' (#7523) 2020-03-10 17:51:22 -07:00
log_monitor.py [Core] Log monitor multidriver (#8953) 2020-06-25 11:05:53 -07:00
memory_monitor.py Change os.uname()[1] and socket.gethostname() to the portable and faster platform.node_ip() (#8839) 2020-06-08 21:29:46 -07:00
monitor.py [Core] Use map instead of list to represent resources in heartbeat message (#9294) 2020-07-05 10:59:25 +08:00
node.py Ensure unique log file names across same-node raylets. (#9561) 2020-07-20 16:03:11 -05:00
parameter.py [core] Add flag to enable object reconstruction during ray start (#9488) 2020-07-17 10:13:14 -07:00
profiling.py Remove future imports (#6724) 2020-01-09 00:15:48 -08:00
py.typed Support ray task type checking (#9574) 2020-07-21 19:05:42 -07:00
ray_cluster_perf.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
ray_constants.py Remove raylet monitor after use GCS service (#9179) 2020-07-01 20:01:52 +08:00
ray_perf.py Add plasma store benchmark for small objects (#9549) 2020-07-17 14:20:59 -07:00
ray_process_reaper.py Windows bug fixes (#7740) 2020-03-30 20:39:23 -05:00
remote_function.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
reporter.py Fix broken test_raylet_info_endpoint (#9511) 2020-07-16 11:51:06 -05:00
resource_spec.py [windows] Improve GPU detection (#9300) 2020-07-04 13:20:23 -07:00
rllib [rllib] Try moving RLlib to top level dir (#5324) 2019-08-05 23:25:49 -07:00
serialization.py Fix ObjectRef and ActorHandle serialization (#9462) 2020-07-14 09:42:32 -07:00
services.py [Core] Support GCS server port assignment. (#8962) 2020-07-14 11:49:56 -05:00
setup-dev.py Win10 setup-dev.py fixes. (#9169) 2020-06-27 21:28:11 +02:00
signature.py Remove dependence on funcsigs. (#7701) 2020-03-22 21:37:24 -07:00
state.py Fix test-multi-node (#9453) 2020-07-13 20:44:27 -05:00
streaming [Streaming] Streaming data transfer and python integration (#6185) 2019-12-10 20:33:24 +08:00
test_utils.py Make more tests compatible with Windows (#9303) 2020-07-15 11:34:33 -05:00
utils.py Change Python's ObjectID to ObjectRef (#9353) 2020-07-10 17:49:04 +08:00
worker.py [core] Add flag to enable object reconstruction during ray start (#9488) 2020-07-17 10:13:14 -07:00
worker.pyi Support ray task type checking (#9574) 2020-07-21 19:05:42 -07:00