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
golang/go
d050238bb653711b47335583c5425c9efec30e4e
74242baa4136c7a9132a8ccd9881354442788c8c
doc/go1.17: fix formatting for time changes Also add a link to the time.Time type and adjust the wording a bit. Change-Id: I2f4210ada6d253eb5804e6327b2432487beb8a05 Reviewed-on: https://go-review.googlesource.com/c/go/+/321811 Trust: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang...
[ { "path": "doc/go1.17.html", "patch": "@@ -558,9 +558,10 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"time\"><dt><a href=\"/pkg/time/\">time</a></dt>\n <dd>\n <p><!-- CL 260858 -->\n- time.Time now has a <a href=\"/pkg/time/#Time.GoString\">GoString</a>\n- ...
2021-05-25T08:33:02
nodejs/node
32902d09b43e9d7f19eb6178ef5db835652d97c1
755520c4c3f9e1f85268d65ca647dec076e9a17a
http2: emit timeout on compat request and response Fixes: https://github.com/nodejs/node/issues/20079 PR-URL: https://github.com/nodejs/node/pull/22252 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "lib/internal/http2/compat.js", "patch": "@@ -241,6 +241,13 @@ function onStreamCloseRequest() {\n req.emit('close');\n }\n \n+function onStreamTimeout(kind) {\n+ return function onStreamTimeout() {\n+ const obj = this[kind];\n+ obj.emit('timeout');\n+ };\n+}\n+\n class Http2ServerReques...
2018-08-10T20:33:46
electron/electron
edbce1c167c24d8bd29543d86050fcbc9a0b3041
d47a94b1fe3be9cf88cec6ceb93fdfb48c81bcb8
Update libchromiumcontent to fix gfx::display link errors.
[ { "path": "brightray/vendor/libchromiumcontent", "patch": "@@ -1 +1 @@\n-Subproject commit e944624160d8c0ff43ad8171caff11f9a58c6c63\n+Subproject commit a88222442d2a85345d9a208c23456956c208571d", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2014-07-27T14:18:46
huggingface/transformers
50f8caaa48ac4a71d26542ec18970519a7be5834
91f3e9422fb2dc01cdc9d13913b36489fcbc0b51
🌐 [i18n-KO] Translated `electra.md` to Korean (#36763) * docs: ko: electra.md * feat: nmt draft * fix: manual edits * fix: manual edits
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -354,8 +354,8 @@\n title: (번역중) DistilBERT\n - local: in_translation\n title: (번역중) DPR\n- - local: in_translation\n- title: (번역중) ELECTRA\n+ - local: model_doc/electra\n+ title: ELECTRA\n - local: mode...
2025-04-29T21:03:39
vercel/next.js
16b5d734049d0e502822031c663b943e2055f1dc
b4da5e00a80aac89bcfb8383db33787084ae3389
Fix retrying when port already bound (vercel/turbo#3114) #3021 [removed](https://github.com/vercel/turbo/pull/3021/files#diff-c6405fb94033af4296b1f72626fb990aaf76f645b6ed0f7812c56fcad719cf0eL304-L306) 1 level of error wrapping, and the unwrapping code was not updated to match.
[ { "path": "packages/next-swc/crates/next-dev/src/lib.rs", "patch": "@@ -164,13 +164,9 @@ impl NextDevServerBuilder {\n // `std::io::ErrorKind::AddrInUse`.\n e.source()\n .map(|e| {\n- e.source()\n- ...
2022-12-21T20:15:21
golang/go
74242baa4136c7a9132a8ccd9881354442788c8c
f22ec51debeddc0903096e66bfaf641568bede3b
archive/zip: only preallocate File slice if reasonably sized Since the number of files in the EOCD record isn't validated, it isn't safe to preallocate Reader.Files using that field. A malformed archive can indicate it contains up to 1 << 128 - 1 files. We can still safely preallocate the slice by checking if the spec...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -96,7 +96,15 @@ func (z *Reader) init(r io.ReaderAt, size int64) error {\n \t\treturn err\n \t}\n \tz.r = r\n-\tz.File = make([]*File, 0, end.directoryRecords)\n+\t// Since the number of directory records is not validated, it is not\n+\t// safe to prealloc...
2021-05-11T18:31:31
huggingface/transformers
096f25ae1f501a084d8ff2dcaf25fbc2bd60eba4
da7ae467c43b1860d717da4bf97d4f44fb890194
Fix Bitnet tokenizer in pipeline (#37861) add tokenizer
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -93,6 +93,7 @@\n ),\n (\"bigbird_pegasus\", (\"PegasusTokenizer\", \"PegasusTokenizerFast\" if is_tokenizers_available() else None)),\n (\"biogpt\", (\"BioGptTokenizer\", None)),\n+ (\"...
2025-04-29T13:35:02
nodejs/node
6bba368ccf43cd7bd4c003007237b55c0a16511d
1abc613b32d8e29f264c1703dcb6fd9eb6e51845
util: fix sparse array inspection For very special sparse arrays it was possible that util.inspect visualized the entries not in the intended way. PR-URL: https://github.com/nodejs/node/pull/22283 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "lib/util.js", "patch": "@@ -971,33 +971,29 @@ function formatNamespaceObject(ctx, value, recurseTimes, keys) {\n function formatSpecialArray(ctx, value, recurseTimes, keys, maxLength, valLen) {\n const output = [];\n const keyLen = keys.length;\n- let visibleLength = 0;\n let i = 0;\n- if...
2018-08-12T20:27:45
electron/electron
472a95e433333b2303228b89543815efa9f4b3b7
b84226244d840a1ec8410b2dbce03b9de3f5c7b1
win: Fix tray context menu in high DPI mode
[ { "path": "atom/browser/ui/win/notify_icon.cc", "patch": "@@ -12,6 +12,7 @@\n #include \"ui/gfx/icon_util.h\"\n #include \"ui/gfx/point.h\"\n #include \"ui/gfx/rect.h\"\n+#include \"ui/gfx/win/dpi.h\"\n #include \"ui/views/controls/menu/menu_runner.h\"\n \n namespace atom {\n@@ -64,7 +65,7 @@ void NotifyIco...
2014-07-27T07:50:04
golang/go
6c9e1c58bc7661638ee084e40a3b6fc907825496
5c1e119d48657d60519ee1d0940d0725c06bf85d
[dev.typeparams] test: fix and update run.go's generics testing In a late change to golang.org/cl/320609, while going back and forth on the meaning of the boolean result value for "checkFlags", I got one of the cases wrong. As a result, rather than testing both default flags and -G=3, we were (redundanly) testing defa...
[ { "path": "test/fixedbugs/issue10975.go", "patch": "@@ -1,4 +1,4 @@\n-// errorcheck\n+// errorcheck -lang=go1.17\n \n // Copyright 2015 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style", "additions": 1, "deletions": 1, "language": "Go" }, { "pa...
2021-05-25T21:06:56
rust-lang/rust
9ec8373ab6beaf06425c5caa0fb783e767cdc6ad
238d113b0726b9734ec42737cbc461d08520bf35
Crashes tests
[ { "path": "tests/crashes/127643.rs", "patch": "@@ -1,18 +1,18 @@\n //@ known-bug: #127643\n \n-#![feature(associated_const_equality)]\n+#![feature(generic_const_items, associated_const_equality)]\n+#![expect(incomplete_features)]\n \n-fn user() -> impl Owner<dyn Sized, C = 0> {}\n-\n-trait Owner<K> {\n- ...
2025-05-01T16:12:40
huggingface/transformers
da7ae467c43b1860d717da4bf97d4f44fb890194
aa6b79db4341a2f29db7ffc2a30fa084c5d951de
Fix cache get item return type hints (#37847) F: Fix cache return hints Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com>
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -376,7 +376,7 @@ def __init__(self, _distributed_cache_data: Optional[Iterable] = None) -> None:\n self.key_cache.append(key_states)\n self.value_cache.append(value_states)\n \n- def __getitem__(self, layer_idx: int...
2025-04-29T13:23:52
nodejs/node
59c8abf8862dfe0df8d19cee0de9597388e43737
b87cb5da44f219dfcd2e2c4757eb5a206ef3b702
test: mark async-hooks/test-callback-error as flaky Refs: https://github.com/nodejs/node/issues/15985 PR-URL: https://github.com/nodejs/node/pull/22330 Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "test/async-hooks/async-hooks.status", "patch": "@@ -13,6 +13,8 @@ test-statwatcher: PASS,FLAKY\n [$system==linux]\n # https://github.com/nodejs/node/issues/21425\n test-statwatcher: PASS,FLAKY\n+# https://github.com/nodejs/node/issues/15985\n+test-callback-error: PASS,FLAKY\n \n [$system==macos]\...
2018-08-15T00:11:25
electron/electron
e4290393afca57a8277567a51bc538a641c10519
cab00a1450d84ed9d7abb9f1d89aa45db64f969d
Fix isMinimized API documentation
[ { "path": "docs/api/browser-window.md", "patch": "@@ -252,7 +252,7 @@ the Dock.\n \n Restores the window from minimized state to its previous state.\n \n-### BrowserWindow.isMaximized()\n+### BrowserWindow.isMinimized()\n \n Returns whether the window is minimized.\n ", "additions": 1, "deletions": ...
2014-07-26T08:53:02
rust-lang/rust
4c2659f9cee7829bea317d5c6f575a7f4fb13628
caf337d46742aca1705c3254e8d45d7238a8435c
builtins-test: Remove `no_mangle` from `eh_personality` Rustc now mangles these symbols on its own, so `no_mangle` is rejected as an error.
[ { "path": "library/compiler-builtins/builtins-test-intrinsics/src/main.rs", "patch": "@@ -682,7 +682,6 @@ pub fn _Unwind_Resume() {}\n \n #[cfg(not(any(windows, target_os = \"cygwin\")))]\n #[lang = \"eh_personality\"]\n-#[unsafe(no_mangle)]\n pub extern \"C\" fn eh_personality() {}\n \n #[cfg(any(all(windo...
2025-05-01T18:52:12
huggingface/transformers
aa6b79db4341a2f29db7ffc2a30fa084c5d951de
517367fe9a303a28706d0d69b45781085d96e40e
Fix check of unecessary packages (issue #37626) (#37825) * Fix check of unecessary packages (issue #37626) * Reformat using ruff * And a condition to avoind the risk of matching a random object in `import_utils` * Reformat
[ { "path": "src/transformers/dynamic_module_utils.py", "patch": "@@ -151,17 +151,24 @@ def get_imports(filename: Union[str, os.PathLike]) -> list[str]:\n content = f.read()\n imported_modules = set()\n \n+ import transformers.utils\n+\n def recursive_look_for_imports(node):\n if is...
2025-04-29T13:21:05
nodejs/node
dccec3f3ecff72a8742be7e234f6cf6bef76cfdf
fc846662637af5372d234cdf2f2e0314a73bcd31
doc: document 'inherit' option for stdio (non-shorthand) PR-URL: https://github.com/nodejs/node/pull/22309 Fixes: https://github.com/nodejs/node/issues/22297 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> R...
[ { "path": "doc/api/child_process.md", "patch": "@@ -599,8 +599,7 @@ For convenience, `options.stdio` may be one of the following strings:\n \n * `'pipe'` - equivalent to `['pipe', 'pipe', 'pipe']` (the default)\n * `'ignore'` - equivalent to `['ignore', 'ignore', 'ignore']`\n-* `'inherit'` - equivalent to `...
2018-08-14T08:16:29
electron/electron
cab00a1450d84ed9d7abb9f1d89aa45db64f969d
ce50b38a75eab74f869c53e89d1b713b292d880f
views: Return restored bounds when window is minimized, fixes #473. On Window the minimized window would have a fake bounds that is out of the screen, which is not consistent to other platforms' behavior.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -204,6 +204,11 @@ void NativeWindowViews::SetSize(const gfx::Size& size) {\n }\n \n gfx::Size NativeWindowViews::GetSize() {\n+#if defined(OS_WIN)\n+ if (IsMinimized())\n+ return window_->GetRestoredBounds().size();\n+#endif\n+\n return win...
2014-07-26T06:03:37
huggingface/transformers
3a1acc36ed7dd4c599d6fbfbe9609eac51ea894c
4abeb50f6e7b5ca7e63f80686cdd74e7b6b03e63
[tests] fix flaky pattern in `test_generate_continue_from_past_key_values` (#37724)
[ { "path": "tests/generation/test_utils.py", "patch": "@@ -1097,25 +1097,18 @@ def test_contrastive_generate_low_memory(self):\n \n # test output equality of low versus high memory\n model = model_class(config).to(torch_device).eval()\n+ generate_kwargs = {\n+ ...
2025-04-29T11:20:42
vercel/next.js
c80888f35682d56935eb556e2631a05bdad79e6a
5975556fc2137f7ed1e5244d06894a68cf880a02
Fix retrying when port already bound (vercel/turbo#3114) vercel/turbo#3021 [removed](https://github.com/vercel/turbo/pull/3021/files#diff-c6405fb94033af4296b1f72626fb990aaf76f645b6ed0f7812c56fcad719cf0eL304-L306) 1 level of error wrapping, and the unwrapping code was not updated to match.
[ { "path": "crates/next-dev/src/lib.rs", "patch": "@@ -164,13 +164,9 @@ impl NextDevServerBuilder {\n // `std::io::ErrorKind::AddrInUse`.\n e.source()\n .map(|e| {\n- e.source()\n- ...
2022-12-21T20:15:21
nodejs/node
801814686d4745840743d45c54abb41940fb41e2
3e44b8c91ef717913364ac67a12cb7cd638630db
lib: remove unused filterInternalStackFrames param Actually we don't refer the `error` directly in `filterInternalStackFrames`, so just remove it anyway. PR-URL: https://github.com/nodejs/node/pull/22267 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jon Moss...
[ { "path": "lib/repl.js", "patch": "@@ -494,7 +494,7 @@ function REPLServer(prompt,\n self.writer.options = Object.assign({}, writer.options, { colors: true });\n }\n \n- function filterInternalStackFrames(error, structuredStack) {\n+ function filterInternalStackFrames(structuredStack) {\n // Sea...
2018-08-11T11:26:40
electron/electron
e8d59c4326b7d89edac7ce07be457f4d6b265396
b9d64784bb70afc211e8c95e108c75c03a23c5a0
views: Fix showing window icon, closes #514.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -123,6 +123,7 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents,\n use_content_size_)\n bounds = ContentBoundsToWindowBounds(bounds);\n \n+ window_->UpdateWindowIcon();\n window_->CenterWindow(bounds.size());...
2014-07-26T04:06:38
rust-lang/rust
bc68d3a14467ef6fcebb003f79c2f4c5ef5dd08e
d2eadb7a94ef8c9deb5137695df33cd1fc5aee92
Improve error output in case `nodejs` or `npm` is not installed for rustdoc-gui test suite
[ { "path": "src/tools/rustdoc-gui-test/src/config.rs", "patch": "@@ -20,8 +20,8 @@ pub(crate) struct Config {\n impl Config {\n pub(crate) fn from_args(args: Vec<String>) -> Self {\n let mut opts = Options::new();\n- opts.reqopt(\"\", \"nodejs\", \"absolute path of nodejs\", \"PATH\")\n- ...
2025-05-01T15:42:13
golang/go
f22ec51debeddc0903096e66bfaf641568bede3b
8b462d75670dcd8b6a08cf9af225eb8e7628d412
doc: add Go 1.17 release note about inlining functions with closures Fixes #45781 Change-Id: Ia5bc2845f7f94aff4f3f0ff15533feb148223adb Reviewed-on: https://go-review.googlesource.com/c/go/+/322089 Trust: Dan Scales <danscales@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
[ { "path": "doc/go1.17.html", "patch": "@@ -228,7 +228,14 @@ <h2 id=\"runtime\">Runtime</h2>\n \n <h2 id=\"compiler\">Compiler</h2>\n \n-<p>\n+<p><!-- CL 283112, golang.org/issue/28727 -->\n+\n+ Functions containing closures can now be inlined. One effect of this change is\n+ that a function with a closure...
2021-05-22T20:40:20
vercel/next.js
b4da5e00a80aac89bcfb8383db33787084ae3389
1a2632d5e560f3c97d520d75ff2583c9ab71047f
update to latest next.js (vercel/turbo#3112) * add GlobalError export to layout entry (see https://github.com/vercel/next.js/pull/44066) * update app manifest for CSS (see https://github.com/vercel/next.js/pull/44168) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
[ { "path": "packages/next-swc/crates/next-core/js/package.json", "patch": "@@ -12,7 +12,7 @@\n \"@vercel/turbopack-runtime\": \"latest\",\n \"anser\": \"^2.1.1\",\n \"css.escape\": \"^1.5.1\",\n- \"next\": \"^13.0.6\",\n+ \"next\": \"^13.0.8-canary.2\",\n \"platform\": \"1.3.6\",\n ...
2022-12-21T19:44:18
electron/electron
b9d64784bb70afc211e8c95e108c75c03a23c5a0
ad3eac2e3818ca6885820567bc741b8962a77b1a
win: Don't crash on invalid parameter error. libuv relies on suppressing the invalid parameter error in uv__get_osfhandle, and it could hanppen frequently. Fixes #513.
[ { "path": "atom/common/crash_reporter/crash_reporter_win.cc", "patch": "@@ -54,12 +54,14 @@ void CrashReporterWin::InitBreakpad(const std::string& product_name,\n if (waiting_event != INVALID_HANDLE_VALUE)\n WaitForSingleObject(waiting_event, 1000);\n \n+ int handler_types = google_breakpad::Exceptio...
2014-07-26T03:09:01
rust-lang/rust
c1f2ad2d16cdedd6cf82fe551fb2e8c05def36e5
25cdf1f67463c9365d8d83778c933ec7480e940b
crashes: more tests
[ { "path": "tests/crashes/138156.rs", "patch": "@@ -0,0 +1,42 @@\n+//@ known-bug: #138156\n+\n+#![feature(generic_const_exprs)]\n+\n+#[derive(Default)]\n+pub struct GenId<const IDX: usize>;\n+\n+pub trait IndexTrait: Default {\n+ const IDX: usize;\n+}\n+pub trait ToplogyIndex {\n+ type Idx: IndexTrait;...
2025-04-15T20:46:29
nodejs/node
78584b64d88c0567c46e3cf7bae42aa73927df40
f6eab1acf21186a4cbc8d4537d00293326dfa2a1
http2: explicitly disallow nested push streams Fixes: https://github.com/nodejs/node/issues/19095 PR-URL: https://github.com/nodejs/node/pull/22245 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -956,6 +956,12 @@ required to send an acknowledgment that it has received and applied the new\n be sent at any given time. This error code is used when that limit has been\n reached.\n \n+<a id=\"ERR_HTTP2_NESTED_PUSH\"></a>\n+### ERR_HTTP2_NESTED_PUSH\n+\n+An att...
2018-08-10T18:05:57
huggingface/transformers
4abeb50f6e7b5ca7e63f80686cdd74e7b6b03e63
4602059aaee7b075ca51c21941ab2d27980bef7c
Add D-FINE Model into Transformers (#36261) * copy the last changes from broken PR * small format * some fixes and refactoring after review * format * add config attr for loss * some fixes and refactoring * fix copies * fix style * add test for d-fine resnet * fix decoder layer prop * fix dummies * format i...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -499,6 +499,8 @@\n title: Helium\n - local: model_doc/herbert\n title: HerBERT\n+ - local: model_doc/hgnet_v2\n+ title: HGNet-V2\n - local: model_doc/ibert\n title: I-BERT\n - local: model_doc/jamba\n...
2025-04-29T11:17:55
golang/go
8b462d75670dcd8b6a08cf9af225eb8e7628d412
c89f1224a544cde464fcb86e78ebb0cc97eedba2
cmd/go: add a -compat flag to 'go mod tidy' Fixes #46141 Change-Id: I9d4032e75252ade9eaa937389ea97ef3fb287499 Reviewed-on: https://go-review.googlesource.com/c/go/+/321071 Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: J...
[ { "path": "doc/go1.17.html", "patch": "@@ -106,6 +106,11 @@ <h4 id=\"lazy-loading\">Lazy module loading</h4>\n go mod tidy -go=1.17\n </pre>\n \n+<p><!-- golang.org/issue/46141 -->\n+ TODO: Describe the <code>-compat</code> flag\n+ for <code>go</code> <code>mod</code> <code>tidy</code>.\n+</p>\n+\n <h4 ...
2021-05-14T20:53:06
vercel/next.js
5975556fc2137f7ed1e5244d06894a68cf880a02
edbec9ad2764da48948e7acb8211131dadb90331
update to latest next.js (vercel/turbo#3112) * add GlobalError export to layout entry (see https://github.com/vercel/next.js/pull/44066) * update app manifest for CSS (see https://github.com/vercel/next.js/pull/44168) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
[ { "path": "crates/next-core/js/package.json", "patch": "@@ -12,7 +12,7 @@\n \"@vercel/turbopack-runtime\": \"latest\",\n \"anser\": \"^2.1.1\",\n \"css.escape\": \"^1.5.1\",\n- \"next\": \"^13.0.6\",\n+ \"next\": \"^13.0.8-canary.2\",\n \"platform\": \"1.3.6\",\n \"react-dom\": \"^...
2022-12-21T19:44:18
rust-lang/rust
400dab3df7db5fb9a745634e088e9d906aef805a
50010d554600ad96afd6194ea34a36bb535f6f1c
Fix `stdarch-verify`
[ { "path": "library/stdarch/crates/core_arch/src/arm_shared/neon/generated.rs", "patch": "@@ -10880,7 +10880,7 @@ pub fn vdupq_n_p16(value: p16) -> poly16x8_t {\n target_arch = \"arm\",\n unstable(feature = \"stdarch_arm_neon_intrinsics\", issue = \"111800\")\n )]\n-pub fn vdupq_n_p8(value: u8) -> po...
2025-04-29T08:19:36
electron/electron
a04cb087155a9cefb83a08871971102c2f8db238
b9fc5474c5b7b631a5e097914c86ec20612d89fb
win: Fix generating symbols.
[ { "path": "tools/win/generate_breakpad_symbols.py", "patch": "@@ -67,7 +67,7 @@ def _Worker():\n print \"Generating symbols for %s\" % binary\n \n syms = GetCommandOutput([DUMP_SYMS, binary])\n- module_line = re.match(\"MODULE [^ ]+ [^ ]+ ([0-9A-F]+) (.*)\\r\\n\", syms)\n+ module_l...
2014-07-25T10:00:05
nodejs/node
f6eab1acf21186a4cbc8d4537d00293326dfa2a1
2eb78e6dc324b65cb4492a1e0111e9bc68b77921
perf_hooks: avoid memory leak on gc observer Fixes: https://github.com/nodejs/node/issues/22229 PR-URL: https://github.com/nodejs/node/pull/22241 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yang Guo <yangguo@chromium.org> Reviewed-By: George Adams <george...
[ { "path": "src/node_perf.cc", "patch": "@@ -272,6 +272,9 @@ void MarkGarbageCollectionEnd(Isolate* isolate,\n v8::GCCallbackFlags flags,\n void* data) {\n Environment* env = static_cast<Environment*>(data);\n+ // If no one is listening to gc per...
2018-08-10T16:58:20
huggingface/transformers
4602059aaee7b075ca51c21941ab2d27980bef7c
a847d4aa6bd2279f5be235dc0fd862f58f7403d1
[modular] Fix the prefix-based renaming if the old and new model share a common name suffix (#37829) * first try * Fix and set examples * style * fix * Update modular_test_detr.py * Update image_processing_new_imgproc_model.py * Update modular_model_converter.py
[ { "path": "examples/modular-transformers/image_processing_new_imgproc_model.py", "patch": "@@ -4,7 +4,7 @@\n # the file from the modular. If any change should be done, please apply the change to the\n # modular_new_imgproc_model.py file directly. One of our CI enforces t...
2025-04-29T08:43:23
vercel/next.js
1a2632d5e560f3c97d520d75ff2583c9ab71047f
91d2af216b0685248763899f6d5796656ea94010
add rules to alter resolve/module context depending on context path (vercel/turbo#3108) Fixes WEB-43 Closes vercel/turbo#3104
[ { "path": "packages/next-swc/crates/next-core/src/next_client/context.rs", "patch": "@@ -6,6 +6,7 @@ use turbo_tasks::{primitives::StringsVc, Value};\n use turbo_tasks_env::ProcessEnvVc;\n use turbo_tasks_fs::FileSystemPathVc;\n use turbopack::{\n+ condition::ContextCondition,\n module_options::{\n ...
2022-12-21T18:56:52
golang/go
c89f1224a544cde464fcb86e78ebb0cc97eedba2
08a8fa9c471603c7ec44895392c6bfa31a8ddcb6
net: verify results from Lookup* are valid domain names For the methods LookupCNAME, LookupSRV, LookupMX, LookupNS, and LookupAddr check that the returned domain names are in fact valid DNS names using the existing isDomainName function. Thanks to Philipp Jeitner and Haya Shulman from Fraunhofer SIT for reporting thi...
[ { "path": "src/net/dnsclient_unix_test.go", "patch": "@@ -1799,3 +1799,124 @@ func TestPTRandNonPTR(t *testing.T) {\n \t\tt.Errorf(\"names = %q; want %q\", names, want)\n \t}\n }\n+\n+func TestCVE202133195(t *testing.T) {\n+\tfake := fakeDNSServer{\n+\t\trh: func(n, _ string, q dnsmessage.Message, _ time.Ti...
2021-05-17T17:06:51
rust-lang/rust
714ea10ea41e97310a1b3d90fed4cfb3e2dd6b73
25cdf1f67463c9365d8d83778c933ec7480e940b
rustdoc: Fix doctest heuristic for main fn wrapping
[ { "path": "src/librustdoc/doctest/make.rs", "patch": "@@ -301,8 +301,6 @@ fn parse_source(source: &str, crate_name: &Option<&str>) -> Result<ParseSourceIn\n \n let filename = FileName::anon_source_code(&wrapped_source);\n \n- // Any errors in parsing should also appear when the doctest is compiled fo...
2025-04-29T00:11:41
nodejs/node
59f8276a6b0ed6c9f42a85454d8fa3e64c7632c4
f8fda89df1c44b384236c2f9aa054ae4f26fd958
tools: fix header escaping regression quick fix for #22065 Preferred long term fix can be found at: https://github.com/nodejs/node/pull/22140 PR-URL: https://github.com/nodejs/node/pull/22084 Fixes: https://github.com/nodejs/node/issues/22065 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M ...
[ { "path": "tools/doc/generate.js", "patch": "@@ -67,9 +67,9 @@ fs.readFile(filename, 'utf8', (er, input) => {\n \n const content = unified()\n .use(markdown)\n+ .use(html.preprocessText)\n .use(json.jsonAPI, { filename })\n .use(html.firstHeader)\n- .use(html.preprocessText)\n .use(h...
2018-08-02T10:54:30
electron/electron
32c6f4cfe8fbe35e98771b90e4b2ddfddd6b6574
dbf19a57345a451802aab9248235ba1b4100a4f5
Update node, fixes #511. This is fixed by notifying the event loop to do next tick when the uv__io_feed is called, see http://git.io/evYEpA.
[ { "path": "vendor/node", "patch": "@@ -1 +1 @@\n-Subproject commit a3ec3c255226137961585cbdee659b3e0a7f3955\n+Subproject commit 4d2db275a386b68e3c22ce87ca0c19fddae139e8", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2014-07-25T05:06:53
huggingface/transformers
a847d4aa6bd2279f5be235dc0fd862f58f7403d1
65e940208c38ebf82b5d7a2441eec361d2c968b1
Fast image processor for VitMatte added and bug in slow version fixed (#37616) * added fast image processor for VitMatte including updated and new tests, fixed a bug in the slow image processor that processed images incorrectly for input format ChannelDimension.FIRST in which case the trimaps were not added in the cor...
[ { "path": "docs/source/en/model_doc/vitmatte.md", "patch": "@@ -53,6 +53,11 @@ The model expects both the image and trimap (concatenated) as input. Use [`ViTMa\n [[autodoc]] VitMatteImageProcessor\n - preprocess\n \n+## VitMatteImageProcessorFast\n+\n+[[autodoc]] VitMatteImageProcessorFast\n+ - prepr...
2025-04-28T18:51:50
vercel/next.js
edbec9ad2764da48948e7acb8211131dadb90331
233975a8f7b46d400a9bba3c465cdc5321f658cb
add rules to alter resolve/module context depending on context path (vercel/turbo#3108) Fixes WEB-43 Closes vercel/turbo#3104
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -6,6 +6,7 @@ use turbo_tasks::{primitives::StringsVc, Value};\n use turbo_tasks_env::ProcessEnvVc;\n use turbo_tasks_fs::FileSystemPathVc;\n use turbopack::{\n+ condition::ContextCondition,\n module_options::{\n module_opti...
2022-12-21T18:56:52
golang/go
d48f6d9f6f1ee7099ad129552507903e191ad589
4c50721cda74abbf7732638f39a23dfbf6271a48
[dev.typeparams] Don't check typecheck(3) on transform, so no need to export/import it We have a value typecheck(3) that indicates that a node in a generic function still needs transformation (via the functions in transform.go). But it is not very desirable to export/import the value of typecheck(3). So, I changed the...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -374,45 +374,43 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t}\n \t\tir.EditChildren(m, edit)\n \n-\t\tif x.Typecheck() == 3 {\n-\t\t\t// These are nodes whose transforms were delayed until\n-\t\t\t// their instantiated type was...
2021-05-14T23:35:04
electron/electron
f7a9b56e93e2bc1579aa0e5bd80b65643049b248
53c73c0631e9b076fa1f76816c8c793ec3438656
mac: Make cmd+~ work for devtools window, fixes #508.
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -538,7 +538,11 @@ - (void)mouseDragged:(NSEvent*)event {\n // The event comes from detached devtools view, and it has already been\n // handled by the devtools itself, we now send it to application menu to\n // make menu acclerators wor...
2014-07-25T03:03:25
huggingface/transformers
65e940208c38ebf82b5d7a2441eec361d2c968b1
9c5b1319d01d8a7455a0de0ff8f7b49064d26624
Samhq model addition (#35147) * added the configuartion for sam_hq * added the modeelling for sam_hq * added the sam hq mask decoder with hq features * added the code for the samhq * added the code for the samhq * added the code for the samhq * Delete src/transformers/models/sam_hq/modelling_sam_hq.py * added ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1017,6 +1017,8 @@\n title: Qwen2VL\n - local: model_doc/sam\n title: Segment Anything\n+ - local: model_doc/sam_hq\n+ title: Segment Anything High Quality\n - local: model_doc/shieldgemma2\n title: ShieldG...
2025-04-28T17:07:09
golang/go
4c50721cda74abbf7732638f39a23dfbf6271a48
dcaf785add683fdda9bd0e53395c17c55779a8ac
[dev.typeparams] cmd/compile: Fix handling of Name nodes during stenciling The name substitution for stenciling was incorrectly handling non-local names. Made changes to explicitly built the vars[] name substitution map based on the local variables (similar to what inlining substitution does). Then, we we are stencil...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -289,7 +289,7 @@ func (g *irgen) genericSubst(newsym *types.Sym, nameNode *ir.Name, targs []*type\n \n \tnewf.Dcl = make([]*ir.Name, len(gf.Dcl))\n \tfor i, n := range gf.Dcl {\n-\t\tnewf.Dcl[i] = subst.node(n).(*ir.Name)\n+\t\tnewf.Dcl[i] ...
2021-05-12T02:29:10
vercel/next.js
9ee4c0cdf19a145620a0b8f17ba5e361b9ea5b1f
52fb820b415b4caaf5da670a661bda30ae66684c
Enable allowMiddlewareResponseBody by default (#44224) Follow-up to #44195 ## 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 - [ ] Imple...
[ { "path": "docs/advanced-features/middleware.md", "patch": "@@ -221,18 +221,7 @@ export function middleware(request: NextRequest) {\n \n ## Producing a Response\n \n-You can respond to middleware directly by returning a `NextResponse` (responding from middleware is available since Next.js v13.0.0).\n-\n-To ...
2022-12-21T18:40:58
electron/electron
53c73c0631e9b076fa1f76816c8c793ec3438656
6c866ea90971f030e23da221dbeff696ecef9573
mac: Fix crash when closing window, closes #504.
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -52,23 +52,27 @@ - (void)setAcceptsFirstMouse:(BOOL)accept {\n - (void)windowDidBecomeMain:(NSNotification*)notification {\n shell_->NotifyWindowFocus();\n \n- if (shell_->GetWebContents())\n- shell_->GetWebContents()->GetView()->StoreFocus()...
2014-07-25T02:38:19
nodejs/node
c4007f0096e3a1e777faea35a35e849513e33a89
5442c28b651a79c2269bf2b931e81cd553171656
deps: backport c608122b from upstream Original commit message: [api][keys] Allow skipping indices for Proxies with GetPropertyNames Bug: v8:7942 Change-Id: I7b3740b04cbcaa56dc809150900ab8d821b054ce Reviewed-on: https://chromium-review.googlesource.com/1156544 Reviewed-by: Toon Verwaest <verwaest@chromium.or...
[ { "path": "common.gypi", "patch": "@@ -29,7 +29,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.13',\n+ 'v8_embedder_string': '-node.14',\n \n # Enable disassembler for `--print-co...
2018-08-08T01:43:20
huggingface/transformers
9e730689c3e8923b5e18981d194f5c662c2d4584
2933894985b8b69fb65c5f0e7676f2be88f965b9
change XLA deprecated api (#37741) * deprecated api * fix
[ { "path": "src/transformers/trainer.py", "patch": "@@ -199,12 +199,12 @@\n if is_torch_xla_available():\n import torch_xla.core.xla_model as xm\n import torch_xla.debug.metrics as met\n+ import torch_xla.runtime as xr\n from torch_xla import __version__ as XLA_VERSION\n \n IS_XLA_FSDPV2_P...
2025-04-28T14:27:41
vercel/next.js
c24643ecffe5ba73b28cb50d1bbfbbbcd1160cf8
e27c7fa61b2f25ba8a338e10cea2830a8330955d
Only once for the next/head usage in app dir (#44233) Follow up for #43885 * only warn once for `next/head` usage in the loader * add `Warning:` prefix
[ { "path": "packages/next/build/webpack/loaders/next-flight-loader/index.ts", "patch": "@@ -1,7 +1,10 @@\n import { RSC_MODULE_TYPES } from '../../../../shared/lib/constants'\n+import { warnOnce } from '../../../../shared/lib/utils/warn-once'\n import { getRSCModuleType } from '../../../analysis/get-page-sta...
2022-12-21T16:23:28
golang/go
08a8fa9c471603c7ec44895392c6bfa31a8ddcb6
32b73ae18026e8a9dc4c5aa49999b1ea445bc68c
misc/wasm: ensure correct stack pointer in catch clauses The stack pointer may have changed after a call from JavaScript into Go code because of stack growth. The normal case already updated the sp variable accordingly, but the catch case did not yet. Fixes #45433 Change-Id: I3e0a33381929626f6b21902948935eb5ffb26c96...
[ { "path": "misc/wasm/wasm_exec.js", "patch": "@@ -401,6 +401,7 @@\n \t\t\t\t\t\t\tstoreValue(sp + 56, result);\n \t\t\t\t\t\t\tthis.mem.setUint8(sp + 64, 1);\n \t\t\t\t\t\t} catch (err) {\n+\t\t\t\t\t\t\tsp = this._inst.exports.getsp() >>> 0; // see comment above\n \t\t\t\t\t\t\tstoreValue(sp + 56, err);\n ...
2021-05-23T21:06:43
huggingface/transformers
2933894985b8b69fb65c5f0e7676f2be88f965b9
da4ff2a5f53dd62a0254410280b67196516124d1
Fix error of HPU TP (#37782) * Fix error of HPU TP Signed-off-by: yuanwu <yuan.wu@intel.com> * Add the init distrubuted for hpu Signed-off-by: yuanwu <yuan.wu@intel.com> * Fix error of make style Signed-off-by: yuanwu <yuan.wu@intel.com> --------- Signed-off-by: yuanwu <yuan.wu@intel.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4108,6 +4108,9 @@ def from_pretrained(\n elif device_type == \"xpu\":\n torch.distributed.init_process_group(\"ccl\", rank=rank, world_size=world_size)\n torch.xpu.set_device(int...
2025-04-28T13:47:16
rust-lang/rust
782c6065c40369db84a8e05ad3c8299b30a06b0a
549107dbada33d5531d8d896791d8dc07852d8af
fix: `unused_async` FP on default impl
[ { "path": "clippy_lints/src/unused_async.rs", "patch": "@@ -2,7 +2,7 @@ use clippy_utils::diagnostics::span_lint_hir_and_then;\n use clippy_utils::is_def_id_trait_method;\n use rustc_hir::def::DefKind;\n use rustc_hir::intravisit::{FnKind, Visitor, walk_expr, walk_fn};\n-use rustc_hir::{Body, Expr, ExprKind...
2025-05-01T06:50:23
nodejs/node
ac92a42a60545006a493e567c793601c6397c035
7cec27c7998868b4ae0b7aef926aa75f866ed458
http2: avoid race condition in OnHeaderCallback Fixes: https://github.com/nodejs/node/issues/21416 PR-URL: https://github.com/nodejs/node/pull/22256 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By:...
[ { "path": "src/node_http2.cc", "patch": "@@ -881,7 +881,12 @@ int Http2Session::OnHeaderCallback(nghttp2_session* handle,\n Http2Session* session = static_cast<Http2Session*>(user_data);\n int32_t id = GetFrameID(frame);\n Http2Stream* stream = session->FindStream(id);\n- CHECK_NOT_NULL(stream);\n+ ...
2018-08-10T22:07:51
golang/go
dcaf785add683fdda9bd0e53395c17c55779a8ac
f6427426787b292ec28cfd826615e3ae9a66b54a
[dev.typeparams] internal/buildcfg: enable defer/go wrapping everywhere For register ABI, we wrap deferred/go'd function with arguments or results in an argumentless closure, so the runtime can call the function without knowing how to marshal the arguments, or reserving frame for arguments and results. The wrapping m...
[ { "path": "src/internal/buildcfg/exp.go", "patch": "@@ -29,7 +29,7 @@ var experimentBaseline = goexperiment.Flags{\n \tRegabiWrappers: regabiSupported,\n \tRegabiG: regabiSupported,\n \tRegabiReflect: regabiSupported,\n-\tRegabiDefer: regabiSupported,\n+\tRegabiDefer: true,\n \tRegabiArgs: ...
2021-05-20T22:03:49
vercel/next.js
e292b7e1084a3761af887935b166e4c0a194b4b6
16745ac09e5b239aaea1b4d78f739ade785c6226
Fix server generation of 404 pages (vercel/turbo#3103) Any `404.js` page would inject a `[...]` path into the server generation. The problem comes from the `pathname_for_path` function, which will extract the extension from that path. In this case, it leads to a basename of `[...` and an extension of `]`, breaking the...
[ { "path": "packages/next-swc/crates/next-core/src/server_rendered_source.rs", "patch": "@@ -318,7 +318,7 @@ async fn create_server_rendered_source_for_directory(\n )\n } else if basename == \"404\" {\n ...
2022-12-21T07:38:44
rust-lang/rust
eec6cfb8dab2d20e58a44df0e1c52c5abf6b2d26
0c33fe2c3d3eecadd17a84b110bb067288a64f1c
rustc_target: RISC-V "Zfinx" is incompatible with {ILP32,LP64}[FD] ABIs Because RISC-V Calling Conventions note that: > This means code targeting the Zfinx extension always uses the ILP32, > ILP32E or LP64 integer calling-convention only ABIs as there is no > dedicated hardware floating-point register file. {ILP32,L...
[ { "path": "compiler/rustc_target/src/target_features.rs", "patch": "@@ -963,12 +963,12 @@ impl Target {\n // about what the intended ABI is.\n match &*self.llvm_abiname {\n \"ilp32d\" | \"lp64d\" => {\n- // Requires d (which implies ...
2025-03-24T00:23:46
huggingface/transformers
1a9188a54e3c718064883ebfad4618c1a1c1985a
b262680af446ce012f43a44f20d97f8a2abba3bd
FIX: Faulty PEFT tests (#37757) Two PEFT tests are actually failing: tests/peft_integration/test_peft_integration.py::PeftIntegrationTester::test_delete_adapter tests/peft_integration/test_peft_integration.py::PeftIntegrationTester::test_peft_pipeline_no_warning This must have been going on for some time but was app...
[ { "path": "tests/peft_integration/test_peft_integration.py", "patch": "@@ -13,6 +13,7 @@\n # limitations under the License.\n import importlib\n import os\n+import re\n import tempfile\n import unittest\n \n@@ -385,7 +386,7 @@ def test_delete_adapter(self):\n \n # Delete remaining adapter\n ...
2025-04-28T13:10:46
nodejs/node
73cb7fb7aed0f8e22153763e62c424d026b5d45d
d3d59821dd136a36dc2e1b4a7d02c936762240f4
test,doc: fix lint error in test fixtures Add first-level header to .md file in fixture directory. The file in question is documentation for the fixture and is not part of any tests. This is in prepration for markdown linting of the `test` directory. PR-URL: https://github.com/nodejs/node/pull/22221 Reviewed-By: Rich...
[ { "path": "test/fixtures/0-dns/README.md", "patch": "@@ -1,3 +1,5 @@\n+# 0-dns\n+\n ## Purpose\n The test cert file for use `test/parallel/test-tls-0-dns-altname.js`\n can be created by using `asn1.js` and `asn1.js-rfc5280`,", "additions": 2, "deletions": 0, "language": "Markdown" } ]
2018-08-09T22:03:18
electron/electron
640ac4305971a7931672f81e0258c634e86c540b
301706b7d6f64f22a8b4ef99475d9964351eb875
mac: Fix the focus event of web contents.
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -15,6 +15,7 @@\n #include \"content/public/browser/web_contents.h\"\n #include \"content/public/browser/web_contents_view.h\"\n #include \"content/public/browser/render_view_host.h\"\n+#include \"content/public/browser/render_widget_host_view.h\"\n...
2014-07-24T05:53:29
vercel/next.js
811837e1a0ee25f24c2a756406093996594397df
9903b0b8e3192321e9d9513fefd15be3f65426ca
Fix server generation of 404 pages (vercel/turbo#3103) Any `404.js` page would inject a `[...]` path into the server generation. The problem comes from the `pathname_for_path` function, which will extract the extension from that path. In this case, it leads to a basename of `[...` and an extension of `]`, breaking the...
[ { "path": "crates/next-core/src/server_rendered_source.rs", "patch": "@@ -318,7 +318,7 @@ async fn create_server_rendered_source_for_directory(\n )\n } else if basename == \"404\" {\n (\n- ...
2022-12-21T07:38:44
golang/go
32b73ae18026e8a9dc4c5aa49999b1ea445bc68c
15d9d4a009e3d2c9f1ad501143ed97a8b2c6f2c4
cmd/go: align checks of module path during initialization. Fixes #45025. Change-Id: I70c2b745f764484e4b3a2824adc470f168fb2c50 Reviewed-on: https://go-review.googlesource.com/c/go/+/320310 Trust: Jay Conrod <jayconrod@google.com> Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Jay Conrod <jayconrod@google.com> ...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -432,7 +432,10 @@ func loadModFile(ctx context.Context) (rs *Requirements, needCommit bool) {\n \tinitTarget(f.Module.Mod)\n \tindex = indexModFile(data, f, fixed)\n \n-\tif err := checkModulePathLax(f.Module.Mod.Path); err != nil {\n+\tif err :=...
2021-05-16T09:03:34
huggingface/transformers
b262680af446ce012f43a44f20d97f8a2abba3bd
82862ce443af1f663191c62974ce165169b3b2a6
Add Bitnet model (#37742) * Adding BitNet b1.58 Model * Add testing code for BitNet * Fix format issues * Fix docstring format issues * Fix docstring * Fix docstring * Fix: weight back to uint8 * Fix * Fix format issues * Remove copy comments * Add model link to the docstring * Fix: set tie_word_embeddings ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -385,6 +385,8 @@\n title: BigBirdPegasus\n - local: model_doc/biogpt\n title: BioGpt\n+ - local: model_doc/bitnet\n+ title: BitNet\n - local: model_doc/blenderbot\n title: Blenderbot\n - local: model_...
2025-04-28T13:08:46
nodejs/node
d3d59821dd136a36dc2e1b4a7d02c936762240f4
74d33630ce34969d6abf57e1e597fcdafef56ab2
doc: clarify http2 docs around class exports PR-URL: https://github.com/nodejs/node/pull/22247 Fixes: https://github.com/nodejs/node/issues/21434 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: George Adams <geor...
[ { "path": "doc/api/http2.md", "patch": "@@ -108,6 +108,11 @@ have occasion to work with the `Http2Session` object directly, with most\n actions typically taken through interactions with either the `Http2Server` or\n `Http2Stream` objects.\n \n+User code will not create `Http2Session` instances directly. Ser...
2018-08-10T18:49:00
electron/electron
6f231d58608f12aea749400b719f761c1df02116
acb8b7771e8abee7675feb2f4af501cbbb6cd7b4
mac: Add BrowserWindow.isDoucumentEdited API, fixes #459.
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -328,6 +328,10 @@ void Window::SetDocumentEdited(bool edited) {\n window_->SetDocumentEdited(edited);\n }\n \n+bool Window::IsDocumentEdited() {\n+ return window_->IsDocumentEdited();\n+}\n+\n mate::Handle<WebContents> Window::GetWebContents(v...
2014-07-24T07:48:33
golang/go
873401df5b202a751523b8cbd92bf3a8aaf989c8
b83610699a4ea7da22a146c0eefe0ae4d5ac4610
cmd/compile: ensure equal functions don't do unaligned loads On architectures which don't support unaligned loads, make sure we don't generate code that requires them. Generated hash functions also matter in this respect, but they all look ok. Update #37716 Fixes #46283 Change-Id: I6197fdfe04da4428092c99bd871d93738...
[ { "path": "src/cmd/compile/internal/reflectdata/alg.go", "patch": "@@ -6,6 +6,7 @@ package reflectdata\n \n import (\n \t\"fmt\"\n+\t\"math/bits\"\n \t\"sort\"\n \n \t\"cmd/compile/internal/base\"\n@@ -47,6 +48,11 @@ func eqCanPanic(t *types.Type) bool {\n func AlgType(t *types.Type) types.AlgKind {\n \ta, ...
2021-05-23T19:38:59
vercel/next.js
6f1f3e6ced909d3fd1af93c6149d9b01d2378c24
0ac617eccd3516c244b000d3cf866a61804d24d8
Disable Image Optimization API when next.config.js has `unoptimized: true` (#44205) This fixes a bug where next.config.js was configured with `images.unoptimzed: true` but the Image Optimization API was not truly disabled. Since there is no way to override the config at the component level, its safe to say the API can...
[ { "path": "packages/next/server/next-server.ts", "patch": "@@ -407,7 +407,7 @@ export default class NextNodeServer extends BaseServer {\n }\n const imagesConfig = this.nextConfig.images\n \n- if (imagesConfig.loader !== 'default') {\n+ if (imagesConfig.loader !== 'defau...
2022-12-21T00:14:47
rust-lang/rust
36c3617bb13b3608170a617eb173e4df96ad3e52
549107dbada33d5531d8d896791d8dc07852d8af
Remove `is_normalizable`. `layout_of` no longer contains a `delay_bug`.
[ { "path": "clippy_lints/src/casts/manual_dangling_ptr.rs", "patch": "@@ -1,6 +1,5 @@\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::source::SpanRangeExt;\n-use clippy_utils::ty::is_normalizable;\n use clippy_utils::{expr_or_init, match_def_path, path_def_id, paths, std_or_core};\n ...
2025-04-30T21:56:14
huggingface/transformers
82862ce443af1f663191c62974ce165169b3b2a6
97e57b2545bfc302cc75f7b4f720a7f77992b69e
[RT-DETR] Improve docs (#37814) Fix docs
[ { "path": "src/transformers/models/rt_detr/configuration_rt_detr.py", "patch": "@@ -29,7 +29,7 @@ class RTDetrConfig(PretrainedConfig):\n This is the configuration class to store the configuration of a [`RTDetrModel`]. It is used to instantiate a\n RT-DETR model according to the specified arguments,...
2025-04-28T11:19:24
nodejs/node
c7ca199c381049f63a97b9aef09daa5e7f8edc7c
0aae34f52e7a6fce0e735dd56fa35ae82892ae3f
util,assert: fix boxed primitives bug Currently the comparison could throw an error in case a boxed primitive has no valueOf function on one side of the assert call. PR-URL: https://github.com/nodejs/node/pull/22243 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> R...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -120,6 +120,9 @@ function strictDeepEqual(val1, val2, memos) {\n const val1Value = val1.valueOf();\n // Note: Boxed string keys are going to be compared again by Object.keys\n if (val1Value !== val1) {\n+ if (typeof val2.valueOf !==...
2018-08-03T18:46:40
electron/electron
acb8b7771e8abee7675feb2f4af501cbbb6cd7b4
301706b7d6f64f22a8b4ef99475d9964351eb875
mac: Add BrowserWindow.getRepresentedFilename API, fixes #460.
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -320,6 +320,10 @@ void Window::SetRepresentedFilename(const std::string& filename) {\n window_->SetRepresentedFilename(filename);\n }\n \n+std::string Window::GetRepresentedFilename() {\n+ return window_->GetRepresentedFilename();\n+}\n+\n voi...
2014-07-18T13:42:26
golang/go
b83610699a4ea7da22a146c0eefe0ae4d5ac4610
a22e3172200d4bdd0afcbbe6564dbb67fea4b03a
cmd/compile: record regabi status in DW_AT_producer Records if regabi was enabled during compilation in the DW_AT_producer attribute of each compile unit. This is useful to debuggers that support the debugCall protocol. Change-Id: I5ad2c48ebf126aeb8bfb459b53a1a5304550036a Reviewed-on: https://go-review.googlesource.c...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -531,6 +531,14 @@ func RecordFlags(flags ...string) {\n \t\tfmt.Fprintf(&cmd, \" -%s=%v\", f.Name, getter.Get())\n \t}\n \n+\t// Adds flag to producer string singalling whether regabi is turned on or\n+\t// off.\n+\t// Once regabi is turne...
2021-05-09T07:05:45
rust-lang/rust
0f81fca8ec623e849225a254ef6f639963ff54c0
7188f453111502962326022740e2657fce0a6939
Change rustc_driver dependency on stable_mir crate This fixes issues with RustAnalyzer not finding stable_mir crate. It is also part of the long term architecture plan for these crates, since we are moving towards having stable_mir depend on rustc_smir and not the other way around. I believe this is an utility functi...
[ { "path": "Cargo.lock", "patch": "@@ -3583,13 +3583,13 @@ dependencies = [\n \"rustc_query_system\",\n \"rustc_resolve\",\n \"rustc_session\",\n- \"rustc_smir\",\n \"rustc_span\",\n \"rustc_target\",\n \"rustc_trait_selection\",\n \"rustc_ty_utils\",\n \"serde_json\",\n \"shlex\",\n+ \"stable_mir\"...
2025-04-30T22:39:52
huggingface/transformers
97e57b2545bfc302cc75f7b4f720a7f77992b69e
33493542aaa61357ca1d81d04f1f5b5140aa01b5
Fix: Correct tensor shape comment in Mamba modeling (#37801) * Fix: Correct tensor shape comment in Mamba modeling * Update src/transformers/models/mamba/modeling_mamba.py * Update src/transformers/models/mamba/modeling_mamba.py --------- Co-authored-by: ShadyPi <11342288+shadypi@user.noreply.gitee.com> Co-authore...
[ { "path": "src/transformers/models/mamba/modeling_mamba.py", "patch": "@@ -301,10 +301,10 @@ def slow_forward(self, input_states, cache_params: Optional[MambaCache]=None, ca\n else:\n scan_outputs = []\n for i in range(seq_len):\n- ssm_state = discrete_A[:, :, ...
2025-04-28T10:56:42
vercel/next.js
1f8dbf20c100a5ccdc082af09893d6723b814e34
186e25f7b1899547d5bdfcb253b0bd7dca760d22
build(cargo): bump up turbopack (#44206) This PR bumps up turbopack for the next canary release. ## 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) ...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -123,7 +123,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?rev=c7b627c67c072b99f0d2fa578a6404db0be633c5#c7b627c67c072b99f0d2fa578a6404db0be633c5\"\n+source = \"gi...
2022-12-20T21:08:23
electron/electron
e4484f0c3e14cf14578318600ebb7e817d94b1fd
dd404fb785650239c68f87cf311e7bcce6545ecc
win: Fix parent window of dialogs.
[ { "path": "atom/browser/ui/file_dialog_win.cc", "patch": "@@ -9,7 +9,7 @@\n #include <commdlg.h>\n #include <shlobj.h>\n \n-#include \"atom/browser/native_window.h\"\n+#include \"atom/browser/native_window_views.h\"\n #include \"base/file_util.h\"\n #include \"base/i18n/case_conversion.h\"\n #include \"base...
2014-07-21T14:10:35
nodejs/node
3ce92755eb099c80f03a5f3a46dadf66fddd16b2
45d0b4a300cbc845727fee75c59427cc343b1559
doc: add multiple issue templates for GitHub Fixes: https://github.com/nodejs/node/issues/21812 PR-URL: https://github.com/nodejs/node/pull/22215 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: George Adams <george.ada...
[ { "path": ".github/ISSUE_TEMPLATE/1-bug-report.md", "patch": "@@ -0,0 +1,24 @@\n+---\n+name: \"\\U0001F41B Bug report\"\n+about: Create a report to help us improve\n+\n+---\n+\n+<!--\n+Thank you for reporting a possible bug in Node.js.\n+\n+Please fill in as much of the template below as you can.\n+\n+Versi...
2018-08-09T14:59:55
huggingface/transformers
33493542aaa61357ca1d81d04f1f5b5140aa01b5
d5fa7d2d199b41711a2e16aec84ee54613633898
[doc] fix the code examples in qwen doc (#37803)
[ { "path": "docs/source/en/model_doc/qwen2_5_omni.md", "patch": "@@ -59,7 +59,7 @@ model = Qwen2_5OmniForConditionalGeneration.from_pretrained(\n )\n processor = Qwen2_5OmniProcessor.from_pretrained(\"Qwen/Qwen2.5-Omni-7B\")\n \n-conversation = [\n+conversations = [\n {\n \"role\": \"system\",\n ...
2025-04-28T10:56:32
vercel/next.js
186e25f7b1899547d5bdfcb253b0bd7dca760d22
e847b496738fe968610a858b7a703935abfa2505
Add warning for experimental flags that have moved (#44202) These options have been moved out of `experimental`. ## 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/cont...
[ { "path": "packages/next/server/config.ts", "patch": "@@ -615,6 +615,42 @@ function assignDefaults(dir: string, userConfig: { [key: string]: any }) {\n result.transpilePackages = (result.experimental as any).transpilePackages\n }\n \n+ if (\n+ result.experimental &&\n+ 'allowMiddlewareResponseB...
2022-12-20T19:46:01
electron/electron
e6998dfd4b747adfbf1e18ba24f49a3d9b92f0be
21949e2f0c4d4ffd17a0d49899269d1d05e25656
linux: Fix compilation error caused by X header.
[ { "path": "atom/browser/ui/file_dialog_gtk.cc", "patch": "@@ -8,6 +8,12 @@\n #include <gdk/gdkx.h>\n #include <gtk/gtk.h>\n \n+// This conflicts with mate::Converter,\n+#undef True\n+#undef False\n+// and V8.\n+#undef None\n+\n #include \"atom/browser/native_window.h\"\n #include \"base/callback.h\"\n #incl...
2014-07-21T13:48:23
golang/go
a22e3172200d4bdd0afcbbe6564dbb67fea4b03a
4356e7e85fcd8f59de6bc1fd1db6e4f01a92f19e
cmd/compile: always include underlying type for map types This is a different fix for #37716. Should help make the fix for #46283 easier, since we will no longer need to keep compiler-generated hash functions and the runtime hash function in sync. Change-Id: I84cb93144e425dcd03afc552b5fbd0f2d2cc6d39 Reviewed-on: htt...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -1112,6 +1112,15 @@ func writeType(t *types.Type) *obj.LSym {\n \t\t}\n \t\tot = objw.Uint32(lsym, ot, flags)\n \t\tot = dextratype(lsym, ot, t, 0)\n+\t\tif u := t.Underlying(); u != t {\n+\t\t\t// If t is a named map type, also keep ...
2021-05-23T04:59:00
nodejs/node
45d0b4a300cbc845727fee75c59427cc343b1559
801c490033d5a16c0995bb131398689407a74231
src: yield empty maybes for failed AsyncWrap::MakeCallback calls Use an empty `MaybeLocal<Value>` as the return value for `AsyncWrap::MakeCallback()` if an exception occurred, regardless of `MakeCallback` depth. Unfortunately, the public API can not make this switch without a breaking change (and possibly some kind o...
[ { "path": "src/callback_scope.cc", "patch": "@@ -87,7 +87,7 @@ void InternalCallbackScope::Close() {\n AsyncWrap::EmitAfter(env_, async_context_.async_id);\n }\n \n- if (IsInnerMakeCallback()) {\n+ if (env_->makecallback_depth() > 1) {\n return;\n }\n ", "additions": 1, "deletions": 1,...
2018-08-01T23:07:57
huggingface/transformers
d5fa7d2d199b41711a2e16aec84ee54613633898
f466603963069c6a88d88c5fdda3e82f73b3617e
Fix typos in strings and comments (#37799)
[ { "path": "src/transformers/audio_utils.py", "patch": "@@ -1146,9 +1146,9 @@ def stft(frames: np.array, windowing_function: np.array, fft_window_size: Option\n tutorial]https://download.ni.com/evaluation/pxi/Understanding%20FFTs%20and%20Windowing.pdf\n fft_window_size (`int`, *optional*)...
2025-04-28T10:39:11
vercel/next.js
9903b0b8e3192321e9d9513fefd15be3f65426ca
fb1868d283ffbc2ac320a6699f94ffb6bb5372c1
fixes the double execution when generated files didn't exist yet (vercel/turbo#3093) There is a race condition between file writes and file reads. Because of the low delay of our watcher, we sometimes see partial files written and start updating the compilation based on that. This adds a queue per file in the files...
[ { "path": "crates/turbo-tasks-fs/Cargo.toml", "patch": "@@ -24,6 +24,7 @@ include_dir = { version = \"0.7.2\", features = [\"nightly\"] }\n jsonc-parser = { version = \"0.21.0\", features = [\"serde\"] }\n mime = \"0.3.16\"\n notify = \"4.0.17\"\n+parking_lot = \"0.12.1\"\n serde = { version = \"1.0.136\", ...
2022-12-20T19:41:41
golang/go
4356e7e85fcd8f59de6bc1fd1db6e4f01a92f19e
52d7033ff6d56094b7fa852bbdf51b4525bd6bb2
runtime: account for spill slots in Windows callback compilation The Go ABI, as it stands, requires spill space to be reserved for register arguments. syscall.NewCallback (because of compileCallback) does not actually reserve this space, leading to issues if the Go code it invokes actually makes use of it. Fixes #463...
[ { "path": "src/runtime/syscall_windows.go", "patch": "@@ -64,6 +64,7 @@ type abiDesc struct {\n \n \tsrcStackSize uintptr // stdcall/fastcall stack space tracking\n \tdstStackSize uintptr // Go stack space used\n+\tdstSpill uintptr // Extra stack space for argument spill slots\n \tdstRegisters int /...
2021-05-21T20:30:02
electron/electron
21949e2f0c4d4ffd17a0d49899269d1d05e25656
1a79093378bfd457fda817ff1e4d19f01d049950
views: Don't retain MenuRunner on heap. Sometimes the MenuHost would crash when the window is closed, the author didn't recommend using MenuRunner on stack, but since we always run the menu synchronously, this is no problem.
[ { "path": "atom/browser/api/atom_api_menu_views.cc", "patch": "@@ -25,16 +25,14 @@ void MenuViews::Popup(Window* window) {\n cursor = gfx::win::ScreenToDIPPoint(cursor);\n #endif\n \n- menu_runner_.reset(new views::MenuRunner(model()));\n- views::MenuRunner::RunResult result = menu_runner_->RunMenuAt(\n...
2014-07-21T13:42:01
huggingface/transformers
a41b6d9b5c39e002670c1d852e822d0de4aca39b
816b37010cb6fd963433c6c5681b18be6475592e
Fix the fsdp config cannot work issue. (#37549) * Fix the fsdp config cannot work issue. Signed-off-by: yuanwu <yuan.wu@intel.com> * Check the fsdp_config type Signed-off-by: yuanwu <yuan.wu@intel.com> * Add the accelerate_fsdp_config test Signed-off-by: yuanwu <yuan.wu@intel.com> * fix error of make style Sign...
[ { "path": "src/transformers/training_args.py", "patch": "@@ -1872,10 +1872,12 @@ def __post_init__(self):\n warnings.warn(\"`--fsdp_config` is useful only when `--fsdp` is specified.\")\n with open(self.fsdp_config, encoding=\"utf-8\") as f:\n self.fsdp_config = j...
2025-04-28T08:44:51
vercel/next.js
e847b496738fe968610a858b7a703935abfa2505
966d2b16c3b980d1a5c9f3a6e75878769c5379de
Add telemetry for stable features (#44201) Follow up to #44195 #44194. ## 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 - [ ] Implements...
[ { "path": "packages/next/build/webpack-config.ts", "patch": "@@ -2147,6 +2147,16 @@ export default async function getBaseWebpackConfig(\n ['swcImportSource', !!jsConfig?.compilerOptions?.jsxImportSource],\n ['swcEmotion', !!config.compiler?.emotion],\n ['turbotrace'...
2022-12-20T19:20:44
golang/go
b18b2d372e263dda8862c1eafef739403ba4521d
5b1120fac7e234af44c09ec0db1982aa2c7b7357
[dev.typeparams] cmd/compile: fix case where we were copying a raw Node Replace the raw Node copy with the creation of a new node, and the copying of the needed flags and fields. Change-Id: I636bf228ba28c0d5dc25f8366d82379d86ecd731 Reviewed-on: https://go-review.googlesource.com/c/go/+/322189 Run-TryBot: Dan Scales ...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -1153,17 +1153,21 @@ func (subst *inlsubst) fields(oldt *types.Type) []*types.Field {\n // clovar creates a new ONAME node for a local variable or param of a closure\n // inside a function being inlined.\n func (subst *inlsubst) clovar(n *ir.N...
2021-05-22T03:09:55
electron/electron
ffad6fe884acde5212e05e2d41c9043bf9329714
0ca33dc6b8ecb461255680d3de6f51be70a10018
win: Fix compilation error.
[ { "path": "atom/browser/ui/views/menu_delegate.cc", "patch": "@@ -48,7 +48,6 @@ void MenuDelegate::RunMenu(ui::MenuModel* model, views::MenuButton* button) {\n \n views::MenuItemView* MenuDelegate::BuildMenu(ui::MenuModel* model) {\n DCHECK_GE(id_, 0);\n- DCHECK_LT(id_, items_.size());\n \n if (!items_...
2014-07-21T12:45:31
huggingface/transformers
397a5ede33863d6f7137c771a68d40036cac0396
6ce675ee8150531c505bd4dc97ec293b009e36b5
Fix error message in `hub.py` (#37796) Fix error message
[ { "path": "src/transformers/utils/hub.py", "patch": "@@ -572,7 +572,7 @@ def cached_files(\n )\n raise EnvironmentError(\n f\"{path_or_repo_id} does not appear to have {msg}. Checkout 'https://huggingface.co/{path_or_repo_id}/tree/{revision_}'\"\n- \"for available file...
2025-04-25T21:03:06
vercel/next.js
966d2b16c3b980d1a5c9f3a6e75878769c5379de
04daf7eb0687c4cc891b5efb720280fbd7fb8f04
Fix CSS resources being duplicated in app dir (#44168) Currently, to get all the chunk files that contain a specific module in a build, we use `chunk.files`. However a module itself can be included by multiple chunks, or even chunks from different entries. Theoretically that's correct but in our architecture, we only ...
[ { "path": "packages/next/build/webpack-config.ts", "patch": "@@ -2105,6 +2105,7 @@ export default async function getBaseWebpackConfig(\n (isClient\n ? new FlightManifestPlugin({\n dev,\n+ appDir,\n })\n : new FlightClientEntryPlugin({\n ...
2022-12-20T18:43:03
golang/go
cca23a73733ff166722c69359f0bb45e12ccaa2b
f87194cbd7e79eef07c897a6240fbf2dc115f9ff
cmd/compile: revert CL/316890 This is a revert of https://go-review.googlesource.com/c/go/+/316890, which has positive effects on debugging + DWARF variable locations for register parameters when the reg abi is in effect, but also turns out to interact badly with the register allocator. Fixes #46304. Change-Id: I624...
[ { "path": "src/cmd/compile/internal/ssa/expand_calls.go", "patch": "@@ -1717,22 +1717,6 @@ func (x *expandState) newArgToMemOrRegs(baseArg, toReplace *Value, offset int64,\n \t} else {\n \t\tw = baseArg.Block.NewValue0IA(pos, op, t, auxInt, aux)\n \t}\n-\t// If we are creating an OpArgIntReg/OpArgFloatReg t...
2021-05-21T14:53:10
electron/electron
0ca33dc6b8ecb461255680d3de6f51be70a10018
fab11950ee4321661629a10a785254655bd88b8a
Add script to upload checksums of node headers, fixes #457.
[ { "path": "script/lib/util.py", "patch": "@@ -30,6 +30,7 @@ def scoped_cwd(path):\n \n \n def download(text, url, path):\n+ safe_mkdir(os.path.dirname(path))\n with open(path, 'w') as local_file:\n web_file = urllib2.urlopen(url)\n file_size = int(web_file.info().getheaders(\"Content-Length\")[0]...
2014-07-21T08:31:51
huggingface/transformers
6ce675ee8150531c505bd4dc97ec293b009e36b5
57c620bf8ad2d8eb2210ce3fa0faacbb9b5e579f
fix performance issue in convert_ids_to_tokens (#37773)
[ { "path": "src/transformers/tokenization_utils_fast.py", "patch": "@@ -410,9 +410,11 @@ def convert_ids_to_tokens(\n if isinstance(ids, int):\n return self._tokenizer.id_to_token(ids)\n tokens = []\n+ # self.all_special_ids is an @property which may be slow, so only comput...
2025-04-25T20:00:50
vercel/next.js
04daf7eb0687c4cc891b5efb720280fbd7fb8f04
cafb886ed6d55519c95a69eb9e71e0856a38e076
Move `transpilePackages` out of experimental (#44194) Should be good to land and it got tests covered. ## 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.m...
[ { "path": "packages/next/build/jest/jest.ts", "patch": "@@ -95,9 +95,7 @@ export default function nextJest(options: { dir?: string } = {}) {\n await lockfilePatchPromise.cur\n }\n \n- const transpiled = (\n- nextConfig?.experimental?.transpilePackages ?? []\n- ).join('|')\n+ ...
2022-12-20T17:27:30
huggingface/transformers
57c620bf8ad2d8eb2210ce3fa0faacbb9b5e579f
eb4afdd1fbacd632692be1b4809371959d38bff0
chore: update SigLIP2 model card (#37624) * update siglip2 model card * Update docs/source/en/model_doc/siglip2.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/model_doc/siglip2.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update d...
[ { "path": "docs/source/en/model_doc/siglip2.md", "patch": "@@ -14,225 +14,160 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# SigLIP2\n-\n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=pytorch&logoColor=white\"...
2025-04-25T19:46:17
electron/electron
fab11950ee4321661629a10a785254655bd88b8a
365638f1d5d9c8466779fb61e6144b7b600b7c83
Fix crashing when setting web-preferences, closes #443.
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -79,9 +79,7 @@ NativeWindow::NativeWindow(content::WebContents* web_contents,\n options.Get(switches::kNodeIntegration, &node_integration_);\n \n // Read the web preferences.\n- scoped_ptr<mate::Dictionary> web_preferences(new mate::Dictionary);\n...
2014-07-21T05:08:52
golang/go
f87194cbd7e79eef07c897a6240fbf2dc115f9ff
217f5dd496e14f0e0617c9efe0509073dec95d61
doc/go1.17: document changes to net/http package Changes include: * ReadRequest function now returns an error when a request has multiple Host headers. For #44513. Updates #46015. Change-Id: I48ea7c5cee3f1d1a247035fd37191362a53d1f04 Reviewed-on: https://go-review.googlesource.com/c/go/+/317914 Reviewed-by: Dmitri ...
[ { "path": "doc/go1.17.html", "patch": "@@ -423,7 +423,8 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </p>\n \n <p><!-- CL 308952 -->\n- TODO: <a href=\"https://golang.org/cl/308952\">https://golang.org/cl/308952</a>: make ReadRequest return an error when requests have...
2021-05-07T08:31:00