ray/.gitignore
Edward Oakes 08e4e3a153
[core worker] Submit Python actor tasks through core worker (#5750)
* Submit actor tasks through core worker

* Fix java

* add comment

* Remove task builder

* Check negative

* Increase -> Increment

* pass by reference

* fix signal

* Clean up c++ actor handle

* more cleanup

* Clean up headers

* Fix unique_ptr construction

* Fix java

* Move profiling to c++

* dedup

* fix error

* comments

* fix java

* Fix tests

* wait for actor to exit

* Start after constructor

* ignore java build

* fix comment

* always init logging

* Fix logging

* fix logging issue

* shared_ptr for profiler

* DEBUG -> WARNING

* fix killed_ init

* Fix flaky checkpointing tests

* -v flag for tune tests

* Fix checkpoint test logic

* Fix exception matching

* timeout exception

* Fix test exception info

* Fix import

* fix build

* Fix test

* shared_ptr
2019-10-07 15:42:19 -07:00

153 lines
1.9 KiB
Text

# The build output should clearly not be checked in
/bazel-*
/python/ray/core
/python/ray/pyarrow_files/
/python/build
/python/dist
/thirdparty/pkg/
/build/java
# Files generated by flatc should be ignored
/src/ray/gcs/format/*_generated.h
/src/ray/object_manager/format/*_generated.h
/src/ray/raylet/format/*_generated.h
/java/runtime/src/main/java/org/ray/runtime/generated/*
# Redis temporary files
*dump.rdb
# Python byte code files
*.pyc
python/.eggs
# Backup files
*.bak
# Emacs temporary files
*~
*#
# Compiled Object files
*.slo
*.lo
*.o
*.xo
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# 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
# 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
# Pytest Cache
**/.pytest_cache
.benchmarks
# Vscode
.vscode/
*.iml
# Java
java/**/target
java/**/lib
java/**/.settings
java/**/.classpath
java/**/.project
java/runtime/native_dependencies/
# python virtual env
venv
# Vim
.*.swp
*.swp
# tools
tools/prometheus*