Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/gc/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1008 B image not shown  

Quelle  helper-thread-params.js

  Sprache: JAVA
 

// |jit-test| skip-if: helperThreadCount() === 0

function assertError(thunk) {
  let threw = false;
  try {
    thunk();
  } catch (e) {
    threw = true;
  }
  assertEq(threw, true);
}

let initialHelperThreads = helperThreadCount();

// Test that setting maxHelperThreads limits the number of threads.
gcparam("helperThreadRatio"100);
for (let i = 1; i <= initialHelperThreads; i++) {
  gcparam("maxHelperThreads", i);
  assertEq(gcparam("helperThreadCount"), i);
}

// Test that setting helperThreadRatio works as expected.
gcparam("maxHelperThreads"1000);
for (let i = 25; i <= 400; i *= 2) {
  gcparam("helperThreadRatio", i);
  let ratio = i / 100;
  let expected = Math.max(Math.floor(initialHelperThreads * ratio), 1);
  assertEq(gcparam("helperThreadCount"), expected);
  assertEq(helperThreadCount(), Math.max(initialHelperThreads, expected));
}

// Test that illegal settings are checked.
assertError(() => gcparam("helperThreadRatio"0));
assertError(() => gcparam("maxHelperThreads"0));

Messung V0.5 in Prozent
C=92 H=83 G=87

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.