This file contains 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
"use strict"; | |
/*--------------------------------------------------------------------------------------------- | |
* Copyright (c) Microsoft Corporation. All rights reserved. | |
* Licensed under the MIT License. See License.txt in the project root for license information. | |
*--------------------------------------------------------------------------------------------*/ | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
exports.referenceGeneratedDepsByArch = exports.bundledDeps = exports.additionalDeps = void 0; | |
// Based on https://source.chromium.org/chromium/chromium/src/+/main:chrome/installer/linux/rpm/additional_deps | |
// Additional dependencies not in the rpm find-requires output. | |
exports.additionalDeps = [ |
This file contains 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
(function(){ | |
'use strict'; | |
let meta=new Map(); | |
let queue=[]; | |
let timeout; | |
let dispatching = false; | |
function observe(obj, key, watcher) { | |
let m=meta.get(obj); | |
if(!m) { |
This file contains 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 | |
JBOSS_HOME=$HOME/jboss | |
PATH="$PATH:$JBOSS_HOME/bin" | |
INIT_D_NAME="$(basename /etc/init.d/jboss*)" | |
cli() { | |
if [ "$#" -eq 0 ]; then | |
jboss-cli.sh -c | |
else |
This file contains 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
(function(w,d){ | |
var x = function(n,p) { return d.createExpression(p).evaluate(n).iterateNext(); }; | |
w.pokeBack = function() { | |
pokeBack.id && window.clearTimeout(pokeBack.id); | |
delete pokeBack.id; | |
if(pokeBack.stopped) return; | |
var a = x(d,'//a[contains(@class, "_4jy1") and contains(.,"Poke Back")]'); | |
if(a && ! a.pokedBack) { | |
a.pokedBack = true; | |
var who = x(a,'../../following-sibling::*[1]//a').innerText; |