This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # HG changeset patch | |
| # User Steve Fink <[email protected]> | |
| # Date 1601504771 25200 | |
| # Wed Sep 30 15:26:11 2020 -0700 | |
| # Node ID d2658c507732fb666d515e5bbe04912e91026e9a | |
| # Parent f9261c82b0dd868417bf1eacfeda465a1542bc38 | |
| VoidStarOf is unnecessary. Just cast to `const void*`. | |
| diff --git a/js/src/jsapi-tests/testJitABIcalls.cpp b/js/src/jsapi-tests/testJitABIcalls.cpp | |
| --- a/js/src/jsapi-tests/testJitABIcalls.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| from base64 import b64encode | |
| import os | |
| import sys | |
| s = sys.stdin.read() | |
| print("python import base64") | |
| print('python exec(base64.b64decode("{}"))'.format(b64encode(s.encode()).decode())) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| from base64 import b64encode | |
| import os | |
| import sys | |
| s = sys.stdin.read() | |
| print("python import base64") | |
| print('python exec(base64.b64decode("{}"))'.format(b64encode(s.encode()).decode())) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| from base64 import b64encode | |
| import os | |
| import sys | |
| s = sys.stdin.read() | |
| print("python import base64") | |
| print('python exec(base64.b64decode("{}"))'.format(b64encode(s.encode()).decode())) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String stats: | |
| - Questions: | |
| - How much memory did we save via deduplication? | |
| - How many strings did we save via deduplication? | |
| - What percent of ropes end up flattened? | |
| - How much memory does eager extensibility save? | |
| - What percent of rope nodes are directly referenced? | |
| - How many string compares are we doing? | |
| - How many bytes of string compares are we doing? | |
| - How many string hashes are we doing? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var g1 = newGlobal({newCompartment: true}); | |
| g1.debuggeeGlobal = this; | |
| g1.eval(` | |
| dbg = new Debugger(debuggeeGlobal); | |
| dbg.onExceptionUnwind = () => undefined; | |
| `); | |
| var g2 = newGlobal({newCompartment: true}); | |
| try { | |
| g2.eval('h = {}; quintessence'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Suppress build: | |
| # % touch $srcdir/NOBUILD | |
| # Suppress clobber: | |
| # % touch $srcdir/NOCLOBBER | |
| message="" | |
| function msg () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 0 * * * /home/sfink/bin/nightly-builds >/home/sfink/nightly.log 2>&1 | |
| 0 7 * * * env DISPLAY=:1.0 notify-send -t 86400000 "$(cd $HOME/src/mozilla && $HOME/bin/hg phquery sfink --list)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| d="$(pwd)" | |
| while [ "$d" != / ]; do | |
| if [ -x "$d/mach" ] && [ -f "$d/mach" ]; then break; fi | |
| d="$(dirname "$d")" | |
| done | |
| if [ "$d" = / ]; then | |
| d="$HOME/src/mozilla" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| d="$(pwd)" | |
| while [ "$d" != / ]; do | |
| if [ -x "$d/mach" ] && [ -f "$d/mach" ]; then break; fi | |
| d="$(dirname "$d")" | |
| done | |
| if [ "$d" = / ]; then | |
| d="$HOME/src/mozilla" |