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
electron/electron
969916442f3bcaef2fec1319d21202709f42ffa8
99bfc9b7f5333e76afabdb10573c8339b34afcd7
Use webContents BrowserContext. Also fix some code styles.
[ { "path": "atom/browser/api/atom_api_cookies.cc", "patch": "@@ -4,18 +4,21 @@\n \n #include \"atom/browser/api/atom_api_cookies.h\"\n \n-#include \"atom/browser/atom_browser_context.h\"\n+#include \"atom/common/native_mate_converters/gurl_converter.h\"\n #include \"atom/common/native_mate_converters/value_c...
2015-06-18T10:38:32
huggingface/transformers
c4e20698985887215f7e91a02621265f047af2d7
075dbbceaa2faf328ce54fdb7a8e842e596c55d2
Fix Cache.max_cache_len max value for Hybrid models (#39737) * fix gemma * fix min * fix quant init issue * fix gemma 3n * skip quant cache test * fix modular * new test for Gemma * include cyril change --------- Co-authored-by: Cyril Vallez <cyril.vallez@gmail.com>
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -325,8 +325,9 @@ def __init__(self, sliding_window, *args, **kwargs):\n sliding_window (`int`):\n Effective window size: number of tokens that are kept on each update call.\n \"\"\"\n- kwargs.pop(\"max_cache...
2025-07-29T15:12:50
rust-lang/rust
19fd098446b07f8b7edc823edbadee971c7e6e5e
04a67d5a0587ed98632f82c404ae20f9f0a51a1d
float: Disable `total_cmp` sNaN tests for `f16` There is an LLVM bug with lowering of basic `f16` operations that mean a round trip via `__extendhfsf2` and `__truncsfhf2` may happen for simple `abs` calls or bitcasts [1]. This is problematic because the round trip quiets signaling NaNs. For most operations this is acc...
[ { "path": "library/coretests/tests/floats/f16.rs", "patch": "@@ -596,12 +596,15 @@ fn test_total_cmp() {\n f16::from_bits(f16::NAN.to_bits() | quiet_bit_mask())\n }\n \n- fn s_nan() -> f16 {\n- f16::from_bits((f16::NAN.to_bits() & !quiet_bit_mask()) + 42)\n- }\n+ // FIXME(f16_f12...
2025-05-28T06:40:18
nodejs/node
e03bcb126152fdef68c8509e7e95a2b4b4e93fd9
13920ef41d2784b42f23603633bc04ab46ec32ca
test: verify order of error in h2 server stream Currently the order of error / closing of an h2 stream is consistent in 10.x, 11.x, and master. There appears to be an unexpected behavior difference in 8.x. This test will be used to bisect the commit that will fix this behavior change and ensure there are no future reg...
[ { "path": "test/parallel/test-http2-error-order.js", "patch": "@@ -0,0 +1,43 @@\n+'use strict';\n+\n+const common = require('../common');\n+if (!common.hasCrypto)\n+ common.skip('missing crypto');\n+\n+const assert = require('assert');\n+const { createServer, connect } = require('http2');\n+\n+const messag...
2018-11-27T22:46:59
vercel/next.js
ed51bd870bf00d60ad91b28b0bbbbebb75c135c4
6499b7b65643700415c9ca452df3300f97cd5183
Fix static to dynamic on revalidate (#46668) Since it's perfectly valid to do an authorized request during revalidate we shouldn't consider this a reason to throw the static to dynamic error during runtime. If an authorized request is done during build and caching isn't enabled for a path it will still bail from being...
[ { "path": "packages/next/src/client/components/static-generation-async-storage.ts", "patch": "@@ -6,6 +6,7 @@ export interface StaticGenerationStore {\n readonly pathname: string\n readonly incrementalCache?: import('../../server/lib/incremental-cache').IncrementalCache\n readonly isRevalidate?: boole...
2023-03-02T10:14:56
huggingface/transformers
075dbbceaa2faf328ce54fdb7a8e842e596c55d2
1d061536cfe56e14d601dff1f2b456245586e0f8
fix(trainer): Correct loss scaling for incomplete gradient accumulation steps (#39659) * Fix issue[#38837]: wrong loss scaled in last step of epoch * chore: trigger CI * Update src/transformers/trainer.py Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com> * Update src/transformers/m...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2530,6 +2530,9 @@ def _inner_training_loop(\n update_step += 1\n num_batches = args.gradient_accumulation_steps if update_step != (total_updates - 1) else remainder\n batch_samples, num_items_in_batch = se...
2025-07-29T15:12:31
electron/electron
98adcac5df7e8c7106f70b53d9100da8942ccca2
19e96cc212053a8041e965dde70ad9d9637b2105
Move set status code into error.
[ { "path": "atom/browser/api/atom_api_cookies.cc", "patch": "@@ -99,8 +99,13 @@ void RunSetCookiesCallbackOnUIThread(const base::DictionaryValue* details,\n callback.Run(error, v8::Null(isolate));\n return;\n }\n+ if (!set_success) {\n+ v8::Local<v8::String> error = v8::String::NewFromUtf8(isol...
2015-06-15T13:51:08
nodejs/node
5dacbf594ef80f8eadea274f537cc17cc1e5ebe1
97fedefc18204e2c028cbca608a383075fcda7c7
http2: add compat support for nested array headers writeHead supports an array of arrays containing header name and values. Compatibility between http2 & http1 even though this is not documented. Fixes: https://github.com/nodejs/node/issues/24466 PR-URL: https://github.com/nodejs/node/pull/24665 Reviewed-By: James M...
[ { "path": "lib/internal/http2/compat.js", "patch": "@@ -574,10 +574,16 @@ class Http2ServerResponse extends Stream {\n if (headers === undefined && typeof statusMessage === 'object')\n headers = statusMessage;\n \n- if (typeof headers === 'object') {\n+ var i;\n+ if (Array.isArray(headers...
2018-11-27T02:45:51
huggingface/transformers
1d061536cfe56e14d601dff1f2b456245586e0f8
43fe41c0a85a8576c9d9d74ad648d11c0469d8ab
🌐 [i18n-KO] Translated `how_to_hack_models.md` to Korean (#39536) * docs: ko: how_to_hack_models.md * feat: nmt draft * fix: manual edits
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -13,8 +13,8 @@\n title: (번역중) Loading models\n - local: custom_models\n title: 사용자 정의 모델 공유하기\n- - local: in_translation\n- title: (번역중) Customizing model components\n+ - local: how_to_hack_models\n+ title: 모델 구성 요소 맞춤 설정하...
2025-07-29T15:09:16
vercel/next.js
6499b7b65643700415c9ca452df3300f97cd5183
a20ce541bcea6c2494975d321dbc3e29f54d76d9
Fix custom server error handling in the docs (#46671)
[ { "path": "docs/advanced-features/custom-server.md", "patch": "@@ -53,10 +53,14 @@ app.prepare().then(() => {\n res.statusCode = 500\n res.end('internal server error')\n }\n- }).listen(port, (err) => {\n- if (err) throw err\n- console.log(`> Ready on http://${hostname}:${port}`)\n }...
2023-03-02T09:53:36
electron/electron
19e96cc212053a8041e965dde70ad9d9637b2105
cfffe39151ba40a5f2fcc1d7e33d928522cbc4cc
Fix cpplint.
[ { "path": "atom/browser/api/atom_api_cookies.cc", "patch": "@@ -172,7 +172,7 @@ struct Converter<net::CanonicalCookie> {\n }\n };\n \n-}\n+} // namespace mate\n \n namespace atom {\n ", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "atom/browser/api/atom_api_cooki...
2015-06-15T13:21:53
nodejs/node
97fedefc18204e2c028cbca608a383075fcda7c7
cda6b2081682e1af5a6ef7eb8c137b9da070ddb6
test: fix the arguments order in assert.strictEqual PR-URL: https://github.com/nodejs/node/pull/24620 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinc...
[ { "path": "test/parallel/test-stream-writable-destroy.js", "patch": "@@ -189,7 +189,7 @@ const { inherits } = require('util');\n const expected = new Error('kaboom');\n \n write.destroy(expected, common.mustCall(function(err) {\n- assert.strictEqual(expected, err);\n+ assert.strictEqual(err, expec...
2018-11-24T07:55:33
huggingface/transformers
43fe41c0a85a8576c9d9d74ad648d11c0469d8ab
9f38763731178290a3a4b8a8c9999ffb9b6bd120
🌐 [i18n-KO] Translated `perf_train_gpu_one.md` to Korean (#39552) * docs: ko: perf_train_gpu_one.md * feat: nmt draft * fix: manual edits * fix: Manually added missing backticks * Update docs/source/ko/perf_train_gpu_one.md fix: remove space between heading and GPU anchor Co-authored-by: YONGSANG <71686691+4N...
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -135,8 +135,8 @@\n title: 다중 GPU에서 학습 진행하기\n title: 분산 학습(Distributed training)\n - sections:\n- - local: in_translation\n- title: (번역중) GPU\n+ - local: perf_train_gpu_one\n+ title: GPU\n - local: perf_train_cpu\n ti...
2025-07-29T15:08:57
vercel/next.js
a20ce541bcea6c2494975d321dbc3e29f54d76d9
d2cbf8c4e0fd23dbe4edc495f9f8ddc9140a3304
Add @types/mdx to app-dir-mdx example (#46523) The `app-dir-mdx` is missing `@types/mdx` thus causing an error: `Cannot find module 'mdx/types' or its corresponding type...` [Related PR](https://github.com/vercel/next.js/pull/45737) previously added types but was missing the line in `package.json` ## Bug - [ ] Rela...
[ { "path": "examples/app-dir-mdx/package.json", "patch": "@@ -8,6 +8,7 @@\n \"dependencies\": {\n \"@next/font\": \"latest\",\n \"@next/mdx\": \"latest\",\n+ \"@types/mdx\": \"2.0.3\",\n \"@types/node\": \"18.11.18\",\n \"@types/react\": \"18.0.27\",\n \"@types/react-dom\": \"18.0.10...
2023-03-02T09:07:02
golang/go
265b59aefdd383fc60fcfc7a2838018b16d1d29a
4efdaa7bc7220fad0177842d0009285ca429a823
cmd/cgo: for godefs, don't let field prefix removal cause duplicates Fixes #48396 Change-Id: Idd7cb66536ef513806c472d394a929bc271fc26b Reviewed-on: https://go-review.googlesource.com/c/go/+/350159 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Tobias Klauser <tob...
[ { "path": "misc/cgo/testgodefs/testdata/issue48396.go", "patch": "@@ -0,0 +1,18 @@\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+// +build ignore\n+\n+package main\n+\n+/*\n+// from ...
2021-09-15T23:11:37
electron/electron
19436358fb91638bedacd5309ed537d7c8b017e9
2cb1aa663915eabc767dddacd964679a6e522d0f
win: Fix setContentSize changing window position Close #1934.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -945,6 +945,7 @@ void NativeWindowViews::RegisterAccelerators(ui::MenuModel* menu_model) {\n \n gfx::Rect NativeWindowViews::ContentBoundsToWindowBounds(\n const gfx::Rect& bounds) {\n+ gfx::Point origin = bounds.origin();\n #if defined(OS_W...
2015-06-18T08:17:13
nodejs/node
83d6cb98ecf6efc0792b174265a4580b31f4b3eb
9efcfd313ad965f04d26abe33468569a82815485
process: fix omitting `--` from `process.execArgv` This was essentially a typo that went unnoticed because we didn’t have tests for this particular situation. Fixes: https://github.com/nodejs/node/issues/24647 PR-URL: https://github.com/nodejs/node/pull/24654 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By:...
[ { "path": "src/node_options-inl.h", "patch": "@@ -253,7 +253,7 @@ struct ArgsInfo {\n // on the command line (i.e. not generated through alias expansion).\n // '--' is a special case here since its purpose is to end `exec_argv`,\n // which is why we do not include it.\n- if (exec_args...
2018-11-26T10:40:09
huggingface/transformers
9f38763731178290a3a4b8a8c9999ffb9b6bd120
f72311796b2bf60e0c697545b45cf4ff26665e94
🌐 [i18n-KO] Translated `pipeline_gradio.md` to Korean (#39520) * docs: ko: pipeline_gradio.md * feat: nmt draft * fix: manual edits * docs: ko: pipeline_gradio.md
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -50,8 +50,8 @@\n - sections:\n - local: pipeline_tutorial\n title: Pipeline으로 추론하기\n- - local: in_translation\n- title: (번역중) Machine learning apps\n+ - local: pipeline_gradio\n+ title: 머신러닝 앱\n - local: pipeline_webserver...
2025-07-29T15:04:30
vercel/next.js
62a0da2398f62006671798cdb840af08fed1a2cb
898b526a81c48525ab82d5672d25528345db462a
debug print errors for nested vcs (vercel/turbo#4026) ### Description It's annoying to debug when the whole dbg will throw an error if any nested Vc is in error state. Instead we want to print the errors here. ### Testing Instructions <!-- Give a quick description of steps to test your changes. --> <!-- When t...
[ { "path": "crates/turbo-tasks-macros/src/derive/value_debug_format_macro.rs", "patch": "@@ -52,10 +52,24 @@ pub fn derive_value_debug_format(input: TokenStream) -> TokenStream {\n .into()\n }\n \n+/// Formats a single field nested inside named or unnamed fields.\n+fn format_field(value: TokenStream2) ->...
2023-03-02T08:09:15
electron/electron
c8eaaaea83bec692060c131c997e1480856981fd
beb2853bbff52b385a46afa58d7cdbf04660277f
mac: Use NSFileManager::resultingItemURL for moving file to trash This allows the deleted file to be restored, fixes #2001.
[ { "path": "atom/common/platform_util_mac.mm", "patch": "@@ -140,17 +140,12 @@ bool OpenExternal(const GURL& url) {\n }\n \n bool MoveItemToTrash(const base::FilePath& full_path) {\n- DCHECK([NSThread isMainThread]);\n NSString* path_string = base::SysUTF8ToNSString(full_path.value());\n- NSArray* file_a...
2015-06-18T05:09:02
rust-lang/rust
7ec351ec7caa66ed4ef141f670dd4795692fd1c1
711546a329170d741a1f422063d7082e8d8a75e5
Back out "Fix IDE resolution of item macros" This backs out commit 3e0ab7219a5464999652beca22698cd46e1e48e8.
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/db.rs", "patch": "@@ -422,7 +422,6 @@ fn macro_def(db: &dyn DefDatabase, id: MacroId) -> MacroDefId {\n let makro = &item_tree[loc.id.value];\n MacroDefId {\n krate: loc.container.krate,\n- block: lo...
2025-05-28T05:06:03
huggingface/transformers
f72311796b2bf60e0c697545b45cf4ff26665e94
d346d46752a5cf022bd6eefc81d3ac7b213da532
🌐 [i18n-KO] Translated `tokenizer.md` to Korean (#39532) * docs: ko: tokenizer.md * feat: nmt draft * fix: manual edits * fix: resolve suggestions Co-authored-by: Yijun Lee <yijun-lee@users.noreply.github.com> Co-authored-by: Yijun Lee <119404328+yijun-lee@users.noreply.github.com> * fix: resolve suggestions ...
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -336,8 +336,8 @@\n title: PEFT\n - local: in_translation\n title: (번역중) Pipelines\n- - local: in_translation\n- title: (번역중) Processors\n+ - local: main_classes/tokenizer\n+ title: 토크나이저\n - local: main_classes/quantiz...
2025-07-29T15:04:14
vercel/next.js
d2cbf8c4e0fd23dbe4edc495f9f8ddc9140a3304
262501eb6856f86e4d90f7cbd5b0aa81b7b88a10
Fix the doc on how to use the turbo loader in option-less format (#46665) ## 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 - [ ] Implem...
[ { "path": "docs/api-reference/next.config.js/turbopack.md", "patch": "@@ -27,7 +27,7 @@ module.exports = {\n },\n ],\n // Option-less format\n- '.mdx': '@mdx-js/loader',\n+ '.mdx': ['@mdx-js/loader'],\n },\n },\n },", "additions": 1, "deletions": 1...
2023-03-02T06:40:50
rust-lang/rust
cfe488c7a0bf154dd060404b35d55a482c307817
f67ee9c7defc2fcde73c92cbe64c2bb139fcb483
fix: Fix IDE layer not resolving some macro calls
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/nameres/assoc.rs", "patch": "@@ -75,7 +75,7 @@ impl TraitItems {\n })\n }\n \n- pub fn attribute_calls(&self) -> impl Iterator<Item = (AstId<ast::Item>, MacroCallId)> + '_ {\n+ pub fn macro_calls(&self) -> impl Iterator<Item = (AstId<as...
2025-05-28T04:56:48
golang/go
4efdaa7bc7220fad0177842d0009285ca429a823
e09dcc211a338450d3f680fe39abc13b79ddbb29
testing: skip panics when picking the line number for decoration Fixes #31154 Change-Id: I4cfd98b5e79f1abdc93044fb66855ac2cc0a9a49 Reviewed-on: https://go-review.googlesource.com/c/go/+/345909 Run-TryBot: Caleb Spare <cespare@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@gola...
[ { "path": "src/testing/helper_test.go", "patch": "@@ -33,6 +33,9 @@ helperfuncs_test.go:45: 5\n helperfuncs_test.go:21: 6\n helperfuncs_test.go:44: 7\n helperfuncs_test.go:56: 8\n+--- FAIL: Test/sub2 (?s)\n+helperfuncs_test.go:71: 11\n+helperfuncs_test.go:75: recover 12\n helperfuncs_test.go:64: 9\n helperf...
2021-08-28T23:06:43
electron/electron
db8ffe1dc71024c4096251007c118cb0261bed58
ad593936419721a9faa4bcaa78a719b8dcbfc742
Handle ".." in asar path, fix #1982
[ { "path": "atom/common/lib/asar.coffee", "patch": "@@ -20,6 +20,7 @@ process.on 'exit', ->\n splitPath = (p) ->\n return [false] if typeof p isnt 'string'\n return [true, p, ''] if p.substr(-5) is '.asar'\n+ p = path.normalize p\n index = p.lastIndexOf \".asar#{path.sep}\"\n return [false] if index...
2015-06-17T07:52:29
huggingface/transformers
d346d46752a5cf022bd6eefc81d3ac7b213da532
2f59c15b336c10a5920b52929446145f758bc2f8
🌐 [i18n-KO] Translated `tvp.md` to Korean (#39578) * docs: ko: tvp.md * feat: nmt draft * fix: manual edits * fix: manual edits * fix: manual edits * fix: manual edits * fix: manual edits Co-authored-by: Harheem Kim <49297157+harheem@users.noreply.github.com> --------- Co-authored-by: Harheem Kim <49297157+h...
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -1155,4 +1155,4 @@\n - local: in_translation\n title: (번역중)Environment Variables\n title: Reference\n- title: API\n+ title: API\n\\ No newline at end of file", "additions": 1, "deletions": 1, "language": "YAML" }, { "p...
2025-07-29T15:04:00
vercel/next.js
b920d343a3a4c1ca27491641083b07d7e74f5192
752794f63801de3445c3a9bdd443168201b07413
fix(route_matcher): do not include empty segment (vercel/turbo#4037) ### Description Closes WEB-674 if a matcher tries to split path have a slash like `/x/y`, split gives a redundant empty segment `["", 'x', 'y']`.
[ { "path": "packages/next-swc/crates/next-core/src/next_route_matcher/path_regex.rs", "patch": "@@ -93,7 +93,7 @@ impl PathRegexBuilder {\n R: AsRef<str>,\n {\n self.push_str(if self.include_slash() {\n- \"(/[^?]+)?\"\n+ \"(?:/([^?]+))?\"\n } else {\n ...
2023-03-02T06:03:53
rust-lang/rust
adcd0bf5c36ee49acf390f0d75125da4efda35ac
0fc6f1672bdde8163164f10e46d2d9ffcaeb2161
Fix ICE in tokenstream with contracts from parser recovery
[ { "path": "compiler/rustc_parse/src/parser/stmt.rs", "patch": "@@ -515,8 +515,8 @@ impl<'a> Parser<'a> {\n fn error_block_no_opening_brace_msg(&mut self, msg: Cow<'static, str>) -> Diag<'a> {\n let prev = self.prev_token.span;\n let sp = self.token.span;\n- let mut e = self.dcx()....
2025-05-28T01:34:08
golang/go
5402b4376c0c51a31ea9c5ccf16b449a6ab3e79f
d09e09bc615a50e9f2f1144991ebeba08a7c6f05
spec: fix incorrect type in a shift example Thanks to @bodar (Github) for finding this. Fixes #48422. Change-Id: I031c3d82a02db1d204e2b86b494d89784d37f073 Reviewed-on: https://go-review.googlesource.com/c/go/+/350409 Trust: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Griesemer <gri@golang.org> Reviewed-by: ...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Sep 14, 2021\",\n+\t\"Subtitle\": \"Version of Sep 16, 2021\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -3614,7 +3614,7 @@ <h3 id=\"Operators\">Operat...
2021-09-16T22:00:47
electron/electron
c2aa7d538fc56774164887da32041b08aa2d0cdf
1d4190377901ff5d6b462498de884374f1e4e339
Fix cpplint warnings
[ { "path": "atom/browser/net/url_request_fetch_job.cc", "patch": "@@ -5,6 +5,7 @@\n #include \"atom/browser/net/url_request_fetch_job.h\"\n \n #include <algorithm>\n+#include <string>\n \n #include \"atom/browser/atom_browser_context.h\"\n #include \"base/strings/string_util.h\"\n@@ -93,10 +94,11 @@ URLReque...
2015-06-17T03:34:47
nodejs/node
9920dbcaf389901786aeb31d2feb886dfd3f073b
2c473d65a4ef77d4f7880993503852ab2c7137ca
build, tools, win: add .S files support to GYP Makes GYP properly handle .S files. Fixes: https://github.com/nodejs/node-v8/issues/89 PR-URL: https://github.com/nodejs/node/pull/24553 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@adda...
[ { "path": "tools/gyp/pylib/gyp/generator/msvs.py", "patch": "@@ -2156,6 +2156,7 @@ def _MapFileToMsBuildSourceType(source, rule_dependencies,\n A pair of (group this file should be part of, the label of element)\n \"\"\"\n _, ext = os.path.splitext(source)\n+ ext = ext.lower()\n if ext in exten...
2018-11-21T13:28:24
huggingface/transformers
2f59c15b336c10a5920b52929446145f758bc2f8
98386dcee94655b20d9a1b1c9b9e63019e249db4
🌐 [i18n-KO] Translated albert.md to Korean (#39524) * docs: ko: albert.md * feat: nmt draft * fix: manual edits
[ { "path": "docs/source/ko/model_doc/albert.md", "patch": "@@ -0,0 +1,263 @@\n+<!--Copyright 2020 The HuggingFace Team. All rights reserved.\n+\n+Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with\n+the License. You may obtain a copy of the L...
2025-07-29T15:03:40
electron/electron
57580e00f9d05e94889b2a64bcf06b133bfb7656
93bbc6c8109ce95990fcdfe5a5c73070507b96a0
Fix code style.
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -138,7 +138,6 @@ WebContents::WebContents(const mate::Dictionary& options)\n inspectable_web_contents_ = managed_web_contents();\n \n Observe(GetWebContents());\n- printing::PrintPreviewMessageHandler::CreateForWebContents(web_contents...
2015-06-13T08:02:16
vercel/next.js
5dbe5c90f4e6561a3b662de87a6b2abf5c93f234
5838038612fb1d5941f5127f7cedd4bb9786c8b1
fix(route_matcher): do not include empty segment (vercel/turbo#4037) ### Description Closes WEB-674 if a matcher tries to split path have a slash like `/x/y`, split gives a redundant empty segment `["", 'x', 'y']`.
[ { "path": "crates/next-core/src/next_route_matcher/path_regex.rs", "patch": "@@ -93,7 +93,7 @@ impl PathRegexBuilder {\n R: AsRef<str>,\n {\n self.push_str(if self.include_slash() {\n- \"(/[^?]+)?\"\n+ \"(?:/([^?]+))?\"\n } else {\n \"([^?]+)?\"\...
2023-03-02T06:03:53
huggingface/transformers
98386dcee94655b20d9a1b1c9b9e63019e249db4
1ad216bd7dced23e7e38ab4881a9528486588bd0
🌐 [i18n-KO] Translated `main_classes/peft.md` (#39515) * docs: ko: main_classes/peft.md * feat: nmt draft * docs: add missing TOC to documentation for `PeftAdapterMixin` section Added a table of contents (TOC) to the documentation, specifically for the `transformers.integrations.PeftAdapterMixin` section, followin...
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -332,8 +332,8 @@\n title: (번역중) Optimization\n - local: main_classes/output\n title: 모델 출력\n- - local: in_translation\n- title: (번역중) PEFT\n+ - local: main_classes/peft\n+ title: PEFT\n - local: in_translation\n ...
2025-07-29T15:03:17
nodejs/node
d12d023df43084d118ab196054fac57ec1dfb81a
c481799d72cb1fd496c0747fba870afb275d36b0
test: fix the arguments order in assert.strictEqual I working at "Code and Learn" on Node fest 2018 in Japan. Refs: https://github.com/nodejs/node/pull/24431 PR-URL: https://github.com/nodejs/node/pull/24624 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed...
[ { "path": "test/parallel/test-fs-write-string-coerce.js", "patch": "@@ -17,12 +17,12 @@ fs.open(fn, 'w', 0o644, common.mustCall(function(err, fd) {\n fs.write(fd, data, 0, 'utf8', common.mustCall(function(err, written) {\n console.log('write done');\n assert.ifError(err);\n- assert.strictEqual(...
2018-11-24T08:11:57
rust-lang/rust
56b669cd7adcc413bb1e64c3d2d7c347a82ae35a
45f256d9d7cffb66185c0bf1b8a864cba79db90c
Disable libunwind cross-architecture unwinding Building with _LIBUNWIND_IS_NATIVE_ONLY disables code for cross-architecture unwinding it is disabled by default in LLVM [1], replicate the cmake behavior in bootstrap process It also enables some additional code that handles PAC-specific unwind info it helps compiling w...
[ { "path": "src/bootstrap/src/core/build_steps/llvm.rs", "patch": "@@ -1430,6 +1430,7 @@ impl Step for Libunwind {\n cfg.flag(\"-funwind-tables\");\n cfg.flag(\"-fvisibility=hidden\");\n cfg.define(\"_LIBUNWIND_DISABLE_VISIBILITY_ANNOTATIONS\", None);\n+ cfg.def...
2025-05-22T01:47:09
electron/electron
894f9c0cb0b62244745707cc9775babb5f2593e8
f22662ffb20c1bed88fc4b0d18f9dcd47e15d200
Don't use duprecated node buffer api, fix build error on OS X.
[ { "path": "chromium_src/chrome/browser/printing/print_preview_message_handler.cc", "patch": "@@ -128,6 +128,7 @@ void PrintPreviewMessageHandler::RunPrintToPDFCallback(\n v8::HandleScope handle_scope(isolate);\n if (data) {\n v8::Local<v8::Value> buffer = node::Buffer::Use(\n+ isolate,\n ...
2015-06-11T07:52:48
vercel/next.js
5838038612fb1d5941f5127f7cedd4bb9786c8b1
bc0b6d4396e0c03652d045ddd41f7cdcdb29f93d
feat(devserver/http): support gzipped responses (vercel/turbo#4011) Implements WEB-666. This PR enables gzip compressions for the responses by default. This can be extended to other compression method (i.e brotli), but for now implements minimal default compression only to pass existing test case. Fixes `test/integr...
[ { "path": "crates/turbopack-dev-server/Cargo.toml", "patch": "@@ -11,6 +11,7 @@ bench = false\n \n [dependencies]\n anyhow = \"1.0.47\"\n+async-compression = { workspace = true }\n futures = \"0.3.25\"\n hyper = { version = \"0.14\", features = [\"full\"] }\n hyper-tungstenite = \"0.8.1\"\n@@ -25,6 +26,7 @@...
2023-03-02T05:39:18
golang/go
d09e09bc615a50e9f2f1144991ebeba08a7c6f05
bcdc61d830be61fd5f371f4eb9c345f8dc9ada55
cmd/compile: fixing writebarrier.go for -G=3 This is caused by some nodes didn't carry the real line number. Noder1 wraps these node with ir.ParenExpr. To fix this issue, wraps this node like what noder1 does. Change-Id: I212cad09b93b8bf1a7adfad416d229d15711918a Reviewed-on: https://go-review.googlesource.com/c/go/+/...
[ { "path": "src/cmd/compile/internal/noder/expr.go", "patch": "@@ -390,9 +390,10 @@ func (g *irgen) compLit(typ types2.Type, lit *syntax.CompositeLit) ir.Node {\n \t\t\t} else {\n \t\t\t\tkey = g.expr(elem.Key)\n \t\t\t}\n-\t\t\texprs[i] = ir.NewKeyExpr(g.pos(elem), key, g.expr(elem.Value))\n+\t\t\tvalue := ...
2021-09-14T05:37:21
huggingface/transformers
1ad216bd7dced23e7e38ab4881a9528486588bd0
379209b603e4dedeb8a3c4c1c808240a23ad9d51
[modenbert] fix regression (#39750) * fix regression * add FA2 test
[ { "path": "src/transformers/models/modernbert/modeling_modernbert.py", "patch": "@@ -19,6 +19,7 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+import copy\n import math\n from contextlib import nullcontext\n from typing import Optional, Uni...
2025-07-29T14:58:59
nodejs/node
c481799d72cb1fd496c0747fba870afb275d36b0
5e2ecd40bcd2af919848451fbbe600b68ee7fd86
test: fix the arguments order in `assert.strictEqual` PR-URL: https://github.com/nodejs/node/pull/24626 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daijiro W...
[ { "path": "test/parallel/test-http-request-end.js", "patch": "@@ -35,7 +35,7 @@ const server = http.Server(function(req, res) {\n });\n \n req.on('end', function() {\n- assert.strictEqual(expected, result);\n+ assert.strictEqual(result, expected);\n server.close();\n res.writeHead(200);\n ...
2018-11-24T08:13:22
electron/electron
559eb20e7fcad0e0c449179edd23ed54fd04936c
ccbe554ec004587b1036025139a8780dbc8ae840
Fixing type: printBackgrounds => printBackground
[ { "path": "atom/browser/api/lib/web-contents.coffee", "patch": "@@ -97,7 +97,7 @@ wrapWebContents = (webContents) ->\n if options.printSelectionOnly\n printingSetting.shouldPrintSelectionOnly = options.printSelectionOnly\n if options.printBackgrounds\n- printingSetting.shouldPrintBackgrou...
2015-06-11T06:43:45
vercel/next.js
8545d66662a748d73866f6adc3ac265d0c98fd26
2e23cd7535acd8648b9949475599d022d4f3a862
Use separate workers for webpackBuildWorker (#46666) This updates our experimental `webpackBuildWorker` config to use separate process for each compilation to reduce memory usage building up from all compilers sharing same process. x-ref: [slack thread](https://vercel.slack.com/archives/C04S835KUC9) ## Bug ...
[ { "path": "packages/next/src/build/build-context.ts", "patch": "@@ -5,13 +5,30 @@ import type { __ApiPreviewProps } from '../server/api-utils'\n import type { NextConfigComplete } from '../server/config-shared'\n import type { Span } from '../trace'\n import type getBaseWebpackConfig from './webpack-config'...
2023-03-02T03:34:48
golang/go
bcdc61d830be61fd5f371f4eb9c345f8dc9ada55
48e2b1ea91171f4fcb56cc521368969e586f033f
cmd/compile: preserve statements better in expandCalls Arg/Load/Dereference rewriting was not using the best Pos for translated values. I also investigated whether OpCopy processing was losing statements, and though they flood the debugging output, doing the "obvious" thing of moving statement marks from copi-er to c...
[ { "path": "src/cmd/compile/internal/ssa/expand_calls.go", "patch": "@@ -176,7 +176,7 @@ func (c *registerCursor) hasRegs() bool {\n type expandState struct {\n \tf *Func\n \tabi1 *abi.ABIConfig\n-\tdebug bool\n+\tdebug int // odd values log lost state...
2021-08-23T21:19:34
huggingface/transformers
abf101af1f84078cf8edc7dcab8c2cc1ed72f65f
8db4d791618d396dba72742534ac456e5b9b5318
Fix version issue in modeling_utils.py (#39759) fix version issue
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2881,9 +2881,7 @@ def _init_weights(self, module):\n # We cannot use `isinstance` on the RMSNorms or LayerNorms, as they usually are custom modules which change names\n # between modelings (because they are prefixed with the model...
2025-07-29T14:15:30
nodejs/node
8344f2458111904ad1de4ce08ffd9b4360ce81ed
64cea5a1acc250d852d183e2eece8b3c0fdcc90f
test: validate fs.rename() when NODE_TEST_DIR on separate mount When testing fs.rename() of an non-existent file, use a destination path which is in the same directory. Otherwise we might trigger an `EXDEV` error if NODE_TEST_DIR is a separate device than the current working directory. Fixes: https://github.com/nodej...
[ { "path": "test/parallel/test-fs-error-messages.js", "patch": "@@ -299,10 +299,11 @@ function re(literals, ...values) {\n return true;\n };\n \n- fs.rename(nonexistentFile, 'foo', common.mustCall(validateError));\n+ const destFile = path.join(tmpdir.path, 'foo');\n+ fs.rename(nonexistentFile, destF...
2018-11-28T20:55:36
electron/electron
47439cd77c95a535bdd52f7d602b412f387dff7b
ac62871645df7bec445312a5a290fbbc4b390a77
Fix a type error.
[ { "path": "atom/browser/api/lib/web-contents.coffee", "patch": "@@ -96,7 +96,7 @@ wrapWebContents = (webContents) ->\n printingSetting.marginsType = options.marginsType\n if options.printSelectionOnly\n printingSetting.shouldPrintSelectionOnly = options.printSelectionOnly\n- if options.pr...
2015-06-10T07:43:33
vercel/next.js
2e23cd7535acd8648b9949475599d022d4f3a862
7bf5dcbbbf83b96f2fd1da31288a371c17792e47
Add script to automate updating vendored React version (#46663) Since we intend to update our vendored copy of React frequently, I wrote a script to automate the steps. Basic usage (defaults to most recent React canary version): ```sh pnpm run sync-react ``` Specify a canary version: ```sh pnpm run syn...
[ { "path": "package.json", "patch": "@@ -48,7 +48,8 @@\n \"debug\": \"cross-env NEXT_TELEMETRY_DISABLED=1 node --inspect packages/next/dist/bin/next\",\n \"postinstall\": \"git config feature.manyFiles true && node scripts/install-native.mjs\",\n \"version\": \"npx pnpm@7.24.3 install && IS_PUBLI...
2023-03-02T02:15:02
huggingface/transformers
8db4d791618d396dba72742534ac456e5b9b5318
fb141e2c906066453dd8be59deade90c9fdf8264
Enable xpu allocator on caching_allocator_warmup (#39654) * add xpu allocator Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix typo Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix variable name Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * rm useless default value Signed-off-by: jiqing-f...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -6021,19 +6021,22 @@ def caching_allocator_warmup(model: PreTrainedModel, expanded_device_map: dict,\n \n # This will kick off the caching allocator to avoid having to Malloc afterwards\n for device, byte_count in total_byte_count.items():...
2025-07-29T14:06:52
golang/go
48e2b1ea91171f4fcb56cc521368969e586f033f
b1bedc0774d8a3a7ff8778e933ee92e8638e9493
cmd/compile: fix LocResults formatting When a LocResults is an empty list, it currently prints as ">". Make it print "<>". Change-Id: I0f596791b471d74cd4bbc0059e269708c80592dd Reviewed-on: https://go-review.googlesource.com/c/go/+/350144 Trust: Cherry Mui <cherryyz@google.com> Run-TryBot: Cherry Mui <cherryyz@google....
[ { "path": "src/cmd/compile/internal/ssa/location.go", "patch": "@@ -91,8 +91,8 @@ func (t LocPair) String() string {\n type LocResults []Location\n \n func (t LocResults) String() string {\n-\ts := \"<\"\n-\ta := \"\"\n+\ts := \"\"\n+\ta := \"<\"\n \tfor _, r := range t {\n \t\ta += s\n \t\ts = \",\"", ...
2021-09-13T20:23:28
nodejs/node
063e8fbe781ceff44dda633e116639ed7bb9eb1d
f051737ee4ebb7dfa25abc91f7a4797bd8fe0cb6
doc: describe current HTTP header size limit Document that the limit was changed from 80KB to 8KB in 186035243. Fixes: https://github.com/nodejs/node/issues/24693 PR-URL: https://github.com/nodejs/node/pull/24700 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.c...
[ { "path": "doc/api/errors.md", "patch": "@@ -1880,9 +1880,15 @@ Creation of a [`zlib`][] object failed due to incorrect configuration.\n \n <a id=\"HPE_HEADER_OVERFLOW\"></a>\n ### HPE_HEADER_OVERFLOW\n+<!-- YAML\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/commit/1860352...
2018-11-28T17:02:17
huggingface/transformers
fb141e2c906066453dd8be59deade90c9fdf8264
ccb2e0e03b41429eeede933f38c80e36fcee772f
Support loading Qwen3 MoE GGUF (#39638) * support loading qwen3 gguf * qwen3moe test cases * fix whitespaces * fix ggml tests
[ { "path": "src/transformers/integrations/ggml.py", "patch": "@@ -102,6 +102,20 @@\n \"attention.layer_norm_rms_epsilon\": \"rms_norm_eps\",\n \"vocab_size\": \"vocab_size\",\n },\n+ \"qwen3moe\": {\n+ \"context_length\": \"max_position_embeddings\",\n+ \"block_count\": \...
2025-07-29T13:44:44
vercel/next.js
7bf5dcbbbf83b96f2fd1da31288a371c17792e47
63d81de6bc01ecc44016c8339ba0fee3e5f84437
Refactor and add more tests to next/font/local (#46627) Refactor the logic of picking the font file to use for the font fallback generation. Add additional tests that checks that the correct font file is picked. Also adds more comments explaining the logic and assumptions behind the functions. ## Bug - [ ] Re...
[ { "path": "jest.config.js", "patch": "@@ -9,7 +9,11 @@ const customJestConfig = {\n setupFilesAfterEnv: ['<rootDir>/jest-setup-after-env.ts'],\n verbose: true,\n rootDir: 'test',\n- roots: ['<rootDir>', '<rootDir>/../packages/next/src/'],\n+ roots: [\n+ '<rootDir>',\n+ '<rootDir>/../packages/n...
2023-03-01T23:31:45
electron/electron
10da361db12a5898e9f233536544f0d6770ef5f8
36fa4da25217b6248ffe87e4b1fc0f84e231482f
Fix a type error in checking function options.
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -433,7 +433,7 @@ void Window::Print(mate::Arguments* args) {\n void Window::PrintToPDF(mate::Arguments* args) {\n mate::Dictionary options;\n base::Callback<void(int)> callback;\n- if (!(args->Length() == 1 && !args->GetNext(&callback)) &&\n...
2015-06-01T09:08:15
huggingface/transformers
ccb2e0e03b41429eeede933f38c80e36fcee772f
dfd616e658527d809b7d1d351a6b9c6f3c498096
Fix GPT2 with cross attention (#39754) * fix * use new mask API * style * fix copies and attention tests * fix head pruning tests
[ { "path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py", "patch": "@@ -268,53 +268,62 @@ def forward(\n **kwargs,\n ) -> tuple[Union[torch.Tensor, tuple[torch.Tensor]], ...]:\n is_cross_attention = encoder_hidden_states is not None\n+ if past_key_...
2025-07-29T13:40:31
nodejs/node
f051737ee4ebb7dfa25abc91f7a4797bd8fe0cb6
804138093abb2c63cfaba5ee058e18df19b38f3e
test: test and docs for detached fork process This tests child process fork component in detached mode by spawning a parent process that creates a child process. We kill the parent process and check if the child is still running. Fixes: https://github.com/nodejs/node/issues/17592 PR-URL: https://github.com/nodejs/no...
[ { "path": "doc/api/child_process.md", "patch": "@@ -325,6 +325,9 @@ changes:\n * `args` {string[]} List of string arguments.\n * `options` {Object}\n * `cwd` {string} Current working directory of the child process.\n+ * `detached` {boolean} Prepare child to run independently of its parent\n+ process. ...
2018-11-20T16:16:40
golang/go
04f5116c987082a834a29e81c81ece8537d87219
e7dbe3908e17ec77851161e6cb98c7161823aa0d
cmd/go: clean paths before checking same directory Replace `filepath.Split` with `filepath.Dir`. Clean paths before checking whether command line files are in same directory. Fixes #47392 Change-Id: I259c3024e7670e78833622b02af4710bc4b68b31 GitHub-Last-Rev: c7c4905bb9c62737e95a4663813f076ee540046b GitHub-Pull-Reque...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -2674,10 +2674,7 @@ func GoFilesPackage(ctx context.Context, opts PackageOpts, gofiles []string) *Pa\n \t\tif fi.IsDir() {\n \t\t\tbase.Fatalf(\"%s is a directory, should be a Go file\", file)\n \t\t}\n-\t\tdir1, _ := filepath.Split(file)\n-\t\tif di...
2021-09-16T07:10:58
vercel/next.js
63d81de6bc01ecc44016c8339ba0fee3e5f84437
c62791294e5e3e26752c63c8f4e4d54ba1f795c3
test: add preconnect tests and move error tests (#46652) * Add tests for `ReactDOM.preconnect | prefetchDNS | preload` usage * Move mutate erroring tests to rsc-build-errors test suite
[ { "path": "test/development/acceptance-app/fixtures/rsc-build-errors/app/metadata/mutate/page.js", "patch": "@@ -0,0 +1,11 @@\n+export default function page(props) {\n+ return <p>mutate</p>\n+}\n+\n+export async function generateMetadata(props, parent) {\n+ const parentMetadata = await parent\n+\n+ retur...
2023-03-01T23:09:16
electron/electron
36fa4da25217b6248ffe87e4b1fc0f84e231482f
68005f9ad4693bf761f2a983014ff71390107ee3
Fix Linux compilation error.
[ { "path": "chromium_src/chrome/renderer/printing/print_web_view_helper_linux.cc", "patch": "@@ -24,6 +24,36 @@ namespace printing {\n \n using blink::WebFrame;\n \n+bool PrintWebViewHelper::RenderPreviewPage(\n+ int page_number,\n+ const PrintMsg_Print_Params& print_params) {\n+ PrintMsg_PrintPage_Pa...
2015-06-01T06:58:15
huggingface/transformers
dfd616e658527d809b7d1d351a6b9c6f3c498096
65df73aa8868da48c71ed42ce008f7f09be03e2b
Avoid OOM when other tests are failing (#39758) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/musicgen_melody/test_modeling_musicgen_melody.py", "patch": "@@ -31,6 +31,7 @@\n )\n from transformers.testing_utils import (\n Expectations,\n+ cleanup,\n get_device_properties,\n is_torch_available,\n is_torchaudio_available,\n@@ -1256,6 +1257,12 @@ class Musicge...
2025-07-29T13:35:44
nodejs/node
acedf1a55a0a1712a5b06babc34694ef718275ef
333783643e71aeef3940fae215e7cf52ef00d5f0
doc: fix nits in http(s) server.headersTimeout * Fix sort orders of sections and bottom references. * Fix links. * Unify spelling. * Add missing YAML block. PR-URL: https://github.com/nodejs/node/pull/24697 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anto Aravinth <...
[ { "path": "doc/api/http.md", "patch": "@@ -937,6 +937,26 @@ added: v0.1.90\n \n Stops the server from accepting new connections. See [`net.Server.close()`][].\n \n+### server.headersTimeout\n+<!-- YAML\n+added: v11.3.0\n+-->\n+\n+* {number} **Default:** `40000`\n+\n+Limit the amount of time the parser will ...
2018-11-28T14:48:07
golang/go
5ed7dd0650cf32edd000d2268df961e2b825aab4
4304cf62e9ba6a85e37d5fec33cfa580ce7ac6d1
[dev.fuzz] internal/fuzz: rework default test behavior before fuzzing This change refactors some of the code to support skipping a run of the seed corpus by the go command before runFuzzing occurs. Previously, the go command would run all seed corpus for all targets that match the provided `run` argument. This will be...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_mutator.txt", "patch": "@@ -78,6 +78,7 @@ package main\n \n import (\n \t\"bufio\"\n+\t\"bytes\"\n \t\"fmt\"\n \t\"io\"\n \t\"os\"\n@@ -111,34 +112,11 @@ func main() {\n }\n \n func checkCoordLog(r io.Reader) error {\n-\tscan := bufio.NewScanner(r)\n-\tvar saw...
2021-09-13T16:23:43
vercel/next.js
c62791294e5e3e26752c63c8f4e4d54ba1f795c3
5e112c062ee15fa9280b4cca9be23d3217e2df84
Ensure default config passes schema checks (#46656) This ensures our config schema correctly validates with the default config we provide. Fixes: https://github.com/vercel/next.js/issues/46626 ## Bug - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful...
[ { "path": "packages/next/src/server/config-schema.ts", "patch": "@@ -11,7 +11,7 @@ const configSchema = {\n additionalProperties: false,\n properties: {\n canonicalBase: {\n- minLength: 1,\n+ nullable: true,\n type: 'string',\n },\n },\n@@ -21,7 ...
2023-03-01T22:45:58
electron/electron
68005f9ad4693bf761f2a983014ff71390107ee3
bf5d448e37086aba4e410a579cfc415636a59af5
Fix OS X compilation error.
[ { "path": "chromium_src/chrome/renderer/printing/print_web_view_helper_mac.mm", "patch": "@@ -50,6 +50,47 @@\n Send(new PrintHostMsg_DidPrintPage(routing_id(), page_params));\n }\n \n+bool PrintWebViewHelper::RenderPreviewPage(\n+ int page_number,\n+ const PrintMsg_Print_Params& print_params) {\n+ ...
2015-06-01T06:14:33
huggingface/transformers
65df73aa8868da48c71ed42ce008f7f09be03e2b
63b32007795e2ee33652127f96c792d8e8cfa7fc
AMD disable torchcodec (#39757) Temporarily disable torchcodec installation because of bizarre segfault
[ { "path": "docker/transformers-pytorch-amd-gpu/Dockerfile", "patch": "@@ -21,7 +21,7 @@ ADD https://api.github.com/repos/huggingface/transformers/git/refs/heads/main ve\n RUN git clone https://github.com/huggingface/transformers && cd transformers && git checkout $REF\n \n # On ROCm, torchcodec is required ...
2025-07-29T13:07:25
nodejs/node
333783643e71aeef3940fae215e7cf52ef00d5f0
8ce0d4fdf15d4ffdc4cf13f1db44eb1f7556741f
console: lazy load process.stderr and process.stdout This patch: - Refactors the Console constructor: moves the property binding code into and the writable streams binding code into two methods defined on the Console.prototype with symbols. - Refactors the global console creation: we only need to share the prop...
[ { "path": "lib/console.js", "patch": "@@ -65,7 +65,15 @@ const kFormatForStdout = Symbol('kFormatForStdout');\n const kGetInspectOptions = Symbol('kGetInspectOptions');\n const kColorMode = Symbol('kColorMode');\n const kIsConsole = Symbol('kIsConsole');\n-\n+const kWriteToConsole = Symbol('kWriteToConsole'...
2018-11-20T23:31:25
golang/go
03df68d3c33e83a23cf5f22389a37f2d09721bef
6196979365ec6b527b3731c9ec13d7ddfe429f86
runtime: fix setting of cpu features for amd64 Because of wrong case of letters, the cpu features flags were not set properly for amd64. Fixes #48406. Change-Id: If19782851670e91fd31d119f4701c47373fa7e71 GitHub-Last-Rev: 91c7321ca49343c86917f071babec8a004ca5c77 GitHub-Pull-Request: golang/go#48403 Reviewed-on: https...
[ { "path": "src/runtime/proc.go", "patch": "@@ -623,7 +623,7 @@ func cpuinit() {\n \t// Support cpu feature variables are used in code generated by the compiler\n \t// to guard execution of instructions that can not be assumed to be always supported.\n \tswitch GOARCH {\n-\tcase \"386\", \"AMD64\":\n+\tcase ...
2021-09-15T18:37:08
vercel/next.js
5e112c062ee15fa9280b4cca9be23d3217e2df84
9720ba55bb2564c37255db59213015426d926f36
Updates `next/image` eslint message to denote that costs may be incurred. (#46640) Changes ESLint warning message to still encourage usage of `next/image` for the best experience, but also denoting that optimization could come with incurred costs. ## Feature - [x] Documentation added - [x] Errors have a helpf...
[ { "path": "errors/no-img-element.md", "patch": "@@ -1,16 +1,24 @@\n # No img element\n \n-> Prevent usage of `<img>` element to prevent layout shift and favor [optimized images](https://nextjs.org/docs/basic-features/image-optimization).\n+> Prevent usage of `<img>` element due to slower LCP and higher band...
2023-03-01T22:28:09
electron/electron
600077996c2607dd6b416f0e488c3876fa9d270e
cef177abc460cecd4fc9004f7f9497a222c1e13d
Fix a `landscape` option error.
[ { "path": "chromium_src/chrome/browser/printing/print_preview_message_handler.cc", "patch": "@@ -252,15 +252,14 @@ void PrintPreviewMessageHandler::HandleGetPreview(\n int margins_type = 0; // DEFAULT_MARGINS\n bool print_background = false;\n bool print_selection_only = false;\n- bool is_landscape =...
2015-06-01T03:45:03
nodejs/node
f351c5dd080582278e75a930e556bda674b0338f
60743638cc0c5b70bc2fc998ab4d0e13c59a26f7
test: fix arguments order in `assert.strictEqual` PR-URL: https://github.com/nodejs/node/pull/24607 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Masashi Hirano <shisama07@gmail.com>
[ { "path": "test/parallel/test-repl-envvars.js", "patch": "@@ -47,9 +47,9 @@ function run(test) {\n REPL.createInternalRepl(env, opts, function(err, repl) {\n assert.ifError(err);\n \n- assert.strictEqual(expected.terminal, repl.terminal,\n+ assert.strictEqual(repl.terminal, expected.terminal,\n ...
2018-11-24T07:36:59
golang/go
4304cf62e9ba6a85e37d5fec33cfa580ce7ac6d1
f53b61d38793dfa8987378cbb6754365569c261b
[dev.fuzz] testing: fix internal error exit condition for fuzz workers A fuzz worker process should exit with fuzzWorkerExitCode (70) if it encounters an internal error. This should generally only happen due to an I/O error on the worker side. I can't think of a way to write a realistic test case for this. test_fuzz_...
[ { "path": "src/testing/testing.go", "patch": "@@ -1635,7 +1635,7 @@ func (m *M) Run() (code int) {\n \t}\n \n \tfuzzingOk := runFuzzing(m.deps, m.fuzzTargets)\n-\tif !*isFuzzWorker && !fuzzingOk {\n+\tif !fuzzingOk {\n \t\tfmt.Println(\"FAIL\")\n \t\tif *isFuzzWorker {\n \t\t\tm.exitCode = fuzzWorkerExitCod...
2021-09-14T22:09:06
vercel/next.js
5cc9010277148d2db78e92076879ce193e6b6f33
dd2a1c693a2ec947a2bdd7831e3e60023101ccd9
fix: distDir in verifyTypeScriptSetup for nextLint (#46630) fixes #46611 this PR fixed customer dist type(`distDir` option in next.config.js) in `tsconfig.json` will be a hard coded absolute path issue which is a bug from PR #46249 since dist type only be added when user using app dir, to reproduce this issue ...
[ { "path": "packages/next/src/cli/next-lint.ts", "patch": "@@ -205,7 +205,7 @@ const nextLint: CliCommand = async (argv) => {\n \n await verifyTypeScriptSetup({\n dir: baseDir,\n- distDir,\n+ distDir: nextConfig.distDir,\n intentDirs: [pagesDir, appDir].filter(Boolean) as string[],\n type...
2023-03-01T22:01:45
huggingface/transformers
95faabf0a6cd845f4c5548697e288a79e424b096
cf97f6cfd1c9cff6f3f188e91b32dd3b2a1c5fae
Apply several ruff SIM rules (#37283) * Apply ruff SIM118 fix Signed-off-by: cyy <cyyever@outlook.com> * Apply ruff SIM910 fix Signed-off-by: cyy <cyyever@outlook.com> * Apply ruff SIM101 fix Signed-off-by: cyy <cyyever@outlook.com> * Format code Signed-off-by: cyy <cyyever@outlook.com> * More fixes Signed-...
[ { "path": "examples/flax/image-captioning/run_image_captioning_flax.py", "patch": "@@ -906,7 +906,7 @@ def decay_mask_fn(params):\n layer_norm_named_params = {\n layer[-2:]\n for layer_norm_name in layer_norm_candidates\n- for layer in flat_params.keys()\n+ ...
2025-07-29T11:40:34
rust-lang/rust
3e74af11f33c54677ee3883c99867f1f613ed86c
d8469bea64c29fabe2d8e022cadf3af18ed0c2cf
fix: code cleanup and renaming
[ { "path": "library/stdarch/crates/intrinsic-test/src/arm/compile.rs", "patch": "@@ -1,5 +1,5 @@\n use crate::common::compile_c::CompilationCommandBuilder;\n-use crate::common::gen_c::compile_c;\n+use crate::common::gen_c::compile_c_programs;\n \n pub fn compile_c_arm(\n intrinsics_name_list: &Vec<String...
2025-05-26T05:00:23
electron/electron
cef177abc460cecd4fc9004f7f9497a222c1e13d
8572ccb80733bab172e64d5c06814acc7d1b27ea
Add preview failed error.
[ { "path": "chromium_src/chrome/browser/printing/print_preview_message_handler.cc", "patch": "@@ -141,14 +141,11 @@ void PrintPreviewMessageHandler::OnMetafileReadyForPrinting(\n params.preview_request_id));\n }\n \n-//void PrintPreviewMessageHandler::OnPrintPreviewFailed(int document_cookie...
2015-06-01T03:08:40
nodejs/node
60743638cc0c5b70bc2fc998ab4d0e13c59a26f7
b8bd4b454fc0d8c574d24dc4fd6772da873574e4
test: fix arguments order in assert.strictEqual PR-URL: https://github.com/nodejs/node/pull/24608 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Masashi Hirano...
[ { "path": "test/parallel/test-http-pause.js", "patch": "@@ -71,6 +71,6 @@ server.listen(0, function() {\n });\n \n process.on('exit', () => {\n- assert.strictEqual(expectedServer, resultServer);\n- assert.strictEqual(expectedClient, resultClient);\n+ assert.strictEqual(resultServer, expectedServer);\n+ ...
2018-11-24T07:42:34
golang/go
f53b61d38793dfa8987378cbb6754365569c261b
739a42c1993a3a6b607a8349fbed3188da3e56e9
[dev.fuzz] internal: fuzzing output adjustments Print the elapsed time as a nicely formatted duration, and make small adjustments to the command line output while fuzzing. Fixes golang/go#48132 Change-Id: Id95f84c0939171a777448c444d9b87d7af26b654 Reviewed-on: https://go-review.googlesource.com/c/go/+/349970 Trust: K...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt", "patch": "@@ -23,14 +23,14 @@ stdout FAIL\n # Test that fuzzminimizetime can be zero seconds, and minimization is disabled\n ! go test -fuzz=FuzzMinimizeZeroDurationSet -run=FuzzMinimizeZeroDurationSet -fuzztime=10000x -fuzzminimizetime=0s minim...
2021-09-14T19:47:41
vercel/next.js
dd2a1c693a2ec947a2bdd7831e3e60023101ccd9
5c18e9ac92bbbe2e546cf74a951cdd95d6df3625
Add request callback in Flight client (#46650) Adding the `callServer` option to Flight client with a naive implementation. Fixes NEXT-393. ## Bug - [ ] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/ver...
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -66,6 +66,16 @@ const getCacheKey = () => {\n return pathname + search\n }\n \n+async function sha1(message: string) {\n+ const arrayBuffer = await crypto.subtle.digest(\n+ 'SHA-1',\n+ new TextEncoder().encode(message)\n+ )\n+ const...
2023-03-01T20:28:01
huggingface/transformers
cf97f6cfd1c9cff6f3f188e91b32dd3b2a1c5fae
66984ed4f6048e1a4b9de29c248d8f12647b785d
Fix mamba regression (#39728) * fix mamba regression * fix compile test
[ { "path": "src/transformers/models/falcon_mamba/configuration_falcon_mamba.py", "patch": "@@ -141,7 +141,12 @@ def __init__(\n self.layer_norm_epsilon = layer_norm_epsilon\n self.conv_kernel = conv_kernel\n self.expand = expand\n- self.intermediate_size = int(expand * self.hid...
2025-07-29T10:44:28
rust-lang/rust
d8469bea64c29fabe2d8e022cadf3af18ed0c2cf
54e277cdd58d6ceed114d5fca92405ec6f68d213
fix: moved common code (that required no architecture-specific modifications) outside the IntrinsicDefinition trait
[ { "path": "library/stdarch/crates/intrinsic-test/src/arm/intrinsic.rs", "patch": "@@ -92,57 +92,4 @@ impl IntrinsicDefinition<ArmIntrinsicType> for Intrinsic<ArmIntrinsicType> {\n close = if self.results.is_simd() { \")\" } else { \"\" },\n )\n }\n-\n- fn generate_loop_c(\n- ...
2025-05-25T18:22:56
nodejs/node
51f07ffc841d44c712edc9610529334897b3de26
89e8fc4520d094281b43d95d60e6c317e056a3a4
test: make test-uv-binding-constant JS engine neutral The error message validation in test-uv-binding-constant depends on the JS engine. The text will be different in node-chakracore than in V8-based versions of Node.js. Remove the message validation. Test that it is a TypeError only. We should only validate error mes...
[ { "path": "test/parallel/test-uv-binding-constant.js", "patch": "@@ -13,8 +13,7 @@ const keys = Object.keys(uv);\n keys.forEach((key) => {\n if (key.startsWith('UV_')) {\n const val = uv[key];\n- assert.throws(() => uv[key] = 1,\n- /^TypeError: Cannot assign to read only property/)...
2018-11-27T03:38:02
golang/go
739a42c1993a3a6b607a8349fbed3188da3e56e9
c8dfa306babb91e88f8ba25329b3ef8aa11944e1
[dev.fuzz] testing: adjust -fuzz multiple match stdout Fixes golang/go#48131 Change-Id: I40ff130c849dffe38363ddc0282e93ceb74ae140 Reviewed-on: https://go-review.googlesource.com/c/go/+/349969 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Go Bot <gobot@golang.org> ...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_match.txt", "patch": "@@ -30,11 +30,10 @@ stdout '^ok.*no tests to run'\n ! stdout 'no targets to fuzz'\n \n # Matches more than one fuzz target for fuzzing.\n-go test -fuzz Fuzz -fuzztime 1x multiple_fuzz_test.go\n-# The tests should run, but not be fuzzed\n+...
2021-09-14T19:21:54
rust-lang/rust
54e277cdd58d6ceed114d5fca92405ec6f68d213
57006ad521bf811678e9a0f283e5dc8b066941ff
fix: moved f16 formatting code to common module
[ { "path": "library/stdarch/crates/intrinsic-test/src/arm/intrinsic.rs", "patch": "@@ -127,16 +127,7 @@ impl IntrinsicDefinition<ArmIntrinsicType> for Intrinsic<ArmIntrinsicType> {\n constraints\n };\n \n- // the `intrinsic-test` crate compares the output of C and Rust intrinsics. ...
2025-05-25T15:47:31
huggingface/transformers
de8d0cec30bfe5cd7183c8fe04ae30f8e6343b9a
85d5aeb3242bb5a91df23bd6eb3eae431f7c3ed9
update `GemmaIntegrationTest::test_model_2b_bf16_dola` again (#39731) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/gemma/test_modeling_gemma.py", "patch": "@@ -492,7 +492,7 @@ def test_model_2b_bf16_dola(self):\n ],\n (\"cuda\", 8): [\n \"Hello I am doing an experiment and need to get the mass of a block. The only tool I have is a scale\",\n- ...
2025-07-29T09:42:55
vercel/next.js
5c18e9ac92bbbe2e546cf74a951cdd95d6df3625
68a1d5446553f2f72f443f0f946658cf3b109593
Update vendored React packages to next-41110021f (#46636) Notable changes: - https://github.com/facebook/react/pull/26275 - https://github.com/facebook/react/pull/26232 - https://github.com/facebook/react/pull/26239 - https://github.com/facebook/react/pull/26237 <!-- Thanks for opening a PR! Your contributio...
[ { "path": "package.json", "patch": "@@ -189,11 +189,11 @@\n \"random-seed\": \"0.3.0\",\n \"react\": \"18.2.0\",\n \"react-17\": \"npm:react@17.0.2\",\n- \"react-builtin\": \"npm:react@18.3.0-next-bfb9cbd8c-20230223\",\n+ \"react-builtin\": \"npm:react@18.3.0-next-41110021f-20230301\",\n ...
2023-03-01T19:15:50
golang/go
6196979365ec6b527b3731c9ec13d7ddfe429f86
72bb8185b5fb2fe84ee7cfdc8e9605f2c81b32fe
cmd/go/internal/modload: prevent tidy downgrading disambiguating modules If an indirectly required module does not provide any packages needed to build packages in the main module but is needed to disambiguate imports, 'go mod tidy' may keep an indirect requirement on that module to prevent it from being downgraded. T...
[ { "path": "src/cmd/go/internal/modload/buildlist.go", "patch": "@@ -591,7 +591,7 @@ func updateRoots(ctx context.Context, direct map[string]bool, rs *Requirements,\n // \t selected at the same version or is upgraded by the dependencies of a\n // \t root.\n //\n-// If any module that provided a package h...
2021-08-24T18:51:07
nodejs/node
c3474f511e7ca7fe7fb9182c7f3ce8e3b2e6e577
484ad3b10334f21a36d3b439a19032a1d332b8ee
doc: add antsmartian to collaborators Fixes: https://github.com/nodejs/node/issues/24340 PR-URL: https://github.com/nodejs/node/pull/24655 Refs: https://github.com/nodejs/node/issues/24340 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By...
[ { "path": "README.md", "patch": "@@ -249,6 +249,8 @@ For information about the governance of the Node.js project, see\n **Andreas Madsen** &lt;amwebdk@gmail.com&gt; (he/him)\n * [AnnaMag](https://github.com/AnnaMag) -\n **Anna M. Kedzierska** &lt;anna.m.kedzierska@gmail.com&gt;\n+* [antsmartian](https://git...
2018-11-26T11:37:24
huggingface/transformers
85d5aeb3242bb5a91df23bd6eb3eae431f7c3ed9
2a90193dd89eba0ac6b4b929820e5c23761865b9
Fix: add back base model plan (#39733) * Fix: add back base model plan * Fix: typo * fixup * remove unused import --------- Co-authored-by: Arthur <arthur.zucker@gmail.com>
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -821,8 +821,6 @@ def partition_tensor(self, param, empty_param, param_type, param_casting_dtype,\n param = param[ep_rank * local_num_experts : (ep_rank + 1) * local_num_experts].to(param_casting_dtype)\n if to_contigu...
2025-07-29T09:37:33
vercel/next.js
16a0e5af3213c0078b3069c795bf2bdad202c896
1717fd2dbc1665fd3f32f49f42005fd9e1ae6ce7
chore: improve repo templates (#46629) ## What? - Rendering `next info` output as code in the bug template - Removed the "Feature Request" issue template, in favor of a more granular discussion template - Added a minimal template for Help discussions ## Why? The main part of this PR is the new Feature Requ...
[ { "path": ".github/DISCUSSION_TEMPLATE/help.yml", "patch": "@@ -0,0 +1,20 @@\n+body:\n+ - type: textarea\n+ attributes:\n+ label: Summary\n+ description: What do you need help with?\n+ validations:\n+ required: true\n+ - type: textarea\n+ attributes:\n+ label: Additional infor...
2023-03-01T17:25:51
golang/go
5b48fca1fad44d22105f64be725514020432a2c1
e4dfd788e66f4a44825598dd3cb6ca9626369228
cmd/compile: mark wrapper functions with DW_AT_trampoline Change DWARF generation to tag wrapper functions with the "DW_AT_trampoline attribute". The intent is that debuggers can pick up on this attr so as to skip through the wrapper to the eventual target. DWARF standard allows for a couple of different possible var...
[ { "path": "src/cmd/internal/dwarf/dwarf.go", "patch": "@@ -325,8 +325,10 @@ const (\n \tDW_ABRV_COMPUNIT\n \tDW_ABRV_COMPUNIT_TEXTLESS\n \tDW_ABRV_FUNCTION\n+\tDW_ABRV_WRAPPER\n \tDW_ABRV_FUNCTION_ABSTRACT\n \tDW_ABRV_FUNCTION_CONCRETE\n+\tDW_ABRV_WRAPPER_CONCRETE\n \tDW_ABRV_INLINED_SUBROUTINE\n \tDW_ABRV_...
2021-09-03T13:04:52
rust-lang/rust
57006ad521bf811678e9a0f283e5dc8b066941ff
6de5b7bef8070be388447669d8cad19a563f62a1
Fix: removed BaseIntrinsicTypeDefinition + code cleanup 1. Removed default implementation of traits that are compulsorily implemented 2. Replaced BaseIntrinsicTypeDefinition with Deref<Target = IntrinsicType>
[ { "path": "library/stdarch/crates/intrinsic-test/src/arm/intrinsic.rs", "patch": "@@ -1,13 +1,19 @@\n-use crate::base_intrinsictype_trait_def_macro;\n use crate::common::argument::ArgumentList;\n-use crate::common::cli::Language;\n use crate::common::indentation::Indentation;\n use crate::common::intrinsic:...
2025-05-25T09:15:54
nodejs/node
a6fdbaf263767e9b7a8db6053ebea0ae44f6f1dc
1066b688bf56b490cb46d26d87e7b619037db151
test: fix arguments order in `assert.strictEqual` PR-URL: https://github.com/nodejs/node/pull/24621 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil...
[ { "path": "test/parallel/test-fs-write-buffer.js", "patch": "@@ -38,11 +38,11 @@ tmpdir.refresh();\n const cb = common.mustCall((err, written) => {\n assert.ifError(err);\n \n- assert.strictEqual(expected.length, written);\n+ assert.strictEqual(written, expected.length);\n fs.close...
2018-11-24T07:57:19
electron/electron
2b3a80ecda8d55b23f94250c12f0bfbe41ee0cd8
8b8a6aea748ebe4882e18d3c050975130ff6cb23
Add minor grammar fixes
[ { "path": "docs/tutorial/desktop-environment-integration.md", "patch": "@@ -1,17 +1,17 @@\n # Desktop environment integration\n \n Different operating systems provide different features on integrating desktop\n-applications into their desktop environments, for example, on Windows\n+applications into their d...
2015-06-13T14:58:18
vercel/next.js
1717fd2dbc1665fd3f32f49f42005fd9e1ae6ce7
fcfab172828df218eac847297cf9642001d8f3d2
Fix IntelliSense for generateMetadata (#46624) Related to #46431, this makes sure the IntelliSense for both sync and async `generateMetadata` is correct. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://g...
[ { "path": "packages/next/src/server/typescript/rules/metadata.ts", "patch": "@@ -158,7 +158,10 @@ function updateVirtualFileWithType(\n if (ts.isFunctionDeclaration(node)) {\n if (isGenerateMetadata) {\n nodeEnd = node.body!.getFullStart()\n- annotation = TYPE_ANOTATION_ASYNC\n+ const ...
2023-03-01T17:25:25
golang/go
e4dfd788e66f4a44825598dd3cb6ca9626369228
4847c47cb8a93b56e1df8c249700e25f527d4ba3
go/internal/gcimporter,cmd/compile: minor clean-up in iimport.go Make two superficial fixes to iimport.go: rename instType to instanceType (suggested in CL 349949), and fix a stale comment. Done in both go/internal/gcimporter and cmd/compile/internal/importer. Change-Id: Idfdda11a59b036a35824bbb1c101cba3652aeff4 Rev...
[ { "path": "src/cmd/compile/internal/importer/iimport.go", "patch": "@@ -72,7 +72,7 @@ const (\n \tstructType\n \tinterfaceType\n \ttypeParamType\n-\tinstType\n+\tinstanceType\n \tunionType\n )\n \n@@ -646,7 +646,7 @@ func (r *importReader) doType(base *types2.Named) types2.Type {\n \t\tr.p.doDecl(pkg, name)...
2021-09-15T00:40:09
rust-lang/rust
c01c6ceb876f08b931ee9aa47471d506c11aa994
9b4768921f2d21f564b9dd28ca7510c1f5fa4d5a
fix: aarch64_be issues wthin compilation
[ { "path": "library/stdarch/crates/intrinsic-test/src/arm/functions.rs", "patch": "@@ -185,7 +185,7 @@ fn compile_c_arm(\n * does not work as it gets caught up with `#include_next <stdlib.h>`\n * not existing...\n */\n- if target == \"aarch64_be-unknown-linux-gnu\" {\n+ if target.contain...
2025-05-04T17:45:35
huggingface/transformers
2a90193dd89eba0ac6b4b929820e5c23761865b9
f2aca3ecccc4ffb533fc66da73b61085b7bd58b3
[Fix] import two missing typos in `models/__init__.py` for typo checking (#39745) * [Fix] import lost gemma3n for type checking in vscode * [Fix] import missing qwen2_5_omni typo * [Refactor] sort by ascii order
[ { "path": "src/transformers/models/__init__.py", "patch": "@@ -128,6 +128,7 @@\n from .gemma import *\n from .gemma2 import *\n from .gemma3 import *\n+ from .gemma3n import *\n from .git import *\n from .glm import *\n from .glm4 import *\n@@ -260,6 +261,7 @@\n from .pvt impo...
2025-07-29T09:35:22
nodejs/node
3ce9305a705a0ea521a82afb0e4a2bef079d9548
b5c5d206af8fd32f33953d564a151a5a20bfb5b1
process: emit unhandled warning immediately PR-URL: https://github.com/nodejs/node/pull/24632 Fixes: https://github.com/nodejs/node/issues/24209 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
[ { "path": "lib/internal/process/promises.js", "patch": "@@ -108,7 +108,7 @@ function emitPromiseRejectionWarnings() {\n }\n }\n \n- let hadListeners = false;\n+ let maybeScheduledTicks = false;\n let len = pendingUnhandledRejections.length;\n while (len--) {\n const promise = pendingUnhandle...
2018-11-24T20:15:03