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 | 042548b1fdba21e351368e9f3ecd93059d09083f | b9cae6f78f129bb3f1b3293da5375040f5c4f356 | cmd/compile: report type parameter error for methods only once
Move switch to enable method type parameters entirely
to the parser, by adding the mode AllowMethodTypeParams.
Ensure that the error messages are consistent.
Remove unnecessary code in the type checker.
Fixes #50317.
Change-Id: I4f3958722400bdb919efa4c49... | [
{
"path": "src/cmd/compile/internal/syntax/parser.go",
"patch": "@@ -760,7 +760,13 @@ func (p *parser) funcDeclOrNil() *FuncDecl {\n \t}\n \n \tf.Name = p.name()\n-\tf.TParamList, f.Type = p.funcType(\"\")\n+\n+\tcontext := \"\"\n+\tif f.Recv != nil && p.mode&AllowMethodTypeParams == 0 {\n+\t\tcontext = \"m... | 2022-01-06T18:58:30 |
huggingface/transformers | 266d3b05684ed5968c613f00b208909f03c72c0e | 8d6c4583bfa58230188fae074c91945e014e73c1 | Fix UnboundLocalError in RT-DETR loss computation (#42224)
* Fix UnboundLocalError in RT-DETR loss computation
Initialize auxiliary_outputs to None before conditional use to prevent
UnboundLocalError when config.auxiliary_loss is False.
Fixes the error:
UnboundLocalError: local variable 'auxiliary_outputs' referen... | [
{
"path": "src/transformers/loss/loss_rt_detr.py",
"patch": "@@ -447,6 +447,7 @@ def RTDetrForObjectDetectionLoss(\n outputs_loss = {}\n outputs_loss[\"logits\"] = logits\n outputs_loss[\"pred_boxes\"] = pred_boxes\n+ auxiliary_outputs = None\n if config.auxiliary_loss:\n if denoi... | 2025-11-17T17:06:10 |
vercel/next.js | 5526ea504c01135dbcdee2c0c2a26de43252c108 | f9f0f335e649ac14b0ec10b1ebeeafd36bedaccc | Update invalid-new-link-with-extra-anchor.md (#50036)
Fix typo | [
{
"path": "errors/invalid-new-link-with-extra-anchor.md",
"patch": "@@ -12,7 +12,7 @@ Run the `new-link` codemod to automatically upgrade previous versions of Next.js\n npx @next/codemod new-link .\n ```\n \n-This will change `<Link><a id=\"link\">Home<a></Link>` to `<Link id=\"link\">Home</Link>`.\n+This w... | 2023-05-21T21:31:39 |
nodejs/node | 3aff26428ba0c937afeb022757b1bf067578639d | 7294897c77d1e5612efe49aad9f84809ba8d1592 | assert: loose deep equal should not compare symbol properties
This is the way it's currently documented and that seems appropriate
for loose equal assertions. The change was not intentional.
Fixes: https://github.com/nodejs/node/issues/27652
PR-URL: https://github.com/nodejs/node/pull/27653
Reviewed-By: Michaël Zass... | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -37,7 +37,8 @@ const {\n const {\n getOwnNonIndexProperties,\n propertyFilter: {\n- ONLY_ENUMERABLE\n+ ONLY_ENUMERABLE,\n+ SKIP_SYMBOLS\n }\n } = internalBinding('util');\n \n@@ -163,8 +164,9 @@ function innerDeepEqual(val1, val2, str... | 2019-05-11T20:49:36 |
huggingface/transformers | 8d6c4583bfa58230188fae074c91945e014e73c1 | 2cc9152da08dc9a2d1ac5e738b8eb764ca369717 | Fix processor test for glm (#42233)
fix arg name | [
{
"path": "tests/models/glm46v/test_processor_glm46v.py",
"patch": "@@ -215,7 +215,7 @@ def test_apply_chat_template_video_frame_sampling(self):\n add_generation_prompt=True,\n tokenize=True,\n return_dict=True,\n- video_fps=video_fps,\n+ fps=video_f... | 2025-11-17T16:36:30 |
golang/go | b9cae6f78f129bb3f1b3293da5375040f5c4f356 | 61014f00f24df8b144d9d235fe3e25ff64b96521 | testing: fix deadlock with t.Parallel in testing seed corpus
The c.startParallel channel on the testContext is stuck
in t.Parallel() because c.running starts at 1 for the main
fuzz parent test, and is causing a deadlock because it is
never released. It would normally be released by tRunner,
but needs to instead be rel... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_parallel.txt",
"patch": "@@ -13,6 +13,13 @@ go test -run=FuzzSeed\n ! go test -run=FuzzMutate -fuzz=FuzzMutate\n exists testdata/fuzz/FuzzMutate\n \n+# Testdata should now contain a corpus entry which will fail FuzzMutate.\n+# Run the test without fuzzing, set... | 2021-12-22T15:34:55 |
vercel/next.js | f9f0f335e649ac14b0ec10b1ebeeafd36bedaccc | aaf7fa5d257ed7d9e9201f324cd247f0b8ae82f8 | fix: use node copyFile for cross-platform support (#48740)
Fixes: #48712
Use node copyFile in the package.json script for cross-platform support
Co-authored-by: Steven <229881+styfle@users.noreply.github.com> | [
{
"path": "examples/cms-sanity/studio/copyEnv.js",
"patch": "@@ -0,0 +1,9 @@\n+const fs = require('fs')\n+\n+if (fs.existsSync('../.env')) {\n+ fs.copyFileSync('../.env', '.env.development')\n+} else if (fs.existsSync('../.env.local')) {\n+ fs.copyFileSync('../.env.local', '.env.development')\n+} else {\n... | 2023-05-21T21:23:49 |
nodejs/node | 7294897c77d1e5612efe49aad9f84809ba8d1592 | 402a793012b934447276eacb5052efe5cf041cc2 | test: use common.PORT instead of an extraneous variable
This test is not parallelized and so we can use the test commons PORT
variable.
Refs: https://github.com/nodejs/node/pull/27565#discussion_r281000162
PR-URL: https://github.com/nodejs/node/pull/27565
Fixes: https://github.com/nodejs/node/issues/27341
Reviewed-B... | [
{
"path": "test/internet/test-dgram-connect.js",
"patch": "@@ -5,17 +5,15 @@ const { addresses } = require('../common/internet');\n const assert = require('assert');\n const dgram = require('dgram');\n \n-const PORT = 12345;\n-\n const client = dgram.createSocket('udp4');\n-client.connect(PORT, addresses.IN... | 2019-05-05T01:28:32 |
huggingface/transformers | 2cc9152da08dc9a2d1ac5e738b8eb764ca369717 | 8637f6e7ae1e9c901cae7f1d2db9d33d63af72a2 | FIX Broken PEFT adapter loading (#42187)
* FIX Broken PEFT adapter loading
For some time now, loading PEFT adapters directly with transformers is
broken when using revisions or subfolders.
To check, run:
RUN_SLOW=1 pytest tests/peft_integration/test_peft_integration.py -k
test_peft_from_pretrained_hub_kwargs
This ... | [
{
"path": "src/transformers/integrations/peft.py",
"patch": "@@ -654,17 +654,18 @@ def maybe_load_adapters(\n token_from_adapter_kwargs = adapter_kwargs.pop(\"token\", None)\n \n if _adapter_model_path is None:\n+ peft_kwargs = adapter_kwargs.copy()\n+ for arg_name in (\"cache_dir\", \... | 2025-11-17T15:02:57 |
nodejs/node | 402a793012b934447276eacb5052efe5cf041cc2 | b6bfc193788b1838bee73d584fe089e1104b9f88 | test: move dgram invalid host test to internet tests
This moves a dgram test from `parallel` to `internet` because it relies
on a DNS request.
In certain cases, ISPs hijack invalid IETF-reserved invalid names which
causes a false negative failure.
Fixes: https://github.com/nodejs/node/issues/27341
PR-URL: https://gi... | [
{
"path": "test/internet/test-dgram-connect.js",
"patch": "@@ -0,0 +1,21 @@\n+'use strict';\n+\n+const common = require('../common');\n+const { addresses } = require('../common/internet');\n+const assert = require('assert');\n+const dgram = require('dgram');\n+\n+const PORT = 12345;\n+\n+const client = dgra... | 2019-05-04T17:55:31 |
golang/go | 61014f00f24df8b144d9d235fe3e25ff64b96521 | 2bfa6ef63d3cfa89f46cc5f6708c1078f15fb875 | go/types, types2: implement field access for struct structural constraints
This change implements field the access p.f where the type of p
is a type parameter with a structural constraint that is a struct
with a field f. This is only the fix for the type checker. The
compiler will need a separate CL.
This makes the b... | [
{
"path": "src/cmd/compile/internal/types2/lookup.go",
"patch": "@@ -43,7 +43,7 @@ import (\n //\tthe method's formal receiver base type, nor was the receiver addressable.\n //\n func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {\n-\t// M... | 2022-01-05T23:46:31 |
vercel/next.js | aaf7fa5d257ed7d9e9201f324cd247f0b8ae82f8 | a8621c7bb2f913ab378825f9b65e562be0b35974 | Update app-static-to-dynamic-error.md (#50085)
spelling error | [
{
"path": "errors/app-static-to-dynamic-error.md",
"patch": "@@ -10,7 +10,7 @@ This is a hard error by default as a path generated statically can't switch betw\n \n Prevent usage of these dynamic server values conditionally which can cause the static/dynamic mode of the page to differ between build time and... | 2023-05-21T19:38:22 |
electron/electron | fded8d80b118fa39cb5fd225e4412434f0bb31ee | 2b406ccaf751bb2541b1924aae8204863bab6d4f | docs: Remove unnecessary "properties: " suffix | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -458,7 +458,7 @@ Returns a boolean, whether the window is in fullscreen mode.\n * `aspectRatio` The aspect ratio we want to maintain for some portion of the\n content view.\n * `extraSize` Object (optional) - The extra size not to be included while\n-main... | 2016-02-16T04:11:05 |
huggingface/transformers | 47227f477532e8ff6dd3290dc6b9e0e38aef303b | 7f9f4d9cc63a3e8a03d87ae178eb946cf8879fc1 | Add prefix sharing to continuous batching (#42094)
* Fix a bug in the CB memory calcuation
* Nit in example
* Replace _free_blocks with a proper object BlockManager
* Removed dead code
* Added hasing mechanism (wip)
* Added de-duplication
* Add de-initialization mechnaism
* Add prefix detection
* Ensure we alw... | [
{
"path": "examples/pytorch/continuous_batching.py",
"patch": "@@ -17,6 +17,7 @@\n import json\n import os\n import time\n+from itertools import cycle\n from typing import Optional\n \n import datasets\n@@ -29,42 +30,32 @@\n from transformers.generation.continuous_batching.requests import logger\n \n \n-# M... | 2025-11-17T12:20:15 |
nodejs/node | c9bdc49e01a67d16caf48763c42823046b37a786 | 1df3080af393a338df4cfbb56b442fe4b8345495 | src: fix warnings about redefined BSWAP macros
PR-URL: https://github.com/nodejs/node/pull/27631
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/util-inl.h",
"patch": "@@ -27,6 +27,18 @@\n #include <cstring>\n #include \"util.h\"\n \n+// These are defined by <sys/byteorder.h> or <netinet/in.h> on some systems.\n+// To avoid warnings, undefine them before redefining them.\n+#ifdef BSWAP_2\n+# undef BSWAP_2\n+#endif\n+#ifdef BSWAP_4\n+#... | 2019-05-10T18:44:38 |
huggingface/transformers | 7f9f4d9cc63a3e8a03d87ae178eb946cf8879fc1 | 462beff5c3400ac4e5ae69eebb82bb10995d91d2 | Fix TP plans for MoE models (#42236)
* start
* more fixes | [
{
"path": "src/transformers/models/deepseek_v2/configuration_deepseek_v2.py",
"patch": "@@ -127,8 +127,9 @@ class DeepseekV2Config(PreTrainedConfig):\n \"layers.*.self_attn.q_b_proj\": \"colwise\",\n \"layers.*.self_attn.kv_b_proj\": \"colwise\",\n \"layers.*.self_attn.o_proj\": \"ro... | 2025-11-17T11:43:59 |
vercel/next.js | 77a3172b8e3e66ac1e65ed88e72763f062f6c775 | 804ca09383f1a5572e927482f267e5be2f136963 | feat(turbopack): initial sass-loader support (#49882)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contr... | [
{
"path": "packages/next-swc/crates/next-core/src/lib.rs",
"patch": "@@ -32,6 +32,7 @@ pub mod pages_structure;\n pub mod router;\n pub mod router_source;\n mod runtime;\n+mod sass;\n mod transform_options;\n pub mod url_node;\n mod util;",
"additions": 1,
"deletions": 0,
"language": "Rust"
},... | 2023-05-20T00:38:12 |
golang/go | 2bfa6ef63d3cfa89f46cc5f6708c1078f15fb875 | c5540e53b1f692a8c977fd1e4ee0915eea66f999 | go/types, types2: remove unused code in lookupFieldOrMethod
The underlying type of a type parameter is an interface,
so we don't need a special case for type parameters anymore.
Simply share the (identical) code for interfaces.
Adjust code in types.NewMethodSet accordingly.
No functional difference.
Preparation for ... | [
{
"path": "src/cmd/compile/internal/types2/lookup.go",
"patch": "@@ -82,7 +82,7 @@ func lookupFieldOrMethod(T Type, addressable, checkFold bool, pkg *Package, name\n \n \ttyp, isPtr := deref(T)\n \n-\t// *typ where typ is an interface has no methods.\n+\t// *typ where typ is an interface (incl. a type param... | 2022-01-05T05:01:21 |
electron/electron | 367a3524b9686791d5b19e3aab2181e4ebce4035 | 1232a285e68bf31fdc6d8f7d50ccd91a3ed35550 | docs: fix a minor typo
Remove extra `will` | [
{
"path": "docs/api/content-tracing.md",
"patch": "@@ -155,7 +155,7 @@ called.\n * `eventName` String\n * `callback` Function\n \n-`callback` will will be called every time the given event occurs on any\n+`callback` will be called every time the given event occurs on any\n process.\n \n ### `contentTracing.... | 2016-02-16T02:21:14 |
nodejs/node | ef51cc8ac937ac44bfe8b8ec000b7f04f170abd5 | 6be5c3bdae06d20b3daaa759d93e4062c25319fc | module: fix createRequireFromPath() slash logic
The trailing slash detection logic in createRequireFromPath()
seemed slightly incorrect. This commit reworks the logic.
PR-URL: https://github.com/nodejs/node/pull/27634
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Rev... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -838,7 +838,7 @@ Module.runMain = function() {\n function createRequireFromPath(filename) {\n // Allow a directory to be passed as the filename\n const trailingSlash =\n- filename.endsWith(path.sep) || path.sep !== '/' && filename.endsWith(... | 2019-05-10T00:25:28 |
golang/go | c5540e53b1f692a8c977fd1e4ee0915eea66f999 | 10f1ed131cd2cfb5ac4d9aa09888deb1bac6e921 | go/types, types2: ensure that signature type bounds are interfaces
Do this by running verification for instantiated signatures
later, after the delayed type parameter set-up had a chance
to wrap type bounds in implicit interfaces where needed.
Fixes #50450
Change-Id: If3ff7dc0be6af14af854830bfddb81112ac575cb
Reviewe... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -74,17 +74,21 @@ func (check *Checker) instantiateSignature(pos syntax.Pos, typ *Signature, targs\n \n \tinst := check.instance(pos, typ, targs, check.bestContext(nil)).(*Signature)\n \tassert(len(xlist) <= len(targs))\n-\ttparams := typ.Type... | 2022-01-05T20:25:43 |
vercel/next.js | 347da42eb1cadc2220867948ad4fb0f1961d0ffa | 7450ab41df53a42057484c1fff6bffb36478175d | Add optional generic parameter to NextResponse (#47526)
Fixes #45943
### What?
Allow for type checking the return type of a Route Handler in the `app/`
directory:
[TypeScript
Playground](https://www.typescriptlang.org/play?#code/MYewdgzgLgBAkgOQCoFEBKCCCAZAyjAXhlwE8BbAIxABsAKAcgEswoBTAJzAENqZ3WIAB3ARW9AJQAo... | [
{
"path": "packages/next/src/server/web/spec-extension/response.ts",
"patch": "@@ -26,10 +26,11 @@ function handleMiddlewareField(\n }\n }\n \n-export class NextResponse extends Response {\n+export class NextResponse<Body = unknown> extends Response {\n [INTERNALS]: {\n cookies: ResponseCookies\n ... | 2023-05-19T21:40:06 |
rust-lang/rust | 7a70f642d3e91a967247ab660bf30e574ce75cca | 99b18d6c5062449db8e7ccded4cb69b555a239c3 | Fix RwLock::try_write documentation for WouldBlock condition | [
{
"path": "library/std/src/sync/poison/rwlock.rs",
"patch": "@@ -481,7 +481,7 @@ impl<T: ?Sized> RwLock<T> {\n /// in the returned error.\n ///\n /// This function will return the [`WouldBlock`] error if the `RwLock` could\n- /// not be acquired because it was already locked exclusively.\n+ ... | 2025-06-26T10:03:43 |
huggingface/transformers | 462beff5c3400ac4e5ae69eebb82bb10995d91d2 | 66d57110f089789ae285cc9d54d3bf051123246b | Fix initialization guard for pytest (#42234)
add copy | [
{
"path": "src/transformers/initialization.py",
"patch": "@@ -179,7 +179,7 @@ def guard_torch_init_functions():\n # something like `from torch.nn.init import xavier_uniform_` in their internals (e.g in torch.nn.modules,\n # where MultiHeadAttention lives), so the function name is bin... | 2025-11-17T10:07:16 |
vercel/next.js | 3558208df31982b28122aa864a61cc295897054c | 702eb17638c34d80f6896e1c66776db5c028a064 | Add `x-forwarded-*` headers to turbopack renders (#50012)
This PR forwards the [new
`ServerInfo`](https://github.com/vercel/turbo/pull/5018) struct to
Turbopack's rendering processes, allowing it to initialize the
requesting headers with the `x-forwarded-*` headers. These headers, and
`x-forwarded-proto` in partic... | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/app-renderer.tsx",
"patch": "@@ -25,7 +25,7 @@ import type { RenderOpts } from 'next/dist/server/app-render/types'\n \n import { renderToHTMLOrFlight } from 'next/dist/server/app-render/app-render'\n import { RSC_VARY_HEADER } from 'next/dist/client... | 2023-05-19T19:57:02 |
golang/go | 10f1ed131cd2cfb5ac4d9aa09888deb1bac6e921 | ed84a8357c0107dedc42c9658ae9b020777b1bb7 | time: skip TestTimerModifiedEarlier on plan9/arm
This test is observed to be flaky on the plan9-arm builder.
Skip it on that platform until it can be diagnosed and fixed.
For #50470
Change-Id: If626af426d856c377e00ac5baaca52899456556e
Reviewed-on: https://go-review.googlesource.com/c/go/+/375934
Trust: Bryan Mills <... | [
{
"path": "src/time/sleep_test.go",
"patch": "@@ -7,6 +7,7 @@ package time_test\n import (\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/testenv\"\n \t\"math/rand\"\n \t\"runtime\"\n \t\"strings\"\n@@ -531,6 +532,10 @@ func TestZeroTimer(t *testing.T) {\n // Test that rapidly moving a timer earlier doesn't caus... | 2022-01-06T16:59:09 |
electron/electron | 7c7e6ffc77c8b074949c2e0f7422db1db5c21c68 | 18f31d7db90a721a9dccea21d988ffc3ecf3ca84 | Fix broken links in desktop-environment-integration.md
Close #4404. | [
{
"path": "docs/tutorial/desktop-environment-integration.md",
"patch": "@@ -294,15 +294,15 @@ window.setRepresentedFilename('/etc/passwd');\n window.setDocumentEdited(true);\n ```\n \n-[addrecentdocument]: ../api/app.md#appaddrecentdocumentpath\n-[clearrecentdocuments]: ../api/app.md#appclearrecentdocuments... | 2016-02-15T08:36:01 |
nodejs/node | 6be5c3bdae06d20b3daaa759d93e4062c25319fc | 9c5ded31897fabc40be073ff4bfab5c7fd8f2389 | doc: add call-once note to napi_queue_async_work
Add note to `napi_queue_async_work()` indicating that, upon successful
return, it must not be called again with the same work item.
Fixes: https://github.com/nodejs/node/issues/27217
PR-URL: https://github.com/nodejs/node/pull/27582
Reviewed-By: Franziska Hinkelmann <f... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -4060,7 +4060,8 @@ napi_status napi_queue_async_work(napi_env env,\n Returns `napi_ok` if the API succeeded.\n \n This API requests that the previously allocated work be scheduled\n-for execution.\n+for execution. Once it returns successfully, this API must not be ... | 2019-05-06T14:56:58 |
rust-lang/rust | 625f8ee5dc9341320cbb221cc6a9c133bd0c6ea4 | bc4376fa73b636eb6f2c7d48b1f731d70f022c4b | Fix documentation of validate_operand
The name of the parameter changed from `op` to `val` in cbdcbf0d6a586792c5e0a0b8965a3179bac56120 | [
{
"path": "compiler/rustc_const_eval/src/interpret/validity.rs",
"patch": "@@ -1364,8 +1364,8 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n })\n }\n \n- /// This function checks the data at `op` to be const-valid.\n- /// `op` is assumed to cover valid memory if it is an indirect op... | 2025-06-26T09:15:55 |
huggingface/transformers | 66d57110f089789ae285cc9d54d3bf051123246b | 8598421b5120a6a57efe9f57fbfda9bfed29a4dc | GLM-V update with new processor (#42122)
* init
* update
* add
* Update video_processing_glm46v.py
* update doc
* Update modular_glm46v.py
* 2
* Update processing_glm46v.py
* 21
* Update check_repo.py
* Update check_repo.py
* Update test_processor_glm46v.py
* Update modeling_auto.py
* update
* Update glm... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1066,6 +1066,8 @@\n title: Gemma3n\n - local: model_doc/git\n title: GIT\n+ - local: model_doc/glm46v\n+ title: Glm46V\n - local: model_doc/glm4v\n title: glm4v\n - local: model_doc/glm4v_moe",
"... | 2025-11-15T08:44:07 |
golang/go | ed84a8357c0107dedc42c9658ae9b020777b1bb7 | 7a3a2b18ff3b8591eba18b730da7f84751bbfdc5 | test: add test of incorrect gofrontend error
For #50439
Change-Id: Ifad6e6f8de42121c695b5a4dc56e0f6606e2917e
Reviewed-on: https://go-review.googlesource.com/c/go/+/375796
Trust: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by... | [
{
"path": "test/fixedbugs/issue50439.go",
"patch": "@@ -0,0 +1,13 @@\n+// compile\n+\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+var data []struct {\n+\tF string `tag`... | 2022-01-06T04:22:15 |
vercel/next.js | 702eb17638c34d80f6896e1c66776db5c028a064 | d381d581cf364c25a332921956f913dd048d7852 | Fix client references extraction of CJS exports analysis (#50059)
client refs are not correctly extracted as we're using regex to get the exports names from cjs file. The regex was extracting some bad names from the code source, this PR fixes the regex to make sure they extract the correct content
Fixes NEXT-1213 | [
{
"path": "packages/next/src/build/webpack/loaders/get-module-build-info.ts",
"patch": "@@ -4,6 +4,26 @@ import type {\n } from '../../analysis/get-page-static-info'\n import { webpack } from 'next/dist/compiled/webpack/webpack'\n \n+export function extractCjsExports(source: string) {\n+ // In case the cli... | 2023-05-19T19:42:46 |
rust-lang/rust | 3d1cee53244dce3a9e58e04c87ba8d02d964f79f | 287d9afce729dd81fa9abfa860af31656d9c5e16 | Move mixed export_name/no_mangle check to check_attr.rs and improve the error
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com> | [
{
"path": "compiler/rustc_codegen_ssa/messages.ftl",
"patch": "@@ -205,11 +205,6 @@ codegen_ssa_missing_features = add the missing features in a `target_feature` at\n codegen_ssa_missing_query_depgraph =\n found CGU-reuse attribute but `-Zquery-dep-graph` was not specified\n \n-codegen_ssa_mixed_export_... | 2025-06-24T21:05:45 |
nodejs/node | 9c5ded31897fabc40be073ff4bfab5c7fd8f2389 | dcc5e51e1cb4e102effd7fc515681446b07e428e | module: add missing space in error message
PR-URL: https://github.com/nodejs/node/pull/27627
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Luigi Pinca <luig... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -853,7 +853,7 @@ function createRequireFromPath(filename) {\n \n Module.createRequireFromPath = createRequireFromPath;\n \n-const createRequireError = 'must be a file URL object, file URL string, or' +\n+const createRequireError = 'must be a file ... | 2019-05-09T20:21:19 |
golang/go | 7a3a2b18ff3b8591eba18b730da7f84751bbfdc5 | f0099106254e288db62de3e3b030915af7decc25 | go/types, types2: eagerly check that constraints are not type params
As a result of the change to the underlying of a type parameter to be
its constraint interface, we had couple inaccuracies that combined to
cause an infinite recursion when type checking the invalid type
parameter list [A A].
- We deferred tpar.ifac... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -657,33 +657,24 @@ func (check *Checker) collectTypeParams(dst **TypeParamList, list []*syntax.Fiel\n \t// Keep track of bounds for later validation.\n \tvar bound Type\n \tvar bounds []Type\n-\tvar posers []poser\n \tfor i, f := range list {... | 2021-12-23T15:33:17 |
electron/electron | a141d6b3d474fef058f5c152bb35e52597242926 | 09b658b50ad98aa63819bc679180178946126d41 | spelling fixes and americanisms | [
{
"path": "docs/api/app.md",
"patch": "@@ -246,7 +246,7 @@ returning `false` in the `beforeunload` event handler.\n \n ### `app.hide()` _OS X_\n \n-Hides all application windows without minimising them.\n+Hides all application windows without minimizing them.\n \n ### `app.show()` _OS X_\n \n@@ -398,7 +398,... | 2016-02-15T05:51:20 |
vercel/next.js | d381d581cf364c25a332921956f913dd048d7852 | 26ea9c63336ad24c0b100c1fc637e97d77a425e0 | Fix types of cookies() (#50052)
As explained in the comments, the `cookies()` API is a mix of request and response cookies. For `.get()` methods, we want to return the request cookie if it exists. For mutative methods like `.set()`, we return the response cookie type instead.
fix #50049
fix NEXT-1211 | [
{
"path": "packages/next/src/server/web/spec-extension/adapters/request-cookies.ts",
"patch": "@@ -21,11 +21,18 @@ export class ReadonlyRequestCookiesError extends Error {\n }\n }\n \n-export type ReadonlyRequestCookies = Omit<RequestCookies, 'clear' | 'delete'>\n+// The `cookies()` API is a mix of reques... | 2023-05-19T19:02:16 |
rust-lang/rust | 9b4231dcd9c691a07e1507c7824c6d339716c6ab | 76118ec84ee5c1e865d10cd5d99c02878dd56ade | fix redudant closure broken fix | [
{
"path": "clippy_lints/src/redundant_closure_call.rs",
"patch": "@@ -5,9 +5,7 @@ use hir::Param;\n use rustc_errors::Applicability;\n use rustc_hir as hir;\n use rustc_hir::intravisit::{Visitor as HirVisitor, Visitor};\n-use rustc_hir::{\n- ClosureKind, CoroutineDesugaring, CoroutineKind, CoroutineSourc... | 2025-06-26T02:00:05 |
huggingface/transformers | 8598421b5120a6a57efe9f57fbfda9bfed29a4dc | 16c7afd06f70e1ab7a8bb2e19e33e5473297dc55 | Much more efficient and clear weight initialization and tie weights (#42191)
* everything untilo informer
* everything until perceiver
* all of them finally
* style
* replace by transformers init everywhere
* use relative import instead
* deprecated models
* style
* start contexts
* small fixes
* fix modular... | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -26,7 +26,6 @@\n from contextlib import contextmanager\n from dataclasses import dataclass, field\n from functools import partial\n-from types import MethodType\n from typing import TYPE_CHECKING, Any, Optional, Union\n \n import torch\n@@ -31... | 2025-11-14T23:34:40 |
nodejs/node | 618fcbd125c386b7bfb37cbc4dce12a694a4ee22 | 3309c856bcc88751ee3b4512f9a9b95fe903e361 | async_hooks: only disable promise hook if wanted
The promise hook has been disabled asynchronously in order to solve
issues when an async hook is disabled during a microtask.
This means that after scheduling the disable-promise-hook call,
attempts to enable it synchronously will later be unintentionally
overridden.
... | [
{
"path": "lib/internal/async_hooks.js",
"patch": "@@ -69,6 +69,7 @@ const active_hooks = {\n };\n \n const { registerDestroyHook } = async_wrap;\n+const { enqueueMicrotask } = internalBinding('task_queue');\n \n // Each constant tracks how many callbacks there are for any given step of\n // async execution... | 2019-05-06T22:33:59 |
golang/go | f0099106254e288db62de3e3b030915af7decc25 | da7891f6f36c48f2931ed916ed305330c06f9bd7 | cmd/compile/internal/types2: better error message for invalid range clause
Fixes #50372.
Change-Id: I8e4c0020dae42744cce016433e398e0b884bb044
Reviewed-on: https://go-review.googlesource.com/c/go/+/375475
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com> | [
{
"path": "src/cmd/compile/internal/types2/stmt.go",
"patch": "@@ -810,39 +810,49 @@ func (check *Checker) typeSwitchStmt(inner stmtContext, s *syntax.SwitchStmt, gu\n func (check *Checker) rangeStmt(inner stmtContext, s *syntax.ForStmt, rclause *syntax.RangeClause) {\n \t// scope already opened\n \n-\t// c... | 2022-01-04T23:13:33 |
rust-lang/rust | 0c0a4d559263cb56e96825be356b540d380d13d4 | 1eb2920318ca139fbc1a1b10f071775f7a49da4a | fix closure and refactor tooling code | [
{
"path": "clippy_lints/src/floating_point_arithmetic.rs",
"patch": "@@ -2,13 +2,12 @@ use clippy_utils::consts::Constant::{F32, F64, Int};\n use clippy_utils::consts::{ConstEvalCtxt, Constant};\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::{\n- eq_expr_value, get_parent_expr, ... | 2025-06-26T00:32:22 |
electron/electron | a69341f551e0078d843edab7e289f3c65b4db0d9 | 940c325e7f89f90e8151b9ed56734a03bea5e1d1 | Fix line length wrap
[ci skip] | [
{
"path": "docs-translations/fr-FR/README.md",
"patch": "@@ -1,11 +1,11 @@\n Vérifiez que vous utilisez la bonne version de la documentation.\n Le numéro de version devrait faire partie de l'URL de la page.\n-Si ce n'est pas le cas, vous utilisez probablement la documentation d'une branche\n-de développemen... | 2016-02-13T17:19:49 |
vercel/next.js | 26ea9c63336ad24c0b100c1fc637e97d77a425e0 | f0d0811a423d9674f9f89a06cfbb74e839f4a9b6 | Always defer close tags to be the suffix of body stream (#50056)
Currently the suffix logic is for pages so nothing happens in app dir. This PR changes it to **always** apply the `createSuffixStream(closeTag)` transform, to defer `</body></html>` to the end of the stream.
fix #48372
fix NEXT-1200 | [
{
"path": "packages/next/src/server/stream-utils/node-web-streams-helper.ts",
"patch": "@@ -296,7 +296,25 @@ export function createInlineDataStream(\n export function createSuffixStream(\n suffix: string\n ): TransformStream<Uint8Array, Uint8Array> {\n+ let foundSuffix = false\n+ const textDecoder = new... | 2023-05-19T18:25:04 |
huggingface/transformers | 16c7afd06f70e1ab7a8bb2e19e33e5473297dc55 | 309180f93a216afee998e955440c5da9fe5ebd89 | Update `test_dynamic_cache_exportability_multiple_run` (failing on torch 2.10 nightly) (#42212)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/utils/test_cache_utils.py",
"patch": "@@ -628,7 +628,7 @@ def test_dynamic_cache_exportability_multiple_run(self):\n past_key_values = res.past_key_values\n \n shapes = torch.export.ShapesCollection()\n- dyn = torch.export.Dim(\"seq\", max=512)\n+ dyn = torch.e... | 2025-11-14T15:09:03 |
nodejs/node | b2308339127488b12d79f4775f83e2afca459945 | f2a48c8245e93939987d2df1bfd5e9c42899b045 | lib: restore `global.module` after --eval code is run
PR-URL: https://github.com/nodejs/node/pull/27587
Fixes: https://github.com/nodejs/node/issues/27575
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: John-David Dalton <john.david.dalton@gmail.com>
Review... | [
{
"path": "lib/internal/process/execution.js",
"patch": "@@ -55,6 +55,7 @@ function evalScript(name, body, breakFirstLine, printResult) {\n const { kVmBreakFirstLineSymbol } = require('internal/util');\n \n const cwd = tryGetCwd();\n+ const origModule = global.module; // Set e.g. when called from the ... | 2019-05-06T22:44:08 |
golang/go | da7891f6f36c48f2931ed916ed305330c06f9bd7 | f300fc2d2c620feac4e7f9b6cf0125b92943d3c4 | net: synchronize instead of sleeping in TestDialParallelSpuriousConnection
The arbitrary sleep in this test is empirically not always long enough
on slower builders. However, we know the exact number of connections
that should be dialed: we can wait on that number in the dial hook
instead.
Fixes #34495
Change-Id: I5... | [
{
"path": "src/net/dial_test.go",
"patch": "@@ -429,22 +429,23 @@ func TestDialParallelSpuriousConnection(t *testing.T) {\n \t\treadDeadline = time.Now().Add(5 * time.Second)\n \t}\n \n-\tvar wg sync.WaitGroup\n-\twg.Add(2)\n+\tvar closed sync.WaitGroup\n+\tclosed.Add(2)\n \thandler := func(dss *dualStackSe... | 2022-01-05T16:13:27 |
rust-lang/rust | 05d3d17248d63314e9c1bef1c6380b53e2f141ea | 8cf5fad73d4e8f41863ecc3bcfa114eabc951faa | Fix suggestion spans inside macros for the `unused_must_use` lint | [
{
"path": "compiler/rustc_lint/src/unused.rs",
"patch": "@@ -183,6 +183,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {\n let mut op_warned = false;\n \n if let Some(must_use_op) = must_use_op {\n+ let span = expr.span.find_oldest_ancestor_in_same_ctxt();\n cx.e... | 2025-06-25T21:03:18 |
vercel/next.js | f0d0811a423d9674f9f89a06cfbb74e839f4a9b6 | 448b74291e40f888bfc82ebd9d306c08d67e98f2 | Fix default metadata is missing in root not-found (#50044)
* Adding default metadata to root not found under root layout
* Refactor the tests a bit, previously it only checks if the text existed in html, it actually exisits in flight response
Fixes #49979
Closes NEXT-1207 | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -76,6 +76,8 @@ import { appendMutableCookies } from '../web/spec-extension/adapters/request-coo\n \n export const isEdgeRuntime = process.env.NEXT_RUNTIME === 'edge'\n \n+const emptyLoaderTree: LoaderTree = ['', {}, {}]\n+\n export... | 2023-05-19T17:50:03 |
electron/electron | 2677dc68444398f20210291dfaf7349fc17dc48d | fa734d7824ae9bf1bae7fe0fad2e35fde40b1406 | Fix: add missing fragment in FAQ section URL | [
{
"path": "docs/tutorial/quick-start.md",
"patch": "@@ -48,7 +48,8 @@ communication between the main process and renderer process. There is also a\n [remote](../api/remote.md) module for RPC style communication.\n \n And finally there are different techniques [to share objects between web\n-pages](../faq/el... | 2016-02-12T12:50:15 |
huggingface/transformers | 309180f93a216afee998e955440c5da9fe5ebd89 | 8976ceb0510e139282050a1b12d9e6afb21bce35 | [`BLT`] Fix cache usage (#42188)
* fix
* properly
* fix tests | [
{
"path": "src/transformers/models/blt/modeling_blt.py",
"patch": "@@ -28,7 +28,7 @@\n import torch.nn.functional as F\n \n from ...activations import ACT2FN\n-from ...cache_utils import Cache, DynamicCache\n+from ...cache_utils import Cache, DynamicCache, EncoderDecoderCache\n from ...generation import Gen... | 2025-11-14T14:58:17 |
nodejs/node | 8b78fbd49e0f2642e6123bef0786ae14b0f38a63 | 56ab82e9106f87512f18a5c80be6cc0a26bda66a | test: test error when breakOnSigint is not a boolean for evaluate
PR-URL: https://github.com/nodejs/node/pull/27503
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> | [
{
"path": "test/parallel/test-vm-module-errors.js",
"patch": "@@ -250,12 +250,27 @@ async function checkExecution() {\n })();\n }\n \n+// Check for error thrown when breakOnSigint is not a boolean for evaluate()\n+async function checkInvalidOptionForEvaluate() {\n+ await assert.rejects(async () => {\n+ ... | 2019-04-30T20:48:38 |
golang/go | f300fc2d2c620feac4e7f9b6cf0125b92943d3c4 | b5bfaf410ad4dc329400b92a7818ffec5cd9ebb0 | runtime: crash on netbsd-arm64 when setcontext fails
Instead of exiting with status 16962 when we fail to call SYS_setcontext
in sigreturn, reference a null pointer and crash. Hopefully, this will
enable grabbing a core dump to debug.
Updates #42422
Change-Id: If02c14a0a37084351f3f00db3dc9766cb68ae4b8
Reviewed-on: h... | [
{
"path": "src/runtime/sys_netbsd_arm64.s",
"patch": "@@ -279,8 +279,8 @@ fail:\n TEXT sigreturn_tramp<>(SB),NOSPLIT,$-8\n \tMOVD\tg, R0\n \tSVC\t$SYS_setcontext\n-\tMOVD\t$0x4242, R0\t\t// Something failed, return magic number\n-\tSVC\t$SYS_exit\n+\tMOVD\t$0, R0\n+\tMOVD\tR0, (R0)\t\t// crash\n \n TEXT run... | 2022-01-06T11:27:57 |
huggingface/transformers | 8976ceb0510e139282050a1b12d9e6afb21bce35 | c01e711ee57e70af4fbf2d056411503ce49c80ec | Refactor check_auto_docstring using AST (#41432)
* refactor check_auto_docstring with AST
* use dataclass for ASTIndexes
* simplify and improve readability
* fix missing imports
* fix modular
* fix modular issues | [
{
"path": "src/transformers/models/glm4v/modeling_glm4v.py",
"patch": "@@ -1418,14 +1418,11 @@ def forward(\n pixel_values_videos: Optional[torch.FloatTensor] = None,\n image_grid_thw: Optional[torch.LongTensor] = None,\n video_grid_thw: Optional[torch.LongTensor] = None,\n- r... | 2025-11-14T14:57:08 |
vercel/next.js | 0800ea7eec339b4bb044c1b3728f6770bb26fba3 | 771141dcc9a1fc333302a8ba20cc02629014b675 | Error in next export when serverActions is enabled (#50039)
Reland #49959 as it was reverted in #50019
* Only error when runing `next export` or `output` is "export"
* Add e2e test
Closes NEXT-634 | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -3101,6 +3101,7 @@ export default async function build(\n \n const options: ExportOptions = {\n isInvokedFromCli: false,\n+ buildExport: false,\n nextConfig: config,\n hasAppDir,\n silent: tru... | 2023-05-19T15:53:21 |
electron/electron | 91c96559fa40e50e7c364bb7f0dafc594692390f | a2b0e30714dd4bcafed2326da8cb7aa743698c8f | Fixing the problem related to FrameSubscriber | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -1064,9 +1064,11 @@ void WebContents::BeginFrameSubscription(\n const FrameSubscriber::FrameCaptureCallback& callback) {\n const auto view = web_contents()->GetRenderWidgetHostView();\n if (view) {\n- scoped_ptr<FrameSubscriber> ... | 2016-02-12T01:18:13 |
nodejs/node | a608caa5ffb428994c4f508b426d25dae2dbda54 | ae749e7a29349675b15e6c13798de3f5c56e901c | module: improve resolve paths validation
This commit adds input validation to require.resolve()'s
paths option. Prior to this change, passing in a non-array
value lead to a misleading 'module not found' error.
Refs: https://github.com/nodejs/node/issues/27583
PR-URL: https://github.com/nodejs/node/pull/27613
Reviewe... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -53,6 +53,7 @@ const { compileFunction } = internalBinding('contextify');\n \n const {\n ERR_INVALID_ARG_VALUE,\n+ ERR_INVALID_OPT_VALUE,\n ERR_REQUIRE_ESM\n } = require('internal/errors').codes;\n const { validateString } = require('internal... | 2019-05-08T17:42:22 |
huggingface/transformers | c01e711ee57e70af4fbf2d056411503ce49c80ec | 082e3ff4a3cfaeffac38812a3a68e9a59e4d0a5a | Stop inheriting tests! (#42192)
* Stop inheriting tests!
* Just use a del instead
* fixup | [
{
"path": "tests/models/cohere2/test_modeling_cohere2.py",
"patch": "@@ -269,3 +269,6 @@ def test_generation_beyond_sliding_window(self, attn_implementation: str):\n output_text = tokenizer.batch_decode(out)\n \n self.assertEqual(output_text, EXPECTED_COMPLETIONS)\n+\n+\n+del CohereModelTest... | 2025-11-14T14:07:42 |
golang/go | b5bfaf410ad4dc329400b92a7818ffec5cd9ebb0 | 2b39d86344608423138b648b98157470d3809ee7 | doc: improve documentation for GOAMD64
The change clarifies in the release notes for go1.18 that the variable
is for compilation and references the microarchitecture description in
the Go Wiki,
https://golang.org/wiki/MinimumRequirements#amd64,
and references the same information in the output of go help
environment.
... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -143,11 +143,12 @@ <h2 id=\"ports\">Ports</h2>\n <h3 id=\"amd64\">AMD64</h3>\n \n <p><!-- CL 349595 -->\n- Go 1.18 introduces the new <code>GOAMD64</code> environment variable which selects\n- a version of the AMD64 architecture. Allowed values are <code>v1</code>... | 2021-12-15T10:37:36 |
vercel/next.js | 771141dcc9a1fc333302a8ba20cc02629014b675 | 1dcff1da62a999467f4827a817a5b671cba0242d | Server Actions: Fix member expr in closure captured values (#50020)
For static member expressions like `foo.bar`, we currently treat it as one whole Ident `foo.bar` and pass it over the `$$bound` array as one value. That causes a problem where the Ident inside the function body needs to be converted, because it can no... | [
{
"path": "packages/next-swc/crates/core/src/server_actions.rs",
"patch": "@@ -220,6 +220,12 @@ impl<C: Comments> ServerActions<C> {\n Some(action_ident.clone()),\n );\n \n+ if let BlockStmtOrExpr::BlockStmt(block) = &mut *a.body {\n+ block.visit_mut_wit... | 2023-05-19T15:05:59 |
huggingface/transformers | f78cadfc974469bc4d834fca73f6cafd75ee9473 | eddd51ec3d01232572b6ef7ca02f8a15c42c7839 | [`Pop2Piano`] Fix tied weights (#42193)
* fix
* try oh try
* change fix | [
{
"path": "src/transformers/models/pop2piano/configuration_pop2piano.py",
"patch": "@@ -122,6 +122,7 @@ def __init__(\n is_encoder_decoder=is_encoder_decoder,\n **kwargs,\n )\n+ self.tie_encoder_decoder = True # forcing it\n \n \n __all__ = [\"Pop2PianoConfig\"]",
... | 2025-11-14T11:54:33 |
nodejs/node | ae749e7a29349675b15e6c13798de3f5c56e901c | 10c5171d57b16b3f7dfbbcdedf6ad2f911eb4159 | tls: fix createSecureContext() cipher list filter
PR-URL: https://github.com/nodejs/node/pull/27614
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Jam... | [
{
"path": "lib/_tls_common.js",
"patch": "@@ -163,7 +163,8 @@ exports.createSecureContext = function createSecureContext(options) {\n // cipher suites all have a standard name format beginning with TLS_, so split\n // the ciphers and pass them to the appropriate API.\n const ciphers = (options.ciphers... | 2019-05-10T14:50:02 |
golang/go | 2b39d86344608423138b648b98157470d3809ee7 | 88cafe0f58cf7374722a2a98d8919c32bb8795e5 | cmd/go: add fuzzing coverage test
Adds a test script for fuzzing coverage instrumentation.
Fixes #48654
Change-Id: Ieea7b4146bd5581baae869441cc1c652dd7485f5
Reviewed-on: https://go-review.googlesource.com/c/go/+/375736
Trust: Katie Hockman <katie@golang.org>
Reviewed-by: Katie Hockman <katie@golang.org>
Trust: Rolan... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_cov.txt",
"patch": "@@ -0,0 +1,33 @@\n+# Test that coverage instrumentation is working. Without the instrumentation\n+# it is _extremely_ unlikely that the fuzzer would produce this particular\n+# input in any reasonable amount of time.\n+\n+[short] skip\n+[!f... | 2022-01-05T20:25:28 |
vercel/next.js | 1dcff1da62a999467f4827a817a5b671cba0242d | dd85daaf4e49454a6f05a87fca46c3e99658a155 | Pages Module Transition (#49962)
This serves to create the loader that will allow us to transition more
of the rendering logic into each of the bundled entrypoints. This only
applies to pages routes inside the `pages/` folder in the node
environment.
fix NEXT-985
---------
Co-authored-by: JJ Kasper <jj@jjs... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -52,6 +52,8 @@ import { EdgeFunctionLoaderOptions } from './webpack/loaders/next-edge-function-\n import { isAppRouteRoute } from '../lib/is-app-route-route'\n import { normalizeMetadataRoute } from '../lib/metadata/get-metadata-route'\n import { ... | 2023-05-19T14:45:18 |
electron/electron | 3adcaa7681fdff87186aa08689c2b3567aaa78cb | 9d6344704e7dc6316f6cdd6addfe8008f697fb90 | Fix electron binary relative path
The relative path for Electron's binary is Contents/MacOS/Electron | [
{
"path": "docs/tutorial/using-selenium-and-webdriver.md",
"patch": "@@ -49,7 +49,7 @@ var driver = new webdriver.Builder()\n .withCapabilities({\n chromeOptions: {\n // Here is the path to your Electron binary.\n- binary: '/Path-to-Your-App.app/Contents/MacOS/Atom',\n+ binary: '/Path-... | 2016-02-12T00:11:02 |
huggingface/transformers | eddd51ec3d01232572b6ef7ca02f8a15c42c7839 | 7607d80f7e584328e0e37ca93e661998aee69a4d | Fix checkpoint loading with DeepSpeed ZeRO3 (#42201)
fix checkpoint loading with DeepSpeed ZeRO3
Signed-off-by: Masahiro Tanaka <mtanaka@anyscale.com>
Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com> | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -4233,6 +4233,19 @@ def _load_pretrained_model(\n error_msgs = []\n \n if is_deepspeed_zero3_enabled() and not is_quantized:\n+ if state_dict is None:\n+ if checkpoint_files is None:\n+ ... | 2025-11-14T10:48:08 |
nodejs/node | 3b2633e0bf9f719e9496f59914e2a2ff4aa9a050 | 556de23dfbc829903f97b0a253ae71c1414fab13 | test: fix test-linux-perf flakiness
The new V8 seems to be optimizing the functions we use in this test
faster than before. Increasing the sampling frequency for Linux perf
fixes the issue.
PR-URL: https://github.com/nodejs/node/pull/27615
Refs: https://github.com/v8/v8/compare/7.4.288.21...7.4.288.27
Reviewed-By: Mi... | [
{
"path": "test/v8-updates/test-linux-perf.js",
"patch": "@@ -24,7 +24,7 @@ if (process.config.variables.node_shared)\n \n const perfArgs = [\n 'record',\n- '-F500',\n+ '-F999',\n '-g',\n '--',\n process.execPath,",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
}
] | 2019-05-09T17:12:16 |
golang/go | 002283eaca8335c4c1fb209f267bacf5afe6cf2c | 2c58bb2e428c1f587dc30817bc211570f6fd4793 | runtime: ensure that asmsyscall6 follow AIX stack convention
The function asmsyscall6 must follow AIX stack layout. It means
that its first local variable must be stored after its arguments
area, ie after offset 112.
Fixes #50185
Change-Id: I897731ddd2a9faad8218443a4c2f4b204ad7e173
Reviewed-on: https://go-review.goo... | [
{
"path": "src/runtime/sys_aix_ppc64.s",
"patch": "@@ -25,7 +25,12 @@ TEXT callCfunction<>(SB),\tNOSPLIT|NOFRAME,$0\n // stored in libcall_fn and store the results in libcall struture\n // Up to 6 arguments can be passed to this C function\n // Called by runtime.asmcgocall\n-// It reserves a stack of 288 by... | 2021-12-17T10:03:21 |
vercel/next.js | dd85daaf4e49454a6f05a87fca46c3e99658a155 | 66a0083235019314e3a9d3637507eb7ac330141d | test(turbopack): script to sync latest test lists (#50008)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For ... | [
{
"path": ".github/workflows/build_test_deploy.yml",
"patch": "@@ -828,7 +828,7 @@ jobs:\n NEXT_BINDINGS_BIN: /work/packages/next-swc/native/next-swc.linux-x64-gnu.node\n # Glob pattern to run specific tests with --turbo.\n NEXT_DEV_TEST_GLOB: '*'\n- NEXT_EXTERNAL_TESTS_FILTERS: /work... | 2023-05-19T07:10:29 |
huggingface/transformers | 32a58e31463e238c967207bf73772490c353551a | 6f6095e0cf509f7384d3ce0c1804013ef6cafd5f | 🚨 Delete deprecations with end-cycle in v4.xx and v5.0 (#41681)
* remove deprecations from v4
* delete those for v5
* delete these also
* fix tests
* add dummy test config
* fix copies
* SDPA raises warning but doesn't automatically change to eager
* max size can't be deleted, sadly
* oke, this should allow l... | [
{
"path": "docs/source/en/model_doc/qwen2_5_omni.md",
"patch": "@@ -136,7 +136,7 @@ inputs = processor.apply_chat_template(\n tokenize=True,\n return_dict=True,\n return_tensors=\"pt\",\n- video_fps=1,\n+ fps=1,\n \n # kwargs to be passed to `Qwen2-5-OmniProcessor`\n padding=True,\... | 2025-11-14T09:26:16 |
nodejs/node | 07e0395a814137060124e9262cf94eba84ced46e | 6f2bd9dcc3a9ed6cf509cdcd381c1c456f0bd3cb | src: refactor deprecated UVException usage in pipe-wrap.cc
PR-URL: https://github.com/nodejs/node/pull/27562
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "src/pipe_wrap.cc",
"patch": "@@ -41,6 +41,7 @@ using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::HandleScope;\n using v8::Int32;\n+using v8::Isolate;\n using v8::Local;\n using v8::MaybeLocal;\n using v8::Object;\n@@ -216,8 +217,9 @@ void PipeWrap::Open(const FunctionCallb... | 2019-05-04T16:06:57 |
golang/go | 2c58bb2e428c1f587dc30817bc211570f6fd4793 | 301db3f5d2d38a13aafe5bc6efea9a3bdbfc475e | src/runtime: mark asanread and asanwrite functions as NOSPLIT
The asan runtime functions may run on stacks that cannot grow, and
they do not have large local variables, so it is safe to mark them
as NOSPLIT.
Add test case.
Fixes #50391
Change-Id: Iadcbf1ae0c837d9b64da5be208c7f424e6ba11de
Reviewed-on: https://go-rev... | [
{
"path": "misc/cgo/testsanitizers/asan_test.go",
"patch": "@@ -39,6 +39,7 @@ func TestASAN(t *testing.T) {\n \t\t{src: \"asan2_fail.go\", memoryAccessError: \"heap-buffer-overflow\", errorLocation: \"asan2_fail.go:31\"},\n \t\t{src: \"asan3_fail.go\", memoryAccessError: \"use-after-poison\", errorLocation:... | 2021-12-30T03:09:42 |
vercel/next.js | 9b0af737b887123177fb84226d2976d18a82b2d9 | eb2650ae683f472997c69ad952925eda5bff1195 | Suggest a replay in the bug issue template (#50022)
x-ref: [slack
thread](https://vercel.slack.com/archives/C04DUD7EB1B/p1684457147422049) | [
{
"path": ".github/ISSUE_TEMPLATE/1.bug_report.yml",
"patch": "@@ -51,9 +51,10 @@ body:\n - 'TypeScript (plugin, built-in types)'\n - type: input\n attributes:\n- label: Link to the code that reproduces this issue\n+ label: Link to the code that reproduces this issue or a replay of t... | 2023-05-19T02:54:15 |
electron/electron | bad48169764278154cb47e218024ed224de9ae7d | 674af4211c403e767882781c44ba282c591b84af | Expand error message | [
{
"path": "atom/renderer/lib/web-view/web-view.js",
"patch": "@@ -409,7 +409,7 @@ var registerWebViewElement = function() {\n if (internal.webContents) {\n return internal.webContents[m].apply(internal.webContents, args);\n } else {\n- throw new Error(`Cannot call ${m} before the ... | 2016-02-09T21:51:35 |
nodejs/node | b9a310338761754c968bb57b0903100b7672afb2 | 5e064f3672b56fff29f9bf6c75fbe060b86554a5 | build: export OpenSSL UI symbols
Node.js compiles them, their existence is indicated by OpenSSL header
defines, but they can't be linked to on Windows because their symbols
are not exported. Export them.
Fixes: https://github.com/nodejs/node/issues/27494
PR-URL: https://github.com/nodejs/node/pull/27586
Reviewed-By:... | [
{
"path": "node.gyp",
"patch": "@@ -816,7 +816,7 @@\n # Categories to export.\n '-CAES,BF,BIO,DES,DH,DSA,EC,ECDH,ECDSA,ENGINE,EVP,HMAC,MD4,MD5,'\n 'PSK,RC2,RC4,RSA,SHA,SHA0,SHA1,SHA256,SHA512,SOCK,STDIO,TLSEXT,'\n- 'FP_API,TLS1_METHOD,TLS1_1_METHOD,TLS1... | 2019-05-06T19:59:11 |
golang/go | 301db3f5d2d38a13aafe5bc6efea9a3bdbfc475e | f154f8b5bb16833139bb171371691150b1bd9cd5 | net: do not panic on nil IPNet.String()
The code looks like it was already trying to avoid this but missed a
spot.
Fixes #50271.
Change-Id: I450adac3f618b9535b61a28e6a160eacc351d47c
Reviewed-on: https://go-review.googlesource.com/c/go/+/373075
Trust: Jason Donenfeld <Jason@zx2c4.com>
Run-TryBot: Jason Donenfeld <Jas... | [
{
"path": "src/net/ip.go",
"patch": "@@ -545,6 +545,9 @@ func (n *IPNet) Network() string { return \"ip+net\" }\n // character and a mask expressed as hexadecimal form with no\n // punctuation like \"198.51.100.0/c000ff00\".\n func (n *IPNet) String() string {\n+\tif n == nil {\n+\t\treturn \"<nil>\"\n+\t}\... | 2022-01-04T23:16:40 |
vercel/next.js | eb2650ae683f472997c69ad952925eda5bff1195 | 4b4925f4e8cf1d386ffa3f161c06fc60aa136d77 | build(cargo): update turbopack (#50013)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
###... | [
{
"path": "Cargo.lock",
"patch": "@@ -400,7 +400,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-230517.2#4d39f01a5f06e7e9b670cc55bd544c64088b77e7\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-05-19T02:03:18 |
rust-lang/rust | 83044357930a7c55f8d429bd4cd7dcb7426d4b01 | 2801f9aaf9b7580d9b230b532b0700709857cc88 | Compute hard errors without diagnostics in impl_intersection_has_impossible_obligation | [
{
"path": "compiler/rustc_infer/src/traits/engine.rs",
"patch": "@@ -19,7 +19,8 @@ pub enum ScrubbedTraitError<'tcx> {\n TrueError,\n /// An ambiguity. This goal may hold if further inference is done.\n Ambiguity,\n- /// An old-solver-style cycle error, which will fatal.\n+ /// An old-solv... | 2025-06-17T21:35:11 |
huggingface/transformers | 6f6095e0cf509f7384d3ce0c1804013ef6cafd5f | c4cfc2e023392eb75d8735c3276c3a9ba7e4ffa5 | Refactor weight loading (#41580)
* ah actually we don't discard lm head if missing -> needs to be moved to correct device and etc
* fix some tests
* small fixes
* up
* up
* dik why we tie weights twice but,..,,.
* ups
* removeunused
* fix hunyuan
* small fix
* nits
* ish
* up
* rev
* fix more tie weights... | [
{
"path": ".circleci/config.yml",
"patch": "@@ -46,8 +46,8 @@ jobs:\n - run: uv pip install -U -e .\n - run: echo 'export \"GIT_COMMIT_MESSAGE=$(git show -s --format=%s)\"' >> \"$BASH_ENV\" && source \"$BASH_ENV\"\n - run: mkdir -p test_preparation\n- - run: py... | 2025-11-13T16:12:52 |
electron/electron | 8cacd0b931fe842afe3c54e618344924dc3fc0f6 | 6bc48ba123f31148f9d41790447ff0c58fd16b70 | Throw custom error when WebView API is unavailable | [
{
"path": "atom/renderer/lib/web-view/web-view.js",
"patch": "@@ -404,10 +404,13 @@ var registerWebViewElement = function() {\n // Forward proto.foo* method calls to WebViewImpl.foo*.\n createBlockHandler = function(m) {\n return function() {\n- var args, internal, ref1;\n- args = 1 <= arg... | 2016-02-05T18:55:32 |
golang/go | f154f8b5bb16833139bb171371691150b1bd9cd5 | e39ab9b01cbbdac0750fc13fa8fb1de4f07aa79a | cmd/compile: save selector/inst info for generic method/function calls
In the dict info, we need to save the SelectorExpr of a generic method
call when making its sub-dictionary entry. The generic method call will
eventually be transformed into a function call on the method shape
instantiation, so we may not always ha... | [
{
"path": "src/cmd/compile/internal/noder/irgen.go",
"patch": "@@ -96,6 +96,17 @@ func check2(noders []*noder) {\n \t}\n }\n \n+// Information about sub-dictionary entries in a dictionary\n+type subDictInfo struct {\n+\t// Call or XDOT node that requires a dictionary.\n+\tcallNode ir.Node\n+\t// Saved CallE... | 2021-12-21T15:59:16 |
rust-lang/rust | 71ff9a09d103e63a29d813b5ae54905f8a25774e | 76118ec84ee5c1e865d10cd5d99c02878dd56ade | fix mul_add uncertain sugg | [
{
"path": "clippy_lints/src/floating_point_arithmetic.rs",
"patch": "@@ -7,7 +7,8 @@ use clippy_utils::{\n };\n use rustc_ast::ast;\n use rustc_errors::Applicability;\n-use rustc_hir::{BinOpKind, Expr, ExprKind, PathSegment, UnOp};\n+use rustc_hir::def::Res;\n+use rustc_hir::{BinOpKind, Expr, ExprKind, Node... | 2025-06-25T11:23:48 |
huggingface/transformers | c4cfc2e023392eb75d8735c3276c3a9ba7e4ffa5 | 5c6d6bed4d2ed5ee3380c5003f61c500049b9dc5 | [TP] Fix parameter detection issue and some invalid TP-plans (#42129)
* fix
* add test
* fix test
* fix the obvious
* more fix
* fix
* continue to improve
* more fix
* more
* fix
* fix
* finally
* CI | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -140,6 +140,16 @@ def _blocks_to_block_sizes(total_size: int, blocks: int | list[int]) -> list[int\n return [single_size] * blocks\n \n \n+def replace_layer_number_by_wildcard(name: str) -> str:\n+ \"\"\"\n+ Replace the... | 2025-11-13T14:44:56 |
vercel/next.js | 4b4925f4e8cf1d386ffa3f161c06fc60aa136d77 | ea9b1f5ebcbdc0dbcce5aad38a51fec4908a4680 | fix: set cookies followed by `redirect()` (#49965)
- Fixes #49237
fix NEXT-1120
Co-authored-by: Wyatt Johnson <633002+wyattjoh@users.noreply.github.com> | [
{
"path": "packages/next/src/client/components/redirect.ts",
"patch": "@@ -1,3 +1,6 @@\n+import { requestAsyncStorage } from './request-async-storage'\n+import type { ResponseCookies } from '../../server/web/spec-extension/cookies'\n+\n const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'\n \n export enum RedirectTy... | 2023-05-19T00:17:19 |
electron/electron | 6bc48ba123f31148f9d41790447ff0c58fd16b70 | a4d21cadfa3d6a7e706d1bae61b424e599301c08 | Add failing spec for custom error message | [
{
"path": "spec/webview-spec.js",
"patch": "@@ -561,6 +561,17 @@ describe('<webview> tag', function() {\n document.body.appendChild(webview);\n });\n });\n+\n+ it('throws a custom error when an API method is called before the event is emitted', function() {\n+ var readyError = null... | 2016-02-05T18:48:07 |
golang/go | e39ab9b01cbbdac0750fc13fa8fb1de4f07aa79a | 1c8f9d2c97db7390a7ed2cd4663571b544147f4d | cmd/compile: pop instantiations of local types when leaving scope
Since we use existing instantiations from the symbol table when possible
(to make sure each instantiation is unique), we need to pop
instantiations of local types when leaving the containing scope.
g.stmts() now pushes and pops scope, and we do a Pushdc... | [
{
"path": "src/cmd/compile/internal/noder/stmt.go",
"patch": "@@ -13,8 +13,10 @@ import (\n \t\"cmd/internal/src\"\n )\n \n+// stmts creates nodes for a slice of statements that form a scope.\n func (g *irgen) stmts(stmts []syntax.Stmt) []ir.Node {\n \tvar nodes []ir.Node\n+\ttypes.Markdcl()\n \tfor _, stmt... | 2021-12-16T02:42:00 |
huggingface/transformers | 5c6d6bed4d2ed5ee3380c5003f61c500049b9dc5 | 80134e6e663db962c30d0e45c54265b3141bc7c7 | [`PEFT`] Fix the general test for prefix tuning (#42185)
fix | [
{
"path": "tests/utils/test_modeling_utils.py",
"patch": "@@ -1818,6 +1818,8 @@ def test_cache_when_needed_at_train_time(self):\n self.assertTrue(model.training)\n \n # We can also disable the cache to skip a few operations, if the training loop doesn't need cache\n+ # NOTE: after #41... | 2025-11-13T14:40:01 |
vercel/next.js | ea9b1f5ebcbdc0dbcce5aad38a51fec4908a4680 | c2da56e1941e8dc09bf3c1352474ecd0ce973d04 | Remove custom handling for prebundled react env (#49954)
This removes the previous handling for the prebundled react env we were
setting in favor of https://github.com/vercel/vercel/pull/9974
We need to wait to land this until
https://github.com/vercel/vercel/pull/9974 has been rolled
Fixes: https://github.com... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -301,23 +301,6 @@ export default async function build(\n NextBuildContext.appDir = appDir\n hasAppDir = Boolean(appDir)\n \n- if (isAppDirEnabled && hasAppDir) {\n- if (\n- (!process.env.__NEXT_TEST_MODE ||\n- ... | 2023-05-18T23:51:18 |
huggingface/transformers | 80134e6e663db962c30d0e45c54265b3141bc7c7 | ce40ca0d4c7d2e0a3f8bd3ddc30f29c6a105efb5 | Update transformers to support `FqnToConfig` (#41894)
* Update transformers to support `FqnToConfig`
Summary:
Test Plan:
Reviewers:
Subscribers:
Tasks:
Tags:
* add case for modulefqn
* remove comment
* update tests
* cleanup
* update
* wip
* wip
* update quantizer_torchao for module default
* fix unders... | [
{
"path": "docs/source/en/quantization/torchao.md",
"patch": "@@ -422,19 +422,19 @@ print(tokenizer.decode(output[0], skip_special_tokens=True))\n \n #### 1. Skip quantization for certain layers\n \n-With `ModuleFqnToConfig` we can specify a default configuration for all layers while skipping quantization f... | 2025-11-13T13:34:45 |
golang/go | 6178d25fc0b28724b1b5aec2b1b74fc06d9294c7 | 8a306e205663cde672e9920e2e81db9d3615e6c0 | misc/cgo/testsanitizers: accept compilers that don't report location
It appears that GCC before version 10 doesn't report file/line
location for asan errors.
Change-Id: I03ee24180ba365636596aa2384961df7ce6ed71f
Reviewed-on: https://go-review.googlesource.com/c/go/+/374874
Trust: Ian Lance Taylor <iant@golang.org>
Run... | [
{
"path": "misc/cgo/testsanitizers/asan_test.go",
"patch": "@@ -63,7 +63,11 @@ func TestASAN(t *testing.T) {\n \t\t\t\t\t// symbolizer program and can't find it.\n \t\t\t\t\tconst noSymbolizer = \"external symbolizer\"\n \t\t\t\t\t// Check if -asan option can correctly print where the error occured.\n-\t\t\... | 2021-12-29T19:19:13 |
vercel/next.js | c2da56e1941e8dc09bf3c1352474ecd0ce973d04 | 783acc59a0cfa204e5e07d0f54698e1aef17d325 | Fix going back to page after applying hash link (#50006)
## What?
@steven-tey noticed that on upstash.com that scrolling to hash keeps
happening regardless of the hash being set:
- Open site
- Click `Pricing` which adds `#pricing` and scrolls to the
`id="pricing"`
- Click `About`
- Click on the logo
You... | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -211,6 +211,8 @@ 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-05-18T23:33:58 |
electron/electron | 704bd4d191a399107a0a3ea187628a851940adb5 | 3e399d09d7bdcd21154f65a233e487ca2c65c15f | Improve error message | [
{
"path": "atom/browser/api/lib/web-contents.js",
"patch": "@@ -79,7 +79,7 @@ let wrapWebContents = function(webContents) {\n var args = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n var channel = arguments[0];\n if (channel == null) {\n- throw new Error('channel must be specifie... | 2016-02-09T18:34:50 |
rust-lang/rust | 7d6f77f8be42ee5c4d921cc52f885ddc0b566974 | ca062eb7d428f2ad5f2446d938367986eda76c75 | Drop rustc workspace loading error, if we don't needs its sources | [
{
"path": "src/tools/rust-analyzer/crates/project-model/src/cargo_workspace.rs",
"patch": "@@ -48,6 +48,7 @@ pub struct CargoWorkspace {\n is_sysroot: bool,\n /// Environment variables set in the `.cargo/config` file.\n config_env: Env,\n+ requires_rustc_private: bool,\n }\n \n impl ops::Inde... | 2025-06-25T10:09:54 |
huggingface/transformers | ce40ca0d4c7d2e0a3f8bd3ddc30f29c6a105efb5 | 6408d3b01a4b5446655c222daa0b947bddf7db82 | [typo] fix mrope-interleave annotation to avoid ambiguity (#42177)
* fix typo
* fix qwen3omni | [
{
"path": "src/transformers/models/qwen3_omni_moe/modeling_qwen3_omni_moe.py",
"patch": "@@ -1292,7 +1292,7 @@ def forward(self, x, position_ids):\n def apply_interleaved_mrope(self, freqs, mrope_section):\n \"\"\"Apply interleaved MRoPE to 3D rotary embeddings.\n Reorganizes frequency l... | 2025-11-13T13:07:14 |
nodejs/node | dac1143fc868cb626f2ddb940ccc4b4abd9963a5 | c30ef3cbd2e42ac1d600f6bd78a601a5496b0877 | module: handle relative paths in resolve paths
This commit adds support for relative paths in
require.resolve()'s paths option.
PR-URL: https://github.com/nodejs/node/pull/27598
Fixes: https://github.com/nodejs/node/issues/27583
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -575,18 +575,25 @@ Module._resolveFilename = function(request, parent, isMain, options) {\n \n if (typeof options === 'object' && options !== null &&\n Array.isArray(options.paths)) {\n- const fakeParent = new Module('', null);\n+ co... | 2019-05-07T15:31:29 |
vercel/next.js | 783acc59a0cfa204e5e07d0f54698e1aef17d325 | 0a81cc0f1698077cc7e771ce4620346dcd417c77 | fix: warning fetch for `[object Request]` specified (#50003)
This PR fixes a warning that previous looked like the following:
```
Warning: fetch for [object Request] specified "cache: default" and "revalidate: 60", only one should be specified.
``` | [
{
"path": "packages/next/src/server/lib/patch-fetch.ts",
"patch": "@@ -91,18 +91,17 @@ export function patchFetch({\n // Error caused by malformed URL should be handled by native fetch\n url = undefined\n }\n+ const fetchUrl = url?.href ?? ''\n const fetchStart = Date.now()\n cons... | 2023-05-18T23:20:05 |
electron/electron | c94f1fc857e0c07303e60d8df0e89e48808f207c | cead84d5d118bfc6b6a8d5418474959fd3021c54 | Throw error when IPC channel is missing | [
{
"path": "atom/browser/api/lib/web-contents.js",
"patch": "@@ -78,6 +78,9 @@ let wrapWebContents = function(webContents) {\n webContents.send = function() {\n var args = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n var channel = arguments[0];\n+ if (channel == null) {\n+ throw... | 2016-02-09T18:20:55 |
huggingface/transformers | 6408d3b01a4b5446655c222daa0b947bddf7db82 | f40ef032145c36387e26b7acd22f9a6a1811aee1 | [`PEFT`] Fix prefix tuning (#41696)
* fix
* simplify
* add my 2 cents | [
{
"path": "src/transformers/masking_utils.py",
"patch": "@@ -733,9 +733,19 @@ def _preprocess_mask_arguments(\n # If using a cache, it can give all information about mask sizes based on seen tokens\n if past_key_values is not None:\n kv_length, kv_offset = past_key_values.get_mask_sizes(cach... | 2025-11-13T10:58:26 |
golang/go | 91e782106ea465acc6a4c719081cefb690b28533 | a78532a4121d26c33ee3ce69b3dda3a608f5a077 | runtime: fix the issue that the -asan option cannot print where the error occurred
The current -asan option does not print where the error occurred. The
reason is that the current implementation calls incorrect asan runtime
functions, which do not pass sp and pc where asan runtime functions are
called, and report the ... | [
{
"path": "misc/cgo/testsanitizers/asan_test.go",
"patch": "@@ -33,11 +33,12 @@ func TestASAN(t *testing.T) {\n \tcases := []struct {\n \t\tsrc string\n \t\tmemoryAccessError string\n+\t\terrorLocation string\n \t}{\n-\t\t{src: \"asan1_fail.go\", memoryAccessError: \"heap-use-after-free\"}... | 2021-12-27T08:38:48 |
vercel/next.js | 0a81cc0f1698077cc7e771ce4620346dcd417c77 | babe50364e2c1d71890da1617546aa50d25610dd | Revert "Error in `next export` when `serverActions` is enabled" (#50019)
Reverts vercel/next.js#49959 since the PR [was failing CI](https://github.com/vercel/next.js/actions/runs/5015634314/jobs/8991545593#step:6:179)
fix NEXT-634 | [
{
"path": "packages/next/src/export/index.ts",
"patch": "@@ -228,12 +228,6 @@ export default async function exportApp(\n )\n }\n \n- if (nextConfig.experimental.serverActions) {\n- throw new ExportError(\n- `Server Actions are not supported with static export.`\n- )\n- }\n-\... | 2023-05-18T22:26:02 |
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.