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
rust-lang/rust
f0707fad319777ed5da4b6eb1eb908cb44ab8c18
d7c0bde0c11301b9a782eabc469f7a7548505d4f
Mark all optimize methods and the codegen method as safe There is no safety contract and I don't think any of them can actually cause UB in more ways than passing malicious source code to rustc can. While LtoModuleCodegen::optimize says that the returned ModuleCodegen points into the LTO module, the LTO module has alr...
[ { "path": "compiler/rustc_codegen_gcc/src/lib.rs", "patch": "@@ -391,7 +391,7 @@ impl WriteBackendMethods for GccCodegenBackend {\n unimplemented!()\n }\n \n- unsafe fn optimize(\n+ fn optimize(\n _cgcx: &CodegenContext<Self>,\n _dcx: DiagCtxtHandle<'_>,\n module: &...
2025-01-09T18:41:19
golang/go
6f35430faa622bad63a527c97e87b9291e480688
2d9b4864201d76bd30b55a7d74d73a24cc3ae165
cmd/compile: allow rotates to be merged with logical ops on arm64 Fixes #48002 Change-Id: Ie3a157d55b291f5ac2ef4845e6ce4fefd84fc642 Reviewed-on: https://go-review.googlesource.com/c/go/+/350912 Trust: Keith Randall <khr@golang.org> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Re...
[ { "path": "src/cmd/compile/internal/arm64/ssa.go", "patch": "@@ -315,6 +315,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tgenshift(s, v.Op.Asm(), 0, v.Args[0].Reg(), v.Reg(), arm64.SHIFT_LR, v.AuxInt)\n \tcase ssa.OpARM64MVNshiftRA, ssa.OpARM64NEGshiftRA:\n \t\tgenshift(s, v.Op.Asm(), 0, v.Ar...
2021-09-19T20:51:37
vercel/next.js
ff2159d4d88d0c65f914b47a6712964d96605042
9acbf6e6ac73133576d9f5f6962a09f71241fe00
Add test for router.refresh preserving unaffected segments (#46687) Adds a test for a current behavior we're looking at changing. Will do a follow-up PR that changes this test. Want to make sure it's tested first. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors ha...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/refresh-reducer.test.tsx", "patch": "@@ -375,4 +375,208 @@ describe('refreshReducer', () => {\n \n expect(newState).toMatchObject(expectedState)\n })\n+\n+ it('should preserve existing segments (concurrent)', async () => {\n+ c...
2023-03-03T10:08:07
nodejs/node
dbdc9081fa723f62126ef857ee9365425e41dd9f
2f11fe3663a0f23831b36ef92699d3f358e8a277
2018-12-03, Version 6.15.1 'Boron' (LTS) Notable Changes: This is a patch release to address a bad backport of the fix for "Slowloris HTTP Denial of Service" (CVE-2018-12122). Node.js 6.15.0 misapplies the headers timeout to an entire keep-alive HTTP session, resulting in prematurely disconnected sockets. PR-URL: ht...
[ { "path": "CHANGELOG.md", "patch": "@@ -85,7 +85,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V8.md#8.0.0\">8.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.15.0\">6.15.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V6.md#6.15.1\">6.15.1</a></b...
2018-12-03T12:14:18
electron/electron
fcf4da1097ed244e3c1061240f76bbb3c10749ba
ebb031dafebaada7eb24b9599dc8e45b22183f79
Fix charsets, add more translated files
[ { "path": "docs/README-ko.md", "patch": "@@ -66,4 +66,5 @@\n * [빌드 설명서 (Linux)](development/build-instructions-linux-ko.md)\n * [디버거에서 디버그 심볼 서버 설정](development/setting-up-symbol-server-ko.md)\n \n-이 문서는 [@preco21](https://github.com/preco21) 이 번역하였습니다.\n+이 문서는 [@preco21](https://github.com/preco21) 에 의해 번역...
2015-06-29T12:41:11
huggingface/transformers
3951d4ad5d426b3e062e81fb71bf747cdfb357c1
50145474b7254aaaad61604c97c55e8736efc3c8
Add MM Grounding DINO (#37925) * first commit Added modular implementation for MM Grounding DINO from starting point created by add-new-model-like. Added conversion script from mmdetection to huggingface. TODO: Some tests are failing so that needs to be fixed. * fixed a bug with modular definition of MMGroundingDin...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1051,6 +1051,8 @@\n title: Mistral3\n - local: model_doc/mllama\n title: mllama\n+ - local: model_doc/mm-grounding-dino\n+ title: MM Grounding DINO\n - local: model_doc/nougat\n title: Nougat\n - loc...
2025-08-01T14:43:23
golang/go
119213566a8e0da729a8bccc7d7f7d525f0c1cf9
a83a5587331392fc9483d183e446586b463ad8aa
cmd/cgo: remove hardcoded '-pie' ldflag for linux/arm a minimally invasive fix proposal for #45940. which keeps the fix for #26197. an alternative for (#26197) could be to fail if we have both flags. adding/removing a flag without an message to the user is inconvenient. Change-Id: I6ac2524d81ff57202fbe3032a53afd5106...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -2963,18 +2963,24 @@ func (b *Builder) dynimport(a *Action, p *load.Package, objdir, importGo, cgoExe\n \tlinkobj := str.StringList(ofile, outObj, mkAbsFiles(p.Dir, p.SysoFiles))\n \tdynobj := objdir + \"_cgo_.o\"\n \n-\t// we need to use -pie for L...
2021-05-14T12:45:13
vercel/next.js
9acbf6e6ac73133576d9f5f6962a09f71241fe00
f7bfaff83b6e351e4274c8ad01079d0731f665f8
Disallow wildcard export in server entries (#46710) Similar to client entry files, we don't allow `export *` in server entries as well because we can't statically analyze all the export types in SWC. Fixes NEXT-490 ## Bug - [ ] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors h...
[ { "path": "packages/next-swc/crates/core/src/server_actions.rs", "patch": "@@ -464,6 +464,9 @@ impl<C: Comments> VisitMut for ServerActions<C> {\n disallowed_export_span = *span;\n }\n },\n+ ModuleItem::ModuleDecl(Mod...
2023-03-03T03:37:08
nodejs/node
4dd56a39f1f1c0e98b223b611c3a869775177c68
2eff120f6d4d88c29e692f67e396916ea71418e2
assert,util: fix sparse array comparison Comparing sparse arrays did not work properly. That is fixed and tests were added to verify that everything works as expected. This had an impact on `util.isDeepStrictEqual()` and `assert.deepStrictEqual()` and their counterpart `assert.notDeepStrictEqual()`. PR-URL: https://...
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -558,11 +558,10 @@ function objEquiv(a, b, strict, keys, memos, iterationType) {\n } else {\n // Array is sparse.\n const keysA = objectKeys(a);\n- i++;\n for (; i < keysA.length; i++) {\n const key = k...
2018-11-30T09:21:14
electron/electron
1c907ffa365482f67850d1a392452f149581135c
1e514620b548502b127309233ad0f3127f6daaa4
:bug: Solves issue #2047 [Windows fullscreen bug]
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -418,17 +418,19 @@ bool NativeWindowViews::IsMinimized() {\n }\n \n void NativeWindowViews::SetFullScreen(bool fullscreen) {\n- if (IsVisible())\n- window_->SetFullscreen(fullscreen);\n- else\n- window_->native_widget_private()->ShowWithW...
2015-06-28T09:42:59
huggingface/transformers
50145474b7254aaaad61604c97c55e8736efc3c8
c962f1515e40521c0b336877a64dc512da4f486d
[typecheck] proper export of private symbols (#39729) * Export private symbols Signed-off-by: cyy <cyyever@outlook.com> * Update src/transformers/__init__.py Co-authored-by: Pavel Iakubovskii <qubvel@gmail.com> * Update src/transformers/__init__.py Co-authored-by: Pavel Iakubovskii <qubvel@gmail.com> * Fix forma...
[ { "path": "src/transformers/__init__.py", "patch": "@@ -28,27 +28,31 @@\n from .utils import (\n OptionalDependencyNotAvailable,\n _LazyModule,\n- is_bitsandbytes_available,\n is_essentia_available,\n- is_flax_available,\n is_g2p_en_available,\n- is_keras_nlp_available,\n is_lib...
2025-08-01T12:36:47
golang/go
a83a5587331392fc9483d183e446586b463ad8aa
315dbd10c90db3b41af2c975a5fbfa2ec7615c1b
cmd/compile: fix export/import of range loop. As with other recent issues, the Init field of a range loop was not being handled properly. Generally, it is much better to explicitly import/export the Init statements, else they are incorrectly added before the associated node, rather than as the Init value of the node. ...
[ { "path": "src/cmd/compile/internal/typecheck/iexport.go", "patch": "@@ -1472,7 +1472,7 @@ func isNonEmptyAssign(n ir.Node) bool {\n // non-empty n.Ninit and where n is not a non-empty assignment or a node with a natural init\n // section (such as in \"if\", \"for\", etc.).\n func (w *exportWriter) stmt(n i...
2021-09-19T16:23:21
vercel/next.js
4e54429369803fba0c9e6598065e3434d325d157
2a737e7c225e3f59456679099c164b2b95e507e5
Support multi title for alternates (#46700) This allows to have different titles for alternates urls, but for canonical, you can only have one. Closes NEXT-624 ## Feature - [x] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [x...
[ { "path": "packages/next/src/lib/metadata/generate/alternate.tsx", "patch": "@@ -1,52 +1,70 @@\n import type { ResolvedMetadata } from '../types/metadata-interface'\n \n import React from 'react'\n+import { AlternateLinkDescriptor } from '../types/alternative-urls-types'\n+\n+function AlternateLink({\n+ de...
2023-03-02T22:42:10
huggingface/transformers
c962f1515e40521c0b336877a64dc512da4f486d
d3b8627b56caa7ca8fac113c9f28d0256db0194d
[`attn_implementation`] remove recursive, allows custom kernels with wrappers (#39823) * fix? * fixme and style * Update src/transformers/modeling_utils.py * update * update * fix * small fixees * nit * nits * fix init check? * fix * fix default * or fucks me * nits * include a small nit * does this mak...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2599,7 +2599,7 @@ def _sdpa_can_dispatch(self, is_init_check: bool = False) -> bool:\n BetterTransformer, which are only available later after __init__. This allows to raise proper exceptions early\n before instant...
2025-08-01T10:18:28
rust-lang/rust
ea6238e1d05571f2425108165f3ab43f717e097d
097ca1478d6f1d42dc07ff00b76b057a644ddf11
Fix some old `// <directive>` to `//@ <directive>`
[ { "path": "src/doc/rustc-dev-guide/src/fuzzing.md", "patch": "@@ -73,7 +73,7 @@ To build a corpus, you may want to use:\n \n - The rustc/rust-analyzer/clippy test suites (or even source code) --- though avoid\n tests that are already known to cause failures, which often begin with comments\n- like `// fa...
2025-05-28T19:32:56
golang/go
315dbd10c90db3b41af2c975a5fbfa2ec7615c1b
83b36ffb108cc6e6cc3282b94c090f70100b5ef0
cmd/compile: fold double negate on arm64 Fixes #48467 Change-Id: I52305dbf561ee3eee6c1f053e555a3a6ec1ab892 Reviewed-on: https://go-review.googlesource.com/c/go/+/350910 Trust: Keith Randall <khr@golang.org> Trust: Josh Bleecher Snyder <josharian@gmail.com> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Go ...
[ { "path": "src/cmd/compile/internal/ssa/gen/ARM64.rules", "patch": "@@ -1363,6 +1363,7 @@\n (XOR x (MVN y)) => (EON x y)\n (OR x (MVN y)) => (ORN x y)\n (MVN (XOR x y)) => (EON x y)\n+(NEG (NEG x)) => x\n \n (CSEL [cc] (MOVDconst [-1]) (MOVDconst [0]) flag) => (CSETM [cc] flag)\n (CSEL [cc] (MOVDconst [0])...
2021-09-19T16:23:37
nodejs/node
2eff120f6d4d88c29e692f67e396916ea71418e2
e00639e57f86f4707f665975ca7aea5ca8799399
assert: fix loose deepEqual map comparison Loose map comparison had an logic error. It will now be properly compared. PR-URL: https://github.com/nodejs/node/pull/24749 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "lib/internal/util/comparisons.js", "patch": "@@ -416,9 +416,7 @@ function mapMightHaveLoosePrim(a, b, prim, item, memo) {\n !innerDeepEqual(item, curB, false, memo)) {\n return false;\n }\n- const curA = a.get(altValue);\n- return curA === undefined && a.has(altValue) ||\n- ...
2018-11-30T09:17:51
vercel/next.js
2a737e7c225e3f59456679099c164b2b95e507e5
ad6961d04efe177ab47fc37922729bf56ace0c72
Refactor next/font/google and add additional comments (#46692) Some refactoring in `next/font/google`. Also adds comments to places I felt some extra context would be helpful for understanding the code. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a ...
[ { "path": "packages/font/src/google/loader.ts", "patch": "@@ -1,19 +1,19 @@\n import type { AdjustFontFallback, FontLoader } from 'next/font'\n // @ts-ignore\n-import { calculateSizeAdjustValues } from 'next/dist/server/font-utils'\n-// @ts-ignore\n import * as Log from 'next/dist/build/output/log'\n import...
2023-03-02T22:13:59
rust-lang/rust
084e8d9db14c6d53aef6344f666ea7d731ead6cc
097ca1478d6f1d42dc07ff00b76b057a644ddf11
directives.md: Fix `//@ build_aux_docs` -> `//@ build-aux-docs`
[ { "path": "src/doc/rustc-dev-guide/src/tests/directives.md", "patch": "@@ -59,7 +59,7 @@ not be exhaustive. Directives can generally be found by browsing the\n | `aux-crate` | Like `aux-build` but makes available as extern prelude | All except `run-ma...
2025-05-28T19:18:56
huggingface/transformers
d3b8627b56caa7ca8fac113c9f28d0256db0194d
a115b673925394486a17e8b9c210bbbce19f8d5a
[VLMs] split out "get placeholder mask" to helper (#39777) * batch upidate all models * update * forgot about llava onevision * update * fix tests * delete file * typo * fix emu3 once and forever * update cohere2 vision as well
[ { "path": "src/transformers/models/aria/modeling_aria.py", "patch": "@@ -978,6 +978,30 @@ def get_image_features(\n image_features = self.multi_modal_projector(selected_image_feature, attn_mask=image_attn_mask)\n return image_features\n \n+ def get_placeholder_mask(\n+ self, input_...
2025-08-01T08:01:06
electron/electron
ebb031dafebaada7eb24b9599dc8e45b22183f79
bf5b084945eb6bccbb27d08fea252a1a6402874f
Fix typos, add more files
[ { "path": "docs/api/accelerator-ko.md", "patch": "@@ -1,4 +1,4 @@\n-# Accelerator\n+# Accelerator\n \n Accelerator는 키보드 단축키를 표현하는 문자열입니다, 여러 혼합키와 키코드를 `+` 문자를\n 이용하여 결합할 수 있습니다.", "additions": 1, "deletions": 1, "language": "Markdown" }, { "path": "docs/api/app-ko.md", "patch": "@@ ...
2015-06-25T17:32:51
nodejs/node
5f18991f270754a3dca7f64ba56afe10fbb7627c
2b5f2bc68b67621b42f6a698792532d1149e6196
tools: fix eslint usage for Node.js 8 and before IDEs like vscode use older Node.js versions that do not yet support the new try catch syntax. This makes sure eslint continues to work in these IDEs as before. PR-URL: https://github.com/nodejs/node/pull/24753 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: V...
[ { "path": ".eslintrc.js", "patch": "@@ -17,7 +17,10 @@ Module._findPath = (request, paths, isMain) => {\n if (!r && hacks.includes(request)) {\n try {\n return require.resolve(`./tools/node_modules/${request}`);\n- } catch {\n+ // Keep the variable in place to ensure that ESLint started by...
2018-11-30T16:35:55
golang/go
83b36ffb108cc6e6cc3282b94c090f70100b5ef0
771b8ea4f4c56b3e27351807ade7ef72c3a15750
cmd/compile: implement constant rotates on arm64 Explicit constant rotates work, but constant arguments to bits.RotateLeft* needed the additional rule. Fixes #48465 Change-Id: Ia7544f21d0e7587b6b6506f72421459cd769aea6 Reviewed-on: https://go-review.googlesource.com/c/go/+/350909 Trust: Keith Randall <khr@golang.org>...
[ { "path": "src/cmd/compile/internal/ssa/gen/ARM.rules", "patch": "@@ -508,6 +508,8 @@\n (TST x (MOVWconst [c])) => (TSTconst [c] x)\n (TEQ x (MOVWconst [c])) => (TEQconst [c] x)\n \n+(SRR x (MOVWconst [c])) => (SRRconst x [c&31])\n+\n // Canonicalize the order of arguments to comparisons - helps with CSE.\n...
2021-09-19T16:09:55
vercel/next.js
ad6961d04efe177ab47fc37922729bf56ace0c72
1356088df7c92e9f67732fee7e02e2216ae8627f
Refactor build context for better plugin state sharing (#46706) Love the change made in #46666! This PR tries to refactor it by adding an abstraction `pluginState` object. For the build process, it's just a serializable field that we can attach to the result and resume it as the state at the process beginning. For ...
[ { "path": "packages/next/src/build/build-context.ts", "patch": "@@ -5,24 +5,49 @@ import type { __ApiPreviewProps } from '../server/api-utils'\n import type { NextConfigComplete } from '../server/config-shared'\n import type { Span } from '../trace'\n import type getBaseWebpackConfig from './webpack-config'...
2023-03-02T22:03:03
huggingface/transformers
a115b673925394486a17e8b9c210bbbce19f8d5a
2c0af41ce5c448f872f3222a75f56030fb2e5a88
Fix tp cb (#39838) * fixes * one more
[ { "path": "src/transformers/generation/continuous_batching.py", "patch": "@@ -1106,7 +1106,8 @@ def __init__(\n max_queue_size: Maximum size of the request queue (0 = unlimited)\n streaming: Whether to stream tokens as they are generated\n \"\"\"\n- self.model = model\...
2025-08-01T07:59:04
electron/electron
bf5b084945eb6bccbb27d08fea252a1a6402874f
637b642837e28ee8d29e69e7c0392b0d7ba72709
Fix some typos and translate more files
[ { "path": "README-ko.md", "patch": "@@ -33,7 +33,7 @@ npm install electron-prebuilt --save-dev\n \n ## 참조문서\n \n-[docs](https://github.com/preco21/electron/tree/master/docs) 에 프레임워크 사용 가이드와 API 레퍼런스가 있습니다.\n+[docs](https://github.com/atom/electron/tree/master/docs/README-ko.md) 에 프레임워크 사용 가이드와 API 레퍼런스가 있습니...
2015-06-24T02:41:47
nodejs/node
2b5f2bc68b67621b42f6a698792532d1149e6196
1fe824bcbb0267265a8ccdb7301b7b8e3e8779f3
util: improve internal `isError()` validation The current internal isError function checked the toString value instead of using the more precise `util.types.isNativeError()` check. The `instanceof` check is not removed due to possible errors that are not native but still an instance of Error. PR-URL: https://github.c...
[ { "path": "lib/internal/util.js", "patch": "@@ -12,6 +12,9 @@ const {\n arrow_message_private_symbol: kArrowMessagePrivateSymbolIndex,\n decorated_private_symbol: kDecoratedPrivateSymbolIndex\n } = internalBinding('util');\n+const {\n+ isNativeError\n+} = internalBinding('types');\n \n const { errmap }...
2018-11-18T03:19:16
vercel/next.js
857e02d70024f02dfdc3bc3ce6b013fced6ddd3e
cdbc0eae56f2fdbe317a0c46255dd78b514b0d18
webpack loaders: implement `emitError` and `emitWarning` (vercel/turbo#3983) This implements webpack loader context api for `emitError` and `emitWarning`, each of which emit Turbopack issues at the appropriate error level. As with webpack’s implementation, `emitError` does _not_ cause builds to fail [0]. This us...
[ { "path": "packages/next-swc/crates/next-dev-tests/tests/integration/next/webpack-loaders/emitted-errors/input/next.config.js", "patch": "@@ -0,0 +1,9 @@\n+module.exports = {\n+ experimental: {\n+ turbo: {\n+ loaders: {\n+ \".emit\": [\"emit-loader\"],\n+ },\n+ },\n+ },\n+};", "...
2023-03-02T21:59:43
golang/go
771b8ea4f4c56b3e27351807ade7ef72c3a15750
c894b442d1e5e150ad33fa3ce13dbfab1c037b3a
cmd/compile: fix missing markHiddenClosureDead in deadcode pass CL 342350 fixed panic with dead hidden closures, by marking discarded hidden closure as dead, and won't compile them. However, the fix is incomplete. In case the "if" or "else" block end with panic or return statement: if true { return } # All nodes st...
[ { "path": "src/cmd/compile/internal/deadcode/deadcode.go", "patch": "@@ -117,6 +117,7 @@ func stmts(nn *ir.Nodes) {\n \t\t}\n \n \t\tif cut {\n+\t\t\tir.VisitList((*nn)[i+1:len(*nn)], markHiddenClosureDead)\n \t\t\t*nn = (*nn)[:i+1]\n \t\t\tbreak\n \t\t}", "additions": 1, "deletions": 0, "langua...
2021-09-18T16:46:47
huggingface/transformers
2c0af41ce5c448f872f3222a75f56030fb2e5a88
4fcf45551775b05a3a78481ad53552635026c7d2
Fix bad markdown links (#39819) Fix bad markdown links.
[ { "path": "docs/source/ar/llm_tutorial_optimization.md", "patch": "@@ -13,7 +13,7 @@\n \n في هذا الدليل، سنستعرض التقنيات الفعالة لتُحسِّن من كفاءة نشر نماذج اللغة الكبيرة:\n \n-1. سنتناول تقنية \"دقة أقل\" التي أثبتت الأبحاث فعاليتها في تحقيق مزايا حسابية دون التأثير بشكل ملحوظ على أداء النموذج عن طريق الع...
2025-07-31T16:14:14
electron/electron
637b642837e28ee8d29e69e7c0392b0d7ba72709
e6f3c4c22b920d1a32020f157388899d22101303
Fix building on Windows
[ { "path": "atom/browser/api/event_emitter.cc", "patch": "@@ -37,9 +37,9 @@ v8::Local<v8::Object> CreateEventObject(v8::Isolate* isolate) {\n EventEmitter::EventEmitter() {\n }\n \n-v8::Local<v8::Object> EventEmitter::CreateEvent(v8::Isolate* isolate,\n- content...
2015-06-26T04:04:15
nodejs/node
1fe824bcbb0267265a8ccdb7301b7b8e3e8779f3
f8f96017e82abe4e965251b2f6072bdb6bea9d51
util,console: handle symbols as defined in the spec The `console` functions rely on the `util.format()` behavior. It did not follow the whatwg spec when it comes to symbols in combination with the %d, %i and %f format specifiers. Using a symbol argument in combination with one of these specifiers resulted in an error ...
[ { "path": "doc/api/util.md", "patch": "@@ -183,6 +183,10 @@ property take precedence over `--trace-deprecation` and\n <!-- YAML\n added: v0.5.3\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/23708\n+ description: The `%d`, `%f` and `%i` specifiers now support Symbol...
2018-10-17T07:45:11
golang/go
c894b442d1e5e150ad33fa3ce13dbfab1c037b3a
4b654c0eeca65ffc6588ffd9c99387a7e48002c1
net/rpc: remove warnings on incompatible methods at registration When registering an RPC server, the type being registered may have additional methods that are not meant to be exposed as RPC endpoints. Remove the warnings net/rpc produces in this case. The functionality to report warnings is kept in the code with a co...
[ { "path": "src/net/rpc/server.go", "patch": "@@ -231,6 +231,10 @@ func (server *Server) RegisterName(name string, rcvr interface{}) error {\n \treturn server.register(rcvr, name, true)\n }\n \n+// logRegisterError specifies whether to log problems during method registration.\n+// To debug registration, reco...
2021-09-14T22:02:55
vercel/next.js
bd402868a3c8911a196452b931d2756ee3c3d383
fcaf9999e84be3cd3ab1be1c8460b53cc30fc969
webpack loaders: implement `emitError` and `emitWarning` (vercel/turbo#3983) This implements webpack loader context api for `emitError` and `emitWarning`, each of which emit Turbopack issues at the appropriate error level. As with webpack’s implementation, `emitError` does _not_ cause builds to fail [0]. This us...
[ { "path": "crates/next-dev-tests/tests/integration/next/webpack-loaders/emitted-errors/input/next.config.js", "patch": "@@ -0,0 +1,9 @@\n+module.exports = {\n+ experimental: {\n+ turbo: {\n+ loaders: {\n+ \".emit\": [\"emit-loader\"],\n+ },\n+ },\n+ },\n+};", "additions": 9, ...
2023-03-02T21:59:43
rust-lang/rust
6b8a92201e02b2ddafb4f7915e4146241758ffa8
467591f99c34c810e7e229acd5089dba670aafc4
fix comment in before_stack_pop
[ { "path": "src/tools/miri/src/machine.rs", "patch": "@@ -1637,7 +1637,7 @@ impl<'tcx> Machine<'tcx> for MiriMachine<'tcx> {\n fn before_stack_pop(ecx: &mut InterpCx<'tcx, Self>) -> InterpResult<'tcx> {\n let frame = ecx.frame();\n // We want this *before* the return value copy, because t...
2025-05-28T16:18:39
huggingface/transformers
4fcf45551775b05a3a78481ad53552635026c7d2
b937d474550cb282b304b2d27ef58a306b2fd512
Fix broken links (#39809) Replace links in the form of `[text]((url))` to `[text](url)`. This is the correct format of a url in the markdown.
[ { "path": "README.md", "patch": "@@ -242,7 +242,7 @@ pipeline(\n \n - This library is not a modular toolbox of building blocks for neural nets. The code in the model files is not refactored with additional abstractions on purpose, so that researchers can quickly iterate on each of the models without diving ...
2025-07-31T13:23:04
nodejs/node
f8f96017e82abe4e965251b2f6072bdb6bea9d51
15b024736307c8d12651cf7ac18435b5e40a0cae
test: check invalid argument error for option This commit adds a test for the validateArguments function in TextDecoder. PR-URL: https://github.com/nodejs/node/pull/24736 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-whatwg-encoding-textdecoder.js", "patch": "@@ -233,6 +233,16 @@ testDecodeSample(\n ]\n );\n \n+{\n+ common.expectsError(\n+ () => new TextDecoder('utf-8', 1),\n+ {\n+ code: 'ERR_INVALID_ARG_TYPE',\n+ type: TypeError\n+ }\n+ );\n+}\n+\n // From: https://g...
2018-11-30T03:01:09
golang/go
ac7c34767dd710643f5f5fea1720a18cc392b7f8
07b30a4f77cf89a283c45c338f0cfcb68e15aab1
time: support fractional timezone minutes in MarshalBinary If the time is in 'LMT' and has fractional minute, then `MarshalBinary()` and `UnmarshalBinary()` will encode/decode the time in `timeBinaryVersionV2` in which the fractional minute is at bit 15 and 16, and presented in seconds. Fixes #39616 Change-Id: Ib762...
[ { "path": "src/time/time.go", "patch": "@@ -1162,19 +1162,26 @@ func (t Time) UnixNano() int64 {\n \treturn (t.unixSec())*1e9 + int64(t.nsec())\n }\n \n-const timeBinaryVersion byte = 1\n+const (\n+\ttimeBinaryVersionV1 byte = iota + 1 // For general situation\n+\ttimeBinaryVersionV2 // For ...
2021-09-16T18:22:06
vercel/next.js
1356088df7c92e9f67732fee7e02e2216ae8627f
8416b70f10d51056d85b0af40e6b246cdda527c3
Update static build workers (#46705) Ensures we log when a static build worker exits unexpectedly and fixes passing down `NODE_OPTIONS` unconditionally as this can cause too much memory to be leveraged when it shouldn't be. x-ref: [slack thread](https://vercel.slack.com/archives/C04S835KUC9/p1677788484200189) ...
[ { "path": "packages/next/src/lib/worker.ts", "patch": "@@ -1,5 +1,6 @@\n+import { ChildProcess } from 'child_process'\n import { Worker as JestWorker } from 'next/dist/compiled/jest-worker'\n-\n+import { getNodeOptionsWithoutInspect } from '../server/lib/utils'\n type FarmOptions = ConstructorParameters<typ...
2023-03-02T21:39:54
huggingface/transformers
e1688d28d3cce0b3e4c59e99fb970801970231c1
6c3f27ba6186897d072b87e9e6e7c63d97f0fe99
[Model] Cohere2 Vision (#39810) * Add cohere2_vision to support CohereLabs/command-a-vision-07-2025 * update and add modualr file * update processors and check with orig impl later * delete unused files * image processor reduce LOC and re-use GotOCR2 * update the config to use modular * model tests pass * proce...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -411,6 +411,8 @@\n title: Cohere\n - local: model_doc/cohere2\n title: Cohere2\n+ - local: model_doc/cohere2_vision\n+ title: Cohere2Vision\n - local: model_doc/convbert\n title: ConvBERT\n - local: m...
2025-07-31T10:57:34
rust-lang/rust
13bce27e378267203f681470f947208b3e267558
f70cf59fc19b7717397e9701b4783f744983275f
Do not panic, maintain old behavior
[ { "path": "library/std/src/sys/thread_local/native/lazy.rs", "patch": "@@ -22,7 +22,6 @@ unsafe impl DestroyedState for () {\n #[derive(Copy, Clone)]\n enum State<D> {\n Uninitialized,\n- Initializing,\n Alive,\n Destroyed(D),\n }\n@@ -64,36 +63,31 @@ where\n \n #[cold]\n fn get_or_in...
2025-05-28T14:56:02
huggingface/transformers
6c3f27ba6186897d072b87e9e6e7c63d97f0fe99
cb289ad243a5aa4c76719f4df1d4c07171e338da
[docs] fix korean docs yet again (#39813) fix korean docs yet again
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -357,7 +357,7 @@\n title: 메인 클래스\n - sections:\n - sections:\n- - local: in_translation\n+ - local: model_doc/albert\n title: ALBERT\n - local: in_translation\n title: Arcee\n@@ -1081,7 +1081,7 @@\n title...
2025-07-31T09:13:25
vercel/next.js
8416b70f10d51056d85b0af40e6b246cdda527c3
3229ed79a65bdb89c35d74d135f442da4ae9a139
Add viewport field userScalable (#46696) x-ref: https://github.com/vercel/next.js/discussions/46542#discussioncomment-5177278 Closes NEXT-753 ## Bug - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/ve...
[ { "path": "packages/next/src/lib/metadata/constants.ts", "patch": "@@ -8,6 +8,7 @@ export const ViewPortKeys: { [k in keyof Viewport]: string } = {\n minimumScale: 'minimum-scale',\n maximumScale: 'maximum-scale',\n viewportFit: 'viewport-fit',\n+ userScalable: 'user-scalable',\n interactiveWidget:...
2023-03-02T20:08:58
golang/go
07b30a4f77cf89a283c45c338f0cfcb68e15aab1
c10b98022027ce584b0571359439fae41a721dd3
cmd/compile: delay transformAssign if lhs/rhs have typeparam This also requires that we sometimes delay transformSelect(), if the assignments in the Comm part of the select have not been transformed. Fixes #48137 Change-Id: I163aa1f999d1e63616280dca807561b12b2aa779 Reviewed-on: https://go-review.googlesource.com/c/g...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -995,6 +995,9 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\tcase ir.OSEND:\n \t\t\t\ttransformSend(m.(*ir.SendStmt))\n \n+\t\t\tcase ir.OSELECT:\n+\t\t\t\ttransformSelect(m.(*ir.SelectStmt))\n+\n \t\t\t}\n \t\t}\n ", "addit...
2021-09-02T15:47:40
nodejs/node
b05b330025b9d69baa82812774be92b1be4a318c
3513b0c3d9711e5eee47ef15b7913f0ce4483663
tls: add code for ERR_TLS_INVALID_PROTOCOL_METHOD Add an error code property to invalid `secureProtocol` method exceptions. PR-URL: https://github.com/nodejs/node/pull/24729 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -1655,6 +1655,12 @@ recommended to use 2048 bits or larger for stronger security.\n A TLS/SSL handshake timed out. In this case, the server must also abort the\n connection.\n \n+<a id=\"ERR_TLS_INVALID_PROTOCOL_METHOD\"></a>\n+### ERR_TLS_INVALID_PROTOCOL_METHOD\...
2018-11-20T23:30:34
electron/electron
80e02d945cde72ac0b06494b9281b6a42e398d6a
09c2317ae62e367027592da84db749e87fba4df2
:memo: Fix a type error.
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1102,9 +1102,9 @@ win.webContents.on('did-finish-load', function() {\n * `secure` Boolean - Whether the cookie is marked as Secure (typically HTTPS)\n * `http_only` Boolean - Whether the cookie is marked as HttpOnly\n * `session` Boo...
2015-06-26T02:47:50
huggingface/transformers
cb289ad243a5aa4c76719f4df1d4c07171e338da
4f93cc91745181d95cf63f65e50bb9523111bf5a
feat(tokenization): add encode_message to tokenize messages one by one (#39507) * feat(tokenization): add encode_message to tokenize messages one by one * Fix the `encode_message` method, remove the `add_generation_prompt` parameter and add the corresponding error handling. Update the document to reflect this change ...
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -1694,6 +1694,62 @@ def apply_chat_template(\n else:\n return rendered_chat\n \n+ def encode_message_with_chat_template(\n+ self,\n+ message: dict[str, str],\n+ conversation_history: Optional[li...
2025-07-31T08:55:45
nodejs/node
30996479027464d252236b4e00fc62a5421a8296
32fed93aee30be5401ff99cfde3360ce037e294a
build: fix line length off by one error While running the test suite the progress bar shows former line endings if the new line is shorter than the former line. The length was calculated without the line ending. It is now an empty string to prevent the off by one error instead of using extra whitespace. PR-URL: https...
[ { "path": "tools/test.py", "patch": "@@ -423,7 +423,7 @@ def PrintProgress(self, name):\n }\n status = self.Truncate(status, 78)\n self.last_status_length = len(status)\n- print(status, end=' ')\n+ print(status, end='')\n sys.stdout.flush()\n \n \n@@ -438,7 +438,7 @@ def __init__(self,...
2018-11-30T11:44:30
golang/go
50e450826916c777a7d61edab52793ed77314f7a
3fa35b5f9741d7d1c9a9e047057c7210da04fbba
cmd/compile: fix import/export of Init and Def fields. Change so that the Init and Def fields of assignments and OSELREVC2 nodes are exported/imported properly. A quirk of iimport.go is that it automatically converts an ODCL node to an ODCL/OAS sequence (where the OAS is to just zero out the declared variable). Given...
[ { "path": "src/cmd/compile/internal/typecheck/iexport.go", "patch": "@@ -1456,10 +1456,23 @@ func (w *exportWriter) node(n ir.Node) {\n \t}\n }\n \n-// Caution: stmt will emit more than one node for statement nodes n that have a non-empty\n-// n.Ninit and where n cannot have a natural init section (such as ...
2021-09-17T19:18:19
vercel/next.js
5ba463e89bcef0d50bb3131f79ad975fd62c3770
6d4fcae5beeeacf23ba38fc955690adb9d27f337
add env to spawned processes (vercel/turbo#4005) Fixes WEB-517 Fixes vercel/turbo#3876
[ { "path": "packages/next-swc/crates/next-core/js/src/entry/server-edge-api.tsx", "patch": "@@ -22,7 +22,7 @@ startHandler(async ({ request, response, query, params, path }) => {\n join(process.cwd(), \".next/server/pages\", chunk)\n ),\n wasm: [],\n- env: [],\n+ env: Object.keys(process....
2023-03-02T17:36:09
huggingface/transformers
4f93cc91745181d95cf63f65e50bb9523111bf5a
9b3203f47b5cabb5c318ce1458438847df23fb1d
fix: providing a tensor to cache_position in model.generate kwargs always crashes because of boolean test (#39300) * fix: cache_position: RuntimeError: Boolean value of Tensor with more than one value is ambiguous * test cache_position * move test * propagate changes --------- Co-authored-by: Masataro Asai <guich...
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1800,7 +1800,7 @@ def _prepare_generation_config(\n def _get_initial_cache_position(self, seq_length, device, model_kwargs):\n \"\"\"Calculates `cache_position` for the pre-fill stage based on `input_ids` and optionally past length\...
2025-07-30T17:30:28
nodejs/node
32fed93aee30be5401ff99cfde3360ce037e294a
175164e5d12829b46f91137a01dac72f236a37be
http2: make compat writeHead not crash if the stream is destroyed Fixes: https://github.com/nodejs/node/issues/24470 PR-URL: https://github.com/nodejs/node/pull/24723 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/http2/compat.js", "patch": "@@ -568,6 +568,11 @@ class Http2ServerResponse extends Stream {\n if (this[kStream].headersSent)\n throw new ERR_HTTP2_HEADERS_SENT();\n \n+ // If the stream is destroyed, we return false,\n+ // like require('http').\n+ if (this.stream.d...
2018-11-29T13:33:20
electron/electron
a3ec50437d3deeece49d5222fc95ac9d89731965
5b5393e82bbae648534ef7cf9a2048a126b62e49
Rename event name to gpu-process-crashed
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -210,7 +210,7 @@ void App::OnSelectCertificate(\n }\n \n void App::OnGpuProcessCrashed(base::TerminationStatus exit_code) {\n- Emit(\"gpu-crashed\");\n+ Emit(\"gpu-process-crashed\");\n }\n \n base::FilePath App::GetPath(mate::Arguments* args, con...
2015-06-25T14:01:57
huggingface/transformers
7abb5d399228d07ffc71990ec27afb9fad6d3261
1019b00028e809ca97185470ef861e7a0ba9c1fe
Update mT5 model card (#39702) * Update mt5 model card * Fix casing of model title * Apply suggestions from code review Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> --------- Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
[ { "path": "docs/source/en/model_doc/mt5.md", "patch": "@@ -14,54 +14,115 @@ rendered properly in your Markdown viewer.\n \n -->\n \n-# mT5\n-\n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=pytorch&logoColor=white\">\n-<img ...
2025-07-30T15:35:04
vercel/next.js
fb970031608f6b325f0ca6d70ef5ee2644e4bdf0
90992897df3085b3ba953998742aa683ad7e1759
add env to spawned processes (vercel/turbo#4005) Fixes WEB-517 Fixes vercel/turbo#3876
[ { "path": "crates/next-core/js/src/entry/server-edge-api.tsx", "patch": "@@ -22,7 +22,7 @@ startHandler(async ({ request, response, query, params, path }) => {\n join(process.cwd(), \".next/server/pages\", chunk)\n ),\n wasm: [],\n- env: [],\n+ env: Object.keys(process.env),\n assets...
2023-03-02T17:36:09
golang/go
3fa35b5f9741d7d1c9a9e047057c7210da04fbba
3fa7dbeff53b56edd98f295bd0c34423c080ac57
go/types: ensure that we always get a new signature in expandNamed CL 349412 introduced a bug when Checker.subst does not return a new signature: we were still setting the receiver to the instantiated type. I'm not sure how this could manifest in practice (other than confusing object strings). It's possible that I co...
[ { "path": "src/go/types/instantiate_test.go", "patch": "@@ -6,6 +6,7 @@ package types_test\n \n import (\n \t. \"go/types\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n@@ -109,3 +110,45 @@ var X T[int]\n \t\t}\n \t}\n }\n+\n+func TestImmutableSignatures(t *testing.T) {\n+\tconst src = genericPkg + `p\n+\n+type ...
2021-09-15T21:18:37
nodejs/node
175164e5d12829b46f91137a01dac72f236a37be
3fb627bead14e68d989b0f141226c1703fa062ca
http: fix error return in `Finish()` `http_parser_execute(..., nullptr, 0)` returns either `0` or `1`. The expectation is that no error must be returned if it is `0`, and if it is `1` - a `Error` object must be returned back to user. The introduction of `llhttp` and the refactor that happened during it accidentally r...
[ { "path": "src/node_http_parser.cc", "patch": "@@ -491,7 +491,10 @@ class Parser : public AsyncWrap, public StreamListener {\n ASSIGN_OR_RETURN_UNWRAP(&parser, args.Holder());\n \n CHECK(parser->current_buffer_.IsEmpty());\n- parser->Execute(nullptr, 0);\n+ Local<Value> ret = parser->Execute(n...
2018-11-30T03:01:33
rust-lang/rust
1c070ca1c84b056314ca883d8f47badf2d4c8bd9
3927a61a546b0f134b3790d66ef73f1960e8bc8b
fix: `branches_sharing_code` suggests wrongly when dealing with macros
[ { "path": "clippy_lints/src/copies.rs", "patch": "@@ -425,7 +425,9 @@ fn scan_block_for_eq<'tcx>(\n modifies_any_local(cx, stmt, &cond_locals)\n || !eq_stmts(stmt, blocks, |b| b.stmts.get(i), &mut eq, &mut moved_locals)\n })\n- .map_or(block.stmts.len(), |(i, _)| i...
2025-05-28T13:04:22
electron/electron
5b5393e82bbae648534ef7cf9a2048a126b62e49
ffd9c743de73782be8beb54d497836a4f1573a96
docs: gpu-crashed is moved to app
[ { "path": "docs/api/app.md", "patch": "@@ -125,6 +125,10 @@ app.on('select-certificate', function(event, host, url, list, callback) {\n `event.preventDefault()` prevents from using the first certificate from\n the store.\n \n+### Event: 'gpu-crashed'\n+\n+Emitted when the gpu process is crashed.\n+\n ## app...
2015-06-25T13:53:22
huggingface/transformers
1019b00028e809ca97185470ef861e7a0ba9c1fe
ecbb5ee194f4775a89f2225eed7c24797c26feb4
Update model card for Cohere2 (Command R7B) (#39604) * Update model card for Cohere2 (Command R7B) * fix: applied suggested changes
[ { "path": "docs/source/en/model_doc/cohere2.md", "patch": "@@ -1,43 +1,115 @@\n-# Cohere\n-\n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=pytorch&logoColor=white\">\n-<img alt=\"FlashAttention\" src=\"https://img.shields.i...
2025-07-30T15:34:26
vercel/next.js
111ef3951cf13e9eb758ace222265fdd3f883d6e
9c32adc18ab490fe4cfe082f34eb6be54a96e450
build(cargo): update turbopack (#46685) # New Features * https://github.com/vercel/turbo/pull/4011 # Performance Improvements * https://github.com/vercel/turbo/pull/3955 * https://github.com/vercel/turbo/pull/4018 # Bug Fixes * https://github.com/vercel/turbo/pull/4037 * https://github.com/vercel/turbo/pul...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -137,7 +137,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-230228.1#ec742f70e150381d094636eff815f40f22c5d168\"\n+source = \"git+https://github.com/v...
2023-03-02T17:08:12
golang/go
3fa7dbeff53b56edd98f295bd0c34423c080ac57
974b0166d6a7c20b98f7e517e49197bea46fc5e2
cmd/go: fix GOARCH value in GOAMD64 docs GOAMD64 is for GOARCH=amd64. Fix the GOAMD64 environment variable docs introduced by CL 349595. Change-Id: I794990ebe2e306d21ed275446fc52373bfe4ae7d Reviewed-on: https://go-review.googlesource.com/c/go/+/350534 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobia...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1988,7 +1988,7 @@\n // \t\tFor GOARCH=386, how to implement floating point instructions.\n // \t\tValid values are sse2 (default), softfloat.\n // \tGOAMD64\n-// \t\tFor GOARCH=GOAMD64, the microarchitecture level for which to compile.\n+// \t\tFor GOARCH=amd...
2021-09-17T20:34:15
nodejs/node
3fb627bead14e68d989b0f141226c1703fa062ca
67d4123a5a1240200ad304631adbd406e9b9f8ea
test: show stdout and stderr in test-cli-syntax when it fails To help debugging the flake with the log from the CI. PR-URL: https://github.com/nodejs/node/pull/24720 Refs: https://github.com/nodejs/node/issues/24403 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> ...
[ { "path": "test/parallel/test-cli-syntax.js", "patch": "@@ -34,6 +34,12 @@ const notFoundRE = /^Error: Cannot find module/m;\n \n const cmd = [node, ..._args].join(' ');\n exec(cmd, common.mustCall((err, stdout, stderr) => {\n+ if (err) {\n+ console.log('-- stdout --');\n+ console...
2018-11-29T12:25:03
rust-lang/rust
d88641f8bc4c9ad1e0f528f0834c14da302be447
77101febcc9662a076ff43887497cd5b30674d93
rustbook: Bump versions of `onig` and `onig_sys` This fixes the build on GCC 15
[ { "path": "src/tools/rustbook/Cargo.lock", "patch": "@@ -1026,21 +1026,21 @@ checksum = \"42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d\"\n \n [[package]]\n name = \"onig\"\n-version = \"6.4.0\"\n+version = \"6.5.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-c...
2025-05-28T12:36:32
electron/electron
ffd9c743de73782be8beb54d497836a4f1573a96
09c2317ae62e367027592da84db749e87fba4df2
Move gpu-crashed event to app
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -24,6 +24,7 @@\n #include \"base/path_service.h\"\n #include \"brightray/browser/brightray_paths.h\"\n #include \"content/public/browser/client_certificate_delegate.h\"\n+#include \"content/public/browser/gpu_data_manager.h\"\n #include \"native_mat...
2015-06-25T12:28:07
huggingface/transformers
8e077a3e452e8cab94ef62b37d68258bd3dcffed
1e0665a191f73f6b002209c3dfcda478baac6bac
Fix re-compilations for cross attention cache (#39788) fix recompilations for cross attn cache
[ { "path": "src/transformers/models/autoformer/modeling_autoformer.py", "patch": "@@ -485,8 +485,8 @@ def forward(\n current_states = key_value_states if is_cross_attention else hidden_states\n if is_cross_attention and past_key_value is not None and is_updated:\n # reuse k,v, cro...
2025-07-30T12:52:03
golang/go
cea7a71d40115333d5943162e5764162b767389d
74e384f50d3071c97effa3afd43ec29111587d59
cmd/compile: fix generic type handling in crawler There are a bunch of nodes beside ONAME and OTYPE, (such as OSTRUCTLIT and OCOMPLIT) which can introduce a generic type that we need to mark. So, just mark any generic type on any node in markInlBody. In this particular issue, the type is introduced by an OSTRUCTLIT no...
[ { "path": "src/cmd/compile/internal/typecheck/crawler.go", "patch": "@@ -44,12 +44,13 @@ func (p *crawler) markObject(n *ir.Name) {\n \tp.markType(n.Type())\n }\n \n-// markType recursively visits types reachable from t to identify\n-// functions whose inline bodies may be needed.\n+// markType recursively ...
2021-09-14T01:50:19
vercel/next.js
6d4fcae5beeeacf23ba38fc955690adb9d27f337
22fb29e4ce6ae552c37f12de5b5303d3837f9b51
Separate tabs for Errors and Warnings in error overlay (vercel/turbo#4001)
[ { "path": "packages/next-swc/crates/next-core/js/package.json", "patch": "@@ -12,7 +12,7 @@\n \"@vercel/turbopack-runtime\": \"latest\",\n \"anser\": \"^2.1.1\",\n \"css.escape\": \"^1.5.1\",\n- \"next\": \"13.1.7-canary.28\",\n+ \"next\": \"13.1.7-canary.30\",\n \"platform\": \"1.3.6\...
2023-03-02T16:58:24
rust-lang/rust
6f0fae374806b49749263a3102c7ff5ec35d2008
d369dc2998e3f6b92dce967838905c7d0e34c865
Minor fixes and date correction to book page
[ { "path": "book/src/development/feature_freeze.md", "patch": "@@ -2,20 +2,20 @@\n \n This is a temporary notice.\n \n-From May 9th, 2025 until the 1st of August, 2025 we will perform a feature freeze. Only bugfix PRs will be reviewed\n-with the exception of already open ones. Every feature-adding PR opened ...
2025-05-28T12:05:19
nodejs/node
f2be20b7353baacf0094c78693b8b4ffd7e94530
639f6411a76d010b1807fd1b6e78b8ba894a281e
url: reuse existing context in href setter Correctness-wise, this removes side effects in the href setter if parsing fails. Style-wise, this allows removing the parse() wrapper function around C++ _parse(). Also fix an existing bug with whitespace trimming in C++ that was previously circumvented by additionally trimm...
[ { "path": "lib/internal/url.js", "patch": "@@ -43,7 +43,7 @@ const {\n domainToUnicode: _domainToUnicode,\n encodeAuth,\n toUSVString: _toUSVString,\n- parse: _parse,\n+ parse,\n setURLConstructor,\n URL_FLAGS_CANNOT_BE_BASE,\n URL_FLAGS_HAS_FRAGMENT,\n@@ -243,14 +243,6 @@ function onParseErro...
2018-11-13T23:53:35
electron/electron
9974a238c2b5ed02579ec0853d92b5e4b9540d28
62c44ee47b8cb2eae067760c068f026af9d40cd5
Fix the order of function definitions
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -351,6 +351,40 @@ void NativeWindow::RequestToClosePage() {\n web_contents->Close();\n }\n \n+void NativeWindow::CloseContents(content::WebContents* source) {\n+ if (!inspectable_web_contents_)\n+ return;\n+\n+ inspectable_web_contents_->GetVi...
2015-06-25T05:29:30
huggingface/transformers
b94929eb4953197bd7d26d61fb0f480eb533779e
bb2ac66453170dbee89aa4cce4039c5832e0395d
Fix an invalid condition (#39762) Fix an invalid judgement Signed-off-by: cyy <cyyever@outlook.com>
[ { "path": "src/transformers/models/align/convert_align_tf_to_hf.py", "patch": "@@ -275,7 +275,7 @@ def replace_params(hf_params, tf_params, key_mapping):\n new_hf_value = torch.from_numpy(np.transpose(value))\n elif \"temperature\" in key:\n new_hf_value = value\n- eli...
2025-07-30T12:19:17
golang/go
74e384f50d3071c97effa3afd43ec29111587d59
323c6f74d35ec29baac2a1aba4270f89b022815a
internal/poll: inject a hook into the runtime finalizer to count the closed pipes Fixes #48066 Change-Id: Icd6974dfcc496c054bb096e5d70de6e135984517 Reviewed-on: https://go-review.googlesource.com/c/go/+/349774 Reviewed-by: Bryan C. Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Brya...
[ { "path": "src/internal/poll/splice_linux_test.go", "patch": "@@ -6,40 +6,48 @@ package poll_test\n \n import (\n \t\"internal/poll\"\n-\t\"internal/syscall/unix\"\n \t\"runtime\"\n-\t\"syscall\"\n+\t\"sync\"\n+\t\"sync/atomic\"\n \t\"testing\"\n \t\"time\"\n )\n \n-// checkPipes returns true if all pipes a...
2021-09-15T04:37:20
vercel/next.js
90992897df3085b3ba953998742aa683ad7e1759
bc35d24c3b281e88c6a9e89e820ff4049b6b11ef
Separate tabs for Errors and Warnings in error overlay (vercel/turbo#4001)
[ { "path": "crates/next-core/js/package.json", "patch": "@@ -12,7 +12,7 @@\n \"@vercel/turbopack-runtime\": \"latest\",\n \"anser\": \"^2.1.1\",\n \"css.escape\": \"^1.5.1\",\n- \"next\": \"13.1.7-canary.28\",\n+ \"next\": \"13.1.7-canary.30\",\n \"platform\": \"1.3.6\",\n \"react-d...
2023-03-02T16:58:24
huggingface/transformers
bb2ac66453170dbee89aa4cce4039c5832e0395d
5348445dfac204763daae803cdf5ae6e7b969b9a
fix chameleonvision UT failure (#39646) * fix chameleonvision UT failure Signed-off-by: matrix.yao@intel.com <Yao Matrix> * fix style Signed-off-by: Yao, Matrix <matrix.yao@intel.com> --------- Signed-off-by: matrix.yao@intel.com <Yao Matrix> Signed-off-by: Yao, Matrix <matrix.yao@intel.com> Co-authored-by: root ...
[ { "path": "src/transformers/models/chameleon/modeling_chameleon.py", "patch": "@@ -817,7 +817,11 @@ class ChameleonPreTrainedModel(PreTrainedModel):\n )\n class ChameleonVQVAE(ChameleonPreTrainedModel):\n config: ChameleonVQVAEConfig\n- _no_split_modules = [\"ChameleonVQVAEVectorQuantizer\"]\n+ _n...
2025-07-30T12:09:26
nodejs/node
639f6411a76d010b1807fd1b6e78b8ba894a281e
e1438025edaf18d490548ba0f75f7ba702493c22
src: set HAS_USERNAME/PASSWORD more strictly Fixes: https://github.com/nodejs/node/issues/24211 PR-URL: https://github.com/nodejs/node/pull/24495 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Franziska Hinkelmann <fr...
[ { "path": "src/node_url.cc", "patch": "@@ -1209,21 +1209,33 @@ inline url_data HarvestBase(Environment* env, Local<Object> base_obj) {\n base_obj->Get(env->context(), env->scheme_string()).ToLocalChecked();\n base.scheme = Utf8Value(env->isolate(), scheme).out();\n \n- auto GetStr = [&](std::string...
2018-11-13T23:31:44
electron/electron
1f97cee7c92cede93a6e7730d8a6510eaba0a62e
015ef3e0140aa4080a3d3628f33cb1fdc675df5f
Fix release render view with wrong ID
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -249,9 +249,7 @@ void WebContents::ExitFullscreenModeForTab(content::WebContents* source) {\n }\n \n void WebContents::RenderViewDeleted(content::RenderViewHost* render_view_host) {\n- Emit(\"render-view-deleted\",\n- render_view_hos...
2015-06-23T08:43:55
golang/go
323c6f74d35ec29baac2a1aba4270f89b022815a
7f36ef0aff702f2598390d0349f9c9632942d40b
log: don't format if writing to io.Discard Fixes #47164 Change-Id: Ied03842360be4c86f1d9ead816f12c057a1f8dad Reviewed-on: https://go-review.googlesource.com/c/go/+/348741 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Emma...
[ { "path": "src/log/log.go", "patch": "@@ -20,6 +20,7 @@ import (\n \t\"os\"\n \t\"runtime\"\n \t\"sync\"\n+\t\"sync/atomic\"\n \t\"time\"\n )\n \n@@ -50,11 +51,12 @@ const (\n // the Writer's Write method. A Logger can be used simultaneously from\n // multiple goroutines; it guarantees to serialize access t...
2021-09-09T21:49:41
vercel/next.js
9c32adc18ab490fe4cfe082f34eb6be54a96e450
7323d5cdef55789696b2e6f5e7e16e270d850035
Update script.md (#46680) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Implements an existing feature request or RFC. Make su...
[ { "path": "docs/basic-features/script.md", "patch": "@@ -81,7 +81,7 @@ This script will load and execute when _any_ route in your application is access\n \n ### Strategy\n \n-Although the default behavior of `next/script` allows you load third-party scripts in any page, you can fine-tune its loading behavio...
2023-03-02T16:26:03
rust-lang/rust
0dd5722d6790be37b310c2e578be4f162d2be6ef
cb678b94c332548e3c3cefc22637929004c975d6
Test(fs): Fix test_eq_windows_file_type for Windows 7 Would otherwise fail on: ``` thread 'fs::tests::test_eq_windows_file_type' panicked at library/std/src/test_helpers.rs:53:20: called `Result::unwrap()` on an `Err` value: Os { code: 5, kind: PermissionDenied, message: "Access is denied." } ``` This came from the ...
[ { "path": "library/std/src/fs/tests.rs", "patch": "@@ -1782,8 +1782,30 @@ fn test_eq_windows_file_type() {\n // Change the readonly attribute of one file.\n let mut perms = file1.metadata().unwrap().permissions();\n perms.set_readonly(true);\n- file1.set_permissions(perms).unwrap();\n+ fil...
2025-05-16T20:49:00
huggingface/transformers
01d5f94695aac6b72f83225a16b69cf979e86df7
8ab21be5704a7ad33d6935136a7a65e9d7dfc52e
[ASR pipline] fix with datasets 4.0 (#39504) * fix * handle edge case * make
[ { "path": "src/transformers/pipelines/automatic_speech_recognition.py", "patch": "@@ -380,7 +380,11 @@ def preprocess(self, inputs, chunk_length_s=0, stride_length_s=None):\n \n if isinstance(inputs, torchcodec.decoders.AudioDecoder):\n _audio_samples = inputs.get_all_samples()\n...
2025-07-30T08:13:40
nodejs/node
e9de43549843da9f4f081cce917945878967df7e
eb6741b15ebd93ffdd71e87cbc1350b9e94ef222
timers: fix setTimeout expiration logic Fix the timer logic to be the same as v10.30.0. Fixes: https://github.com/nodejs/node/issues/24203 PR-URL: https://github.com/nodejs/node/pull/24214 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Anatoli Papirovski <ap...
[ { "path": "lib/timers.js", "patch": "@@ -283,7 +283,7 @@ function listOnTimeout(list, now) {\n // Check if this loop iteration is too early for the next timer.\n // This happens if there are more timers scheduled for later in the list.\n if (diff < msecs) {\n- list.expiry = timer._idleStart...
2018-11-07T05:44:31
electron/electron
1ce86b6dfc677d9d3348b5fc9ab20ccd199d62eb
19963bfcd196f781698f5837adaf1a6518cd1e10
win: Fix building, close #2018
[ { "path": "atom/browser/api/atom_api_cookies.cc", "patch": "@@ -343,7 +343,7 @@ mate::ObjectTemplateBuilder Cookies::GetObjectTemplateBuilder(\n mate::Handle<Cookies> Cookies::Create(\n v8::Isolate* isolate,\n content::BrowserContext* browser_context) {\n- return CreateHandle(isolate, new Cookies(b...
2015-06-23T02:18:43
golang/go
6d02ce85840fb7a1a9239d02e02710a008b1657a
6602c86a38ff0d8889257e908489162de38ebbd8
runtime: fix prettyprinting of parametric types in gdb golang.org/cl/344929 broke the minimal functionality that the python pretty printer for GDB had, this change restores it to its status prior to that CL. Change-Id: I4c7141d4ff726d224a074ecc533d0f896fc0052c Reviewed-on: https://go-review.googlesource.com/c/go/+/35...
[ { "path": "src/runtime/runtime-gdb.py", "patch": "@@ -219,6 +219,9 @@ def children(self):\n \t\t\tyield ('[{0}]'.format(i), (ptr + j).dereference())\n \n \n+def paramtypematch(t, pattern):\n+\treturn t.code == gdb.TYPE_CODE_TYPEDEF and str(t).startswith(\".param\") and pattern.match(str(t.target()))\n+\n #\...
2021-09-17T11:48:39
vercel/next.js
7323d5cdef55789696b2e6f5e7e16e270d850035
d9e01ad224b622061cf636f27a69f65c278a33c2
docs: clarified the wording (#46691) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Implements an existing feature request or R...
[ { "path": "docs/basic-features/static-file-serving.md", "patch": "@@ -6,7 +6,7 @@ description: Next.js allows you to serve static files, like images, in the publi\n \n Next.js can serve static files, like images, under a folder called `public` in the root directory. Files inside `public` can then be referen...
2023-03-02T15:54:09
huggingface/transformers
67cfe115281c364625282354f7c54776d5956aa3
ec4033457e50afbf709cec5a205587f0669847c7
Fix Evolla and xLSTM tests (#39769) * fix all evolla * xlstm
[ { "path": "src/transformers/models/evolla/modeling_evolla.py", "patch": "@@ -1442,7 +1442,6 @@ def forward(\n attention_mask: Optional[torch.Tensor] = None,\n position_ids: Optional[torch.LongTensor] = None,\n past_key_value: Optional[Cache] = None,\n- output_attentions: Optio...
2025-07-30T07:51:55
nodejs/node
eb6741b15ebd93ffdd71e87cbc1350b9e94ef222
0d2311820d50e29b83eb9f885d961f9b43dfd165
build: fix c++ code coverage on macOS PR-URL: https://github.com/nodejs/node/pull/24520 Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "node.gypi", "patch": "@@ -274,25 +274,28 @@\n '-Wl,--whole-archive <(v8_base)',\n '-Wl,--no-whole-archive' ]\n }],\n- [ 'OS in \"mac freebsd linux\" and node_shared==\"false\"'\n- ' and coverage==\"true\"', {\n+ [ 'coverage==\"true\" and node...
2018-11-20T16:26:48
golang/go
6602c86a38ff0d8889257e908489162de38ebbd8
14e812bfc575400a02e9e7536344a3f78a6cba08
cmd/internal/obj/riscv: improve instruction validation Ensure that rs2 is none for various instruction encodings. Fix a couple of cases where it should have been but is not. Change-Id: I9f8211a0257e49643dbbc89e158e048050ebe6f0 Reviewed-on: https://go-review.googlesource.com/c/go/+/349649 Trust: Joel Sing <joel@sing.i...
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -1003,27 +1003,31 @@ func validateII(ctxt *obj.Link, ins *instruction) {\n \twantImmI(ctxt, ins.as, ins.imm, 12)\n \twantIntReg(ctxt, ins.as, \"rd\", ins.rd)\n \twantIntReg(ctxt, ins.as, \"rs1\", ins.rs1)\n+\twantNoneReg(ctxt, ins.as, \"rs2\", ins....
2021-09-13T16:21:22
vercel/next.js
d9e01ad224b622061cf636f27a69f65c278a33c2
ed51bd870bf00d60ad91b28b0bbbbebb75c135c4
Fix the Next.js router in Turbopack when there are no middlewares (#46681) ## Bug Fixes WEB-681
[ { "path": "packages/next/src/server/lib/route-resolver.ts", "patch": "@@ -82,10 +82,10 @@ export async function makeResolver(\n \n await devServer.matchers.reload()\n \n- if (middleware.files?.length) {\n- // @ts-expect-error\n- devServer.customRoutes = await loadCustomRoutes(nextConfig)\n+ // @ts...
2023-03-02T15:14:37
huggingface/transformers
ddd2100767dfffd0e342cca2422fb7da8c00aea3
4abb053b6c7ea894c2e85eb9fabb0a3258e87c55
Fix OmDet test after arg deprecation (#39766) fix arg name
[ { "path": "tests/models/omdet_turbo/test_modeling_omdet_turbo.py", "patch": "@@ -844,7 +844,7 @@ def test_inference_object_detection_head_batched(self):\n outputs,\n text_labels=text_labels_batched,\n target_sizes=[image.size[::-1] for image in images_batched],\n- ...
2025-07-29T20:10:36
nodejs/node
76faccccbb51bb477a88ebfa3fa2a8254da37696
f34ca9f783ec84391f22728fc150d7b7cc294968
tools: don't use GH API for commit message checks Fixes: https://github.com/nodejs/node/issues/24567 PR-URL: https://github.com/nodejs/node/pull/24574 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Richard La...
[ { "path": "tools/lint-pr-commit-message.sh", "patch": "@@ -25,21 +25,15 @@ if [ -z \"${PR_ID}\" ]; then\n echo \" e.g. $0 <PR_NUMBER>\"\n exit 1\n fi\n-# Retrieve the first commit of the pull request via GitHub API\n-# TODO: If we teach core-validate-commit to ignore \"fixup!\" and \"squash!\"\n-# ...
2018-11-23T01:55:28
rust-lang/rust
457e84f4d8015af33a7d1fa4d3776a2dac67f3a8
7ec351ec7caa66ed4ef141f670dd4795692fd1c1
fix: Handle included files better in IDE layer This does not fully fix things, but it introduces a function that can be used to fix occurences. When using `to_def` functionality, the input node needs to come from the macro expanded include, not the real file that was included. This does unfortunately add more caller b...
[ { "path": "src/tools/rust-analyzer/crates/hir/src/semantics.rs", "patch": "@@ -769,6 +769,31 @@ impl<'db> SemanticsImpl<'db> {\n })\n }\n \n+ /// Descends the token into the include expansion, if its file is an included file.\n+ pub fn descend_token_into_include_expansion(\n+ &self,...
2025-05-28T08:14:25
golang/go
14e812bfc575400a02e9e7536344a3f78a6cba08
8d2a9c32a28838978f5d4e477bbd6db4144005d3
syscall: do not use handle lists on windows when NoInheritHandles is true If NoInheritHandles is passed, then we shouldn't attempt to do anything with handle lists. Otherwise CreateProcess fails with invalid param, because it's being told both to not inherit handles and to inherit certain handles. This commit fixes t...
[ { "path": "src/os/exec/exec_windows_test.go", "patch": "@@ -10,6 +10,7 @@ package exec_test\n import (\n \t\"io\"\n \t\"os\"\n+\t\"os/exec\"\n \t\"strconv\"\n \t\"syscall\"\n \t\"testing\"\n@@ -41,3 +42,16 @@ func TestPipePassing(t *testing.T) {\n \t\tt.Error(err)\n \t}\n }\n+\n+func TestNoInheritHandles(t ...
2021-09-16T22:11:19
vercel/next.js
5c9bdd7a34cb2f6f115397cfda2b83cff932dde2
7dc8f02ebde00b911d99f9942f29b856f7d2caed
Capture console statements as one unit including stack trace (vercel/turbo#4028) ### Description fixes the deduplication issue with multiple output
[ { "path": "packages/next-swc/crates/next-core/js/src/ipc/index.ts", "patch": "@@ -142,3 +142,38 @@ export const IPC = createIpc<unknown, unknown>(parseInt(PORT, 10));\n process.on(\"uncaughtException\", (err) => {\n IPC.sendError(err);\n });\n+\n+const improveConsole = (name: string, stream: string, addSt...
2023-03-02T10:48:46
electron/electron
bafbee805cf49eecf87dc33070ca467cf2ec7fc0
c164da5a388b54c61e221b707ca3b7186b883259
Fix more code styles.
[ { "path": "atom/browser/api/atom_api_cookies.cc", "patch": "@@ -10,7 +10,6 @@\n #include \"base/time/time.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"content/public/browser/browser_thread.h\"\n-#include \"content/public/browser/web_contents.h\"\n #include \"native_mate/callback....
2015-06-20T02:41:40
huggingface/transformers
33aa49df9d33539e764af7f54ef4acac1980f1d0
c4e20698985887215f7e91a02621265f047af2d7
[docs] Ko doc fixes after toc update (#39660) * update docs * doc builder working * make fixup
[ { "path": ".github/workflows/build_documentation.yml", "patch": "@@ -18,10 +18,6 @@ jobs:\n notebook_folder: transformers_doc\n languages: ar de en es fr hi it ko pt tr zh ja te\n custom_container: huggingface/transformers-doc-builder\n- # Temporary pin to work around datasets excepti...
2025-07-29T16:05:26
nodejs/node
976065d9cb88a118c0238a8518a2570b28cce817
2931c50a421473fa916c751ec298d8cae355697f
lib: do not register DOMException in a module Instead of registering it in a global scope of a native module and expecting that it only gets evaluated when the module is actually compiled and run and will not be evaluated because the module can be cached, directly register the DOMException constructor onto Environment...
[ { "path": "lib/internal/bootstrap/node.js", "patch": "@@ -566,7 +566,9 @@\n \n function setupDOMException() {\n // Registers the constructor with C++.\n- NativeModule.require('internal/domexception');\n+ const DOMException = NativeModule.require('internal/domexception');\n+ const { registerDO...
2018-11-28T21:27:18
rust-lang/rust
4c264c96ae30e45c503fbb24e452ea948c5229af
db21837095f18a76d1fecb7d55547688a6b19647
Update `CmpResult` to use a pointer-sized return type As seen at [1], LLVM uses `long long` on LLP64 (to get a 64-bit integer matching pointer size) and `long` on everything else, with exceptions for AArch64 and AVR. Our current logic always uses an `i32`. This happens to work because LLVM uses 32-bit instructions to ...
[ { "path": "library/compiler-builtins/builtins-test/benches/float_cmp.rs", "patch": "@@ -1,27 +1,38 @@\n #![cfg_attr(f128_enabled, feature(f128))]\n \n use builtins_test::float_bench;\n-use compiler_builtins::float::cmp;\n+use compiler_builtins::float::cmp::{self, CmpResult};\n use criterion::{Criterion, cri...
2025-05-23T17:26:39
vercel/next.js
0647fdd0ee5c813d15621f9e208d9ced0b29816d
62a0da2398f62006671798cdb840af08fed1a2cb
Capture console statements as one unit including stack trace (vercel/turbo#4028) ### Description fixes the deduplication issue with multiple output
[ { "path": "crates/next-core/js/src/ipc/index.ts", "patch": "@@ -142,3 +142,38 @@ export const IPC = createIpc<unknown, unknown>(parseInt(PORT, 10));\n process.on(\"uncaughtException\", (err) => {\n IPC.sendError(err);\n });\n+\n+const improveConsole = (name: string, stream: string, addStack: boolean) => {...
2023-03-02T10:48:46
golang/go
8d2a9c32a28838978f5d4e477bbd6db4144005d3
af9da137a98f897c56d0bfb8e18b177b9ff5af4b
all: remove incorrectly repeated words in comments Change-Id: Icbf36e1cd8311b40d18177464e7c41dd8cb1c65b Reviewed-on: https://go-review.googlesource.com/c/go/+/340350 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Carlos Ame...
[ { "path": "src/net/lookup.go", "patch": "@@ -442,7 +442,7 @@ func (r *Resolver) LookupCNAME(ctx context.Context, host string) (string, error)\n // The returned service names are validated to be properly\n // formatted presentation-format domain names. If the response contains\n // invalid names, those recor...
2021-08-08T10:14:30