Author: dlester
Date: Mon Mar 23 06:35:29 2015
New Revision: 1668519

URL: http://svn.apache.org/r1668519
Log:
Updates website documentation.

Modified:
    mesos/site/publish/documentation/configuration/index.html
    mesos/site/publish/documentation/latest/configuration/index.html
    mesos/site/publish/documentation/latest/mesos-c++-style-guide/index.html
    mesos/site/publish/documentation/latest/mesos-developers-guide/index.html
    mesos/site/publish/documentation/mesos-c++-style-guide/index.html
    mesos/site/publish/documentation/mesos-developers-guide/index.html
    mesos/site/publish/sitemap.xml
    mesos/site/source/documentation/latest/configuration.md
    mesos/site/source/documentation/latest/mesos-c++-style-guide.md
    mesos/site/source/documentation/latest/mesos-developers-guide.md

Modified: mesos/site/publish/documentation/configuration/index.html
URL: 
http://svn.apache.org/viewvc/mesos/site/publish/documentation/configuration/index.html?rev=1668519&r1=1668518&r2=1668519&view=diff
==============================================================================
--- mesos/site/publish/documentation/configuration/index.html (original)
+++ mesos/site/publish/documentation/configuration/index.html Mon Mar 23 
06:35:29 2015
@@ -527,6 +527,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/publish/documentation/latest/configuration/index.html
URL: 
http://svn.apache.org/viewvc/mesos/site/publish/documentation/latest/configuration/index.html?rev=1668519&r1=1668518&r2=1668519&view=diff
==============================================================================
--- mesos/site/publish/documentation/latest/configuration/index.html (original)
+++ mesos/site/publish/documentation/latest/configuration/index.html Mon Mar 23 
06:35:29 2015
@@ -527,6 +527,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/publish/documentation/latest/mesos-c++-style-guide/index.html
URL: 
http://svn.apache.org/viewvc/mesos/site/publish/documentation/latest/mesos-c%2B%2B-style-guide/index.html?rev=1668519&r1=1668518&r2=1668519&view=diff
==============================================================================
--- mesos/site/publish/documentation/latest/mesos-c++-style-guide/index.html 
(original)
+++ mesos/site/publish/documentation/latest/mesos-c++-style-guide/index.html 
Mon Mar 23 06:35:29 2015
@@ -97,7 +97,7 @@
 <h3>Constant Names</h3>
 
 <ul>
-<li>We use <a 
href="http://en.wikipedia.org/wiki/CamelCase#Variations_and_synonyms";>lowerCamelCase</a>
 for constant names (Google uses a <code>k</code> followed by mixed case, e.g. 
<code>kDaysInAWeek</code>).</li>
+<li>We use <a 
href="http://en.wikipedia.org/wiki/Letter_case#Special_case_styles";>SCREAMING_SNAKE_CASE</a>
 for constant names (Google uses a <code>k</code> followed by mixed case, e.g. 
<code>kDaysInAWeek</code>).</li>
 </ul>
 
 

Modified: 
mesos/site/publish/documentation/latest/mesos-developers-guide/index.html
URL: 
http://svn.apache.org/viewvc/mesos/site/publish/documentation/latest/mesos-developers-guide/index.html?rev=1668519&r1=1668518&r2=1668519&view=diff
==============================================================================
--- mesos/site/publish/documentation/latest/mesos-developers-guide/index.html 
(original)
+++ mesos/site/publish/documentation/latest/mesos-developers-guide/index.html 
Mon Mar 23 06:35:29 2015
@@ -164,7 +164,7 @@
 <ol>
 <li>Log in or create an account at <a href="http://reviews.apache.org";>Apache 
Review Board</a></li>
 <li>The easiest (and recommended) way to submit reviews is through 
<code>post-reviews.py</code> a wrapper around post-review.</li>
-<li>First, install post-review. <a 
href="http://www.reviewboard.org/docs/manual/dev/users/tools/post-review/";>See 
Instructions</a></li>
+<li>First, install RBTools. <a 
href="https://www.reviewboard.org/docs/rbtools/dev/";>See Instructions</a></li>
 <li>Configure post-review. The easiest method is to symlink to the sample 
config: ln -s support/reviewboardrc .reviewboardrc</li>
 <li>Log into Review Board from the command line: run <code>rbt 
status</code></li>
 <li>From your local branch run <code>support/post-reviews.py</code>.</li>

Modified: mesos/site/publish/documentation/mesos-c++-style-guide/index.html
URL: 
http://svn.apache.org/viewvc/mesos/site/publish/documentation/mesos-c%2B%2B-style-guide/index.html?rev=1668519&r1=1668518&r2=1668519&view=diff
==============================================================================
--- mesos/site/publish/documentation/mesos-c++-style-guide/index.html (original)
+++ mesos/site/publish/documentation/mesos-c++-style-guide/index.html Mon Mar 
23 06:35:29 2015
@@ -97,7 +97,7 @@
 <h3>Constant Names</h3>
 
 <ul>
-<li>We use <a 
href="http://en.wikipedia.org/wiki/CamelCase#Variations_and_synonyms";>lowerCamelCase</a>
 for constant names (Google uses a <code>k</code> followed by mixed case, e.g. 
<code>kDaysInAWeek</code>).</li>
+<li>We use <a 
href="http://en.wikipedia.org/wiki/Letter_case#Special_case_styles";>SCREAMING_SNAKE_CASE</a>
 for constant names (Google uses a <code>k</code> followed by mixed case, e.g. 
<code>kDaysInAWeek</code>).</li>
 </ul>
 
 

Modified: mesos/site/publish/documentation/mesos-developers-guide/index.html
URL: 
http://svn.apache.org/viewvc/mesos/site/publish/documentation/mesos-developers-guide/index.html?rev=1668519&r1=1668518&r2=1668519&view=diff
==============================================================================
--- mesos/site/publish/documentation/mesos-developers-guide/index.html 
(original)
+++ mesos/site/publish/documentation/mesos-developers-guide/index.html Mon Mar 
23 06:35:29 2015
@@ -164,7 +164,7 @@
 <ol>
 <li>Log in or create an account at <a href="http://reviews.apache.org";>Apache 
Review Board</a></li>
 <li>The easiest (and recommended) way to submit reviews is through 
<code>post-reviews.py</code> a wrapper around post-review.</li>
-<li>First, install post-review. <a 
href="http://www.reviewboard.org/docs/manual/dev/users/tools/post-review/";>See 
Instructions</a></li>
+<li>First, install RBTools. <a 
href="https://www.reviewboard.org/docs/rbtools/dev/";>See Instructions</a></li>
 <li>Configure post-review. The easiest method is to symlink to the sample 
config: ln -s support/reviewboardrc .reviewboardrc</li>
 <li>Log into Review Board from the command line: run <code>rbt 
status</code></li>
 <li>From your local branch run <code>support/post-reviews.py</code>.</li>


Reply via email to