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
222ed1b38af0fb6f83f80062092a267dcbd354df
0ebd5a8de05823109263bef31b38be8c29d2cd54
os: enable TestFifoEOF on openbsd The test successfully runs on currently supported versions (6.8 and 6.9) of openbsd. Fixes #25877 Change-Id: I2694f08c5596b486453c2ac829f17b8bc455f828 Reviewed-on: https://go-review.googlesource.com/c/go/+/329732 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <...
[ { "path": "src/os/fifo_test.go", "patch": "@@ -26,9 +26,6 @@ func TestFifoEOF(t *testing.T) {\n \tswitch runtime.GOOS {\n \tcase \"android\":\n \t\tt.Skip(\"skipping on Android; mkfifo syscall not available\")\n-\tcase \"openbsd\":\n-\t\t// On OpenBSD 6.2 this test just hangs for some reason.\n-\t\tt.Skip(\...
2021-06-22T01:50:09
nodejs/node
59a8324d2793c504fc81a3126478d8c401df314e
bea41bc945dff623961d65e86d5a4cd0d18fffb6
src: refactor win32 `DebugProcess()` to use RAII cleanup Prefer more idiomatic C++ cleanup code over `goto`. PR-URL: https://github.com/nodejs/node/pull/22981 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>...
[ { "path": "src/node.cc", "patch": "@@ -2266,17 +2266,29 @@ static int GetDebugSignalHandlerMappingName(DWORD pid, wchar_t* buf,\n static void DebugProcess(const FunctionCallbackInfo<Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n Isolate* isolate = args.GetIsolate();\n+\n+ if (arg...
2018-09-20T19:16:28
vercel/next.js
79021458581254282ce5b1113b1b301e1dd4f2fd
b2569226443676a5c1502966ac081d2de7d3e925
Fix data requests for dynamic routes (vercel/turbo#3435) In addition to the fix, I've extracted the path regex/params matching logic from `turbopack-node` to `next-core`. `turbopack-node` now only declares a value trait which `next-core` implements.
[ { "path": "packages/next-swc/crates/next-core/Cargo.toml", "patch": "@@ -16,6 +16,7 @@ indoc = \"1.0\"\n mime = \"0.3.16\"\n once_cell = \"1.13.0\"\n qstring = \"0.7.2\"\n+regex = \"1.6.0\"\n serde = \"1.0.136\"\n serde_json = \"1.0.85\"\n turbo-tasks = { path = \"../turbo-tasks\" }", "additions": 1, ...
2023-01-24T18:30:23
electron/electron
6b49e23312486e6989e0ded3a89698505955cf81
7b3967321529272c3b507a5b67725c45e66b69a5
Fix leaking WebContents from devtools.
[ { "path": "brightray/browser/inspectable_web_contents_impl.cc", "patch": "@@ -355,6 +355,17 @@ bool InspectableWebContentsImpl::AddMessageToConsole(\n return true;\n }\n \n+bool InspectableWebContentsImpl::ShouldCreateWebContents(\n+ content::WebContents* web_contents,\n+ int route_id,\n+ WindowC...
2014-10-27T08:42:54
huggingface/transformers
8010f3cf616c98964ec38dde78de54b25f2a64af
66da7001457a44c2a04cd329b445c574b9561e8b
feat: add cache retention for requests (#38446) * feat: add cache retention for requests * fix: propagate `manual_eviction` param & refactor `finish_request` `finish_request` now only takes `request_id: str` as an input rather than the full `RequestState`, which was not needed and simplifies calling from `Continuous...
[ { "path": "src/transformers/generation/continuous_batching.py", "patch": "@@ -305,11 +305,12 @@ class Scheduler(ABC):\n It is expected that cache allocation and scheduling logic will be implemented in subclasses.\n \"\"\"\n \n- def __init__(self, cache: PagedAttentionCache):\n+ def __init__(se...
2025-05-28T18:15:10
vercel/next.js
87e088b5db4ae27a54323be4ca21f79157be6473
d96e196835431f7b2b5c18a726ad94d1015606ba
Fix data requests for dynamic routes (vercel/turbo#3435) In addition to the fix, I've extracted the path regex/params matching logic from `turbopack-node` to `next-core`. `turbopack-node` now only declares a value trait which `next-core` implements.
[ { "path": "crates/next-core/Cargo.toml", "patch": "@@ -16,6 +16,7 @@ indoc = \"1.0\"\n mime = \"0.3.16\"\n once_cell = \"1.13.0\"\n qstring = \"0.7.2\"\n+regex = \"1.6.0\"\n serde = \"1.0.136\"\n serde_json = \"1.0.85\"\n turbo-tasks = { path = \"../turbo-tasks\" }", "additions": 1, "deletions": 0, ...
2023-01-24T18:30:23
nodejs/node
bea41bc945dff623961d65e86d5a4cd0d18fffb6
8aca934009225b30bff7d7927d2eb9f667dbff9f
test: fix flaky sequential/test-fs-watch-system-limit This test has at least once locally received `EMFILE` rather than `ENOSPC`, which also seems to provide a reasonable error message (which is what the test ultimately checks). PR-URL: https://github.com/nodejs/node/pull/23038 Reviewed-By: Michaël Zasso <targos@prot...
[ { "path": "test/sequential/test-fs-watch-system-limit.js", "patch": "@@ -42,7 +42,8 @@ gatherStderr.on('data', common.mustCallAtLeast((chunk) => {\n if (accumulated.includes('Error:') && !finished) {\n assert(\n accumulated.includes('ENOSPC: System limit for number ' +\n- ...
2018-09-23T17:55:00
golang/go
ee4fc0c1bc300f181388ef6dd187ca8b8737efd2
8165256bc2e3298b0d612471d7d2e6c005b984de
[dev.typeparams] Fix issues related to dictionaries and method calls with embedded fields - Fix handling of method expressions with embedded fields. Fix an incorrect lookup for method expressions, which have only the top-level type (and don't have DOT operations for the embedded fields). Add the embedded fie...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -76,8 +76,10 @@ func (g *irgen) stencil() {\n \t\t\t\t// generic F, not immediately called\n \t\t\t\tclosureRequired = true\n \t\t\t}\n-\t\t\tif n.Op() == ir.OMETHEXPR && len(n.(*ir.SelectorExpr).X.Type().RParams()) > 0 {\n-\t\t\t\t// T.M, ...
2021-06-18T21:09:21
huggingface/transformers
66da7001457a44c2a04cd329b445c574b9561e8b
2872e8bac5cd36e5a369532ebfed06494a27ff33
Fix GLM4 checkpoints (#38412) * fix * fix * fix * fix * fix * fix * test style bot * Apply style fixes --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
[ { "path": "src/transformers/models/glm4/configuration_glm4.py", "patch": "@@ -22,7 +22,7 @@ class Glm4Config(PretrainedConfig):\n This is the configuration class to store the configuration of a [`Glm4Model`]. It is used to instantiate an Glm4\n model according to the specified arguments, defining th...
2025-05-28T16:40:08
nodejs/node
8aca934009225b30bff7d7927d2eb9f667dbff9f
0f73875e7b744f6c144ecf420b9f49c1025e0c5d
test: update postmortem metadata test for V8 7.0 The V8 7.0 update requires the following adjustments to the postmortem debugging metadata constants: - v8dbg_class_SharedFunctionInfo__script__Object Use: v8dbg_class_SharedFunctionInfo__script_or_debug_info__Object - v8dbg_class_SharedFunctionInfo__function_identif...
[ { "path": "test/v8-updates/test-postmortem-metadata.js", "patch": "@@ -96,10 +96,10 @@ function getExpectedSymbols() {\n 'v8dbg_class_SharedFunctionInfo__function_data__Object',\n 'v8dbg_class_SharedFunctionInfo__flags__int',\n 'v8dbg_class_UncompiledData__end_position__int32_t',\n- 'v8dbg_cl...
2018-09-17T13:29:53
vercel/next.js
45a93731138929c5f4fdb997679474cd9c0c42c1
ff1664b11b43aec59d3f8b8d640d1da8e9e3db05
Support metadata icons field (#45105) NEXT-400 ## Feature - [x] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [x] [e2e](https://github.com/vercel/next.js/blob/canary/contribut...
[ { "path": "packages/next/src/lib/metadata/generate/basic.tsx", "patch": "@@ -1,7 +1,7 @@\n import type { ResolvedMetadata } from '../types/metadata-interface'\n \n import React from 'react'\n-import { Meta } from './utils'\n+import { Meta } from './meta'\n \n export function ResolvedBasicMetadata({\n meta...
2023-01-24T18:19:11
huggingface/transformers
9a8510572b13af2e50e9976732d4013c51646937
c9fcbd5bf9cd0f1dc473ceb0e05dd91763a52f7e
Updated the model card for ViTMAE (#38302) * Update vit_mae.md * badge float:right * Update docs/source/en/model_doc/vit_mae.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/model_doc/vit_mae.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.co...
[ { "path": "docs/source/en/model_doc/vit_mae.md", "patch": "@@ -14,87 +14,63 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# ViTMAE\n \n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=pytorch&logoColor=white\">\n...
2025-05-28T16:19:43
golang/go
df99a270b36fe9f0b8bd43ba05e305fa738d2de6
3fa42437b5d6326aa1ae04726ad4319459280433
[dev.fuzz] testing: capture coverage even if tRunner failed Call SnapshotCoverage when the fuzzFn panics, or t.Fatal(f) is called. We currently don't use this coverage for anything, but it is necessary to allow the coordinator to continue when loading a corpus that contains an input that causes crashes. We will also p...
[ { "path": "src/testing/fuzz.go", "patch": "@@ -354,9 +354,13 @@ func (f *F) Fuzz(ff interface{}) {\n \t\t\tfor _, v := range e.Values {\n \t\t\t\targs = append(args, reflect.ValueOf(v))\n \t\t\t}\n+\t\t\t// Before reseting the current coverage, defer the snapshot so that we\n+\t\t\t// make sure it is called...
2021-06-16T18:10:17
electron/electron
1a93babdbc7dcfe6531093a52bc7c44e830dd55d
22e3b9df44f407de54347ab5a04ec3f0f9e5354a
Fix double freeing guest
[ { "path": "atom/browser/lib/guest-view-manager.coffee", "patch": "@@ -37,7 +37,7 @@ createGuest = (embedder, params) ->\n \n # Destroy guest when the embedder is gone.\n embedder.once 'render-view-deleted', ->\n- destroyGuest id\n+ destroyGuest id if guestInstances[id]?\n \n # Init guest web vie...
2014-10-25T14:01:24
nodejs/node
13245dc50da4cb7443c39ef6c68d419d5e6336d4
ee31c28298ce257847e08b1279909a4a3002866d
fs: improve fs.watch ENOSPC error message Providing `No space left on device` is misleading in this case. Replace it with something that describes it more accurately. Refs: https://stackoverflow.com/questions/22475849/node-js-error-enospc/32600959 PR-URL: https://github.com/nodejs/node/pull/21846 Reviewed-By: James ...
[ { "path": "lib/internal/errors.js", "patch": "@@ -249,7 +249,7 @@ function getMessage(key, args) {\n */\n function uvException(ctx) {\n const [ code, uvmsg ] = errmap.get(ctx.errno);\n- let message = `${code}: ${uvmsg}, ${ctx.syscall}`;\n+ let message = `${code}: ${ctx.message || uvmsg}, ${ctx.syscall}...
2018-07-17T01:05:04
vercel/next.js
ff1664b11b43aec59d3f8b8d640d1da8e9e3db05
b386f680cc67749d576a28cdf21a3dca20c431b0
perf: avoid sync re-renders when using next/link and next/image (#45165) fixes NEXT-164 ## Context This PR fixes an issue happening when using `next/image` or `next/link` where rendering them caused sync re-renders with React. This breaks [selective hydration](https://github.com/reactwg/react-18/discussions/130) in ...
[ { "path": "packages/next/src/client/use-intersection.tsx", "patch": "@@ -1,4 +1,4 @@\n-import { useCallback, useEffect, useState } from 'react'\n+import { useCallback, useEffect, useRef, useState } from 'react'\n import {\n requestIdleCallback,\n cancelIdleCallback,\n@@ -101,12 +101,17 @@ export functio...
2023-01-24T17:47:18
huggingface/transformers
c9fcbd5bf9cd0f1dc473ceb0e05dd91763a52f7e
cba94e92724be4080173c4379381dbd5801495a5
Updated the Model docs - for the ALIGN model (#38072) * Updated the Model docs - for the ALIGN model * Update docs/source/en/model_doc/align.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/model_doc/align.md Co-authored-by: Steven Liu <59462357+stevhliu@users.nore...
[ { "path": "docs/source/en/model_doc/align.md", "patch": "@@ -13,65 +13,141 @@ specific language governing permissions and limitations under the License.\n rendered properly in your Markdown viewer.\n \n -->\n+<div style=\"float: right;\">\n+ <div class=\"flex flex-wrap space-x-1\">\n+ <img alt=\"PyTorch...
2025-05-28T16:19:09
golang/go
3fa42437b5d6326aa1ae04726ad4319459280433
ff6f2051d9151a03d012c3020c62f3574e1b2d1b
[dev.fuzz] internal/fuzz: fix race in worker RPC logic We want worker RPCs to return as soon as the context is cancelled, which happens if the user presses ^C, we hit the time limit, or another worker discovers a crasher. RPCs typically block when reading pipes: the server waits for call arguments from the client, and...
[ { "path": "src/internal/fuzz/worker.go", "patch": "@@ -577,57 +577,33 @@ type workerServer struct {\n // does not return errors from method calls; those are passed through serialized\n // responses.\n func (ws *workerServer) serve(ctx context.Context) error {\n-\t// This goroutine may stay blocked after ser...
2021-06-21T22:22:32
electron/electron
623e3ebc0340b89af55f403c795898720313326b
645f81effdb729314fe5e780cb5ec22c5d54441e
Fix type convertion errors.
[ { "path": "atom/browser/atom_browser_main_parts_mac.mm", "patch": "@@ -21,7 +21,7 @@\n NSApplication* application = [AtomApplication sharedApplication];\n \n AtomApplicationDelegate* delegate = [AtomApplicationDelegate alloc];\n- [NSApp setDelegate:delegate];\n+ [NSApp setDelegate:(id<NSFileManagerDel...
2014-10-25T03:06:10
nodejs/node
ee31c28298ce257847e08b1279909a4a3002866d
70f168b883359ab6bd461372fd61c37c8076b4f9
test: remove string literals for strictEquals/notStrictEquals In short: Some unit tests are using string literals to simply tell you a conclusion what's right/wrong BUT not tell you what actually values are. So it's necessary to print them out in the console. Refs: https://github.com/nodejs/node/pull/22849 PR-URL: ht...
[ { "path": "test/fixtures/not-main-module.js", "patch": "@@ -20,6 +20,5 @@\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n const assert = require('assert');\n-assert.notStrictEqual(module, require.main, 'require.main should not == module');\n-assert.notStrictEqual(module, process.mainModule,\n- ...
2018-09-17T05:50:09
vercel/next.js
b2569226443676a5c1502966ac081d2de7d3e925
98c9d723ffc0e967f46dc3180391f1b834a1fbe8
refactor content sources to avoid evaluating content before serving (vercel/turbo#3334) fixes WEB-141 This changes the ContentSource API. Before a ContentSource returned a tuple of specificity and content. Now it returns a tuple of specificity and a get_content function. The old way made it very inefficient ...
[ { "path": "packages/next-swc/crates/next-core/src/manifest.rs", "patch": "@@ -77,7 +77,9 @@ impl ContentSource for DevManifestContentSource {\n let file = File::from(manifest_content).with_content_type(APPLICATION_JSON);\n \n Ok(ContentSourceResultVc::exact(\n- ContentSourceConten...
2023-01-24T15:16:33
huggingface/transformers
cba94e92724be4080173c4379381dbd5801495a5
21b10d9aa40d304bb35eec48afb2ee764d4098a6
Fix handling of slow/fast image processors in image_processing_auto.py (#38161) Fix wrong error when torchvision is not installed
[ { "path": "src/transformers/models/auto/image_processing_auto.py", "patch": "@@ -511,15 +511,20 @@ def from_pretrained(cls, pretrained_model_name_or_path, *inputs, **kwargs):\n \"`use_fast=True` will be the default behavior in v4.52, even if the model was saved with a slow processor....
2025-05-28T16:00:23
golang/go
0ebd5a8de05823109263bef31b38be8c29d2cd54
5bd09e5efccf0d3df89085c9f214f94017f6e969
cmd/go: update ToolTags based on GOARCH value The build.Context ToolTags value is set based on the set of enabled experiments, which in turn depends on GOARCH. Before this CL the set of experiments was being set based on GOARCH in the environment. That is normally fine, but fails with cmd/go when somebody has run "go ...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -77,6 +77,14 @@ func defaultContext() build.Context {\n \tctxt.GOOS = envOr(\"GOOS\", ctxt.GOOS)\n \tctxt.GOARCH = envOr(\"GOARCH\", ctxt.GOARCH)\n \n+\t// The experiments flags are based on GOARCH, so they may\n+\t// need to change. TODO: This shoul...
2021-06-21T21:48:54
electron/electron
2d560678195755497bea5745b34331912b5e83a9
a96cde254b18667863b3f5aad929b5b35e47630f
Fix creating window in <webview>
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -170,7 +170,14 @@ void WebContents::WillAttach(content::WebContents* embedder_web_contents,\n \n content::WebContents* WebContents::CreateNewGuestWindow(\n const content::WebContents::CreateParams& create_params) {\n- return nullptr;\n...
2014-10-24T14:14:12
nodejs/node
e72c6af6c82629a60af735f4d11f40a4e91e0268
e758d4ab0adf53f2a4b736433714943bc4b4f06f
http2: do not falsely emit 'aborted' on push A push stream should have its writable side closed upon receipt, to avoid emitting the 'aborted' event when the readable side is closed. PR-URL: https://github.com/nodejs/node/pull/22878 Fixes: https://github.com/nodejs/node/issues/22851 Reviewed-By: Luigi Pinca <luigipinc...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -279,6 +279,7 @@ function onSessionHeaders(handle, id, cat, flags, headers) {\n }\n } else {\n stream = new ClientHttp2Stream(session, handle, id, opts);\n+ stream.end();\n }\n if (endOfStream)\n stream[kState].endAfterH...
2018-09-15T17:36:55
vercel/next.js
d96e196835431f7b2b5c18a726ad94d1015606ba
ee18ce28e31cb436f8e6b5712f712689b94fe854
refactor content sources to avoid evaluating content before serving (vercel/turbo#3334) fixes WEB-141 This changes the ContentSource API. Before a ContentSource returned a tuple of specificity and content. Now it returns a tuple of specificity and a get_content function. The old way made it very inefficient ...
[ { "path": "crates/next-core/src/manifest.rs", "patch": "@@ -77,7 +77,9 @@ impl ContentSource for DevManifestContentSource {\n let file = File::from(manifest_content).with_content_type(APPLICATION_JSON);\n \n Ok(ContentSourceResultVc::exact(\n- ContentSourceContent::Static(AssetCon...
2023-01-24T15:16:33
huggingface/transformers
21b10d9aa40d304bb35eec48afb2ee764d4098a6
f844733568b5093f9afb815bd760ce7208fee62f
Fix `from_args_and_dict` ProcessorMixin (#38296) * fix-from-args-and-dict-processormixin * change used_kwargs to valid_kwargs * remove manual valid_kwargs * fix copies * fix modular aria
[ { "path": "src/transformers/models/aria/modular_aria.py", "patch": "@@ -936,7 +936,6 @@ class AriaProcessor(ProcessorMixin):\n \"\"\"\n \n attributes = [\"image_processor\", \"tokenizer\"]\n- valid_kwargs = [\"chat_template\", \"size_conversion\"]\n image_processor_class = \"AriaImageProcesso...
2025-05-28T15:46:33
golang/go
5bd09e5efccf0d3df89085c9f214f94017f6e969
666315b4d38b99931bb9fd158a76e59928fd2852
spec: unsafe.Add/Slice are not permitted in statement context Add unsafe.Add and unsafe.Slice to the list of built-in functions which are not permitted in statement context. The compiler and type checker already enforce this restriction, this just fixes a documentation oversight. For #19367. For #40481. Change-Id: I...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Jun 2, 2021\",\n+\t\"Subtitle\": \"Version of Jun 22, 2021\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4670,7 +4670,7 @@ <h3 id=\"Expression_statemen...
2021-06-22T05:20:11
electron/electron
993f66bd02cefc74e413ac5b160aabf361a0c2d8
39e75574f4c31834ac80a31e56aea1afb3666aa8
Fix initializing webview
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -14,6 +14,7 @@\n #include \"content/public/browser/render_frame_host.h\"\n #include \"content/public/browser/render_process_host.h\"\n #include \"content/public/browser/render_view_host.h\"\n+#include \"content/public/browser/render_widget_...
2014-10-24T08:09:18
huggingface/transformers
f844733568b5093f9afb815bd760ce7208fee62f
0ed6f7e6b455c6fd3530d8b764996ca771c49ee4
Fix MoE gradient test (#38438)
[ { "path": "tests/models/phimoe/test_modeling_phimoe.py", "patch": "@@ -102,6 +102,7 @@ class PhimoeModelTest(CausalLMModelTest, unittest.TestCase):\n \n test_headmasking = False\n test_pruning = False\n+ test_all_params_have_gradient = False\n model_tester_class = PhimoeModelTester\n pipe...
2025-05-28T15:44:20
nodejs/node
e758d4ab0adf53f2a4b736433714943bc4b4f06f
36bdd19a6b3aee18143a3d45d6eedc19a2e95189
doc,test: fix inspect's sorted compare function In V8 7.0, the array sorting algorithm was changed to Timsort, which is stable. A compare function returning only `true` or `false` (converted to 0 and 1) cannot work properly. PR-URL: https://github.com/nodejs/node/pull/22992 Reviewed-By: Ruben Bridgewater <ruben@bridg...
[ { "path": "doc/api/util.md", "patch": "@@ -556,7 +556,7 @@ const o1 = {\n };\n console.log(inspect(o1, { sorted: true }));\n // { a: '`a` comes before `b`', b: [ 2, 3, 1 ], c: Set { 1, 2, 3 } }\n-console.log(inspect(o1, { sorted: (a, b) => a < b }));\n+console.log(inspect(o1, { sorted: (a, b) => b.localeCom...
2018-09-21T08:40:42
vercel/next.js
a4a5f84b00d1695cb4c5d8362ec64e41856c3d64
2e251cb85fd4104aa473bb2538276bb671c63d65
Allow unit tests to be written in packages/next/src (#45222) Allows `.test.ts` to be colocated next to files so that unit tests can be written in the Next.js core codebase. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contri...
[ { "path": "jest.config.js", "patch": "@@ -9,6 +9,7 @@ const customJestConfig = {\n setupFilesAfterEnv: ['<rootDir>/jest-setup-after-env.ts'],\n verbose: true,\n rootDir: 'test',\n+ roots: ['<rootDir>', '<rootDir>/../packages/next/src/'],\n modulePaths: ['<rootDir>/lib'],\n transformIgnorePatterns...
2023-01-24T14:32:09
golang/go
666315b4d38b99931bb9fd158a76e59928fd2852
63daa774b566d7fe58b3aa82cda9e595929bb777
runtime/internal/atomic: remove incorrect pointer indirection in comment Change-Id: I9d743b7f6b001158299bea4af4aede678654bc8e GitHub-Last-Rev: 7e07834abc861e21030fe4a8eb323bac01e18f7a GitHub-Pull-Request: golang/go#46851 Reviewed-on: https://go-review.googlesource.com/c/go/+/329730 Reviewed-by: Ian Lance Taylor <iant@...
[ { "path": "src/runtime/internal/atomic/atomic_386.s", "patch": "@@ -65,7 +65,7 @@ TEXT ·Xaddint64(SB), NOSPLIT, $0-20\n \n // bool ·Cas64(uint64 *val, uint64 old, uint64 new)\n // Atomically:\n-//\tif(*val == *old){\n+//\tif(*val == old){\n //\t\t*val = new;\n //\t\treturn 1;\n //\t} else {", "additions...
2021-06-22T02:12:29
electron/electron
97139b7487db38b242ea8a128896f1c4b6072672
d26dcd5501a86825a64de1dcfcc9fc2e92dd386f
Fix js errors in webview
[ { "path": "atom/renderer/lib/webview.coffee", "patch": "@@ -66,7 +66,7 @@ class Partition\n # Represents the internal state of the WebView node.\n class WebView\n constructor: (@webviewNode) ->\n- v8Util.setHiddenValue webviewNode, 'internal', this\n+ v8Util.setHiddenValue @webviewNode, 'internal', ...
2014-10-22T15:37:27
huggingface/transformers
0ed6f7e6b455c6fd3530d8b764996ca771c49ee4
51e0fac29fc3994d49dfbfd1c8d085d29360d393
Remove redundant test_sdpa_equivalence test (#38436) * Remove redundant test * make fixup
[ { "path": "tests/causal_lm_tester.py", "patch": "@@ -22,9 +22,7 @@\n from transformers.testing_utils import (\n is_flaky,\n require_flash_attn,\n- require_torch_accelerator,\n require_torch_gpu,\n- require_torch_sdpa,\n slow,\n )\n \n@@ -410,39 +408,6 @@ def test_model_rope_scaling(sel...
2025-05-28T15:22:25
nodejs/node
36bdd19a6b3aee18143a3d45d6eedc19a2e95189
1f4d4c0da87db42f97f43d8374967071fe85b37a
src: add CheckOptions to Options classes This commit adds a CheckOptions function that the options classes can optionally implement to check that options specified are correct (dependencies between options are met or options that are mutually exclusive). In the process of doing this the error pointer passed to Parse ...
[ { "path": "src/node.cc", "patch": "@@ -2460,7 +2460,7 @@ void ProcessArgv(std::vector<std::string>* args,\n bool is_env) {\n // Parse a few arguments which are specific to Node.\n std::vector<std::string> v8_args;\n- std::string error;\n+ std::vector<std::string> errors{};\n \n {\n ...
2018-09-19T05:33:28
rust-lang/rust
f03d246db98e0b67f38b015bcc86a23d9c1e9adf
b27d630f8958374bc774bc183105ee23f5320a3a
Better error message for late/early lifetime param mismatch
[ { "path": "compiler/rustc_hir_analysis/src/check/compare_impl_item.rs", "patch": "@@ -5,7 +5,7 @@ use std::iter;\n use hir::def_id::{DefId, DefIdMap, LocalDefId};\n use rustc_data_structures::fx::{FxHashSet, FxIndexMap, FxIndexSet};\n use rustc_errors::codes::*;\n-use rustc_errors::{Applicability, ErrorGuar...
2025-05-01T01:03:43
golang/go
63daa774b566d7fe58b3aa82cda9e595929bb777
197a5ee2ab8b64c687c74b986bf92139057366b6
go/types: guard against checking instantiation when generics is disabled When type checking t[_], where t is a type name, it was possible to leak an error message related to generics. Fix this by guarding on typeparams.Enabled. In order to test this fix, we need to be able to run the new go/types test only if type pa...
[ { "path": "src/go/types/check_test.go", "patch": "@@ -207,12 +207,15 @@ func checkFiles(t *testing.T, sizes Sizes, goVersion string, filenames []string,\n \t\tt.Fatal(\"no source files\")\n \t}\n \n+\tif strings.HasSuffix(filenames[0], \".go2\") && !typeparams.Enabled {\n+\t\tt.Skip(\"type params are not en...
2021-06-22T00:16:37
huggingface/transformers
c24d18bbae5e54832f4874607368f568483bd215
88504272429770e339d19654384b51244763cdd2
Fix convert weights for InternVL (#38233) Fix internvl convert weights
[ { "path": "src/transformers/models/internvl/__init__.py", "patch": "@@ -21,6 +21,7 @@\n from .configuration_internvl import *\n from .modeling_internvl import *\n from .processing_internvl import *\n+ from .video_processing_internvl import *\n else:\n import sys\n ", "additions": 1, ...
2025-05-28T15:14:56
vercel/next.js
558d61f5fc4daf8274de553f903f2b990630eeee
0d2aeb570dca290b34e86308250d267dbbdf7d75
Fix turbo cache miss due to depending on gitignored files (#45166) Workaround for this issue in turbo https://github.com/vercel/turbo/issues/2560 It caused that we always cache-missed.
[ { "path": "turbo.json", "patch": "@@ -31,14 +31,13 @@\n },\n \"typescript\": {},\n \"test-pack\": {\n- \"dependsOn\": [\"^test-pack\"],\n- \"inputs\": [\n- \"*\",\n- \"../../scripts/test-pack-package.mts\",\n- \"../../package.json\"\n- ],\n+ \"dependsOn\"...
2023-01-24T11:53:07
nodejs/node
1f4d4c0da87db42f97f43d8374967071fe85b37a
2b29df71ebc07cea87e14ed7f2d93e78f8b04b3c
tty: make `readStream.setRawMode()` return `this` PR-URL: https://github.com/nodejs/node/pull/22950 Fixes: https://github.com/nodejs/node/issues/22916 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi P...
[ { "path": "doc/api/tty.md", "patch": "@@ -64,6 +64,7 @@ added: v0.7.7\n raw device. If `false`, configures the `tty.ReadStream` to operate in its\n default mode. The `readStream.isRaw` property will be set to the resulting\n mode.\n+* Returns: {this} - the read stream instance.\n \n Allows configurati...
2018-09-19T18:09:25
rust-lang/rust
3286d4aad789a48bfaef5a682d6dcf2642012216
f5d3fe273b8b9e7125bf8856d44793b6cc4b6735
[win][arm64] Disable various DebugInfo tests that don't work on Arm64 Windows
[ { "path": "src/tools/compiletest/src/directive-list.rs", "patch": "@@ -35,6 +35,7 @@ const KNOWN_DIRECTIVE_NAMES: &[&str] = &[\n \"ignore-32bit\",\n \"ignore-64bit\",\n \"ignore-aarch64\",\n+ \"ignore-aarch64-pc-windows-msvc\",\n \"ignore-aarch64-unknown-linux-gnu\",\n \"ignore-aix\",...
2025-05-07T17:46:36
huggingface/transformers
88504272429770e339d19654384b51244763cdd2
bab40c6838c97f56022c0f3340b27aff89692b4d
Fix typo in tokenization_utils_base.py docstring (#38418) Fix typo in tokenization_utils_base.py
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -1206,7 +1206,7 @@ def _set_model_specific_special_tokens(self, special_tokens: List[str]):\n Activates and controls padding. Accepts the following values:\n \n - `True` or `'longest'`: Pad to the longest s...
2025-05-28T14:52:10
golang/go
9afd158eb228fbe191ffa27b1a334a8837c45ef7
1bd5a20e3c8a3a82e87487c381b76c97b720cd52
go/parser: parse an ast.IndexExpr for a[] To be consistent with Go 1.16, and to preserve as much information in the AST as possible, parse an ast.IndexExpr with BadExpr Index for the invalid expression a[]. A go/types test had to be adjusted to account for an additional error resulting from this change. We don't hav...
[ { "path": "src/go/parser/parser.go", "patch": "@@ -1302,7 +1302,12 @@ func (p *parser) parseIndexOrSliceOrInstance(x ast.Expr) ast.Expr {\n \t\tp.errorExpected(p.pos, \"operand\")\n \t\trbrack := p.pos\n \t\tp.next()\n-\t\treturn &ast.BadExpr{From: x.Pos(), To: rbrack}\n+\t\treturn &ast.IndexExpr{\n+\t\t\tX...
2021-06-21T20:10:14
vercel/next.js
0d2aeb570dca290b34e86308250d267dbbdf7d75
7d00e362d2bc5662836f2c9b05f0ca80593b9113
Reduce component stack spacing for components without metadata (#45218) Reduces the spacing when the component doesn't have any metadata. Before ![image](https://user-images.githubusercontent.com/25056922/214269347-a9da3372-b22e-45ef-89a8-f9c794e661f4.png) After ![image](https://user-images.githubusercontent.com/250...
[ { "path": "packages/next/src/client/components/react-dev-overlay/internal/container/RuntimeError/ComponentStackFrameRow.tsx", "patch": "@@ -40,9 +40,7 @@ export function ComponentStackFrameRow({\n <line x1=\"10\" y1=\"14\" x2=\"21\" y2=\"3\"></line>\n </svg>\n </div>\n- ) ...
2023-01-24T11:15:05
electron/electron
f82de6528b4a25ec4d04749a653223c791669ed3
593dce23a5cfc956b6780c6d5d3f84c14ae38df4
linux: Fix detect global menu bar It seems that detecting the bus name "com.canonical.AppMenu.Registrar" is the most reliable way to detect whether the appmenu is available, see http://git.io/JmP7Yg for the discussion.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -37,6 +37,9 @@\n #include \"base/nix/xdg_util.h\"\n #include \"base/strings/stringprintf.h\"\n #include \"chrome/browser/ui/libgtk2ui/unity_service.h\"\n+#include \"dbus/bus.h\"\n+#include \"dbus/object_proxy.h\"\n+#include \"dbus/message.h\"\n #...
2014-10-21T04:07:34
nodejs/node
2b29df71ebc07cea87e14ed7f2d93e78f8b04b3c
5942a3447a8b74c0030ed43cff440dbc93c1845a
test: do not export common.leakedGlobals() common.leakedGlobals() was exposed only to test its logic. The logic can instead be tested by running a fixture file that leaks a global and seeing if `common` causes an AssertionError on exit. This way, the entire functionality of leak detection is tested rather than just th...
[ { "path": "test/common/README.md", "patch": "@@ -219,11 +219,6 @@ Platform check for Windows.\n \n Platform check for Windows 32-bit on Windows 64-bit.\n \n-### leakedGlobals()\n-* return [&lt;Array>]\n-\n-Indicates whether any globals are not on the `knownGlobals` list.\n-\n ### localhostIPv4\n * [&lt;stri...
2018-09-19T23:33:18
huggingface/transformers
bab40c6838c97f56022c0f3340b27aff89692b4d
badc71b9f604ca910bb87a43979c795eaf6e7d64
[core] support tensor-valued _extra_state values in `from_pretrained` (#38155) Support tensor-valued _extra_state values TransformerEngine uses the pytorch get/set_extra_state API to store FP8 layer config information as bytes Tensor in the _extra_state entry in the state dict. With recent changes to from_pretrained,...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -5577,8 +5577,8 @@ def _initialize_missing_keys(\n def get_parameter_or_buffer(self, target: str):\n \"\"\"\n Return the parameter or buffer given by `target` if it exists, otherwise throw an error. This combines\n- `get...
2025-05-28T13:38:42
golang/go
761edf71f64bb2ef949ceb588822c47d2e1cc6ac
a0400420ade001265f656c5dd9be1b48d7c8e6fe
cmd/internal/moddeps: use a temporary directory for GOMODCACHE if needed CL 328770 should be sufficient to fix the specific failure in the report, but when attempting to reproduce it I noticed a related failure mode, triggered by the environment variables set in src/run.bash. The failure mode is currently masked on t...
[ { "path": "src/cmd/internal/moddeps/moddeps_test.go", "patch": "@@ -5,6 +5,7 @@\n package moddeps_test\n \n import (\n+\t\"bytes\"\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"internal/testenv\"\n@@ -123,10 +124,38 @@ func TestAllDependencies(t *testing.T) {\n \t\tt.Skip(\"skipping because a diff command with su...
2021-06-16T20:33:29
vercel/next.js
7d00e362d2bc5662836f2c9b05f0ca80593b9113
6b5f5d2f9f28da36d7fc9a6026e8b5d263cbe475
Show component stack in error overlay on hydration error (#45089)
[ { "path": "packages/next/src/client/components/react-dev-overlay/hot-reloader-client.tsx", "patch": "@@ -30,6 +30,7 @@ import {\n useWebsocket,\n useWebsocketPing,\n } from './internal/helpers/use-websocket'\n+import { parseComponentStack } from './internal/helpers/parse-component-stack'\n \n interface ...
2023-01-24T10:12:29
electron/electron
ef417cb8c249a12032e0bb3dd904f45b9cc62b61
ab652b738c6ae65e10fc549803ecff79b195120e
linux: Fix compilation warning from dbus
[ { "path": "atom.gyp", "patch": "@@ -570,6 +570,7 @@\n 'cflags': [\n '-Wno-deprecated-register',\n '-Wno-empty-body',\n+ '-Wno-reserved-user-defined-literal',\n ],\n 'dependencies': [\n 'vendor/breakpad/breakpad.gyp:breakpad_client'...
2014-10-21T03:47:52
nodejs/node
058c5b81cdbabe8989a194ba5d388f4c230f4af6
56493bf1ebfab3ec102fe017f30fa4f81ba6a256
crypto: do not allow multiple calls to setAuthTag Calling setAuthTag multiple times can result in hard to detect bugs since to the user, it is unclear which invocation actually affected OpenSSL. PR-URL: https://github.com/nodejs/node/pull/22931 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Sne...
[ { "path": "doc/api/crypto.md", "patch": "@@ -445,7 +445,7 @@ is invalid according to [NIST SP 800-38D][] or does not match the value of the\n `authTagLength` option, `decipher.setAuthTag()` will throw an error.\n \n The `decipher.setAuthTag()` method must be called before\n-[`decipher.final()`][].\n+[`decip...
2018-09-18T12:14:50
huggingface/transformers
badc71b9f604ca910bb87a43979c795eaf6e7d64
565a0052ed2783bbae54b431862253922ecaeb3c
🔴[`Attention`] Attention refactor for Whisper-based models (#38235) * start refactoring whisper * revert for now * first step * carry over attn fixes * check if this works * whisper has an off by one somewhere - cutting mask in any interface * make it based on interface * remove some tests that were skipped bu...
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -1716,6 +1716,19 @@ def batch_select_indices(self, indices: torch.Tensor):\n self.self_attention_cache.batch_select_indices(indices)\n self.cross_attention_cache.batch_select_indices(indices)\n \n+ def get_max_cache_shape(self) -> ...
2025-05-28T11:32:38
golang/go
20bdfba32590c3dcce8885df875dc56a84b2d269
44f9a3566ce564f9a21b1b92940a520ea241e065
go/scanner: fall back to next() when encountering 0 bytes in parseIdentifier CL 308611 optimized parseIdentifier for ASCII, but inadvertently skipped error handling for 0 bytes. Don't take the optimized path when encountering 0. Fixes #46855 Change-Id: Ic584e077eb74c012611fefa20eb71ca09c81b3c7 Reviewed-on: https://g...
[ { "path": "src/go/scanner/scanner.go", "patch": "@@ -373,7 +373,7 @@ func (s *Scanner) scanIdentifier() string {\n \t\t\tcontinue\n \t\t}\n \t\ts.rdOffset += rdOffset\n-\t\tif b < utf8.RuneSelf {\n+\t\tif 0 < b && b < utf8.RuneSelf {\n \t\t\t// Optimization: we've encountered an ASCII character that's not a...
2021-06-21T16:52:17
vercel/next.js
6b5f5d2f9f28da36d7fc9a6026e8b5d263cbe475
05d887dc3bc31f18c3e630ea052251a63a4f202c
Add build time error if error.js is missing "use client" (#44961)
[ { "path": "packages/next-swc/crates/core/src/lib.rs", "patch": "@@ -78,6 +78,9 @@ pub struct TransformOptions {\n #[serde(default)]\n pub pages_dir: Option<PathBuf>,\n \n+ #[serde(default)]\n+ pub app_dir: Option<PathBuf>,\n+\n #[serde(default)]\n pub is_page_file: bool,\n \n@@ -162,6 ...
2023-01-24T08:57:40
electron/electron
1f3c285ccf07703860d46110aab0359b6a522d46
93f5cc7d796c3d5829e5248c66079ac772324de1
fix spaces in path issue
[ { "path": "npm/index.js", "patch": "@@ -1,3 +1,3 @@\n var fs = require('fs')\n var path = require('path')\n-module.exports = fs.readFileSync(path.join(__dirname, 'run.bat'), 'utf-8')\n\\ No newline at end of file\n+module.exports = fs.readFileSync(path.join(__dirname, 'run.bat'), 'utf-8').slice(1,-1)\n\\ No...
2014-10-20T05:38:15
nodejs/node
bad670c19dc29b7cdb42432f6d717ec5934aad7e
3cb663a587147f68b5716c1641c408c6276be703
test: fix flaky key pair generation test There is a very small chance (about 0.4%) that OpenSSL will successfully decrypt a key without the correct passphrase and will then fail while parsing its ASN.1 structure. In those rare cases, the error message will be different. PR-URL: https://github.com/nodejs/node/pull/229...
[ { "path": "test/parallel/test-crypto-keygen.js", "patch": "@@ -169,7 +169,7 @@ function convertDERToPEM(label, der) {\n // Since the private key is encrypted, signing shouldn't work anymore.\n assert.throws(() => {\n testSignVerify(publicKey, privateKey);\n- }, /bad decrypt/);\n+ }, /bad...
2018-09-20T18:55:05
huggingface/transformers
565a0052ed2783bbae54b431862253922ecaeb3c
defeb042993ab15f4aa0c6699903bb3f5ce56726
make Llama4TextMoe forward more readable (#37529) * update forward of Llama4TextMoe * remove redudant transpose * fix formatting --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
[ { "path": "src/transformers/models/llama4/modeling_llama4.py", "patch": "@@ -138,36 +138,23 @@ def __init__(self, config):\n self.shared_expert = Llama4TextMLP(config)\n \n def forward(self, hidden_states):\n- batch, seq_len, hidden_dim = hidden_states.shape\n hidden_states = hidd...
2025-05-28T09:54:45
vercel/next.js
05d887dc3bc31f18c3e630ea052251a63a4f202c
c0ad169e17e181bb055a1bf4a3fec8920517af93
Fix error overlay links in parenthesis (#45155) Fixes https://github.com/vercel/next.js/issues/38362 Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "packages/react-dev-overlay/src/internal/container/Errors.tsx", "patch": "@@ -49,17 +49,20 @@ const HotlinkedText: React.FC<{\n }> = function HotlinkedText(props) {\n const { text } = props\n \n- const linkRegex = /https?:\\/\\/[^\\s/$.?#].[^\\s\"]*/i\n+ const linkRegex = /https?:\\/\\/[^\\s/$...
2023-01-24T04:09:11
electron/electron
ab652b738c6ae65e10fc549803ecff79b195120e
53b83eba8c7164169b0fd005c01b555c9996b6a6
mac: Should restart renderer when reloading Fixes #692.
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -135,7 +135,9 @@ - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen*)screen {\n }\n \n - (IBAction)reload:(id)sender {\n- shell_->GetWebContents()->GetController().ReloadIgnoringCache(false);\n+ content::WebContents* web_contents =...
2014-10-19T08:27:50
huggingface/transformers
defeb042993ab15f4aa0c6699903bb3f5ce56726
593276fe1e0534251900deb25b0215e9da015f36
Fix CircleCI not triggered when PR is opened from a branch of `huggingface/transformers` (#38413) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".circleci/config.yml", "patch": "@@ -43,16 +43,6 @@ jobs:\n parallelism: 1\n steps:\n - checkout\n- - run: python3 utils/extract_pr_number_from_circleci.py > pr_number.txt\n- - run: echo $(cat pr_number.txt)\n- - run: if [[ \"$(cat pr_n...
2025-05-28T09:25:43
nodejs/node
b7c1038d35cd401e95b2e9520ddc0b6d28aeff89
676bd5f0f4a847429486610c7b4a75803667705f
src: initialize pid variable before goto This fixes an error when compiling with clang-cl on Windows: ``` src/node.cc(2437,5): error: jump from this goto statement to its label is a Microsoft extension [-Werror,-Wmicrosoft-goto] goto out; ^ src/node.cc(2441,9): note: jump bypasses variable initialization ...
[ { "path": "src/node.cc", "patch": "@@ -2271,14 +2271,15 @@ static void DebugProcess(const FunctionCallbackInfo<Value>& args) {\n HANDLE mapping = nullptr;\n wchar_t mapping_name[32];\n LPTHREAD_START_ROUTINE* handler = nullptr;\n+ DWORD pid = 0;\n \n if (args.Length() != 1) {\n env->ThrowError(...
2018-09-19T21:25:04
vercel/next.js
98156d13ceab85847bfaabdc247f75c33564b27d
57d0e77f78d229929828b167691eb861e5292f14
fix: add src prefix on index page (#45150) Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "packages/create-next-app/templates/app/js/README-template.md", "patch": "@@ -14,7 +14,7 @@ pnpm dev\n \n Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n \n-You can start editing the page by modifying `app/page.jsx`. The page auto-updates as you edit the ...
2023-01-24T02:57:15
electron/electron
85afa851dd16d90260857068e96bb8c3dc8ee11a
57acdc1bf695e07a0eaeb1c316ddb7326d4d5b30
win: Fix toggling the menubar, closes #681
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -692,7 +692,10 @@ void NativeWindowViews::HandleKeyboardEvent(\n // When a single Alt is pressed:\n menu_bar_alt_pressed_ = true;\n } else if (event.type == blink::WebInputEvent::KeyUp && IsAltKey(event) &&\n- event.modifier...
2014-10-17T08:43:57
huggingface/transformers
593276fe1e0534251900deb25b0215e9da015f36
3aab6e95cbe785763b1c0cba80f01867120878cb
Update error when using additional and/or masks (#38429) update error
[ { "path": "src/transformers/masking_utils.py", "patch": "@@ -706,12 +706,12 @@ def create_causal_mask(\n # Allow slight deviations from causal mask\n if or_mask_function is not None:\n if not _is_torch_greater_or_equal_than_2_6:\n- raise ValueError(\"Using `or_mask_function` or `a...
2025-05-28T09:08:49
nodejs/node
676bd5f0f4a847429486610c7b4a75803667705f
f91716f5287d6f17ab4543a648f584cdbbdf6170
lib: make DOMException attributes configurable and enumerable The `name`, `message` and `code` attributes of the DOMException interface should be enumerable and configurable. Aligning the definition with the Web allows us to use it when running the Web Platform Tests. Refs: https://heycam.github.io/webidl/#idl-DOMExc...
[ { "path": "lib/internal/domexception.js", "patch": "@@ -44,7 +44,10 @@ class DOMException extends Error {\n }\n \n Object.defineProperties(DOMException.prototype, {\n- [Symbol.toStringTag]: { configurable: true, value: 'DOMException' }\n+ [Symbol.toStringTag]: { configurable: true, value: 'DOMException' }...
2018-08-27T09:00:54
vercel/next.js
57d0e77f78d229929828b167691eb861e5292f14
752136e84b34b8f29228173ab342decfd410feb8
chore: fix invalid-new-link error typo (#45157)
[ { "path": "errors/invalid-new-link-with-extra-anchor.md", "patch": "@@ -14,7 +14,7 @@ npx @next/codemod new-link .\n \n This will change `<Link><a id=\"link\">Home<a></Link>` to `<Link id=\"link\">Home</Link>`.\n \n-Alternatively, you can add the `legacyBehavior` prop `<Link legacyBehavior><a id=\"link\">Ho...
2023-01-24T01:06:50
golang/go
44f9a3566ce564f9a21b1b92940a520ea241e065
16e82be454cbf41299e6a055d54d489ca4612ee0
database/sql: fix deadlock test in prepare statement The issue go#46783 correctly diagnosed the context timeout caused an intermittent failure when the context was canceled prior to the BeginTx call. However due to the asynchronous nature of canceling a Tx through a context on fast systems, the tx.Prepare also succeed...
[ { "path": "src/database/sql/sql_test.go", "patch": "@@ -2841,7 +2841,6 @@ func TestTxStmtDeadlock(t *testing.T) {\n \tctx, cancel := context.WithCancel(context.Background())\n \tdefer cancel()\n \ttx, err := db.BeginTx(ctx, nil)\n-\tcancel()\n \tif err != nil {\n \t\tt.Fatal(err)\n \t}\n@@ -2850,6 +2849,7 @...
2021-06-21T16:11:20
huggingface/transformers
fb82a98717309c5b9b9683bf7f55dece70141cc1
cea254c909d956f3c4d09e297bb8802da5c05bfd
enable large_gpu and torchao cases on XPU (#38355) * cohere2 done Signed-off-by: Matrix Yao <matrix.yao@intel.com> * enable torchao cases on XPU Signed-off-by: Matrix YAO <matrix.yao@intel.com> * fix Signed-off-by: Matrix YAO <matrix.yao@intel.com> * fix Signed-off-by: Matrix YAO <matrix.yao@intel.com> * fix ...
[ { "path": "tests/models/cohere2/test_modeling_cohere2.py", "patch": "@@ -23,10 +23,11 @@\n from transformers import AutoModelForCausalLM, AutoTokenizer, Cohere2Config, is_torch_available, pipeline\n from transformers.generation.configuration_utils import GenerationConfig\n from transformers.testing_utils im...
2025-05-28T08:30:16
vercel/next.js
e6ff749aeec6a12364d7de0ab2c611c061741c5a
e33e46d9508baeb3e4c6cc244a4a2269003cf20e
Fix React.lazy preloading during SSR (#45160) ## Bug Previously the `React.lazy` and Loadable preloading are creating different module loading promises with loader. Now we change to wait the loader in `React.lazy` to make sure for SSR case they're preloaded. The case to trigger this bug is: When adding `Document.getI...
[ { "path": "packages/next/src/shared/lib/loadable.tsx", "patch": "@@ -68,8 +68,6 @@ function createLoadableComponent(loadFn: any, options: any) {\n options\n )\n \n- opts.lazy = React.lazy(opts.loader)\n-\n /** @type LoadableSubscription */\n let subscription: any = null\n function init() {\n@@ ...
2023-01-23T22:13:37
huggingface/transformers
baddbdd24ba5e7854318f40840fc1a261beacaf6
a974e3b4e1aaa40a2b8b1b857e897e1a013a49ce
[qwen-vl] Look for vocab size in text config (#38372) fix qwen
[ { "path": "src/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py", "patch": "@@ -1864,7 +1864,7 @@ class Qwen2_5_VLForConditionalGeneration(Qwen2_5_VLPreTrainedModel, GenerationMi\n def __init__(self, config):\n super().__init__(config)\n self.model = Qwen2_5_VLModel(config)\n- ...
2025-05-28T07:32:26
nodejs/node
f91716f5287d6f17ab4543a648f584cdbbdf6170
085dcf0e59fe8c16370a553dbc8c4b792b5d3f68
lib: set Symbol.toStringTag of DOMException PR-URL: https://github.com/nodejs/node/pull/22933 Refs: https://github.com/nodejs/node/pull/22550 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: G...
[ { "path": "lib/internal/domexception.js", "patch": "@@ -43,6 +43,10 @@ class DOMException extends Error {\n }\n }\n \n+Object.defineProperties(DOMException.prototype, {\n+ [Symbol.toStringTag]: { configurable: true, value: 'DOMException' }\n+});\n+\n for (const [name, codeName, value] of [\n ['IndexSiz...
2018-09-18T14:17:06
electron/electron
ae76657e17a32dba1a8da22e63ee8d76b1ae418c
4ca6ac34ac6aded0d08b789731e26e3a53a6d06b
Still requires unity for global app menubar Fixes #709 and atom/atom#3854.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -67,11 +67,13 @@ int kWindowsCreated = 0;\n bool ShouldUseGlobalMenuBar() {\n // Some DE would pretend to be Unity but don't have global application menu,\n // so we can not trust unity::IsRunning().\n- // When Unity's GlobalMenu is running ...
2014-10-17T08:04:35
huggingface/transformers
a974e3b4e1aaa40a2b8b1b857e897e1a013a49ce
b1eae943a2bc08b25bb73eee8f1f6cfcd66485a6
Fix an error in verify_tp_plan for keys without '.' (#38420)
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -900,7 +900,7 @@ def verify_tp_plan(expected_keys: list[str], tp_plan: Optional[dict[str, str]]):\n unused_rules = tp_plan\n \n for key in generic_keys:\n- param_name, _ = key.rsplit(\".\", 1) if \".\" in key else key\...
2025-05-28T07:30:43
vercel/next.js
e33e46d9508baeb3e4c6cc244a4a2269003cf20e
095a3c4b27ce9f620244368478073d826eae4821
Fix dynamic no ssr with babel transform (#45091)
[ { "path": "packages/next/src/build/babel/plugins/react-loadable-plugin.ts", "patch": "@@ -114,6 +114,7 @@ export default function ({\n | BabelTypes.ObjectProperty\n | BabelTypes.ObjectMethod\n | BabelTypes.SpreadElement\n+ | BabelTypes.BooleanLiteral\n ...
2023-01-23T21:39:47
golang/go
16e82be454cbf41299e6a055d54d489ca4612ee0
2e542c3c061950dbaf202645fb00bcf4aa5861a0
runtime: fix crash during VDSO calls on PowerPC This patch reinstates a fix for PowerPC with regard to making VDSO calls while receiving a signal, and subsequently crashing. The crash happens because certain VDSO calls can modify the r30 register, which is where g is stored. This change was reverted for PowerPC becaus...
[ { "path": "src/runtime/signal_unix.go", "patch": "@@ -382,7 +382,7 @@ func preemptM(mp *m) {\n //go:nosplit\n func sigFetchG(c *sigctxt) *g {\n \tswitch GOARCH {\n-\tcase \"arm\", \"arm64\":\n+\tcase \"arm\", \"arm64\", \"ppc64\", \"ppc64le\":\n \t\tif !iscgo && inVDSOPage(c.sigpc()) {\n \t\t\t// When using...
2021-06-17T20:22:40
nodejs/node
8c502f54cec557959861d0ec837ad30b020c1dca
df9abb638dbaeac73f191d55088ceea90bb0590b
crypto: add API for key pair generation This adds support for RSA, DSA and EC key pair generation with a variety of possible output formats etc. PR-URL: https://github.com/nodejs/node/pull/22660 Fixes: https://github.com/nodejs/node/issues/15116 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna...
[ { "path": "doc/api/crypto.md", "patch": "@@ -1673,6 +1673,116 @@ Use [`crypto.getHashes()`][] to obtain an array of names of the available\n signing algorithms. Optional `options` argument controls the\n `stream.Writable` behavior.\n \n+### crypto.generateKeyPair(type, options, callback)\n+<!-- YAML\n+added...
2018-09-02T15:00:01
rust-lang/rust
390fc73ae737ef99fa109add85bbf60e53f1a983
0bdf0726cf77c95937aea1df408c9b18fe33f010
Fix new clippy lints
[ { "path": "src/consts.rs", "patch": "@@ -191,13 +191,11 @@ impl<'gcc, 'tcx> CodegenCx<'gcc, 'tcx> {\n // TODO(antoyo): check if it's okay that no link_section is set.\n \n let typ = self.val_ty(cv).get_aligned(align.bytes());\n- let global = self.declare_privat...
2025-05-07T15:32:31
huggingface/transformers
f5307272f531de6a4fec0f843480c4f46de0dfdf
a092f6babff31652137add179ba26d8b45c611aa
Falcon-H1 - Fix auto_docstring and add can_return_tuple decorator (#38260) Fix auto_docstring and add can_return_tuple
[ { "path": "src/transformers/models/falcon_h1/modeling_falcon_h1.py", "patch": "@@ -45,8 +45,7 @@\n from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel\n from ...processing_utils import Unpack\n-from ...utils imp...
2025-05-27T20:18:05
electron/electron
e4a71b86df23ce0376da7debf2ffbfccb488da82
4dd78480846557370dd53789d50e6cb0d6a81bcd
Caching object templates for Event, fixes #705
[ { "path": "atom/browser/api/event.cc", "patch": "@@ -11,6 +11,12 @@\n \n namespace mate {\n \n+namespace {\n+\n+v8::Persistent<v8::ObjectTemplate> template_;\n+\n+} // namespace\n+\n Event::Event()\n : sender_(NULL),\n message_(NULL),\n@@ -21,9 +27,14 @@ Event::~Event() {\n }\n \n ObjectTemplateB...
2014-10-17T05:46:32
vercel/next.js
f931a636e130cbeaf4f1913ada65b5a7968513cc
1fa16e6dee66b5a404f9135e5f9bf1a926f6fae6
Add debug info to static bailout message (#45192)
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -2210,6 +2210,7 @@ export default async function build(\n const exportOptions = {\n silent: false,\n buildExport: true,\n+ debugOutput,\n threads: config.experimental.cpus,\n pages...
2023-01-23T21:25:00
golang/go
2e542c3c061950dbaf202645fb00bcf4aa5861a0
ced0fdbad0655d63d535390b1a7126fd1fef8348
runtime/pprof: deflake TestMorestack more Apparently, TestMorestack is still flaky on darwin/arm64 builder after CL 307730. Let it spend more time in copying the stack. With this CL, on my Apple M1 machine it passes reliably in short mode for 1000 runs, and reliably gets 250+ samples in the 5-second interval in long m...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -623,15 +623,15 @@ func growstack1() {\n \n //go:noinline\n func growstack(n int) {\n-\tvar buf [8 << 16]byte\n+\tvar buf [8 << 18]byte\n \tuse(buf)\n \tif n > 0 {\n \t\tgrowstack(n - 1)\n \t}\n }\n \n //go:noinline\n-func use(x [8 << 16]byte) {}\n+f...
2021-06-21T16:09:43
nodejs/node
df9abb638dbaeac73f191d55088ceea90bb0590b
44f7c1df89a8cad4f773d80396f023893d60a37c
2018-09-20, Version 10.11.0 (Current) Notable changes: * fs * Fixed fsPromises.readdir `withFileTypes`. https://github.com/nodejs/node/pull/22832 * http2 * Added `http2stream.endAfterHeaders` property. https://github.com/nodejs/node/pull/22843 * util * Added `util.types.isBoxedPrimitive(value)`. htt...
[ { "path": "CHANGELOG.md", "patch": "@@ -31,7 +31,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.10.0\">10.10.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V10.md#10.11.0\">10.11.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V10.md#10.1...
2018-09-18T13:39:46
huggingface/transformers
a092f6babff31652137add179ba26d8b45c611aa
be7aa3210b4d78f382fd1831680143a4a6846c79
Update granite.md (#37791) * Update granite.md * Update docs/source/en/model_doc/granite.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/model_doc/granite.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/model_doc...
[ { "path": "docs/source/en/model_doc/granite.md", "patch": "@@ -9,62 +9,106 @@ Unless required by applicable law or agreed to in writing, software distributed\n an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the\n specific language governing p...
2025-05-27T19:55:15
electron/electron
a95679c212db9f638b96c7014b8fb49b1786ff08
b41d3561431059f8870915aa9e5724131e27835d
Enable mnemonics in menu, fixes atom/atom#3844
[ { "path": "atom/browser/api/atom_api_menu_views.cc", "patch": "@@ -17,7 +17,9 @@ MenuViews::MenuViews() {\n \n void MenuViews::Popup(Window* window) {\n gfx::Point cursor = gfx::Screen::GetNativeScreen()->GetCursorScreenPoint();\n- views::MenuRunner menu_runner(model(), views::MenuRunner::CONTEXT_MENU);\...
2014-10-16T13:22:22
vercel/next.js
a5bfc5a11346daafbf701a6479da1072615b8d61
9f9c9ea8072560af51c47dfaae7b9838138745dd
Update CODEOWNERS (#45178) Just adding myself as a codeowner ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Implements an exist...
[ { "path": ".github/CODEOWNERS", "patch": "@@ -1,7 +1,7 @@\n # Learn how to add code owners here:\n # https://help.github.com/en/articles/about-code-owners\n \n-* @timneutkens @ijjk @shuding @huozhi\n+* @timneutkens @ijjk @shuding @huozhi @feedthejim\n /.github/ @timneutkens @ijjk @shuding...
2023-01-23T14:28:58
golang/go
ced0fdbad0655d63d535390b1a7126fd1fef8348
7a5e7047a4606e1deab7d4adcf9f057c7f8ce88c
doc/go1.17: note deprecation of 'go get' for installing commands Fixes #43684 Change-Id: I8982f6816c002c71e62f37a926c8543e34b8b785 Reviewed-on: https://go-review.googlesource.com/c/go/+/329549 Trust: Jay Conrod <jayconrod@google.com> Reviewed-by: Bryan C. Mills <bcmills@google.com>
[ { "path": "doc/go1.17.html", "patch": "@@ -214,6 +214,16 @@ <h4 id=\"go-get\"><code>go</code> <code>get</code></h4>\n <code>environment</code> for details.\n </p>\n \n+<p><!-- golang.org/issue/43684 -->\n+ <code>go</code> <code>get</code> prints a deprecation warning when installing\n+ commands outside ...
2021-06-18T22:07:00
huggingface/transformers
be7aa3210b4d78f382fd1831680143a4a6846c79
587c1b0ed12e6fea646b691fcf0aeb397d2d766b
New bart model card (#37858) * Modified BART documentation wrt to issue #36979. * Modified BART documentation wrt to issue #36979. * fixed a typo. * Update docs/source/en/model_doc/bart.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/en/model_doc/bart.md Co-authore...
[ { "path": "docs/source/en/model_doc/bart.md", "patch": "@@ -14,116 +14,87 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# BART\n \n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=pytorch&logoColor=white\">\n-<im...
2025-05-27T18:51:41
nodejs/node
0623aabbe12cd288d82ef330654193a5edfcc3fa
2811ae48017828579928999e3c4f77fb4c32f77c
test: add tests to check error in dns.lookupService. Added tests to check error in dns.lookupService to increase coverage. PR-URL: https://github.com/nodejs/node/pull/22908 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Weijia Wang <starkwang@126.com> Review...
[ { "path": "test/parallel/test-dns-lookupService.js", "patch": "@@ -0,0 +1,20 @@\n+// Flags: --expose-internals\n+'use strict';\n+const common = require('../common');\n+const assert = require('assert');\n+const { internalBinding } = require('internal/test/binding');\n+const cares = internalBinding('cares_wra...
2018-09-17T08:57:08
golang/go
1de332996c25bf99bb31c82393dc018e6cec18ae
117ebe0f52efc5128a9c86722e07fe22cb65450d
doc/go1.17: document go/parser.SkipObjectResolution Documents the mode added in CL 306149 to skip object resolution. Fixes #46298 Change-Id: I6a14aaa00790f9f7e4e4ba17033355f5e878d74b Reviewed-on: https://go-review.googlesource.com/c/go/+/329009 Trust: Robert Findley <rfindley@google.com> Trust: Robert Griesemer <gri...
[ { "path": "doc/go1.17.html", "patch": "@@ -693,6 +693,16 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </dd>\n </dl><!-- go/format -->\n \n+<dl id=\"go/parser\"><dt><a href=\"/pkg/go/parser/\">go/parser</a></dt>\n+ <dd>\n+ <p><!-- CL 306149 -->\n+ The new <a href=\"/pkg/...
2021-06-17T16:28:53
vercel/next.js
9f9c9ea8072560af51c47dfaae7b9838138745dd
1dcf9816479c1cf73cbb923a51d4969b64c0dbc7
Add support for node: prefix when importing Node.js builtin modules (#45149) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -1349,6 +1349,7 @@ export default async function getBaseWebpackConfig(\n \n let webpackConfig: webpack.Configuration = {\n parallelism: Number(process.env.NEXT_WEBPACK_PARALLELISM) || undefined,\n+ ...(isNodeServer ? { externalsPre...
2023-01-23T13:16:35
huggingface/transformers
0f5a8243c4b3ed8ce5624977f06997ca517c68f8
f85fd904074c6bf791b19cc0b0fc505b9bf0a2c9
[tests] remove overload for deleted test (`test_offloaded_cache_implementation`) (#37896) * remove overload for deleted tests * make fixup
[ { "path": "tests/models/mllama/test_modeling_mllama.py", "patch": "@@ -17,7 +17,6 @@\n \n import pytest\n import requests\n-from parameterized import parameterized\n \n from transformers import (\n AutoProcessor,\n@@ -396,12 +395,6 @@ def test_sdpa_can_compile_dynamic(self):\n def test_model_paralle...
2025-05-27T15:45:15
electron/electron
dba2fa31b6fb9cb28c5b0565d5e7065c83b149c2
2de80571d88f1ce4805ba10feb01df924897ced4
Fix __dirname for page in asar package Fixes #694.
[ { "path": "atom/renderer/lib/init.coffee", "patch": "@@ -31,7 +31,7 @@ window.addEventListener 'unload', ->\n # Set the __filename to the path of html file if it's file: or asar: protocol.\n if window.location.protocol in ['file:', 'asar:']\n pathname =\n- if process.platform is 'win32'\n+ if proces...
2014-10-14T11:27:47
nodejs/node
ed35df7c7db90842f8322c36d41b60b65a1308b2
19ad6b8f72a9503d395d907bd9c190e816db3bed
lib: added common.restoreStderr(); to end of file Fixes: https://github.com/nodejs/node/issues/22472 Co-authored-by: Denys Otrishko <shishugi@gmail.com> PR-URL: https://github.com/nodejs/node/pull/22487 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Denys Otrishko <shishugi@gmail.com> Reviewed-By: Trivi...
[ { "path": "test/parallel/test-util-log.js", "patch": "@@ -25,6 +25,7 @@ const {\n hijackStdout,\n hijackStderr,\n restoreStdout,\n+ restoreStderr,\n } = require('../common/hijackstdio');\n const assert = require('assert');\n const util = require('util');\n@@ -63,3 +64,4 @@ tests.forEach(function(test...
2018-08-23T18:15:01
vercel/next.js
1dcf9816479c1cf73cbb923a51d4969b64c0dbc7
440560fbbb26d06233b41738c1e99e246291e7e7
Don't log suppressed error during export (#45100) Checks if we're exporting and skips to log the suppressed errors. Before ![image](https://user-images.githubusercontent.com/25056922/213746411-c1834b65-ebf5-4db5-91b7-e77c9707d78a.png) After ![image](https://user-images.githubusercontent.com/25056922/213746...
[ { "path": "packages/next/src/server/app-render.tsx", "patch": "@@ -184,6 +184,7 @@ export type RenderOptsPartial = {\n isBot?: boolean\n incrementalCache?: import('./lib/incremental-cache').IncrementalCache\n isRevalidate?: boolean\n+ nextExport?: boolean\n }\n \n export type RenderOpts = LoadCompone...
2023-01-23T07:28:30
nodejs/node
19ad6b8f72a9503d395d907bd9c190e816db3bed
92fd4fcd3d8496524e8ed1368314660b23d070bc
crypto: deprecate digest == null in PBKDF2 I assume that permitting digest === null was unintentional when digest === undefined was deprecated since their behavior was equivalent. The sha1 default for digest === null has somehow made it through refactoring of the PBKDF2 module multiple times, even though digest === un...
[ { "path": "doc/api/crypto.md", "patch": "@@ -1786,8 +1786,8 @@ otherwise `err` will be `null`. By default, the successfully generated\n `derivedKey` will be passed to the callback as a [`Buffer`][]. An error will be\n thrown if any of the input arguments specify invalid values or types.\n \n-If `digest` is ...
2018-09-14T11:02:44
electron/electron
74da83a0bb19df0f9822bb1289916a1e12e8beb6
643d1dcdd106f2b223095f1c3cd65e7b5955d7f4
Upgrade libchromiumcontent to fix node.lib
[ { "path": "script/lib/config.py", "patch": "@@ -4,7 +4,7 @@\n import sys\n \n BASE_URL = 'https://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '7e0bebc8666de8438c5baf4967fdabfc7646b3ed'\n+LIBCHROMIUMCONTENT_COMMIT = '9f5271d31e0f32eac5a20ef6f543e3f1d43ad645'\n \n A...
2014-10-13T15:26:13
rust-lang/rust
cd2dc67eadb6105790520223965deef6c5887f7a
891b8525477f5c41a9e56d7b70d64b41e7c344e3
run-make-support: set rustc dylib path for cargo wrapper Some run-make tests invoke Cargo via run_make_support::cargo(), but fail to execute correctly when rustc is built without rpath. In these setups, runtime loading of rustc’s shared libraries fails unless the appropriate dynamic library path is set manually. This...
[ { "path": "src/tools/run-make-support/src/external_deps/cargo.rs", "patch": "@@ -1,8 +1,11 @@\n use crate::command::Command;\n use crate::env_var;\n+use crate::util::set_host_compiler_dylib_path;\n \n /// Returns a command that can be used to invoke cargo. The cargo is provided by compiletest\n /// through ...
2025-05-07T14:32:46
huggingface/transformers
10ae443ec0c36ae219dc7a28e1044a1a89ed246b
80902ae9b108fd40fa6fcfbd0a188c0858b2b5b4
Fix Qwen2.5-VL Video Processor (#38366) * Update processing_qwen2_5_vl.py * Update processing_qwen2_5_vl.py * Update modular_qwen2_5_vl.py * Fix CI * Update modular_qwen2_5_vl.py * Update processing_qwen2_5_vl.py * Update video_processing_utils.py
[ { "path": "src/transformers/models/qwen2_5_vl/modular_qwen2_5_vl.py", "patch": "@@ -1013,10 +1013,12 @@ def __call__(\n image_grid_thw = image_inputs[\"image_grid_thw\"]\n \n if videos is not None:\n+ # pop fps in advance for passing kwargs validation\n+ fps = outpu...
2025-05-27T11:46:37
golang/go
460900a7b51f917888cb17608367979243178fe1
b73cc4b02b3801603b3ce0bcc57cf01d6aa9a4dd
os/signal: test with a significantly longer fatal timeout We've observed some occasional os-arch specific timeouts in signal.TestSignalTrace(). While the main purpose of a short timeout is to ensure the passing tests complete quickly, the unexpected failure path can tolerate waiting longer (the test is not intended to...
[ { "path": "src/os/signal/signal_test.go", "patch": "@@ -32,6 +32,11 @@ import (\n // The current value is set based on flakes observed in the Go builders.\n var settleTime = 100 * time.Millisecond\n \n+// fatalWaitingTime is an absurdly long time to wait for signals to be\n+// delivered but, using it, we (h...
2021-06-19T16:46:52