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
vercel/next.js
0c85f8aad3de504b8b17e3f2df4403979aedb150
1f999b6f4d027165acbfb9e2294186573c2e0bf1
Docs: Add notes that revalidation is not available in the Edge runtime / only Node.js (#54338) Fixes: https://vercel.slack.com/archives/C03S9JCH2Q5/p1692261964220369
[ { "path": "docs/02-app/01-building-your-application/02-data-fetching/01-fetching-caching-and-revalidating.mdx", "patch": "@@ -115,6 +115,8 @@ If you have multiple fetch requests in a statically rendered route, and each has\n \n Learn more about [time-based revalidation](/docs/app/building-your-application/c...
2023-08-21T22:00:40
nodejs/node
f17111280e34756c4c8a2d5e7825379baff78e78
f6de66ee711a4159355dfc05a3f5eadb3f1b8cc2
src: fix signal handler crash on close PR-URL: https://github.com/nodejs/node/pull/30582 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <mi...
[ { "path": "src/signal_wrap.cc", "patch": "@@ -91,7 +91,10 @@ class SignalWrap : public HandleWrap {\n }\n \n void Close(v8::Local<v8::Value> close_callback) override {\n- if (active_) DecreaseSignalHandlerCount(handle_.signum);\n+ if (active_) {\n+ DecreaseSignalHandlerCount(handle_.signum);\...
2019-11-22T03:44:43
golang/go
4649a439035a0634109f11f7ac25e4e7184b5598
85d466493dc5b46228440fcb3dafacf4556101e6
runtime: track how much memory is mapped in the Ready state This change adds a field to memstats called mappedReady that tracks how much memory is in the Ready state at any given time. In essence, it's the total memory usage by the Go runtime (with one exception which is documented). Essentially, all memory mapped rea...
[ { "path": "src/runtime/debuglog.go", "patch": "@@ -72,7 +72,9 @@ func dlog() *dlogger {\n \n \t// If that failed, allocate a new logger.\n \tif l == nil {\n-\t\tl = (*dlogger)(sysAlloc(unsafe.Sizeof(dlogger{}), nil))\n+\t\t// Use sysAllocOS instead of sysAlloc because we want to interfere\n+\t\t// with the ...
2022-03-15T02:48:18
huggingface/transformers
522975849c4235fafe595b1808e93eb3b16f0124
81b53436bf97b8cb02040839a902e0b799be3159
fix: Load model with co-located adapter from local path (Granite Speech) (#43781) * fix: Only overwrite the pretrained_model_name_or_path if needed with adapter The check is based on the assumption that if the current value is a path on disk and there is a `config.json` present in that path, the path points to a full...
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -954,7 +954,14 @@ def maybe_load_adapters(\n if _adapter_model_path is not None and os.path.isfile(_adapter_model_path):\n with open(_adapter_model_path, \"r\", encoding=\"utf-8\") as f:\n _adapter_model_path = pretraine...
2026-03-05T14:14:43
vercel/next.js
1f999b6f4d027165acbfb9e2294186573c2e0bf1
06e7e76cfff17b05d6d749d053c75b8e84f4aebe
OpenTel: ensure that exceptions are recorded on an active span (#54131) Examples of the output with this change: <img width="346" alt="image" src="https://github.com/vercel/next.js/assets/726049/6f8b94ea-5890-401a-9760-15af38ea4f0c">
[ { "path": "packages/next/src/server/app-render/create-error-handler.tsx", "patch": "@@ -4,6 +4,7 @@ import { formatServerError } from '../../lib/format-server-error'\n import { isNotFoundError } from '../../client/components/not-found'\n import { isRedirectError } from '../../client/components/redirect'\n i...
2023-08-21T21:47:40
electron/electron
1aedccaeeb2d8e8db7bc409f701054d347a7c40d
5eeadb0ad4c3473961343068d4ed6404db41901c
Fix scroll conflict
[ { "path": "atom/browser/native_window_mac.h", "patch": "@@ -12,14 +12,16 @@\n \n #include \"base/mac/scoped_nsobject.h\"\n #include \"atom/browser/native_window.h\"\n+#include \"content/public/browser/render_widget_host.h\"\n \n @class AtomNSWindow;\n @class AtomNSWindowDelegate;\n @class FullSizeContentVie...
2016-08-01T10:01:21
huggingface/transformers
81b53436bf97b8cb02040839a902e0b799be3159
130f1644873e2bbd4b234b68e71c65e85ed86825
[Trainer] fix SP loss (#44461) * fix SP loss * better fallback * Apply suggestion from @kashif
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -703,7 +703,18 @@ def deepspeed_sp_compute_loss(accelerator, model, inputs, return_outputs, pc):\n outputs = model(**inputs)\n loss = outputs.loss\n \n- sp_group = accelerator.torch_device_mesh[\"sp\"].get_group()\n+ # Prefer...
2026-03-05T12:45:36
nodejs/node
f6de66ee711a4159355dfc05a3f5eadb3f1b8cc2
917fedd21ae07c6fac10681c9393a2c7652a5f1e
doc: fix a typo in a date for version 13.2.0 PR-URL: https://github.com/nodejs/node/pull/30587 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/changelogs/CHANGELOG_V13.md", "patch": "@@ -33,7 +33,7 @@\n * [Archive](CHANGELOG_ARCHIVE.md)\n \n <a id=\"13.2.0\"></a>\n-## 2019-21-19, Version 13.2.0 (Current), @MylesBorins\n+## 2019-11-21, Version 13.2.0 (Current), @MylesBorins\n \n ### Notable Changes\n ", "additions": 1, "del...
2019-11-22T08:36:11
golang/go
0feebe6eb594e28c29022c65ffcd2ae0e8bebac7
01359b46815e63307077dfa03972f40d2e0d94fe
runtime: add byte count parser for GOMEMLIMIT This change adds a parser for the GOMEMLIMIT environment variable's input. This environment variable accepts a number followed by an optional prefix expressing the unit. Acceptable units include B, KiB, MiB, GiB, TiB, where *iB is a power-of-two byte unit. For #48409. Ch...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -33,6 +33,7 @@ var Fastlog2 = fastlog2\n \n var Atoi = atoi\n var Atoi32 = atoi32\n+var ParseByteCount = parseByteCount\n \n var Nanotime = nanotime\n var NetpollBreak = netpollBreak", "additions": 1, "deletions": 0, "language": "Go" }, { ...
2022-02-15T00:22:20
huggingface/transformers
5c31e940e3470ab92b8083dfa797200f67793d30
cc7ab9be508ce6ed3637bba9e50367b29b742dc6
skip 1 invalid test case for higgs_audio_v2 (#44350) * skip 1 invalid test case for higgs_audio_v2 Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * fix bug Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <...
[ { "path": "src/transformers/models/higgs_audio_v2/generation_higgs_audio_v2.py", "patch": "@@ -107,7 +107,7 @@ def __init__(\n \n @add_start_docstrings(LOGITS_PROCESSOR_INPUTS_DOCSTRING)\n def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> torch.FloatTensor:\n- scor...
2026-03-05T11:08:08
golang/go
920b9ab57dc6be573e8da705f13cf17ebab65342
3e00bd0ae4482064aa9eac0695078b1096ee913a
cmd/compile/internal/syntax: accept all valid type parameter lists Type parameter lists starting with the form [name *T|...] or [name (X)|...] may look like an array length expression [x]. Only after parsing the entire initial expression and checking whether the expression contains type elements or is followed by a co...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -599,10 +599,12 @@ func (p *parser) typeDecl(group *Group) Decl {\n \t\t\t// with a \"[\" as in: P []E. In that case, simply parsing\n \t\t\t// an expression would lead to an error: P[] is invalid.\n \t\t\t// But since index or slice expres...
2022-04-21T05:19:49
huggingface/transformers
cc7ab9be508ce6ed3637bba9e50367b29b742dc6
421c7f6248e28d24d84ee000252a1e71fbc24917
Fix position_ids typo in Qwen3_5TextModel forward pass (#44399) * Fix position_ids typo in Qwen3_5TextModel forward pass In `Qwen3_5TextModel.forward`, after splitting `position_ids` into `text_position_ids` (index 0, for text) and `position_ids` (indices 1:, for temporal/height/width), the decoder layer call incorre...
[ { "path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py", "patch": "@@ -1354,7 +1354,7 @@ def forward(\n hidden_states,\n position_embeddings=position_embeddings,\n attention_mask=layer_mask,\n- position_ids=position_ids,\n+ ...
2026-03-05T09:47:23
golang/go
0537a74b76fcab1398da6699c3ff7411fef8fbe7
d0cda4d95f4c889fdb4988750f704604553c35a4
io: NopCloser forward WriterTo implementations if the reader supports it This patch also include related fixes to net/http. io_test.go don't test reading or WritingTo of the because the logic is simple. NopCloser didn't even had direct tests before. Fixes #51566 Change-Id: I1943ee2c20d0fe749f4d04177342ce6eca443efe ...
[ { "path": "src/io/io.go", "patch": "@@ -621,7 +621,12 @@ func (discard) ReadFrom(r Reader) (n int64, err error) {\n \n // NopCloser returns a ReadCloser with a no-op Close method wrapping\n // the provided Reader r.\n+// If r implements WriterTo, the returned ReadCloser will implement WriterTo\n+// by forwa...
2022-05-02T11:50:36
rust-lang/rust
b2c4e6de2fbcd8dccd60acc6cfbd0492e983dd6c
e62e27bf5bbae5d0ba596ae43356a7c9c988a067
fix: ignore pattern_type_mismatch when external macro owns the match changelog: [`pattern_type_mismatch`]: fix unwanted hit in external macro
[ { "path": "clippy_lints/src/pattern_type_mismatch.rs", "patch": "@@ -96,6 +96,12 @@ impl<'tcx> LateLintPass<'tcx> for PatternTypeMismatch {\n \n fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {\n if let ExprKind::Match(_, arms, _) = expr.kind {\n+ // if the mat...
2025-07-17T22:44:30
huggingface/transformers
421c7f6248e28d24d84ee000252a1e71fbc24917
a2da4b16633ef9c2679b3a9e300b938851c6b80a
[core] 🚨 Completely remove cache positions (#44181) * fully remove from the mask api * fully remove from cache api * remove it from llama + modulars * remove them from all modulars of llama descendants * reapply all those modualrs * a few more * style * style * better get_seq_length * fix signatures * fix d...
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -1,6 +1,5 @@\n from abc import ABC, abstractmethod\n from collections.abc import Iterable\n-from typing import Any\n \n import torch\n \n@@ -42,11 +41,11 @@ def lazy_initialization(self, key_states: torch.Tensor, value_states: torch.Tens\n \n @ab...
2026-03-04T18:08:40
rust-lang/rust
7662731d75ceb19f6242c61a6812c22809e6adc2
ee430346fe2265fc320c098efe8e1bbcbe0dd54c
Fix formatting.
[ { "path": "compiler/rustc_passes/src/stability.rs", "patch": "@@ -231,13 +231,14 @@ fn lookup_const_stability(tcx: TyCtxt<'_>, def_id: LocalDefId) -> Option<ConstSt\n let mut const_stab = const_stab\n .map(|const_stab| ConstStability::from_partial(const_stab, const_stability_indirect));\n \n- ...
2025-07-16T22:43:26
golang/go
b75e492b35746ca3b327f7b353f4912e705a3125
a41e37f56a4fc2523ac88a76bf54ba3e45dcf533
go/types,types2: delay the check for conflicting struct field names In #52529, we observed that checking types for duplicate fields and methods during method collection can result in incorrect early expansion of the base type. Fix this by delaying the check for duplicate fields. Notably, we can't delay the check for d...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -636,14 +636,12 @@ func (check *Checker) collectMethods(obj *TypeName) {\n \tbase, _ := obj.typ.(*Named) // shouldn't fail but be conservative\n \tif base != nil {\n \t\tassert(base.targs.Len() == 0) // collectMethods should not be called on ...
2022-05-02T15:13:08
huggingface/transformers
a2da4b16633ef9c2679b3a9e300b938851c6b80a
78ff3a1cb5070ff639857f9caa702dc9934bb59c
chore(typing): Add type checking to `src/transformers/generation` (#44233) * chore(typing): add `ty` type checking for src/transformers/generation Add type declarations for mixin host-class attributes on GenerationMixin, class-level annotations for dynamically-set attributes on GenerationConfig, and fix minor typing ...
[ { "path": "AGENTS.md", "patch": "@@ -1,5 +1,5 @@\n ## Useful commands\n-- `make style`: runs formatters and linters, necessary to pass code style checks\n+- `make style`: runs formatters, linters and type checker, necessary to pass code style checks\n - `make fix-repo`: auto-fixes copies, modular conversion...
2026-03-04T17:24:34
rust-lang/rust
e81009d303ca3a6707225685b66211b0be412250
11e3ae31d87125ec16da801755da4e3ed2e6e589
Include ErrorGuaranteed in StableSince::Err.
[ { "path": "clippy_lints/src/std_instead_of_core.rs", "patch": "@@ -249,7 +249,7 @@ fn is_stable(cx: &LateContext<'_>, mut def_id: DefId, msrv: Msrv) -> bool {\n let stable = match since {\n StableSince::Version(v) => msrv.meets(cx, v),\n StableSince::Current => ms...
2025-07-16T22:39:04
golang/go
a41e37f56a4fc2523ac88a76bf54ba3e45dcf533
0668e3cb1a8407547f1b4e316748d3b898564f8e
cmd/internal/notsha256: fix ppc64 build The Go 1.8 toolchain on the builder does not support the assembly in this directory for ppc64, so just delete it. Change-Id: I97caf9d176b7d72b4a265a008b84d91bb86ef70e Reviewed-on: https://go-review.googlesource.com/c/go/+/403616 TryBot-Result: Gopher Robot <gobot@golang.org> Au...
[ { "path": "src/cmd/internal/notsha256/sha256block_decl.go", "patch": "@@ -2,8 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build 386 || amd64 || ppc64le || ppc64\n-// +build 386 amd64 ppc64le ppc64\n+//go:build 386 || amd64\n+/...
2022-05-03T11:14:48
vercel/next.js
892839ff83f25b368f71a1e79195699d7e4536fa
36c14da3d58540009b4c08c56d33d5accff34912
fix: server actions blocking navigation events (#54307) A long-running server action shouldn't block page navigation. This makes use of a global mutable to detect when a navigation event occurs -- this change will unblock other reducers (such as navigation). If we bailed on the action, we trigger a `router.refresh()`...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -38,6 +38,7 @@ import {\n RouterChangeByServerResponse,\n RouterNavigate,\n ServerActionDispatcher,\n+ ServerActionMutable,\n } from './router-reducer/router-reducer-types'\n import { createHrefFromUrl } from './router-reduc...
2023-08-21T20:34:42
huggingface/transformers
8757098be4d2386d45900b30168855996ca22810
22c35ca55b64af7fa08a8a30ea26d4d8dda88056
Fix GPT2 attention scaling ignored in SDPA/FlashAttention (#44397) * Fix GPT2 attention scaling config ignored in SDPA/FlashAttention backends GPT2Attention.forward() did not pass the `scaling` parameter to `attention_interface`, causing `scale_attn_weights` and `scale_attn_by_inverse_layer_idx` config options to be ...
[ { "path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py", "patch": "@@ -44,27 +44,20 @@\n \n \n # Copied from transformers.models.gpt2.modeling_gpt2.eager_attention_forward\n-def eager_attention_forward(module, query, key, value, attention_mask, **kwargs):\n- attn_weights...
2026-03-04T16:33:07
nodejs/node
f04f4aef1014e207356abc1f57c197732de118d2
9fbad51c8a6afdaf7d24d57a1712319346efe28e
test: improve assertion message in internet dgram test When an error occurs unexpectedly, let the user know what the error is. PR-URL: https://github.com/nodejs/node/pull/30545 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/internet/test-dgram-send-cb-quelches-error.js", "patch": "@@ -28,7 +28,7 @@ function callbackOnly(err) {\n }\n \n function onEvent(err) {\n- assert.fail('Error should not be emitted if there is callback');\n+ assert.fail(`Error should not be emitted if there is callback: ${err}`);\n }\n \n...
2019-11-19T14:42:07
rust-lang/rust
83255f57e09694f68b5df6713de46de7894d469b
439803deada83319f685cfd1156ef847ed127742
Include ErrorGuaranteed in StableSince::Err.
[ { "path": "compiler/rustc_attr_data_structures/src/lib.rs", "patch": "@@ -24,7 +24,7 @@ use rustc_ast::token::CommentKind;\n use rustc_ast::{AttrStyle, IntTy, UintTy};\n use rustc_ast_pretty::pp::Printer;\n use rustc_span::hygiene::Transparency;\n-use rustc_span::{Span, Symbol};\n+use rustc_span::{ErrorGuar...
2025-07-16T22:39:04
golang/go
0668e3cb1a8407547f1b4e316748d3b898564f8e
f771edd7f92a47c276d65fbd9619e16a786c6746
cmd/compile: support pointers to arrays in arrayClear Fixes #52635 Change-Id: I85f182931e30292983ef86c55a0ab6e01282395c Reviewed-on: https://go-review.googlesource.com/c/go/+/403337 Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Cuong Manh Le <cuong.manhl...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -403,8 +403,14 @@ func arrayClear(loop *ir.RangeStmt, v1, v2, a ir.Node) ir.Node {\n \t\treturn nil\n \t}\n \tlhs := stmt.X.(*ir.IndexExpr)\n+\tx := lhs.X\n+\tif a.Type().IsPtr() && a.Type().Elem().IsArray() {\n+\t\tif s, ok := x.(*ir.StarExpr...
2022-05-01T17:25:16
huggingface/transformers
22c35ca55b64af7fa08a8a30ea26d4d8dda88056
8c61e44d66a0b6fe7b9f11a474318145694bd442
Add future model support for Fouroversix (#44286) * Add fouroversix integration and docs * Small fix * Update quantized modules outside of FourOverSixQuantize * Delete high-precision parameters during conversion and before weight loading * Update year Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.nor...
[ { "path": "src/transformers/integrations/fouroversix.py", "patch": "@@ -44,7 +44,7 @@ def convert(\n \n # Delete the high-precision parameters from the module after we used them to create\n # the quantized parameters\n- for parameter_name in module.parameters_to_quantize:\n+ if...
2026-03-04T16:28:13
electron/electron
c0c7b81aed696be505ff43f0e5d5fe5282a8690e
31d8e1b9c9bb4e352e2cc44c2b7646e3e921aa68
Fix building on Linux
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit 26a8d4cb27bfb63924b960d0b336d869145dd669\n+Subproject commit 4388d4e04d899f342e86808a4f8b36fe10a10919", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2016-08-04T07:43:30
vercel/next.js
b7eb6d43b969ec8adf58b84c325ad5136c7e1a33
3bce82e80758dfb9b0e3e28e43e978dc428fb833
set hostname to 0.0.0.0 (#54342) When I try to deploy to Google Cloud Run it fails after some investigation I saw this line in .next/standalone/server.js ```javascript const hostname = process.env.HOSTNAME || 'localhost' ``` This some how make this log when i run docker ```shell - ready started server on 1...
[ { "path": "examples/with-docker/Dockerfile", "patch": "@@ -55,5 +55,7 @@ USER nextjs\n EXPOSE 3000\n \n ENV PORT 3000\n+# set hostname to localhost\n+ENV HOSTNAME \"0.0.0.0\"\n \n CMD [\"node\", \"server.js\"]", "additions": 2, "deletions": 0, "language": "Unknown" } ]
2023-08-21T17:05:57
rust-lang/rust
d716dc9a7a1525402adfdeaa497a063d69a97aac
3301ac5f7ba902d445e9484e1e73d80763de4a7e
Remove useless debugging.
[ { "path": "compiler/rustc_passes/src/stability.rs", "patch": "@@ -25,7 +25,7 @@ use rustc_middle::ty::print::with_no_trimmed_paths;\n use rustc_session::lint;\n use rustc_session::lint::builtin::{DEPRECATED, INEFFECTIVE_UNSTABLE_TRAIT_IMPL};\n use rustc_span::{Span, Symbol, sym};\n-use tracing::{info, instr...
2025-07-16T22:32:05
nodejs/node
9fbad51c8a6afdaf7d24d57a1712319346efe28e
8c1cb4365d359687fff5435df5409e0ed9d91531
test: cover 'close' method in Dir class cover 'close' method (in Dir class) with tests Add 2 tests for full covering of method 'close' in class Dir 1. If pass smth that not string as a callback - throw an exception 2. If do .close() on already closed directory - throw an exception PR-URL: https://github.com/nodejs/no...
[ { "path": "test/parallel/test-fs-opendir.js", "patch": "@@ -33,6 +33,11 @@ const dirclosedError = {\n code: 'ERR_DIR_CLOSED'\n };\n \n+const invalidCallbackObj = {\n+ code: 'ERR_INVALID_CALLBACK',\n+ name: 'TypeError'\n+};\n+\n // Check the opendir Sync version\n {\n const dir = fs.opendirSync(testDir...
2019-11-06T14:24:29
huggingface/transformers
fd6bc380c8854a370fbc9f68a157895d84dce7d7
30c480166a95342fefdd9d727fc2a163bea7b2b1
[vllm + v5 fix] handle TokenizersBackend fallback properly for v5 (#44255) * update deepseek v2 for tokenizers v5 * adding remote code fix * fix deepseek name * handle spm conversion from proto only when overriding bad_models * add script to compare xlni and code_search_net output of 2 tokenizers * tiktoken model...
[ { "path": "src/transformers/convert_slow_tokenizer.py", "patch": "@@ -192,6 +192,7 @@ def extract(self, model_type, **kwargs) -> tuple[dict[str, int], list[tuple]]:\n AddedToken(token, normalized=False, special=special)\n for id, token, special in sorted(spm_added_tokens, key=lambda ...
2026-03-04T15:13:23
electron/electron
03e225063862778e873de8d6d446ad9ddc459ef5
1a80cb22b72e153514511d6ed9547d79f62de8b4
Fix building under linux
[ { "path": "brightray/browser/views/inspectable_web_contents_view_views.cc", "patch": "@@ -88,7 +88,7 @@ InspectableWebContentsViewViews::InspectableWebContentsViewViews(\n contents_web_view->SetWebContents(inspectable_web_contents_->GetWebContents());\n contents_web_view_ = contents_web_view;\n } ...
2016-08-04T07:39:52
vercel/next.js
3bce82e80758dfb9b0e3e28e43e978dc428fb833
5d758c7ec0a3b2ff20ecdda708722c7369b5eeae
Docs: Fix broken links (#54340) Fix broken links picked up by crawl-analysis: https://vercel.slack.com/archives/C03S9JCH2Q5/p1692621216597749
[ { "path": "docs/02-app/01-building-your-application/08-deploying/01-static-exports.mdx", "patch": "@@ -288,7 +288,7 @@ Features that require a Node.js server, or dynamic logic that cannot be computed\n \n - [Dynamic Routes](/docs/app/building-your-application/routing/dynamic-routes) with `dynamicParams: tru...
2023-08-21T16:33:38
huggingface/transformers
30c480166a95342fefdd9d727fc2a163bea7b2b1
ee4c22078ff3987cbab669f332ff022d4fa89469
Fix CLI NameError: name 'TypeAdapter' is not defined (#44256) * Do not evaluate type annotations in CLI serve * Fix style * Fix style
[ { "path": "src/transformers/cli/serve.py", "patch": "@@ -11,6 +11,9 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+\n+from __future__ import annotations\n+\n import a...
2026-03-04T14:10:42
nodejs/node
8138e9ce508df75a9bef66dcbb7389bfceb71c23
c8d00d9ed06a9983c02d7a250d96c81980e0e3a6
doc: add mention for using promisify on class methods Fixes: https://github.com/nodejs/node/issues/30344 PR-URL: https://github.com/nodejs/node/pull/30355 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "doc/api/util.md", "patch": "@@ -862,6 +862,34 @@ will throw an error. If `original` is a function but its last argument is not\n an error-first callback, it will still be passed an error-first\n callback as its last argument.\n \n+Using `promisify()` on class methods or other methods that use `th...
2019-11-10T22:02:11
vercel/next.js
6773ea86362b4dd0588ecab27beda0e2723fbbf7
0718aec93b79acc9f1a6d0e1c48047abd3ccd64f
fix: improve error message when `output: export` in app router (#54202) There are a few cases that are not handled by App Router when using `output: export` config. A few of them are expected, but some are yet to be implemented. Regardless of the intent of the future, this PR ensures the error messages match what was...
[ { "path": "packages/next/src/build/analysis/get-page-static-info.ts", "patch": "@@ -43,6 +43,7 @@ export interface PageStaticInfo {\n ssg?: boolean\n ssr?: boolean\n rsc?: RSCModuleType\n+ generateStaticParams?: boolean\n middleware?: MiddlewareConfig\n amp?: boolean | 'hybrid'\n extraConfig?: ...
2023-08-21T14:45:00
rust-lang/rust
12eedafc38b1d3af02c9c15333d0ba2f1aee1253
9cd918bcbbc26deb005eb4e1bd9a445380195e56
Report the range of uninit bytes in CTFE errors
[ { "path": "compiler/rustc_const_eval/src/interpret/validity.rs", "patch": "@@ -394,7 +394,7 @@ impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {\n interp_ok(try_validation!(\n self.ecx.read_immediate(val),\n self.path,\n- Ub(InvalidUninitBytes(None)...
2025-06-18T12:51:47
huggingface/transformers
7235d44257e7e4765317d475622e2085a09c9e3b
f60c4e9423a2063fd0e313428ebbb3d5d1e6bdd6
Add eurobert (#39455) * feat: init EuroBert model integration * fix: auto import * Refactor: Update EuroBertMaskedLM & SentenceClassif classes to inherit from PreTrainModel. * feat: Introduce EuroBertPreTrainedModel class and update model inheritance * fix: Ruff format * fix: Ruff format for modeling_auto.py * f...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -544,6 +544,8 @@\n title: Ernie4_5_MoE\n - local: model_doc/esm\n title: ESM\n+ - local: model_doc/eurobert\n+ title: EuroBERT\n - local: model_doc/exaone4\n title: EXAONE-4.0\n - local: model_doc/exa...
2026-03-04T11:43:02
nodejs/node
f4b240f01276126b76978bb1d69cf79dd9e2cf6c
a7c7c703aff362f06ef5d49451a0f79fd289910f
doc: fix overriding of prefix option Make the example in the "Building a debug build" section work as intended. Fixes: https://github.com/nodejs/node/issues/30477 PR-URL: https://github.com/nodejs/node/pull/30518 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -476,7 +476,7 @@ To use the debug build with all the normal dependencies overwrite the release\n version in the install directory:\n \n ``` console\n-$ make install --prefix=/opt/node-debug/\n+$ make install PREFIX=/opt/node-debug/\n $ cp -a -f out/Debug/node /opt/node-...
2019-11-17T11:15:21
rust-lang/rust
af19ff8cc89bb6a010faaf110eb63e1fbce49b1a
e62e27bf5bbae5d0ba596ae43356a7c9c988a067
fix `collapsable_if` when the inner `if` is in parens
[ { "path": "clippy_lints/src/collapsible_if.rs", "patch": "@@ -187,7 +187,8 @@ impl CollapsibleIf {\n .with_leading_whitespace(cx)\n .into_span()\n };\n- let inner_if = inner.span.split_at(2).0;\n+ ...
2025-07-17T17:16:39
golang/go
99f1bf54eb502e123e60c605212a616146fbe86a
a887579976c0f581ca0eb52094b2c5c63893dcdf
bufio: clarify io.EOF behavior of Reader.Read Fixes #52577 Change-Id: Idaff2604979f9a9c1c7d3140c8a5d218fcd27a56 Reviewed-on: https://go-review.googlesource.com/c/go/+/403594 Reviewed-by: Joseph Tsai <joetsai@digital-static.net> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -203,7 +203,8 @@ func (b *Reader) Discard(n int) (discarded int, err error) {\n // The bytes are taken from at most one Read on the underlying Reader,\n // hence n may be less than len(p).\n // To read exactly len(p) bytes, use io.ReadFull(b, p).\n-// At EOF, the...
2022-05-02T21:03:07
electron/electron
1b0af6f6f159a5a48d4ffbff0dff917fdeb7dd7c
ca1613226894e5b39d06424abb959dc91c487f52
removed bpp (it can be calculated) fixed buffer size calculation (we actually send the whole image, not just the dirty part) removed the unnecessary resets and const now we use Copy instead of New
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1345,16 +1345,15 @@ bool WebContents::IsOffScreen() const {\n \n void WebContents::OnPaint(const gfx::Rect& dirty_rect,\n const gfx::Size& bitmap_size,\n- const int pixel_size,\n+ ...
2016-08-04T03:18:27
vercel/next.js
71d424e80477410c374c436f1d7819c53b78bcd5
a47d92f55ef85f0da6745f8f4bae6b92fb52555b
docs: update a small typo in `02-app/01-building-your-application/06-optimizing/01-images.mdx` (#54311) Hello, I just make this PR because the `/me.png` example is not in "remote images" section but in "local images", that's why I propose to edit this :) Thank you! ### Improving Documentation - [x] Run `pnpm pre...
[ { "path": "docs/02-app/01-building-your-application/06-optimizing/01-images.mdx", "patch": "@@ -141,7 +141,7 @@ To protect your application from malicious users, you must define a list of remo\n \n ### Loaders\n \n-Note that in the [example earlier](#remote-images), a partial URL (`\"/me.png\"`) is provided...
2023-08-20T18:33:16
nodejs/node
a30a9f8193ddd61dfadc2d5d79784b682027b319
3871cc5f0c791632d2555e159873530bfdd02d4f
test: clean up http-set-trailers * remove shared state of request counting from each listener by using callbacks to report test finish. This also fixes slight race condition where one of the request could finish before the other was taken into account resulting in ECONNREFUSED due to premature server.close() * s...
[ { "path": "test/parallel/test-http-set-trailers.js", "patch": "@@ -26,91 +26,77 @@ const http = require('http');\n const net = require('net');\n const util = require('util');\n \n-let outstanding_reqs = 0;\n-\n-const server = http.createServer(function(req, res) {\n- res.writeHead(200, [['content-type', 't...
2019-11-18T10:41:02
huggingface/transformers
f49c720f52a08ad68f9f1d299cf65e7125d2e359
5c1c72be5f864d10d0efe8ece0768d9ed6ee4fdd
🚨 fix + tests dense & MoE TP all reduce (decoder only) (#43722) * introducing test tensor parallel mixing to catch TP related error * Remove test file for tensor parallel functionality * Refactor dense and MoE test scripts for parallel execution and improved GPU management - Updated `run_dense_tests.sh` and `run_m...
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -328,6 +328,15 @@ def job_name(self):\n parallelism=6,\n )\n \n+tensor_parallel_ci_job = CircleCIJob(\n+ \"tensor_parallel_ci\",\n+ additional_env={\"RUN_TENSOR_PARALLEL_TESTS\": True},\n+ docker_image=[{\"image\": \"huggingface/tran...
2026-03-04T08:57:50
rust-lang/rust
848d4a5a381ddda172a5629d8050a58388ecb2b9
cecf9ead40352f77e2e83765f0f6a796277299ec
Remove similar errors about raw underscore lifetime Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
[ { "path": "compiler/rustc_resolve/src/late.rs", "patch": "@@ -2899,9 +2899,21 @@ impl<'a, 'ast, 'ra, 'tcx> LateResolutionVisitor<'a, 'ast, 'ra, 'tcx> {\n }\n \n if param.ident.name == kw::UnderscoreLifetime {\n+ // To avoid emitting two similar errors,\n+ ...
2025-07-01T12:49:07
vercel/next.js
a47d92f55ef85f0da6745f8f4bae6b92fb52555b
24cd55c09fc3676fd8eafcf66c174114fbc18362
Fix default export of server action utility aliases (#54254) Similar to #54004, this PR changes `private-next-rsc-action-validate` and `private-next-rsc-action-client-wrapper` to export named values instead of default values. In #54230 (currently broken), the Server Action file was bundled via Vite/Rollup as an ext...
[ { "path": "packages/next-swc/crates/core/src/server_actions.rs", "patch": "@@ -898,13 +898,16 @@ impl<C: Comments> VisitMut for ServerActions<C> {\n // wrapped by a reference creation call.\n let create_ref_ident = private_ident!(\"createServerReference\");\n if !self.con...
2023-08-20T16:09:38
golang/go
a887579976c0f581ca0eb52094b2c5c63893dcdf
8375b54d441c9123c8d2b7343ea6cc7233b746d9
compress/flate: move idempotent close logic to compressor The compressor methods already have logic for handling a sticky error. Merge the logic from CL 136475 into that. This slightly changes the error message to be more sensible in the situation where it's returned by Flush. Updates #27741 Change-Id: Ie34cf3164d0...
[ { "path": "src/compress/flate/deflate.go", "patch": "@@ -640,6 +640,9 @@ func (d *compressor) reset(w io.Writer) {\n }\n \n func (d *compressor) close() error {\n+\tif d.err == errWriterClosed {\n+\t\treturn nil\n+\t}\n \tif d.err != nil {\n \t\treturn d.err\n \t}\n@@ -652,7 +655,11 @@ func (d *compressor) ...
2022-05-02T18:40:57
nodejs/node
3871cc5f0c791632d2555e159873530bfdd02d4f
c712fb7cd6222018cf615fd0071998bde6f16da9
src: fix -Winconsistent-missing-override warning This commit addresses the following warning: ../src/node_api.cc:28:19: warning: 'mark_arraybuffer_as_untransferable' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] v8::Maybe<bool> mark_arraybuffer_as_untransferable( ...
[ { "path": "src/node_api.cc", "patch": "@@ -26,7 +26,7 @@ struct node_napi_env__ : public napi_env__ {\n }\n \n v8::Maybe<bool> mark_arraybuffer_as_untransferable(\n- v8::Local<v8::ArrayBuffer> ab) const {\n+ v8::Local<v8::ArrayBuffer> ab) const override {\n return ab->SetPrivate(\n ...
2019-11-19T20:05:09
rust-lang/rust
10762d5001f6abe686b14bffb83e618ec8fa2bb6
f8f6997469237299c1d60814c7b9828602a1f8e4
Fix debuginfo-lto-alloc.rs test This should have used build-pass rather than check-pass.
[ { "path": "tests/ui/lto/debuginfo-lto-alloc.rs", "patch": "@@ -8,8 +8,9 @@\n // This test reproduces the circumstances that caused the error to appear, and checks\n // that compilation is successful.\n \n-//@ check-pass\n+//@ build-pass\n //@ compile-flags: --test -C debuginfo=2 -C lto=fat\n+//@ no-prefer-d...
2025-07-17T16:17:40
vercel/next.js
24cd55c09fc3676fd8eafcf66c174114fbc18362
f1c286fff2e03218b863e0b9ceff4dd7db2ca820
Adds nonce to preinit scripts (#54059) Fixes #54055. A bug recently introduced in https://github.com/vercel/next.js/pull/53705 made it so that we were now preinitializing some of our scripts slightly better, but in doing so, we failed to pass in a nonce. This broke nonce-based CSP usage. The fix was to add the `non...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -1438,7 +1438,8 @@ export async function renderToHTMLOrFlight(\n buildManifest,\n assetPrefix,\n subresourceIntegrityManifest,\n- getAssetQueryString(true)\n+ getAssetQueryString(true...
2023-08-20T13:55:02
golang/go
3b01a80319860c3d24a07859e4e9b1173800b786
d4bfc87218335cb48c9d1d1a308d720f9195cae7
cmd/compile: fix loopreschedchecks for regabi The loopreschedchecks pass (GOEXPERIMENT=preemptibleloops) had bit-rotted in two ways because of the regabi experiment: 1. The call to goschedguarded was generating a pre-regabi StaticCall. This CL updates it to construct a new-style StaticCall. 2. The mem finder did ...
[ { "path": "src/cmd/compile/internal/ssa/loopreschedchecks.go", "patch": "@@ -246,8 +246,8 @@ func insertLoopReschedChecks(f *Func) {\n \t\t// mem1 := call resched (mem0)\n \t\t// goto header\n \t\tresched := f.fe.Syslook(\"goschedguarded\")\n-\t\t// TODO(register args) -- will need more details\n-\t\t...
2022-05-02T18:54:22
huggingface/transformers
5c1c72be5f864d10d0efe8ece0768d9ed6ee4fdd
4bbd76228230c3666ada045f9df9b84f57df33a6
add support for nemotron_3 (#44390) * add support for nemotron_3 * convert modeling file * address comments * optional, config backward compatible * style * docstring * non gated experts * docs * docs * docs * add notes about cuda stream * fix tests * minor update * move conversion back to conversion_mapp...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -706,6 +706,8 @@\n title: NanoChat\n - local: model_doc/nemotron\n title: Nemotron\n+ - local: model_doc/nemotron_h\n+ title: NemotronH\n - local: model_doc/nllb\n title: NLLB\n - local: model_doc/nll...
2026-03-03T18:18:50
nodejs/node
80efb80f3f9dffb412aa1a41ab36c843c90c60e5
f4ea9189501743797d1ab8f5ed07027dd71f59bd
tls: cli option to enable TLS key logging to file Debugging HTTPS or TLS connections from a Node.js app with (for example) Wireshark is unreasonably difficult without the ability to get the TLS key log. In theory, the application can be modified to use the `'keylog'` event directly, but for complex apps, or apps that ...
[ { "path": "doc/api/cli.md", "patch": "@@ -679,6 +679,15 @@ added: v4.0.0\n Specify an alternative default TLS cipher list. Requires Node.js to be built\n with crypto support (default).\n \n+### `--tls-keylog=file`\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+Log TLS key material to a file. The key material is ...
2019-10-22T03:44:20
huggingface/transformers
4bbd76228230c3666ada045f9df9b84f57df33a6
76f9fa4109c76291e6d194267deb3f00a31d46ca
[ Dynamic weight loader] fix remote code when format matches (#44396) * nit * style * test is no longer relevant, if the weights exists why rename them? * fix * nit
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -1128,6 +1128,9 @@ def convert_and_load_state_dict_in_model(\n renamed_key, source_pattern = rename_source_key(\n original_key, renamings, converters, prefix, meta_model_state_dict\n )\n+ if renamed_key not i...
2026-03-03T17:53:32
vercel/next.js
f2a3fd9fc3e00fd51265017a3abdf46d0e53ccbe
311eea4c6ab847548d81421a8edbf86ac77341f9
Handle basePath for redirect() (#54277) ### What & Why Add base path handling for the url in redirect error if the `basePath` is configured. This is only break for server rendering case as the `basePath` is missing in the `Location` header. When running `next build`, everything is managed well with app router and bas...
[ { "path": "packages/next-swc/crates/next-core/js/src/entry/app-renderer.tsx", "patch": "@@ -73,6 +73,7 @@ async function runOperation(renderData: RenderData) {\n } = {\n // TODO: give an actual buildId when next build is supported\n buildId: 'development',\n+ basePath: '',\n params: renderD...
2023-08-20T03:32:52
golang/go
d922c0a8f5035b0533eb6e912ffd7b85487e3942
64369c3ea0932482e0d108cb022dee4a9f8447cb
all: use os/exec instead of internal/execabs We added internal/execabs back in January 2021 in order to fix a security problem caused by os/exec's handling of the current directory. Now that os/exec has that code, internal/execabs is superfluous and can be deleted. This commit rewrites all the imports back to os/exec...
[ { "path": "src/cmd/api/goapi.go", "patch": "@@ -16,10 +16,10 @@ import (\n \t\"go/parser\"\n \t\"go/token\"\n \t\"go/types\"\n-\texec \"internal/execabs\"\n \t\"io\"\n \t\"log\"\n \t\"os\"\n+\t\"os/exec\"\n \t\"path/filepath\"\n \t\"regexp\"\n \t\"runtime\"", "additions": 1, "deletions": 1, "lan...
2022-01-27T18:10:48
huggingface/transformers
76f9fa4109c76291e6d194267deb3f00a31d46ca
8f2a5005182a398b66cdd19d0d23ae903df4c7c6
[timesfm2_5] fix timesfm2.5 loss (#44331) * fix timesfm2.5 loss * Update src/transformers/models/timesfm2_5/modular_timesfm2_5.py Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com> * fix typo * use input_ff_layer.weight.dtype to cast * more dtype * fix tests * formatting * address review ...
[ { "path": "src/transformers/models/timesfm2_5/modeling_timesfm2_5.py", "patch": "@@ -106,6 +106,8 @@ def __init__(self, config, input_dims: int, hidden_dims: int, output_dims: int,\n use_bias = use_bias if use_bias is not None else config.use_bias\n \n def forward(self, x):\n+ # Align act...
2026-03-03T17:18:57
nodejs/node
9d09969f4c29b7f2bacc9cb44e210c4e269945a4
535e9571f5252ea9ce6f5db12f700f73af6df055
stream: always invoke end callback Ensure that the callback passed into end() is always invoke in order to avoid bug such as deadlock the user. PR-URL: https://github.com/nodejs/node/pull/29747 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram...
[ { "path": "lib/_stream_writable.js", "patch": "@@ -611,11 +611,11 @@ Writable.prototype.end = function(chunk, encoding, cb) {\n }\n \n // Ignore unnecessary end() calls.\n- if (!state.ending)\n+ if (!state.ending) {\n endWritable(this, state, cb);\n- else if (typeof cb === 'function') {\n+ } els...
2019-09-28T08:24:56
golang/go
06338941ea0e3d654805b7323761f3c841cc8d58
349cc83389f71c459b7820b0deecdf81221ba46c
net/http: fix for recent go.mod update cmd/internal/moddeps was failing. Ran the commands it suggested: % go mod tidy # to remove extraneous dependencies % go mod vendor # to vendor dependencies % go generate -run=bundle std # to regenerate bundl...
[ { "path": "src/net/http/h2_bundle.go", "patch": "@@ -9652,9 +9652,7 @@ type http2erringRoundTripper struct{ err error }\n \n func (rt http2erringRoundTripper) RoundTripErr() error { return rt.err }\n \n-func (rt http2erringRoundTripper) RoundTrip(*Request) (*Response, error) {\n-\treturn nil, rt.err\n-}\n+f...
2022-05-02T15:12:25
vercel/next.js
311eea4c6ab847548d81421a8edbf86ac77341f9
76997cc053b115de8be80c2b55226285083df5c4
Fix emotion-js transform for server components (#54284) ### What & Why emotion-js has its own [jsx transform](https://emotion.sh/docs/typescript#emotionreact) which is being applied when `compiler.emotion` is enabled in `next.config.js`. Thanks to emotion-js team that provided an emotion-js example setup with app ro...
[ { "path": "package.json", "patch": "@@ -66,6 +66,8 @@\n \"@babel/preset-flow\": \"7.14.5\",\n \"@babel/preset-react\": \"7.14.5\",\n \"@edge-runtime/jest-environment\": \"2.2.5\",\n+ \"@emotion/cache\": \"11.11.0\",\n+ \"@emotion/react\": \"11.11.1\",\n \"@fullhuman/postcss-purgecss\":...
2023-08-20T03:14:16
electron/electron
d8f79bf29b9d54fbec81f6cc76dee0d849d5d7de
617820dfc24573d232f293e33a40665855d84c02
docs: fix cwd description for shell.writeShortcutLink
[ { "path": "docs/api/shell.md", "patch": "@@ -59,7 +59,7 @@ Play the beep sound.\n exist.\n * `options` Object\n * `target` String - The target to launch from this shortcut.\n- * `cwd` String (optional) - The target to launch from this shortcut. Default\n+ * `cwd` String (optional) - The working dire...
2016-08-03T13:43:30
huggingface/transformers
8f2a5005182a398b66cdd19d0d23ae903df4c7c6
64aad390d5903896f1291606e05e673dc52ebee6
Fix peft conversion mappings (#44413) fix
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -226,7 +226,7 @@ def _build_peft_weight_mapping(\n new_weight_conversions.append(orig_conversion)\n continue\n \n- if orig_conversion.target_patterns == [\"mlp.experts.gate_up_proj\"]:\n+ if len(orig_conver...
2026-03-03T17:08:37
nodejs/node
4f434187ff06cc8ac9e2022e65d6f6bf2fb8a19e
7cecac669f05f36016c684dcee381cf21ab188d2
src: add file name to 'Module did not self-register' error PR-URL: https://github.com/nodejs/node/pull/30125 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "src/node_binding.cc", "patch": "@@ -484,7 +484,12 @@ void DLOpen(const FunctionCallbackInfo<Value>& args) {\n mp = dlib->GetSavedModuleFromGlobalHandleMap();\n if (mp == nullptr || mp->nm_context_register_func == nullptr) {\n dlib->Close();\n- env->ThrowError(\"...
2019-10-25T21:52:13
rust-lang/rust
0a71873c34d38978121853f0d97358427bd54038
8c12d76304fcceaeaad0d67209e5727e94f5f2b8
panic_main.rs panic=unwind tests needs unwinding Only run the panic=unwind tests on platforms that support unwinding.
[ { "path": "tests/ui/panics/panic-main.rs", "patch": "@@ -14,12 +14,15 @@\n \n //@[unwind-zero] compile-flags: -Cpanic=unwind\n //@[unwind-zero] exec-env:RUST_BACKTRACE=0\n+//@[unwind-zero] needs-unwind\n \n //@[unwind-one] compile-flags: -Cpanic=unwind\n //@[unwind-one] exec-env:RUST_BACKTRACE=1\n+//@[unwin...
2025-07-17T14:12:03
golang/go
349cc83389f71c459b7820b0deecdf81221ba46c
32acceb359717e434ceb48681426b377b722d11e
os/exec: return error when PATH lookup would use current directory CL 381374 was reverted because x/sys/execabs broke. This CL reapplies CL 381374, but adding a lookPathErr error field back, for execabs to manipulate with reflect. That field will just be a bit of scar tissue in this package forever, to keep old code ...
[ { "path": "api/next/43724.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg os/exec, type Cmd struct, Err error #43724\n+pkg os/exec, var ErrDot error #43724", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "src/cmd/dist/build.go", "patch": "@@ -27,6 +27,7 @@ import (\n va...
2022-04-30T00:05:26
huggingface/transformers
64aad390d5903896f1291606e05e673dc52ebee6
9894484e06b81936b30479d017e85b38313951e9
Reduce tqdm verbosity during model loading (#44414) fix tqdm verbosity
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -33,8 +33,9 @@\n \n from .integrations.accelerate import get_device, offload_weight\n from .integrations.tensor_parallel import ALL_PARALLEL_STYLES\n-from .utils import is_env_variable_true, logging\n+from .utils import is_env_variable_true\n ...
2026-03-03T16:57:53
vercel/next.js
76997cc053b115de8be80c2b55226285083df5c4
85606472e40d9a314511d763ec788727d55b2214
docs: Bump minimum Node.js version to 16.14 (#54285) ### What? Docs change. ### Why? - https://github.com/vercel/next.js/issues/54269 ### How? Bump the Node.js version shown at: https://nextjs.org/docs/app/building-your-application/upgrading/app-router-migration#nodejs-version Fixes #54269
[ { "path": "docs/02-app/01-building-your-application/09-upgrading/02-app-router-migration.mdx", "patch": "@@ -14,7 +14,7 @@ This guide will help you:\n \n ### Node.js Version\n \n-The minimum Node.js version is now **v16.8**. See the [Node.js documentation](https://nodejs.org/docs/latest-v16.x/api/) for more...
2023-08-20T03:03:02
electron/electron
50485a28d316220e4e61bf2b4170c263d036f2e5
230943d425c6921ee04b4cf82cec2ae85ea3205e
fixes buffer size and adds pixel size to paint event
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1345,11 +1345,19 @@ bool WebContents::IsOffScreen() const {\n \n void WebContents::OnPaint(const gfx::Rect& dirty_rect,\n const gfx::Size& bitmap_size,\n+ const int pixel_size,\n ...
2016-08-03T11:28:19
rust-lang/rust
48df86f37ddf2904b60f31744e52f56234e4d95c
ba6485d61c5dd6c106c5f93b6d581a88f630cbc2
fix: `match_single_binding` suggests wrongly inside binary expr
[ { "path": "clippy_lints/src/matches/match_single_binding.rs", "patch": "@@ -2,10 +2,8 @@ use std::ops::ControlFlow;\n \n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::macros::HirNode;\n-use clippy_utils::source::{\n- RelativeIndent, indent_of, reindent_multiline_relative, snippet...
2025-07-15T14:55:41
huggingface/transformers
9894484e06b81936b30479d017e85b38313951e9
9599bfbb97a6cc009f30817a6d40ae42b5ffaa58
docs: Add NeMo Automodel community integration docs (#44304) * Add NeMo Automodel community integration docs * extra comments Signed-off-by: adil-a <adil.asif2000@hotmail.com> * Fix formatting in NeMo Automodel docs Fix en-dash to double-hyphen in torchrun flags, typo "instanting" → "instantiating", doc-builder ba...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -278,12 +278,16 @@\n title: MLX\n title: Local deployment\n - sections:\n+ - local: community_integrations/nemo_automodel_pretraining\n+ title: NeMo Automodel\n - local: community_integrations/nanotron\n title: Nanotron\n ...
2026-03-03T16:51:48
golang/go
2719b1a9a8d0d8f3eb78162da9b23a9eaaabda1b
fdf1d768f287e8024a5628612d25b9ea885a8198
compress/flate: return error on closed stream write Previously flate.Writer allowed writes after Close, and this behavior could lead to stream corruption. Fixes #27741 Change-Id: Iee1ac69f8199232f693dba77b275f7078257b582 Reviewed-on: https://go-review.googlesource.com/c/go/+/136475 Run-TryBot: Ian Lance Taylor <iant...
[ { "path": "src/compress/flate/deflate.go", "patch": "@@ -5,6 +5,7 @@\n package flate\n \n import (\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"math\"\n@@ -699,17 +700,27 @@ func (w *dictWriter) Write(b []byte) (n int, err error) {\n \treturn w.w.Write(b)\n }\n \n+var errWriteAfterClose = errors.New(\"compre...
2018-09-20T08:48:17
vercel/next.js
42abfd694d9aa35da77d58cb81542e77743bf817
0e78798f37ce9d68b56e4dcb4ca0011e9e1d4959
Ensures App Router Link respects scroll-behavior: smooth when only hash is changed. (#54243) Fixes https://github.com/vercel/next.js/issues/54240 The Link component in App Router is not respecting `scroll-behavior: smooth` when only the hash changes. It appears to be caused by `focusAndScrollRef.onlyHashChange = fal...
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -222,7 +222,6 @@ class InnerScrollAndFocusHandler extends React.Component<ScrollAndFocusHandlerPr\n \n // State is mutated to ensure that the focus and scroll is applied only once.\n focusAndScrollRef.apply = false\n...
2023-08-18T20:58:45
nodejs/node
7cecac669f05f36016c684dcee381cf21ab188d2
e5d3c8121dd0bcc4dbf52c7b3a0521e359363a05
doc: update http.md mention of socket This commit is addressing the problem in issue #29948. Fixes: https://github.com/nodejs/node/issues/29948 PR-URL: https://github.com/nodejs/node/pull/30155 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Matteo Collina <...
[ { "path": "doc/api/http.md", "patch": "@@ -157,7 +157,7 @@ added: v0.11.4\n * `options` {Object} Options containing connection details. Check\n [`net.createConnection()`][] for the format of the options\n * `callback` {Function} Callback function that receives the created socket\n-* Returns: {net.Socket}\...
2019-10-28T15:47:07
electron/electron
82da3b6c662ce95ecb1d165f7faf127c6fc44a87
4d85c1a557a9e2df2a3276a126edc6e893499dfa
Fix accidentally changed lines
[ { "path": ".gitmodules", "patch": "@@ -1,6 +1,6 @@\n [submodule \"vendor/brightray\"]\n \tpath = vendor/brightray\n- url = https://github.com/electron/brightray.git\n+\turl = https://github.com/electron/brightray.git\n [submodule \"vendor/node\"]\n \tpath = vendor/node\n \turl = https://github.com/electron...
2016-08-03T05:03:57
huggingface/transformers
9599bfbb97a6cc009f30817a6d40ae42b5ffaa58
24c5bc4b1b6186a5d95e6e7359a21e48a4e9def2
Fix kernels security issue (#44395) * fix security vuln * allow other repos with trust_remote_code * fix default * fix * fix test * change name * switch name * name * update message * move test * update doc * switch name * doc
[ { "path": "docs/source/en/kernel_doc/loading_kernels.md", "patch": "@@ -55,6 +55,19 @@ model = AutoModelForCausalLM.from_pretrained(\n )\n ```\n \n+Note that for attention kernels, anything that is not part of the `kernels-community` repository (which is trusted - we may add more trusted repositories in the...
2026-03-03T15:28:17
golang/go
fd6c556dc82253722a7f7b9f554a1892b0ede36e
0ebe224628bdf336b68b3d1c255ff58df2b070b0
net/url: fix regex typo in comment in url.go The original author almost certainly intended to match the literal dash character '-' but ended up matching a range of other characters instead. Change-Id: I7a0f67c5fdccd70b7ad58a882da851dfc22ce2f0 GitHub-Last-Rev: 76a39577e551328f707fd73b9ce85d20c121c555 GitHub-Pull-Reque...
[ { "path": "src/net/url/url.go", "patch": "@@ -428,7 +428,7 @@ func (u *Userinfo) String() string {\n }\n \n // Maybe rawURL is of the form scheme:path.\n-// (Scheme must be [a-zA-Z][a-zA-Z0-9+-.]*)\n+// (Scheme must be [a-zA-Z][a-zA-Z0-9+.-]*)\n // If so, return scheme, path; else return \"\", rawURL.\n fun...
2022-04-30T04:02:43
vercel/next.js
0e78798f37ce9d68b56e4dcb4ca0011e9e1d4959
2bb12fc6bb9c9ea4e508337f53009ca097d1ef8e
Fix renamed export of Server Actions (#54241) This fixes the compilation of `export { action as renamed }` syntax. Previously it's compiled as `export var action = ...` and with this fix, it will be `export var renamed = ...`. Closes #54229.
[ { "path": "packages/next-swc/crates/core/src/server_actions.rs", "patch": "@@ -948,7 +948,9 @@ impl<C: Comments> VisitMut for ServerActions<C> {\n declare: false,\n decls: vec![VarDeclarator {\n s...
2023-08-18T20:41:32
nodejs/node
0f78dcc86d9af8f742f76505c5a104c6dff17ca9
5e4d99ae6e3b32b8c30404f77c33fa9cfc5ca22d
util: escape C1 control characters and switch to hex format C1 control characters will from now on also be escaped to prevent altering the terminal behavior. Fixes: https://github.com/nodejs/node/issues/29450 PR-URL: https://github.com/nodejs/node/pull/29826 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -115,10 +115,10 @@ const kArrayType = 1;\n const kArrayExtrasType = 2;\n \n /* eslint-disable no-control-regex */\n-const strEscapeSequencesRegExp = /[\\x00-\\x1f\\x27\\x5c]/;\n-const strEscapeSequencesReplacer = /[\\x00-\\x1f\\x27\\x5c]/g;\n-const strE...
2019-10-03T01:41:38
electron/electron
ba9aa13bd849dc63d39c8b20af11097507631c37
d8a030fa9b0b05bd72c4ae69a5cbd112fd85d1f4
Fix lint warnings in documentations
[ { "path": "docs/api/web-contents.md", "patch": "@@ -480,20 +480,20 @@ Emitted when a new frame is generated. Only the dirty area is passed in the\n buffer.\n \n ```javascript\n-const {BrowserWindow} = require('electron');\n+const {BrowserWindow} = require('electron')\n \n let win = new BrowserWindow({\n w...
2016-08-03T01:15:38
golang/go
11a650bb4aabfd7998b61df3ac33f61831d7abff
f2b674756b3b684118e4245627d4ed8c07e518e7
reflect: ensure map keys match key type in MapIndex and SetMapIndex name old time/op new time/op delta Map/StringKeys/MapIndex-8 2.36µs ± 5% 2.55µs ±11% +7.98% (p=0.006 n=10+9) Map/StringKeys/SetMapIndex-8 4.86µs ± 7% 4.77µs ± 1% ~ (p=0.211 n=10+9) Map/Str...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -1504,6 +1504,10 @@ func TestMap(t *testing.T) {\n \tif m != nil {\n \t\tt.Errorf(\"mv.Set(nil) failed\")\n \t}\n+\n+\ttype S string\n+\tshouldPanic(\"not assignable\", func() { mv.MapIndex(ValueOf(S(\"key\"))) })\n+\tshouldPanic(\"not assignable\", func() {...
2022-04-16T13:15:06
vercel/next.js
a0749a5103ecdc3b93f296e3eae5e64f54368c6e
725ddc7371f80cca273779d37f961c3e20356f95
feat(image): add support for custom `loaderFile` when `loader: default` (#53417) Image Optimization API currently does not work if a custom loaderFile is specified in next.config.js, even if loader is explicitly set to 'default', because it is currently being overridden to 'custom' simply because a loaderFile is speci...
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -335,7 +335,6 @@ function assignDefaults(\n `Specified images.loaderFile does not exist at \"${absolutePath}\".`\n )\n }\n- images.loader = 'custom'\n images.loaderFile = absolutePath\n }\n }", "additio...
2023-08-18T20:05:17
nodejs/node
b351d307018809d2e3b92f08a41e7abcdb7f3202
c1f0e80989cc653e5177827cf1f40785d32dc204
2019-11-19, Version 12.13.1 'Erbium' (LTS) Notable changes: * Experimental support for building Node.js with Python 3 is improved. * ICU time zone data is updated to version 2019c. This fixes the date offset in Brazil. PR-URL: https://github.com/nodejs/node/issues/30352
[ { "path": "CHANGELOG.md", "patch": "@@ -35,7 +35,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V13.md#13.0.0\">13.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.13.0\">12.13.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.13.1\">12....
2019-11-10T13:36:16
huggingface/transformers
2038dc5edb2b964370128d2e4921c6d6aec3ea16
f6bd5abb8100b91260bd835c4846f72aa60c594b
[CB] Small fixes (#44227) Scrap timer
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -52,9 +52,9 @@ def run_and_parse_cb_example(args: str) -> dict:\n results.append(run_and_parse_cb_example(\"--samples 100 --attn flash_attention_2\"))\n results.append(run_and_parse_cb_example(\"--samples 100 --a...
2026-03-03T13:40:08
golang/go
f2b674756b3b684118e4245627d4ed8c07e518e7
2278a51fa0570b01f58a80d60589fcf8e33be9c8
Revert "os/exec: return error when PATH lookup would use current directory" This reverts CL 381374. Reason for revert: broke tests for x/sys/execabs. Updates #43724. Updates #43947. Change-Id: I9eb3adb5728dead66dbd20f6afe1e7a77e2a26f1 Reviewed-on: https://go-review.googlesource.com/c/go/+/403058 Reviewed-by: Dmitri...
[ { "path": "api/next/43724.txt", "patch": "@@ -1,2 +0,0 @@\n-pkg os/exec, type Cmd struct, Err error #43724\n-pkg os/exec, var ErrDot error #43724", "additions": 0, "deletions": 2, "language": "Plain Text" }, { "path": "src/cmd/dist/build.go", "patch": "@@ -27,7 +27,6 @@ import (\n va...
2022-04-29T21:38:40
rust-lang/rust
f2048019718409885ac57c480f010bdfbfe5bfd0
a9fb6103b05c6ad6eee6bed4c0bb5a2e8e1024c6
fix: fix issue 143740, Wrong messages from compiler confusing methods with the same name from different traits
[ { "path": "compiler/rustc_hir_typeck/src/method/probe.rs", "patch": "@@ -1649,7 +1649,8 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {\n }\n }\n \n- let sources = candidates.iter().map(|p| self.candidate_source(p, self_ty)).collect();\n+ let sources =\n+ ...
2025-07-16T15:21:47
vercel/next.js
725ddc7371f80cca273779d37f961c3e20356f95
5764c6e900fe0a0e3b3159d47aba9a920431ac88
chore: skip CI run on forks (#54219) Running the action added in #53541 on forks will result in always failing, so we can skip it. Fixes #54210
[ { "path": ".github/workflows/pull_request_approved.yml", "patch": "@@ -7,6 +7,7 @@ on:\n \n jobs:\n pr-approved-open:\n+ if: github.repository_owner == 'vercel'\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3", "additions": 1, "deletions": 0, "language": "YAML"...
2023-08-18T17:40:44
nodejs/node
8fbbab847707180a34ab50ead0d945520049fd2d
422650a4daf9e4c7dd4308d2941d9a05d11f2d75
tools: fix build at non-English windows PR-URL: https://github.com/nodejs/node/pull/30492 Fixes: https://github.com/nodejs/node/issues/25885 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -108,6 +108,13 @@\n ],\n },\n 'includes': ['toolchain.gypi', 'features.gypi'],\n+ 'target_defaults': {\n+ 'msvs_settings': {\n+ 'VCCLCompilerTool': {\n+ 'AdditionalOptions': ['/utf-8']\n+ }\n+ },\n+ },\n 'targets': [\n ...
2019-11-15T14:54:32
electron/electron
ddb7b5cff9f166b99f095e9f74614da24fadc1b2
820f3968aa98add43f1172ae899865d7e60b55e6
fixed typo in simplified chinese doc translation
[ { "path": "docs-translations/zh-CN/tutorial/quick-start.md", "patch": "@@ -10,7 +10,7 @@ Electron 可以让你使用纯 JavaScript 调用丰富的原生 APIs 来创造\n ## 渲染进程\n 由于 Electron 使用 Chromium 来展示页面,所以 Chromium 的多进程结构也被充分利用。每个 Electron 的页面都在运行着自己的进程,这样的进程我们称之为**渲染进程**。\n \n-在一般浏览器中,网页通常会在沙盒环境下运行,并且不允许访问原生资源。然而,Electron 用户拥有在网页中调用...
2016-08-02T19:21:49
huggingface/transformers
28d02a31386a4dfd85e2a91f86b7dfcebd44596d
41888df59eed5379467262000a4f68493d3fbced
Support non-gated experts (#44319) * support non-gated moe experts * fix tp test
[ { "path": "src/transformers/integrations/moe.py", "patch": "@@ -118,40 +118,50 @@ def batched_mm_experts_forward(\n \n # Handle invalid expert IDs from Expert Parallelism (EP)\n # When EP is enabled, tokens assigned to experts on other devices are marked with sentinel value >= num_experts\n- vali...
2026-03-02T19:26:36
golang/go
2278a51fa0570b01f58a80d60589fcf8e33be9c8
3ce203db80cd1f320f0c597123b918c3b3bb0449
sync/atomic: use consistent first-store-in-progress marker We need to use the same marker everywhere. My CL to rename the marker (CL 241661) and the CL to add more uses of the marker under the old name (CL 241678) weren't coordinated with each other. Fixes #52612 Change-Id: I97023c0769e518491924ef457fe03bf64a2cefa6 ...
[ { "path": "src/sync/atomic/value.go", "patch": "@@ -101,7 +101,7 @@ func (v *Value) Swap(new any) (old any) {\n \t\t\t// active spin wait to wait for completion; and so that\n \t\t\t// GC does not see the fake type accidentally.\n \t\t\truntime_procPin()\n-\t\t\tif !CompareAndSwapPointer(&vp.typ, nil, unsaf...
2022-04-29T04:18:49
vercel/next.js
5764c6e900fe0a0e3b3159d47aba9a920431ac88
c305bf6afbb0e8c5fc5fb4a00b6251757de716db
(Fix)Broken `upgrading.mdx` link (#54234) Fixes #54223
[ { "path": "UPGRADING.md", "patch": "@@ -1 +1 @@\n-This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading). It's also available in this repository on [/docs/upgrading.md](/docs/upgrading.md).\n+This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.o...
2023-08-18T17:10:38
nodejs/node
422650a4daf9e4c7dd4308d2941d9a05d11f2d75
0f58bfd0633e357208822a1bc045c5e3bbbb3f6e
http: revise _http_server.js * replace var with const * eliminate unnecessary bytesParsed variable http: remove bytesParsed var PR-URL: https://github.com/nodejs/node/pull/30279 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Yorkie Liu <yorkief...
[ { "path": "lib/_http_server.js", "patch": "@@ -249,13 +249,13 @@ function writeHead(statusCode, reason, obj) {\n }\n this.statusCode = statusCode;\n \n- var headers;\n+ let headers;\n if (this[kOutHeaders]) {\n // Slow-case: when progressive API and header fields are passed.\n- var k;\n+ l...
2019-11-06T10:22:01
huggingface/transformers
41888df59eed5379467262000a4f68493d3fbced
c1838e8b48096ce467b30819cd9fd927d809337b
Fix speculative tests that are flaky with SDPA (#44340) * Fix speculative tests that are flaky with SDPA * Use SDPA backends instead
[ { "path": "tests/generation/test_utils.py", "patch": "@@ -61,6 +61,7 @@\n if is_torch_available():\n import torch\n import torch.nn.functional as F\n+ from torch.nn.attention import SDPBackend, sdpa_kernel\n \n from transformers import (\n AutoModelForCausalLM,\n@@ -3392,29 +3393,30 @...
2026-03-02T17:18:24
golang/go
3ce203db80cd1f320f0c597123b918c3b3bb0449
8c5917cd76905b1ab16d41eadc8786e190eeecce
os/exec: return error when PATH lookup would use current directory Following discussion on #43724, change os/exec to take the approach of golang.org/x/sys/execabs, refusing to respect path entries mentioning relative paths by default. Code that insists on being able to find executables in relative directories in the ...
[ { "path": "api/next/43724.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg os/exec, type Cmd struct, Err error #43724\n+pkg os/exec, var ErrDot error #43724", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "src/cmd/dist/build.go", "patch": "@@ -27,6 +27,7 @@ import (\n va...
2022-01-27T17:59:37
vercel/next.js
c305bf6afbb0e8c5fc5fb4a00b6251757de716db
b906fdfbeb81635f47956a35688e5c8609a93659
Add default not found to loader tree of group routes root layer (#54228) For group routes, unlike normal routes, the root layout is located in the "group"'s segment instead of root layer. To make it also able to leverage the default not found error component as root not found component, we need to determine if we're i...
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -75,6 +75,10 @@ export type ComponentsType = {\n readonly defaultPage?: ModuleReference\n }\n \n+function isGroupSegment(segment: string) {\n+ return segment.startsWith('(') && segment.endsWith(')')\n+}\n+\n async functi...
2023-08-18T16:56:55
nodejs/node
a4a089a5687c99f42c37d4d80d73f79e4c8d8da8
04e45db1726e1d2c11ecbf8cbacc82c88672fc83
test: deflake test-http-dump-req-when-res-ends.js On some platforms the `'end'` event might not be emitted because the socket could be destroyed by the other peer while the client is still sending the data triggering an error. Use the `'close'` event instead. PR-URL: https://github.com/nodejs/node/pull/30360 Reviewed...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -19,8 +19,6 @@ test-worker-memory: PASS,FLAKY\n test-http2-client-upload: PASS,FLAKY\n # https://github.com/nodejs/node/issues/20750\n test-http2-client-upload-reject: PASS,FLAKY\n-# https://github.com/nodejs/node/issues/30011\n-test-http-dump-req-when...
2019-11-11T15:51:28
huggingface/transformers
c1838e8b48096ce467b30819cd9fd927d809337b
c4dd81800ae37cfd0e88628c56d59cc6f074d23f
[Bugfix] fix qwen3.5 no split module (#44382) fix qwen3.5 no split module
[ { "path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py", "patch": "@@ -1407,7 +1407,7 @@ class Qwen3_5Model(Qwen3_5PreTrainedModel):\n # Reference: fix gemma3 grad acc #37208\n accepts_loss_kwargs = False\n config: Qwen3_5Config\n- _no_split_modules = [\"Qwen3_5TextDecoderLayer\", \"Q...
2026-03-02T16:16:38
golang/go
8c5917cd76905b1ab16d41eadc8786e190eeecce
e7c56fe9948449a3710b36c22c02d57c215d1c10
cmd/compile: consistent unified IR handling of package unsafe Within the unified IR export format, I was treating package unsafe as a normal package, but expecting importers to correctly handle deduplicating it against their respective representation of package unsafe. However, the surrounding importer logic differs ...
[ { "path": "src/cmd/compile/internal/importer/ureader.go", "patch": "@@ -148,11 +148,13 @@ func (pr *pkgReader) pkgIdx(idx int) *types2.Package {\n \n func (r *reader) doPkg() *types2.Package {\n \tpath := r.String()\n-\tif path == \"builtin\" {\n-\t\treturn nil // universe\n-\t}\n-\tif path == \"\" {\n+\tsw...
2022-04-29T17:47:57
huggingface/transformers
c4dd81800ae37cfd0e88628c56d59cc6f074d23f
7c4c93752add1eea3358141cc7480bdcccfdf564
Fix mutable default arguments and resource leaks (#44287) * Fix mutable default arguments and resource leaks Mutable defaults (shared state across calls): - debug_utils.py: DebugUnderflowOverflow trace_batch_nums=[] -> None - kernel_config.py: KernelConfig kernel_mapping={} -> None - modeling_idefics.py: freeze_model...
[ { "path": "src/transformers/debug_utils.py", "patch": "@@ -142,7 +142,9 @@ class DebugUnderflowOverflow:\n Whether to abort after a certain batch number has finished\n \"\"\"\n \n- def __init__(self, model, max_frames_to_save=21, trace_batch_nums=[], abort_after_batch_num=None):\n+ def...
2026-03-02T15:17:24