Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/toolkit/components/shopping/test/xpcshell/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  head.js   Sprache: JAVA

 
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */


"use strict";
/* exported createHttpServer, loadJSONfromFile, readFile */

const { AddonTestUtils } = ChromeUtils.importESModule(
  "resource://testing-common/AddonTestUtils.sys.mjs"
);

const { NetUtil } = ChromeUtils.importESModule(
  "resource://gre/modules/NetUtil.sys.mjs"
);

const createHttpServer = (...args) => {
  AddonTestUtils.maybeInit(this);
  return AddonTestUtils.createHttpServer(...args);
};

async function loadJSONfromFile(path) {
  let file = do_get_file(path);
  let uri = Services.io.newFileURI(file);
  return fetch(uri.spec).then(resp => {
    if (!resp.ok) {
      return undefined;
    }
    return resp.json();
  });
}

function readFile(path) {
  let file = do_get_file(path);
  let fstream = Cc["@mozilla.org/network/file-input-stream;1"].createInstance(
    Ci.nsIFileInputStream
  );
  fstream.init(file, -1, 0, 0);
  let data = NetUtil.readInputStreamToString(fstream, fstream.available());
  fstream.close();
  return data;
}

/* These are constants but declared `var` so they can be used by the individual
 * test files.
 */

var API_OHTTP_RELAY = "http://example.com/relay/";
var API_OHTTP_CONFIG = "http://example.com/ohttp-config";

function enableOHTTP(configURL = API_OHTTP_CONFIG) {
  Services.prefs.setCharPref("toolkit.shopping.ohttpConfigURL", configURL);
  Services.prefs.setCharPref("toolkit.shopping.ohttpRelayURL", API_OHTTP_RELAY);
}

function disableOHTTP() {
  for (let pref of ["ohttpRelayURL""ohttpConfigURL"]) {
    Services.prefs.setCharPref(`toolkit.shopping.${pref}`, "");
  }
}

Messung V0.5
C=89 H=89 G=88

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.