Summary of the analysis revised one more time

This commit is contained in:
Carsten Grohmann 2023-03-31 21:45:36 +02:00
parent 77e7c9ca93
commit 4e12c22c10
2 changed files with 7 additions and 7 deletions

View File

@ -449,7 +449,7 @@ window.onerror = function (msg, url, lineNo, columnNo, errorObj) {
requested a memory chunk of order <span class="trigger_proc_order"></span> from the
&quot;<span class="trigger_proc_mem_zone"></span>&quot; memory zone.
That are 2<span class="text__superscript">order</span> pages ==
This is 2<span class="text__superscript">order</span> pages ==
2<span class="trigger_proc_order text__superscript"></span> pages ==
<span class="trigger_proc_requested_memory_pages"></span>
a <span class="page_size_kb"></span> ==
@ -459,17 +459,17 @@ window.onerror = function (msg, url, lineNo, columnNo, errorObj) {
<div class="js-text--default-hide js-text--display-none js-alloc-failure--show">
<p>
<span class="js-text--default-hide js-text--display-none js-alloc-failure-below-low-watermark--show">
The request failed because after its fulfillment the free memory would be below the memory
low watermark.
The request failed because the free memory would be below the memory low watermark
after its completion.
</span>
<span class="js-text--default-hide js-text--display-none js-alloc-failure-no-free-chunks--show">
If this requirement were met, the free memory would still be above the low memory watermark.
If this requirement was satisfied, the free memory would still be above the low memory watermark.
The request failed because there is no free chunk in the current or higher order.
</span>
<span class="js-text--default-hide js-text--display-none js-alloc-failure-unknown-reason-show">
The request failed, but the reason is unknown.
</span>
The memory shortage triggers the OOM process.
This memory shortage triggers the OOM process.
</p>
</div>
<p>

View File

@ -37,8 +37,8 @@ class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
class TestBase(unittest.TestCase):
text_alloc_failed_below_low_watermark = (
"The request failed because after its fulfillment the free memory would "
"be below the memory low watermark."
"The request failed because the free memory would be below the memory low "
"watermark after its completion."
)
text_alloc_failed_no_free_chunks = (
"The request failed because there is no free chunk in the current or "