Skip to content

Commit

Permalink
deploy: 4cbdd7e
Browse files Browse the repository at this point in the history
  • Loading branch information
shiranr committed Oct 18, 2023
1 parent a8f13ca commit f3836fd
Show file tree
Hide file tree
Showing 7 changed files with 245 additions and 270 deletions.
5 changes: 2 additions & 3 deletions automated-testing/fault-injection-testing/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7335,8 +7335,7 @@ <h4 id="terminology">Terminology</h4>
<li><strong>Fault</strong> - The adjudged or hypothesized cause of an error.</li>
<li><strong>Error</strong> - That part of the system state that may cause a subsequent failure.</li>
<li><strong>Failure</strong> - An event that occurs when the delivered service deviates from correct state.</li>
<li><strong>Fault-Error-Failure cycle</strong> - A key mechanism in <a href="https://en.wikipedia.org/wiki/Dependability">dependability</a>: A fault may cause an error. An error may cause further errors within the system boundary; therefore each new error acts as a fault. When error states are observed at the system boundary, they are termed failures.
(Modeled by <a href="https://www.nasa.gov/pdf/636745main_day_3-algirdas_avizienis.pdf">Laprie/Avizienis</a>)</li>
<li><strong>Fault-Error-Failure cycle</strong> - A key mechanism in <a href="https://en.wikipedia.org/wiki/Dependability">dependability</a>: A fault may cause an error. An error may cause further errors within the system boundary; therefore each new error acts as a fault. When error states are observed at the system boundary, they are termed failures.</li>
</ul>
<h4 id="fault-injection-testing-basics">Fault Injection Testing Basics</h4>
<p>Fault injection is an advanced form of testing where the system is subjected to different <a href="https://en.wikipedia.org/wiki/Failure_mode_and_effects_analysis">failure modes</a>, and where the testing engineer may know in advance what is the expected outcome, as in the case of release validation tests, or in an exploration to find potential issues in the product, which should be mitigated.</p>
Expand Down Expand Up @@ -7424,7 +7423,7 @@ <h2 id="resources">Resources</h2>
<small>

Last update:
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">June 12, 2023</span>
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">October 18, 2023</span>


</small>
Expand Down
25 changes: 1 addition & 24 deletions code-reviews/recipes/markdown/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2520,13 +2520,6 @@
markdownlint
</a>

</li>

<li class="md-nav__item">
<a href="#proselint" class="md-nav__link">
proselint
</a>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -7376,13 +7369,6 @@
markdownlint
</a>

</li>

<li class="md-nav__item">
<a href="#proselint" class="md-nav__link">
proselint
</a>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -7565,15 +7551,6 @@ <h3 id="markdownlint">markdownlint</h3>
<div class="highlight"><pre><span></span><code>markdownlint<span class="w"> </span>**/*.md<span class="w"> </span>--ignore<span class="w"> </span>node_modules<span class="w"> </span>--fix
</code></pre></div>
<p>A comprehensive list of markdownlint rules is available <a href="https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md">here</a>.</p>
<h3 id="proselint">proselint</h3>
<p><a href="http://proselint.com/"><code>proselint</code></a> is a command line utility that lints the text contents of the document. It checks for jargon, spelling errors, redundancy, corporate speak and other language related issues.</p>
<p>It's available both as a <a href="https://github.com/amperser/proselint/#checks">python package</a> and a <a href="https://www.npmjs.com/package/proselint">node package</a>.</p>
<div class="highlight"><pre><span></span><code>pip<span class="w"> </span>install<span class="w"> </span>proselint
npm<span class="w"> </span>install<span class="w"> </span>-g<span class="w"> </span>proselint
</code></pre></div>
<p>Run proselint</p>
<div class="highlight"><pre><span></span><code>proselint<span class="w"> </span>document.md
</code></pre></div>
<h3 id="write-good">write-good</h3>
<p><a href="https://github.com/btford/write-good"><code>write-good</code></a> is a linter for English text that helps writing better documentation.</p>
<div class="highlight"><pre><span></span><code>npm<span class="w"> </span>install<span class="w"> </span>-g<span class="w"> </span>write-good
Expand Down Expand Up @@ -7741,7 +7718,7 @@ <h3 id="general">General</h3>
<small>

Last update:
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">September 18, 2023</span>
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">October 18, 2023</span>


</small>
Expand Down
3 changes: 1 addition & 2 deletions documentation/tools/automation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7205,7 +7205,6 @@ <h1 id="how-to-automate-simple-checks">How to Automate Simple Checks</h1>
<li>Code Analysis / Linting<ul>
<li><a href="../../../code-reviews/recipes/markdown/#markdownlint">markdownlint</a> to verify Markdown syntax and enforce rules that make the text more readable.</li>
<li><a href="https://github.com/tcort/markdown-link-check">markdown-link-check</a> to extract links from markdown texts and check whether each link is alive (200 OK) or dead.</li>
<li><a href="../../../code-reviews/recipes/markdown/#proselint">proselint</a> to check for jargon, spelling errors, redundancy, corporate speak and other language related issues.</li>
<li><a href="../../../code-reviews/recipes/markdown/#write-good">write-good</a> to check English prose.</li>
<li><a href="https://github.com/tmaier/docker-markdown-spellcheck">Docker image for node-markdown-spellcheck</a>, a lightweight docker image to spellcheck markdown files.</li>
<li><a href="../../../continuous-integration/dev-sec-ops/static-code-analysis/static_code_analysis/">static code analysis</a></li>
Expand Down Expand Up @@ -7237,7 +7236,7 @@ <h2 id="on-linting-rules">On linting rules</h2>
<small>

Last update:
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">January 3, 2023</span>
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">October 18, 2023</span>


</small>
Expand Down
4 changes: 2 additions & 2 deletions observability/profiling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7239,15 +7239,15 @@ <h2 id="specific-tools">Specific tools</h2>
<li>(Java and Go) <a href="https://github.com/VerizonMedia/kubectl-flame">Flame</a> - profiling containers in Kubernetes</li>
<li>(Java, Python, Go) <a href="https://www.datadoghq.com/product/code-profiling/">Datadog Continuous profiler</a></li>
<li>(Go) <a href="https://github.com/profefe/profefe">profefe</a>, which builds <code>pprof</code> to provide continuous profiling</li>
<li>(Java) <a href="https://www.eclipse.org/mat/">Eclipse Memory Analyzer</a></li>
<li>(Java) <a href="https://eclipse.dev/mat/">Eclipse Memory Analyzer</a></li>
</ul>

<hr>
<div class="md-source-file">
<small>

Last update:
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">July 12, 2023</span>
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date">October 18, 2023</span>


</small>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Loading

0 comments on commit f3836fd

Please sign in to comment.