mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

* Remove legacy Ray code. * Fix cmake and simplify monitor. * Fix linting * Updates * Fix * Implement some methods. * Remove more plasma manager references. * Fix * Linting * Fix * Fix * Make sure class IDs are strings. * Some path fixes * Fix * Path fixes and update arrow * Fixes. * linting * Fixes * Java fixes * Some java fixes * TaskLanguage -> Language * Minor * Fix python test and remove unused method signature. * Fix java tests * Fix jenkins tests * Remove commented out code.
14 lines
705 B
XML
14 lines
705 B
XML
<!DOCTYPE suppressions PUBLIC
|
|
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
|
|
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
|
|
|
|
<suppressions>
|
|
<suppress checks="OperatorWrap" files=".*" />
|
|
<suppress checks="MemberNameCheck" files="PathConfig.java"/>
|
|
<suppress checks="MemberNameCheck" files="RayParameters.java"/>
|
|
<suppress checks="AbbreviationAsWordInNameCheck" files="RayParameters.java"/>
|
|
<suppress checks=".*" files="RayCall.java"/>
|
|
<!-- suppress check for flatbuffer-generated files. -->
|
|
<!-- TODO(raulchen): move these files to a directory, so this rule can be simplier. -->
|
|
<suppress checks=".*" files="(Arg|ResourcePair|Language|TaskInfo|ClientTableData).java" />
|
|
</suppressions>
|