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
--- a/deps/v8/include/v8.h | |
+++ b/deps/v8/include/v8.h | |
@@ -1564,9 +1564,10 @@ class V8_EXPORT ScriptCompiler { | |
}; | |
enum CompileOptions { | |
- kNoCompileOptions = 0, | |
- kConsumeCodeCache, | |
- kEagerCompile | |
+ kNoCompileOptions = 0x00, |
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
(() => { | |
// Run this in Chrome's console, while in Bitbucket's website and logged in | |
const csrftoken = document.cookie.match(/\bcsrftoken=(.*?)(?:;| |$)/)[1]; | |
const repoName = window.__initial_state__.section.repository.currentRepository.full_name; | |
const expiry = 1000 * 60 * 60; // Delete only files older than an hour | |
let page = 1; | |
function iterateNext() { | |
fetch(`https://bitbucket.org/${repoName}/admin/lfs/file-management/?iframe=true&spa=0&page=${page}`, { |
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
class LZRW1 { | |
static #FLAG_BYTES = 4; | |
static #FLAG_COMPRESS = 0; | |
static #FLAG_COPY = 1; | |
static #WORK_MEM_ALLOC = 4 * 4096 + 3; | |
static #WORKMEM = new Array(LZRW1.#WORK_MEM_ALLOC); | |
/** @returns {Buffer} */ | |
static compress(/**@type Buffer*/input) { | |
const WORKMEM = this.#WORKMEM.fill(0); |
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
DELIMITER $$ | |
DROP TABLE IF EXISTS _partitioned_tables; $$ | |
CREATE TABLE IF NOT EXISTS `_partitioned_tables` ( | |
`owner_name` VARCHAR(100) NOT NULL, | |
`table_name` VARCHAR(100) NOT NULL, | |
`column_name` VARCHAR(100) NOT NULL, | |
`mode` ENUM('day', 'month'), | |
`future_partitions` INT NOT NULL, |
OlderNewer