repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
2a875c3c6ffd5e7023d22990a4ba8e90c4cc1307
026d279acae0c11d9767f6f5a7b57a945257e53c
src: add null check to GetCategoryGroupEnabled() The input to this function shouldn't be null, and callers are not equipped to deal with a nullptr return value. Change the nullptr return to a CHECK_NOT_NULL(). Also fix the indentation of the function. PR-URL: https://github.com/nodejs/node/pull/21545 Fixes: https://g...
[ { "path": "src/node_trace_events.cc", "patch": "@@ -95,9 +95,8 @@ static std::unordered_set<std::string> categoryGroups;\n // Gets a pointer to the category-enabled flags for a tracing category group,\n // if tracing is enabled for it.\n static const uint8_t* GetCategoryGroupEnabled(const char* category_gro...
2018-06-26T14:16:20
golang/go
5a8435d701c1c8c39f403942d4f6a0ac065635db
f7c6f6210be16d6ecfdece7c283fcd4ddc28b151
go/types: add additional test data from types2 Add some test data files that were not included in go/types. - Issue 43125 only pertained to types2 because go/ast differentiates StarExpr, UnaryExpr, and BinaryExpr, so typexpr.go was already catching the invalid type expressions. - Issues 42987 and 43190 are handle...
[ { "path": "src/go/types/testdata/check/main.go2", "patch": "@@ -0,0 +1,7 @@\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+func main[ /* ERROR \"func main must have no...
2021-04-29T15:42:35
electron/electron
9d0a11580f9965ce470cf2eda3c4ba1503eba729
7a6db019e89fe8d54cbfd291b7f9c5b560929b3c
Fix calling apm for apm 0.37.0.
[ { "path": "script/bootstrap.py", "patch": "@@ -59,7 +59,7 @@ def update_apm():\n execute([npm, 'install', 'npm'])\n npm = os.path.join('node_modules', '.bin', 'npm')\n if sys.platform == 'win32':\n- npm += 'cmd'\n+ npm += '.cmd'\n \n with scoped_cwd(os.path.join('vendor', 'apm')):\n ...
2014-03-28T09:30:15
huggingface/transformers
41b9b92b52215bed472c9a534a06abbc3a9a95cd
8dd0a2b89cb3d2ed42c444fb304da59ca1f35f04
[qwen-vl] fix image processor (#37258) * fix * add test
[ { "path": "src/transformers/models/qwen2_vl/image_processing_qwen2_vl.py", "patch": "@@ -379,17 +379,18 @@ def preprocess(\n - `\"none\"` or `ChannelDimension.NONE`: image in (height, width) format.\n \n \"\"\"\n+ min_pixels = min_pixels if min_pixels is not None else self.min...
2025-04-03T17:48:56
vercel/next.js
b418a88757f5a27e258dc5b6b9d84993c5a9239b
59466f8a15d8af0887568ea1d55b84981862a794
Make sure the TS plugin works for src/app (#43412) Reported [here](https://twitter.com/iShiibi/status/1596515959397027843). ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.j...
[ { "path": "packages/next/server/next-typescript.ts", "patch": "@@ -196,16 +196,20 @@ export function createTSPlugin(modules: {\n }\n \n function create(info: ts.server.PluginCreateInfo) {\n- const appDir = path.join(info.project.getCurrentDirectory(), 'app')\n+ const projectDir = info.project.getC...
2022-11-28T12:14:20
golang/go
12eaefead46d7ba10fce622f093d4c9b2989a5c0
657f58d845e83c47c7d4b7638ccbee8e5a2acbf5
cmd/link: support trampoline insertion for PLT calls on ARM This is CL 314452, for ARM. Fixes #30949. Change-Id: Ib4e46a5bd11c698c4f8ea3bc4e7a605d7a538efc Reviewed-on: https://go-review.googlesource.com/c/go/+/314455 Trust: Cherry Zhang <cherryyz@google.com> Reviewed-by: Than McIntosh <thanm@google.com>
[ { "path": "src/cmd/link/internal/arm/asm.go", "patch": "@@ -111,7 +111,7 @@ func adddynrel(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loade\n \t\t\treturn false\n \t\t}\n \n-\t\t// Handle relocations found in ELF object files.\n+\t// Handle relocations found in ELF object files.\n \tcase ob...
2021-04-27T21:11:03
nodejs/node
026d279acae0c11d9767f6f5a7b57a945257e53c
3d04e6c9a5522b6391a4a914ca16f2337abb35e7
inspector: use js_app.html as the landing page for chrome devtools As of this commit in chromium - https://chromium-review.googlesource.com/c/chromium/src/+/905450 a new landing page (js_app.html) has been added and inspector.html has been made as the fallback page. Another motivation for this patch is the following ...
[ { "path": "doc/api/debugger.md", "patch": "@@ -187,12 +187,15 @@ flag instead of `--inspect`.\n $ node --inspect index.js\n Debugger listening on 127.0.0.1:9229.\n To start debugging, open the following URL in Chrome:\n- chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=12...
2018-06-18T12:14:19
electron/electron
7e7f0888e5202f9e3b8a59b2f6c31f8252e98922
5a837f5850ec700732a797efce66a5273f784ae2
gtk: Force size allocation in window, fixes #219.
[ { "path": "atom/browser/native_window_gtk.cc", "patch": "@@ -52,6 +52,12 @@ NativeWindowGtk::NativeWindowGtk(content::WebContents* web_contents,\n options->GetInteger(switches::kHeight, &height);\n SetSize(gfx::Size(width, height));\n \n+ // Force a size allocation so the web page of hidden window can ...
2014-03-28T08:01:38
huggingface/transformers
2d46a08b637588147b4ae515ec51d9bfccc27814
1b29409d89ee1751731a9a70821db432ed664ab4
Purge unused ModelTester code (#37085) * Purge correctly this time * Remove more methods from recent PRs * make fixup
[ { "path": "tests/models/albert/test_modeling_albert.py", "patch": "@@ -198,16 +198,6 @@ def create_and_check_for_sequence_classification(\n result = model(input_ids, attention_mask=input_mask, token_type_ids=token_type_ids, labels=sequence_labels)\n self.parent.assertEqual(result.logits.shap...
2025-04-03T16:48:35
vercel/next.js
59466f8a15d8af0887568ea1d55b84981862a794
d5c922b3ec2e8cbbf8ece7849335040b150037fc
Add gSP and gSSP checks for both server and client layers in the SWC transform (#43391) We currently have these as a build runtime check. This PR ensures that it happens during the SWC compilation time, and applies to both server and client entries. Also adds link to the docs: <img width="768" alt="CleanShot 2...
[ { "path": "packages/next-swc/crates/core/src/react_server_components.rs", "patch": "@@ -58,7 +58,7 @@ impl<C: Comments> VisitMut for ReactServerComponents<C> {\n \n if self.is_server {\n if !is_client_entry {\n- self.assert_server_graph(&imports);\n+ self.as...
2022-11-28T00:15:56
golang/go
4e3e6b58f7ba16caa58f4c826a63d85e26849036
18852e8372fcd6e0964f051d608839a093f6b5c7
cmd/compile/internal/ir: fix doc Change-Id: I8fc77e29cb44fef264a62ff00452b9fcf6e30be8 GitHub-Last-Rev: 414cda8ce6e64fb53d3d1ec01caa7e33c0219236 GitHub-Pull-Request: golang/go#45842 Reviewed-on: https://go-review.googlesource.com/c/go/+/314990 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Matthew ...
[ { "path": "src/cmd/compile/internal/ir/dump.go", "patch": "@@ -20,12 +20,12 @@ import (\n \t\"cmd/internal/src\"\n )\n \n-// dump is like fdump but prints to stderr.\n+// DumpAny is like FDumpAny but prints to stderr.\n func DumpAny(root interface{}, filter string, depth int) {\n \tFDumpAny(os.Stderr, root,...
2021-04-29T05:45:35
nodejs/node
3d04e6c9a5522b6391a4a914ca16f2337abb35e7
80496a55708967d1fb124cdbaf296b86eca31ff3
doc: fix some typos in deprecations.md and vm.md PR-URL: https://github.com/nodejs/node/pull/21569 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Weijia Wang <starkwang@126.com>
[ { "path": "doc/api/deprecations.md", "patch": "@@ -991,8 +991,8 @@ accepted by the legacy `url.parse()` API. The mentioned APIs now use the WHATWG\n URL parser that requires strictly valid URLs. Passing an invalid URL is\n deprecated and support will be removed in the future.\n \n-<a id=\"DEP00XX\"></a>\n-#...
2018-06-27T18:59:40
electron/electron
01a9ac21a5517b36c617f9ff1468b67275e32735
8b41e78245a33d4d44a626d105ff4f20840caaf4
Increase unresponsive time to 2s when closing. Fixes https://github.com/atom/atom/issues/1793.
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -288,12 +288,12 @@ void NativeWindow::CloseWebContents() {\n content::WebContents* web_contents(GetWebContents());\n \n // Assume the window is not responding if it doesn't cancel the close and is\n- // not closed in 500ms, in this way we can quic...
2014-03-26T01:40:53
huggingface/transformers
1b29409d89ee1751731a9a70821db432ed664ab4
8a828a747e65f3b8807d574320f810571a7bdd7e
feat: updated model card for qwen_2.5_vl (#37099) * feat: updated model card for qwen_2.5_vl * applied suggested change 1 Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * applied suggested change 2 Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * applied suggested...
[ { "path": "docs/source/en/model_doc/qwen2_5_vl.md", "patch": "@@ -14,258 +14,220 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# Qwen2.5-VL\n-\n-<div class=\"flex flex-wrap space-x-1\">\n+<div style=\"float: right;\">\n+ <div class=\"flex flex-wrap space-x-1\">\n <img alt=\"PyTorch\" src=\"...
2025-04-03T16:13:26
vercel/next.js
d5c922b3ec2e8cbbf8ece7849335040b150037fc
08e6ceb5941bdaabed0f8313db871fe189411f61
Fix `with-docker-compose` example (#43419) 1. Fixes example unable to build with the latest version of Next. - Next.js 13 bumped the minimum React version to [18.2.0](https://nextjs.org/docs/upgrading), but this example seems to have gotten missed. 2. Fixes example unable to run by default on Linux. - Reverts #39372...
[ { "path": "examples/with-docker-compose/README.md", "patch": "@@ -5,10 +5,9 @@ This example contains everything needed to get a Next.js development and product\n ## Benefits of Docker Compose\n \n - Develop locally without Node.js or TypeScript installed ✨\n-- Easy to run, consistent development environment...
2022-11-28T00:13:22
golang/go
18852e8372fcd6e0964f051d608839a093f6b5c7
d80da19fc99d3e729c6497bf9bf9bb836ed9d9f6
cmd/link: use a two-pass approach for trampoline insertion Currently in the linker, for trampoline insertion it does a one-pass approach, where it assigns addresses for each function and inserts trampolines on the go. For this to work and not to emit too many unnecessary trampolines, the functions need to be laid out ...
[ { "path": "src/cmd/link/internal/arm/obj.go", "patch": "@@ -45,6 +45,7 @@ func Init() (*sys.Arch, ld.Arch) {\n \t\tMinalign: minAlign,\n \t\tDwarfregsp: dwarfRegSP,\n \t\tDwarfreglr: dwarfRegLR,\n+\t\tTrampLimit: 0x1c00000, // 24-bit signed offset * 4, leave room for PLT etc.\n \n \t\tPlan9Magic: 0x647,\n...
2021-04-26T23:26:34
nodejs/node
80496a55708967d1fb124cdbaf296b86eca31ff3
dcb371ff1f334410a32b9ad5fb96427c7484b43a
util: add inspect suffix to BigInt64Array elements This commit updates `util.inspect` to add an `n` suffix to BigInts that appear in BigInt64Arrays. BigInts are formatted with an `n` suffix in most cases, but this did not occur in BigInt64Arrays due to an apparent oversight where the implementation of `inspect` for ty...
[ { "path": "lib/util.js", "patch": "@@ -739,6 +739,10 @@ function formatNumber(fn, value) {\n return fn(`${value}`, 'number');\n }\n \n+function formatBigInt(fn, value) {\n+ return fn(`${value}n`, 'bigint');\n+}\n+\n function formatPrimitive(fn, value, ctx) {\n if (typeof value === 'string') {\n if ...
2018-06-24T07:20:17
huggingface/transformers
afafb84b59487dc2ee1141915fe5a15cce77f1fa
34ccfebf3215ae9788ac783a4abde1cd339ab3df
Add support for fast image processing in image-pretraining example (#37021) * Add support for fast image processing in image-pretraining example Fix typo: correct tuple formatting in IMAGE_PROCESSOR_MAPPING_NAMES Signed-off-by: jafraustro <jaime.fraustro.valdez@intel.com> * Use fast image processor by default Co-a...
[ { "path": "examples/pytorch/image-pretraining/run_mim.py", "patch": "@@ -359,7 +359,7 @@ def main():\n IMAGE_PROCESSOR_TYPES = {\n conf.model_type: image_processor_class for conf, image_processor_class in IMAGE_PROCESSOR_MAPPING.items()\n }\n- image_processor = IMAGE_PROCE...
2025-04-03T12:26:46
electron/electron
8b41e78245a33d4d44a626d105ff4f20840caaf4
9ab3b5293c55f1a5de95fb91db0c45068cd5ea7d
Fix a possible crash when destroying window. It could happend that the JS BrowserWindow object being double deleted when calling the destroy() method.
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -127,7 +127,9 @@ void Window::Destroy(const v8::FunctionCallbackInfo<v8::Value>& args) {\n UNWRAP_WINDOW_AND_CHECK;\n \n base::ProcessHandle handle = self->window_->GetRenderProcessHandle();\n- base::MessageLoop::current()->DeleteSoon(FROM_H...
2014-03-26T01:14:05
vercel/next.js
013844c017824aba3568ea924b77b75ccb707978
2085dac9267800ca6c8895120d85331bf3f6353e
Fix "apply() is only allowed in ready status (state: idle)" HMR errors (#43242) This is a follow-up to https://github.com/vercel/next.js/pull/43145 that fixes [this issue](https://github.com/vercel/next.js/pull/43145#issuecomment-1323782302): ``` warn - Fast Refresh had to perform a full reload. Read more: http...
[ { "path": "packages/next/client/components/react-dev-overlay/hot-reloader-client.tsx", "patch": "@@ -144,7 +144,7 @@ function tryApplyUpdates(\n return\n }\n \n- const hasUpdates = Boolean(updatedModules?.length)\n+ const hasUpdates = Boolean(updatedModules.length)\n if (typeof onHotUpda...
2022-11-27T07:40:05
golang/go
eb3fe28d7079692a1545887a2c609b325ec7f087
c8a92d454c74d89f172f6d534395a0553eff8f20
go/types: improve error messages for unexpected ListExprs This CL is a mix of CL 312149 and CL 314409, adding the Checker.singleIndex method to provide better error messages when an unexpected ListExpr is encountered. Change-Id: I45d6de9b4dfc299dc2d356ca14d05c9191de818d Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/go/types/expr.go", "patch": "@@ -1410,7 +1410,8 @@ func (check *Checker) exprInternal(x *operand, e ast.Expr, hint Type) exprKind {\n \n \tdefault:\n \t\tif typeparams.IsListExpr(e) {\n-\t\t\tcheck.errorf(e, _Todo, \"invalid multi-index expression\")\n+\t\t\t// catch-all for unexpected expres...
2021-04-28T20:32:38
nodejs/node
759809f67421bdceff9a6799424f5b7d191c458f
1f6adff12cdf1d1ca6d8def2ef0b5abdff8c45b0
test: skip non-doc files in test-make-doc checks PR-URL: https://github.com/nodejs/node/pull/21531 Fixes: https://github.com/nodejs/node/issues/21519 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
[ { "path": "test/doctool/test-make-doc.js", "patch": "@@ -15,9 +15,12 @@ const apiPath = path.resolve(__dirname, '..', '..', 'out', 'doc', 'api');\n const allDocs = fs.readdirSync(apiPath);\n assert.ok(allDocs.includes('_toc.html'));\n \n-const filter = ['assets', '_toc.html', '.md'];\n const actualDocs = al...
2018-06-25T19:49:45
huggingface/transformers
34ccfebf3215ae9788ac783a4abde1cd339ab3df
f697b3f82411c12cf59b0d29b17a5f3a9f93a9c1
Fix AST parsing when looking for remote code imports (#37245) * Not all Call.func nodes have id because they can be methods * Trigger tests * Trigger tests
[ { "path": "src/transformers/dynamic_module_utils.py", "patch": "@@ -157,7 +157,9 @@ def recursive_look_for_imports(node):\n elif isinstance(node, ast.If):\n test = node.test\n for condition_node in ast.walk(test):\n- if isinstance(condition_node, ast.Call) and ...
2025-04-03T12:00:51
electron/electron
679959eeb5796327a411fd475bbbcd5c4bfb4741
e96a3abdf9be85d6d15de63fa4d3df77b7893af3
BrowserWindow.destroy() should not delete window immediately. It could cause crash when context menu is showing.
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -127,7 +127,7 @@ void Window::Destroy(const v8::FunctionCallbackInfo<v8::Value>& args) {\n UNWRAP_WINDOW_AND_CHECK;\n \n base::ProcessHandle handle = self->window_->GetRenderProcessHandle();\n- delete self;\n+ base::MessageLoop::current()->...
2014-03-25T08:58:34
vercel/next.js
2085dac9267800ca6c8895120d85331bf3f6353e
758990dc06da4c2913f42fdfdacfe53e29e56593
Update @next/font/google fonts (#43385) Add new fonts and font variations. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature -...
[ { "path": "packages/font/src/google/font-data.json", "patch": "@@ -146,6 +146,29 @@\n \"weights\": [\"400\"],\n \"styles\": [\"normal\"]\n },\n+ \"Alexandria\": {\n+ \"weights\": [\n+ \"100\",\n+ \"200\",\n+ \"300\",\n+ \"400\",\n+ \"500\",\n+ \"600\",\n+ \"7...
2022-11-26T11:47:20
golang/go
c8a92d454c74d89f172f6d534395a0553eff8f20
47cb0c46b206d3d1bcc176314c200e35c1f62cf2
go/types: ensure that error code values do not change in 1.17 Over this cycle some error code values have changed due to codes being added/removed. This is probably OK to do once more before we export error codes in a later Go version, but for now let's keep them stable. Move things around to correct the changes, and...
[ { "path": "src/go/types/errorcodes.go", "patch": "@@ -10,6 +10,8 @@ type errorCode int\n // Collectively, these codes provide an identifier that may be used to\n // implement special handling for certain types of errors.\n //\n+// Error code values should not be changed: add new codes at the end.\n+//\n // ...
2021-04-28T19:49:17
nodejs/node
1f6adff12cdf1d1ca6d8def2ef0b5abdff8c45b0
449f73b7ffd60e7dd140b360e4b53dc2428f4aef
doc: fix function name in process.md setUncaughtExceptionCapture -> setUncaughtExceptionCaptureCallback process.setUncaughtExceptionCaptureCallback and its docs were originally added in https://github.com/nodejs/node/pull/17159 PR-URL: https://github.com/nodejs/node/pull/21523 Reviewed-By: Anna Henningsen <anna@adda...
[ { "path": "doc/api/process.md", "patch": "@@ -1720,18 +1720,19 @@ added: v9.3.0\n \n * `fn` {Function|null}\n \n-The `process.setUncaughtExceptionCapture` function sets a function that will\n-be invoked when an uncaught exception occurs, which will receive the exception\n-value itself as its first argument....
2018-06-25T13:57:31
huggingface/transformers
a0803a9555ce77adfdcb22da48e5c07f5d6afbd7
6ce238fe7a930fc03f39cdf72fc9ce9807c83e55
[tests] fix mamba integration simple inference precision issue (#37193) * fix precision issue * use float32
[ { "path": "tests/models/mamba/test_modeling_mamba.py", "patch": "@@ -451,7 +451,7 @@ def test_simple_generate(self, device):\n tokenizer = AutoTokenizer.from_pretrained(\"state-spaces/mamba-130m-hf\")\n tokenizer.pad_token = tokenizer.eos_token\n \n- model = MambaForCausalLM.from_pret...
2025-04-03T08:38:03
rust-lang/rust
084bd9fd1fd0de4d7550960205d154727dccf463
677505f1fa179d5f63a0375e1d4aac5ea67f8e6e
fix: Fix incorrect diagnostic for lifetime parameter count mismatch
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs", "patch": "@@ -100,6 +100,7 @@ pub(crate) enum GenericArgsPosition {\n // to lowering already include them. We probably can't do that, but we will still need to\n // account for them when we properly implement lifetime elision.\n FnS...
2025-04-23T14:36:13
electron/electron
e96a3abdf9be85d6d15de63fa4d3df77b7893af3
788ed588c91916ce77536127db3e242007655796
mac: Do not allow nested task when showing menu. Fixes #163.
[ { "path": "atom/browser/api/atom_api_menu_mac.mm", "patch": "@@ -4,7 +4,6 @@\n \n #import \"atom/browser/api/atom_api_menu_mac.h\"\n \n-#include \"base/mac/scoped_sending_event.h\"\n #include \"base/message_loop/message_loop.h\"\n #include \"base/strings/sys_string_conversions.h\"\n #include \"atom/browser/...
2014-03-25T08:56:02
vercel/next.js
758990dc06da4c2913f42fdfdacfe53e29e56593
93613d550913de1cfe9ad6979d0fa58304c877be
fix `output: "standalone"` returning 500 error on certain pages when built without pages/ (#43336) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the...
[ { "path": "packages/next/build/index.ts", "patch": "@@ -2777,19 +2777,17 @@ export default async function build(\n })\n await promises.copyFile(filePath, outputPath)\n }\n- if (pagesDir) {\n- await recursiveCopy(\n- path.join(distDir, SERVER_DIRECTORY, ...
2022-11-26T00:44:51
nodejs/node
02fd93d91a3a5e29ab42d812fdab46ec61a07830
7ff50f9e9cf5459c60f10f3919e79223c8b7446c
doc: fix code example and formatting in crypto.md PR-URL: https://github.com/nodejs/node/pull/21500 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "doc/api/crypto.md", "patch": "@@ -2064,10 +2064,10 @@ const a = new Uint32Array(10);\n console.log(crypto.randomFillSync(a).toString('hex'));\n \n const b = new Float64Array(10);\n-console.log(crypto.randomFillSync(a).toString('hex'));\n+console.log(crypto.randomFillSync(b).toString('hex'));\n \n...
2018-06-24T07:30:52
electron/electron
f4b648385c1d9c408db200dd0e536b10b81dc806
eb1675a90fff7bc189c56b93744a496d27f64381
Close devtools completely instead of hiding it. Fixes https://github.com/atom/atom/issues/1764.
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -208,7 +208,7 @@ void NativeWindow::CloseDevTools() {\n if (devtools_window_)\n devtools_window_->Close();\n else\n- inspectable_web_contents()->GetView()->CloseDevTools();\n+ inspectable_web_contents()->CloseDevTools();\n }\n \n bool Nat...
2014-03-20T01:29:39
vercel/next.js
93613d550913de1cfe9ad6979d0fa58304c877be
eaaa193751f421c19eaaad183831f5450702fe46
dynamic = 'error' should only throw if page didn't get exported (#43377) `export const dynamic = "error"` should only throw if the page actually didn't get exported during `next build`. Test already exist to make sure it throws: `test/integration/app-dynamic-error/app/dynamic-error/page.js` Fixes #43059 ## Bu...
[ { "path": "packages/next/export/worker.ts", "patch": "@@ -328,18 +328,16 @@ export default async function exportPage({\n const revalidate = (curRenderOpts as any).revalidate\n results.fromBuildExportRevalidate = revalidate\n \n- if (isDynamicError) {\n- throw new Erro...
2022-11-26T00:39:30
nodejs/node
7ff50f9e9cf5459c60f10f3919e79223c8b7446c
4750ce26f2e6079b5fee92bdee5356c279171d22
fs: undeprecate lchown() uv_fs_lchown() exists, as of libuv 1.21.0. fs.lchown() can now be undeprecated. This commit also adds tests, as there were none. PR-URL: https://github.com/nodejs/node/pull/21498 Fixes: https://github.com/nodejs/node/issues/19868 Reviewed-By: Wyatt Preul <wpreul@gmail.com>
[ { "path": "doc/api/deprecations.md", "patch": "@@ -351,20 +351,6 @@ Type: Documentation-only\n \n The [`fs.lchmodSync(path, mode)`][] API is deprecated.\n \n-<a id=\"DEP0037\"></a>\n-### DEP0037: fs.lchown(path, uid, gid, callback)\n-\n-Type: Documentation-only\n-\n-The [`fs.lchown(path, uid, gid, callback)...
2018-06-23T20:26:29
rust-lang/rust
157caeed3e8b73bba883113b34b9f4d9d0779cbf
fae7785b60ea7fe1ad293352c057a5b7be73d245
fix f*::MAX_EXP and MIN_EXP docs
[ { "path": "library/core/src/num/f128.rs", "patch": "@@ -194,16 +194,22 @@ impl f128 {\n #[unstable(feature = \"f128\", issue = \"116909\")]\n pub const MAX: f128 = 1.18973149535723176508575932662800702e+4932_f128;\n \n- /// One greater than the minimum possible normal power of 2 exponent.\n+ /...
2025-04-22T07:32:00
electron/electron
eb1675a90fff7bc189c56b93744a496d27f64381
f7854e0b4c1788549231a091f2989ac75e5c9bdf
Update node: Build .dSYM for node modules, fixes #207.
[ { "path": "vendor/node", "patch": "@@ -1 +1 @@\n-Subproject commit 38862fe8193768f2fb87732c5568bc5977a296a4\n+Subproject commit a926cced2d72776303cc07a6aa7510950c77595f", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2014-03-20T01:02:36
golang/go
47cb0c46b206d3d1bcc176314c200e35c1f62cf2
c4c68fb57f1b081557a837e8809094b42cfdc5e3
go/types: nest all test data under the testdata directory Having multiple subdirectories of go/types containing test data is slightly problematic: - If ever we were to include a .go file in one of these directories, we'd inadvertently create a visible package. - It's difficult to add other content in testdata/, s...
[ { "path": "src/go/types/check_test.go", "patch": "@@ -47,8 +47,8 @@ import (\n var (\n \thaltOnError = flag.Bool(\"halt\", false, \"halt on error\")\n \tlistErrors = flag.Bool(\"errlist\", false, \"list errors\")\n-\ttestFiles = flag.String(\"files\", \"\", \"comma-separated list of test files\")\n-\tgoV...
2021-04-28T18:40:53
vercel/next.js
eaaa193751f421c19eaaad183831f5450702fe46
c4b6bb85219dea4068234aedd0f935f2879bdc44
Always transform styled-jsx for rsc and error with client-only condition (#43386) Previously we stopped transform css-in-js libraries for RSC server layer because it's not encouraged to use them in server components but client components for saving the bytes of RSC payload. We can detect styled-jsx usage on RSC server...
[ { "path": "packages/next/build/swc/options.js", "patch": "@@ -117,14 +117,13 @@ function getBaseSWCOptions({\n : nextConfig?.compiler?.reactRemoveProperties,\n modularizeImports: nextConfig?.experimental?.modularizeImports,\n relay: nextConfig?.compiler?.relay,\n- // Disable css-in-js trans...
2022-11-26T00:36:18
nodejs/node
8326bea6c2833b653f92239725bf4a32e5f52c90
d6f7a32570994b21c628b517b3ddc863a1f059fb
test: use aliases for smart pointers in fixture PR-URL: https://github.com/nodejs/node/pull/21419 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
[ { "path": "test/cctest/node_test_fixture.cc", "patch": "@@ -2,5 +2,5 @@\n \n ArrayBufferUniquePtr NodeTestFixture::allocator{nullptr, nullptr};\n uv_loop_t NodeTestFixture::current_loop;\n-std::unique_ptr<node::NodePlatform> NodeTestFixture::platform;\n-std::unique_ptr<v8::TracingController> NodeTestFixture...
2018-06-20T08:31:04
electron/electron
630e1b54e8cac63c77733cf76dfd7b6e146f9a42
17403558559f217af61078cb079583bfd81375e7
gtk: Fix BrowserWindow::HasModalDialog.
[ { "path": "atom/browser/native_window_gtk.cc", "patch": "@@ -256,11 +256,6 @@ bool NativeWindowGtk::IsKiosk() {\n return IsFullscreen();\n }\n \n-bool NativeWindowGtk::HasModalDialog() {\n- // FIXME(zcbenz): Implement me.\n- return false;\n-}\n-\n gfx::NativeWindow NativeWindowGtk::GetNativeWindow() {\n...
2014-03-18T06:52:45
golang/go
6afa0ae4e54ec049f291050b82c2a770bb3644b1
42953bc9f5ded1bcf4ff727d82ddd3b7a8a2b8de
cmd/compile/internal/types2: match compiler error for invalid type alias decl Fixes #45594. Change-Id: I2fcc784e6908403dd96b009546e1ac2f53b9f0e8 Reviewed-on: https://go-review.googlesource.com/c/go/+/314776 Trust: Robert Griesemer <gri@golang.org> Trust: Dan Scales <danscales@google.com> Run-TryBot: Robert Griesemer ...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -602,7 +602,11 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *Named\n \tif alias {\n \t\t// type alias declaration\n \t\tif !check.allowVersion(obj.pkg, 1, 9) {\n-\t\t\tcheck.error(tdecl, \"type aliases requires...
2021-04-29T01:00:16
rust-lang/rust
677505f1fa179d5f63a0375e1d4aac5ea67f8e6e
521b8308c9740d43a1b14b4c4a82f2ee759cb13f
Mark `incorrect_generics_len` diagnostic as experimental
[ { "path": "src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/incorrect_generics_len.rs", "patch": "@@ -28,6 +28,7 @@ pub(crate) fn incorrect_generics_len(\n message,\n d.generics_or_segment.map(Into::into),\n )\n+ .experimental()\n }\n \n #[cfg(test)]", "additions": 1, ...
2025-04-23T10:28:47
vercel/next.js
c0b3e0a1c1352e09d7b0f507123f71a8a1fa57f6
1603cd2cffef1f0642804ddbf5b9c60996a4c143
get upstream error overlay changes and fix typescript errors (vercel/turbo#2830) * pull upstream changes * ts fixes
[ { "path": "packages/next-swc/crates/next-core/js/src/dev/hmr-client.ts", "patch": "@@ -13,7 +13,12 @@ import type {\n \n import stripAnsi from \"@vercel/turbopack-next/compiled/strip-ansi\";\n \n-import { onBuildOk, onRefresh, onTurbopackError } from \"../overlay/client\";\n+import {\n+ onBeforeRefresh,\n+...
2022-11-25T20:06:37
nodejs/node
d6f7a32570994b21c628b517b3ddc863a1f059fb
4f67c6f667fa98e25ba311d3459fc8e270407250
test: make cctest fixture use node::NewIsolate This commit updates the gtest fixture to use node::NewIsolate instead of creating a new V8 Isolate using v8::Isolate::New. The motivation for this is that without calling node::NewIsolate the various callbacks set on the isolate, for example AddMessageListener, SetFatalE...
[ { "path": "test/cctest/node_test_fixture.cc", "patch": "@@ -1,7 +1,6 @@\n #include \"node_test_fixture.h\"\n \n+ArrayBufferUniquePtr NodeTestFixture::allocator{nullptr, nullptr};\n uv_loop_t NodeTestFixture::current_loop;\n std::unique_ptr<node::NodePlatform> NodeTestFixture::platform;\n-std::unique_ptr<v8:...
2018-06-20T07:09:33
huggingface/transformers
6ce238fe7a930fc03f39cdf72fc9ce9807c83e55
12048990a9c77debd0e51c2a385caa9efc112262
Fix test (#37213) * Update test_modeling_common.py * style
[ { "path": "tests/test_modeling_common.py", "patch": "@@ -860,11 +860,12 @@ def test_causal_lm_can_accept_kwargs(self):\n model_eager = AutoModelForCausalLM.from_config(config, torch_dtype=torch.float32)\n \n model_eager.save_pretrained(tmpdir)\n- ...
2025-04-03T08:24:34
electron/electron
83ff6b607f073c24940d9068d22c3d288e59c53c
caa553c563c57e2725c879fbd189819376b2d4c7
Fix bump-version script.
[ { "path": "script/bump-version.py", "patch": "@@ -71,7 +71,7 @@ def update_win_rc(version, versions):\n pattern_fvs = re.compile(' *VALUE \"FileVersion\", \"[0-9.]+\"')\n pattern_pvs = re.compile(' *VALUE \"ProductVersion\", \"[0-9.]+\"')\n \n- win_rc = os.path.join('browser', 'resources', 'win', 'atom...
2014-03-16T07:49:12
rust-lang/rust
a4630f7a862910f1c80fbebbcb2e16799b42d139
645d0ad2a4f145ae576e442ec5c73c0f8eed829b
fix ICE in attribute name printing
[ { "path": "compiler/rustc_passes/src/check_attr.rs", "patch": "@@ -680,10 +680,14 @@ impl<'tcx> CheckAttrVisitor<'tcx> {\n }\n \n if !other_attr.has_any_name(ALLOW_LIST) {\n+ let path = other_attr.path();\n+ let path: Vec<...
2025-04-23T09:03:12
golang/go
6082c05d8b4ab59e74204a3749629c8e6240b7b0
414af503d7ec20cdfd6df23d5dee733401644ba3
go/types: better errors for invalid short var decls This is a port of CL 312170 to go/types, adjusted to use go/ast and to add error codes. go/parser already emits errors for non-identifiers on the LHS of a short var decl, so a TODO is added to reconsider this redundancy. A new error code is added for repeated identi...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -555,6 +555,7 @@ func TestDefsInfo(t *testing.T) {\n \t\t{`package p2; var x int`, `x`, `var p2.x int`},\n \t\t{`package p3; type x int`, `x`, `type p3.x int`},\n \t\t{`package p4; func f()`, `f`, `func p4.f()`},\n+\t\t{`package p5; func ...
2021-04-28T14:35:53
huggingface/transformers
c9302c09833d8a8a28263251d16fb19ff4c10d2f
2056287940d7499c3d04fad467a4e8a8db3cd619
Fix static cache export (#37229) Co-authored-by: Guang Yang <guangyang@fb.com>
[ { "path": "src/transformers/integrations/executorch.py", "patch": "@@ -69,7 +69,7 @@ def __init__(self, model: PreTrainedModel):\n self.model = model\n self.static_cache = StaticCache(\n config=self.model.config,\n- batch_size=self.model.generation_config.cache_config....
2025-04-03T05:05:57
rust-lang/rust
3d29e842a7036e40d4b1912fab2ab4d2036015c9
645d0ad2a4f145ae576e442ec5c73c0f8eed829b
Fix `download-ci-gcc key` in `bootstrap.example.toml`
[ { "path": "bootstrap.example.toml", "patch": "@@ -180,7 +180,7 @@\n # Note that this will attempt to download GCC even if there are local\n # modifications to the `src/gcc` submodule.\n # Currently, this is only supported for the `x86_64-unknown-linux-gnu` target.\n-# download-ci-gcc = false\n+#download-ci-...
2025-04-23T09:04:39
vercel/next.js
ab15b949eb39b7e6970b85b11e5f4819b3283e5c
d5d41a614bb18fca8e4a489e18058ead3272b353
get upstream error overlay changes and fix typescript errors (vercel/turbo#2830) * pull upstream changes * ts fixes
[ { "path": "crates/next-core/js/src/dev/hmr-client.ts", "patch": "@@ -13,7 +13,12 @@ import type {\n \n import stripAnsi from \"@vercel/turbopack-next/compiled/strip-ansi\";\n \n-import { onBuildOk, onRefresh, onTurbopackError } from \"../overlay/client\";\n+import {\n+ onBeforeRefresh,\n+ onBuildOk,\n+ o...
2022-11-25T20:06:37
electron/electron
e3434b5cde54c74c10ba0ce7be7ac694a0a9e40c
5dd5f18edff7f0e4a52a2c679c3cc3961ecb8af8
Fix the location default_app is copied to.
[ { "path": "atom.gyp", "patch": "@@ -290,7 +290,7 @@\n ],\n },\n {\n- 'destination': '<(PRODUCT_DIR)/<(product_name).app/Contents/Resources/atom/browser',\n+ 'destination': '<(PRODUCT_DIR)/<(product_name).app/Contents/Resources',\n ...
2014-03-16T07:19:09
golang/go
414af503d7ec20cdfd6df23d5dee733401644ba3
c96fec9036e8b446b7ffefb59d2775b385ec6701
go/types: fix type inference This is a 1:1 port of CL 311651 to go/types. Change-Id: I9d91b45cc5fa7ce686d6a91d4dde274d9f80e0d7 Reviewed-on: https://go-review.googlesource.com/c/go/+/314595 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Go Bot <gobot@golang....
[ { "path": "src/go/types/fixedbugs/issue44799.go2", "patch": "@@ -17,4 +17,3 @@ func main() {\n \t_ = Reduce[int](s, 0, f2)\n \t_ = Reduce(s, 0, f2)\n }\n-", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "src/go/types/fixedbugs/issue45548.go2", "patch": "@@ -0,0 +...
2021-04-28T14:07:18
huggingface/transformers
3e96a0c32b7fcebdf8992e5ad8161272e4651618
199d7adf1037e1e3a0a7a2ceb155e468abef5e26
Update falcon model card (#37184) * feat: updated model card for falcon * fix:rewrite model description * fix: add link to conversion script * Update docs/source/en/model_doc/falcon.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/model_doc/falcon.md Co-authored-...
[ { "path": "docs/source/en/model_doc/falcon.md", "patch": "@@ -14,48 +14,113 @@ rendered properly in your Markdown viewer.\n \n -->\n \n+<div style=\"float: right;\">\n+ <div class=\"flex flex-wrap space-x-1\">\n+ <img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&log...
2025-04-03T00:30:37
rust-lang/rust
dd5948ccc2b10bee9dc3bef7595ea72fec366c86
ff428d91c2b690b8dbd8cc1e48274870c24fe1e2
Clippy: Fix doc issue
[ { "path": "clippy_utils/src/source.rs", "patch": "@@ -142,6 +142,7 @@ pub trait SpanRangeExt: SpanRange {\n map_range(cx.sess().source_map(), self.into_range(), f)\n }\n \n+ #[allow(rustdoc::invalid_rust_codeblocks, reason = \"The codeblock is intentionally broken\")]\n /// Extends the ra...
2025-04-23T08:51:22
vercel/next.js
1603cd2cffef1f0642804ddbf5b9c60996a4c143
4a6959da430e034b6d091c6ec876b788c1e3021c
fix fallback overlay (vercel/turbo#2829)
[ { "path": "packages/next-swc/crates/next-core/src/app_source.rs", "patch": "@@ -255,7 +255,7 @@ pub async fn create_app_source(\n let server_runtime_entries =\n vec![ProcessEnvAssetVc::new(project_root, env).as_ecmascript_chunk_placeable()];\n \n- let fallback_page = get_fallback_page(project...
2022-11-25T16:46:40
electron/electron
5dd5f18edff7f0e4a52a2c679c3cc3961ecb8af8
6285e26972939780a34cc5dacb8d3b217d984e5e
Fix process.resourcesPath.
[ { "path": "atom.gyp", "patch": "@@ -290,7 +290,7 @@\n ],\n },\n {\n- 'destination': '<(PRODUCT_DIR)/<(product_name).app/Contents/Resources/browser',\n+ 'destination': '<(PRODUCT_DIR)/<(product_name).app/Contents/Resources/atom/browser',\n ...
2014-03-16T05:24:25
huggingface/transformers
126abe3461762e5fc180e7e614391d1b4ab051ca
3d133cc5576e08a37a7f8a3a39a5ef3316c98c99
More ReDOS fixes! (#36964) * More ReDOS fixes! * Slight regex cleanup * Cleanup regex replacement * Drop that regex entirely too * The regex didn't match config.json, let's make sure we don't either * Cleanup allowed_value_chars a little * Cleanup the import search * Catch multi-condition blocks too * Trigger ...
[ { "path": "src/transformers/commands/chat.py", "patch": "@@ -17,7 +17,7 @@\n import json\n import os\n import platform\n-import re\n+import string\n import time\n from argparse import ArgumentParser, Namespace\n from dataclasses import dataclass, field\n@@ -44,6 +44,10 @@\n \n from transformers import A...
2025-04-02T17:46:14
golang/go
168dd4e6aa8ad375748ade7613f2f75d6ef4204f
1e235cd454b58f5ae26cac2a41e8ec131312ac6b
go/types: add example test for type inference This is a port of CL 308973. The only change is to remove a TODO at inference.go2:100 to improve the error position. The go/types error position is fine. Change-Id: Ibf61f3458adde91dec9c7531cbd892ca654a5497 Reviewed-on: https://go-review.googlesource.com/c/go/+/314593 Tru...
[ { "path": "src/go/types/examples/inference.go2", "patch": "@@ -0,0 +1,101 @@\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// This file shows some examples of type inference.\n+\n+pack...
2021-04-28T13:54:56
rust-lang/rust
e8737e353015605d0f7f1e445e4d5487c4f43d05
50a579376698ced72466584748bcc2989bd913e3
Clippy: Fix doc issue
[ { "path": "src/tools/clippy/clippy_utils/src/source.rs", "patch": "@@ -142,6 +142,7 @@ pub trait SpanRangeExt: SpanRange {\n map_range(cx.sess().source_map(), self.into_range(), f)\n }\n \n+ #[allow(rustdoc::invalid_rust_codeblocks, reason = \"The codeblock is intentionally broken\")]\n /...
2025-04-23T08:51:22
huggingface/transformers
3d133cc5576e08a37a7f8a3a39a5ef3316c98c99
e90d55ebcccea49b04252959a5ea79203e13dcb1
Stop DOSing the Hub in the CI (#37209) * As the title suggests, stop hammering the same files * make fixup * Use shutil instead of pathlib
[ { "path": "tests/models/fuyu/test_processor_fuyu.py", "patch": "@@ -1,6 +1,7 @@\n import io\n import tempfile\n import unittest\n+from shutil import rmtree\n \n import requests\n \n@@ -32,18 +33,21 @@\n class FuyuProcessingTest(ProcessorTesterMixin, unittest.TestCase):\n processor_class = FuyuProcessor\...
2025-04-02T16:19:33
vercel/next.js
d5d41a614bb18fca8e4a489e18058ead3272b353
5c4528070ddc3cd65cac865075ed00d9fd4d7f1f
fix fallback overlay (vercel/turbo#2829)
[ { "path": ".editorconfig", "patch": "@@ -9,9 +9,6 @@ indent_style = space\n insert_final_newline = true\n trim_trailing_whitespace = true\n \n-[*.rs]\n-indent_size = 4\n-\n [*.t]\n trim_trailing_whitespace = false\n ", "additions": 0, "deletions": 3, "language": "Unknown" }, { "path": "c...
2022-11-25T16:46:40
electron/electron
6285e26972939780a34cc5dacb8d3b217d984e5e
b6ac06c022492dd6e694fcec0ee8757ae975718b
Fix coffeelint.
[ { "path": "script/coffeelint.py", "patch": "@@ -16,10 +16,10 @@ def main():\n coffeelint = os.path.join(SOURCE_ROOT, 'node_modules', 'coffeelint', 'bin',\n 'coffeelint')\n settings = ['--quiet', '-f', os.path.join('script', 'coffeelint.json')]\n- files = glob.glob('browser/a...
2014-03-16T01:43:19
golang/go
1e235cd454b58f5ae26cac2a41e8ec131312ac6b
ad989c7dbad8227a0e6944802f0557e625807bb2
go/types: use combined type and ordinary args for type inference This is a port of CL 308372 to go/types. The only meaningful change was to add TODOs to improve the positioning error messages. Change-Id: I8314615d0851a59c2b5fd30eb897d581652eacc3 Reviewed-on: https://go-review.googlesource.com/c/go/+/314435 Trust: Rob...
[ { "path": "src/go/types/builtins.go", "patch": "@@ -130,7 +130,7 @@ func (check *Checker) builtin(x *operand, call *ast.CallExpr, id builtinId) (_ b\n \t\t\targ(&x, i)\n \t\t\txlist = append(xlist, &x)\n \t\t}\n-\t\tcheck.arguments(call, sig, xlist) // discard result (we know the result type)\n+\t\tcheck.ar...
2021-04-28T02:52:56
nodejs/node
8836a0d780d8dc3f16d9721fdd7ee9a3ffc33855
65f617314d1ea2df8b9e16fb7e7078b5913c749c
inspector: add debugging for WebSocket messages PR-URL: https://github.com/nodejs/node/pull/21473 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/env.h", "patch": "@@ -415,10 +415,10 @@ struct ContextInfo {\n };\n \n // Listing the AsyncWrap provider types first enables us to cast directly\n-// from a provider type to a debug category. Currently no other debug\n-// categories are available.\n+// from a provider type to a debug category...
2018-06-22T18:24:54
huggingface/transformers
cbfa14823b4ef762ebf138822cacc00c733be845
7613cf1a45c0578563cb2d4a0b89790ccbf513ab
No more dtype_byte_size() (#37144) * No more dtype_byte_size() * Remove function once again * Fix rebase cruft * Trigger tests
[ { "path": "src/transformers/modeling_flax_utils.py", "patch": "@@ -17,7 +17,6 @@\n import gc\n import json\n import os\n-import re\n import warnings\n from functools import partial\n from pickle import UnpicklingError\n@@ -83,23 +82,6 @@ def quick_gelu(x):\n }\n \n \n-def dtype_byte_size(dtype):\n- \"\"\...
2025-04-02T13:58:38
vercel/next.js
c4b6bb85219dea4068234aedd0f935f2879bdc44
0f195f0270c0be1099bca5a8bbf870b5194d6b08
Add `ref` forwarding for `next/image` (#43193) Add ref forwarding for next/image with integration test - fixes https://github.com/vercel/next.js/discussions/42885 - fixes https://github.com/vercel/next.js/issues/18398 (this one was closed with `onLoadingComplete`) ## Feature - [x] Implements an existing feature re...
[ { "path": "docs/api-reference/next/image.md", "patch": "@@ -16,6 +16,7 @@ description: Enable Image Optimization with the built-in Image component.\n \n | Version | Changes ...
2022-11-25T15:08:50
electron/electron
60b686ff512bb761225a372b0fbde5af3754c4d4
ef4fb8bfe086a8ebcedbf31e9408a8065b4633ff
gtk: Fix crash when using frameless window.
[ { "path": "browser/native_window_gtk.cc", "patch": "@@ -35,7 +35,9 @@ NativeWindowGtk::NativeWindowGtk(content::WebContents* web_contents,\n window_(GTK_WINDOW(gtk_window_new(GTK_WINDOW_TOPLEVEL))),\n vbox_(gtk_vbox_new(FALSE, 0)),\n state_(GDK_WINDOW_STATE_WITHDRAWN),\n- is_always_on...
2014-03-15T09:07:44
golang/go
764f53eb6ccc55ad52ddfeed47485de76f4453bb
42812a2feec29873aa6ee594d1355948e78e92a3
spec: clarify conditions for switch expression type 1. The existing prose implied that a switch expression type must be comparable because it is tested for equality against all case expressions. But for an empty switch (no case expressions), it was not clear if the switch expression needed to be comparable. ...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Apr 21, 2021\",\n+\t\"Subtitle\": \"Version of Apr 28, 2021\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4953,9 +4953,9 @@ <h4 id=\"Expression_switche...
2021-04-28T01:05:20
nodejs/node
ba4f5e9bb9a2b80f3760b44b7962a77adda50afd
198c872990276b0e6aab82cefa39fffdbd86b733
build: fail on instrumentation errors nyc was silently failing to instrument new language features, resulting in a failure to instrument console.js. Refs: https://github.com/nodejs/node/issues/20952 PR-URL: https://github.com/nodejs/node/pull/21071 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Rebecca...
[ { "path": "Makefile", "patch": "@@ -175,7 +175,8 @@ coverage-build: all\n \t\t\"$(CURDIR)/build/jenkins/scripts/coverage/gcovr-patches-3.4.diff\"); fi\n \tif [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi\n \tmv lib lib_\n-\t$(NODE) ./node_modules/.bin/nyc instrument --extension .js --extension .mjs lib_/ ...
2018-06-01T00:33:21
huggingface/transformers
c94c6ed3972d3c9ed62c77a7964ae89f5df85ccf
e94d607c8b9f3475fb325d6614c8fe13340ba2b3
Fix some code annotation typos. (#37102) Signed-off-by: zhanluxianshen <zhanluxianshen@163.com>
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -1184,7 +1184,7 @@ def recursive_diff_dict(dict_a, dict_b, config_obj=None):\n Helper function to recursively take the diff between two nested dictionaries. The resulting diff only contains the\n values from `dict_a` that are differen...
2025-04-02T13:00:41
electron/electron
ef4fb8bfe086a8ebcedbf31e9408a8065b4633ff
e3a3c342de188f87847dd85b83c025832cff6045
:lipstick: Fix cpplint warning.
[ { "path": "browser/ui/gtk/event_utils.h", "patch": "@@ -25,4 +25,4 @@ WindowOpenDisposition DispositionForCurrentButtonPressEvent();\n \n } // namespace event_utils\n \n-#endif // CHROME_BROWSER_UI_GTK_EVENT_UTILS_H_\n\\ No newline at end of file\n+#endif // CHROME_BROWSER_UI_GTK_EVENT_UTILS_H_", "ad...
2014-03-15T08:41:31
vercel/next.js
0f195f0270c0be1099bca5a8bbf870b5194d6b08
c16d4be4c64730916058b88e2030a19a97da7fb0
App directory next/link dynamic href dev error (#43074) Co-authored-by: Tim Neutkens <tim@timneutkens.nl> Fixes https://github.com/vercel/next.js/issues/42715
[ { "path": "errors/app-dir-dynamic-href.md", "patch": "@@ -0,0 +1,36 @@\n+# Dynamic `href` is not supported in the `/app` directory\n+\n+#### Why This Error Occurred\n+\n+You have tried to use a dynamic `href` with `next/link` in the `app` directory. This is not supported as the new client-side router no lon...
2022-11-25T14:03:00
golang/go
42812a2feec29873aa6ee594d1355948e78e92a3
ea65a12f895ce67ee6fd843b9cee97d42f6ad0b4
types2: disambiguate package qualifiers in error messages This is a port of the go/types CL https://golang.org/cl/313035 with minor adjustments (use of package syntax rather than go/ast). Change-Id: I89410efb3d27be85fdbe827f966c2c91ee5693b5 Reviewed-on: https://go-review.googlesource.com/c/go/+/314410 Trust: Robert G...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -87,7 +87,16 @@ type Checker struct {\n \timpMap map[importKey]*Package // maps (import path, source directory) to (complete or fake) package\n \tposMap map[*Interface][]syntax.Pos // maps interface types to lists of embedded interfac...
2021-04-27T19:54:39
nodejs/node
fc45b16e0f37614d620b4cf65c038a5127b1fc5e
19fe5299d3b52c5d17b70aec012730ffff1e3d84
deps: fix gypi sysroot settings on V8 On Node.js v8.x, gn will pass a sysroot parameter to clang to use a downloaded sysroot files while running `make test-v8`. Recently, chromium build tools switched to use Debian sid sysroot files instead of Debian jessie. This patch updates our V8 GYP files to conform with those ch...
[ { "path": "deps/v8/gypfiles/standalone.gypi", "patch": "@@ -93,16 +93,16 @@\n ['OS==\"linux\" and use_sysroot==1', {\n 'conditions': [\n ['target_arch==\"arm\"', {\n- 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/build/linux/debian_jessie_arm-sysroot',\n+ ...
2018-06-24T02:09:13
huggingface/transformers
e94d607c8b9f3475fb325d6614c8fe13340ba2b3
adfc91cd468a815a5629977b5b39248cfe0dcc0b
fix: Add 'image-text-to-text' to `TASK_MAPPING` (#37107) Co-authored-by: Yih-Dar <2521628+ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/modelcard.py", "patch": "@@ -33,6 +33,7 @@\n MODEL_FOR_CTC_MAPPING_NAMES,\n MODEL_FOR_IMAGE_CLASSIFICATION_MAPPING_NAMES,\n MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES,\n+ MODEL_FOR_IMAGE_TEXT_TO_TEXT_MAPPING_NAMES,\n MODEL_FOR_MASKED_LM_MAPPING_NAMES,\n MOD...
2025-04-02T12:51:03
electron/electron
c88673d6baa15cf842a11bbb3e22c6d0bf90fd92
23ebfa29559c943bfc8b5e544a4e8568c8ec8f0c
Fix the menu of default_app.
[ { "path": "browser/default_app/default_app.js", "patch": "@@ -163,11 +163,11 @@ app.on('ready', function() {\n submenu: [\n {\n label: 'Open',\n- accelerator: 'Command+O',\n+ accelerator: 'Ctrl+O',\n },\n {\n label: 'Close',...
2014-03-14T13:45:53
vercel/next.js
d40ecb7f3f3cae242de05c2089e001fd1bcf394d
1dd34620fd29d957fba42284662dedf98a110dcc
Resolve RSC / HTML rendering errors in error overlay (#43332)
[ { "path": "packages/next/client/components/react-dev-overlay/internal/helpers/stack-frame.ts", "patch": "@@ -39,6 +39,7 @@ export function getOriginalStackFrame(\n const params = new URLSearchParams()\n params.append('isServer', String(type === 'server'))\n params.append('isEdgeServer', String(t...
2022-11-25T12:06:42
golang/go
ea65a12f895ce67ee6fd843b9cee97d42f6ad0b4
90614ff46236e970acbcb3645edd03186718667a
cmd/compile/internal/types2: catch unexpected expression lists This is a modified port of the https://golang.org/cl/313909 change for go/types. - add catch-all cases for unexpected expression lists - add Checker.singleIndex function to check single indices - better syntax error handling in parser for invalid type i...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -1291,16 +1291,15 @@ func (p *parser) typeInstance(typ Expr) Expr {\n \n \tpos := p.pos()\n \tp.want(_Lbrack)\n-\tif p.tok == _Rbrack {\n-\t\tp.error(\"expecting type\")\n-\t\tp.next()\n-\t\treturn typ\n-\t}\n-\n \tx := new(IndexExpr)\n \tx...
2021-04-27T19:12:01
nodejs/node
19fe5299d3b52c5d17b70aec012730ffff1e3d84
8b4af64f50c5e41ce0155716f294c24ccdecad03
crypto: fix UB in computing max message size Before this commit it computed `(1<<(8*(15-iv_len)))-1` for `iv_len>=11` and that reduces to `(1<<32)-1` for `iv_len==11`. Left-shifting past the sign bit and overflowing a signed integral type are both undefined behaviors. This commit switches to fixed values and restric...
[ { "path": "src/node_crypto.cc", "patch": "@@ -39,7 +39,6 @@\n \n #include <errno.h>\n #include <limits.h> // INT_MAX\n-#include <math.h>\n #include <string.h>\n \n #include <algorithm>\n@@ -2800,13 +2799,11 @@ bool CipherBase::InitAuthenticated(const char* cipher_type, int iv_len,\n \n auth_tag_len_ = ...
2018-06-22T10:16:09
huggingface/transformers
6f5dc9c82efd347bcc1941da64739d269e741771
a1654589015d547d1a1b9bba035f8d9f2fcbd3f2
Fixes DynamicCache export issues due to control flow and inplace modifications (#36652) * Remove unnecessary masked_fill in deberta models * Enable some code when exporting but not compiling * add missing import * style * replace if by torch.cond * style * use numel * style * add unit tests * style * change ...
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -79,10 +79,10 @@ def get_usable_length(self, new_seq_length: int, layer_idx: Optional[int] = 0) -\n def reorder_cache(self, beam_idx: torch.LongTensor):\n \"\"\"Reorders the cache for beam search, given the selected beam indices.\"\"\"\n ...
2025-04-02T11:04:40
electron/electron
7c3ac01fd307900179b4ca73cc7e0b111c466060
676a48ae286b2ac01d61ae9d688746532a63be68
:lipstick: Fix pylint warning.
[ { "path": "script/create-dist.py", "patch": "@@ -9,7 +9,7 @@\n \n from lib.config import LIBCHROMIUMCONTENT_COMMIT, BASE_URL, NODE_VERSION\n from lib.util import scoped_cwd, rm_rf, get_atom_shell_version, make_zip, \\\n- safe_mkdir, safe_unlink, execute\n+ safe_mkdir,...
2014-03-12T13:25:13
vercel/next.js
1dd34620fd29d957fba42284662dedf98a110dcc
9519431ec1476e692d54222fecc82e223030b5c5
Add example commands for creating reproductions (#43375) To reduce friction when creating reproductions. It allso allows me to link to this file when I'm asking people to create reproductions ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link att...
[ { "path": "examples/reproduction-template/README.md", "patch": "@@ -9,6 +9,22 @@ These are the steps you should follow when creating a bug report:\n - If you think the issue is not in Next.js, the best place to ask for help is our [Discord community](https://nextjs.org/discord) or [GitHub discussions](https...
2022-11-25T12:01:39
golang/go
90614ff46236e970acbcb3645edd03186718667a
a54762586fd7b91cb1a8b8bb404db87e6b976d59
cmd/go/internal/modfetch: fix comment that mentions no-longer returned error In c9211577eb77df9c51f0565f1da7d20ff91d59df @bcmills removed the returned error from `Lookup`. However, the function docstring still mentions that this can return an error. So this corrects the docs. Change-Id: Idca74a200dfdb024e3d7ff6c439c...
[ { "path": "src/cmd/go/internal/modfetch/repo.go", "patch": "@@ -183,7 +183,8 @@ type lookupCacheKey struct {\n // from its origin, and \"noproxy\" indicates that the patch should be fetched\n // directly only if GONOPROXY matches the given path.\n //\n-// For the distinguished proxy \"off\", Lookup always r...
2021-04-28T17:21:43
nodejs/node
8b4af64f50c5e41ce0155716f294c24ccdecad03
95205a61251aca0af3f1c8663caaffb03a5f5c3a
deps: float fix on node-gyp in npm tree This is a fix for filenames that have spaces which currently breaks node-gyp. npm has not yet updated the dependency to the latest version in the mean time we should land this as a patch PR-URL: https://github.com/nodejs/node/pull/21448 Refs: https://github.com/nodejs/node-gyp/...
[ { "path": "deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py", "patch": "@@ -623,6 +623,9 @@ def Sourceify(path):\n def QuoteSpaces(s, quote=r'\\ '):\n return s.replace(' ', quote)\n \n+def SourceifyAndQuoteSpaces(path):\n+ \"\"\"Convert a path to its source directory form and quote spaces.\...
2018-05-10T19:21:53
huggingface/transformers
a1654589015d547d1a1b9bba035f8d9f2fcbd3f2
ed95493ce05688447d15d9a82d2d70695290ecff
Add device workaround for int4 weight only quantization after API update (#36980) * merge * fix import * format * reformat * reformat --------- Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -46,6 +46,12 @@\n from torch.nn import CrossEntropyLoss, Identity\n from torch.utils.checkpoint import checkpoint\n \n+from transformers.utils import is_torchao_available\n+\n+\n+if is_torchao_available():\n+ from torchao.quantization import In...
2025-04-02T10:42:22
vercel/next.js
9519431ec1476e692d54222fecc82e223030b5c5
e8fd18a5056df3d19103e5c22b6784f888235632
Add .pnpm-store to .gitignore (#43366) pnpm creates this folder in the root of the project when running this repo in a docker (because it needs to create this on the same device and the project is mounted into the container as a new device) This is a follow-up on https://github.com/vercel/next.js/pull/43138 I added ...
[ { "path": ".gitignore", "patch": "@@ -10,6 +10,7 @@ package-lock.json\n yarn.lock\n !/yarn.lock\n test/node_modules\n+.pnpm-store/\n \n # logs & pids\n *.log", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2022-11-25T10:24:56
golang/go
a54762586fd7b91cb1a8b8bb404db87e6b976d59
22a56b629d86508a36d1dd8b90124ccd9dc90e06
cmd/gofmt: simplify arg handling First, we can use flag.Args instead of flag.NArg and flag.Arg. Second, just call filepath.WalkDir directly on each argument. We don't need to check if each argument is a directory or not, since the function will still work on regular files as expected. To continue giving an error in ...
[ { "path": "src/cmd/gofmt/gofmt.go", "patch": "@@ -151,7 +151,7 @@ func processFile(filename string, in io.Reader, out io.Writer, stdin bool) error\n \t\t\tif err != nil {\n \t\t\t\treturn fmt.Errorf(\"computing diff: %s\", err)\n \t\t\t}\n-\t\t\tfmt.Printf(\"diff -u %s %s\\n\", filepath.ToSlash(filename+\"....
2021-01-15T23:10:48
huggingface/transformers
ed95493ce05688447d15d9a82d2d70695290ecff
211e4dc9a458153a8ed5eaa5552b7e4d46389205
Skip code `307` in `RequestCounter` (#36953) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -2538,10 +2538,12 @@ def wrap(*args, **kwargs):\n \n def __exit__(self, *args, **kwargs) -> None:\n assert len(self.mock.call_args_list) == len(self._extra_info)\n-\n for thread_id, call in zip(self._extra_info, self.mock.call_a...
2025-04-02T09:35:46
nodejs/node
95205a61251aca0af3f1c8663caaffb03a5f5c3a
813241316628679a502e6955375838bd506791e8
doc: clarify setServers() methods in dns.md Added a note that that clarifies the fact that setServers() does not check subsequent servers when the first one produces a NOTFOUND error. PR-URL: https://github.com/nodejs/node/pull/21469 Refs: https://github.com/nodejs/node/issues/21391 Reviewed-By: Vse Mozhet Byt <vsemo...
[ { "path": "doc/api/dns.md", "patch": "@@ -568,6 +568,13 @@ An error will be thrown if an invalid address is provided.\n The `dns.setServers()` method must not be called while a DNS query is in\n progress.\n \n+Note that this method works much like\n+[resolve.conf](http://man7.org/linux/man-pages/man5/resolv...
2018-06-22T17:37:15
vercel/next.js
e8fd18a5056df3d19103e5c22b6784f888235632
e650047d4b79d130292e75e89f43d127a2d8b4e2
Get correct chunks in flight-manifest on Windows (#43334) On Windows `cunkGroup.name` is `app\layout` rather than `app/layout`. This causes it to get the wrong chunks in `flight-manifest.json` for `next/script` in this case: ```json "chunks": ["webpack:webpack", "amp:amp"], ``` After checking for backslash: ```json "c...
[ { "path": "packages/next/build/webpack/plugins/flight-manifest-plugin.ts", "patch": "@@ -274,7 +274,10 @@ export class FlightManifestPlugin {\n moduleExportedKeys.forEach((name) => {\n // If the chunk is from `app/` chunkGroup, use it first.\n // This make sure not to load the ov...
2022-11-25T08:36:26
huggingface/transformers
211e4dc9a458153a8ed5eaa5552b7e4d46389205
800510c67bfc5cedd0bb7635648a07f39719be43
[chat-template] fix video loading (#37146) * fix * add video * trigger * push new iamges * fix tests * revert --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "docker/torch-light.dockerfile", "patch": "@@ -7,5 +7,5 @@ ENV UV_PYTHON=/usr/local/bin/python\n RUN pip --no-cache-dir install uv && uv venv && uv pip install --no-cache-dir -U pip setuptools\n RUN uv pip install --no-cache-dir 'torch' 'torchvision' 'torchaudio' --index-url https://download.pytor...
2025-04-02T09:27:50
golang/go
22a56b629d86508a36d1dd8b90124ccd9dc90e06
f893f35d9f7acc3bad32efeac693a44849b5e895
cmd/go/internal/modload: in importFromModules, do not wrap module graph errors in ImportMissingError If an error occurs in loading the module graph (such as a missing checksum for a relevant go.mod file), that error should be terminal and we should not look elsewhere to try to resolve the import. An ImportMissingError...
[ { "path": "src/cmd/go/internal/modload/import.go", "patch": "@@ -303,7 +303,11 @@ func importFromModules(ctx context.Context, path string, rs *Requirements) (m mo\n \t} else {\n \t\tmg, err = rs.Graph(ctx)\n \t\tif err != nil {\n-\t\t\treturn module.Version{}, \"\", &ImportMissingError{Path: path, QueryErr:...
2021-04-28T15:47:49
electron/electron
337e9f9553defb163fb1bb1d620bb42f914a9b52
3260b42b181cedacdde6e5ac0c6c94244602ccbe
Fixes crash caused by NativeWindow::IsWebViewFocused. The RenderViewHostView could be NULL when the renderer process has crashed. Fixes #206.
[ { "path": "browser/native_window.cc", "patch": "@@ -231,7 +231,9 @@ void NativeWindow::BlurWebView() {\n }\n \n bool NativeWindow::IsWebViewFocused() {\n- return GetWebContents()->GetRenderViewHost()->GetView()->HasFocus();\n+ content::RenderWidgetHostView* host_view =\n+ GetWebContents()->GetRenderV...
2014-03-10T01:24:51
nodejs/node
43a20911873e64b841de3ff1f9a66a6230bcc7c6
018d6186a7b426026f431b39e709f880868bd03a
win, build: fix building on 32-bit machines Fixes: https://github.com/nodejs/node/issues/21402 PR-URL: https://github.com/nodejs/node/pull/21437 Fixes: https://github.com/nodejs/node/issues/21402 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <...
[ { "path": "vcbuild.bat", "patch": "@@ -203,6 +203,8 @@ if _%PROCESSOR_ARCHITEW6432%_==_AMD64_ set msvs_host_arch=amd64\n set vcvarsall_arg=%msvs_host_arch%_%target_arch%\n @rem unless both host and target are x64\n if %target_arch%==x64 if %msvs_host_arch%==amd64 set vcvarsall_arg=amd64\n+@rem also if both ...
2018-06-21T10:09:08
vercel/next.js
e650047d4b79d130292e75e89f43d127a2d8b4e2
bcb0e282018045cba63090cc90451f4e5d08d3d7
Fix package resolution issue in app dir (#43349) The server and client compilers have different external dependency resolution logic. The server prefers CJS while the client prefers ESM by default. This causes an issue when that dependency is a client component entry. We get the module reference during RSC render, whi...
[ { "path": "packages/next/build/webpack/plugins/flight-client-entry-plugin.ts", "patch": "@@ -12,7 +12,7 @@ import {\n entries,\n EntryTypes,\n } from '../../../server/dev/on-demand-entry-handler'\n-import { APP_DIR_ALIAS, WEBPACK_LAYERS } from '../../../lib/constants'\n+import { WEBPACK_LAYERS } from '....
2022-11-25T01:19:21
huggingface/transformers
800510c67bfc5cedd0bb7635648a07f39719be43
41f5c3216c9c5260efa2b471ede064d4f856f912
[doc] Fix link for Quark quantization page (#37179) Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "docs/source/en/quantization/overview.md", "patch": "@@ -40,7 +40,7 @@ Use the Space below to help you pick a quantization method depending on your har\n | [VPTQ](./vptq) | 🔴 | 🔴 | 🟢 | 🟡 | 🔴 ...
2025-04-01T18:57:38
golang/go
cbb3f090477de92a7e158050803ef71a5ea825ee
e51246c8819f16cd78d3da01162ca14b432d30bc
testing: add -shuffle=off|on|N to alter the execution order of tests and benchmarks This CL adds a new flag to the testing package and the go test command which randomizes the execution order for tests and benchmarks. This can be useful for identifying unwanted dependencies between test or benchmark functions. The fla...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2667,6 +2667,13 @@\n // \t the Go tree can run a sanity check but not spend time running\n // \t exhaustive tests.\n //\n+// \t-shuffle off,on,N\n+// \t\tRandomize the execution order of tests and benchmarks.\n+// \t\tIt is off by default. If -shuffle i...
2021-04-14T20:55:38
nodejs/node
018d6186a7b426026f431b39e709f880868bd03a
c403eeb7fdf8c1033422b6ea8bf025667892f867
src: add native debugging code to workers Now that we have better native debugging utilities in core, let’s use them :) PR-URL: https://github.com/nodejs/node/pull/21423 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tianc...
[ { "path": "src/async_wrap.cc", "patch": "@@ -803,7 +803,8 @@ void EmitAsyncDestroy(Isolate* isolate, async_context asyncContext) {\n \n std::string AsyncWrap::diagnostic_name() const {\n return std::string(provider_names[provider_type()]) +\n- \" (\" + std::to_string(static_cast<int64_t>(async_id_)) ...
2018-06-20T15:10:06