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 | 50869f377fd72a921d27e3522a05604b7753b3ab | fa4df6597eb7ed07a9a835a8b68c37282709f79e | go/types, types2: report error for invalid string(1 << s)
For #45114.
Fixes #45117.
Change-Id: I71d6650ae2c4c06952fce19959120f15f13c08a2
Reviewed-on: https://go-review.googlesource.com/c/go/+/379256
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com> | [
{
"path": "src/cmd/compile/internal/types2/api_test.go",
"patch": "@@ -109,7 +109,6 @@ func TestValuesInfo(t *testing.T) {\n \t\t{`package c5d; var _ = string(65)`, `65`, `untyped int`, `65`},\n \t\t{`package c5e; var _ = string('A')`, `'A'`, `untyped rune`, `65`},\n \t\t{`package c5f; type T string; var _ ... | 2022-01-18T23:21:37 |
nodejs/node | eb4c1d5663ff7089badfeaf37dbe246df60607e9 | 12f5e0f8f84203e5b69c08906a898cea1313019c | doc: fix typo in pipe from async iterator example
PR-URL: https://github.com/nodejs/node/pull/27870
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anna Hennin... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -2487,7 +2487,7 @@ const writeable = fs.createWriteStream('./file');\n (async function() {\n for await (const chunk of iterator) {\n // Handle backpressure on write\n- if (!writeable.write(value))\n+ if (!writeable.write(chunk))\n await once(writ... | 2019-05-25T13:23:56 |
huggingface/transformers | 1ae4d917ed3badbdb1ffc167e0529f5a6d3c080d | 06d52fe106dc6922815dc25bfa156a9d78b16959 | Clean bnb integration using weight converter (#42426)
* clean bnb
* style
* let's go
* style
* torch
* Apply style fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -674,9 +674,6 @@ def convert_and_load_state_dict_in_model(\n \n renamings = [entry for entry in weight_mapping if isinstance(entry, WeightRenaming)]\n converters = [entry for entry in weight_mapping if isinstance(entry, WeightConverter... | 2025-11-26T20:28:07 |
vercel/next.js | 7953d66f7fddb5e32d37aa572c6e3b54cba0f273 | 859849b661b3f97adf3bb3ce27e02ea8cd00eb2b | fix `@vercel/turbopack-node` types by adding reference to compiled package (vercel/turbo#5141) | [
{
"path": "crates/turbopack-node/js/src/compiled/stacktrace-parser/package.json",
"patch": "@@ -1 +1 @@\n-{\"name\":\"stacktrace-parser\",\"main\":\"index.js\",\"author\":\"Georg Tavonius <g.tavonius@gmail.com> (http://jaz-lounge.com)\",\"license\":\"MIT\"}\n+{\"name\":\"stacktrace-parser\",\"main\":\"index... | 2023-05-31T14:12:28 |
electron/electron | 60f40a6704091706cf2cc0245d1e29a53a5980ea | 0794980d01454c697b22a4d277ab84fffa99476e | Fix linking error for Release build on Linux | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 4a1be58208fc89a2d56cd95aed4864158890b96b\n+Subproject commit 5077bee89dc3403982e9a5c59cc0a2218b2d4610",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2016-03-10T12:01:45 |
golang/go | fa4df6597eb7ed07a9a835a8b68c37282709f79e | 626f13d0ca08f04f98e7a29a08028c21e38868c0 | go/types, types2: avoid field/method lookup error on invalid types
Fixes #49541.
Change-Id: I27a52d0722a7408758682e7ddcd608c0a6c4881b
Reviewed-on: https://go-review.googlesource.com/c/go/+/378175
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com> | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -531,6 +531,11 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr) {\n \n \tobj, index, indirect = LookupFieldOrMethod(x.typ, x.mode == variable, check.pkg, sel)\n \tif obj == nil {\n+\t\t// Don't report another error if the... | 2022-01-12T22:01:44 |
nodejs/node | 42d80113bbd4ad5d790e061ea7568a04f0e900c6 | 3b50bded08c2cbcc652b79346121b4e39de231fc | doc,test: clarify that Http2Stream is destroyed after data is read
Correct docs to clarify that behaviour,
and fix a race condition in test-http2-large-write-destroy.js.
Fixes: https://github.com/nodejs/node/issues/27863
PR-URL: https://github.com/nodejs/node/pull/27891
Reviewed-By: Anna Henningsen <anna@addaleax.net... | [
{
"path": "doc/api/http2.md",
"patch": "@@ -907,8 +907,9 @@ the value is `undefined`, the stream is not yet ready for use.\n \n All [`Http2Stream`][] instances are destroyed either when:\n \n-* An `RST_STREAM` frame for the stream is received by the connected peer.\n-* The `http2stream.close()` method is ca... | 2019-05-26T11:12:41 |
vercel/next.js | 859849b661b3f97adf3bb3ce27e02ea8cd00eb2b | 4c5138e8c7c30d0d6280d7346279e17710032b1c | Fix `vdbg!` depth and JSON error messages (vercel/turbo#5138)
### Description
Two small fixes:
- The `vdbg!(vc; depth = 1)` macro would error out
- the expanded `__init` syntax wasn't updated in vercel/turbo#4995
- The JSON error message could panic if the line and/or column was `0`
- This comes up when try... | [
{
"path": "crates/turbo-tasks-fs/src/json.rs",
"patch": "@@ -47,7 +47,10 @@ impl UnparseableJson {\n Self {\n message: inner.to_string().into(),\n path: Some(e.path().to_string()),\n- start_location: Some((inner.line() - 1, inner.column() - 1)),\n+ start... | 2023-05-31T13:15:43 |
electron/electron | deb1abe15257d482d91b3363ee184afd280d2b09 | 5652af8e61bd4811981442bf84785e82e0a53dd0 | Fix linking error for Release build | [
{
"path": "brightray/vendor/libchromiumcontent",
"patch": "@@ -1 +1 @@\n-Subproject commit 881cf10e5255c3037d5624616fd7544c1e7252ae\n+Subproject commit 217af424022afea696510146cd0d3e6bba453771",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2016-03-10T12:00:49 |
rust-lang/rust | 0f93d8ae882e5488738c628e8c2952814e3fb526 | 9cd5826ba802ea05f65544e0175152d789a34c30 | ci: Fix up release workflow | [
{
"path": "src/tools/rust-analyzer/.github/workflows/ci.yaml",
"patch": "@@ -84,6 +84,7 @@ jobs:\n CC: deny_c\n \n strategy:\n+ fail-fast: false\n matrix:\n os: [ubuntu-latest, windows-latest, macos-latest]\n \n@@ -326,12 +327,12 @@ jobs:\n \n cancel-if-matrix-failed:\n ne... | 2025-06-28T08:21:44 |
huggingface/transformers | 06d52fe106dc6922815dc25bfa156a9d78b16959 | d2825a0219113897eef6487a7bdfd3012388ff3d | Simplify and standardize processor tests (#41773)
* remove attributes and add all missing sub processors to their auto classes
* remove all mentions of .attributes
* cleanup
* fix processor tests
* fix modular
* remove last attributes
* fixup
* fixes after merge
* fix wrong tokenizer in auto florence2
* fix m... | [
{
"path": "docs/source/en/model_doc/layoutxlm.md",
"patch": "@@ -70,6 +70,12 @@ data for the model.\n As LayoutXLM's architecture is equivalent to that of LayoutLMv2, one can refer to [LayoutLMv2's documentation page](layoutlmv2) for all tips, code examples and notebooks.\n </Tip>\n \n+\n+## LayoutXLMConfig... | 2025-11-26T17:40:37 |
golang/go | cf5d73e8a2ba8d382278c7f490db61e513768159 | 71888fe4b0d804f44371944f93f12442a6b0a862 | cmd/compile, go/types: restore 'too many return values' error for func with no results
Currently the code handles the case of returning values from
a function with no result parameters as a special case.
Consider this input:
package p
func f0_2() { return 1, 2 }
func f0_1() { return 1 }
fun... | [
{
"path": "src/cmd/compile/internal/types2/stmt.go",
"patch": "@@ -474,30 +474,28 @@ func (check *Checker) stmt(ctxt stmtContext, s syntax.Stmt) {\n \n \tcase *syntax.ReturnStmt:\n \t\tres := check.sig.results\n+\t\t// Return with implicit results allowed for function with named results.\n+\t\t// (If one is... | 2022-01-18T15:31:59 |
nodejs/node | d6cc6ab0376d5dd6a644313154ad84d94be58b2d | 2d8367a5c3dd4eff53c3b2c25967be90fe248885 | test: fix arguments order of comparsion functions
Place actual values as the first agruments and expected as the second.
PR-URL: https://github.com/nodejs/node/pull/27907
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihri... | [
{
"path": "test/parallel/test-http2-origin.js",
"patch": "@@ -96,7 +96,7 @@ const ca = readKey('fake-startcom-root-cert.pem', 'binary');\n client.on('origin', mustCall((origins) => {\n const check = checks.shift();\n originSet.push(...check);\n- deepStrictEqual(originSet, client.originS... | 2019-05-26T14:26:05 |
vercel/next.js | 6318d50a4a7387240fc1c3840619b520c4b2dfab | 0539b9c96e0e8d4a0ce1cd7a71b50fa5ed26cb43 | Fix global SCSS on Node.js <= 14 (#50185)
Fixes #45052. See the comments and related issue thread. | [
{
"path": "packages/next/src/build/webpack/config/blocks/css/index.ts",
"patch": "@@ -158,7 +158,17 @@ export const css = curry(async function css(\n // Source maps are required so that `resolve-url-loader` can locate\n // files original to their source directory.\n sourceMap: true,\... | 2023-05-30T22:24:08 |
electron/electron | cadd1969d9ecb6a2bf4125f80de7778cb33d64ae | 20466bad8f0434b0f978b2a4a90a6e7f761fbcda | Fix compilation errors on Windows | [
{
"path": "chromium_src/chrome/browser/ui/views/color_chooser_win.cc",
"patch": "@@ -9,8 +9,10 @@\n #include \"chrome/browser/ui/views/color_chooser_dialog.h\"\n #include \"content/public/browser/color_chooser.h\"\n #include \"content/public/browser/render_view_host.h\"\n+#include \"content/public/browser/r... | 2016-03-10T06:57:03 |
huggingface/transformers | d2825a0219113897eef6487a7bdfd3012388ff3d | 0a1d5ad3be78897bccd2cc778d9cd036843c5d5c | Bart config doesn't need generation parameters (#42337)
* fix bart and mvp
* nits and fixes
* style
---------
Co-authored-by: vasqu <antonprogamer@gmail.com> | [
{
"path": "src/transformers/generation/configuration_utils.py",
"patch": "@@ -436,6 +436,13 @@ def __init__(self, **kwargs):\n self._commit_hash = kwargs.pop(\"_commit_hash\", None)\n self.transformers_version = kwargs.pop(\"transformers_version\", __version__)\n \n+ # Ensure backward... | 2025-11-26T16:33:19 |
golang/go | 71888fe4b0d804f44371944f93f12442a6b0a862 | 46f138f288cf5c8a34cf5688cb6bea9deafb4f84 | doc/go1.18: add a release note for 'go mod tidy' checksum changes
Updates #47738
Fixes #49598
Change-Id: I708dcb880a701699116227a9eaca994cf460fef9
Reviewed-on: https://go-review.googlesource.com/c/go/+/378577
Trust: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
Trust: Daniel Martí <mvd... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -300,6 +300,16 @@ <h3 id=\"go-command\">Go command</h3>\n option <code>-fsanitize=address</code>).\n </p>\n \n+<p><!-- https://golang.org/issue/47738 -->\n+ The <code>go</code> <code>mod</code> <code>tidy</code> command now retains\n+ additional checksums in the... | 2022-01-14T16:46:42 |
nodejs/node | 2e9cd823255849d33871cf58231b81c12691f394 | ac95c2f0f12d71bb27502767c38c1e770a3ec25d | test: fix test-http2-multiheaders-raw
Arguments of deepStrictEqual were in incorrect order. Swap
first argument (actual value) with the second one (expected
value) to make the order correct.
PR-URL: https://github.com/nodejs/node/pull/27885
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Anna Hennings... | [
{
"path": "test/parallel/test-http2-multiheaders-raw.js",
"patch": "@@ -34,7 +34,7 @@ server.on('stream', common.mustCall((stream, headers, flags, rawHeaders) => {\n 'foo, bar, baz'\n ];\n \n- assert.deepStrictEqual(expected, rawHeaders);\n+ assert.deepStrictEqual(rawHeaders, expected);\n stream.r... | 2019-05-26T10:39:51 |
huggingface/transformers | 96c41be562d43785d07744924c2f1e96bc7d6884 | f77950605e2f2f27613b829559b133c2b9fd8912 | fixed json syntax error for zero2 configuration file found in deepspeed.md (#42406) | [
{
"path": "docs/source/en/deepspeed.md",
"patch": "@@ -196,7 +196,7 @@ ZeRO-2 shards the optimizer and gradient states across GPUs. This stage is prima\n \"overlap_comm\": true,\n \"reduce_scatter\": true,\n \"reduce_bucket_size\": 5e8,\n- \"contiguous_gradients\": true\n+ ... | 2025-11-26T14:32:52 |
electron/electron | 20466bad8f0434b0f978b2a4a90a6e7f761fbcda | 89f17e0bafcd371dab2513559167fc1b370c5ea8 | Fix cpplint warnings | [
{
"path": "atom/browser/ui/win/taskbar_host.cc",
"patch": "@@ -138,8 +138,8 @@ bool TaskbarHost::SetOverlayIcon(\n \n base::win::ScopedHICON icon(\n IconUtil::CreateHICONFromSkBitmap(overlay.AsBitmap()));\n- return SUCCEEDED(\n- taskbar_->SetOverlayIcon(window, icon.get(), base::UTF8ToUTF16(te... | 2016-03-10T05:45:19 |
vercel/next.js | 470e48c00197e382ed4d76591e8f3d17baee71de | e8bf78591ffb3149a1508a48d3c10ba10122e4b5 | Fix CSS duplication related problems (#50406)
This PR fixes a couple of categories of CSS issues in App Router, that
come from the same root cause.
### 1. Duplicated styles being loaded in different layers
This issue has been described in
https://github.com/vanilla-extract-css/vanilla-extract/issues/1088#issue... | [
{
"path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts",
"patch": "@@ -92,6 +92,66 @@ const pluginState = getProxiedPluginState({\n injectedClientEntries: {} as Record<string, string>,\n })\n \n+function deduplicateCSSImportsForEntry(mergedCSSimports: CssImports) {\n+ // If mult... | 2023-05-30T11:55:10 |
golang/go | 46f138f288cf5c8a34cf5688cb6bea9deafb4f84 | 75bcdd59635a33e2a210ef6b02f5e3814571de4b | cmd/compile, go/types: fix checking of bad type switch
Consider the following program:
package p
func f() {
x := 1
v := 2
switch v.(type) {
case int:
println(x)
println(x / 0)
case 1:
}
}
Before this CL, the compiler prints:
x.go:4:2: x declared but not used
x.go:6:9: v (variable of type int... | [
{
"path": "src/cmd/compile/internal/types2/stmt.go",
"patch": "@@ -305,7 +305,7 @@ L:\n \t\t\t}\n \t\t}\n \t\tseen[T] = e\n-\t\tif T != nil {\n+\t\tif T != nil && xtyp != nil {\n \t\t\tcheck.typeAssertion(e, x, xtyp, T, true)\n \t\t}\n \t}\n@@ -733,15 +733,16 @@ func (check *Checker) typeSwitchStmt(inner st... | 2022-01-18T15:49:57 |
huggingface/transformers | cb739f8610959c25faa798a0b6030ea930dcfe00 | a95d9975c8e9ba6366bb13e0b75d133c0cc49d98 | [core] fix mxfp4 (#42382)
* initial commit
* fix import
* fix
* add ops
* style
* decouple dequantize & deserialize logic
* up | [
{
"path": "src/transformers/integrations/mxfp4.py",
"patch": "@@ -18,13 +18,19 @@\n if is_torch_available():\n import torch\n from torch import nn\n+from typing import Optional\n+\n+from ..core_model_loading import ConversionOps\n+\n \n if is_accelerate_available():\n from accelerate import init... | 2025-11-26T11:16:33 |
nodejs/node | 4b74dae6b2601ee8be3b16fed48986f1be49f20a | e2c0c0c68074c539ae2ae30debdeafb9f94d989b | inspector: implement --heap-prof
In addition implements --heap-prof-name, --heap-prof-dir and
--heap-prof-interval.
These flags are similar to --cpu-prof flags but they are meant
for the V8 sampling heap profiler instead of the CPU profiler.
PR-URL: https://github.com/nodejs/node/pull/27596
Fixes: https://github.com/... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -245,6 +245,57 @@ new X();\n added: v12.0.0\n -->\n \n+### `--heap-prof`\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experimental\n+\n+Starts the V8 heap profiler on start up, and writes the heap profile to disk\n+before exit.\n+\n+If `--heap-prof-dir`... | 2019-04-23T03:47:28 |
electron/electron | 89f17e0bafcd371dab2513559167fc1b370c5ea8 | e3af5de7d74d7b107809705360f1107e16510bff | Create complete URLRequestContextGetter for URLRequestFetchJob
The trivial one is causing crashes. | [
{
"path": "atom/browser/net/js_asker.cc",
"patch": "@@ -16,7 +16,9 @@ namespace internal {\n namespace {\n \n // The callback which is passed to |handler|.\n-void HandlerCallback(const ResponseCallback& callback, mate::Arguments* args) {\n+void HandlerCallback(const BeforeStartCallback& before_start,\n+ ... | 2016-03-10T05:39:40 |
vercel/next.js | f85b45fb31730f2398bf8c1bdb2f565f7b858912 | 7adb273b02404949784f9211438e1d5d32e3b6ee | Optimize Next.js bootup compilation (#50379)
## What?
Currently we use the initial compile to add entrypoints that we know are
going to be used in the application. For example the Next.js runtime,
`react`, `react-dom`, and such. While this was the right default when
Next.js only had `pages`, it's no longer true ... | [
{
"path": "packages/next/src/build/analysis/get-page-static-info.ts",
"patch": "@@ -40,6 +40,7 @@ export interface PageStaticInfo {\n ssr?: boolean\n rsc?: RSCModuleType\n middleware?: Partial<MiddlewareConfig>\n+ amp?: boolean | 'hybrid'\n }\n \n const CLIENT_MODULE_LABEL =\n@@ -488,6 +489,7 @@ expo... | 2023-05-30T10:03:24 |
golang/go | d54f6630703900948d9757487a1bffd87b7d36e2 | 5b3ebc8b72f496a5c6892d76fdeee3d9029b55cc | cmd/go: remove the -buildinfo flag
Fixes #50501
(in a sense, by removing a flag that looks like it should do something
it does not)
Change-Id: I69ae4862706a6283cda4016fd43b361bb21557f9
Reviewed-on: https://go-review.googlesource.com/c/go/+/378576
Trust: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmill... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -135,19 +135,14 @@\n //\n // \t-asmflags '[pattern=]arg list'\n // \t\targuments to pass on each go tool asm invocation.\n-// \t-buildinfo\n-// \t\tWhether to stamp binaries with build flags. By default, the compiler name\n-// \t\t(gc or gccgo), toolchain flag... | 2022-01-14T16:23:59 |
huggingface/transformers | a95d9975c8e9ba6366bb13e0b75d133c0cc49d98 | 9c1082af99e1b290f9e17199ca0a9291dcbb0a1a | Many small fixes for the CI (#42364) | [
{
"path": "src/transformers/utils/generic.py",
"patch": "@@ -49,6 +49,12 @@\n _is_torch_available = True\n \n \n+# required for @can_return_tuple decorator to work with torchdynamo\n+_is_mlx_available = False\n+if is_mlx_available():\n+ _is_mlx_available = True\n+\n+\n # vendored from distutils.util\... | 2025-11-26T10:37:38 |
nodejs/node | e2c0c0c68074c539ae2ae30debdeafb9f94d989b | 73c16b11e006256c2d41e70e964a4960ba435759 | lib: rework logic of stripping BOM+Shebang from commonjs
Fixes https://github.com/nodejs/node/issues/27767
PR-URL: https://github.com/nodejs/node/pull/27768
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "lib/internal/bootstrap/pre_execution.js",
"patch": "@@ -338,7 +338,7 @@ function initializePolicy() {\n }\n \n function initializeCJSLoader() {\n- require('internal/modules/cjs/loader')._initPaths();\n+ require('internal/modules/cjs/loader').Module._initPaths();\n }\n \n function initializeESML... | 2019-05-19T03:48:46 |
huggingface/transformers | c12dfddba94c04fb6a5f5be4be879af51e354e2f | 47e795b874b5393802d5bb6ab17bda45183ef711 | [SAM3] Fix precompute vision_embeds or text_embeds for inference (#42407)
Fix precompute vision embeds or text_embeds for inference | [
{
"path": "docs/source/en/model_doc/sam3.md",
"patch": "@@ -256,6 +256,104 @@ SAM3 also provides semantic segmentation alongside instance masks:\n >>> print(f\"Semantic segmentation: {semantic_seg.shape}\")\n ```\n \n+### Efficient Multi-Prompt Inference on Single Image\n+\n+When running multiple text promp... | 2025-11-25T23:06:40 |
electron/electron | f4ec369873d9d22313361964c828bda41e3b32ac | 1c01e4955f1a854f339be2b67e71bd53654e8ef9 | More boring fixups | [
{
"path": "atom/browser/ui/message_box_win.cc",
"patch": "@@ -102,9 +102,9 @@ int ShowMessageBoxUTF16(HWND parent,\n \n base::win::ScopedHICON hicon;\n if (!icon.isNull()) {\n- hicon.Set(IconUtil::CreateHICONFromSkBitmap(*icon.bitmap()));\n+ hicon = IconUtil::CreateHICONFromSkBitmap(*icon.bitmap()... | 2016-03-09T19:27:16 |
golang/go | 5b3ebc8b72f496a5c6892d76fdeee3d9029b55cc | 897b3da2e079b9b940b309747305a5379fffa6ec | cmd/dist: avoid lapsing into x86 builds on ARM64 Macs
We use uname -m to decide the GOHOSTARCH default,
and on my ARM64 Mac laptop, uname -m prints x86_64.
uname -a prints:
Darwin p1.local 21.1.0 Darwin Kernel Version 21.1.0: Wed Oct 13 17:33:01 PDT 2021; root:xnu-8019.41.5~1/RELEASE_ARM64_T6000 x86_64
(Note the x8... | [
{
"path": "src/cmd/dist/main.go",
"patch": "@@ -94,7 +94,15 @@ func main() {\n \tif gohostarch == \"\" {\n \t\t// Default Unix system.\n \t\tout := run(\"\", CheckExit, \"uname\", \"-m\")\n+\t\toutAll := run(\"\", CheckExit, \"uname\", \"-a\")\n \t\tswitch {\n+\t\tcase strings.Contains(outAll, \"RELEASE_ARM... | 2022-01-16T17:58:45 |
vercel/next.js | 29c2e89bd11b644d6665652d3b5c0314fdb0cdc5 | 8e202610a4256a21f36fcb6f8cac965cc2c9be55 | Break up large test suites (#50458)
This breaks up some of our longest running tests which allows more
parallelizing of the tests. This also moves turbopack tests filtering
back to an allow list as it is running a lot of unrelated tests
currently which isn't ideal. We should only be running against tests
that are ... | [
{
"path": ".github/workflows/build_test_deploy.yml",
"patch": "@@ -655,7 +655,7 @@ jobs:\n name: next-swc-test-binary\n path: packages/next-swc/native\n \n- - run: docker run --rm -v $(pwd):/work mcr.microsoft.com/playwright:v1.28.1-jammy /bin/bash -c \"cd /work && NODE_VERSION=${{ ... | 2023-05-28T20:59:41 |
nodejs/node | 91ec5bf7ba78039b6ab856c87aa39e3b7ef77c7e | 9b7cd2b1bb89c2b48d944613fa8faaea3af4a21d | doc: fix for OutgoingMessage.prototype._headers/_headerNames
PR-URL: https://github.com/nodejs/node/pull/27574
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -1364,7 +1364,7 @@ The `NODE_REPL_MODE` environment variable is used to set the underlying\n removed. Please use `sloppy` instead.\n \n <a id=\"DEP0066\"></a>\n-### DEP0066: outgoingMessage.\\_headers, outgoingMessage.\\_headerNames\n+### DEP0066: OutgoingMe... | 2019-05-06T16:31:46 |
huggingface/transformers | b6055550a15a8fab367cf983b743ff68cc58d81a | 1ce12ac5de2d5d082825c7fab9d03ab5d110e400 | [`Mistral Tokenizers`] Fix tokenizer detection (#42389)
* fix
* sanity check
* style
* comments
* make it v5 explicit
* make explicit fixes possible in local tokenizers
* remove hub usage on local
* fix
* extend test for no config case
* move mistral patch outside to separate fn
* fix local path only
* add ... | [
{
"path": "src/transformers/tokenization_utils_base.py",
"patch": "@@ -2099,12 +2099,13 @@ def from_pretrained(\n template = template.removesuffix(\".jinja\")\n vocab_files[f\"chat_template_{template}\"] = f\"{CHAT_TEMPLATE_DIR}/{template}.jinja\"\n \n... | 2025-11-25T15:32:41 |
rust-lang/rust | 58418d881a91e9f37b0c8fd07f0218850725efda | e61dd437f33b5a640e67dc3628397689c664c17f | Fix rustdoc not correctly showing attributes with re-exports
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com> | [
{
"path": "src/librustdoc/clean/mod.rs",
"patch": "@@ -2746,7 +2746,8 @@ fn add_without_unwanted_attributes<'hir>(\n attrs.push((Cow::Owned(attr), import_parent));\n }\n }\n- hir::Attribute::Parsed(..) if is_inline => {\n+ // FIXME: make ... | 2025-06-27T10:29:26 |
electron/electron | e835111195d50e5bd861a01d954127c1388bd839 | 12e9b7ab884ff4e423c0ba9fd057b175daf18915 | More type fixups | [
{
"path": "chromium_src/chrome/browser/speech/tts_win.cc",
"patch": "@@ -87,7 +87,7 @@ bool TtsPlatformImplWin::Speak(\n // 0.1 -> -10\n // 1.0 -> 0\n // 10.0 -> 10\n- speech_synthesizer_->SetRate(static_cast<int32>(10 * log10(params.rate)));\n+ speech_synthesizer_->SetRate(static_cas... | 2016-03-09T19:16:12 |
golang/go | 897b3da2e079b9b940b309747305a5379fffa6ec | 3b5eec937018be98549dea7067964018f0e5824c | cmd/internal/obj/arm64: adjust rule for VMOVQ instruction
The VMOVQ instruction stores a 128-bit number into a V register, for
example:
VMOVQ $0x1122334455667788, $0x99aabbccddeeff00, V2
From a documentation (https://pkg.go.dev/cmd/internal/obj/arm64) point
of view, the value in V2 should be 0x112233445566778899aa... | [
{
"path": "src/cmd/internal/obj/arm64/asm7.go",
"patch": "@@ -1184,7 +1184,7 @@ func (c *ctxt7) addpool128(p *obj.Prog, al, ah *obj.Addr) {\n \tq := c.newprog()\n \tq.As = ADWORD\n \tq.To.Type = obj.TYPE_CONST\n-\tq.To.Offset = al.Offset\n+\tq.To.Offset = al.Offset // q.Pc is lower than t.Pc, so al.Offset i... | 2022-01-05T09:20:06 |
vercel/next.js | 8e202610a4256a21f36fcb6f8cac965cc2c9be55 | 3f164abd25e820ef337550b53f9a8994fb38b36e | App Router: fix relative query/hash handling in `next/link` and router push/replace (#49521)
## Problem
Relative hash/query handling in `next/link` (e.g. `<Link
href="#hello">`) is broken in App Router, especially if you're on a
nested route.
This wasn't a problem in `/pages` because the href always get fully
r... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -211,7 +211,7 @@ function Router({\n navigateType: 'push' | 'replace',\n forceOptimisticNavigation: boolean\n ) => {\n- const url = new URL(addBasePath(href), location.origin)\n+ const url = new URL(addBas... | 2023-05-28T17:29:00 |
huggingface/transformers | f13b1009c2e2a89cac919584f7b67bfe55d4e226 | 45d273d52c2c9ecbebfd213a54ededd0b609b13c | Xcodec fix (#42095)
* nit on dac!
* fix
* not for this pr
* make style | [
{
"path": "src/transformers/audio_utils.py",
"patch": "@@ -219,6 +219,18 @@ def load_audio_as(\n raise ValueError(f\"Error loading audio: {e}\")\n \n \n+def conv1d_output_length(module: \"torch.nn.Conv1d\", input_length: int) -> int:\n+ \"\"\"\n+ Computes the output length of a 1D convolution ... | 2025-11-25T14:39:01 |
nodejs/node | 1a96abe84912c4cbd4a53c7e8de874e457bebdd1 | 76b9cf5424d01b7449e3b4902d305d3a04f355ea | Revert "lib: print to stdout/stderr directly instead of using console"
This reverts commit 2b24ffae2240163a74ae11e49ee198e98abb07dc.
Fixes: https://github.com/nodejs/node/issues/27819
PR-URL: https://github.com/nodejs/node/pull/27823
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@add... | [
{
"path": "lib/fs.js",
"patch": "@@ -75,8 +75,7 @@ const {\n validateOffsetLengthRead,\n validateOffsetLengthWrite,\n validatePath,\n- warnOnNonPortableTemplate,\n- handleErrorFromBinding\n+ warnOnNonPortableTemplate\n } = require('internal/fs/utils');\n const {\n CHAR_FORWARD_SLASH,\n@@ -119,6 +... | 2019-05-22T16:54:34 |
electron/electron | d36b8bca86fa34d1589700cc2af02c99d012cc51 | 044daee086e77f1cd6bc13814e202b2945948efc | Fix compilation errors on Linux | [
{
"path": "atom/common/atom_command_line.h",
"patch": "@@ -9,6 +9,7 @@\n #include <vector>\n \n #include \"base/macros.h\"\n+#include \"build/build_config.h\"\n \n namespace atom {\n ",
"additions": 1,
"deletions": 0,
"language": "C/C++ Header"
},
{
"path": "atom/common/crash_reporter/li... | 2016-03-09T13:19:56 |
golang/go | 3b5eec937018be98549dea7067964018f0e5824c | a99c38d66381b2a6abbc0d9c88feb3f6291cb245 | runtime/race: be less picky about test run time
Currently, there are two regexps in the race detector output tests
that assume subtests will complete in < 1 second. This isn't necessary
and very occasionally fails (on builders that are probably very
loaded). Make these tests less picky about timing.
Fixes #50612.
Ch... | [
{
"path": "src/runtime/race/output_test.go",
"patch": "@@ -207,7 +207,7 @@ func TestFail(t *testing.T) {\n }\n `, []string{`\n ==================\n---- FAIL: TestFail \\(0...s\\)\n+--- FAIL: TestFail \\([0-9.]+s\\)\n .*main_test.go:14: true\n .*testing.go:.*: race detected during execution of test\n FAIL`}}... | 2022-01-14T18:11:36 |
huggingface/transformers | 59ed41e6a0c0b9ce7d7eaaa6fee513282f73bc86 | 5169c2364ba1ad2f555b83eac1b9065aa2955101 | Fix tp (#42368)
* up
* oups you need renamed key for merge moduleoist
* oups there was something I forgot
* update | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -745,7 +745,7 @@ def convert_and_load_state_dict_in_model(\n mapping.distributed_operation = tp_layer(\n device_mesh=device_mesh, rank=device_map[\"\"].index, empty_param=empty_param.clone()\... | 2025-11-25T09:58:50 |
nodejs/node | 76b9cf5424d01b7449e3b4902d305d3a04f355ea | 6f924b60c50d446b46b358a76d15b675a311002b | test: detect missing postmortem metadata
This commit updates test-postmortem-metadata to provide a
more useful error message in the scenario where Node is
compiled without postmortem support.
PR-URL: https://github.com/nodejs/node/pull/27828
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Michaël Zasso <tar... | [
{
"path": "test/v8-updates/test-postmortem-metadata.js",
"patch": "@@ -41,6 +41,9 @@ const symbols = nm.stdout.toString().split('\\n').reduce((filtered, line) => {\n \n return filtered;\n }, []);\n+\n+assert.notStrictEqual(symbols.length, 0, 'No postmortem metadata detected');\n+\n const missing = getExpe... | 2019-05-22T19:40:23 |
vercel/next.js | fe6bb0ace9017a67e2dbd888f5581d85545b65d7 | 27655dbba762aa00d90c30d48697d5870b2eb17d | Refactor internal modules (#50338)
### What?
create internal modules via `context.process` with
`ReferenceType::Internal`
### Why?
We need this for future refactoring where we want to the internal
modules with transitions.
### Turbopack Changes
* https://github.com/vercel/turbo/pull/5095 <!-- Tobias K... | [
{
"path": "Cargo.lock",
"patch": "@@ -394,7 +394,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230526.2#a066e12989dcc8f7dd4ba1d3c4bd111be1d33a6a\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-05-27T06:22:15 |
huggingface/transformers | 5169c2364ba1ad2f555b83eac1b9065aa2955101 | 152f5b68feb4ddda2938a144d8514b44277037c5 | [core] Fix torchao (#42289)
* inital commit
* up
* update unexpected later on
* fix
* update
* simplify our lives
* isolate a bit more
* fixup
* small nits
* style
* nit
* fix common cases
* fix post merge
* bnb needs missing keys
* small fix
* bettrer documentation
* no veradict + base class
* rake ... | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -115,6 +115,8 @@ def convert(\n source_keys: list[str],\n target_keys: list[str],\n full_layer_name: str,\n+ model,\n+ missing_keys,\n config,\n **kwargs,\n ) -> dict[str, list[torch.Te... | 2025-11-25T09:22:35 |
electron/electron | 6de9c4332fdf85a1e7645b996be0c9534fcf0f4c | dd4d3db47bea9b72e20c13f451972573de9e2634 | Fix passing Promise with remote
Somehow using value.then.bind(value) would result in infinite loop,
could be bug of Chromium. | [
{
"path": "atom/browser/auto_updater.h",
"patch": "@@ -8,6 +8,7 @@\n #include <string>\n \n #include \"base/macros.h\"\n+#include \"build/build_config.h\"\n \n namespace base {\n class Time;",
"additions": 1,
"deletions": 0,
"language": "C/C++ Header"
},
{
"path": "lib/browser/rpc-server... | 2016-03-09T11:03:42 |
nodejs/node | 6f924b60c50d446b46b358a76d15b675a311002b | 725a66a2f0e99304b927888bd5928c358ce656b9 | os: assume UTF-8 for hostname
Do not assume Latin-1, but rather UTF-8 for the result of getting the
OS hostname.
While in 99 % of cases these strings are stored in ASCII, the OS does
not enforce an encoding on its own, and apparently the hostname is
sometimes set to non-ASCII data (despite at least some versions of
h... | [
{
"path": "src/node_os.cc",
"patch": "@@ -49,6 +49,7 @@ using v8::Integer;\n using v8::Isolate;\n using v8::Local;\n using v8::MaybeLocal;\n+using v8::NewStringType;\n using v8::Null;\n using v8::Number;\n using v8::Object;\n@@ -69,7 +70,9 @@ static void GetHostname(const FunctionCallbackInfo<Value>& args) ... | 2019-05-24T11:14:31 |
vercel/next.js | 466d199de72538f5b23d91a3470d52a25d11652d | b99394915500c8ee36212c5f4e938c6c8c1ebcff | Fix runtime:edge with large next.config.js (#50396)
## What?
Fixes a bug reported on the vercel.com app where `runtime: 'edge'` would
get stuck compiling.
## How?
Ensures we base64 the config when passing it to the loader, instead of
just JSON.stringifying it.
<!-- Thanks for opening a PR! Your contribut... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -354,7 +354,9 @@ export function getEdgeServerEntry(opts: {\n dev: opts.isDev,\n isServerComponent: opts.isServerComponent,\n page: opts.page,\n- stringifiedConfig: JSON.stringify(opts.config),\n+ stringifiedConfig: Buffer.from(J... | 2023-05-26T19:35:59 |
huggingface/transformers | 152f5b68feb4ddda2938a144d8514b44277037c5 | 69f003696b55de75b7f18888c03111909a7cd537 | Fix TimesFM patch normalization instability (#42099)
* Fix TimesFM potential numerical instability in masked mean/std calculation.
* Fix sigma clamping to 1 instead of config.tolerance in TimesFM. | [
{
"path": "src/transformers/models/timesfm/modeling_timesfm.py",
"patch": "@@ -341,11 +341,7 @@ def _forward_transform(\n ) -> tuple[torch.Tensor, tuple[torch.Tensor, torch.Tensor]]:\n \"\"\"Input is of shape [B, N, P].\"\"\"\n mu, sigma = self._timesfm_masked_mean_std(inputs, patched_pa... | 2025-11-25T08:56:12 |
electron/electron | dd4d3db47bea9b72e20c13f451972573de9e2634 | a31cbd24a1426aef466d760897c1fe31839eb47f | Fix node integration not working | [
{
"path": "atom/browser/atom_browser_client.cc",
"patch": "@@ -49,7 +49,7 @@ namespace {\n // The default routing id of WebContents.\n // In Electron each RenderProcessHost only has one WebContents, so this ID is\n // same for every WebContents.\n-int kDefaultRoutingID = 2;\n+int kDefaultRoutingID = 1;\n \n... | 2016-03-09T03:40:06 |
nodejs/node | 725a66a2f0e99304b927888bd5928c358ce656b9 | dd6481a183d38c7b48864c558ca5383164825b01 | tls: destroy trace BIO instead of leaking it
Fixes: https://github.com/nodejs/node/issues/27636#issuecomment-491343214
PR-URL: https://github.com/nodejs/node/pull/27834
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Revie... | [
{
"path": "src/tls_wrap.cc",
"patch": "@@ -939,9 +939,9 @@ void TLSWrap::EnableTrace(\n \n #if HAVE_SSL_TRACE\n if (wrap->ssl_) {\n- BIO* b = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);\n+ wrap->bio_trace_.reset(BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT));\n SSL_set_msg_callback(wrap->ss... | 2019-05-23T04:07:07 |
huggingface/transformers | 69f003696b55de75b7f18888c03111909a7cd537 | 9bd85b01438997c88d26f82dd3088003bb8ea815 | Tiny doc fix (#42296)
fix link | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -125,9 +125,9 @@ If you're contributing a **vision-language model** (or any multimodal model that\n All new models should use the modular architecture pattern. Create a `modular_<model_name>.py` file using the modular model converter:\n \n - Use the CLI, [`transform... | 2025-11-24T21:57:46 |
vercel/next.js | b99394915500c8ee36212c5f4e938c6c8c1ebcff | a56066c5aba08e1f6dcfedca299345e97f8eb5e7 | Upgrade vendored @vercel/og (#50395)
* upgrade `@vercel/og` to latest
* fix precompile script | [
{
"path": "package.json",
"patch": "@@ -97,7 +97,7 @@\n \"@typescript-eslint/eslint-plugin\": \"4.29.1\",\n \"@typescript-eslint/parser\": \"4.29.1\",\n \"@vercel/fetch\": \"6.1.1\",\n- \"@vercel/og\": \"0.5.0\",\n+ \"@vercel/og\": \"0.5.6\",\n \"@webassemblyjs/ast\": \"1.11.1\",\n ... | 2023-05-26T19:02:53 |
golang/go | 4f0c32de078b57958fa9c37c05bae4ee1f8193e5 | 1302f93c4e1eae0e625b372f9bb6bb48780af30f | cmd/dist: log OS version when testing
As a follow-up to https://golang.org/cl/371474, add the OS version to
the metadata printed for each test.
Fixes #50146.
Change-Id: I3b7e47983d0e85feebce8e424881b931882d53bf
Reviewed-on: https://go-review.googlesource.com/c/go/+/371475
Reviewed-by: Bryan Mills <bcmills@google.com... | [
{
"path": "src/cmd/dist/metadata.go",
"patch": "@@ -12,6 +12,7 @@\n package main\n \n import (\n+\t\"cmd/internal/osinfo\"\n \t\"fmt\"\n \t\"internal/sysinfo\"\n \t\"runtime\"\n@@ -20,5 +21,13 @@ import (\n func logMetadata() error {\n \tfmt.Printf(\"# GOARCH: %s\\n\", runtime.GOARCH)\n \tfmt.Printf(\"# CPU... | 2021-12-13T22:34:16 |
huggingface/transformers | 8f129d256dfbd414b47f7f4a495a7834d95ffbf8 | 96d1c5d63d378fc64908d96fcf365cb96bfb9f83 | Small tp fix (#42366)
up | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -718,13 +718,13 @@ def convert_and_load_state_dict_in_model(\n mapping.distributed_operation = tp_layer(\n device_mesh=device_mesh, rank=device_map[\"\"].index, empty_param=empty_param.clone(... | 2025-11-24T19:45:22 |
electron/electron | f29d633563276b4bc3458d6a215d41c76f6855b4 | 5fae63a2f5d030ddb49d032bab7c50cc25d20d05 | Fix cpplint warnings | [
{
"path": "atom/browser/atom_permission_manager.cc",
"patch": "@@ -4,6 +4,8 @@\n \n #include \"atom/browser/atom_permission_manager.h\"\n \n+#include <vector>\n+\n #include \"content/public/browser/child_process_security_policy.h\"\n #include \"content/public/browser/permission_type.h\"\n #include \"content... | 2016-03-08T14:32:59 |
nodejs/node | dd6481a183d38c7b48864c558ca5383164825b01 | 956e08e6f077b9e162f653438352699937429579 | doc: add version info for types
Add version info for types in N-API doc.
PR-URL: https://github.com/nodejs/node/pull/27754
Fixes: https://github.com/nodejs/node/issues/27486
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -222,6 +222,10 @@ consumed by the various APIs. These APIs should be treated as opaque,\n introspectable only with other N-API calls.\n \n ### napi_status\n+<!-- YAML\n+added: v8.0.0\n+napiVersion: 1\n+-->\n Integral status code indicating the success or failure of... | 2019-05-17T19:56:28 |
vercel/next.js | 2aa68ae287737151236e462ae73a290d13777b04 | 62af2007ce78fdbff33013a8145efbcacbf6b8e2 | fix: eslint not ignoring "/app" (#50261)
## Why?
```
src/app/layout.tsx
```

**eslint[@next/next/no-before-interactive-script-outside-document](https://nextjs.org/docs/messages/no-before-interactive-script-outside-document... | [
{
"path": "packages/eslint-plugin-next/src/rules/no-before-interactive-script-outside-document.ts",
"patch": "@@ -34,10 +34,15 @@ export = defineRule({\n \n if (startsWithUsingCorrectSeparators(pathname, 'src/')) {\n pathname = pathname.slice(4)\n+ } else if (startsWithUsingCorrectS... | 2023-05-26T16:27:42 |
golang/go | 1302f93c4e1eae0e625b372f9bb6bb48780af30f | e4a6b84962cc2fb4f4b8bb532a84bab5bfd68d99 | cmd/dist: log CPU model when testing
Knowing whether test failures are correlated with specific CPU models on
has proven useful on several issues. Log it for prior to testing so it
is always available.
internal/sysinfo provides the CPU model, but it is not available in the
bootstrap toolchain, so we can't access this... | [
{
"path": "src/cmd/dist/metadata.go",
"patch": "@@ -0,0 +1,24 @@\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// Helper to print system metadata (CPU model, etc). This uses packages t... | 2021-12-13T22:32:07 |
huggingface/transformers | 90aef4d55b196ac13134b8b2d4352b989cca2361 | d4dcef7b6285a4de2cc75bac555ab32d0311a1ad | Make benchmarking lighter: clean-up result files and remove non-needed arguments (#42357)
* Duplicate deletion in config check
* More attn implem configs
* Remodel and remove backend
* Change useless message to debug
* Remove extra generation config
* Simplify inter-token latency
* Update src/transformers/gener... | [
{
"path": "benchmark_v2/framework/benchmark_config.py",
"patch": "@@ -2,9 +2,10 @@\n import itertools\n import json\n import logging\n+from functools import lru_cache\n from typing import Any\n \n-from transformers.utils.import_utils import is_flash_attn_2_available\n+from transformers.utils.import_utils im... | 2025-11-24T16:40:55 |
nodejs/node | eb32e383d89d5f0757129127d9983756b5202a12 | 58fc172bfa9bd962fa3c614d7cbf94327af22c1e | doc,n-api: fix typo in N-API introduction
PR-URL: https://github.com/nodejs/node/pull/27833
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -7,7 +7,7 @@\n \n N-API (pronounced N as in the letter, followed by API)\n is an API for building native Addons. It is independent from\n-the underlying JavaScript runtime (ex V8) and is maintained as part of\n+the underlying JavaScript runtime (for example, V8) an... | 2019-05-23T02:55:30 |
vercel/next.js | 2dc0b1785cce28b522c9840b94ab45e5e9398a3f | 95025fceb24b3d6d8dbf46b97133908457294816 | followup fix (vercel/turbo#5106)
### Description
Small fix to avoid breakin 1 next.js test
### Testing Instructions
<!--
Give a quick description of steps to test your changes.
--> | [
{
"path": "crates/turbopack-core/src/reference_type.rs",
"patch": "@@ -4,6 +4,9 @@ use indexmap::IndexMap;\n \n use crate::{asset::AssetVc, resolve::ModulePartVc};\n \n+/// Named references to inner assets. Modules can used them to allow to\n+/// per-module aliases of some requests to already created module... | 2023-05-26T14:43:17 |
golang/go | e4a6b84962cc2fb4f4b8bb532a84bab5bfd68d99 | 9c6ecc49ca02c83f3081c30171ab40dd62557342 | debug/elf: do not read unrelated bytes for SHT_NOBITS sections
SHT_NOBITS sections do not occupy space in the file and their offset is
"conceptual", reading their data should return all zeroes instead of
reading bytes from the section that follows them.
Change-Id: Iaa9634792c1909c3e87dab841dd646cd6dcf9027
Reviewed-on... | [
{
"path": "src/debug/elf/elf_test.go",
"patch": "@@ -47,3 +47,25 @@ func TestNames(t *testing.T) {\n \t\t}\n \t}\n }\n+\n+func TestNobitsSection(t *testing.T) {\n+\tconst testdata = \"testdata/gcc-amd64-linux-exec\"\n+\tf, err := Open(testdata)\n+\tif err != nil {\n+\t\tt.Fatalf(\"could not read %s: %v\", t... | 2022-01-04T14:47:02 |
huggingface/transformers | d4dcef7b6285a4de2cc75bac555ab32d0311a1ad | f221a3b46b4ab5b5efe24f0120446af396f8fc4b | Fixed-wrong-ZeRO3-json-snippet-found-in-deepspeed-markdown-file (#42346)
* Correct syntax error in trainer.md
A comma is missing between two parameters in the signature of compute_loss function.
* Correct syntax error in trainer.md
A comma is missing between two parameters in the signature of compute_loss function.... | [
{
"path": "docs/source/en/deepspeed.md",
"patch": "@@ -341,13 +341,6 @@ The example ZeRO-3 and ZeRO-Infinity config below sets most of the parameter val\n \"buffer_size\": 1e8,\n \"max_in_cpu\": 1e9\n },\n- \"aio\": {\n- \"block_size\": 262144,\n- ... | 2025-11-24T16:21:36 |
electron/electron | 5fae63a2f5d030ddb49d032bab7c50cc25d20d05 | 4503aafe6467e0fd2d1d2e8c2234cbc4b663a8d3 | Fix compilation errors on OS X | [
{
"path": "atom/app/atom_library_main.h",
"patch": "@@ -5,7 +5,7 @@\n #ifndef ATOM_APP_ATOM_LIBRARY_MAIN_H_\n #define ATOM_APP_ATOM_LIBRARY_MAIN_H_\n \n-#include \"base/macros.h\"\n+#include \"build/build_config.h\"\n \n #if defined(OS_MACOSX)\n extern \"C\" {",
"additions": 1,
"deletions": 1,
"... | 2016-03-08T14:28:53 |
nodejs/node | 0d2830041a399d5d56f7e0780c982a80570bdde2 | 0fa5c9f256210d858862e62f63754f216a94e1e9 | test: fix test-https-agent-additional-options
test-https-agent-additional-options can occasionally fail if a socket
closes before the checks near the end of the test. Modify the test to
check the freeSockets pool after each request.
PR-URL: https://github.com/nodejs/node/pull/27830
Fixes: https://github.com/nodejs/no... | [
{
"path": "test/parallel/test-https-agent-additional-options.js",
"patch": "@@ -39,41 +39,35 @@ const updatedValues = new Map([\n ['sessionIdContext', 'sessionIdContext'],\n ]);\n \n+let value;\n function variations(iter, port, cb) {\n- const { done, value } = iter.next();\n- if (done) {\n- return co... | 2019-05-21T23:36:36 |
vercel/next.js | 95025fceb24b3d6d8dbf46b97133908457294816 | 36e35d5d6555aad181a0b5d701a168393bd9401e | Stable chunk list ident (vercel/turbo#5104)
### Description
This fixes an issue where the chunk list's identifier would change when
a chunk is added or removed. This defeats the purpose of a chunk list,
and breaks HMR.
### Testing Instructions
Manual tests, and eventually Next.js HMR tests. | [
{
"path": "crates/turbopack-dev/src/ecmascript/list/asset.rs",
"patch": "@@ -82,9 +82,9 @@ impl Asset for EcmascriptDevChunkList {\n \n ident.add_modifier(modifier());\n \n- for chunk in &*self.chunks.await? {\n- ident.add_modifier(chunk.ident().to_string());\n- }\n+ ... | 2023-05-26T13:06:23 |
huggingface/transformers | f221a3b46b4ab5b5efe24f0120446af396f8fc4b | dc6a53b9c152e5f02f37955fb8b09170bf6f6caa | fix tekken pattern matching (#42363)
* fix tekken pattern matching
* add a test
* up
* up
* style | [
{
"path": "src/transformers/tokenization_utils_base.py",
"patch": "@@ -2110,7 +2110,7 @@ def from_pretrained(\n if \"tokenizer_file\" in vocab_files and not re.search(vocab_files[\"tokenizer_file\"], \"\".join(remote_files)):\n # mistral tokenizer names are different, but we can still co... | 2025-11-24T15:39:10 |
golang/go | 17b2fb1b656a275906b5071c562439d50a27f167 | b41185c5c3da2d5f52b3b5aa7eb034addd458938 | runtime: fix net poll races
The netpoll code was written long ago, when the
only multiprocessors that Go ran on were x86.
It assumed that an atomic store would trigger a
full memory barrier and then used that barrier
to order otherwise racy access to a handful of fields,
including pollDesc.closing.
On ARM64, this cod... | [
{
"path": "src/runtime/netpoll.go",
"patch": "@@ -71,31 +71,99 @@ const pollBlockSize = 4 * 1024\n //go:notinheap\n type pollDesc struct {\n \tlink *pollDesc // in pollcache, protected by pollcache.lock\n+\tfd uintptr // constant for pollDesc usage lifetime\n+\n+\t// atomicInfo holds bits from closing, ... | 2022-01-12T22:22:09 |
electron/electron | 3600645575bdcda35447bd78ef1625dad29dc754 | 30643cf1189f37df1215210620353090e9e174cf | Fix the compilation errors from brightray and crashpad | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit bde67658749c6f947e2dc505cce19e621d2ad2eb\n+Subproject commit 2a29ea6c1de3accd01f1883ac94326220349bbe1",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "vendor/crashpad",
"patch": "@@ -1 +1 @@\... | 2016-03-08T12:00:37 |
nodejs/node | 99268b1e996d13a0aeda7aa112796484fe4e4238 | 60b315c0646aeb0bf4e40d5a7490e9548b714ce2 | assert: remove unreachable code
In lib/internal/assert/assertion_error.js, line 391 assures that
`operator` is 'deepEqual' so there is no need to check the value of
`operator` in a ternary on the next line (line 392). Remove the ternary.
PR-URL: https://github.com/nodejs/node/pull/27786
Reviewed-By: Ruben Bridgewater... | [
{
"path": "lib/internal/assert/assertion_error.js",
"patch": "@@ -374,9 +374,9 @@ class AssertionError extends Error {\n } else {\n let res = inspectValue(actual);\n let other = inspectValue(expected);\n- const knownOperators = kReadableOperator[operator];\n+ const knownO... | 2019-05-20T23:27:37 |
huggingface/transformers | dc6a53b9c152e5f02f37955fb8b09170bf6f6caa | 73a9bc3756cb15b86c10202a62c128121315d347 | Fix code examples to load gpt 1 openai community model (#42347)
* Fix code examples to load gpt 1 openai community model
* Remove dtypes redundant declaration | [
{
"path": "docs/source/en/model_doc/openai-gpt.md",
"patch": "@@ -43,7 +43,7 @@ The example below demonstrates how to generate text with [`Pipeline`], [`AutoMod\n import torch\n from transformers import pipeline\n \n-generator = pipeline(task=\"text-generation\", model=\"openai-community/gpt\", dtype=torch.... | 2025-11-24T15:21:37 |
vercel/next.js | 62af2007ce78fdbff33013a8145efbcacbf6b8e2 | 68b34de96ec122245dca324e16843280eef540c4 | Next.js Turbo build: turbopack-ecmascript-runtime and ChunkData (#50375)
This PR is extracted from https://github.com/vercel/next.js/pull/49942
and mostly contains changes necessary after the Turbopack PR adding the
Node.js production runtime https://github.com/vercel/turbo/pull/4998,
without any of the actual Next... | [
{
"path": "Cargo.lock",
"patch": "@@ -394,7 +394,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230523.3#49ac90877547511d9f962f126a7b23b5cc0d45be\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-05-26T11:38:25 |
golang/go | b41185c5c3da2d5f52b3b5aa7eb034addd458938 | e550c3054586a224d949cc8fa030bac0887bee51 | cmd/compile: add call to ImportedBody() when exporting shape inst body
When we export a shape instantiation, because a particular
fully-instantiated type is needed by an inlineable function, we possibly
export the body of the instantiation, if it is inlineable. In this case,
we should have been calling ImportedBody() ... | [
{
"path": "src/cmd/compile/internal/typecheck/crawler.go",
"patch": "@@ -252,6 +252,7 @@ func (p *crawler) checkForFullyInst(t *types.Type) {\n \t\t\tif HaveInlineBody(methNode.Func) {\n \t\t\t\t// Export the body as well if\n \t\t\t\t// instantiation is inlineable.\n+\t\t\t\tImportedBody(methNode.Func)\n \... | 2022-01-13T21:20:19 |
electron/electron | 30643cf1189f37df1215210620353090e9e174cf | 9bc9a1a2bde2b141788f536ec7aaca2cf8091913 | Update crashpad to lastest branch | [
{
"path": "common.gypi",
"patch": "@@ -4,6 +4,8 @@\n 'vendor/brightray/brightray.gypi',\n ],\n 'variables': {\n+ # Tell crashpad to build as external project.\n+ 'crashpad_dependencies': 'external',\n # Required by breakpad.\n 'os_bsd': 0,\n 'chromeos': 0,",
"additions": 2,
... | 2016-03-08T08:58:59 |
huggingface/transformers | 73a9bc3756cb15b86c10202a62c128121315d347 | 6b4b7bf8bbb739c95a76ea3c616eb6dbd4e848c7 | Replace Optional and Union typing with | in some source files (#42294)
* Replace Optional and Union typing with | in some source files
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Replace Optional and Union typing with | in some source files
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
* Replace Opti... | [
{
"path": "src/transformers/cli/add_new_model_like.py",
"patch": "@@ -19,7 +19,7 @@\n from collections.abc import Callable\n from datetime import date\n from pathlib import Path\n-from typing import Annotated, Any, Optional, Union\n+from typing import Annotated, Any\n \n import typer\n \n@@ -95,7 +95,7 @@ d... | 2025-11-24T15:20:16 |
nodejs/node | cb1687241671732e91959c67202efa73139bd1e8 | eba348b6aecf5c764f786f6f049431237702c88f | test: increase debugging information on failure
Increase the information displayed when
test-child-process-pipe-dataflow.js fails.
PR-URL: https://github.com/nodejs/node/pull/27790
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Anna Henningsen <a... | [
{
"path": "test/parallel/test-child-process-pipe-dataflow.js",
"patch": "@@ -38,16 +38,19 @@ const MB = KB * KB;\n grep.stdout._handle.readStart = common.mustNotCall();\n \n [cat, grep, wc].forEach((child, index) => {\n- child.stderr.on('data', (d) => {\n+ const errorHandler = (thing, type) => {\n... | 2019-05-21T04:55:45 |
golang/go | e550c3054586a224d949cc8fa030bac0887bee51 | 4f6f68ee4b50162d3bd01efb9b8a5f6a10dc54af | cmd/compile: stop interface conversions for generic method calls from allocating
Let T be a type parameter, and say we instantiate it with S, a type
that isn't pointer-like (e.g. a pair of ints, or as in 50182, a
slice). Then to call a method m on a variable of type T, the compiler
does essentially:
var v T = ...
i :... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -293,6 +293,14 @@ func (b *batch) finish(fns []*ir.Func) {\n \t\t// TODO(mdempsky): Update tests to expect this.\n \t\tgoDeferWrapper := n.Op() == ir.OCLOSURE && n.(*ir.ClosureExpr).Func.Wrapper()\n \n+\t\tif n.Op() == ir.OCONVIDATA && n.(*... | 2022-01-13T00:11:35 |
vercel/next.js | 68b34de96ec122245dca324e16843280eef540c4 | 5d9597879c46b383d595d6f7b37fd373325b7544 | fix: edge runtime with `next/legacy/image` (#50343)
- Fixes https://github.com/vercel/next.js/issues/50307
- Related to https://github.com/vercel/next.js/pull/45601
fix #50307
fix NEXT-1237 | [
{
"path": "packages/next/src/client/legacy/image.tsx",
"patch": "@@ -148,7 +148,11 @@ function defaultLoader({\n )\n }\n \n- if (process.env.NODE_ENV !== 'test') {\n+ if (\n+ process.env.NODE_ENV !== 'test' &&\n+ // micromatch isn't compatible with edge runtime\n+ ... | 2023-05-26T11:38:10 |
electron/electron | b68d2ba8b5ec95d3fb16996e5a63fbf9b6059fdf | 5ce6592e1cdd9f1f2a3df7f1360b0fd7efeb9887 | Fix compilation error on Windows | [
{
"path": "brightray/browser/url_request_context_getter.cc",
"patch": "@@ -22,6 +22,7 @@\n #include \"net/cert/cert_verifier.h\"\n #include \"net/cookies/cookie_monster.h\"\n #include \"net/dns/mapped_host_resolver.h\"\n+#include \"net/http/http_auth_filter.h\"\n #include \"net/http/http_auth_handler_factor... | 2016-03-10T06:56:13 |
huggingface/transformers | 0cc848f8c6a37104acf21946e19a9e2065a290e7 | fd20cdc2e8669b36abfceb8ab59cfc7c957b0469 | Protect `torch.distributed` imports (#42361)
fix | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -29,16 +29,17 @@\n import torch\n \n from .integrations.accelerate import offload_weight\n-from .integrations.tensor_parallel import ALL_PARALLEL_STYLES, DTensor, Replicate, TensorParallelLayer\n+from .integrations.tensor_parallel import ALL_P... | 2025-11-24T14:50:55 |
nodejs/node | eba348b6aecf5c764f786f6f049431237702c88f | 58fe440c0f62865caf1fbb5b668f0413afbd1c9c | src: make process.env.TZ setter clear tz cache
Since the presence of the libc and V8 timezone caches seem to be
a perennial source of confusion to users ("why doesn't it work?!"),
let's try to support that pattern by intercepting assignments to
the TZ environment variable and reset the caches as a side effect.
Fixes:... | [
{
"path": "src/node_env_var.cc",
"patch": "@@ -2,6 +2,8 @@\n #include \"node_errors.h\"\n #include \"node_process.h\"\n \n+#include <time.h> // tzset(), _tzset()\n+\n #ifdef __APPLE__\n #include <crt_externs.h>\n #define environ (*_NSGetEnviron())\n@@ -64,6 +66,19 @@ Mutex env_var_mutex;\n std::shared_ptr<... | 2019-05-23T09:34:15 |
vercel/next.js | 3418eaf47028aa4149ef98b55886f41a99d3ec86 | cf9591cd2346ca69e96da6e03994573ec9b24050 | Fix CJS optimizer (#50376)
Avoid the new `VarDecl` being inserted multiple times. | [
{
"path": "packages/next-swc/crates/core/src/cjs_optimizer.rs",
"patch": "@@ -134,14 +134,22 @@ impl VisitMut for CjsOptimizer {\n definite: false,\n };\n \n- self.data.extra_stmts.push(Stmt::Decl(... | 2023-05-26T10:31:51 |
huggingface/transformers | fd20cdc2e8669b36abfceb8ab59cfc7c957b0469 | 1f0227396b5276c3d1c4d31bb11c65b43e52c8cb | Fix typos (#42354) | [
{
"path": ".github/workflows/get-pr-info.yml",
"patch": "@@ -40,7 +40,7 @@ on:\n description: \"The sha of the merge commit for the pull request (created by GitHub) in the base repository\"\n value: ${{ jobs.get-pr-info.outputs.PR_MERGE_COMMIT_SHA }}\n PR_MERGE_COMMIT_BASE_SHA:\n- ... | 2025-11-24T14:34:10 |
golang/go | 4f6f68ee4b50162d3bd01efb9b8a5f6a10dc54af | 899d19ac8330648b4ced7a7787db41c04f07f79f | testing: skip flaky TestRaiseException on windows-amd64-2012
This is in relation to #49681
Change-Id: I32ad8b506cf8fb0a94b15c3cc8b1eaf5af728c59
Reviewed-on: https://go-review.googlesource.com/c/go/+/378254
Run-TryBot: Patrik Nyblom <pnyb@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Bryan Mi... | [
{
"path": "src/runtime/syscall_windows_test.go",
"patch": "@@ -628,6 +628,9 @@ func TestOutputDebugString(t *testing.T) {\n }\n \n func TestRaiseException(t *testing.T) {\n+\tif testenv.Builder() == \"windows-amd64-2012\" {\n+\t\ttestenv.SkipFlaky(t, 49681)\n+\t}\n \to := runTestProg(t, \"testprog\", \"Rais... | 2022-01-13T01:50:55 |
electron/electron | 82c30ef9b992179db1a4655afab74b274a4ff7c3 | ead0bb0cfc1ce7c2a10c598840408c65e41e3045 | Fix RenderFrameHostChanged | [
{
"path": "brightray/browser/inspectable_web_contents_impl.cc",
"patch": "@@ -573,7 +573,7 @@ void InspectableWebContentsImpl::RenderFrameHostChanged(\n if (new_host->GetParent())\n return;\n frontend_host_.reset(content::DevToolsFrontendHost::Create(\n- web_contents_->GetMainFrame(),\n+ n... | 2016-03-09T09:47:11 |
nodejs/node | ca8e33aef9c39f52601c20b69ea365abcfe8ae81 | 6e796581fc7863c27722f6d076e2b2b4dac2912e | deps: histogram: unexport symbols
Fixes: https://github.com/nodejs/node-gyp/issues/1755
Fixes: https://github.com/nodejs/node/issues/27778
PR-URL: https://github.com/nodejs/node/pull/27779
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@... | [
{
"path": "deps/histogram/histogram.gyp",
"patch": "@@ -3,6 +3,10 @@\n {\n 'target_name': 'histogram',\n 'type': 'static_library',\n+ 'cflags': ['-fvisibility=hidden'],\n+ 'xcode_settings': {\n+ 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden\n+ },\n '... | 2019-05-23T09:22:44 |
huggingface/transformers | 1f0227396b5276c3d1c4d31bb11c65b43e52c8cb | 2e0457e6074d82e1d36b041aa271bb55025e36a3 | Fix reference to imagenet 1k dataset (#42348) | [
{
"path": "docs/source/en/model_doc/levit.md",
"patch": "@@ -56,7 +56,7 @@ This model was contributed by [anugunj](https://huggingface.co/anugunj). The ori\n one takes the average prediction between both heads as final prediction. (2) is also called \"fine-tuning with distillation\",\n because one relie... | 2025-11-24T14:27:29 |
vercel/next.js | 7a8b80f23caa4b033880657f5bc08e910bd7ca2b | 0644bd499697c57439e84fff32298631975950d6 | refactor: Fix binary bloat caused by `ValueDebugFormat` impl (vercel/turbo#5102)
### Description
```
Finished release [optimized] target(s) in 0.43s
Analyzing target/release/libnext_swc_napi.dylib
File .text Size Crate Name
0.1% 0.3% 185.1KiB swc_css_prefixer <... | [
{
"path": "crates/turbo-tasks-macros/src/derive/value_debug_format_macro.rs",
"patch": "@@ -55,13 +55,7 @@ pub fn derive_value_debug_format(input: TokenStream) -> TokenStream {\n /// Formats a single field nested inside named or unnamed fields.\n fn format_field(value: TokenStream2) -> TokenStream2 {\n ... | 2023-05-26T06:20:57 |
golang/go | 899d19ac8330648b4ced7a7787db41c04f07f79f | 1a8b4e05b1ff7a52c6d40fad73bcad612168d094 | cmd/compile: descend through types to find fully-instantiated types
In order to make sure we export the dictionaries/shape methods for all
fully-instantiated types in inlineable functions, we need to descend
fully into types. For example, we may have a map type (e.g.
map[transactionID]Promise[*ByteBuffer]), where the ... | [
{
"path": "src/cmd/compile/internal/typecheck/crawler.go",
"patch": "@@ -30,19 +30,21 @@ import (\n // type.\n func crawlExports(exports []*ir.Name) {\n \tp := crawler{\n-\t\tmarked: make(map[*types.Type]bool),\n-\t\tembedded: make(map[*types.Type]bool),\n-\t\tgeneric: make(map[*types.Type]bool),\n+\t\tm... | 2022-01-12T19:30:57 |
electron/electron | ead0bb0cfc1ce7c2a10c598840408c65e41e3045 | d3a39540b5a67a70a80aa930a2aff033266f4602 | Fix devtools not working | [
{
"path": "brightray/browser/devtools_manager_delegate.cc",
"patch": "@@ -109,7 +109,6 @@ DevToolsDelegate::~DevToolsDelegate() {\n }\n \n std::string DevToolsDelegate::GetDiscoveryPageHTML() {\n- LOG(WARNING) << IDR_CONTENT_SHELL_DEVTOOLS_DISCOVERY_PAGE;\n return ResourceBundle::GetSharedInstance().GetR... | 2016-03-09T05:55:46 |
rust-lang/rust | cd1713ebba83a87e80a7366fdfe6fc28cabe6053 | 13c46fd0b089360922a557d8e18a63a2c41dfbeb | BTreeSet: remove duplicated code by reusing `from_sorted_iter`
The method `BTreeSet::from_sorted_iter` was introduced in 49ccb7519f55bd117d2ab50b7a030637f380aec6,
but it was not consistently used throughout the codebase. As a result, some code redundantly reimplemented its logic.
This commit fixes the problem. | [
{
"path": "library/alloc/src/collections/btree/set.rs",
"patch": "@@ -1517,9 +1517,7 @@ impl<T: Ord, const N: usize> From<[T; N]> for BTreeSet<T> {\n \n // use stable sort to preserve the insertion order.\n arr.sort();\n- let iter = IntoIterator::into_iter(arr).map(|k| (k, SetValZST::... | 2025-06-27T18:01:59 |
nodejs/node | 6e796581fc7863c27722f6d076e2b2b4dac2912e | 165916b1f3ec094b1694bd5a056c2fc5e56027c2 | src: remove freebsd SA_RESETHAND workaround
This workaround should no longer be necessary with supported versions
of FreeSBD.
Originally introduced in commit b64983d77c ("src: reset signal handler
to SIG_DFL on FreeBSD") from March 2015.
Fixes: https://github.com/nodejs/node/issues/27515
PR-URL: https://github.com/n... | [
{
"path": "src/node.cc",
"patch": "@@ -191,13 +191,6 @@ void WaitForInspectorDisconnect(Environment* env) {\n #ifdef __POSIX__\n void SignalExit(int signo, siginfo_t* info, void* ucontext) {\n uv_tty_reset_mode();\n-#ifdef __FreeBSD__\n- // FreeBSD has a nasty bug, see RegisterSignalHandler for details\n... | 2019-05-23T09:15:27 |
huggingface/transformers | 2e0457e6074d82e1d36b041aa271bb55025e36a3 | acae07ab94aa3c247e3c0185de91508893ad7c67 | Fix documentation reference to pytorch max memory allocated (#42350) | [
{
"path": "docs/source/ar/llm_tutorial_optimization.md",
"patch": "@@ -98,7 +98,7 @@ def bytes_to_giga_bytes(bytes):\n return bytes / 1024 / 1024 / 1024\n ```\n \n-دعونا نستدعي [`torch.cuda.max_memory_allocated`](https://pytorch.org/docs/stable/generated/torch.cuda.max_memory_allocated.html) لقياس ذروة تخ... | 2025-11-24T14:27:04 |
electron/electron | d3a39540b5a67a70a80aa930a2aff033266f4602 | baf5f384cd48d70382127c7e5ece0ace5c872f02 | Fix compilation errors on OS X | [
{
"path": "brightray/browser/browser_context.cc",
"patch": "@@ -232,4 +232,8 @@ content::PermissionManager* BrowserContext::GetPermissionManager() {\n return permission_manager_.get();\n }\n \n+content::BackgroundSyncController* BrowserContext::GetBackgroundSyncController() {\n+ return nullptr;\n+}\n+\n ... | 2016-03-08T14:28:28 |
golang/go | 1a8b4e05b1ff7a52c6d40fad73bcad612168d094 | 6891d07ee6a34f1c8d0326f3f7dd941bddf524f1 | cmd/compile: unique LinkString for renamed, embedded fields
Using type aliases, it's possible to create structs with embedded
fields that have no corresponding type literal notation. However, we
still need to generate a unique name for these types to use for linker
symbols. This CL introduces a new "struct{ Name = Typ... | [
{
"path": "src/cmd/compile/internal/types/fmt.go",
"patch": "@@ -631,6 +631,7 @@ func fldconv(b *bytes.Buffer, f *Field, verb rune, mode fmtMode, visited map[*Ty\n \t}\n \n \tvar name string\n+\tnameSep := \" \"\n \tif verb != 'S' {\n \t\ts := f.Sym\n \n@@ -639,7 +640,47 @@ func fldconv(b *bytes.Buffer, f *... | 2021-12-16T20:55:15 |
rust-lang/rust | db33e98540fca8f3268cafc6276dbefd55681d55 | 1045b70304ab6a875fc9fbf10cb7e7c010edd3ab | compiler: fixup error message for x86-interrupt invalid returns | [
{
"path": "compiler/rustc_ast_passes/messages.ftl",
"patch": "@@ -17,7 +17,7 @@ ast_passes_abi_must_not_have_parameters_or_return_type=\n \n ast_passes_abi_must_not_have_return_type=\n invalid signature for `extern {$abi}` function\n- .note = functions with the \"custom\" ABI cannot have a return typ... | 2025-06-27T01:02:54 |
vercel/next.js | 5831d0c1248a7d84cebddc2cc1baadf3f294a7ab | 26835bdba50beb79fb9694b69443a1f921bc082f | Fix static metadata routes runtime when root layout is in edge runtime (#50351)
Since the static metadata routes should always be static that can be
optimized, they should be marked as default runtime (or basically no
runtime). This PR change the runtime detection, if it's a static
metadata route file, its runtime ... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -54,6 +54,7 @@ import { normalizeMetadataRoute } from '../lib/metadata/get-metadata-route'\n import { fileExists } from '../lib/file-exists'\n import { getRouteLoaderEntry } from './webpack/loaders/next-route-loader'\n import { isInternalPathname ... | 2023-05-25T22:39:57 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.