ray/.gitignore
Melih Elibol d8850eac4b Suppress object transfer requests when object is already being received. (#1430)
* added deterministic check for objects received in fetch_timeout_handler.

* use receive time, in case something goes wrong after object is received.

* increase timeout for removal.

* indentation fix.

* make log info log debug. clean up debug log.

* undo unecessary changes.

* changed description var.

* shorten line 949.

* incorporate feedback.

* linting; make is_object_received function consts.

* change semantics of received_objects to objects being received.
added checks to both points at which objects are re-requested.
updated object receive initialization accordingly.

* eliminate erase on receive init. check call to request_transfer_from instead of request_transfer.

* updated comments.

* added todo for multiple object transfers.

* linting.
2018-02-01 22:45:31 -08:00

139 lines
1.9 KiB
Text

# The build output should clearly not be checked in
/python/ray/core
/python/ray/pyarrow_files/pyarrow/
/python/build
/python/dist
/python/flatbuffers-1.7.1/
/src/common/thirdparty/redis
/src/thirdparty/arrow
/flatbuffers-1.7.1/
/src/thirdparty/boost/
/src/thirdparty/boost_1_65_1/
/src/thirdparty/boost_1_60_0/
/src/thirdparty/catapult/
/src/thirdparty/flatbuffers/
# Files generated by flatc should be ignored
/src/common/format/*.py
/src/common/format/*_generated.h
/src/plasma/format/*_generated.h
/src/local_scheduler/format/*_generated.h
/src/ray/gcs/format/*_generated.h
# Redis temporary files
*dump.rdb
# Python byte code files
*.pyc
# Backup files
*.bak
# Emacs temporary files
*~
*#
# Compiled Object files
*.slo
*.lo
*.o
*.xo
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Cython-generated files
*.c
# Incremental linking files
*.ilk
# Library export files
*.exp
# Debug symbols
*.pdb
# Fortran module files
*.mod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
# Visual Studio files
/packages
*.suo
*.user
*.VC.db
*.VC.opendb
# Protobuf-generated files
*_pb2.py
*.pb.h
*.pb.cc
# Ray cluster configuration
scripts/nodes.txt
# OS X folder attributes
.DS_Store
# Debug files
*.dSYM/
*.su
# CMake
cmake-build-debug/
build
# Python setup files
*.egg-info
# Compressed files
*.gz
# Datasets from examples
**/MNIST_data/
**/cifar-10-batches-bin/
# Generated documentation files
/doc/_build
# User-specific stuff:
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries
# Sensitive or high-churn files:
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
# Gradle:
.idea/**/gradle.xml
.idea/**/libraries
.idea
# Website
/site/Gemfile.lock
/site/.sass-cache
/site/_site