Modified: mesos/site/source/documentation/latest/configuration.md URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/configuration.md?rev=1668519&r1=1668518&r2=1668519&view=diff ============================================================================== --- mesos/site/source/documentation/latest/configuration.md (original) +++ mesos/site/source/documentation/latest/configuration.md Mon Mar 23 06:35:29 2015 @@ -444,6 +444,30 @@ file:///path/to/file (where file contain </tr> <tr> <td> + --slave_removal_rate_limit=VALUE + </td> + <td> + The maximum rate (e.g., 1/10mins, 2/3hrs, etc) at which slaves will + be removed from the master when they fail health checks. By default + slaves will be removed as soon as they fail the health checks. + <p/> + The value is of the form 'Number of slaves'/'Duration' + </td> + </tr> + <tr> + <td> + --slave_removal_rate_limit=VALUE + </td> + <td> + The maximum rate (e.g., 1/10mins, 2/3hrs, etc) at which slaves will + be removed from the master when they fail health checks. By default + slaves will be removed as soon as they fail the health checks. + <p/> + The value is of the form 'Number of slaves'/'Duration' + </td> + </tr> + <tr> + <td> --registry=VALUE </td> <td>
Modified: mesos/site/source/documentation/latest/mesos-c++-style-guide.md URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-c%2B%2B-style-guide.md?rev=1668519&r1=1668518&r2=1668519&view=diff ============================================================================== --- mesos/site/source/documentation/latest/mesos-c++-style-guide.md (original) +++ mesos/site/source/documentation/latest/mesos-c++-style-guide.md Mon Mar 23 06:35:29 2015 @@ -12,7 +12,7 @@ The Mesos codebase follows the [Google C * We use [lowerCamelCase](http://en.wikipedia.org/wiki/CamelCase#Variations_and_synonyms) for variable names (Google uses snake_case, and their class member variables have trailing underscores). ### Constant Names -* We use [lowerCamelCase](http://en.wikipedia.org/wiki/CamelCase#Variations_and_synonyms) for constant names (Google uses a `k` followed by mixed case, e.g. `kDaysInAWeek`). +* We use [SCREAMING_SNAKE_CASE](http://en.wikipedia.org/wiki/Letter_case#Special_case_styles) for constant names (Google uses a `k` followed by mixed case, e.g. `kDaysInAWeek`). ### Function Names * We use [lowerCamelCase](http://en.wikipedia.org/wiki/CamelCase#Variations_and_synonyms) for function names (Google uses mixed case for regular functions; and their accessors and mutators match the name of the variable). Modified: mesos/site/source/documentation/latest/mesos-developers-guide.md URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-developers-guide.md?rev=1668519&r1=1668518&r2=1668519&view=diff ============================================================================== --- mesos/site/source/documentation/latest/mesos-developers-guide.md (original) +++ mesos/site/source/documentation/latest/mesos-developers-guide.md Mon Mar 23 06:35:29 2015 @@ -53,7 +53,7 @@ layout: documentation 1. You're ready to submit your patch for review! 1. Log in or create an account at [Apache Review Board](http://reviews.apache.org) 2. The easiest (and recommended) way to submit reviews is through `post-reviews.py` a wrapper around post-review. - 3. First, install post-review. [See Instructions](http://www.reviewboard.org/docs/manual/dev/users/tools/post-review/) + 3. First, install RBTools. [See Instructions](https://www.reviewboard.org/docs/rbtools/dev/) 4. Configure post-review. The easiest method is to symlink to the sample config: ln -s support/reviewboardrc .reviewboardrc 5. Log into Review Board from the command line: run `rbt status` 6. From your local branch run `support/post-reviews.py`.
