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
nodejs/node
a74a6e3ba131752225a527d915593d7e413b1594
d1e4e8eaba400d152f0209c6eaccaea9c9950c49
n-api: run all finalizers via SetImmediate() Throwing an exception from a finalizer can cause the following fatal error: Error: async hook stack has become corrupted (actual: 2, expected: 0) 1: 0x970b5a node::InternalCallbackScope::~InternalCallbackScope() [./node] 2: 0x99dda0 node::Environment::RunTimers(uv_ti...
[ { "path": "benchmark/napi/ref/index.js", "patch": "@@ -10,8 +10,10 @@ function callNewWeak() {\n function main({ n }) {\n addon.count = 0;\n bench.start();\n- while (addon.count < n) {\n- callNewWeak();\n- }\n- bench.end(n);\n+ new Promise((resolve) => {\n+ (function oneIteration() {\n+ c...
2020-07-15T22:45:53
rust-lang/rust
b20ddc2d3f029bdbade7d86cdcf021a7cb8c3d8b
8e7cca83344e511e263e91f9539b8d341b2dd2bb
Fix indent for move_guard_to_arm_body Input: ```rust fn main() { match 92 { x $0if true && true && true => { { false } }, _ => true } } ``` Old output: ```rust fn main() { match 92 { x => if t...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/move_guard.rs", "patch": "@@ -40,28 +40,34 @@ pub(crate) fn move_guard_to_arm_body(acc: &mut Assists, ctx: &AssistContext<'_>)\n return None;\n }\n let space_before_guard = guard.syntax().prev_sibling_or_token();\n+ let sp...
2025-08-22T03:38:19
electron/electron
9a7651a93faaaef0534df1ab77268d7deb9d3165
1d32f300f3b5cd6b6dfb8b14a933a20d6260acaa
fix a pdf-viewer's parsing logic, and this should resolve the related issue at https://github.com/electron/electron/issues/10007
[ { "path": "atom/browser/atom_resource_dispatcher_host_delegate.cc", "patch": "@@ -86,9 +86,10 @@ void OnPdfResourceIntercepted(\n // The URL passes the original pdf resource url, that will be requested\n // by the webui page.\n // chrome://pdf-viewer/index.html?src=https://somepage/123.pdf\n+ GURL es...
2017-07-14T04:09:14
golang/go
ed24b37fd2b0c242525eb2203d90627c4be1b149
1c72ee7f13831b215b8744f6b35bc4fd53aba5e2
runtime: add missing closing curly brace in runtime corruption error message (Fixing the most important part of this bug.) Updates #56426 Change-Id: If657ae47a5fe7dacc31d2c487e53e9f2dd5d03bf Reviewed-on: https://go-review.googlesource.com/c/go/+/445695 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Brad ...
[ { "path": "src/runtime/os_linux.go", "patch": "@@ -880,7 +880,7 @@ func runPerThreadSyscall() {\n \t}\n \tif errno != 0 || r1 != args.r1 || r2 != args.r2 {\n \t\tprint(\"trap:\", args.trap, \", a123456=[\", args.a1, \",\", args.a2, \",\", args.a3, \",\", args.a4, \",\", args.a5, \",\", args.a6, \"]\\n\")\n-...
2022-10-26T20:38:07
rust-lang/rust
401f40f1c19bb7055918b6409a73adc55edde39f
3501e4f3f2a0501d353fb97ca823443203095682
tests/rustdoc-js-std/parser-errors.js: remove syntax that is now valid
[ { "path": "tests/rustdoc-js-std/parser-errors.js", "patch": "@@ -15,14 +15,6 @@ const PARSED = [\n returned: [],\n error: \"Found generics without a path\",\n },\n- {\n- query: '-> *',\n- elems: [],\n- foundElems: 0,\n- userQuery: \"-> *\",\n- return...
2025-08-22T01:50:33
nodejs/node
d1e4e8eaba400d152f0209c6eaccaea9c9950c49
983364c0ff3f4784a1aaab7c39a2abc54b3f9df0
test: fix test-heapdump-zlib PR-URL: https://github.com/nodejs/node/pull/34499 Refs: https://github.com/nodejs/node/pull/34048 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/pummel/test-heapdump-zlib.js", "patch": "@@ -1,17 +1,28 @@\n // Flags: --expose-internals\n 'use strict';\n-require('../common');\n+const common = require('../common');\n const { validateSnapshotNodes } = require('../common/heap');\n const zlib = require('zlib');\n \n validateSnapshotNodes('...
2020-07-23T20:25:44
vercel/next.js
a3f4ad9887f2e460a6833b78445bc903c3107d8a
14b6ae2e707dc99ca19d011d78fccfd4e54b33ae
chore: skip flaky turbopack navigation test (#60431) Tracking issue for fixing the test: https://linear.app/vercel/issue/PACK-2203/fix-flaky-navigation-e2e-test Closes PACK-2204
[ { "path": "test/build-turbopack-tests-manifest.js", "patch": "@@ -72,6 +72,9 @@ const SKIPPED_TEST_SUITES = {\n 'app dir - metadata twitter should support twitter card summary_large_image when image present',\n 'app dir - metadata viewport should support dynamic viewport export',\n ],\n+ 'test/e2...
2024-01-09T14:25:08
electron/electron
812b52988133bf13a8419411b8a020d15e87211d
1d32f300f3b5cd6b6dfb8b14a933a20d6260acaa
Add app.disableDomainBlockingFor3DAPIs() By default, Chromium disables 3D APIs (e.g. WebGL) until restart on a per domain basis if the GPU processes crashes too frequently. This function disables that behaviour.
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -35,6 +35,7 @@\n #include \"chrome/browser/icon_manager.h\"\n #include \"chrome/common/chrome_paths.h\"\n #include \"content/browser/gpu/compositor_util.h\"\n+#include \"content/browser/gpu/gpu_data_manager_impl.h\"\n #include \"content/public/brows...
2017-07-13T22:27:03
nodejs/node
986ae1e96b7bcf98d79ec8363c173e4614223fb9
1ed90e2c0c14a42dc5a269f9f6c706b5456a3701
test: remove duplicate checks in pummel/test-timers Remove checks in pummel/test-timers that are already checked in parallel/test-timers-clear-null-does-not-throw-error. PR-URL: https://github.com/nodejs/node/pull/34473 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: James M Snell <jasnell@gmail...
[ { "path": "test/pummel/test-timers.js", "patch": "@@ -23,14 +23,10 @@\n const common = require('../common');\n const assert = require('assert');\n \n-const WINDOW = 200; // Why is does this need to be so big?\n+const WINDOW = 200; // Why does this need to be so big?\n \n let interval_count = 0;\n \n-// Chec...
2020-07-22T01:24:37
golang/go
1c72ee7f13831b215b8744f6b35bc4fd53aba5e2
4e6f90fecd377777b08a151e1712b6d9180630de
testing: fix many test2json inaccuracies Test2json is parsing the output stream from the test, which includes package testing's own framing lines intermingled with other output, in particular any output printed via fmt.Printf, println, and so on. We have had recurring problems with unexpected partial output lines caus...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -536,10 +536,41 @@ var (\n \ttestOutputDir outputdirFlag // -outputdir flag\n \ttestShuffle shuffleFlag // -shuffle flag\n \ttestTimeout time.Duration // -timeout flag\n-\tte...
2022-10-13T20:13:46
facebook/react
9c55b961d3ef7a29ac426ab40ff59b45bff52a76
3287ea52fe4779247e523d814bc40d3680879779
code formatting fixes
[ { "path": "src/browser/ui/dom/setInnerHTML.js", "patch": "@@ -30,11 +30,11 @@ var setInnerHTML = function(node, html) {\n \n // Win8 apps: Allow all html to be inserted\n if (typeof MSApp !== 'undefined' && MSApp.execUnsafeLocalFunction) {\n- setInnerHTML = function (node, html) {\n- MSApp.execUns...
2015-01-05T17:21:53
vercel/next.js
782619ebf1f65243d70764b302bd02f50d6cb4a5
74ad0e1e3e39b0361f316d72dca334a8e0923f5b
Update testing contributor guide (#60421) ## What? Adds instructions for how to run tests with Turbopack and how to run tests while recording using Replay.io. I've also updated the instructions to mention `test-dev` and `test-start` which are the commands we generally use. <!-- Thanks for opening a PR! Your...
[ { "path": "contributing/core/testing.md", "patch": "@@ -2,41 +2,40 @@\n \n ## Running tests\n \n-Before you start to run tests, you need to build project first:\n+Before you start to run tests, you need to [build the project first](./building.md):\n \n ```bash\n pnpm build\n ```\n \n-And for more detail abo...
2024-01-09T13:28:37
golang/go
4e6f90fecd377777b08a151e1712b6d9180630de
f9ee56145bd8aa802b91db9465564cae5596966b
cmd/internal/obj/ppc64: generate big uint32 values in register When using "MOVD $const, Rx", any 32b constant can be generated in register quickly. Avoid transforming big uint32 values into a load. And, fix the instance in runtime.usleep where I discovered this. Change-Id: I46e156d7edf200f85b5b61162f00223c0ad81fe2 R...
[ { "path": "src/cmd/asm/internal/asm/testdata/ppc64.s", "patch": "@@ -28,6 +28,11 @@ TEXT asmtest(SB),DUPOK|NOSPLIT,$0\n \tMOVW $-32767, R5 // 38a08001\n \tMOVW $-32768, R6 // 38c08000\n \tMOVW $1234567, R5 // 6405001260a5d687\n+\t// Hex constant 0x80000001\n+\tMOV...
2022-10-21T14:19:47
nodejs/node
ec2ffd6b9d255e19818b6949d2f7dc7ac70faee9
6d5c33525ac5962ae95e6a2883b2bbf78ac935e6
module: self referential modules in repl or `-r` Load self referential modules from the repl and using the preload flag `-r`. In both cases the base path used for resolution is the current `process.cwd()`. Also fixes an internal cycle bug in the REPL exports resolution. PR-URL: https://github.com/nodejs/node/pull/322...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -29,6 +29,7 @@ module.exports = {\n \n const {\n ArrayIsArray,\n+ ArrayPrototypeJoin,\n Error,\n JSONParse,\n Map,\n@@ -422,7 +423,23 @@ function findLongestRegisteredExtension(filename) {\n return '.js';\n }\n \n+function trySelfParent...
2020-07-16T07:27:53
facebook/react
08c5e42649c85048b9035b3485c7b675e99ade3c
ebf4cb4faba36f76b08f00923306444beb8f3765
Update docs to indicate that componentDDidUpdate is fired after changes are flushed to the DOM. Fixes #2796
[ { "path": "docs/docs/ref-03-component-specs.md", "patch": "@@ -195,7 +195,7 @@ Use this as an opportunity to perform preparation before an update occurs.\n componentDidUpdate(object prevProps, object prevState)\n ```\n \n-Invoked immediately after updating occurs. This method is not called for the initial r...
2015-01-02T22:02:44
vercel/next.js
447b416f4d90d5f53681a3d8909aa1d82b7eff24
7e53e08d1701286c546451cbc7337c99579ed034
Fix: HMR in multi-zone handling 🌱 (#59471) ### What? When running a [multi-zone](https://github.com/vercel/next.js/tree/canary/examples/with-zones) app in dev, guest app pages would infinitely reload if you change the basePath of the host app to the default one (omit basePath settings in next.config.js) (empty s...
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -33,6 +33,7 @@ import {\n import { RedirectStatusCode } from '../../client/components/redirect-status-code'\n import { DevBundlerService } from './dev-bundler-service'\n import { type Span, trace } from '../../trace'\n+import { ensureLe...
2024-01-08T23:55:41
golang/go
f9ee56145bd8aa802b91db9465564cae5596966b
29674d87e697e10b658d5676a2f547d555c2c534
cmd/compile: print readable function name in error message i.e. from "function %!s(*Node=0xc0003b48c0) cannot have ABI wrappers", to "function xxFunctionName cannot have ABI wrappers". Change-Id: I83cfdf1916e82ab1455db8032153d9cdae85250d GitHub-Last-Rev: 87b077653f8731be511861d968bd31d58744b386 GitHub-Pull-Request: g...
[ { "path": "src/cmd/compile/internal/ssagen/abi.go", "patch": "@@ -204,7 +204,7 @@ func (s *SymABIs) GenABIWrappers() {\n \t\t// Double check that cgo-exported symbols don't get\n \t\t// any wrappers.\n \t\tif len(cgoExport) > 0 && fn.ABIRefs&^obj.ABISetOf(fn.ABI) != 0 {\n-\t\t\tbase.Fatalf(\"cgo exported fu...
2022-10-26T06:06:43
electron/electron
60f563ae5fb6ce0503b006a5a68a2e79086101b5
30df0f3306b29a36f9ad7f641c795907fa5c4ad2
Surface require errors so spec does not hang
[ { "path": "spec/fixtures/api/native-window-open-native-addon.html", "patch": "@@ -2,8 +2,21 @@\n <body>\n <script type=\"text/javascript\" charset=\"utf-8\">\n const {ipcRenderer} = require('electron')\n- const runas = require('runas')\n- ipcRenderer.send('answer', typeof runas)\n+\n+ let runas\n+ let...
2017-07-13T15:36:29
facebook/react
717b6d62499623609b9b3fc1ab5dfdeb281e2b08
ebf4cb4faba36f76b08f00923306444beb8f3765
Update ref-09-glossary.md Minor grammatical fix.
[ { "path": "docs/docs/ref-09-glossary.md", "patch": "@@ -62,7 +62,7 @@ var root = div({ className: 'my-div' });\n React.render(root, document.body);\n ```\n \n-React already have built-in factories for common HTML tags:\n+React already has built-in factories for common HTML tags:\n \n ```javascript\n var roo...
2014-12-31T04:42:38
nodejs/node
086c916997a23041d6687d7fca8e0d5109d1f4a2
cf28f8a7dddedb90f96f177cc1c83c29fda39578
quic: extensive refactoring of QuicStream lifecycle This one was a bit of a rabbit hole... but, with this set of changes, `QuicStream` should now work with autoDestroy, supports a promisified `close()`, and fixes a number of other internal bugs that were spotted trying to get it to work. PR-URL: https://github.com/no...
[ { "path": "doc/api/quic.md", "patch": "@@ -183,10 +183,12 @@ The `openStream()` method is used to create a new `QuicStream`:\n \n ```js\n // Create a new bidirectional stream\n-const stream1 = await session.openStream();\n+async function createStreams(session) {\n+ const stream1 = await session.openStream(...
2020-07-14T17:51:00
vercel/next.js
94b8af2258bd16602f856078caf99c34b671cf6f
543ca115716536b753549d950274da21ea979e64
chore(precompile): remove obsolete precompiled assets (#60316) Per @styfle suggestion, #58038 has been split into multiple PRs for easier review. - Remove `find-cache-dir` - The usage of `find-cache-dir` was removed **4 years ago** (https://github.com/vercel/next.js/pull/7013) but the dist and the build script...
[ { "path": "packages/next/package.json", "patch": "@@ -229,7 +229,6 @@\n \"domain-browser\": \"4.19.0\",\n \"edge-runtime\": \"2.5.4\",\n \"events\": \"3.3.0\",\n- \"find-cache-dir\": \"3.3.1\",\n \"find-up\": \"4.1.0\",\n \"fresh\": \"0.5.2\",\n \"get-orientation\": \"1.1.2\",", ...
2024-01-08T18:00:49
electron/electron
9a3b78d9fe576e2eb2374d3dea5c13b6087fe7dc
30df0f3306b29a36f9ad7f641c795907fa5c4ad2
Fix devtools open in mixed sandbox mode
[ { "path": "atom/app/atom_main_delegate.cc", "patch": "@@ -154,7 +154,9 @@ content::ContentBrowserClient* AtomMainDelegate::CreateContentBrowserClient() {\n content::ContentRendererClient*\n AtomMainDelegate::CreateContentRendererClient() {\n if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n- ...
2017-07-12T01:18:36
golang/go
2a2b163bb9125389c5f70e65aec21816e2ea09c5
3afba3124df90f1b2f56d3324793f16649a2d93a
crypto/x509: respect GODEBUG changes for allowing SHA1 certificates This allows programs that want SHA1 support to call os.Setenv at startup instead of insisting that users set the environment variable themselves. For #41682. Fixes #56436. Change-Id: Idcb96212a1d8c560e1dd8eaf7c80b6266f16431e Reviewed-on: https://go-...
[ { "path": "src/crypto/x509/verify_test.go", "patch": "@@ -543,8 +543,8 @@ func testVerify(t *testing.T, test verifyTest, useSystemRoots bool) {\n func TestGoVerify(t *testing.T) {\n \t// Temporarily enable SHA-1 verification since a number of test chains\n \t// require it. TODO(filippo): regenerate test cha...
2022-10-26T03:10:13
facebook/react
b25e2e70d8ed7eb17a18d57f16c03390767a194a
82a30268a33a7193ce9b8dedcbd25f6c1b854e79
Update 02-displaying-data.md Just a couple of minor grammatical fixes.
[ { "path": "docs/docs/02-displaying-data.md", "patch": "@@ -108,7 +108,7 @@ var root = React.createElement('ul', { className: 'my-list' }, child);\n React.render(root, document.body);\n ```\n \n-As a convenience you can create short-hand factory function to create elements from custom components.\n+As a conv...
2014-12-30T10:49:44
nodejs/node
83bf0d7e8cf39c49750cf527f331cdf6b5f4f225
a65296db2c544df91e0f6c8cbc8ff79691f870fe
quic: remove unneeded quicstream.aborted and fixup docs PR-URL: https://github.com/nodejs/node/pull/34351 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/quic.md", "patch": "@@ -25,17 +25,9 @@ const { createQuicSocket } = require('net');\n // Create the QUIC UDP IPv4 socket bound to local IP port 1234\n const socket = createQuicSocket({ endpoint: { port: 1234 } });\n \n-socket.on('session', (session) => {\n+socket.on('session', async (sess...
2020-07-14T03:28:01
vercel/next.js
543ca115716536b753549d950274da21ea979e64
dcb00f676a1b1b16c28d0b0cc30faf8a84664c00
docs: update docs for `remotePatterns` to mention what happens when prop is omitted (#60387) - Fixes #44660
[ { "path": "docs/02-app/02-api-reference/01-components/image.mdx", "patch": "@@ -430,13 +430,14 @@ module.exports = {\n {\n protocol: 'https',\n hostname: '**.example.com',\n+ port: '',\n },\n ],\n },\n }\n ```\n \n-> **Good to know**: The example above will ensure th...
2024-01-08T17:57:23
golang/go
51af90445696772703ed88d967e8c23c8e9e992d
49abdbccde5de042997d6aabe7819212b88f2ef5
go/types, types2: use correct shift value when typechecking constant shift Fixes #56425. Change-Id: Ieae3fdb5326d4b6f6ec1cdcd579051559e34b35b Reviewed-on: https://go-review.googlesource.com/c/go/+/445515 Reviewed-by: Robert Findley <rfindley@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Rober...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -943,9 +943,10 @@ func (check *Checker) shift(x, y *operand, e syntax.Expr, op syntax.Operator) {\n \n \t// Check that constants are representable by uint, but do not convert them\n \t// (see also issue #47243).\n+\tvar yval constant.Value\n ...
2022-10-26T04:07:11
nodejs/node
41c1e72b761ea70b0b4b8407702d831586cba321
2c3092088679b355804416eb8afcf6a667a0df40
build: fix test-ci-js task in Makefile Move benchmark CI to native suite since it requires building an addon. Refs: https://github.com/nodejs/node/issues/34427#issuecomment-660760789 PR-URL: https://github.com/nodejs/node/pull/34433 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@adda...
[ { "path": "Makefile", "patch": "@@ -495,8 +495,8 @@ test-all-suites: | clear-stalled test-build bench-addons-build doc-only ## Run a\n JS_SUITES ?= default\n NATIVE_SUITES ?= addons js-native-api node-api\n # CI_* variables should be kept synchronized with the ones in vcbuild.bat\n-CI_NATIVE_SUITES ?= $(NAT...
2020-07-20T02:18:09
golang/go
069d1fc9e2085d93ea256b6c49b5d7c3026f79a3
5d59fa143ae1d0d8fdcc677297ce58bbfc592111
runtime: fix a few function names on comments Change-Id: I4be0b1e612dcc21ca6bb7d4395f1c0aa52480759 GitHub-Last-Rev: 032480c4c9ddb2bedea26b01bb80b8a079bfdcf3 GitHub-Pull-Request: golang/go#55993 Reviewed-on: https://go-review.googlesource.com/c/go/+/437518 Reviewed-by: hopehook <hopehook@golangcn.org> Reviewed-by: Keit...
[ { "path": "src/runtime/env_plan9.go", "patch": "@@ -17,7 +17,7 @@ const (\n \tnameOffset = 39\n )\n \n-// Goenvs caches the Plan 9 environment variables at start of execution into\n+// goenvs caches the Plan 9 environment variables at start of execution into\n // string array envs, to supply the initial con...
2022-10-03T01:32:11
electron/electron
7c2467b221e55ade4bcc5440ec05be51ba80c810
0a1b5a0d7e7b4e64a7d1b012d04467b1cc18c424
Fix typo
[ { "path": "appveyor.yml", "patch": "@@ -20,6 +20,6 @@ branches:\n only:\n - master\n \n-# disable build and test pahses\n+# disable build and test phases\n build: off\n test: off", "additions": 1, "deletions": 1, "language": "YAML" } ]
2017-07-11T02:55:59
vercel/next.js
dcb00f676a1b1b16c28d0b0cc30faf8a84664c00
864b4f71d1467c0b0261e5fd69e894c5254465ff
Add replay.io test suite dependencies (#60381) ## What? Adds the missing dependencies for recording the Next.js test suite in Replay that @jaril added. ### Steps to use it 1. Clear all local replays using `pnpm replay rm-all` 1. Run the test locally using the `RECORD_REPLAY=1` environment variables. I.e. `...
[ { "path": "package.json", "patch": "@@ -84,6 +84,9 @@\n \"@next/third-parties\": \"workspace:*\",\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n+ \"@replayio/jest\": \"27.2.35\",\n+ \"@replayio/playwright\": \"1.1.8\",\n+ \"@replayio/replay\": \"0.20.1\",\n ...
2024-01-08T16:05:05
facebook/react
159ba54b8c4a03c2e2dacaf159e650b8b5426a56
11f83c1fa02689c62d47eb8c0e9453424449bbd9
Fix typo in warning message for invalid reused markup
[ { "path": "src/browser/ui/ReactMount.js", "patch": "@@ -769,7 +769,7 @@ var ReactMount = {\n \n if (__DEV__) {\n console.warn(\n- 'React attempted to use reuse markup in a container but the ' +\n+ 'React attempted to reuse markup in a container but the ' +\n ...
2014-12-29T09:55:16
nodejs/node
a7cf8da63179ea7cb84cb5f62248f72b44d5d049
e7ed066782c8223f6c832286cf7e2ed12e18ffe9
test: fixup worker + source map test The messaging code uses `Object.defineProperty()`, which accesses `value` on `Object.prototype` by default, so some calls to the getter here would actually be expected. Instead, make the list of accessed properties more specific to the tested source map code to avoid flakiness. Re...
[ { "path": "test/parallel/test-worker-terminate-source-map.js", "patch": "@@ -32,9 +32,11 @@ Map.prototype.entries = increaseCallCount;\n Object.keys = increaseCallCount;\n Object.create = increaseCallCount;\n Object.hasOwnProperty = increaseCallCount;\n-Object.defineProperty(Object.prototype, 'value', {\n- ...
2020-06-25T22:56:14
golang/go
2dcc9acbd27902c9e551f54ca29d2519418b45c4
2bdb5c57f1efcbddab536028d053798e35de6226
cmd/go: show an error when a package in a module conflicts with one in std Fixes #35270 Change-Id: I5d2a04359702be6dc04affb867540091b926bc23 Reviewed-on: https://go-review.googlesource.com/c/go/+/434095 Run-TryBot: xie cui <523516579@qq.com> Auto-Submit: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <g...
[ { "path": "src/cmd/go/internal/modload/import.go", "patch": "@@ -286,6 +286,10 @@ func importFromModules(ctx context.Context, path string, rs *Requirements, mg *M\n \t\treturn module.Version{}, \"\", \"\", nil, &invalidImportError{importPath: path, err: err}\n \t}\n \n+\t// Check each module on the build li...
2022-09-25T10:40:54
vercel/next.js
d382b4b8445c7347030785a9d5b99ade26df67e9
7ef127a44c068ce5881b7b3b5539b0ca4c6d6f46
Revert "fix glob matching of alternatives" (vercel/turbo#6954) Reverts vercel/turbo#6839 Closes PACK-2200
[ { "path": "crates/turbo-tasks-fs/src/glob.rs", "patch": "@@ -159,7 +159,6 @@ impl GlobPart {\n match_partial,\n previous_part_is_path_separator_equivalent,\n cursor: GraphemeCursor::new(0, path.len(), true),\n- index: 0,\n glob_iterator: None,\n ...
2024-01-08T14:22:33
nodejs/node
3caa2e256bd403e0fb06cfbefc0338462f2c60d9
90ee98a7d14829a6c7c6fc6e1700e58c3c25b92d
build: do not run benchmark tests on 'make test' Fixes: https://github.com/nodejs/node/issues/34427 PR-URL: https://github.com/nodejs/node/pull/34434 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <...
[ { "path": "Makefile", "patch": "@@ -298,8 +298,8 @@ v8:\n jstest: build-addons build-js-native-api-tests build-node-api-tests ## Runs addon tests and JS tests\n \t$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) \\\n \t\t--skip-tests=$(CI_SKIP_TESTS) \\\n-\t\t$(CI_JS_SUITES) \\\n-\t\t$(CI_...
2020-07-20T04:13:13
golang/go
2bdb5c57f1efcbddab536028d053798e35de6226
90a67d052e6dc3f9d522820ca60cc9862a8016ba
debug/elf: use saferio.SliceCap when decoding ELF sections This avoids allocating an overly large slice for corrupt input. No test case because the problem can only happen for invalid data. Let the fuzzer find cases like this. Updates #33121. Change-Id: Ie2d947a3865d3499034286f2d08d3e3204015f3e GitHub-Last-Rev: 6c6...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -467,8 +467,12 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t}\n \n \t// Read section headers\n-\tf.Sections = make([]*Section, shnum)\n-\tnames := make([]uint32, shnum)\n+\tc := saferio.SliceCap((*Section)(nil), uint64(shnum))\n+\tif c < 0 {\n+\t\tretur...
2022-10-24T23:37:05
vercel/next.js
1e7e6e1c93891c0789976e3c0904506de97c66e9
3db878629e859512881280ff6faf6977914c9ae5
Update `swc_core` to `v0.87.16` (#60192) ### What? Update swc crates ### Why? To fix bugs ### How? Closes PACK-1682 Closes PACK-2154 Fixes #56144 --------- Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>
[ { "path": "Cargo.lock", "patch": "@@ -5280,9 +5280,9 @@ checksum = \"ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012\"\n \n [[package]]\n name = \"sha2\"\n-version = \"0.10.6\"\n+version = \"0.10.8\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"82e6b79...
2024-01-08T13:38:21
nodejs/node
f4f191bbc26c367ed8fa56c2d1297ef437c5f0fb
07b3aae04e659d3681b9055164f4543c8c59b07a
build: define NODE_EXPERIMENTAL_QUIC in mkcodecache and node_mksnapshot Otherwise the build would fail with `./configure --experimental-quic --ninja` as the list of per-Environment values would not match and the code cache builder would not generate code cache for the quic JS sources. This is more or less a band-aid -...
[ { "path": "node.gyp", "patch": "@@ -1376,6 +1376,11 @@\n 'HAVE_OPENSSL=1',\n ],\n }],\n+ [ 'node_use_openssl==\"true\" and experimental_quic==1', {\n+ 'defines': [\n+ 'NODE_EXPERIMENTAL_QUIC=1',\n+ ],\n+ }],\n ['v8_enable_inspe...
2020-07-21T00:56:47
facebook/react
20c43d4ec8a68035f88abb8216bf468dcd9b32ec
41b919bb817cc18e23f6ba6f1b41c71c180ef592
Fixup jsdoc for findDOMNode
[ { "path": "src/browser/findDOMNode.js", "patch": "@@ -22,7 +22,7 @@ var isNode = require('isNode');\n /**\n * Returns the DOM node rendered by this element.\n *\n- * @param {ReactComponent|DOMElement} element\n+ * @param {ReactComponent|DOMElement} componentOrElement\n * @return {DOMElement} The root nod...
2014-12-23T23:56:05
electron/electron
882f1002d5762dd55a597b73b4766e0bf4b5db22
8a62d81fc5230607ec9fdbe6690f232396da0876
Fix french language mistakes in documentation
[ { "path": "docs-translations/fr-FR/tutorial/electron-versioning.md", "patch": "@@ -1,14 +1,14 @@\n # Versionage d'Electron\n \n-Si vous êtes un développeur Node expérimenté, vous êtes sûrement au courant de `semver` - et pourrez l'utiliser pour donner à vos systèmes de gestion de dépendences seulement des l...
2017-07-09T07:48:39
golang/go
90a67d052e6dc3f9d522820ca60cc9862a8016ba
4c9006e45f7c2ab51328868bf2894c3eba7ac3e6
math/rand: auto-seed global source Implement proposal #54880, to automatically seed the global source. The justification for this not being a breaking change is that any use of the global source in a package's init function or exported API clearly must be valid - that is, if a package changes how much randomness it c...
[ { "path": "src/math/rand/auto_test.go", "patch": "@@ -0,0 +1,40 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package rand_test\n+\n+import (\n+\t. \"math/rand\"\n+\t\"testing\"\n+)...
2022-10-04T16:20:18
vercel/next.js
3db878629e859512881280ff6faf6977914c9ae5
75e138198d0723dee4d0488af8516c6e8c5a6ffc
Fix dynamic sitemap detection (#60356) ### What Fix bad detection of dynamic route of sitemap metadata route, the swc AST check should process when the text are detected. But prevuious if there's text with `generateSitemap` such as comment but not the actual export it will fail. ### How Add both checks on me...
[ { "path": "packages/next/src/build/analysis/get-page-static-info.ts", "patch": "@@ -459,12 +459,12 @@ export async function isDynamicMetadataRoute(\n pageFilePath: string\n ): Promise<boolean> {\n const fileContent = (await tryToReadFile(pageFilePath, true)) || ''\n- if (!/generateImageMetadata|generat...
2024-01-08T13:11:00
nodejs/node
07b3aae04e659d3681b9055164f4543c8c59b07a
f8eaeb0c8e3196eb9d2ec8fd818c36aa27e31f72
doc: add HarshithaKP to collaborators Fixes: https://github.com/nodejs/node/issues/34242 PR-URL: https://github.com/nodejs/node/pull/34417 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <t...
[ { "path": "README.md", "patch": "@@ -311,6 +311,8 @@ For information about the governance of the Node.js project, see\n **Gireesh Punathil** &lt;gpunathi@in.ibm.com&gt; (he/him)\n * [guybedford](https://github.com/guybedford) -\n **Guy Bedford** &lt;guybedford@gmail.com&gt; (he/him)\n+* [HarshithaKP](https:...
2020-07-18T07:31:44
electron/electron
b486814c77554caea25f08b1efad558ff2371cb7
8a62d81fc5230607ec9fdbe6690f232396da0876
404 Error i think should remove a "s" in tutorial"s"/mac-app-store-submission-guide.md
[ { "path": "docs/glossary.md", "patch": "@@ -155,7 +155,7 @@ embedded content.\n [autoUpdater]: api/auto-updater.md\n [electron-builder]: https://github.com/electron-userland/electron-builder\n [libchromiumcontent]: #libchromiumcontent\n-[Mac App Store Submission Guide]: tutorials/mac-app-store-submission-gu...
2017-07-09T05:26:35
golang/go
ddaa25b5dd5ec8d66712c12c2a1ef4f12c1b583b
2d63305b8446c69d79730ff556385cabe09f54ec
cmd/go: split quotes in GOFLAGS same as in other env vars GOFLAGS didn't split on quotes because no other env vars (such as CC, CXX, ...) did either. This kept them all consistent. CL 341936 changed everything but GOFLAGS, making them inconsistent. Split GOFLAGS the same way as the other environment variables. Fixe...
[ { "path": "src/cmd/go/internal/base/goflags.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"strings\"\n \n \t\"cmd/go/internal/cfg\"\n+\t\"cmd/internal/quoted\"\n )\n \n var goflags []string // cached $GOFLAGS list; can be -x or --x form\n@@ -30,19 +31,27 @@ func InitGOFLAGS() {\n \t\treturn\n \t}\n \n-\tgo...
2022-10-19T13:20:21
vercel/next.js
7dbb66f390ab54e4b5c4c632a626cbcd6fd8f271
20a2a924004cd68f38e6d9a93509eb5c32a2d96d
Simplify if condition (#60250) ## What? Makes it easier to reason about this condition. <!-- 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 chang...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1475,7 +1475,7 @@ export default async function build(\n }\n \n // For app directory, we run type checking after build.\n- if (appDir && !(isCompileMode || isGenerateMode)) {\n+ if (appDir && !isCompileMode && !isGenerateMode)...
2024-01-08T10:31:17
facebook/react
b2bf83ec854d697c4e50c738538fb49f32a3eb38
3fec78638deb5926b25063dc9f3fe8eef5140751
Temporarily fix EmptyComponents This a workaround for the problem described in #2770. It should be temporary because this is really just working around the real problem.
[ { "path": "src/core/ReactEmptyComponent.js", "patch": "@@ -30,10 +30,21 @@ var ReactEmptyComponentInjection = {\n var ReactEmptyComponentType = function() {};\n ReactEmptyComponentType.prototype.componentDidMount = function() {\n var internalInstance = ReactInstanceMap.get(this);\n+ // TODO: Make sure we...
2014-12-23T23:33:53
nodejs/node
b0b52b2023f5cd0df4ae921850815586b4313dca
687dbd85263f433cc351c6daa83f9296a1d0bb4f
test: fix flaky test-watch-file PR-URL: https://github.com/nodejs/node/pull/34420 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Myles Borins <myles.borins@gmail.com>
[ { "path": "test/pummel/test-watch-file.js", "patch": "@@ -34,8 +34,11 @@ fs.closeSync(fs.openSync(f, 'w'));\n let changes = 0;\n function watchFile() {\n fs.watchFile(f, (curr, prev) => {\n+ // Make sure there is at least one watch event that shows a changed mtime.\n+ if (curr.mtime <= prev.mtime) {...
2020-07-18T15:51:53
facebook/react
f1bab136d07a6d50901ee7aa5d7d2267ccb855fb
3fec78638deb5926b25063dc9f3fe8eef5140751
Throw a caught error in the default warning module This throws an error that is immediately caught. This allows you to use the debugger's "break on caught exception" feature to break on warnings. This should help with tracking down these warnings using the stack. However, it could also add more noise to other debugg...
[ { "path": "src/vendor/core/warning.js", "patch": "@@ -33,7 +33,14 @@ if (__DEV__) {\n \n if (!condition) {\n var argIndex = 0;\n- console.warn('Warning: ' + format.replace(/%s/g, () => args[argIndex++]));\n+ var message = 'Warning: ' + format.replace(/%s/g, () => args[argIndex++]);\n+ ...
2014-12-23T22:21:04
electron/electron
5f2dd2ef6c39cf96abdbd1d6f57d15d4662779c5
8a62d81fc5230607ec9fdbe6690f232396da0876
Fix #8017: Crash copying croped image to clipboard
[ { "path": "atom/common/api/atom_api_clipboard.cc", "patch": "@@ -7,6 +7,7 @@\n #include \"atom/common/native_mate_converters/image_converter.h\"\n #include \"atom/common/native_mate_converters/string16_converter.h\"\n #include \"base/strings/utf_string_conversions.h\"\n+#include \"third_party/skia/include/c...
2017-06-29T13:11:57
golang/go
8749d12bb76db77cdf37d47d666a5962b8a5928b
71048daa2f4e0c23b651d56fa157e1a75e098a82
cmd/go: add Subversion support to the local vcstest server With this change applied, 'go test cmd/go/...' passes even with the IP routing for vcs-test.golang.org disabled using 'ip route add blackhole $VCSTEST_IP/32'. Fixes #27494. Change-Id: I45651d2429c7fea7bbf693b2f129e260e1c59891 Reviewed-on: https://go-review.g...
[ { "path": "src/cmd/go/internal/vcs/vcs.go", "patch": "@@ -1212,9 +1212,6 @@ func interceptVCSTest(repo string, vcs *Cmd, security web.SecurityMode) (repoURL\n \t\t// requests will be intercepted at a lower level (in cmd/go/internal/web).\n \t\treturn \"\", false\n \t}\n-\tif vcs == vcsSvn {\n-\t\treturn \"\...
2022-09-01T12:22:14
vercel/next.js
605eea316cf8c11897c6fb9956b86e14988539d9
5e7106141f1ca6db0ba8830cace70bfac18b3284
[doc] Update 03-linking-and-navigating.mdx (#60345) I think this meant to be `client` instead of `server` ? <!-- 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 checkl...
[ { "path": "docs/02-app/01-building-your-application/01-routing/03-linking-and-navigating.mdx", "patch": "@@ -237,7 +237,7 @@ For example, when navigating between two sibling routes, `/dashboard/settings` a\n height=\"945\"\n />\n \n-Without partial rendering, each navigation would cause the full page to r...
2024-01-08T06:17:36
rust-lang/rust
99576aa3f7f6148480608fb62fa10a38cd64f1fd
fa7659d57265f31f70d5ba1e8a9b30b399a782a7
fix: Infinite recursion while lowering assoc type bounds from supertraits
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower_nextsolver.rs", "patch": "@@ -1756,7 +1756,11 @@ fn named_associated_type_shorthand_candidates<'db, R>(\n db,\n GenericDefId::TraitId(trait_def_id),\n PredicateFilter::SelfTrait,\n- |pre...
2025-08-21T20:24:33
nodejs/node
687dbd85263f433cc351c6daa83f9296a1d0bb4f
08b6335c9c33a0e0af69a85a75b40bd8f6e163c6
src: do not crash if ToggleAsyncHook fails during termination In the termination case, we should not crash. There’s also no harm being done by ignoring the termination exception here, since the thread is about to be torn down anyway. Also, add a guard against running this during shutdown. That is the likely cause of ...
[ { "path": "src/inspector_agent.cc", "patch": "@@ -841,13 +841,18 @@ void Agent::DisableAsyncHook() {\n \n void Agent::ToggleAsyncHook(Isolate* isolate,\n const Global<Function>& fn) {\n+ // Guard against running this during cleanup -- no async events will be\n+ // emitted anywa...
2020-07-14T15:21:03
electron/electron
42cb3461afaf789e81ed8601c674cdb527d17df1
8a62d81fc5230607ec9fdbe6690f232396da0876
:bug: Fix #9231: Don't load url when detached.
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -993,6 +993,10 @@ void WebContents::LoadURL(const GURL& url, const mate::Dictionary& options) {\n return;\n }\n \n+ if (guest_delegate_ && !guest_delegate_->Attached()) {\n+ return;\n+ }\n+\n content::NavigationController::Load...
2017-06-21T12:17:27
vercel/next.js
af24c45398f33a3ec51dbb020424e972c8a09e14
9d8015ded3bf2a9317ee47f550612d0d92bd4cef
fixed import path in with-jest template. (#60332) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contribut...
[ { "path": "examples/with-jest/__tests__/index.test.tsx", "patch": "@@ -2,7 +2,7 @@\n * @jest-environment jsdom\n */\n import { render, screen } from '@testing-library/react'\n-import Home from '@/pages/index'\n+import Home from '@/pages/home/index'\n \n describe('Home', () => {\n it('renders a heading',...
2024-01-06T23:26:59
rust-lang/rust
d022089f58fa6bf8f4f0bb020640836eb10eae7a
15a8999aedc0e3a0eb7b4e956dd79b3a2f28f2a3
rustdoc::invalid_html_tags(unclosed comment): fix off by one in span
[ { "path": "src/librustdoc/passes/lint/html_tags.rs", "patch": "@@ -520,7 +520,7 @@ impl TagParser {\n iter.next();\n *is_in_comment = Some(Range {\n start: range.start + start_pos,\n- end: range.start + start_pos + 3,\n+ ...
2025-08-19T18:19:38
facebook/react
52164602466e6d9fe3787c522977c7a112d2ee21
7ed36c30b10b197d96b5586fac912af9ff874073
Fix version typo in grunt task
[ { "path": "grunt/tasks/version-check.js", "patch": "@@ -25,7 +25,7 @@ module.exports = function() {\n }\n if (npmReactVersion !== reactToolsVersion) {\n grunt.log.error(\n- 'npm-react version does not match react-tools veersion. Expected %s, saw %s',\n+ 'npm-react version does not match re...
2014-12-20T19:29:06
golang/go
d5155f61928a55e570beaa214465bc48ddd2c16c
55eaae452cf69df768b2aaf6045db22d6c1a4029
cmd/go: redirect vcs-test.golang.org repo URLs to a test-local server The new server reconstructs the vcs-test repos on the fly using scripts that run the actual version-control binaries. This allows those repos to be code-reviewed using our normal tools — and, crucially, allows contributors to add new vcs-test conte...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -33,6 +33,8 @@ import (\n \t\"cmd/go/internal/cfg\"\n \t\"cmd/go/internal/robustio\"\n \t\"cmd/go/internal/search\"\n+\t\"cmd/go/internal/vcs\"\n+\t\"cmd/go/internal/vcweb/vcstest\"\n \t\"cmd/go/internal/work\"\n \t\"cmd/internal/sys\"\n \n@@ -129,6 +131,12 @@...
2022-07-30T06:54:32
nodejs/node
02c4869beec52d2664c747d520dfe078d2b3c714
95770df2fb487c95ffb6cc3be4d7344e975c0ae8
stream: fix Duplex._construct race Ensures that _construct has finished before invoking _destroy. The 'constructed' property was not properly set to false for both writable and readable state. Fixes: https://github.com/nodejs/node/issues/34448 PR-URL: https://github.com/nodejs/node/pull/34456 Reviewed-By: James M S...
[ { "path": "lib/internal/streams/destroy.js", "patch": "@@ -203,13 +203,6 @@ function construct(stream, cb) {\n return;\n }\n \n- stream.once(kConstruct, cb);\n-\n- if (stream.listenerCount(kConstruct) > 1) {\n- // Duplex\n- return;\n- }\n-\n const r = stream._readableState;\n const w = st...
2020-07-21T05:45:11
electron/electron
06b5acdac0ea730d44219f2ddd07818053970280
8a62d81fc5230607ec9fdbe6690f232396da0876
Fix #8768: Show() on already open modal Calling show() on an already open modal causes the parent to become unusable
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -374,7 +374,8 @@ bool NativeWindowViews::IsFocused() {\n }\n \n void NativeWindowViews::Show() {\n- if (is_modal() && NativeWindow::parent())\n+ if (is_modal() && NativeWindow::parent() &&\n+ !window_->native_widget_private()->IsVisible())...
2017-06-29T04:37:54
vercel/next.js
6568502dcfeaaff0d9aa28ff7f6eb29ee84728c6
977df129177853d8a57536859eedfcec39de2103
docs: update broken link in UPGRADING.md (#60342) This link → [/docs/02-app/01-building-your-application/09-upgrading/index.mdx](https://github.com/vercel/next.js/blob/21452921c055421ec8a44dae6e0e5f311c503337/docs/02-app/01-building-your-application/09-upgrading/index.mdx) doesn't exist. Fixing it to link to the ...
[ { "path": "UPGRADING.md", "patch": "@@ -1 +1 @@\n-This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading). It's also available in this repository on [/docs/02-app/01-building-your-application/09-upgrading/index.mdx](/docs/02-app/01-building-your-application/09-upgradin...
2024-01-06T22:46:07
rust-lang/rust
53b775d9c6664aebc1526cf2ac300566da24262a
6ba0ce40941eee1ca02e9ba49c791ada5158747a
rustdoc-search: GUI tests check for `//` in URL When this fails, you get output that looks like: /home/user/rust/tests/rustdoc-gui/search-result-impl-disambiguation.goml search-result-impl-disambiguation... FAILED [ERROR] `tests/rustdoc-gui/utils.goml` around line 49 from `tests/rustdoc-gui/search-res...
[ { "path": "tests/rustdoc-gui/utils.goml", "patch": "@@ -39,6 +39,13 @@ define-function: (\n \"perform-search\",\n [query],\n block {\n+ // Block requests with doubled `//`.\n+ // Amazon S3 doesn't support them, but other web hosts do,\n+ // and so do file:/// URLs, which mea...
2025-08-20T16:03:37
nodejs/node
78cd10860818725a1197b34a76e8b8cc81f53326
bdf6827edcaea80dee719cd70647d983a3438b6d
doc: add rexagod to collaborators Fixes: https://github.com/nodejs/node/issues/34121 PR-URL: https://github.com/nodejs/node/pull/34457 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
[ { "path": "README.md", "patch": "@@ -373,6 +373,8 @@ For information about the governance of the Node.js project, see\n **Stephen Belanger** &lt;admin@stephenbelanger.com&gt; (he/him)\n * [refack](https://github.com/refack) -\n **Refael Ackermann (רפאל פלחי)** &lt;refack@gmail.com&gt; (he/him/הוא/אתה)\n+* [...
2020-07-21T06:21:17
golang/go
55eaae452cf69df768b2aaf6045db22d6c1a4029
9fffcde118ee3d2522744661b1af1eafb1008667
os/exec: add the Cancel and WaitDelay fields Fixes #50436. Change-Id: I9dff8caa317a04b7b2b605f810b8f12ef8ca485d Reviewed-on: https://go-review.googlesource.com/c/go/+/401835 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> Review...
[ { "path": "api/next/50436.txt", "patch": "@@ -0,0 +1,3 @@\n+pkg os/exec, type Cmd struct, Cancel func() error #50436\n+pkg os/exec, type Cmd struct, WaitDelay time.Duration #50436\n+pkg os/exec, var ErrWaitDelay error #50436", "additions": 3, "deletions": 0, "language": "Plain Text" }, { ...
2022-04-21T17:58:06
vercel/next.js
977df129177853d8a57536859eedfcec39de2103
a95a7d684fd2d721d445502177aca1271533d4fb
Fix bundle analyzer NPM package name in documentation (#60339) This fixes a typo in the Next.js documentation.
[ { "path": "docs/02-app/01-building-your-application/06-optimizing/06-bundle-analyzer.mdx", "patch": "@@ -14,7 +14,7 @@ related:\n Install the plugin by running the following command:\n \n ```bash\n-npm i @next/bundle-analyzers\n+npm i @next/bundle-analyzer\n # or\n yarn add @next/bundle-analyzer\n # or", ...
2024-01-06T22:10:56
facebook/react
ef4e75b03121c6cd9d1c5ea76915e7980598de81
b7734a70000289f04096a0dcf06c2e293db6c644
Fix conference year typo in blog post content
[ { "path": "docs/_posts/2014-12-19-react-js-conf-diversity-scholarship.md", "patch": "@@ -11,7 +11,7 @@ I'm really excited about this and I hope you are too! The full announcement is b\n \n The Diversity Team at Facebook is excited to announce that we are now accepting applications for the React.js Conf scho...
2014-12-19T22:06:24
nodejs/node
bdf6827edcaea80dee719cd70647d983a3438b6d
2c05beeb54cef998fc11933936e18094ec3c540f
dgram: add IPv6 scope id suffix to received udp6 dgrams Add IPv6 link local scope ID suffix to the rinfo address in those received upd6 datagrams whose source address is a link local address. Add a new test case, test-dgram-udp6-link-local-address, to verify that IPv6 UDP datagrams received from a link-local source a...
[ { "path": "doc/api/dgram.md", "patch": "@@ -96,6 +96,12 @@ The event handler function is passed two arguments: `msg` and `rinfo`.\n * `port` {number} The sender port.\n * `size` {number} The message size.\n \n+If the source address of the incoming packet is an IPv6 link local\n+address, the interface na...
2017-07-26T11:49:21
golang/go
9fffcde118ee3d2522744661b1af1eafb1008667
3617514de07278637b7ead51447d23c8799b1d60
cmd/go: fix script conditions that require cgo This fixes a regression introduced in CL 419875 that causes features that require cgo to be tested on the nocgo builders. For #27494. Change-Id: Iee61225c98c1275810256ab002a698fc4b42c053 Reviewed-on: https://go-review.googlesource.com/c/go/+/445235 Auto-Submit: Bryan Mi...
[ { "path": "src/cmd/go/scriptconds_test.go", "patch": "@@ -34,21 +34,21 @@ func scriptConditions() map[string]script.Cond {\n \t\treturn script.OnceCondition(summary, func() (bool, error) { return f(), nil })\n \t}\n \n-\tadd(\"asan\", sysCondition(\"-asan\", platform.ASanSupported))\n+\tadd(\"asan\", sysCon...
2022-10-24T23:50:48
rust-lang/rust
e8ae1dab12bc1388cd5f6545ccc88297b779f511
57e620e56b718abaf47f18e1e20a3cc3480b258b
next-solver fix const_trait_impl bootstrap
[ { "path": "compiler/rustc_middle/src/ty/context.rs", "patch": "@@ -33,7 +33,7 @@ use rustc_errors::{\n Applicability, Diag, DiagCtxtHandle, ErrorGuaranteed, LintDiagnostic, LintEmitter, MultiSpan,\n };\n use rustc_hir::attrs::AttributeKind;\n-use rustc_hir::def::{CtorKind, DefKind};\n+use rustc_hir::def...
2025-08-21T13:45:40
facebook/react
cea2c387336e80f308dca106a8b2ae17d248da7b
60b2241ad4ece21a09fede202a5e9858ecf37ba1
Separate createElement and JSX tests This essentially copies all classic element creation tests to the modern JSX tests. The classic tests doesn't use JSX and modern tests do. The idea is that the JSX tests can start dropping dynamic checks once we have Flow support for those features. JSX won't be necessary for drop...
[ { "path": "src/browser/__tests__/ReactDOM-test.js", "patch": "@@ -47,6 +47,12 @@ describe('ReactDOM', function() {\n });\n */\n \n+ it(\"allows a DOM element to be used with a string\", function() {\n+ var element = React.createElement('div', { className: 'foo' });\n+ var instance = ReactTestUtil...
2014-12-19T00:13:29
vercel/next.js
a95a7d684fd2d721d445502177aca1271533d4fb
0ea127c642b21b432efdfeb69fe1d96c3ba462cb
docs: Document error cases with head/body-tags (#56412) Co-authored-by: Lee Robinson <me@leerob.io>
[ { "path": "docs/03-pages/02-api-reference/01-components/head.mdx", "patch": "@@ -30,6 +30,8 @@ function IndexPage() {\n export default IndexPage\n ```\n \n+## Avoid duplicated tags\n+\n To avoid duplicate tags in your `head` you can use the `key` property, which will make sure the tag is only rendered once,...
2024-01-06T17:16:21
nodejs/node
00823f29677c2fc6d2c543970cf18769d09b6a31
01bd8102ef4c66fbdb7e01ed17e976a46bfcf5d9
src: add callback scope for native immediates This ensures that microtasks scheduled by native immediates are run after the tasks are done. In particular, this affects the inspector integration since 6f9f546406820dc. Fixes: https://github.com/nodejs/node/issues/33002 Refs: https://github.com/nodejs/node/pull/32523 P...
[ { "path": "src/env.cc", "patch": "@@ -698,6 +698,9 @@ void Environment::RunAndClearInterrupts() {\n void Environment::RunAndClearNativeImmediates(bool only_refed) {\n TraceEventScope trace_scope(TRACING_CATEGORY_NODE1(environment),\n \"RunAndClearNativeImmediates\", this);\n+...
2020-07-14T17:06:37
golang/go
3f84a3f324ba1f1e5baa919ed66585ed836eba30
4319231686c28d8542219991f0c9026139142b9c
cmd/go/internal/script: define GOOS, GOARCH, and compiler conditions using suffixes This replaces a large set of individual GOOS and GOARCH conditions with a smaller set of more verbose conditions. On balance, the more uniform structure and more concise documentation seem worth the verbosity. For #27494. Change-Id: ...
[ { "path": "src/cmd/go/internal/script/conds.go", "patch": "@@ -6,6 +6,7 @@ package script\n \n import (\n \t\"cmd/go/internal/imports\"\n+\t\"fmt\"\n \t\"os\"\n \t\"runtime\"\n \t\"sync\"\n@@ -18,18 +19,43 @@ import (\n func DefaultConds() map[string]Cond {\n \tconds := make(map[string]Cond)\n \n-\t// TODO(...
2022-07-28T17:50:59
vercel/next.js
caf282ba8a1a13c13f4602b1f303f4d86430604c
efebba80a7ca06b0fdcd619563f13945eb22508a
docs: typo fix in compression page (#60318)
[ { "path": "docs/02-app/02-api-reference/05-next-config-js/compress.mdx", "patch": "@@ -5,7 +5,7 @@ description: Next.js provides gzip compression to compress rendered content and\n \n {/* The content of this doc is shared between the app and pages router. You can use the `<PagesOnly>Content</PagesOnly>` com...
2024-01-06T16:02:05
rust-lang/rust
8c3a60c0879c03266c7f589e44450fc14af6b3e0
69d5855ba3a100fadda5692eb4e1bc90e67528ac
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -75,7 +75,6 @@ rm -r tests/run-make/reachable-extern-fn-available-lto\n \n # coverage instrumentation\n rm tests/ui/consts/precise-drop-with-coverage.rs\n-rm tests/ui/issues/issue-85461.rs\n rm -r tests/ui/instrument-coverage/\n \n # optimization tests",...
2025-08-21T13:25:12
nodejs/node
ca60f5fb447e545270ef3c8f6dbf495b64b5ee12
0c6ac2deb3f3e11e9d36740107564286a5cbe6a6
doc: fix line length in worker_threads.md PR-URL: https://github.com/nodejs/node/pull/34419 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -109,9 +109,10 @@ markAsUntransferable(pooledBuffer);\n const { port1 } = new MessageChannel();\n port1.postMessage(typedArray1, [ typedArray1.buffer ]);\n \n-// The following line prints the contents of typedArray1 -- it still owns its\n-// memory and has...
2020-07-18T14:26:54
golang/go
a971904e10c85e4aeb2cb6a3cf6d8efadc259fdc
151668c694a15029db236976f06f18482859db61
cmd/go/internal/script: remove special-case escaping logic for $WORK Previously, the script engine implicitly escaped the path in the $WORK environment variable to be the literal string '$WORK', which produces somewhat better error messages in case of failure. However, for a general-purpose script engine that implici...
[ { "path": "src/cmd/go/internal/script/cmds.go", "patch": "@@ -707,9 +707,6 @@ func match(s *State, args []string, text, name string) error {\n \t\ttext = string(data)\n \t}\n \n-\t// Matching against workdir would be misleading.\n-\ttext = strings.ReplaceAll(text, s.workdir, \"$WORK\")\n-\n \tif n > 0 {\n \...
2022-08-18T17:54:43
facebook/react
9adb4447cd92d2ccb05a179939dc76e81ff42663
626023fc52e2f7353499f995483375c9e2498c11
Added note for proper example display jsfiddles weren't showing up for me. Upon further investigation I found that changing to http fixes the embedding.
[ { "path": "docs/docs/thinking-in-react.md", "patch": "@@ -9,7 +9,7 @@ This was originally a [blog post](/react/blog/2013/11/05/thinking-in-react.html)\n \n React is, in my opinion, the premier way to build big, fast Web apps with JavaScript. It has scaled very well for us at Facebook and Instagram.\n \n-One...
2014-12-17T20:52:49
electron/electron
120b05e0752f4e8822e46bc3de84b7d6347c09cd
d58a5dfe3a97311b9f02280f60848623e6851ed6
Fix error message of `assertWithinDelta()`
[ { "path": "spec/api-browser-window-spec.js", "patch": "@@ -2678,7 +2678,7 @@ const assertBoundsEqual = (actual, expect) => {\n \n const assertWithinDelta = (actual, expect, delta, label) => {\n const result = Math.abs(actual - expect)\n- assert.ok(result <= delta, `${label} value of ${expect} was not wit...
2017-07-04T09:56:21
vercel/next.js
efebba80a7ca06b0fdcd619563f13945eb22508a
43410c992684670bc95dad25873f1ec89fed2f25
parallel routes: fix @children slots (#60288) ### What? Our [docs](https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#convention) point out that `app/page.js` is equivalent to `app/@children/page.js`, however in practice this is not the case, and causes type errors when using `@children...
[ { "path": "packages/next/src/build/normalize-catchall-routes.test.ts", "patch": "@@ -115,6 +115,17 @@ describe('normalizeCatchallRoutes', () => {\n \n const initialAppPaths = JSON.parse(JSON.stringify(appPaths))\n \n+ expect(appPaths).toMatchObject(initialAppPaths)\n+ })\n+\n+ it('should not add th...
2024-01-06T15:24:44
rust-lang/rust
d07009cb8918f22271bdca0942cae4de452a0ce6
922958cffe059e9c156835df19d199ccd861c36a
Fix the ABI parameter inconsistency issue in debug.rs for LoongArch64
[ { "path": "tests/ui/abi/debug.generic.stderr", "patch": "@@ -89,7 +89,7 @@ error: fn_abi_of(test) = FnAbi {\n conv: Rust,\n can_unwind: $SOME_BOOL,\n }\n- --> $DIR/debug.rs:27:1\n+ --> $DIR/debug.rs:30:1\n |\n LL | fn test(_x: u8) -> bool {\n | ^^^^^^^^^^^^^^^^^^^^^^^\n@...
2025-08-21T11:20:37
nodejs/node
0c6ac2deb3f3e11e9d36740107564286a5cbe6a6
50bc7adcf70b74526326b2ef1e410a55a4a589e1
doc: fix typos in n-api, tls and worker_threads PR-URL: https://github.com/nodejs/node/pull/34419 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/n-api.md", "patch": "@@ -127,7 +127,7 @@ the native addon will also need to have a C/C++ toolchain installed.\n \n For Linux developers, the necessary C/C++ toolchain packages are readily\n available. [GCC][] is widely used in the Node.js community to build and\n-test across a variety of ...
2020-07-18T14:00:36
electron/electron
440b238157a8742b58b940187beee5cfcdb76488
1c1cf0d1f2b8493936168ddee778ae7d8a23c4aa
Fixed build issues in debug mode
[ { "path": "atom/common/native_mate_converters/callback.h", "patch": "@@ -55,7 +55,7 @@ struct V8FunctionInvoker<v8::Local<v8::Value>(ArgTypes...)> {\n v8::Local<v8::Function> holder = function.NewHandle(isolate);\n v8::Local<v8::Context> context = holder->CreationContext();\n v8::Context::Scope ...
2017-06-30T09:40:35
vercel/next.js
826955b3c3d4d04c0b314b68f6767929b2729aa4
21452921c055421ec8a44dae6e0e5f311c503337
micro fix of the cache limit check (#60249) ### Fixing a bug I'm sorry, I have no idea how I managed to delete this, as I just copied the code. However, I had to figure out why the tests passed. When I test the running application locally, it works as expected. So, when a route is first used in a running pr...
[ { "path": "packages/next/src/server/lib/incremental-cache/index.ts", "patch": "@@ -562,7 +562,7 @@ export class IncrementalCache implements IncrementalCacheType {\n ctx.fetchCache &&\n // we don't show this error/warning when a custom cache handler is being used\n // as it might not have t...
2024-01-06T01:46:49
golang/go
151668c694a15029db236976f06f18482859db61
bd6cd7db07f314443acdb980393f57386d40551f
cmd/go: extract the TestScript engine into a standalone package This change decouples the script engine from both cmd/go and the testing package; I intend to reuse it in the replacement for the vcs-test.golang.org server. This change also adds a few new script commands: - 'echo' echoes its arguments, useful for ver...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -48,12 +48,10 @@ func init() {\n }\n \n var (\n-\tcanRace = false // whether we can run the race detector\n-\tcanCgo = false // whether we can use cgo\n-\tcanMSan = false // whether we can run the memory sanitizer\n-\tcanASan ...
2022-07-20T21:02:35
facebook/react
63d8e0c144a5ef2965502c0a48c15220d4217eb2
0b0fa760ccd3789c4ec92370f16334c6dca50112
Fix lint
[ { "path": "src/classic/class/__tests__/ReactClass-test.js", "patch": "@@ -185,13 +185,13 @@ describe('ReactClass-spec', function() {\n React.createClass({\n mixins: [{}],\n propTypes: {\n- foo: ReactPropTypes.string\n+ foo: React.PropTypes.string\n },\n ...
2014-12-14T23:22:09
nodejs/node
da95dd773216a7fe7bf985014f3920893cbdf23d
1b6565b13c0eaa96416f09972acf89a6d8e18cfd
Revert "module: fix check for package.json at volume root" This reverts commit 51af89fe453738262e2c10c831705a385ec78530. This has needed to be backed out of both the 14.5.0 and 14.6.0 releases due to creating regressions across multiple projects including: * coffeescript * JSONStream * gulp * and more We should reo...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -49,7 +49,6 @@ const {\n SafeSet,\n String,\n StringPrototypeIndexOf,\n- StringPrototypeLastIndexOf,\n StringPrototypeMatch,\n StringPrototypeSlice,\n StringPrototypeStartsWith,\n@@ -310,13 +309,12 @@ function readPackageScope(checkPa...
2020-07-16T21:19:04
electron/electron
2007f3cb99604e3420480d371decf1942a024173
25e1c5d6e7de71c717c3ac24a27686affd09379d
FIXME: enable_osr=0
[ { "path": "script/update.py", "patch": "@@ -80,6 +80,9 @@ def run_gyp(target_arch, component):\n '-Dhost_arch={0}'.format(get_host_arch()),\n '-Dlibrary=static_library',\n '-Dmas_build={0}'.format(mas_build),\n+\n+ # TODO(alexeykuzmin): Remove it.\n+ '-Denable_osr=0',\n ]\n \n # Add th...
2017-06-27T16:43:57
vercel/next.js
90f95399ddfd036624c69b09910f40fa36c00ac2
b9cd76eda2bfc387b2e92eb097a3cddc2280641d
fix catch-all route normalization for default parallel routes (#60240) ### What? When relying on a `default` route as a fallback, greedier catch-all segments in the application hierarchy would take precedence, causing unexpected errors/matching behavior. ### Why? When performing parallel route catch-all normali...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -933,7 +933,9 @@ export default async function build(\n validFileMatcher.isAppRouterPage(absolutePath) ||\n // For now we only collect the root /not-found page in the app\n // directory as the 404 fall...
2024-01-05T22:20:45
facebook/react
e507dc08d521f5669100c856728b0e3f93423834
6bb77b5d4d365d642b07990ff9290df7194fb98a
Update 02-displaying-data.md Typo fix
[ { "path": "docs/docs/02-displaying-data.md", "patch": "@@ -66,7 +66,7 @@ The inputs to this component are called `props` — short for \"properties\". They\n \n ## Components are Just Like Functions\n \n-React components are very simple. You can think of them as simple function that take in `props` and `state...
2014-12-14T07:03:35
golang/go
bd6cd7db07f314443acdb980393f57386d40551f
7f04b8416297a3810cd2eddbcce84ac569e9b96d
cmd/compile: fix PPC64 latelower enablement The commit f841722853 needed an update for c0f27eb3d5. This fixes the aforementioned commit. Also, regenerate the lowering rules. Change-Id: I2073d2e86af212dfe58bc832a1c04a8ef2a57621 Reviewed-on: https://go-review.googlesource.com/c/go/+/445155 Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/compile/internal/ssa/config.go", "patch": "@@ -244,6 +244,7 @@ func NewConfig(arch string, types Types, ctxt *obj.Link, optimize, softfloat boo\n \t\tc.RegSize = 8\n \t\tc.lowerBlock = rewriteBlockPPC64\n \t\tc.lowerValue = rewriteValuePPC64\n+\t\tc.lateLowerBlock = rewriteBlockPPC64latel...
2022-10-24T19:20:59
nodejs/node
a51436cbea0d216f260453321a15fdce72ee28d3
a02de1bc3520465fdcfd2495b36a9053daeddd93
test: fix flaky test-heapdump-http2 Replace stream.respondWithFile(__filename) with stream.respondWithFile(process.execPath). The test file is probably small enough on some operating systems to be sent immediately, without waiting for the receiving side to do anything. The fix was figured out by addaleax. Co-authore...
[ { "path": "test/pummel/test-heapdump-http2.js", "patch": "@@ -14,7 +14,7 @@ const http2 = require('http2');\n \n const server = http2.createServer();\n server.on('stream', (stream) => {\n- stream.respondWithFile(__filename);\n+ stream.respondWithFile(process.execPath);\n });\n server.listen(0, () => {\n ...
2020-07-17T21:53:41
rust-lang/rust
377a0c88a9bbfa8a389163b2ac3de38e64d762dc
922958cffe059e9c156835df19d199ccd861c36a
Consolidate panicking functions in `slice/index.rs` Consolidate all the panicking functions in `slice/index.rs` to use a single `slice_index_fail` function, similar to how it is done in `str/traits.rs`.
[ { "path": "library/core/src/slice/index.rs", "patch": "@@ -34,53 +34,44 @@ where\n #[cfg_attr(not(feature = \"panic_immediate_abort\"), inline(never), cold)]\n #[cfg_attr(feature = \"panic_immediate_abort\", inline)]\n #[track_caller]\n-const fn slice_start_index_len_fail(index: usize, len: usize) -> ! {\n-...
2025-07-25T21:17:24
vercel/next.js
b110b131693e7460ffd0181ccc9a7700abe4f6f0
66e565d1eaa2b7df54314c72db823aa02b947cf0
Clarify `searchParams` is not passed to Layouts (#60277) Clarify searchParams is not passed to Layouts Followup to https://github.com/vercel/next.js/pull/60257/files#r1443175387 <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we reque...
[ { "path": "docs/02-app/01-building-your-application/04-caching/index.mdx", "patch": "@@ -525,7 +525,7 @@ See the [`revalidatePath` API reference](/docs/app/api-reference/functions/reval\n \n ### Dynamic Functions\n \n-Dynamic functions like `cookies` and `headers`, and the `searchParams` prop in Layouts and...
2024-01-05T19:04:34
golang/go
5a3900b23c2bbbf802fa2db9dfea916a6befa517
65f863529ce2d66a63d8be0f62b128feb736a575
go/types, types2: implement alternative comparable semantics This is an experiment to see the impact of a potential spec change: As an exception to the rule that constraint satisfaction is the same as interface implementation, if the flag Config.AltComparableSemantics is set, an ordinary (non-type parameter) interface...
[ { "path": "src/cmd/compile/internal/types2/api.go", "patch": "@@ -167,6 +167,10 @@ type Config struct {\n \t// If DisableUnusedImportCheck is set, packages are not checked\n \t// for unused imports.\n \tDisableUnusedImportCheck bool\n+\n+\t// If AltComparableSemantics is set, ordinary (non-type parameter)\n...
2022-10-19T22:17:42
electron/electron
d3ac9a3f3beb7d7bd1b5e7d64635256a864d6dda
ab174f5e743d6e4f923f802e94251edbde4ae3e5
fix crash reporter typo
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -122,7 +122,7 @@ called before `start` is called.\n Specifying `null` or `undefined` will remove the key from the extra\n parameters.\n \n-Set an extra parameter to set be sent with the crash report. The values\n+Set an extra parameter to be sent with...
2017-06-27T17:40:14
nodejs/node
193dfa94a81216d39519197624360b6a7ec3909a
0c81cadec6aa92985819a76827f28cfe8e656a8e
doc: introduce a triager role The role helps triaging issue backlogs effectively Fixes: https://github.com/nodejs/node/issues/34054 Refs: https://github.com/nodejs/TSC/pull/891 PR-URL: https://github.com/nodejs/node/pull/34295 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> R...
[ { "path": "doc/guides/contributing/issues.md", "patch": "@@ -89,6 +89,22 @@ around it. Some contributors may have differing opinions about the issue,\n including whether the behavior being seen is a bug or a feature. This discussion\n is part of the process and should be kept focused, helpful, and professio...
2020-07-10T11:24:24
rust-lang/rust
b65a177b63237398dc3f49cb5598b16bb9318136
922958cffe059e9c156835df19d199ccd861c36a
Fix LoongArch C function ABI when passing/returning structs containing floats
[ { "path": "compiler/rustc_target/src/callconv/loongarch.rs", "patch": "@@ -8,16 +8,16 @@ use crate::spec::HasTargetSpec;\n \n #[derive(Copy, Clone)]\n enum RegPassKind {\n- Float(Reg),\n- Integer(Reg),\n+ Float { offset_from_start: Size, ty: Reg },\n+ Integer { offset_from_start: Size, ty: Reg }...
2025-08-21T06:15:08