repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
7730ee1c3848d0e1a1fa6c0d43a4e7f700cc05a0
5b5c4c320988b06dc2e9a49e88390fb49310d2b6
Add request-async-storage to the shared layer (#49470) This should fix the `requestAsyncStorage not available` error. [Related report](https://vercel.slack.com/archives/C03S8ED1DKM/p1683553422581859).
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -89,7 +89,7 @@ const babelIncludeRegexes: RegExp[] = [\n const reactPackagesRegex = /^(react|react-dom|react-server-dom-webpack)($|\\/)/\n \n const asyncStoragesRegex =\n- /next[\\\\/]dist[\\\\/]client[\\\\/]components[\\\\/](static-genera...
2023-05-08T19:33:55
huggingface/transformers
259d174e368e3b1d430712c605229321f30c7c13
38df1e946dea636e3dc5875b858fc77bb5fccaec
Fix Florence2 conversion script model_type KeyError (#41866) hopefully fixed florence2_language keyerror
[ { "path": "src/transformers/models/florence2/convert_florence2_original_pytorch_to_hf.py", "patch": "@@ -473,6 +473,9 @@ def convert_florence2_checkpoint(hf_model_id, pytorch_dump_folder, output_hub_pa\n \n vision_config = convert_config(hf_config.vision_config.__dict__)\n text_config = hf_config.te...
2025-10-29T13:07:30
rust-lang/rust
4780f21fe5b3f35c356a5c4a1d05ab3393d40e78
66060e64753b0ca41bda90130054e261fa5523be
Move error code explanation removal check into tidy
[ { "path": "src/ci/docker/host-x86_64/mingw-check-1/Dockerfile", "patch": "@@ -39,7 +39,6 @@ RUN pip3 install --no-deps --no-cache-dir --require-hashes -r /tmp/reuse-require\n \n COPY host-x86_64/mingw-check-1/check-default-config-profiles.sh /scripts/\n COPY host-x86_64/mingw-check-1/validate-toolstate.sh /...
2025-06-21T14:14:52
nodejs/node
d896f03578f2312aaae347de3b5a0b26882effc8
fcb98bb25bd201dad9689ba43397544e6964b629
2019-04-23, Version 12.0.0 (Current) Notable changes: * assert: * validate required arguments (Ruben Bridgewater) [#26641](https://github.com/nodejs/node/pull/26641) * adjust loose assertions (Ruben Bridgewater) [#25008](https://github.com/nodejs/node/pull/25008) * async_hooks: * remove deprec...
[ { "path": "CHANGELOG.md", "patch": "@@ -21,13 +21,17 @@ release.\n <!--lint disable maximum-line-length-->\n <table>\n <tr>\n+ <th title=\"Current\"><a href=\"doc/changelogs/CHANGELOG_V12.md\">12</a><sup>Current</sup></th>\n <th title=\"Current\"><a href=\"doc/changelogs/CHANGELOG_V11.md\">11</a><sup>Cur...
2019-03-22T13:19:46
golang/go
ac7e950d385b871ca28e1ac723d6ad97ebe3a4d7
c759ec228435e387a5c863b6b886b49a055fa80a
go/types: sort to reduce computational complexity of initOrder Our calculation of initOrder builds the dependency graph and then removes function nodes approximately at random. While profiling, I noticed that this latter step introduces a superlinear algorithm into our type checking pass, which can dominate type check...
[ { "path": "src/go/types/initorder.go", "patch": "@@ -7,6 +7,7 @@ package types\n import (\n \t\"container/heap\"\n \t\"fmt\"\n+\t\"sort\"\n )\n \n // initOrder computes the Info.InitOrder for package variables.\n@@ -184,6 +185,12 @@ type graphNode struct {\n \tndeps int // number of outstanding ...
2021-12-04T14:35:34
vercel/next.js
1c005eb303bbcd8a46df99bf2e50b2342103c698
660d531b6abe626752886e53ec7e4b6bdb9f09c9
Revert "Temporarily disable app dir export integration test" (#49311) - Reverts vercel/next.js#48291 - Fixes #49059 - TODO: move these tests to `./tests/e2e/*` to avoid flakes (that will be a follow up PR) fix NEXT-1092
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -3056,15 +3056,36 @@ export default async function build(\n if (config.output === 'export') {\n const exportApp: typeof import('../export').default =\n require('../export').default\n+\n+ const pagesWorker = createStati...
2023-05-08T17:38:33
huggingface/transformers
5462376a5c9d33963c5249668e1061ccc98dcbce
e6142ad8d26bde7a33ee57421ddac029dc48b763
Fix invalid examples in QwenVL model docstrings and add Qwen3VL example (#41812)
[ { "path": "src/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py", "patch": "@@ -1453,8 +1453,6 @@ def forward(\n Example:\n \n ```python\n- >>> from PIL import Image\n- >>> import requests\n >>> from transformers import AutoProcessor, Qwen2_5_VLForConditionalGenera...
2025-10-29T12:34:13
nodejs/node
eb23b176d8c7122af6add5ee38f87044288d3d39
bf5dadeef07250763948765e9902edd2ecee5448
src: enable context snapshot after running per-context scripts At build time, snapshot the context after running per-context scripts in the main instance, and in the final build, deserialize the context in the main instance. This provides a ~5% in the misc/startup benchmark when the instance is launched within a proc...
[ { "path": "src/node_main_instance.cc", "patch": "@@ -171,9 +171,13 @@ std::unique_ptr<Environment> NodeMainInstance::CreateMainEnvironment(\n isolate_->GetHeapProfiler()->StartTrackingHeapObjects(true);\n }\n \n- Local<Context> context = NewContext(isolate_);\n+ Local<Context> context;\n if (deser...
2019-04-20T09:18:34
golang/go
f5b5939c28ecb8b8c0897584fed78589c27348f6
46db6aa1573def4ba06dbf5c38e704d85dc303b6
build: for default bootstrap, use Go 1.17 if present, falling back to Go 1.4 Preparation for #44505, but safe for Go 1.18. Also fixes the default build on Macs, at least for people who have a $HOME/go1.17 or have run go install golang.org/dl/go1.17@latest go1.17 download Replay of CL 369914 after revert in CL 3701...
[ { "path": "src/cmd/dist/buildtool.go", "patch": "@@ -93,10 +93,21 @@ var ignoreSuffixes = []string{\n \t\"_test.go\",\n }\n \n+var tryDirs = []string{\n+\t\"sdk/go1.17\",\n+\t\"go1.17\",\n+}\n+\n func bootstrapBuildTools() {\n \tgoroot_bootstrap := os.Getenv(\"GOROOT_BOOTSTRAP\")\n \tif goroot_bootstrap == ...
2021-12-06T18:36:42
huggingface/transformers
4d0b6758b90aa54e4077171e6d42c55e0c01c622
2f9e3ae7f532f12ff16648fd956687354847e151
Fix: avoid duplicate token in maybe_load_adapters (#41903)
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -651,13 +651,15 @@ def maybe_load_adapters(\n \n _adapter_model_path = adapter_kwargs.pop(\"_adapter_model_path\", None)\n \n+ token_from_adapter_kwargs = adapter_kwargs.pop(\"token\", None)\n+\n if _adapter_model_path is None:\n ...
2025-10-28T15:07:23
vercel/next.js
054c29017a921d465fdbe68c711b7f81ba2da051
488fb32f487658506631d1305b384e7b1ecd33e4
Implement TaskInput derive macro (vercel/turbo#4828) This PR implements a `TaskInput` derive macro that allows users to define structures and enums that can be directly passed as arguments to `tt::function`s, provided they are composed exclusively of other `TaskInput` implementors (i.e. primitives for which we've manu...
[ { "path": "crates/turbo-tasks-macros-shared/src/expand.rs", "patch": "@@ -82,17 +82,20 @@ pub fn match_expansion<\n }\n \n /// Formats the fields of any structure or enum variant.\n-fn expand_fields<\n- EN: Fn(&Ident, &FieldsNamed) -> (TokenStream, TokenStream),\n- EU: Fn(&Ident, &FieldsUnnamed) -> (T...
2023-05-08T13:31:50
nodejs/node
af35d4044fd32922ce784afa6da98520ffbbf872
90cf2d5f008b59ee0cbe881b1835eaf6a6a77fe2
report: use uv_gettimeofday for dumpEventTimeStamp dumpEventTimeStamp was not implemented on Windows, and did not include any error checking. This commit adds Windows support and error checking. PR-URL: https://github.com/nodejs/node/pull/27029 Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "src/node_report.cc", "patch": "@@ -209,11 +209,14 @@ static void WriteNodeReport(Isolate* isolate,\n tm_struct.tm_min,\n tm_struct.tm_sec);\n writer.json_keyvalue(\"dumpEventTime\", timebuf);\n- struct timeval ts;\n- gettimeofday(&ts, nullptr);\n- writer.json_keyvalue(\...
2019-03-31T14:33:23
golang/go
46db6aa1573def4ba06dbf5c38e704d85dc303b6
3042ba34db86853c7035046716c4a00b2dbef2ed
runtime: fix flake in TestCgoPprofThread If the test's main goroutine receives a SIGPROF while creating the C-owned thread for the test, that sample will appear in the resulting profile. The root end of that stack will show a set of Go functions. The leaf end will be the C functions returned by the SetCgoTraceback han...
[ { "path": "src/runtime/crash_cgo_test.go", "patch": "@@ -314,7 +314,7 @@ func testCgoPprof(t *testing.T, buildArg, runArg, top, bottom string) {\n \tdefer os.Remove(fn)\n \n \tfor try := 0; try < 2; try++ {\n-\t\tcmd := testenv.CleanCmdEnv(exec.Command(testenv.GoToolPath(t), \"tool\", \"pprof\", \"-traces\"...
2021-12-07T21:32:24
electron/electron
ad9c2547309b765a9810184eec9c29edced6267f
26350f4ccb7783e3ec5d6f6ff3328c5ba56677e8
Styled the removeListener & removeAllListeners They were previously not written with the same style as other parts of the doc. Also there was a couple grammar errors
[ { "path": "docs/api/ipc-main.md", "patch": "@@ -53,30 +53,30 @@ The `ipcMain` module has the following method to listen for events:\n * `channel` String - The event name.\n * `callback` Function\n \n-When the event occurs the `callback` is called with an `event` object and a\n-message, `arg`.\n-\n-Once done...
2016-01-14T14:27:24
vercel/next.js
e15741dacae03d3ea7e74befeb9449f10a7dde5b
7e02f11e3ab24c4beef8552515d963a03cd1559f
Remove empty config warning (#49435) ## What? Removes the empty `next.config.js` warning. Given that `create-next-app` now ships with an empty config with the type definition comment the warning is no longer needed. ## How? Removed the warning, removed the tests. Fixes NEXT-1107
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -779,12 +779,6 @@ export default async function loadConfig(\n }\n }\n \n- if (Object.keys(userConfig).length === 0) {\n- curLog.warn(\n- `Detected ${configFileName}, no exported configuration found. https://nextjs.org/docs...
2023-05-08T08:58:14
nodejs/node
90cf2d5f008b59ee0cbe881b1835eaf6a6a77fe2
72308a5deb6e0fdb1e9c9e972d16cfe323b39661
deps: use nghttp2's config.h on all platforms Fix warnings about use of htonl(), etc. by including config.h for all platforms, defining HAVE_ARPA_INET_H on non-Windows, and therefore including <arpa/inet.h>, which defines the host to network byte order conversion functions. PR-URL: https://github.com/nodejs/node/pull...
[ { "path": "deps/nghttp2/lib/includes/config.h", "patch": "@@ -54,7 +54,9 @@ typedef intptr_t ssize_t;\n /* #undef NOTHREADS */\n \n /* Define to 1 if you have the <arpa/inet.h> header file. */\n-/* #undef HAVE_ARPA_INET_H */\n+#ifndef _WIN32\n+# define HAVE_ARPA_INET_H 1\n+#endif\n \n /* Define to 1 if you ...
2019-04-17T17:42:15
huggingface/transformers
8472ac683604fca316fa1e5bb10c82064dac7d1b
bf9171563725c263e9463a70e4e970f29a3eb49e
Fix installation cmds in docs (#41887) * doc fixes * Fix decorator * up * Revert changes
[ { "path": "AGENTS.md", "patch": "@@ -14,7 +14,7 @@ This AGENTS.md file provides guidance for code agents working with this codebase\n \n - PRs should be as brief as possible. Bugfix PRs in particular can often be only one or two lines long, and do not need large comments, docstrings or new functions in this...
2025-10-27T11:08:05
golang/go
2c85fcd47d6804d94a1fa4da65f756200ecf57a8
9fe77de3c198848b972915245e41ff26439b08aa
Revert "net: in (*netFD).dial, use the passed in local address if getsockname fails" This reverts CL 366536 Reason for revert: may have caused #50033 due to an invalid or partially-populated *TCPAddr Fixes #50033 Change-Id: Ia29ca4116503dba65d56e89caa46ba1c848d421a Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/net/server_test.go", "patch": "@@ -200,17 +200,9 @@ func TestUnixAndUnixpacketServer(t *testing.T) {\n \t\t\t\tif c == nil {\n \t\t\t\t\tpanic(\"Dial returned a nil Conn\")\n \t\t\t\t}\n-\t\t\t\trc := reflect.ValueOf(c)\n-\t\t\t\tif rc.IsNil() {\n+\t\t\t\tif rc := reflect.ValueOf(c); rc.Kind(...
2021-12-07T20:34:46
rust-lang/rust
269b67d6b8529850233b60817773b75c54206962
2313d4c5718957fd1ce7ae41edee253ca8975663
fix 142891
[ { "path": "compiler/rustc_middle/src/hir/map.rs", "patch": "@@ -1254,10 +1254,18 @@ pub(crate) fn hir_crate_items(tcx: TyCtxt<'_>, _: ()) -> ModuleItems {\n body_owners,\n opaques,\n nested_bodies,\n- delayed_lint_items,\n+ mut delayed_lint_items,\n ..\n } =...
2025-06-22T20:49:22
nodejs/node
b368571fba2bd7bceb18a3ef64d20769ca13bd27
aec2ce4ee11c766d4c7fcc532f794a758404a6c7
test: move known issue test to parallel As of libuv 1.28.0, this bug is fixed, and the test can be moved to parallel. This commit also updates an error code check to work on Windows. PR-URL: https://github.com/nodejs/node/pull/27241 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@br...
[ { "path": "test/parallel/test-fs-copyfile-respect-permissions.js", "patch": "@@ -23,7 +23,8 @@ function beforeEach() {\n fs.chmodSync(dest, '444');\n \n const check = (err) => {\n- assert.strictEqual(err.code, 'EACCES');\n+ const expected = ['EACCES', 'EPERM'];\n+ assert(expected.includes(err.c...
2019-04-15T15:43:56
huggingface/transformers
bf9171563725c263e9463a70e4e970f29a3eb49e
77e8b9f8dfc8e736ad2f603a5b2ae2b1076ed271
Fix torch.no_grad decorator in VLMS (#41888) Fix decorator
[ { "path": "src/transformers/models/emu3/modeling_emu3.py", "patch": "@@ -1392,7 +1392,7 @@ def get_image_features(self, pixel_values: torch.FloatTensor, image_sizes: torch\n image_features = torch.split(image_features, split_sizes)\n return image_features\n \n- @torch.no_grad\n+ @torch...
2025-10-27T11:07:15
electron/electron
edbf1994dd6a00899ec8488ef8f76f6c7f5f007f
489539d62e4150c61d42600d847351d90cab7bae
docs - fix typo leading to bad link
[ { "path": "docs/tutorial/desktop-environment-integration.md", "patch": "@@ -35,7 +35,7 @@ are fine differences.\n Model ID][app-user-model-id], must be installed to the Start screen. Note,\n however, that it does not need to be pinned to the Start screen.\n * On Windows 7 and below, notifications are not su...
2016-01-13T16:52:07
golang/go
9fe77de3c198848b972915245e41ff26439b08aa
08025a9d6d7d33f3ac0c78b4d067bdc339225507
debug/buildinfo: update test for CL 369977 As a side effect of the changes in cmd/go/internal/work in CL 369977, binaries built in GOPATH mode now include rudimentary build metadata for at least the package path and compiler in use. That seems like a strict improvement, but the test needs to be updated to reflect the...
[ { "path": "src/debug/buildinfo/buildinfo_test.go", "patch": "@@ -177,7 +177,9 @@ func TestReadFile(t *testing.T) {\n \t\t{\n \t\t\tname: \"valid_gopath\",\n \t\t\tbuild: buildWithGOPATH,\n-\t\t\twant: \"go\\tGOVERSION\\n\",\n+\t\t\twant: \"go\\tGOVERSION\\n\" +\n+\t\t\t\t\"path\\texample.com/m\\n\" +\n+\t...
2021-12-08T14:49:04
rust-lang/rust
2313d4c5718957fd1ce7ae41edee253ca8975663
22be76b7e259f27bf3e55eb931f354cd8b69d55f
test for lint on root node crash
[ { "path": "tests/ui/attributes/lint_on_root.rs", "patch": "@@ -0,0 +1,3 @@\n+#![inline = \"\"]\n+\n+fn main() {}", "additions": 3, "deletions": 0, "language": "Rust" } ]
2025-06-22T20:45:28
vercel/next.js
7e02f11e3ab24c4beef8552515d963a03cd1559f
173381a57239e25291116f12b522ccdc64e42624
Upgrade React to 18.3.0-canary-16d053d59-20230506 (#49402) Fixes a bug where `useFormStatus` crashed during SSR. Includes the following upstream changes: - [16d053d59](https://github.com/facebook/react/commits/16d053d59) Add useFormStatus to server rendering stub ([#26788](https://github.com/facebook/react/pull/2678...
[ { "path": "package.json", "patch": "@@ -197,14 +197,14 @@\n \"random-seed\": \"0.3.0\",\n \"react\": \"18.2.0\",\n \"react-17\": \"npm:react@17.0.2\",\n- \"react-builtin\": \"npm:react@18.3.0-canary-aef7ce554-20230503\",\n- \"react-experimental-builtin\": \"npm:react@0.0.0-experimental-aef...
2023-05-07T16:43:06
huggingface/transformers
7a833d1ccd41673030c85107f65f454c0c3222f5
8bde822a868bcc9fb156f8bd9b3e2b1aefffc480
:rotating_light: [`Clip`] Fix masking and enable flash attention on all model types (#41750) * fix * make kwargs fully passed and adjust with outputs xxx * propogate metaclip 2 * propogate mlcd and fix test * style * fix repo consistency, need to add ignore rules as those are building blocks * style * oops * f...
[ { "path": "src/transformers/models/clip/modeling_clip.py", "patch": "@@ -22,7 +22,7 @@\n from torch import nn\n \n from ...activations import ACT2FN\n-from ...modeling_attn_mask_utils import _create_4d_causal_attention_mask, _prepare_4d_attention_mask\n+from ...masking_utils import create_causal_mask\n from...
2025-10-24T18:44:10
nodejs/node
aec2ce4ee11c766d4c7fcc532f794a758404a6c7
2161690024862fbfc23c4e01d98199acb832f76b
deps: upgrade to libuv 1.28.0 Notable changes: - uv_gettimeofday() has been added. - Streaming readdir() via the uv_fs_{open,read,close}dir() methods. - A macOS copyfile() permissions bug has been fixed. - A bug in uv_interface_addresses() on machines with multiple interfaces has been fixed. Fixes: https://github....
[ { "path": "deps/uv/AUTHORS", "patch": "@@ -371,3 +371,8 @@ yeyuanfeng <yeyuanfeng@bytedance.com>\n erw7 <erw7.github@gmail.com>\n Thomas Karl Pietrowski <thopiekar@gmail.com>\n evgley <evgley@gmail.com>\n+Andreas Rohner <andreas.rohner@gmx.net>\n+Rich Trott <rtrott@gmail.com>\n+Milad Farazmand <miladfar@ca....
2019-04-15T15:28:16
electron/electron
44b8343585ff321bd6f5d88ac82ba55d5d40736d
af02739c4e1aea0a115e1bb0c3610d71c0ddf5ab
Fix crash when closing page with webview
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -280,15 +280,11 @@ WebContents::WebContents(v8::Isolate* isolate,\n }\n \n WebContents::~WebContents() {\n- if (type_ == WEB_VIEW && managed_web_contents()) {\n- // When force destroying the \"destroyed\" event is not emitted.\n+ // Th...
2016-01-13T06:47:39
golang/go
08025a9d6d7d33f3ac0c78b4d067bdc339225507
a19e72cb89fd33e5bf1474887e267806f65b7a40
cmd: go get golang.org/x/tools@fd2bfb7 (Dec 7 2021) cd src/cmd go get golang.org/x/tools@fd2bfb7 go mod tidy go mod vendor Brings in fixes to cmd/vet for 'any' changes. Change-Id: I70a48d451bd99f5d82f91fd079fbdd1b4bac2520 Reviewed-on: https://go-review.googlesource.com/c/go/+/370136 Trust: Russ Cox <rsc@golang.o...
[ { "path": "src/cmd/go.mod", "patch": "@@ -8,7 +8,7 @@ require (\n \tgolang.org/x/mod v0.6.0-dev.0.20211102181907-3a5865c02020\n \tgolang.org/x/sync v0.0.0-20210220032951-036812b2e83c\n \tgolang.org/x/term v0.0.0-20210927222741-03fcf44c2211\n-\tgolang.org/x/tools v0.1.8-0.20211202032535-e212aff8fd14\n+\tgola...
2021-12-07T22:09:41
huggingface/transformers
8bde822a868bcc9fb156f8bd9b3e2b1aefffc480
9bb51b311fd7d190a7a8b6fbe58be43c3e0c20ea
Fix TypeError: find_adapter_config_file() got an unexpected keyword argument '_adapter_model_path' (#41604) * Pass original dict instead of copy to maybe_load_adapters * Revert "Pass original dict instead of copy to maybe_load_adapters" This reverts commit 26fe1b3f35419fdc14932dfbda6bb39e4bdb9b34. * Return cleaned ...
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -628,7 +628,7 @@ def maybe_load_adapters(\n **adapter_kwargs,\n ):\n if pretrained_model_name_or_path is None or not is_peft_available():\n- return None, pretrained_model_name_or_path\n+ return None, pretrained_model_name_...
2025-10-24T17:52:14
vercel/next.js
173381a57239e25291116f12b522ccdc64e42624
9028a169acb04c208844582866c7317dfc336580
Fix error message about `preconnect` 📝 (#40360)
[ { "path": "errors/google-font-preconnect.md", "patch": "@@ -1,5 +1,7 @@\n # Google Font Preconnect\n \n+> Next.js automatically adds `<link rel=\"preconnect\" />` after version `12.0.1`.\n+\n > Ensure `preconnect` is used with Google Fonts.\n \n ### Why This Error Occurred\n@@ -20,3 +22,4 @@ Note: a **separ...
2023-05-07T00:05:07
nodejs/node
94adfe983194ce986774383d1b6832812f3446c7
19e3e02a2db996a3df36e00df6c6b57cec516c9e
lib: replace --diagnostic-report-* with --report-* In the code base the word `report` is almost only used to refer to the diagnostic report when it's a noun, and it's programmable interface `process.report()` it not prefixed, so `report` should be unambiguous enough to use without `diagnostic`. PR-URL: https://github...
[ { "path": "doc/api/cli.md", "patch": "@@ -106,57 +106,6 @@ should be written to. When used alone, it implies `--cpu-prof`.\n $ node --cpu-prof-path /tmp/test.cpuprofile index.js\n ```\n \n-### `--diagnostic-report-directory=directory`\n-<!-- YAML\n-added: v11.8.0\n--->\n-\n-Location at which the report will...
2019-04-19T15:12:28
golang/go
016e6ebb4264f4b46e505bb404953cdb410f63f2
34573aeb9717cf20d768e640c263b294df5318a4
cmd/go: fix references to old `go mod editwork` That is replaced by `go work edit`. Change-Id: I39996c7bea0182a18edf6a1f70b6616c74099a1b Reviewed-on: https://go-review.googlesource.com/c/go/+/370139 Reviewed-by: Michael Matloob <matloob@golang.org> Trust: Hyang-Ah Hana Kim <hyangah@gmail.com>
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1407,18 +1407,18 @@\n //\n // \tgo work edit [editing flags] [go.work]\n //\n-// Editwork provides a command-line interface for editing go.work,\n+// Edit provides a command-line interface for editing go.work,\n // for use primarily by tools or scripts. It on...
2021-12-07T22:50:50
vercel/next.js
061443f8043c164c9efe25b83eebe3a760c08f26
ef8fef1350a77659c1d6f52cd1085aa1be98710c
Fix issue where nextP is not replaced in searchParams (#49315) ## What? Fixes a bug with iterating over the searchParams while `delete` and `append` are used. This is the minimal example of what happened: ```js const searchParams = new URLSearchParams('a=valueA&b=valueB&c=valueC') for(const key of search...
[ { "path": "packages/next/src/server/web/adapter.ts", "patch": "@@ -97,7 +97,10 @@ export async function adapter(\n nextConfig: params.request.nextConfig,\n })\n \n- for (const key of requestUrl.searchParams.keys()) {\n+ // Iterator uses an index to keep track of the current iteration. Because of del...
2023-05-05T19:55:47
nodejs/node
e37eee2b1e032eaab198cbac33d87f6105d06aa3
e9fb92dc42b1cf7c3d9678965fe160e7600993f2
test: remove flaky designation for test-cli-node-options The test failure is not platform-specific and is the result of manual/human error. Some improvements may be possible, but there is nothing fundamentally unsound about the test insofar as when it fails in CI, there is a problem on the host that needs to be addres...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -25,8 +25,6 @@ test-http2-client-upload-reject: PASS,FLAKY\n [$system==macos]\n \n [$arch==arm || $arch==arm64]\n-# https://github.com/nodejs/node/issues/25028\n-test-cli-node-options: PASS,FLAKY\n # https://github.com/nodejs/node/issues/26610\n test-a...
2019-04-19T07:20:18
golang/go
0a15e7851a0ea1ebe1523bb70a6cfe56488ea2ef
a3ae45ebe1b3576428f5eb27347704b2d099eab0
runtime/pprof: assert that labelHog samples are always labeled With https://golang.org/issue/50007 resolved, there are no known issues with pprof labels remaining. Thus, the 10% allowed error in TestLabelSystemstack should not be required. Drop it in favor of an explicit assertion that all samples containing labelHog...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -1425,52 +1425,8 @@ func TestLabelRace(t *testing.T) {\n // TestLabelSystemstack makes sure CPU profiler samples of goroutines running\n // on systemstack include the correct pprof labels. See issue #48577\n func TestLabelSystemstack(t *testing.T) {\...
2021-12-06T22:26:32
rust-lang/rust
b946d0667740ea2a8727b08f22e807eea55fc118
111e9bc64bbdce14122e3676978f2ceefa5bff1a
phantom_variance_markers: fix identifier usage in macro This shouldn't have worked originally, as far as we can tell.
[ { "path": "library/core/src/marker/variance.rs", "patch": "@@ -18,7 +18,7 @@ macro_rules! phantom_type {\n pub struct $name:ident <$t:ident> ($($inner:tt)*);\n )*) => {$(\n $(#[$attr])*\n- pub struct $name<$t>($($inner)*) where T: ?Sized;\n+ pub struct $name<$t>($($inner)*)...
2025-06-22T22:31:39
vercel/next.js
ef8fef1350a77659c1d6f52cd1085aa1be98710c
75eccf7c7f64ef158220db47c35d2aa101288513
Fix link not being GC'd sometimes (#49318) The `app-link-gc` module should treat the link with just pathname as the href and full URL as the same resource. This avoids duplicate styles during HMR: <img width="482" alt="CleanShot 2023-05-05 at 18 12 12@2x" src="https://user-images.githubusercontent.com/3676859/23...
[ { "path": "packages/next/src/client/app-link-gc.ts", "patch": "@@ -15,9 +15,22 @@ export function linkGc() {\n if (href) {\n const [resource, version] = href.split('?v=')\n if (version) {\n- const allLinks = document.querySelectorAll(\n-...
2023-05-05T18:23:35
nodejs/node
7167eb2f12a5070c79d4373a0ac0010e6154c22e
0fc27f6bc0a5ca8bc2a6458ee61b78906840ea7e
test: increase coverage for dns.promises.lookup() Add coverage for uv_getaddrinfo() returning an error. PR-URL: https://github.com/nodejs/node/pull/27299 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-dns-lookup.js", "patch": "@@ -4,12 +4,14 @@ const common = require('../common');\n const assert = require('assert');\n const { internalBinding } = require('internal/test/binding');\n const cares = internalBinding('cares_wrap');\n+\n+// Stub `getaddrinfo` to *always* error. This...
2019-04-18T21:28:46
electron/electron
d674db6606032eaee53dc4112ad6c20a25628916
eb63e6b9a7f1db70be024987c34ec62ce75268f8
spec: Calling methods of destroyed webContents should not crash
[ { "path": "spec/api-browser-window-spec.coffee", "patch": "@@ -55,6 +55,12 @@ describe 'browser-window module', ->\n done()\n w.loadURL 'file://' + path.join(fixtures, 'api', 'close-beforeunload-false.html')\n \n+ describe 'BrowserWindow.destroy()', ->\n+ it 'prevents users to access metho...
2016-01-12T13:15:12
golang/go
cf1ec173603f950aaccb549602ed0fee57e6b709
e08d1fba37ad32fbe7e8d57cd75c9a88dfdde87f
cmd/compile: deal with unsatisfiable type assertion in some instantiations Deal with case where a certain instantiation of a generic function/method leads to an unsatisfiable type assertion or type case. In that case, the compiler was causing a fatal error while trying to create an impossible itab for the dictionary. ...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -846,14 +846,19 @@ func TypePtr(t *types.Type) *ir.AddrExpr {\n \treturn typecheck.Expr(typecheck.NodAddr(n)).(*ir.AddrExpr)\n }\n \n-// ITabLsym returns the LSym representing the itab for concreate type typ\n-// implementing interfac...
2021-12-07T00:30:19
vercel/next.js
75eccf7c7f64ef158220db47c35d2aa101288513
9bd00a8896c68d299cd8b04ab80789bfe52fedd6
make sure server component externals only apply to files resolvable by node (#49147) Fixes WEB-959
[ { "path": "packages/next-swc/crates/next-core/src/next_import_map.rs", "patch": "@@ -232,10 +232,6 @@ pub async fn get_next_server_import_map(\n request_to_import_mapping(project_path, \"next/dist/shared/lib/app-dynamic\"),\n );\n \n- for name in next_config.server_com...
2023-05-05T17:33:30
nodejs/node
290faec0e75f3f71dc9f742b875375c3be53703f
5356b4a675ff8cb5f7de0a0bfe08a385d8a6f203
doc: fix extname with the correct description PR-URL: https://github.com/nodejs/node/pull/27303 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
[ { "path": "doc/api/path.md", "patch": "@@ -157,9 +157,9 @@ changes:\n \n The `path.extname()` method returns the extension of the `path`, from the last\n occurrence of the `.` (period) character to end of string in the last portion of\n-the `path`. If there is no `.` in the last portion of the `path`, or if...
2019-04-19T05:21:37
electron/electron
26bd97d6cfd03cda3d12da0e144c21ee38beec35
edcd34d4ce6ea01ad547c8f2f941ade6b9c289df
Fix style issues of #4029
[ { "path": "atom/browser/api/atom_api_dialog.cc", "patch": "@@ -57,7 +57,7 @@ void ShowMessageBox(int type,\n &callback)) {\n atom::ShowMessageBox(window, (atom::MessageBoxType)type, buttons,\n default_id, cancel_id, options...
2016-01-11T13:12:07
huggingface/transformers
9bb51b311fd7d190a7a8b6fbe58be43c3e0c20ea
090a8946c6568c0e9440b09bc0c0c608e3a92986
Share embedding modules in BART, not only weights (#41821) * Share embedding modules in BART, not only weights Embedding modules are now shared between encoder, decoder and shared - it is the same module, like in the T5 implementation. This has the benefit that it does not matter which module is returned in `get_inp...
[ { "path": "src/transformers/models/bart/modeling_bart.py", "patch": "@@ -538,12 +538,12 @@ def __init__(self, config: BartConfig, embed_tokens: Optional[nn.Embedding] = No\n self.max_source_positions = config.max_position_embeddings\n embed_scale = math.sqrt(embed_dim) if config.scale_embedd...
2025-10-24T15:22:02
golang/go
daf901810553b0ccdd9562523ecfad7d11e9b001
2ebe081288377fa4e9f71b1dab8557a042a9a670
cmd/go: fix flaky test Change-Id: I641c7b8bcf8b9a8f0637995b26eea0fbe2900ef9 Reviewed-on: https://go-review.googlesource.com/c/go/+/369978 Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com> Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> ...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt", "patch": "@@ -1,3 +1,4 @@\n+[short] skip\n [!fuzz-instrumented] skip\n \n # Test that when an interesting value is discovered (one that expands coverage),\n@@ -15,7 +16,7 @@\n go test -c -fuzz=. # Build using shared build cache for ...
2021-12-07T18:50:51
huggingface/transformers
090a8946c6568c0e9440b09bc0c0c608e3a92986
4faf675232d01b99329aa8dfb32ab1aa2fba980b
Fix const parsing for dict inputs in chat schemas (#41824) * Fix const parsing for dict inputs * make fixup
[ { "path": "src/transformers/utils/chat_parsing_utils.py", "patch": "@@ -173,12 +173,12 @@ def recursive_parse(\n return parsed_schema\n elif isinstance(node_content, dict):\n for key, child_node in node_schema.get(\"properties\", {}).items():\n- if key in node_...
2025-10-24T14:14:06
electron/electron
e3d3cd1198380549259d0fc11e323d09ee257437
91ca84d1062c6b40fd225028e963fa0b2bbec584
docs: Update link of VS Community Also fix the version of VS requried. Close #3962.
[ { "path": "docs/development/build-instructions-windows.md", "patch": "@@ -5,8 +5,8 @@ Follow the guidelines below for building Electron on Windows.\n ## Prerequisites\n \n * Windows 7 / Server 2008 R2 or higher\n-* Visual Studio 2013 with Update 5 - [download VS 2013 Community Edition for\n- free](https://...
2016-01-11T12:52:32
nodejs/node
964174e339b4440923deee2ebec3872d4f89f160
8d901bb44e52077c4778261764892c959a94a6f2
tools,doc: fix 404 broken links in docs Change the `linkManPages()` function to catch the `uname` and `curl` correct websites on the docs page. PR-URL: https://github.com/nodejs/node/pull/27168 Fixes: https://github.com/nodejs/node/issues/26074 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgew...
[ { "path": "tools/doc/html.js", "patch": "@@ -120,6 +120,8 @@ function preprocessText() {\n \n // Syscalls which appear in the docs, but which only exist in BSD / macOS.\n const BSD_ONLY_SYSCALLS = new Set(['lchmod']);\n+const LINUX_DIE_ONLY_SYSCALLS = new Set(['uname']);\n+const HAXX_ONLY_SYSCALLS = new Set...
2019-04-10T03:30:03
golang/go
2ebe081288377fa4e9f71b1dab8557a042a9a670
b37a5391f9e452aa779205add12bd89f44e3fcf0
internal/fuzz: handle unrecoverable errors during minimization Previously, if an unrecoverable error occurred during minimization, then the input that caused the failure could not be retrieved by the coordinator. This was fine if minimizing a crash, since the coordinator could simply report the original error, and ign...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt", "patch": "@@ -17,12 +17,13 @@ env GOCACHE=$WORK/gocache\n exec ./fuzz.test$GOEXE -test.fuzzcachedir=$GOCACHE/fuzz -test.fuzz=FuzzMinCache -test.fuzztime=1000x\n go run check_cache.go $GOCACHE/fuzz/FuzzMinCache\n \n+go test -c -fuzz=....
2021-12-01T16:25:16
vercel/next.js
618dc2ee631ccc390cdfb6871c40e9ab2c50b627
25a9547cad82e2aea730ce646388786a0d4a0703
Fix require-hook with just pages on deploy (#49274)
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -283,8 +283,12 @@ export default async function build(\n \n const publicDir = path.join(dir, 'public')\n const isAppDirEnabled = !!config.experimental.appDir\n+ const { pagesDir, appDir } = findPagesDir(dir, isAppDirEnabled)\n+ ...
2023-05-05T10:40:23
huggingface/transformers
4faf675232d01b99329aa8dfb32ab1aa2fba980b
bb6028cb7938e33ec9e75a0b47b27a6b75584151
Fix Qwen2Audio flash attention mask format for generation (#41843) * Fix Qwen2Audio flash attention mask format for generation * use create_bidirectional_mask instead * fix * fix * empty * fix
[ { "path": "src/transformers/models/qwen2_audio/modeling_qwen2_audio.py", "patch": "@@ -25,6 +25,7 @@\n from ...activations import ACT2FN\n from ...cache_utils import Cache\n from ...generation import GenerationMixin\n+from ...masking_utils import create_bidirectional_mask\n from ...modeling_layers import Gr...
2025-10-24T12:45:48
nodejs/node
2e4ceb5747b0e5d1bccd79837de7731c4030dc48
49ee0100059ef252c3dd2372f9b3807a60cd80f8
util: access process states lazily in debuglog `debuglog()` depends on `process.pid` and `process.env.NODE_DEBUG`, so it needs to be called lazily in top scopes of internal modules that may be loaded before these run time states are allowed to be accessed. This patch makes its implementation lazy by default, the proce...
[ { "path": "lib/_stream_readable.js", "patch": "@@ -30,14 +30,7 @@ const EE = require('events');\n const Stream = require('stream');\n const { Buffer } = require('buffer');\n \n-let debuglog;\n-function debug(...args) {\n- if (!debuglog) {\n- debuglog = require('internal/util/debuglog').debuglog('stream'...
2019-04-17T15:45:53
golang/go
4300f105147dc0da9d1034704ad1cd24bedde5da
a08bbd964dd037331b2693aff731ec2d8376a721
build: for default bootstrap, use Go 1.17 if present, falling back to Go 1.4 Preparation for #44505, but safe for Go 1.18. Also fixes the default build on Macs, at least for people who have a $HOME/go1.17 or have run go install golang.org/dl/go1.17@latest go1.17 download Change-Id: I822f93e75498620fad87db243637614...
[ { "path": "src/cmd/dist/buildtool.go", "patch": "@@ -93,10 +93,21 @@ var ignoreSuffixes = []string{\n \t\"_test.go\",\n }\n \n+var tryDirs = []string{\n+\t\"sdk/go1.17\",\n+\t\"go1.17\",\n+}\n+\n func bootstrapBuildTools() {\n \tgoroot_bootstrap := os.Getenv(\"GOROOT_BOOTSTRAP\")\n \tif goroot_bootstrap == ...
2021-12-06T18:36:42
huggingface/transformers
bb6028cb7938e33ec9e75a0b47b27a6b75584151
7935b869dc93932b291c7962dccf07c13b47789f
Fix MXFP4 quantizer to support variable num_local_experts and hidden_size (#41795) Fix MXFP4 quantizer to support variable num_local_experts
[ { "path": "src/transformers/quantizers/quantizer_mxfp4.py", "patch": "@@ -383,6 +383,10 @@ def get_state_dict_and_metadata(self, model, safe_serialization: bool = False):\n \n state_dict = model.state_dict()\n \n+ # Get num_local_experts from model config\n+ num_local_experts = getattr...
2025-10-24T12:18:52
rust-lang/rust
45538e0beb220c86610ee8f650ee1ed8c6fc6b52
c2ec7532eed172e79800d28f087727c4b048badd
ci: aarch64-gnu: Stop skipping `panic_abort_doc_tests` The skipped test passes since nightly-2024-11-29. Let's stop skipping it to increase the chance of detecing a regression.
[ { "path": "src/ci/docker/host-aarch64/aarch64-gnu/Dockerfile", "patch": "@@ -26,6 +26,5 @@ ENV RUST_CONFIGURE_ARGS \\\n --enable-sanitizers \\\n --enable-profiler \\\n --enable-compiler-docs\n-# FIXME: Skipping cargo panic_abort_doc_tests due to https://github.com/rust-lang/rust/issues/123733\n ENV SCRIP...
2025-06-22T18:47:21
electron/electron
4f1be903c47ad1eca42a9ca6f666bfbe8911932c
595a3469d9c3cc0a9a45e1a02f75028c927ae895
Fix a document
[ { "path": "docs-translations/jp/README.md", "patch": "@@ -1,3 +1,27 @@\n+## FAQ\n+\n+頻繁に聞かれる質問がありますので、issueを作成する前にこれをチェックしてください。\n+\n+* [Electron FAQ](faq/electron-faq.md)\n+\n+\n+## ガイド\n+\n+* [サポートするプラットフォーム](tutorial/supported-platforms.md)\n+* [アプリケーションの配布](tutorial/application-distribution.md)\n+* [Mac...
2016-01-11T04:19:14
nodejs/node
b66f01d9037a120a8aad624c57e769fb418ccd9c
e0e308448240260c207958dfc3dd9245d903af85
test: skip test-cpu-prof in debug builds with code cache The CPU profiler crashes in debug builds when code cache is enabled. Skip the test temporarily until it's fixed. PR-URL: https://github.com/nodejs/node/pull/27308 Refs: https://github.com/nodejs/node/issues/27307 Reviewed-By: Anna Henningsen <anna@addaleax.net>...
[ { "path": "test/sequential/test-cpu-prof.js", "patch": "@@ -3,6 +3,13 @@\n // This tests that --cpu-prof and --cpu-prof-path works.\n \n const common = require('../common');\n+if (process.features.debug &&\n+ process.config.variables.node_code_cache_path === 'yes') {\n+ // FIXME(joyeecheung): the profiler...
2019-04-19T12:04:16
golang/go
e5ba7d3abf1e356f8cb7d760f95a389dd08c63ae
4c943abb95578da4bfd70d365814a130da8d5aa2
net/http: remove arbitrary timeout in TestServerHijackGetsBackgroundByte_big This test fails with "timeout" once per couple of months. It may be that the arbitrary timeout is too short, or it may be that the test is detecting a real bug (perhaps a deadlock) and reporting it without sufficient information to debug. Ei...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -5998,11 +5998,7 @@ func TestServerHijackGetsBackgroundByte_big(t *testing.T) {\n \t\tt.Fatal(err)\n \t}\n \n-\tselect {\n-\tcase <-done:\n-\tcase <-time.After(2 * time.Second):\n-\t\tt.Error(\"timeout\")\n-\t}\n+\t<-done\n }\n \n // Issue 18319: test tha...
2021-12-07T03:09:12
huggingface/transformers
c27efe6e65fb2dfe5cbbe00694908f471b06c8ae
8c291846f58fc9a4a51f50491e020eb5c27d9614
further reducing flakiness in `utils/check_bad_commit.py` (#41658) (#41815) * 111 * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "utils/check_bad_commit.py", "patch": "@@ -97,7 +97,17 @@ def is_bad_commit(target_test, commit):\n # Restore to original commit\n repo.git.checkout(original_head)\n \n- return result.returncode != 0\n+ n_passed = 0\n+ o = re.findall(r\"====.* (\\d+) passed\", result.stdout)\n+ ...
2025-10-24T09:36:01
vercel/next.js
25a9547cad82e2aea730ce646388786a0d4a0703
c881224eaec1f3aa5aca41b1c5a8e7837b148393
Remove experimental config from create-next-app (#49241) ## What? Removes `experimental.appDir` this was leftover from when I flipped the switch. Kept the config file as in the future we might add future flags and such. It also helps that it has the types comment included so you always get types. <!-- Than...
[ { "path": "packages/create-next-app/templates/app-tw/js/next.config.js", "patch": "@@ -1,8 +1,4 @@\n /** @type {import('next').NextConfig} */\n-const nextConfig = {\n- experimental: {\n- appDir: true,\n- },\n-}\n+const nextConfig = {}\n \n module.exports = nextConfig", "additions": 1, "deletion...
2023-05-05T07:22:28
huggingface/transformers
8c291846f58fc9a4a51f50491e020eb5c27d9614
beb71b757584b0f9ef3c493fa9de49dc54c33b1d
extend 2 blip2 and falcon_h1 test cases to xpu (#41825) * extend 2 blip2 and falcon_h1 test cases to xpu Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * xx Signed-off-by: Yao, Matrix <matrix.yao@intel.com> --------- Signed-off-by: Yao, Matrix <ma...
[ { "path": "tests/models/blip_2/test_modeling_blip_2.py", "patch": "@@ -28,7 +28,6 @@\n require_torch,\n require_torch_accelerator,\n require_torch_fp16,\n- require_torch_gpu,\n require_torch_multi_accelerator,\n require_vision,\n slow,\n@@ -1734,7 +1733,7 @@ def test_inference_t5_...
2025-10-24T09:15:15
golang/go
4c943abb95578da4bfd70d365814a130da8d5aa2
dc65c489cc5a795a68d844ed7a45e5d16562401d
runtime: fix comments on the behavior of SetGCPercent Fixes for #49680, #49695, #45867, and #49370 all assumed that SetGCPercent(-1) doesn't block until the GC's mark phase is done, but it actually does. The cause of 3 of those 4 failures comes from the fact that at the beginning of the sweep phase, the GC does try to...
[ { "path": "misc/cgo/test/testdata/issue9400_linux.go", "patch": "@@ -50,7 +50,9 @@ func test9400(t *testing.T) {\n \t// Disable GC for the duration of the test.\n \t// This avoids a potential GC deadlock when spinning in uninterruptable ASM below #49695.\n \tdefer debug.SetGCPercent(debug.SetGCPercent(-1))\...
2021-12-07T05:24:54
vercel/next.js
bf49f62cda65fae565bbb2b90052de780aa58b53
7fa4946b4254906f466cfe556ee00102b73b7b0c
Fix Server Actions defined in both layers in one entry (#49248) This fixes an existing bug where there're Server Actions defined in both the "server" and "client" layers (client imported Actions). They have the same worker name as they exist in one route entry, but they're built into different modules and compiled dif...
[ { "path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts", "patch": "@@ -48,6 +48,10 @@ export type ActionManifest = {\n workers: {\n [name: string]: string | number\n }\n+ // Record which layer the action is in (sc_server or sc_action), in the specific entry...
2023-05-04T21:25:21
electron/electron
da52017d82c56a44254e78058134ee6cae99f8db
df27cda36cb4fe04d122493897b69b9c8d6e1e51
Revert "fix chrome app and user path conflicts" This reverts commit 25aaafde45bd3ac7d9a82184f67b79874da73aa8.
[ { "path": "chromium_src/chrome/common/chrome_paths.h", "patch": "@@ -17,7 +17,7 @@ class FilePath;\n namespace chrome {\n \n enum {\n- PATH_START = 2000,\n+ PATH_START = 1000,\n \n DIR_APP = PATH_START, // Directory where dlls and data reside.\n DIR_LOGS, // Directory where...
2016-01-11T02:30:17
rust-lang/rust
b4568d9135e55cfc8739b465970aa636a0d45c1b
1f405735078ac34be300fd2bd7c532aaa0bb6fc5
Fix tests to drop now-skipped codegen
[ { "path": "tests/codegen-units/item-collection/instantiation-through-vtable.rs", "patch": "@@ -24,15 +24,13 @@ impl<T> Trait for Struct<T> {\n pub fn start(_: isize, _: *const *const u8) -> isize {\n let s1 = Struct { _a: 0u32 };\n \n- //~ MONO_ITEM fn std::ptr::drop_in_place::<Struct<u32>> - shim(No...
2025-06-14T14:36:53
huggingface/transformers
81b4f9882c8a46c8274084503d297874bb372260
2a3f66d9d28b070b5f52495dbeda010a2f5e3613
transformers serve quantization docs + some api fixes for bitsandbytes (#41253) * doc * fix api * fix * fix * fix * fix args * minor doc fix * fix * style * rm check for now * fix * style * Update docs/source/en/serving.md Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> * a...
[ { "path": "docs/source/en/serving.md", "patch": "@@ -383,6 +383,30 @@ transformers serve \\\n --attn_implementation \"sdpa\"\n ```\n \n+### Quantization\n+\n+transformers serve is compatible with all [quantization methods](https://huggingface.co/docs/transformers/main/quantization/overview) supported in t...
2025-10-23T16:00:54
golang/go
dc65c489cc5a795a68d844ed7a45e5d16562401d
e07b02ff87af594a68484dcb1e3a78d1c39abc56
cmd/go: fix tests broken in CL 358539 CL 358539 revised the build-stamp format, and updated the git and hg tests to match. However, the fossil and bzr tests were missed, and were not caught on the builders due to the fact that none of the builder images have the necessary VCS tools installed. Updates #48802 Updates #...
[ { "path": "src/cmd/go/testdata/script/version_buildvcs_bzr.txt", "patch": "@@ -31,14 +31,15 @@ cd ..\n env PATH=$oldpath\n rm .bzr\n \n-# If there is an empty repository in a parent directory, only \"uncommitted\" is tagged.\n+# If there is an empty repository in a parent directory, only \"modified\" is tag...
2021-12-06T22:25:34
vercel/next.js
7fa4946b4254906f466cfe556ee00102b73b7b0c
7f6e8dbeed1651667e6167975d59a99f2b3f5385
Apply basePath for metadata image (#49226) Fixes #49162 When user configures the `basePath` in `next.config.js`, we need to apply it to metadata image path resolving fix NEXT-1087
[ { "path": "packages/next/src/build/entries.ts", "patch": "@@ -553,6 +553,7 @@ export async function createEntrypoints(\n appDir,\n appPaths: matchedAppPaths,\n pageExtensions,\n+ basePath: config.basePath,\n assetPrefix: config.assetPrefix...
2023-05-04T19:50:13
rust-lang/rust
a7baff819d7034246a63c01b07038555097e0b5d
a30f1783fe136d92545423dd30b12eb619973cdb
Avoid panic when debug info is missing
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -465,11 +465,15 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n \n if let PlaceRef { local, projection: [] } = deref_base {\n let decl = &self.body.local_decls[local];\n+ let local_nam...
2025-06-22T15:49:38
huggingface/transformers
2a3f66d9d28b070b5f52495dbeda010a2f5e3613
ca01fe4d133a498a81bdfd335024d14801e106a2
Deprecate warmup_ratio (#41326) * dep * style * deprecate warmup_ratio * better * fix * Revert "style" This reverts commit cf4f9e7c4f7837a88eea6eeabf8b4dfe9455f6dc. * Revert "dep" This reverts commit 1800beb13f407ddb881d0af936860643e84ba085. * update version
[ { "path": "docs/source/en/optimizers.md", "patch": "@@ -154,7 +154,7 @@ pip install schedulefree\n \n [Schedule Free optimizer (SFO)](https://hf.co/papers/2405.15682) replaces the base optimizers momentum with a combination of averaging and interpolation. Unlike a traditional scheduler, SFO completely remov...
2025-10-23T15:17:21
electron/electron
f1d388fb36a3198763827f95f244930edbc011cd
c5dee6a3d8d724efc8c0f3b41abed23ff9ae801b
Fix failing test on Windows The exit code tests include an assert on the output we get from a spawned electron process. This doesn't currently work on Windows, so we skip it for now
[ { "path": "spec/api-app-spec.coffee", "patch": "@@ -44,7 +44,10 @@ describe 'app module', ->\n output = ''\n appProcess.stdout.on 'data', (data) -> output += data\n appProcess.on 'close', (code) ->\n- assert.notEqual output.indexOf('Exit event with code: 123'), -1\n+ # We ski...
2016-01-10T23:33:22
golang/go
e07b02ff87af594a68484dcb1e3a78d1c39abc56
0eb39ca1f0ca118e78648fb6844d35d0a96e5eee
net: in (*netFD).dial, use the passed in local address if getsockname fails 'man getsockname' lists a number of possible failure modes, including ENOBUFS (for resource exhaustion) and EBADF (which we could possibly see in the event of a bug or race condition elsewhere in the program). If getsockname fails for an expl...
[ { "path": "src/net/server_test.go", "patch": "@@ -200,9 +200,17 @@ func TestUnixAndUnixpacketServer(t *testing.T) {\n \t\t\t\tif c == nil {\n \t\t\t\t\tpanic(\"Dial returned a nil Conn\")\n \t\t\t\t}\n-\t\t\t\tif rc := reflect.ValueOf(c); rc.Kind() == reflect.Pointer && rc.IsNil() {\n+\t\t\t\trc := reflect....
2021-11-23T15:27:30
vercel/next.js
7f6e8dbeed1651667e6167975d59a99f2b3f5385
acd22802e08a352a244beaeba16b6082ac6813a3
Support incrementalCacheHandlerPath for standalone output (#48694) <!-- 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: ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -826,6 +826,8 @@ export default async function build(\n \n const manifestPath = path.join(distDir, SERVER_DIRECTORY, PAGES_MANIFEST)\n \n+ const { incrementalCacheHandlerPath } = config.experimental\n+\n const requiredServerFiles = ...
2023-05-04T19:37:29
huggingface/transformers
ca01fe4d133a498a81bdfd335024d14801e106a2
f780932e05bf3d240fc3c075fd9a07bf23ab30e4
transformers cli default flag fix (#41761)
[ { "path": "src/transformers/cli/run.py", "patch": "@@ -51,7 +51,7 @@ def run(\n Optional[str],\n typer.Option(help=\"Name of the column to use as input. For multi columns input use 'column1,columns2'\"),\n ] = None,\n- format: Annotated[FormatEnum, typer.Option(help=\"Input format to ...
2025-10-23T13:33:55
nodejs/node
758191033f8a50d54ebc21ff8fe640666ecd3236
02885dad5a7d20318fd061fdfcc593b0fe13459e
src: fix performance-faster-string-find in node_report.cc PR-URL: https://github.com/nodejs/node/pull/27262 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewe...
[ { "path": "src/node_report.cc", "patch": "@@ -340,7 +340,7 @@ static void PrintJavaScriptStack(JSONWriter* writer,\n String::Utf8Value sv(isolate, stackstr);\n ss = std::string(*sv, sv.length());\n }\n- int line = ss.find(\"\\n\");\n+ int line = ss.find('\\n');\n if (line == -1) {\n writer...
2019-04-16T14:36:53
electron/electron
56d1235bbdb95b87df8a39f9b1d7af47051196c8
9a707b7c69cb0d1a78dfcc56c8e0978f142acc56
Update supported-platforms.md Change a wrong word
[ { "path": "docs-translations/zh-CN/tutorial/supported-platforms.md", "patch": "@@ -20,7 +20,7 @@ Ubuntu 12.04 下编译的,`arm` 版的二进制文件是在 ARM v7(硬浮点\n Debian Wheezy 版本的 NEON)下完成的。\n \n 预编译二进制文件是否能够运行,取决于其中是否包括了编译平台链接的库,所以只有 Ubuntu 12.04\n-可以保证正常工作,但是以下的平台也被正事可以运行 Electron的预编译版本:\n+可以保证正常工作,但是以下的平台也被证实可以运行 Electron...
2016-01-10T07:43:25
golang/go
0eb39ca1f0ca118e78648fb6844d35d0a96e5eee
6f65d470d8b688573891420f7a428191d8c6cd49
cmd/dist: enable plugin test on Linux/ARM64 The test was skipped because with the old gold linker on the builder it fails with an internal error in gold. The builders now have gold 2.31 and the test passes. Enable it. Fixes #17138. Change-Id: Ia0054030dd12f1d003c7420bf7ed8b112715baa9 Reviewed-on: https://go-review.g...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1043,10 +1043,8 @@ func (t *tester) supportedBuildmode(mode string) bool {\n \t\t}\n \t\treturn false\n \tcase \"plugin\":\n-\t\t// linux-arm64 is missing because it causes the external linker\n-\t\t// to crash, see https://golang.org/issue/17138\n \t\tswitch ...
2021-12-06T23:41:49
huggingface/transformers
f780932e05bf3d240fc3c075fd9a07bf23ab30e4
e7c5a60368ba817640328a059c2b838f9e00a1dc
Fixed some grammar mistakes (#41802) Added spaces between words, fixed a typo and other errors
[ { "path": "docs/README.md", "patch": "@@ -24,7 +24,7 @@ pip install -e \".[dev]\"\n ```\n \n > [!NOTE]\n-> This command might fail for some OS that are missing dependencies. Check step 4 in [Create a Pull Request](https://github.com/huggingface/transformers/blob/main/CONTRIBUTING.md#create-a-pull-request) t...
2025-10-23T12:39:58
vercel/next.js
30f84e31b40343ca71d08177f69799a65fb25860
d24f506e0efb889c279be5793a3d06149fe0831f
Update dev logs to include request timings (#49191) This updates our dev logs to include request timings and also includes fetch timings in app directory to including info on whether the cache was leveraged or not allowing easier debugging of contributing factors to render times. In the future we can expand to incl...
[ { "path": "packages/next/src/build/output/log.ts", "patch": "@@ -1,13 +1,13 @@\n import chalk from '../../lib/chalk'\n \n export const prefixes = {\n- wait: chalk.cyan('wait') + ' -',\n- error: chalk.red('error') + ' -',\n- warn: chalk.yellow('warn') + ' -',\n- ready: chalk.green('ready') + ' -',\n- ...
2023-05-04T19:33:03
nodejs/node
02885dad5a7d20318fd061fdfcc593b0fe13459e
ed893111b9355615995689e7163870cb88366b28
test: add ability to skip common flag checks Currently, `common/index.js` checks that our test files are spawned with the flags specified in `// Flags:`, and re-spawns with them if they are not found. This can be *very* annoying, for example when debugging using debuggers that attach to the parent process, or when in...
[ { "path": "test/common/index.js", "patch": "@@ -51,6 +51,7 @@ const hasCrypto = Boolean(process.versions.openssl);\n // If the binary was built without-ssl then the crypto flags are\n // invalid (bad option). The test itself should handle this case.\n if (process.argv.length === 2 &&\n+ !process.env.NODE...
2019-04-16T11:01:33
huggingface/transformers
e7c5a60368ba817640328a059c2b838f9e00a1dc
91b5a680c050d56a395e4dd96eb1b48520bf752f
Fixed grammar mistakes (#41799) * Fixed grammar mistakes fixed a couple grammar mistakes * Update README.md * Change phrasing a bit more --------- Co-authored-by: Matt <Rocketknight1@users.noreply.github.com>
[ { "path": "README.md", "patch": "@@ -64,8 +64,8 @@ limitations under the License.\n <img src=\"https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/transformers_as_a_model_definition.png\"/>\n </h3>\n \n-Transformers acts as the model-definition framework for state-...
2025-10-23T12:34:02
golang/go
6f65d470d8b688573891420f7a428191d8c6cd49
79b425e9fca11d189142504bc81cf4e009092f6d
runtime: clean up redundant calls to SetGCPercent in debug_test.go SetGCPercent(-1) is called by several tests in debug_test.go (followed by a call to runtime.GC) due to #49370. However, startDebugCallWorker already actually has this, just without the runtime.GC call (allowing an in-progress GC to still mess up the te...
[ { "path": "src/runtime/debug_test.go", "patch": "@@ -34,12 +34,15 @@ func startDebugCallWorker(t *testing.T) (g *runtime.G, after func()) {\n \tskipUnderDebugger(t)\n \n \t// This can deadlock if there aren't enough threads or if a GC\n-\t// tries to interrupt an atomic loop (see issue #10958). We\n+\t// tr...
2021-12-06T22:53:35
vercel/next.js
d24f506e0efb889c279be5793a3d06149fe0831f
12a6827c5dd920aa7f3c42eabcac0ad7526e4c94
Fix serving images referenced from app directory (#49236) ### What? Fixes serving images that are referenced by JS files inside the `/app` directory. ### Why? ### How? The `NextImageContentSource` attempts to fetch the image out of it's inner content source, and before we were only providing it with the ...
[ { "path": "packages/next-swc/crates/next-dev/src/lib.rs", "patch": "@@ -389,10 +389,7 @@ async fn source(\n let main_source = main_source.into();\n let source_maps = SourceMapContentSourceVc::new(main_source).into();\n let source_map_trace = NextSourceMapTraceContentSourceVc::new(main_source).in...
2023-05-04T19:30:46
nodejs/node
8712edf53a5f71f183a6a49b364d2bcb439d00ff
7f29117de3329adf10e0d8911eaa7460968fa680
test: fix postmortem metadata test Recent changes to spawnSync (https://github.com/nodejs/node/pull/23027) broke our V8 postmortem tests since the output from nm was larger than the new default maxBuffer for spawnSync. Changing the maxBuffer to Infinity fixes the issue. PR-URL: https://github.com/nodejs/node/pull/272...
[ { "path": "test/v8-updates/test-postmortem-metadata.js", "patch": "@@ -21,7 +21,7 @@ if (common.isAIX)\n if (common.isOpenBSD)\n common.skip('no v8 debug symbols on OpenBSD');\n \n-const nm = spawnSync('nm', args);\n+const nm = spawnSync('nm', args, { maxBuffer: Infinity });\n \n if (nm.error && nm.error....
2019-04-16T23:27:28
electron/electron
943e46f3bd8eb4cfcf0df97218750bfc4856701c
224955d6ac4ecd8a23141705f0606bf1abcd3d8b
Fix linux and mac build errors
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -107,7 +107,6 @@ void TranslateOldOptions(v8::Isolate* isolate, v8::Local<v8::Object> options) {\n }\n }\n \n-#if defined(OS_WIN)\n // Converts binary data to Buffer.\n v8::Local<v8::Value> ToBuffer(v8::Isolate* isolate, void* val, int size) {\...
2016-01-07T22:27:53
huggingface/transformers
91b5a680c050d56a395e4dd96eb1b48520bf752f
d4562bb8aefed5a7d0e5b20e140e3640527f19e8
[Trainer] remove env vars (#41697) * remove env var * style * fix value * update * fix * style * fix * maybe this time * rm tests * fix
[ { "path": "src/transformers/trainer.py", "patch": "@@ -209,7 +209,6 @@\n \n if is_accelerate_available():\n from accelerate import Accelerator, skip_first_batches\n- from accelerate import __version__ as accelerate_version\n from accelerate.state import AcceleratorState\n from accelerate.util...
2025-10-23T12:17:20
golang/go
871d63fb73476bc3bf52ceec9aa8bef3ffc85d51
8ea0ffb84a5807438061d34256448df9948a3809
runtime: call runtime.GC in several tests that disable GC These tests disable GC because of the potential for a deadlock, but don't consider that a GC could be in progress due to other tests. The likelihood of this case was increased when the minimum heap size was lowered during the Go 1.18 cycle. The issue was then m...
[ { "path": "src/runtime/proc_test.go", "patch": "@@ -119,6 +119,9 @@ func TestGoroutineParallelism(t *testing.T) {\n \t// since the goroutines can't be stopped/preempted.\n \t// Disable GC for this test (see issue #10958).\n \tdefer debug.SetGCPercent(debug.SetGCPercent(-1))\n+\t// Now that GCs are disabled,...
2021-12-06T22:35:58
vercel/next.js
488fb32f487658506631d1305b384e7b1ecd33e4
2fdb8a93c3f6fa5fb91e925849abe1d13a285ac4
Rust daemon v2 (vercel/turbo#4791) ### Description This reintroduces the rust daemon with some additional patches to help with some critical shortcomings of the initial canary. In short: - kqueue performance is pretty awful and would gladly pin a core on your CPU for multiple minutes while registering watcher...
[ { "path": "crates/glob-match/benches/bench.rs", "patch": "@@ -17,7 +17,9 @@ fn globset(pat: &str, s: &str) -> bool {\n }\n \n fn glob_match_crate(b: &mut Criterion) {\n- b.bench_function(\"mine\", |b| b.iter(|| assert!(glob_match(GLOB, PATH))));\n+ b.bench_function(\"mine\", |b| {\n+ b.iter(|| assert!(...
2023-05-04T16:36:16
nodejs/node
d5bb500d0f21997c1b7a658c06f7f437be29fa78
3973354951007e352052d4d57989cf6c212d43d3
test: fix test-benchmark-buffer Using `len=2` in test-benchmark-buffer was resulting in a `RangeError` in buffer-base64-encode.js. Change to `len=256` which works in all buffer benchmarks. PR-URL: https://github.com/nodejs/node/pull/27260 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <ja...
[ { "path": "test/benchmark/test-benchmark-buffer.js", "patch": "@@ -13,7 +13,7 @@ runBenchmark('buffers',\n 'charsPerLine=6',\n 'encoding=utf8',\n 'endian=BE',\n- 'len=2',\n+ 'len=256',\n 'linesCount=1',\n ...
2019-04-16T15:26:39
huggingface/transformers
d4562bb8aefed5a7d0e5b20e140e3640527f19e8
e46c2ff32ef2c370b9214befacb0802e7ff97203
Fix Qwen3Next dtype API usage (#41735) Replace torch.get_current_dtype() with torch.get_default_dtype() to fix FLA compatibility
[ { "path": "src/transformers/models/qwen3_next/modeling_qwen3_next.py", "patch": "@@ -638,7 +638,7 @@ def __init__(self, config: Qwen3NextConfig, layer_idx: int):\n eps=self.layer_norm_epsilon,\n activation=self.activation,\n device=torch.cuda.current_device(),...
2025-10-23T12:02:02
electron/electron
3d908f1483e7034061197b614ca674ba7f000217
04d626f0b074704784869c107f0fe8319566bb0a
docs: Mention third party packing tools Fix #1723.
[ { "path": "docs/tutorial/application-distribution.md", "patch": "@@ -118,3 +118,11 @@ a Grunt task has been created that will handle this automatically:\n This task will automatically handle editing the `.gyp` file, building from\n source, then rebuilding your app's native Node modules to match the new\n ex...
2016-01-07T12:32:57
golang/go
765cc726b64044a55fb37d10a8bec1c153b06be5
c27a3592aec5f46ae18f7fd3d9ba18e69e2f1dcb
src/cmd/go/internal/work: lock Builder output mutex consistently To prevent interleaving of output when 'go build' compiles several packages in parallel, the output mutex in the Builder struct must be locked around any calls to Builder.Print which could generate arbitrary amounts of text (ie more than is guaranteed to...
[ { "path": "src/cmd/go/internal/work/buildid.go", "patch": "@@ -570,6 +570,8 @@ func showStdout(b *Builder, c *cache.Cache, actionID cache.ActionID, key string)\n \t\t\tb.Showcmd(\"\", \"%s # internal\", joinUnambiguously(str.StringList(\"cat\", c.OutputFile(stdoutEntry.OutputID))))\n \t\t}\n \t\tif !cfg.Bu...
2021-12-05T16:39:20
huggingface/transformers
e46c2ff32ef2c370b9214befacb0802e7ff97203
3b6ddbcb8882f2cf1caac0c3544439dae062bcdc
Add a safeguard around a flaky test in gemma2 (#41811) * Fix _compile flag in flex attn integration * Revert fix and add precaution around test
[ { "path": "tests/models/gemma2/test_modeling_gemma2.py", "patch": "@@ -34,6 +34,7 @@\n require_torch_accelerator,\n require_torch_large_accelerator,\n require_torch_large_gpu,\n+ run_test_using_subprocess,\n slow,\n torch_device,\n )\n@@ -136,6 +137,9 @@ def test_model_9b_pipeline_bf1...
2025-10-23T10:36:50
nodejs/node
3973354951007e352052d4d57989cf6c212d43d3
f98679f3b29383b504c5f79cf9bc5879efd3cb5d
benchmark: fix buffer-base64-decode.js 693401d0ddd752e5fa47b882e56e252c42c94c0e added stricter range checking for buffer operations and that apparently seems to have uncovered the fact that one of our benchmarks was overflowing a buffer. Increase the buffer size so the benchmark doesn't throw an error anymore. PR-URL...
[ { "path": "benchmark/buffers/buffer-base64-decode.js", "patch": "@@ -9,11 +9,12 @@ const bench = common.createBenchmark(main, {\n \n function main({ n, size }) {\n const s = 'abcd'.repeat(size);\n+ const encodedSize = s.length * 3 / 4;\n // eslint-disable-next-line node-core/no-unescaped-regexp-dot\n ...
2019-04-16T13:42:13
vercel/next.js
77ea7c06ea8b64b5f02c8720f9cc760e28bb3221
1db5a9133f65eb8635d89632d50889a0fad9d007
Fix metadata routes prerender cache for standalone mode (#49208) Fixes #48962 Fixes #49009 Fixes #49107 ### Why For standalone mode the `fs.readFile` is executed for `route.js` when the module is loaded, then the fs operation aginst the wrong file path will break the proper module loading, then it fallbacks...
[ { "path": "packages/next/src/build/webpack/loaders/next-metadata-route-loader.ts", "patch": "@@ -53,9 +53,10 @@ const resourceUrl = new URL(import.meta.url)\n const filePath = fileURLToPath(resourceUrl).replace(${JSON.stringify(\n METADATA_RESOURCE_QUERY\n )}, '')\n-const buffer = fs.readFileSync(file...
2023-05-04T14:31:46
electron/electron
04d626f0b074704784869c107f0fe8319566bb0a
3a32dc5da75471aa9036b05f17fe0148f9b4c6b2
docs: Document the display object Fix #3571.
[ { "path": "docs/api/screen.md", "patch": "@@ -54,6 +54,23 @@ app.on('ready', function() {\n });\n ```\n \n+## The `Display` object\n+\n+The `Display` object represents a physical display connected to the system. A\n+fake `Display` may exist on a headless system, or a `Display` may correspond to\n+a remote, ...
2016-01-07T12:21:11
golang/go
c27a3592aec5f46ae18f7fd3d9ba18e69e2f1dcb
7a840664fe9d8d4c11b943dba77c513dba5207a1
runtime: set iOS addr space to 40 bits with incremental pagealloc In iOS <14, the address space is strictly limited to 8 GiB, or 33 bits. As a result, the page allocator also assumes all heap memory lives in this region. This is especially necessary because the page allocator has a PROT_NONE mapping proportional to th...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1048,7 +1048,19 @@ func FreePageAlloc(pp *PageAlloc) {\n //\n // This should not be higher than 0x100*pallocChunkBytes to support\n // mips and mipsle, which only have 31-bit address spaces.\n-var BaseChunkIdx = ChunkIdx(chunkIndex(((0xc000*pageAlloc64Bi...
2021-08-23T17:27:40
huggingface/transformers
2c5b888c956eb47ef6d7c38fcbaf586ab760f1b7
0eb372ba1957f498d31c3af5bf9e31806087b56a
[`Onnx docs`] Remove some traces (#41791) fix
[ { "path": ".github/scripts/codeowners_for_review_action", "patch": "@@ -22,7 +22,6 @@ tests/generation/ @gante\n /src/transformers/models/auto/ @ArthurZucker\n /src/transformers/utils/ @ArthurZucker @Rocketknight1\n /src/transformers/loss/ @ArthurZucker\n-/src/transformers/onnx/ @michaelbenayoun\n \n # Spec...
2025-10-23T08:34:25
nodejs/node
2948e96afd7fde91ec39bb5434bad93760ccfe13
dc8b57fdc191dca0de4597b67f3f7d2a3def95d3
util: fix wrong usage of Error.prepareStackTrace The return value of Error.prepareStackTrace will become the result of Error.stack accesses. Setting Error.stack inside this callback relies on the fact that the magic get accessor detects the change in the middle of formatting, and is unnecessary in this instance. Refs...
[ { "path": "lib/internal/util.js", "patch": "@@ -347,7 +347,7 @@ function isInsideNodeModules() {\n // the perf implications should be okay.\n getStructuredStack = runInNewContext(`(function() {\n Error.prepareStackTrace = function(err, trace) {\n- err.stack = trace;\n+ return tra...
2019-04-16T06:55:44