search for: xeioex

Displaying 7 results from an estimated 7 matches for "xeioex".

2015 Feb 10
3
[LLVMdev] Coverage mapping issue: Malformed profile data
...lang -c -o obj/test.o src/test.c -I -g -O0 -fprofile-instr-generate -fcoverage-mapping; clang -o bin/test obj/test.o -I -g -O0 -fprofile-instr-generate -fcoverage-mapping; ./bin/test ; llvm-profdata merge -o test.profdata default.profraw; llvm-cov show ./bin/test -instr-profile=test.profdata /home/xeioex/workspace/clang/experiments/llvm-cov/test/src/test.c: | 1|#include <stdio.h> | 2| 1| 3|static int foo() { return 42; } 1| 4|int main() { 1| 5| return foo(); 1| 6|} test3.c: OK ================== #include <stdio.h> int foo() { re...
2023 Mar 09
0
njs-0.7.11
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - XMLNode API to modify XML documents: : const xml = require("xml"); : let data = `<note><to b="bar" a="foo">Tove</to><from>Jani</from></note>`; : let doc = xml.parse(data); : : doc.$root.to.$attr$b = 'bar2'; :
2023 Apr 10
0
njs-0.7.12
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - "zlib" module: : const zlib = require('zlib'); : zlib.deflateRawSync('αβγ').toString('base64') : /* "O7fx3KZzmwE=" */ : : zlib.inflateRawSync(Buffer.from('O7fx3KZzmwE=', 'base64')).toString() : /* "αβγ" */ Learn more about
2023 Sep 12
0
njs-0.8.1
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - Periodic code execution: js_periodic direcrive specifies a content handler to run at regular interval. The handler receives a session object as its first argument, it also has access to global objects such as ngx. : example.conf: : location @periodics { : # to be run at 1 minute
2023 Oct 24
0
njs-0.8.2
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - console object in nginx modules: Console object is a global object that provides access to the environment's console. It can be used to log information to the console, using console.log(), console.info(), console.warn(), console.error() methods. This feature unifies logging in nginx
2024 Apr 16
0
njs-0.8.4
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). This release introduced the initial QuickJS engine support in CLI as well as regular bugfixes. Notable new features: - QuickJS in njs CLI: : $ ./configure --cc-opt="-I/path/to/quickjs -L/path/to/quickjs" && make njs : $ ./build/njs -n QuickJS : : >> new Map() : [object Map] Learn more about
2023 Jul 06
0
njs-0.8.0
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - shared dictionaries: Shared dictionary keeps the key-value pairs shared between worker processes. This allows to cache data in memory and share it between workers. : example.conf: : # Creates a 1Mb dictionary with string values, : # removes key-value pairs after 60 seconds of inactivity: