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 | e301b2f11c905672eccd418fd581c0432a07ac04 | 4a8995179edc48bf37aacc80703287c4c6b2e8e1 | io: update ByteScanner and RuneScanner docs to match long-standing implementations
Do not require the byte or rune unread by the call to match the last
return from ReadByte or ReadRune, since in practice the
implementations of these methods (especially ReadByte) may also unread
bytes from other Read-style methods with... | [
{
"path": "src/io/io.go",
"patch": "@@ -262,10 +262,11 @@ type ByteReader interface {\n // ByteScanner is the interface that adds the UnreadByte method to the\n // basic ReadByte method.\n //\n-// UnreadByte causes the next call to ReadByte to return the same byte\n-// as the previous call to ReadByte.\n-//... | 2021-09-23T15:37:52 |
electron/electron | d485cfbca31a30de1f361d6aaa4148181defc9bf | 959f5d61b79007e213bf3b838574e40ebcfb98f7 | Fixed typo | [
{
"path": "docs/api/menu.md",
"patch": "@@ -29,7 +29,7 @@ window.addEventListener('contextmenu', function (e) {\n \n Another example of creating the application menu with the simple template API:\n \n-**Note to Window and Linux users** the `selector` member of each menu item is a Mac-only [Accellerator opti... | 2015-07-24T13:53:55 |
huggingface/transformers | 9977cf17392fe5b821dc026ab76d3f5ed16e03f2 | b6ba5955438559d8e88a803e0418b203f36d0816 | [`Flash Attention`] Fix flash attention integration (#40002)
* fix flash attention
* i got a stroke reading that comment
* change dropout kwarg back to before
* rename _fa3... as it's used for multiple variants and should work as fallback instead
* simplify imports and support kwargs for fa
* style
* fix comment... | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -678,9 +678,10 @@ def prepare_inputs_for_generation(\n if encoder_attention_mask is not None:\n model_inputs[\"attention_mask\"] = encoder_attention_mask\n \n+ # 7. Prepare kwargs for flash attention to avoid recomputa... | 2025-08-12T15:24:10 |
vercel/next.js | 9db94fbdfc3bbab814291b0d7184331278adad71 | 58b42d84b8d67f8dacb713165a4191a9314ba92a | improve introspection (vercel/turbo#4135)
### Description
Add more details to introspection and make it more robust to errors
during introspection
### Testing Instructions
go to http://localhost:3000/__turbopack__/ | [
{
"path": "crates/next-core/src/next_client_chunks/with_chunks.rs",
"patch": "@@ -222,7 +222,7 @@ impl AssetReference for WithChunksAssetReference {\n #[turbo_tasks::value_impl]\n impl ChunkableAssetReference for WithChunksAssetReference {\n #[turbo_tasks::function]\n- fn chunking_type(&self, _contex... | 2023-03-09T16:08:03 |
nodejs/node | 86e2ec41af072248b88629df3dccbd4d557fab20 | ae73b73eeb99101188c860cce488ccc085b2f268 | net: check for close on stream, not parent
'close' event isn't emitted on a TLS connection if it's been written to
(but 'end' and 'finish' events are).
PR-URL: https://github.com/nodejs/node/pull/25026
Fixes: https://github.com/nodejs/node/issues/24984
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna... | [
{
"path": "lib/net.js",
"patch": "@@ -368,8 +368,8 @@ Socket.prototype._final = function(cb) {\n };\n \n \n-function afterShutdown(status, handle) {\n- var self = handle[owner_symbol];\n+function afterShutdown(status) {\n+ var self = this.handle[owner_symbol];\n \n debug('afterShutdown destroyed=%j', se... | 2018-12-13T23:47:32 |
golang/go | 12e8ffc18e84a76f8e01457852c456a3b28ec55a | cd4d59232e01f8b351cf83c0a669e56b10e8945d | io: avoid integer overflow in NewSectionReader
Fixes #48620
Change-Id: I37a5909ad27dc4a170929cb2e2ed1045cf524d59
Reviewed-on: https://go-review.googlesource.com/c/go/+/352629
Trust: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Tr... | [
{
"path": "src/io/io.go",
"patch": "@@ -479,7 +479,16 @@ func (l *LimitedReader) Read(p []byte) (n int, err error) {\n // NewSectionReader returns a SectionReader that reads from r\n // starting at offset off and stops with EOF after n bytes.\n func NewSectionReader(r ReaderAt, off int64, n int64) *SectionR... | 2021-09-27T21:27:59 |
electron/electron | 70feb08f8495eabbb44c3fae3064aaa5c836638e | 75b08f510ee021b3a984095dce873769ae127fb8 | Fix linting issues | [
{
"path": "atom/browser/ui/win/notify_icon.cc",
"patch": "@@ -40,7 +40,7 @@ NotifyIcon::NotifyIcon(NotifyIconHost* host,\n base::MD5Sum(explicit_app_id,\n sizeof(wchar_t) * wcslen(explicit_app_id),\n (base::MD5Digest*)&tray_app_id_hash_);\n- \n+\n CoTaskMemFree(explicit_app_id);\n ... | 2015-07-24T10:30:23 |
huggingface/transformers | a5fac1c394eafb07312519fcef48ffe8f1a247dc | 085e02383c3d74a4e18e7ef8404c281b3e8ccfb5 | Fix error on importing unavailable torch.distributed (#40038)
Currently model_debugging_utils.py would have an unguarded `import torch.distributed.tensor`. This PR ensures that the distributed module is available before including its tensor module. | [
{
"path": "src/transformers/model_debugging_utils.py",
"patch": "@@ -26,11 +26,13 @@\n \n if is_torch_available():\n import torch\n- import torch.distributed.tensor\n from safetensors.torch import save_file\n \n # Note to code inspectors: this toolbox is intended for people who add models to ... | 2025-08-12T14:30:51 |
vercel/next.js | 42fa76a3f7c667f7d0cb266448fa121bb1661424 | 2ffcc59ea75d03c1c79c2bdf40036b661c25caba | fix app dir with latest next.js (vercel/turbo#4134)
### Description
* [fix manifest for
__ssr_module_mapping__](https://github.com/vercel/turbo/commit/4abd87312d05a74ee858a8f556bfe567f3a9e008)
* [add missing styled-jsx
alias](https://github.com/vercel/turbo/commit/d9b4a4df7f81b18e657689f4e182bc9ef2259633)
### Testin... | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/app-renderer.tsx",
"patch": "@@ -137,26 +137,51 @@ async function runOperation(renderData: RenderData) {\n tree = [info.segment, { children: tree }, components];\n }\n \n+ const proxyMethodsForModule = (\n+ id: string\n+ ): ProxyHandler<F... | 2023-03-09T16:05:29 |
golang/go | cd4d59232e01f8b351cf83c0a669e56b10e8945d | 52b23a50f8a2028b6155da12161941803abd6198 | runtime: fix and simplify printing on bad ftab
Unilaterally print plugin.
Use println instead of print.
Change-Id: Ib58f187bff9c3dbedfa2725c44754a222807cc36
Reviewed-on: https://go-review.googlesource.com/c/go/+/352072
Trust: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Cherry Mui <cherryyz@google.com> | [
{
"path": "src/runtime/symtab.go",
"patch": "@@ -604,13 +604,9 @@ func moduledataverify1(datap *moduledata) {\n \t\t\tif i+1 < nftab {\n \t\t\t\tf2name = funcname(f2)\n \t\t\t}\n-\t\t\tprint(\"function symbol table not sorted by program counter:\", hex(datap.ftab[i].entry), funcname(f1), \">\", hex(datap.ft... | 2021-09-24T17:57:27 |
rust-lang/rust | 5881eb8b74606112be610f6548d144b175195c17 | 1c7bcb19b48f277874607214ae30b1af38c743ea | triagebot: fix incorrect link | [
{
"path": "src/doc/rustc-dev-guide/triagebot.toml",
"patch": "@@ -22,8 +22,8 @@ remove_labels = [\"S-waiting-on-author\"]\n # Those labels are added when PR author requests a review from an assignee\n add_labels = [\"S-waiting-on-review\"]\n \n-# Enable tracking of PR review assignment\n-# Documentation at:... | 2025-05-31T15:21:43 |
huggingface/transformers | 085e02383c3d74a4e18e7ef8404c281b3e8ccfb5 | 2ce0dae390dc0e19eb5b5babb7cf20aa1dcd291b | Fix Qwen3 MoE GGUF architecture mismatch (#39976)
* fix qwen3moe gguf architecture
* Fix Qwen3Moe GGUF loading
---------
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
Co-authored-by: Jinuk Kim <jusjinuk@snu.ac.kr> | [
{
"path": "src/transformers/integrations/ggml.py",
"patch": "@@ -102,13 +102,14 @@\n \"attention.layer_norm_rms_epsilon\": \"rms_norm_eps\",\n \"vocab_size\": \"vocab_size\",\n },\n- \"qwen3moe\": {\n+ \"qwen3_moe\": {\n \"context_length\": \"max_position_embeddings\",\n ... | 2025-08-12T13:38:48 |
electron/electron | 75b08f510ee021b3a984095dce873769ae127fb8 | 08383a69cea60db3d87fbe9842d21ffe0c4ef753 | Fix up namespaces | [
{
"path": "atom/browser/ui/win/notify_icon.cc",
"patch": "@@ -29,18 +29,21 @@ NotifyIcon::NotifyIcon(NotifyIconHost* host,\n window_(window),\n message_id_(message),\n menu_model_(NULL) {\n- \n- // NB: If we have an App Model ID, we should propagate that to the tray. \n+\n+ // NB:... | 2015-07-24T10:27:15 |
vercel/next.js | 58b42d84b8d67f8dacb713165a4191a9314ba92a | 641bee063010b90b9ec9e13d5926e05477464247 | fix app dir with latest next.js (vercel/turbo#4134)
### Description
* [fix manifest for
__ssr_module_mapping__](https://github.com/vercel/turbo/commit/4abd87312d05a74ee858a8f556bfe567f3a9e008)
* [add missing styled-jsx
alias](https://github.com/vercel/turbo/commit/d9b4a4df7f81b18e657689f4e182bc9ef2259633)
### Testin... | [
{
"path": "crates/next-core/js/src/entry/app-renderer.tsx",
"patch": "@@ -137,26 +137,51 @@ async function runOperation(renderData: RenderData) {\n tree = [info.segment, { children: tree }, components];\n }\n \n+ const proxyMethodsForModule = (\n+ id: string\n+ ): ProxyHandler<FlightManifest[\"__... | 2023-03-09T16:05:29 |
golang/go | 52b23a50f8a2028b6155da12161941803abd6198 | 45134acbe645665e93cf1d399027d56b44f23299 | cmd/link: put type descriptor method arginfo in the correct section
We were putting type descriptor funcdata,
such as type..eq.[2]interface {}.arginfo1
in type.* or typerel.* instead of go.func.*.
Fix that.
Change-Id: I779e6be3dd91c8029f2c3dc0e10a7d597c16678f
Reviewed-on: https://go-review.googlesource.com/c/go/+/35... | [
{
"path": "src/cmd/link/internal/ld/symtab.go",
"patch": "@@ -537,22 +537,6 @@ func (ctxt *Link) symtab(pcln *pclntab) []sym.SymKind {\n \n \t\tname := ldr.SymName(s)\n \t\tswitch {\n-\t\tcase strings.HasPrefix(name, \"type.\"):\n-\t\t\tif !ctxt.DynlinkingGo() {\n-\t\t\t\tldr.SetAttrNotInSymbolTable(s, true... | 2021-09-24T01:03:56 |
huggingface/transformers | f7cbd5f3ef3ce800028cfe3bb570cba681a1070e | 35dc88829c62f7f31803b5d9bbd9f94d0c1eae51 | Fix regression in mllama vision encoder (#40083)
fix mllama vision encoder
Signed-off-by: Isotr0py <2037008807@qq.com> | [
{
"path": "src/transformers/models/mllama/modeling_mllama.py",
"patch": "@@ -351,13 +351,15 @@ def forward(\n [What are attention masks?](../glossary#attention-mask)\n \n \"\"\"\n+ encoder_states = ()\n for encoder_layer in self.layers:\n hidden_states = en... | 2025-08-12T13:29:45 |
rust-lang/rust | 18f4fa3b4808e3d53f1c1350ed8aa80fe6d2a8fd | fd0ea742f849e2ff270b586f0a28b7c1e69aa8aa | fix: split a line exceeding the maximum width | [
{
"path": "src/expr.rs",
"patch": "@@ -1996,7 +1996,11 @@ fn rewrite_let(\n // TODO(ytmimi) comments could appear between `let` and the `pat`\n \n // 4 = \"let \".len()\n- let pat_shape = shape.offset_left(4, pat.span)?;\n+ let mut pat_shape = shape.offset_left(4, pat.span)?;\n+ if context.... | 2025-05-30T09:55:59 |
vercel/next.js | 641bee063010b90b9ec9e13d5926e05477464247 | 6f2be77d0a6e7dabbc0341a0c8bfa3a80c5cf866 | improve handling of syntax errors in HMR (vercel/turbo#4129)
### Description
It's a bit ugly and I dislike the way it's implemented, but this will
help for now.
* When using HMR and introducing an parse error to a module, this keeps
the previous references and exports type to keep the environment intact
and avoid un... | [
{
"path": "crates/turbopack-cli-utils/src/lib.rs",
"patch": "@@ -1,7 +1,6 @@\n #![feature(async_closure)]\n #![feature(min_specialization)]\n #![feature(round_char_boundary)]\n-#![feature(main_separator_str)]\n \n pub mod issue;\n ",
"additions": 0,
"deletions": 1,
"language": "Rust"
},
{
... | 2023-03-09T12:53:35 |
huggingface/transformers | a07b5e90f2c2c176e72e91510f36f092d1084684 | 952fac100dd593ae5e86aa6afde75fb3f877dec0 | feat: add `is_fast` to ImageProcessor (#39603)
* feat: add `is_fast` to ImageProcessor
* test_image_processing_common.py 업데이트
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com>
* feat: add missing BaseImageProcessorFast import
* fix: `issubclass` for discriminating subclass of BaseImageProc... | [
{
"path": "src/transformers/image_processing_utils.py",
"patch": "@@ -39,6 +39,13 @@ class BaseImageProcessor(ImageProcessingMixin):\n def __init__(self, **kwargs):\n super().__init__(**kwargs)\n \n+ @property\n+ def is_fast(self) -> bool:\n+ \"\"\"\n+ `bool`: Whether or not ... | 2025-08-12T12:14:57 |
golang/go | 45134acbe645665e93cf1d399027d56b44f23299 | 788731387932e70d4dd951770c046c7eec9f9d96 | debug/gosym: add pcHeader parsing helpers
A subsequent change will duplicate most of case ver116.
Make it easier to read.
Change-Id: I3a93181c7f094b12715b8a618e9efef7a1438a27
Reviewed-on: https://go-review.googlesource.com/c/go/+/351909
Trust: Josh Bleecher Snyder <josharian@gmail.com>
Run-TryBot: Josh Bleecher Snyde... | [
{
"path": "src/debug/gosym/pclntab.go",
"patch": "@@ -225,21 +225,23 @@ func (t *LineTable) parsePclnTab() {\n \tt.quantum = uint32(t.Data[6])\n \tt.ptrsize = uint32(t.Data[7])\n \n+\toffset := func(word uint32) uint64 {\n+\t\treturn t.uintptr(t.Data[8+word*t.ptrsize:])\n+\t}\n+\tdata := func(word uint32) [... | 2021-09-22T18:13:20 |
electron/electron | 73ded9d37830c4f947de4f8b4d91100558e4374e | 48975d04e0e9673d9851f4a050f464a7108520ed | linux: Fix min/max size not working | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -36,6 +36,7 @@\n #include \"atom/browser/browser.h\"\n #include \"atom/browser/ui/views/global_menu_bar_x11.h\"\n #include \"atom/browser/ui/views/frameless_view.h\"\n+#include \"atom/browser/ui/views/native_frame_view.h\"\n #include \"atom/brows... | 2015-07-24T08:04:54 |
vercel/next.js | 2ffcc59ea75d03c1c79c2bdf40036b661c25caba | e6103ae6dd24da011ba81fdc233d82da0e1abea5 | Merge `EcmascriptChunkUpdate`s before sending them to the client (vercel/turbo#3975)
This diff:
* introduces the `VersionedContentMerger` trait, which allows for
merging the updates of versioned contents within the same chunk group;
* implements this for `EcmascriptChunkContent`/`EcmascriptChunkUpdate`,
turning them i... | [
{
"path": "packages/next-swc/crates/next-core/js/src/dev/hmr-client.ts",
"patch": "@@ -1,6 +1,10 @@\n import type {\n+ ChunkListUpdate,\n+ ChunkUpdate,\n ClientMessage,\n- HmrUpdateEntry,\n+ EcmascriptMergedChunkUpdate,\n+ EcmascriptMergedUpdate,\n+ EcmascriptModuleEntry,\n Issue,\n ResourceIden... | 2023-03-09T11:13:04 |
nodejs/node | 77db1e70dd82245b7c263b6c48c41d398ad7ed61 | 9391638f88ee33f94686be8bf44d698b767d2b66 | doc: fix NAPI typo
PR-URL: https://github.com/nodejs/node/pull/25216
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -60,7 +60,7 @@ if (status != napi_ok) {\n return;\n }\n \n-status = napi_crate_string_utf8(env, \"bar\", NAPI_AUTO_LENGTH, &string);\n+status = napi_create_string_utf8(env, \"bar\", NAPI_AUTO_LENGTH, &string);\n if (status != napi_ok) {\n napi_throw_error(env, ... | 2018-12-25T12:01:20 |
rust-lang/rust | 7eea11b27c602deed37d94c87c21f4b14f858170 | 98961cd3da999cda30a1ab6c751bc9cf0a6cb6b3 | Fix C++ standard library name for *-windows-gnullvm targets | [
{
"path": "src/bootstrap/src/core/build_steps/compile.rs",
"patch": "@@ -1417,12 +1417,14 @@ fn rustc_llvm_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelect\n && !target.contains(\"apple\")\n && !target.contains(\"solaris\")\n {\n+ let libstdcxx_name =\n+ ... | 2025-05-06T16:29:31 |
huggingface/transformers | 952fac100dd593ae5e86aa6afde75fb3f877dec0 | 41d17178827455e7b6553a7026d71d3036ef719c | Enable SIM rules (#39806)
* Enable SIM rules
Signed-off-by: cyy <cyyever@outlook.com>
* More fixes
Signed-off-by: cyy <cyyever@outlook.com>
---------
Signed-off-by: cyy <cyyever@outlook.com> | [
{
"path": "pyproject.toml",
"patch": "@@ -19,10 +19,13 @@ line-length = 119\n \n [tool.ruff.lint]\n # Never enforce `E501` (line length violations).\n-ignore = [\"C901\", \"E501\", \"E741\", \"F402\", \"F823\"]\n+# SIM300: Yoda condition detected\n+# SIM212: Checks for if expressions that check against a ne... | 2025-08-12T12:14:26 |
golang/go | 04f7521b0aef10d523d6de006e723afd349b4b95 | 8e34d779578736942c78f9857f5bb9b9025815c6 | reflect: add Value.{CanInt, CanUint, CanFloat, CanComplex}
As discussed in #47658, Value already has CanAddr and CanInterface to
test if a call to Addr or Inteface, respectively, does not result in a
panic.
Therefore we add CanInt, CanUint, CanFloat and CanComplex to ease the
test for a possible panic in calling, resp... | [
{
"path": "src/cmd/compile/internal/test/inl_test.go",
"patch": "@@ -127,6 +127,10 @@ func TestIntendedInlining(t *testing.T) {\n \t\t\t\"ValidRune\",\n \t\t},\n \t\t\"reflect\": {\n+\t\t\t\"Value.CanInt\",\n+\t\t\t\"Value.CanUint\",\n+\t\t\t\"Value.CanFloat\",\n+\t\t\t\"Value.CanComplex\",\n \t\t\t\"Value.... | 2021-09-25T16:44:24 |
nodejs/node | 9391638f88ee33f94686be8bf44d698b767d2b66 | db2b61261467c2017cbdcb8f47f25e0cdb4042df | test: fix test-tls-session-timeout
Tests in pummel seem to break often and stay broken because they don't
get run in CI. In preparation for running pummel tests in CI once a day,
this fixes test-tls-session-timeout. `key` and `cert` are now the
contents of the relevant files and not the paths.
PR-URL: https://github.... | [
{
"path": "test/pummel/test-tls-session-timeout.js",
"patch": "@@ -50,8 +50,8 @@ function doTest() {\n \n const SESSION_TIMEOUT = 1;\n \n- const key = fixtures.path('agent.key');\n- const cert = fixtures.path('agent.crt');\n+ const key = fixtures.readSync('agent.key');\n+ const cert = fixtures.readSyn... | 2018-12-23T00:21:10 |
rust-lang/rust | 98961cd3da999cda30a1ab6c751bc9cf0a6cb6b3 | e0d014a3dffbb3f0575cfbeb0f480c5080c4d018 | Fix incorrect comment | [
{
"path": "src/bootstrap/src/core/build_steps/compile.rs",
"patch": "@@ -1409,7 +1409,7 @@ fn rustc_llvm_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelect\n cargo.env(\"LLVM_LINKER_FLAGS\", llvm_linker_flags);\n }\n \n- // Building with a static libstdc++ is only supported on... | 2025-04-27T11:10:06 |
huggingface/transformers | 41d17178827455e7b6553a7026d71d3036ef719c | ab455e0d88e8763adc65ac814ab57f7123a1aa64 | New DynamicSlidingWindowLayer & associated Cache (#40039)
* start adding the layer
* style
* improve
* modular
* fix
* fix
* improve
* generate integration
* comment
* remove old one
* remove
* fix
* fix
* fix
* fix all recompiles
* fix
* doc
* fix
* add text config check
* fix encoderdecoder cache
... | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -36,23 +36,26 @@ class CacheLayerMixin(ABC):\n def __init__(self):\n self.keys, self.values = None, None\n \n+ def __repr__(self):\n+ return f\"{self.__class__.__name__}\"\n+\n+ @abstractmethod\n+ def lazy_initialization(s... | 2025-08-12T12:09:52 |
golang/go | 8e34d779578736942c78f9857f5bb9b9025815c6 | f0c79caa1398b6a840ec9406eb34b46a125ecb82 | runtime, cmd/link: minor cleanup
Fix some comments.
Adjust capitalization for initialisms.
Use a println directly instead of emulating it.
Change-Id: I0d8fa0eb39547e2db8113fd0358136285b86f16a
Reviewed-on: https://go-review.googlesource.com/c/go/+/351462
Trust: Josh Bleecher Snyder <josharian@gmail.com>
Run-TryBot: Jo... | [
{
"path": "src/cmd/link/internal/ld/pcln.go",
"patch": "@@ -551,7 +551,7 @@ type pclnSetUint func(*loader.SymbolBuilder, *sys.Arch, int64, uint64) int64\n // 1) the PC->func table.\n // 2) The entry points in the func objects.\n // 3) The funcdata.\n-// (1) and (2) are handled in walkPCToFunc. (3) is ... | 2021-09-21T16:45:34 |
vercel/next.js | 6f2be77d0a6e7dabbc0341a0c8bfa3a80c5cf866 | aa6162826ba94c91e3bf4db10374767c8bc03eb2 | Merge `EcmascriptChunkUpdate`s before sending them to the client (vercel/turbo#3975)
This diff:
* introduces the `VersionedContentMerger` trait, which allows for
merging the updates of versioned contents within the same chunk group;
* implements this for `EcmascriptChunkContent`/`EcmascriptChunkUpdate`,
turning them i... | [
{
"path": "crates/next-core/js/src/dev/hmr-client.ts",
"patch": "@@ -1,6 +1,10 @@\n import type {\n+ ChunkListUpdate,\n+ ChunkUpdate,\n ClientMessage,\n- HmrUpdateEntry,\n+ EcmascriptMergedChunkUpdate,\n+ EcmascriptMergedUpdate,\n+ EcmascriptModuleEntry,\n Issue,\n ResourceIdentifier,\n Server... | 2023-03-09T11:13:04 |
nodejs/node | 5570df407aae1e329955b1093e0e5b8bde270213 | 71bc7e1ce6881b4e6fe50459cc9866d47f96e4a4 | doc: fix links in test/common/README.md
PR-URL: https://github.com/nodejs/node/pull/25172
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ruben Bridgew... | [
{
"path": "test/common/README.md",
"patch": "@@ -271,8 +271,8 @@ See `common.expectWarning()` for usage.\n Indicates whether 'opensslCli' is supported.\n \n ### platformTimeout(ms)\n-* `ms` [<number>|<bigint>]\n-* return [<number>|<bigint>]\n+* `ms` [<number>] | [<bigint>]\n+* return [<... | 2018-12-21T20:09:04 |
rust-lang/rust | ba5a7444c3569b3fbb66e327ea0b6019995c87fb | 38081f22c2d7380f272aa1d7fa9b935637701c2d | Warn when gold was used as the linker
gold has been deprecated recently and is known to behave incorrectly
around Rust programs, including miscompiling `#[used(linker)]`.
Tell people to switch to a different linker instead.
Co-Authored-By: bjorn3 <17426603+bjorn3@users.noreply.github.com> | [
{
"path": "compiler/rustc_codegen_ssa/src/back/link.rs",
"patch": "@@ -3,7 +3,7 @@ mod raw_dylib;\n use std::collections::BTreeSet;\n use std::ffi::OsString;\n use std::fs::{File, OpenOptions, read};\n-use std::io::{BufWriter, Write};\n+use std::io::{BufReader, BufWriter, Write};\n use std::ops::{ControlFlo... | 2025-05-29T21:55:12 |
huggingface/transformers | 1c5e17c025c4f1f5f5bc70e7d7e2b7b886d14a3a | 913c0a8c334afcbb42d8ee74567ff9ed0344b11d | Update Glm4V processor and add tests (#39988)
* update GLm4V and add tests
* Update tests/models/glm4v/test_processor_glm4v.py
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com>
* remove min/max pixels for BC
* fix video tests
---------
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@use... | [
{
"path": "src/transformers/models/glm4v/image_processing_glm4v.py",
"patch": "@@ -70,8 +70,8 @@ def smart_resize(\n \n if t_bar * h_bar * w_bar > max_pixels:\n beta = math.sqrt((num_frames * height * width) / max_pixels)\n- h_bar = math.floor(height / beta / factor) * factor\n- w_... | 2025-08-12T11:40:54 |
golang/go | 301f6c8019bea813b039c3d376a6464a0e117dce | dfd875d015fb67671a2374c229e2159388d37693 | cmd/compile: keep methods on generic types from being deadcode eliminated
We currently make dictionaries contain a relocation pointing to
methods that generic code might use, so that those methods are not
deadcode eliminated. However, with inlining we can end up not using
the dictionary, making the reference from the ... | [
{
"path": "src/cmd/compile/internal/noder/helpers.go",
"patch": "@@ -187,7 +187,7 @@ func Call(pos src.XPos, typ *types.Type, fun ir.Node, args []ir.Node, dots bool)\n \t// If no type params, do the normal call transformations. This\n \t// will convert OCALL to OCALLFUNC.\n \ttyped(typ, n)\n-\ttransformCall... | 2021-09-10T22:24:16 |
vercel/next.js | ddff41a9082f2016fda9e16c638c0d1ccef3f4f3 | 80f2293a017db0159bd141f52162dc4778327add | Support re-exporting unnamed function expression (#46936)
Add support for cases like:
```js
const foo = async function () {}
export default foo
const bar = async function() {}
export { bar }
```
Also fix a bug where nested async function declarations are mistakenly
counted as actions.
Fixes NEXT-800. | [
{
"path": "packages/next-swc/crates/core/src/server_actions.rs",
"patch": "@@ -126,19 +126,11 @@ impl<C: Comments> ServerActions<C> {\n \n fn add_action_annotations(\n &mut self,\n- ident: &mut Ident,\n+ ident: &Ident,\n function: &mut Box<Function>,\n is_exported: ... | 2023-03-08T23:07:31 |
electron/electron | 3840a10da6b46b20e9994fe1db6474db60924d0a | 9ec60cd585b726e578d06d5e8e090854a9fed3ec | Fix app-command event always return 'unknown'. | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -929,7 +929,7 @@ bool NativeWindowViews::ExecuteWindowsCommand(int command_id) {\n } else if ((command_id & sc_mask) == SC_MAXIMIZE) {\n NotifyWindowMaximize();\n } else {\n- std::string command = AppCommandToString(command_id & sc_mas... | 2015-07-24T05:02:11 |
nodejs/node | 71bc7e1ce6881b4e6fe50459cc9866d47f96e4a4 | 65d8179b0d10b4a53564d360c21d0260ec4b1686 | src: add DCHECK macros
This adds check statements for debugging and refactors the code
accordingly.
PR-URL: https://github.com/nodejs/node/pull/24359
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Ruben Bridgew... | [
{
"path": "src/base_object-inl.h",
"patch": "@@ -67,10 +67,10 @@ v8::Local<v8::Object> BaseObject::object() const {\n \n v8::Local<v8::Object> BaseObject::object(v8::Isolate* isolate) const {\n v8::Local<v8::Object> handle = object();\n-#ifdef DEBUG\n- CHECK_EQ(handle->CreationContext()->GetIsolate(), is... | 2018-11-14T00:53:12 |
rust-lang/rust | 2428070096f9e48f805fba00af0e572f39bdda46 | 9c45a450615f4250fc21fc3d119900fa97cfb70c | fix: Fix manual not containing diagnostics documentation | [
{
"path": "src/tools/rust-analyzer/xtask/src/codegen.rs",
"patch": "@@ -24,8 +24,8 @@ impl flags::Codegen {\n grammar::generate(self.check);\n assists_doc_tests::generate(self.check);\n parser_inline_tests::generate(self.check);\n- feature_docs:... | 2025-05-31T12:36:10 |
vercel/next.js | 80f2293a017db0159bd141f52162dc4778327add | de6a1e3d7606b7d510d563307152bf4ea37d92a6 | Revalidate generateStaticParams/Paths in background in dev (#46940)
Follow-up to https://github.com/vercel/next.js/pull/46906 this ensures
we revalidate `generateStaticParams`/`getStaticPaths` in the background
in development so that we aren't blocking refreshes an much
un-necessarily if the paths cache is already ... | [
{
"path": "packages/next/src/server/dev/next-dev-server.ts",
"patch": "@@ -98,6 +98,7 @@ import { NextBuildContext } from '../../build/build-context'\n import { logAppDirError } from './log-app-dir-error'\n import { createClientRouterFilter } from '../../lib/create-client-router-filter'\n import { Increment... | 2023-03-08T22:33:28 |
golang/go | 964ea8c6482f48b242072697d150bb2192710892 | 315cec25bc7b5045f6081545a63cb27d44fcbde9 | cmd/go/testdata/script: fix incorrect comments
Change-Id: I675d66c229a4293146366bc9b927e0fd2d7a3eeb
Reviewed-on: https://go-review.googlesource.com/c/go/+/351929
Run-TryBot: Zvonimir Pavlinovic <zpavlinovic@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ingo Oeser <nightlyone@googlemail.com>
Reviewe... | [
{
"path": "src/cmd/go/testdata/script/test_vet.txt",
"patch": "@@ -24,11 +24,11 @@ stderr 'using resp before checking for errors'\n ! go test -vet=bools,xyz ./vetall/...\n stderr '-vet argument must be a supported analyzer'\n \n-# Test with a list of analyzers\n+# Test with a single analyzer\n ! go test -ve... | 2021-09-23T22:50:22 |
nodejs/node | e7e26b21198366999cd8ebfaa8ecd978a9e08c91 | 457603e96194b4858ad715f9faacb3ad7fec7f35 | src: fix compiler warnings
The warnings in question are:
../src/node.cc:844:13: warning:
unused function 'DebugProcess' [-Wunused-function]
static void DebugProcess(const FunctionCallbackInfo<Value>& args);
^
../src/node.cc:845:13: warning:
unused function 'DebugEnd' [-Wunused-function]
static void DebugE... | [
{
"path": "src/node.cc",
"patch": "@@ -841,9 +841,6 @@ static Local<Object> GetFeatures(Environment* env) {\n return scope.Escape(obj);\n }\n \n-static void DebugProcess(const FunctionCallbackInfo<Value>& args);\n-static void DebugEnd(const FunctionCallbackInfo<Value>& args);\n-\n void SetupProcessObject(... | 2018-12-21T14:10:34 |
vercel/next.js | bae5d6fcd45f3990e7ce208ca0494023c42deb9d | b3220fe3221fed0861be4f18c5cd9354c9e317bf | Validate the router state header on the server (#46925)
Ensure that the router tree state header is one single, valid value.
Fixes NEXT-136. | [
{
"path": "packages/next/src/server/app-render.tsx",
"patch": "@@ -740,6 +740,22 @@ async function renderToString(element: React.ReactElement) {\n })\n }\n \n+function parseFlightRouterState(stateHeader: string | string[] | undefined) {\n+ if (typeof stateHeader === 'undefined') {\n+ return undefined\... | 2023-03-08T21:44:17 |
golang/go | a80cbc25bddfa1e6be76cf539ae9276d41b5108f | 8d09f7c5178b04bade2859d32d0710233a620d4f | runtime: elide instantiated types in tracebacks
They tend to be things like ".shape.int" which are noisy, if not
otherwise confusing.
It would be nice to somehow print the real instantiations here, but that
requires keeping track of the dictionary argument so the instantiating
types could be found. One day, maybe, bu... | [
{
"path": "src/cmd/link/internal/ld/pcln.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"internal/buildcfg\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"strings\"\n )\n \n // pclntab holds the state needed for pclntab generation.\n@@ -286,19 +287,44 @@ func walkFuncs(ctxt *Link, funcs []loader.Sym, f func(loader... | 2021-09-24T21:55:06 |
electron/electron | d9ee8519e9d2da28673d74e877833d081e2ad094 | 8b4815fd95d862ee1e6fc8a3dc6f94044198ad2b | Correct error in chrome-command-line-switches.md
Replace “to” with “in” to correct the error identified in
`chrome-command-line-switches.md` by @OlsonDev. | [
{
"path": "docs/api/chrome-command-line-switches.md",
"patch": "@@ -2,7 +2,7 @@\n \n This page lists the command line switches used by the Chrome browser that are also supported by\n Electron. You can use [app.commandLine.appendSwitch][append-switch] to append\n-them to your app's main script before the [re... | 2015-07-23T19:45:08 |
nodejs/node | 2a02b9df6ef35b34b7d93cf8408ce53fb2f66b53 | 0c1a38821825d4aced001e223bbba23b19b521f1 | test: add hasCrypto check to common flags check
Currently, if node is configured --without-ssl there will be a number of
test errors related to crypto flags:
Error: Test has to be started with the flag: '--tls-v1.1'
This commit adds a hasCrypto check to the flags checking similar to what
is done for --without-intl.
... | [
{
"path": "test/common/index.js",
"patch": "@@ -36,6 +36,8 @@ const {\n \n const noop = () => {};\n \n+const hasCrypto = Boolean(process.versions.openssl);\n+\n const isMainThread = (() => {\n try {\n return require('worker_threads').isMainThread;\n@@ -73,6 +75,9 @@ if (process.argv.length === 2 &&\n ... | 2018-12-20T07:54:40 |
rust-lang/rust | e28cff7ddbeeacda9b785e969143657d1445146c | 1ca45878417c605782a05276e2c96742831f4879 | intrinsic-test: Use `c_prefix` to generate type names
To make the type names to test correct, this commit replaces occurrences
of `rust_prefix` to `c_prefix` where necessary. | [
{
"path": "library/stdarch/crates/intrinsic-test/src/arm/types.rs",
"patch": "@@ -35,7 +35,7 @@ impl IntrinsicTypeDefinition for ArmIntrinsicType {\n \n fn rust_type(&self) -> String {\n let rust_prefix = self.0.kind.rust_prefix();\n- let c_prefix = self.0.kind.rust_prefix();\n+ le... | 2025-05-31T05:06:05 |
vercel/next.js | b3220fe3221fed0861be4f18c5cd9354c9e317bf | 02eb34db0154445d30c6db57d5e92fa8e0134c9c | Validate `req.url` in renderer (#46923)
It's possible that the request is missing or having an invalid URL, and
got passed to the renderer.
Fixes NEXT-139. | [
{
"path": "packages/next/src/server/app-render.tsx",
"patch": "@@ -740,6 +740,18 @@ async function renderToString(element: React.ReactElement) {\n })\n }\n \n+function validateURL(url: string | undefined): string {\n+ if (!url) {\n+ throw new Error('Invalid request URL')\n+ }\n+ try {\n+ new URL(... | 2023-03-08T21:16:42 |
golang/go | d4007aedfaf3f551f9ea7d5e2d2f86dcd2c4c990 | 40fce515f98c0c16c361b1c85a4e638fd5b63491 | go/types, types2: factor out some code, fix/add comments (cleanups)
Change-Id: Id6a2e3eadc9099abbdd21b6880e1ff3ac9cfb599
Reviewed-on: https://go-review.googlesource.com/c/go/+/352312
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com> | [
{
"path": "src/cmd/compile/internal/types2/infer.go",
"patch": "@@ -334,7 +334,7 @@ func (w *tpWalker) isParameterized(typ Type) (res bool) {\n \n \tcase *TypeParam:\n \t\t// t must be one of w.tparams\n-\t\treturn t.index < len(w.tparams) && w.tparams[t.index] == t\n+\t\treturn tparamIndex(w.tparams, t) >=... | 2021-09-27T03:45:54 |
huggingface/transformers | c6fbfab61bf8ccf264e8316752b099dc8541c2ad | 86bb1fcd26d80263835378bdef5217f97a080954 | [fix] batch inference for llava_onevision (#40021)
* [fix] llava onevision batch inference
* style
* cannot pass inconsistent list & handle text-only case | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1048,7 +1048,7 @@\n - local: model_doc/llama4\n title: Llama4\n - local: model_doc/llava\n- title: Llava\n+ title: LLaVA\n - local: model_doc/llava_next\n title: LLaVA-NeXT\n - local: model_doc/llava... | 2025-08-12T09:01:00 |
rust-lang/rust | 26ff29e7e22b5022ec7e836381ba4e1dc0b1cb79 | c5693ed5e434e0ff24a708f99bcc3c3671a51a30 | intrinsic-test: Modernization of the coding style
It modernizes the coding style of the crate intrinsic-test by fixing
Clippy warnings.
Clippy: rust version 1.89.0-nightly (6f6971078 2025-05-28)
Number of Fixed Warnings: 36/36 | [
{
"path": "library/stdarch/crates/intrinsic-test/src/arm/compile.rs",
"patch": "@@ -2,7 +2,7 @@ use crate::common::compile_c::CompilationCommandBuilder;\n use crate::common::gen_c::compile_c_programs;\n \n pub fn compile_c_arm(\n- intrinsics_name_list: &Vec<String>,\n+ intrinsics_name_list: &[String],... | 2025-05-31T05:06:05 |
nodejs/node | 4884ca6428c0069468beea0826d228e167ad9cea | b5784fe5d598c9c8076cacaad7105a05457b22b4 | deps: V8: backport 3e010af
Original commit message:
[CloneObjectIC] clone MutableHeapNumbers only if !FLAG_unbox_double_fields
Change the macros added in bf84766a2cd3e09070adcd6228a3a487c8dc4bbd to
only do the hard work if FLAG_unbox_double_fields is unset (otherwise,
they will attempt to dereference... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2018-12-20T13:34:20 |
electron/electron | 8960aa956c669654c08c8a0727695ea81d1819e2 | de17894fce00e8afa0470f1aa2181319d89e8f81 | Only allow extensions explicitly specified by the user. Fixes #2296 | [
{
"path": "atom/browser/ui/file_dialog_mac.mm",
"patch": "@@ -18,25 +18,11 @@\n \n namespace {\n \n-CFStringRef CreateUTIFromExtension(const std::string& ext) {\n- base::ScopedCFTypeRef<CFStringRef> ext_cf(base::SysUTF8ToCFStringRef(ext));\n- return UTTypeCreatePreferredIdentifierForTag(\n- kUTTagCla... | 2015-07-23T19:30:07 |
golang/go | b88a6882a5411d705e4f05d300668f157f476749 | 078247a4075650aa4eaf9b9e7fab3b4b70b27a5f | cmd/internal/obj: fix wording in a comment
Change-Id: I9921ba5c29ada6ff06d147f6d9b46a29101c449c
Reviewed-on: https://go-review.googlesource.com/c/go/+/350694
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: David Chase <drchase@google.com> | [
{
"path": "src/cmd/internal/obj/link.go",
"patch": "@@ -283,7 +283,7 @@ func (a *Addr) SetConst(v int64) {\n // Each Prog is charged to a specific source line in the debug information,\n // specified by Pos.Line().\n // Every Prog has a Ctxt field that defines its context.\n-// For performance reasons, Prog... | 2021-09-18T14:24:07 |
huggingface/transformers | 3ff2e984d2c3703501aafb8ede90fd47e6ff69a7 | 4668ef1459ba16cd00d32a9108780c05d943dfdf | Fix PerceptionLM image preprocessing for non-tiled image input. (#40006)
* Fix PerceptionLM image preprocessing for non-tiled image input.
* Add test for single tile vanilla image processing.
* ruff format
* recover missing test skip
* Simplify test.
* minor test name fix | [
{
"path": "src/transformers/models/perception_lm/image_processing_perception_lm_fast.py",
"patch": "@@ -310,7 +310,7 @@ def _preprocess(\n )\n processed_images_grouped[shape] = stacked_images\n processed_images = reorder_images(processed_images_grouped, grouped_images_index)\... | 2025-08-12T08:40:22 |
vercel/next.js | 02eb34db0154445d30c6db57d5e92fa8e0134c9c | f99ae5af97632e3980b442f7514a280a67aada81 | Use https_proxy environment variable in next/font/google (#46822)
When fetching CSS or font files from Google Fonts, it won't work if
you're required to use a proxy. This change makes it look for the
`http(s)_proxy` environment variable, and if it's defined it creates a
fetch agent using
[https-proxy-agent](https:... | [
{
"path": "packages/font/src/google/fetch-css-from-google-fonts.ts",
"patch": "@@ -1,13 +1,14 @@\n // @ts-ignore\n import fetch from 'next/dist/compiled/node-fetch'\n import { nextFontError } from '../next-font-error'\n+import { getProxyAgent } from './get-proxy-agent'\n \n /**\n * Fetches the CSS containi... | 2023-03-08T20:23:32 |
rust-lang/rust | c5693ed5e434e0ff24a708f99bcc3c3671a51a30 | d63fde993fd21830239174b4060aa5215a451400 | stdarch_examples: Modernization of the coding style
It modernizes the coding style of the crate stdarch_examples (an example
"connect5") by fixing Clippy warnings (except clippy::manual_range_contains
in which "fixing" the warning will complicate the code).
Clippy: rust version 1.89.0-nightly (6f6971078 2025-05-28)
N... | [
{
"path": "library/stdarch/examples/connect5.rs",
"patch": "@@ -229,8 +229,7 @@ const MAPMOVEIDX: [[i32; 239]; 4] = [ [// Direction 0\n /// The first dimension is color: Black, White and Empty.\\\n /// The second and third one are 2 x 512-bit. Direction 0 and 2 use the first 512-bit. Direction 1 and\n /// 3... | 2025-05-31T05:06:05 |
nodejs/node | b5784fe5d598c9c8076cacaad7105a05457b22b4 | a9812142ca4116b425e92274c437d99e1d713fe2 | deps: V8: backport bf84766
Original commit message:
[CloneObjectIC] clone MutableHeapNumbers instead of referencing them
Adds a helper macro "CloneIfMutablePrimitive", which tests if the
operand is a MutableHeapNumber, and if so, clones it, otherwise
returning the original value.
Also modifies t... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "... | 2018-12-20T13:33:29 |
electron/electron | 63258f9f53efa3b9ff18e7df4c95572787c620e3 | 0b7a1a1eef075628a1d4c1d1c654e51ed9c2166d | Update as upstream, Fix typos | [
{
"path": "docs/api/app-ko.md",
"patch": "@@ -1,321 +0,0 @@\n-# app\n-\n-The `app` module is responsible for controlling the application's life time.\n-\n-The example of quitting the whole application when the last window is closed:\n-\n-```javascript\n-var app = require('app');\n-app.on('window-all-closed... | 2015-07-23T17:39:55 |
huggingface/transformers | 1cea763ba422b83778a8db0374ea90f43b09992b | e29919f9936c36a48f8cb9bb671979d3f0d0799d | feat: extract rev in attn_implementation kernels via @ (#40009)
* feat: extract rev in attn_implementation kernels via @
* fix: adjust for ruff
* fix: update regex and add explanatory comment
* fix: move attn_implementation kernel doc
* fix: remove extra line | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2721,7 +2721,7 @@ def _check_and_adjust_attn_implementation(\n None to sdpa (to potentially eager).\n \"\"\"\n applicable_attn_implementation = \"sdpa\" if attn_implementation is None else attn_implementation\n- ... | 2025-08-11T19:14:13 |
golang/go | d5cfba087f4947ac25714f925e610d0d3575d05e | 516d75ccf1879cba1277cc92d0c6b61725b4aab5 | cmd/go: remove references to 'go help fuzz'
Fixes: #48623
Change-Id: Idab917b90ceb332cf49b6ca2a6b79be97ac56e18
GitHub-Last-Rev: 3143ce8b95e70a0466c836ce9be3e13a3e85c12e
GitHub-Pull-Request: golang/go#48640
Reviewed-on: https://go-review.googlesource.com/c/go/+/352313
Reviewed-by: Bryan C. Mills <bcmills@google.com>
T... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1566,8 +1566,6 @@\n // in no time at all,so a successful package test result will be cached and\n // reused regardless of -timeout setting.\n //\n-// Run 'go help fuzz' for details around how the go command handles fuzz targets.\n-//\n // In addition to the b... | 2021-09-27T04:20:34 |
rust-lang/rust | d63fde993fd21830239174b4060aa5215a451400 | ee64b8501f335537dc84ddf5a3ec626aece3a004 | stdarch-verify: Modernization of the coding style
It modernizes the coding style of the crate stdarch-verify by dealing
with Clippy warnings (allows clippy::collapsible_if but review may be
required for later changes).
Clippy: rust version 1.89.0-nightly (6f6971078 2025-05-28)
Number of Fixed Warnings: 4/4 | [
{
"path": "library/stdarch/crates/stdarch-verify/src/lib.rs",
"patch": "@@ -498,6 +498,7 @@ fn find_target_feature(attrs: &[syn::Attribute]) -> Option<syn::Lit> {\n attrs\n .iter()\n .flat_map(|a| {\n+ #[allow(clippy::collapsible_if)]\n if let syn::Meta::List(ref l... | 2025-05-31T05:06:05 |
vercel/next.js | 612d5781889903a687083774b5785def7521168d | 0e073366da0888d98a511d3bd941bff97e343e05 | Update Turbopack to 230308.3 (#46935)
# Bug Fixes
- https://github.com/vercel/turbo/pull/4121
- https://github.com/vercel/turbo/pull/4111 | [
{
"path": "packages/next-swc/Cargo.lock",
"patch": "@@ -150,7 +150,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230308.1#4dcf1337781c7a5ba93e1fce347448f5f59310bd\"\n+source = \"git+https://github.com/v... | 2023-03-08T19:25:23 |
nodejs/node | a9812142ca4116b425e92274c437d99e1d713fe2 | 8b5720833f1a48bcfe9072305682bea76f833ab4 | deps: patch V8 to 7.1.302.33
PR-URL: https://github.com/nodejs/node/pull/25101
Refs: https://github.com/v8/v8/compare/7.1.302.28...7.1.302.33
Fixes: https://github.com/nodejs/node/issues/25089
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: James M Snell <jasnell@gmail.c... | [
{
"path": "deps/v8/DEPS",
"patch": "@@ -9,6 +9,9 @@ vars = {\n 'download_jsfunfuzz': False,\n 'download_mips_toolchain': False,\n 'check_v8_header_includes': False,\n+\n+ # luci-go CIPD package version.\n+ 'luci_go': 'git_revision:fdf05508e8a66c773a41521e0243c9d11b9a2a1c',\n }\n \n deps = {\n@@ -51,... | 2018-12-20T13:06:15 |
huggingface/transformers | e29919f9936c36a48f8cb9bb671979d3f0d0799d | eca703026e2ab0f09e06c8f9eeeaadf9cd8c7c4b | [`GPT Big Code`] Fix attention scaling (#40041)
* fix
* update integration tests
* fmt
* add regression test | [
{
"path": "src/transformers/models/gpt_bigcode/modeling_gpt_bigcode.py",
"patch": "@@ -144,7 +144,7 @@ def __init__(self, config, is_cross_attention=False, layer_idx=None):\n )\n \n self.scale_attn_weights = config.scale_attn_weights\n- self.scaling = self.head_dim**0.5 if config.... | 2025-08-11T19:01:31 |
electron/electron | 8b4815fd95d862ee1e6fc8a3dc6f94044198ad2b | 32b84bd3f9af942a1189ea0f3150898127771931 | Improve grammar and punctuation of crash-reporter.md
Improve the grammar, sentence structure, punctuation and formatting of
`crash-reporter.md`. | [
{
"path": "docs/api/crash-reporter.md",
"patch": "@@ -1,6 +1,6 @@\n # crash-reporter\n \n-An example of automatically submitting crash reporters to a remote server:\n+The following is an example of automatically submitting a crash report to a remote server:\n \n ```javascript\n crashReporter = require('cras... | 2015-07-23T17:02:45 |
golang/go | 516d75ccf1879cba1277cc92d0c6b61725b4aab5 | 6e5dd0b59bd1380542666d12eaf9f415dea162f6 | cmd/internal/obj/ppc64: add a test for long branch fixups
Cribbed and modified from arm64, verify each transformation
rewrites a too-far conditional branch as expected.
Change-Id: I87d35085158ed7d7478aa9725b273401fcd0bd01
Reviewed-on: https://go-review.googlesource.com/c/go/+/347049
Trust: David Chase <drchase@google... | [
{
"path": "src/cmd/internal/obj/ppc64/asm_test.go",
"patch": "@@ -5,6 +5,8 @@\n package ppc64\n \n import (\n+\t\"bytes\"\n+\t\"fmt\"\n \t\"internal/testenv\"\n \t\"io/ioutil\"\n \t\"os\"\n@@ -35,6 +37,131 @@ ADD $4, R8\n RET\n `\n \n+var platformEnvs = [][]string{\n+\t{\"GOOS=aix\", \"GOARCH=ppc64\"},\n+\t... | 2021-08-30T16:56:58 |
rust-lang/rust | ee64b8501f335537dc84ddf5a3ec626aece3a004 | 9610536476ebb861c99b3c295d062a4e43f4cec2 | stdarch-test: Modernization of the coding style
It modernizes the coding style of the crate stdarch-test by fixing
Clippy warnings.
Clippy: rust version 1.89.0-nightly (6f6971078 2025-05-28)
Number of Fixed Warnings: 1/1 | [
{
"path": "library/stdarch/crates/stdarch-test/src/lib.rs",
"patch": "@@ -71,7 +71,7 @@ pub fn assert(shim_addr: usize, fnname: &str, expected: &str) {\n //eprintln!(\" function: {:?}\", function);\n \n let mut instrs = &function.instrs[..];\n- while instrs.last().map_or(false, |s| s == \"nop\" ... | 2025-05-31T05:06:05 |
vercel/next.js | bb05a6ddd92afac5311bbeb74f2c62c5507cc1b1 | fa9e4ad7721aea82e7d1f8000d7d971bd14965ac | Introduce TraitRefs, remove cell_local (vercel/turbo#3887)
`.cell_local`'s semantics are very confusing and can be the cause of
particularly hard-to-debug issues. Furthermore, they can't be nested
correctly, which is necessary for my future HMR work. Instead, @sokra
proposed that we should always use `ReadRef`s ins... | [
{
"path": "crates/turbo-tasks-macros-shared/src/ident.rs",
"patch": "@@ -59,6 +59,14 @@ pub fn get_ref_ident(ident: &Ident) -> Ident {\n Ident::new(&(ident.to_string() + \"Vc\"), ident.span())\n }\n \n+pub fn get_read_ref_ident(ident: &Ident) -> Ident {\n+ Ident::new(&(ident.to_string() + \"ReadRef\"... | 2023-03-08T17:55:34 |
nodejs/node | f0e460968ef6e24f0882b111abd323f024055675 | 632f2633249dc0f295e9d2abab33baaf0f75ce6f | deps: remove test-related GYP files
- Less files to maintain.
- We don't use them.
- We build with GN to run V8 tests.
Fixes: https://github.com/nodejs/node/issues/25095
Refs: https://github.com/nodejs/node/issues/25010
PR-URL: https://github.com/nodejs/node/pull/25097
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Re... | [
{
"path": "deps/v8/gypfiles/all.gyp",
"patch": "@@ -9,7 +9,6 @@\n 'type': 'none',\n 'dependencies': [\n 'd8.gyp:d8',\n- 'inspector-test.gyp:*',\n 'mkgrokdump.gyp:*',\n ],\n 'conditions': [\n@@ -22,9 +21,6 @@\n ['host_os!=\"mac\" or OS!=\"android\"', {\n... | 2018-12-17T20:02:52 |
huggingface/transformers | eca703026e2ab0f09e06c8f9eeeaadf9cd8c7c4b | 43001fd3c691a4a9668446ce3a62373882ee0f75 | chore: standardize DeBERTa model card (#37409)
* chore: standardize DeBERTa model card
* Apply suggestions from code review in docs
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
* fix: Update deberta.md with code cleanup suggestions
* Update docs/source/en/model_doc/deberta.md
Co-authore... | [
{
"path": "docs/source/en/model_doc/deberta.md",
"patch": "@@ -14,72 +14,89 @@ rendered properly in your Markdown viewer.\n \n -->\n \n+<div style=\"float: right;\">\n+ <div class=\"flex flex-wrap space-x-1\">\n+ <img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&log... | 2025-08-11T17:30:37 |
rust-lang/rust | 9610536476ebb861c99b3c295d062a4e43f4cec2 | 7168d48c0bd2772cdd90fb9182bfaa28cda80440 | stdarch-gen-loongarch: Modernization of the coding style
It modernizes the coding style of the crate stdarch-gen-loongarch by
fixing Clippy warnings.
Clippy: rust version 1.89.0-nightly (6f6971078 2025-05-28)
Number of Fixed Warnings: 1/1
Confirmed that the exact same code will be generated (note that,
generated.rs ... | [
{
"path": "library/stdarch/crates/stdarch-gen-loongarch/src/main.rs",
"patch": "@@ -74,7 +74,7 @@ impl TargetFeature {\n }\n \n /// Generate a target_feature attribute\n- fn to_target_feature_attr(&self, ins: &str) -> Lines {\n+ fn to_target_feature_attr(self, ins: &str) -> Lines {\n L... | 2025-05-31T05:06:05 |
golang/go | 54079dfd7fff6c61d41c4832c074e8231f235fc3 | ff8a7e513bda9e89dfbde8ecefaa4514c11ec596 | cmd/compile: fix stencil call expression
In CL 349613,we have supported types.IdentityStrict() that does strict
type comparison.
Therefore, OCONVNOP becomes a possible case in call.X.Op().
Fixes #48604
Change-Id: Ibab27ffcf09656e3380314662f05f38294c1c6ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/351857
... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -1093,6 +1093,9 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\tcase ir.OCALL, ir.OCALLFUNC, ir.OCALLMETH, ir.OCALLINTER:\n \t\t\t\ttransformCall(call)\n \n+\t\t\tcase ir.OCONVNOP:\n+\t\t\t\ttransformCall(call)\n+\n \t\t\tcase ir... | 2021-09-24T20:42:57 |
electron/electron | eb92e9cdd80c518c2ac2bb87287cfdf9eb4dee0a | 5a980497e8220bfad4bcbe5774e7e43a8945ecad | Use node::MakeCallback to emit events in C++
Fix #2165 | [
{
"path": "atom/common/event_emitter_caller.cc",
"patch": "@@ -4,28 +4,17 @@\n \n #include \"atom/common/event_emitter_caller.h\"\n \n+#include \"atom/common/node_includes.h\"\n+\n namespace mate {\n \n namespace internal {\n \n v8::Local<v8::Value> CallEmitWithArgs(v8::Isolate* isolate,\n ... | 2015-07-23T05:46:34 |
vercel/next.js | 0e073366da0888d98a511d3bd941bff97e343e05 | 8ca0233d08ea6d66ff5ff84e4ecdd1899a79f56c | Reduce the number of hydration error tests (#46930)
`test/development/acceptance-app/hydration-error.test.ts` has a lot of tests because I ported all the tests in https://github.com/facebook/react/blob/main/packages/react-dom/src/__tests__/ReactDOMHydrationDiff-test.js. Running all those tests takes a lot of time, and... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/hot-reloader-client.tsx",
"patch": "@@ -436,7 +436,7 @@ export default function HotReload({\n }, [dispatch])\n \n const handleOnUnhandledError = useCallback((error: Error): void => {\n- // Component stack is added to the error in use-er... | 2023-03-08T16:41:21 |
huggingface/transformers | 43001fd3c691a4a9668446ce3a62373882ee0f75 | 5521c62b89b2ffbd061804c241b22618d0f0d4d5 | Fix `time_spent ` in `notification_service.py`. (#40081)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "utils/notification_service.py",
"patch": "@@ -80,7 +80,13 @@ def handle_test_results(test_results):\n \n # When the output is short enough, the output is surrounded by = signs: \"== OUTPUT ==\"\n # When it is too long, those signs are not present.\n- time_spent = expressions[-2] if \"=... | 2025-08-11T16:30:58 |
rust-lang/rust | 7168d48c0bd2772cdd90fb9182bfaa28cda80440 | 7a074c14a1bccecfde2e43a3209a97efcb96c077 | stdarch-gen-arm: Modernization of the coding style
It modernizes the coding style of the crate stdarch-gen-arm by fixing
Clippy warnings (except clippy::{collapsible_if,obfuscated_if_else} that
might make the program look worse as a result of "fixing" warnings).
Clippy: rust version 1.89.0-nightly (6f6971078 2025-05-... | [
{
"path": "library/stdarch/crates/stdarch-gen-arm/src/big_endian.rs",
"patch": "@@ -38,7 +38,7 @@ fn create_array(lanes: u32) -> Option<String> {\n 4 => Some(\"[3, 2, 1, 0]\".to_string()),\n 8 => Some(\"[7, 6, 5, 4, 3, 2, 1, 0]\".to_string()),\n 16 => Some(\"[15, 14, 13, 12, 11, 10, ... | 2025-05-31T05:06:05 |
nodejs/node | 632f2633249dc0f295e9d2abab33baaf0f75ce6f | 436f4de38f511508710eb1492f4d23a9f427e7f7 | cli: add --max-http-header-size flag
Allow the maximum size of HTTP headers to be overridden from
the command line.
co-authored-by: Matteo Collina <hello@matteocollina.com>
PR-URL: https://github.com/nodejs/node/pull/24811
Fixes: https://github.com/nodejs/node/issues/24692
Reviewed-By: Anna Henningsen <anna@addaleax.... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -197,6 +197,13 @@ added: v9.0.0\n \n Specify the `file` of the custom [experimental ECMAScript Module][] loader.\n \n+### `--max-http-header-size=size`\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+Specify the maximum size, in bytes, of HTTP headers. Defaults to 8KB.\n+\... | 2018-12-03T17:27:46 |
golang/go | ff8a7e513bda9e89dfbde8ecefaa4514c11ec596 | aeea5bacbf79fb945edbeac6cd7630dd70c4d9ce | cmd/compile: print expression for invalid operation errors
For #48472
Change-Id: I5072ebcf53e03fb5515c51a2ad01f02d72b30719
Reviewed-on: https://go-review.googlesource.com/c/go/+/350929
Reviewed-by: Robert Griesemer <gri@golang.org>
Trust: David Chase <drchase@google.com> | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -1019,7 +1019,7 @@ func (check *Checker) binary(x *operand, e syntax.Expr, lhs, rhs syntax.Expr, op\n \t\t// only report an error if we have valid types\n \t\t// (otherwise we had an error reported elsewhere already)\n \t\tif x.typ != Typ[Inv... | 2021-09-19T16:23:40 |
vercel/next.js | 37b0349731d935b104d1da0dfedc842f93b2a6e6 | 292f65f6d39c047d5bf0344f565d22e69ee64924 | Update turbopack to `230308.1` (#46909)
## Bugfixes
- https://github.com/vercel/turbo/pull/3526
- https://github.com/vercel/turbo/pull/4084
- https://github.com/vercel/turbo/pull/4083
- https://github.com/vercel/turbo/pull/4067
- https://github.com/vercel/turbo/pull/3959
- https://github.com/vercel/turbo/pull/4... | [
{
"path": "packages/next-swc/Cargo.lock",
"patch": "@@ -101,6 +101,19 @@ dependencies = [\n \"syn\",\n ]\n \n+[[package]]\n+name = \"async-compression\"\n+version = \"0.3.15\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa9... | 2023-03-08T13:51:28 |
huggingface/transformers | 5521c62b89b2ffbd061804c241b22618d0f0d4d5 | 6b70d79b612a3b9b52b23dfc50cf85013e49efdd | added Textnet fast image processor (#39884)
* feat: add fast image processor implementation for TextNet model
* chore: override to_dict method to TextNetImageProcessorFast for slow processor compatibility tests
* chore: update init method
* chore: coding and style checks
* chore: fixed code quality issue
* chore:... | [
{
"path": "docs/source/en/model_doc/textnet.md",
"patch": "@@ -47,6 +47,11 @@ TextNet is the backbone for Fast, but can also be used as an efficient text/imag\n [[autodoc]] TextNetImageProcessor\n - preprocess\n \n+## TextNetImageProcessorFast\n+\n+[[autodoc]] TextNetImageProcessorFast\n+ - preproces... | 2025-08-11T15:44:31 |
nodejs/node | cdcb1b77379f780b7b187d711c44181dbd0a6e24 | d4c91f28148af8a6c1a95392e5c88cb93d4b61c6 | deps: cherry-pick http_parser_set_max_header_size
This commit adds http_parser_set_max_header_size() to the
http-parser for overriding the compile time maximum HTTP
header size.
PR-URL: https://github.com/nodejs/node/pull/24811
Fixes: https://github.com/nodejs/node/issues/24692
Refs: https://github.com/nodejs/http-pa... | [
{
"path": "deps/http_parser/http_parser.c",
"patch": "@@ -25,6 +25,8 @@\n #include <string.h>\n #include <limits.h>\n \n+static uint32_t max_header_size = HTTP_MAX_HEADER_SIZE;\n+\n #ifndef ULLONG_MAX\n # define ULLONG_MAX ((uint64_t) -1) /* 2^64-1 */\n #endif\n@@ -137,20 +139,20 @@ do { ... | 2018-11-29T22:29:53 |
golang/go | ba7673069d9be4972a864023d74e9e0dd6a77b80 | 8854368cb076ea9a2b71c8b3c8f675a8e19b751c | cmd/compile: add required CONVIFACE nodes when translating OFUNCINST node
In CL 349614. we removed the early transformation code that
was needed to create the implicit CONVIFACE nodes.
Because the transformCall function is not called when translating OFUNCINST.
So we add in needed CONVIFACE nodes via typecheckaste().... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -1097,6 +1097,10 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\t\t// A call with an OFUNCINST will get transformed\n \t\t\t\t// in stencil() once we have created & attached the\n \t\t\t\t// instantiation to be called.\n+\t\t\t\t... | 2021-09-24T17:13:27 |
huggingface/transformers | 6b70d79b612a3b9b52b23dfc50cf85013e49efdd | 7dd82f307b6153427f9c1eade0bcf2a0df3719e8 | Fix repo consistency (#40077)
fix | [
{
"path": "src/transformers/models/glm4v_moe/modeling_glm4v_moe.py",
"patch": "@@ -1730,14 +1730,9 @@ def _repeat_interleave_samples(x, lengths, repeat_times):\n dict_to_expand[key], lengths=lengths, repeat_times=expand_size\n )\n elif key == \"sec... | 2025-08-11T13:26:22 |
vercel/next.js | 30dd0319ae85791287255abc67bef731254b76df | 7f943bb7fae1373e4172cd45552d4ce71dd46765 | build: Make `turbo-malloc` not depend on mimalloc on linux (vercel/turbo#4121)
### Description
This PR fixes the build failure caught at
https://github.com/vercel/next.js/pull/46909
### Testing Instructions
I reverted
https://github.com/vercel/turbo/blob/80516ff6f24cd1e83bc4e99a76bff9f0c9e2c42c
partially | [
{
"path": "crates/turbo-malloc/Cargo.toml",
"patch": "@@ -9,8 +9,8 @@ autobenches = false\n [lib]\n bench = false\n \n-[dependencies]\n-mimalloc = { version = \"0.1.32\", optional = true }\n+[target.'cfg(not(target_os = \"linux\"))'.dependencies]\n+mimalloc = { version = \"0.1.32\", features = [], optional ... | 2023-03-08T13:02:49 |
rust-lang/rust | 76316488e8667901d9926a4f4c3b2de30866d7bb | beaf15532abe888421ad6c6fa127f03a6d800656 | fix: `dbg_macro` fail to handle async coroutine desugar | [
{
"path": "clippy_lints/src/dbg_macro.rs",
"patch": "@@ -5,7 +5,7 @@ use clippy_utils::macros::{MacroCall, macro_backtrace};\n use clippy_utils::source::snippet_with_applicability;\n use rustc_data_structures::fx::FxHashSet;\n use rustc_errors::Applicability;\n-use rustc_hir::{Expr, ExprKind, Node};\n+use r... | 2025-05-31T07:44:36 |
electron/electron | df35700b940369289371cc92e4b66c47ddad6c76 | ea1b89c6993faee8e1eea218e89eed0a82c60e57 | Style fixes
* Use under_score for variable names in C++
* Use const& when possible
* Line length <= 80 | [
{
"path": "atom/browser/api/atom_api_window.cc",
"patch": "@@ -249,8 +249,8 @@ bool Window::IsFullscreen() {\n return window_->IsFullscreen();\n }\n \n-void Window::SetAspectRatio(double aspectRatio, gfx::Size extraSize) {\n- window_->SetAspectRatio(aspectRatio, extraSize);\n+void Window::SetAspectRatio(... | 2015-07-23T02:07:58 |
nodejs/node | 67f95825e5ad3f80d007613df8b21f4f2819c635 | a76750b49e70fbf32711d68608db3e320f19b359 | src: handle empty Maybe in uv binding initialize
This can fail when terminating a Worker that loads
the `uv` binding at the same time.
Refs: https://github.com/nodejs/node/pull/25061#issuecomment-447648475
Fixes: https://github.com/nodejs/node/issues/25134
PR-URL: https://github.com/nodejs/node/pull/25079
Reviewed-By... | [
{
"path": "src/uv.cc",
"patch": "@@ -81,9 +81,11 @@ void Initialize(Local<Object> target,\n OneByteString(isolate, #name), \\\n OneByteString(isolate, msg) \\\n }; ... | 2018-12-17T01:22:35 |
golang/go | 8854368cb076ea9a2b71c8b3c8f675a8e19b751c | d60ad1e068263832c711aaf17b6ccb1b7f71b000 | cmd/compile: deal with blank nodes with typeparam type during stenciling
Deal correctly with a blank local variable with type param type. This is
a special case, because a blank local variable is not in the fn.Dcl
list. In this case, we must explicitly create a new blank node with the
correct substituted type, so we h... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -912,6 +912,12 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\tif v := subst.ts.Vars[x.(*ir.Name)]; v != nil {\n \t\t\t\treturn v\n \t\t\t}\n+\t\t\tif ir.IsBlank(x) {\n+\t\t\t\t// Special case, because a blank local variable is\n... | 2021-09-24T15:57:06 |
huggingface/transformers | 480653d27164f5b7953c227a74c8fb81dd3154fb | 502f253e20ce82f839f972fa334e80df4af57c6a | fix: move super().__init__ after vision_config init in Mistral3Config (#40063)
fix: move super().__init__ after vision_config init in Mistral3Config (#40062) | [
{
"path": "src/transformers/models/mistral3/configuration_mistral3.py",
"patch": "@@ -85,7 +85,6 @@ def __init__(\n spatial_merge_size=2,\n **kwargs,\n ):\n- super().__init__(**kwargs)\n self.image_token_index = image_token_index\n self.projector_hidden_act = proje... | 2025-08-11T07:21:54 |
nodejs/node | 240065fd8bef51e55a4f65fbe54d7cfc8b98cd40 | 0f58ae392b0f90a64dde5ca48c3937bf5d586214 | test: verify input flags
This makes sure all required flags are passed through to the test.
If that's not the case an error is thrown to inform the user what
flag is missing.
PR-URL: https://github.com/nodejs/node/pull/24876
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "test/common/index.js",
"patch": "@@ -45,6 +45,44 @@ const isMainThread = (() => {\n }\n })();\n \n+// Check for flags. Skip this for workers (both, the `cluster` module and\n+// `worker_threads`) and child processes.\n+if (process.argv.length === 2 &&\n+ isMainThread &&\n+ module.parent &... | 2018-12-06T15:52:33 |
golang/go | 7e4fb8b3ef9774e58f90359f51e89ac5103d388d | cfd0868fc3252e349b11066ed300c389d4495587 | cmd/go: make 'go mod why -m' work in inconsistent, pruned module
'go mod why -m' works by listing modules matching command line
arguments, then loading "all" packages and finding which of the listed
modules provide packages imported by the main module.
If go.mod is inconsistent (that is, a requirement has a lower ver... | [
{
"path": "src/cmd/go/internal/modcmd/why.go",
"patch": "@@ -12,8 +12,6 @@ import (\n \t\"cmd/go/internal/base\"\n \t\"cmd/go/internal/imports\"\n \t\"cmd/go/internal/modload\"\n-\n-\t\"golang.org/x/mod/module\"\n )\n \n var cmdWhy = &base.Command{\n@@ -90,19 +88,19 @@ func runWhy(ctx context.Context, cmd *... | 2021-09-24T17:46:09 |
vercel/next.js | 292f65f6d39c047d5bf0344f565d22e69ee64924 | 8b50b80cdefd7bc4bd425d4becbec3de9e817fa2 | Fix unexpected hoist meta tags by react in app dir (#46917)
### Bug Fix
Update vendor react to fix the unexpected hoist tags issue
x-ref: https://github.com/facebook/react/pull/26256
* Fixes #42648
* Closes NEXT-655
* tests added | [
{
"path": "package.json",
"patch": "@@ -191,11 +191,11 @@\n \"random-seed\": \"0.3.0\",\n \"react\": \"18.2.0\",\n \"react-17\": \"npm:react@17.0.2\",\n- \"react-builtin\": \"npm:react@18.3.0-next-49f741046-20230305\",\n+ \"react-builtin\": \"npm:react@18.3.0-next-703c67560-20230307\",\n ... | 2023-03-08T11:34:51 |
rust-lang/rust | 17352e6937fde53c4f75dfd8600ecff4f1077ca2 | 31ee8400004dd9850fa11cce311e412ceadd7062 | Note ref expr being cast when encounter NonScalar cast error
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn> | [
{
"path": "compiler/rustc_hir_typeck/src/cast.rs",
"patch": "@@ -408,6 +408,16 @@ impl<'a, 'tcx> CastCheck<'tcx> {\n self.expr_ty,\n fcx.ty_to_string(self.cast_ty)\n );\n+\n+ if let Ok(snippet) = fcx.tcx.sess.source_map().span_to_snippet... | 2025-05-09T07:30:16 |
huggingface/transformers | 3124d1b4395f52956497639d79da90565632818d | 1372a5b8c4e3349ca69ce5f379dbc67b2442d26c | [qwen-vl] fix beam search with videos (#39726)
* fix
* fix copies | [
{
"path": "src/transformers/models/glm4v/modeling_glm4v.py",
"patch": "@@ -1614,14 +1614,9 @@ def _repeat_interleave_samples(x, lengths, repeat_times):\n dict_to_expand[key], lengths=lengths, repeat_times=expand_size\n )\n elif key == \"second_per_... | 2025-08-11T07:21:04 |
electron/electron | 6656afd57f70a06a71107a92d4848ad6c6a98d98 | d0c61766409f5b23280142b06a34c15e462e6dcd | fix bug with computing the case where we should constrain via height | [
{
"path": "atom/browser/native_window_mac.mm",
"patch": "@@ -114,8 +114,8 @@ - (NSSize)windowWillResize:(NSWindow *)sender toSize:(NSSize)frameSize {\n newSize.height = roundf(((newSize.width - extraWidthPlusFrame) / interiorContentAspectRatio) + extraHeightPlusFrame);\n }\n else {\n- ... | 2015-07-17T14:25:30 |
golang/go | cfd0868fc3252e349b11066ed300c389d4495587 | c94543b85fe6f41dc3bc1725f928c6ed98d8d72c | cmd/compile: fix delayTransform condition
The delayTransform only checks whether ir.CurFunc is generic function or
not. but when compiling a non-generic closure inside a generic function,
we also want to delay the transformation, which delayTransform fails to
detect, since when ir.CurFunc is the closure, not the top l... | [
{
"path": "src/cmd/compile/internal/noder/expr.go",
"patch": "@@ -168,7 +168,7 @@ func (g *irgen) expr0(typ types2.Type, expr syntax.Expr) ir.Node {\n \t\t\tif index.Op() != ir.OTYPE {\n \t\t\t\t// This is just a normal index expression\n \t\t\t\tn := Index(pos, g.typ(typ), g.expr(expr.X), index)\n-\t\t\t\t... | 2021-09-24T16:11:18 |
vercel/next.js | 8b50b80cdefd7bc4bd425d4becbec3de9e817fa2 | bfc3849b1fbca35ccdb9a3bd71c1bf5a457439ae | eslint rule for script strategy should work properly in `app/` (#46609)
fixes https://github.com/vercel/next.js/issues/46549
The docs are wrong for now, this limitation is just in `pages/`, you can
use it anywhere in `app/`.
Since `app/` is still not stable we will emit that warning in all files
outside of `ap... | [
{
"path": "packages/eslint-plugin-next/src/rules/no-before-interactive-script-outside-document.ts",
"patch": "@@ -4,6 +4,11 @@ import * as path from 'path'\n const url =\n 'https://nextjs.org/docs/messages/no-before-interactive-script-outside-document'\n \n+const startsWithUsingCorrectSeparators = (str: s... | 2023-03-08T10:28:52 |
huggingface/transformers | 1372a5b8c4e3349ca69ce5f379dbc67b2442d26c | 99c747539e07b2e141cb5f13961b72108e9dc864 | fix: resolve triton version check compatibility on windows (#39986)
* fix: resolve triton version check compatibility on windows
* style: remove trailing space
* fix: fix typo
---------
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> | [
{
"path": "src/transformers/utils/import_utils.py",
"patch": "@@ -78,9 +78,14 @@ def _is_package_available(pkg_name: str, return_version: bool = False) -> Union[\n package_exists = False\n elif pkg_name == \"triton\":\n try:\n- package_versi... | 2025-08-11T06:53:19 |
nodejs/node | 728b155870b69a83b806d8bee67aeb0fd0a9b2dd | e1ab457490925ddbf9f234973c4338bd0690acb5 | deps: upgrade to libuv 1.24.1
PR-URL: https://github.com/nodejs/node/pull/25078
Fixes: https://github.com/nodejs/node/issues/24521
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> | [
{
"path": "deps/uv/.gitignore",
"patch": "@@ -42,7 +42,7 @@ Makefile.in\n /android-toolchain\n \n /out/\n-/build/gyp\n+/build/\n \n /test/.libs/\n /test/run-tests",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "deps/uv/AUTHORS",
"patch": "@@ -356,3 +356,9 @@ hit... | 2018-12-16T19:18:16 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.