repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
e117c000e45b80475d03a9bcaf1d53eb81058719
930db5c1afbe541a0b2357c26123c2b365b56624
Redesign nextjs logging (#54713) The current logging styles has been existed for a while, this PR gives a fresh impression for the logging output from Next.js. We want to achieve few new goals that makes the output clean, modernized, sweet 🍫 . Few goals are addressed with this redesign: ## Refresh Impression & Simp...
[ { "path": "packages/next-env/index.ts", "patch": "@@ -44,7 +44,8 @@ export function processEnv(\n loadedEnvFiles: LoadedEnvFiles,\n dir?: string,\n log: Log = console,\n- forceReload = false\n+ forceReload = false,\n+ onReload?: (envFilePath: string) => void\n ) {\n if (!initialEnv) {\n initi...
2023-09-05T11:40:00
huggingface/transformers
81128509a539bd6146c7b1baccecf090d71b5350
82db888e29753c891a246933b60518191d83d835
fix(testing): Fix PaliGemma 2 and PaddleOCR-VL test failures on main (#44765) * fix: Fix PaliGemma 2 and PaddleOCR-VL test failures on main * nit: Fix ci/circleci: check_code_quality
[ { "path": "tests/models/paddleocr_vl/test_modeling_paddleocr_vl.py", "patch": "@@ -184,6 +184,24 @@ def setUp(self):\n def test_config(self):\n self.config_tester.run_common_tests()\n \n+ @unittest.skip(\n+ reason=\"embed_tokens is ~80% of test model size, exceeding the 70% GPU budget ...
2026-03-20T13:33:51
electron/electron
d7fc7ef2eeb45838cf17a7dedbd09ee06aaef6ef
6aef061362bd8cd5688649597edb10febee58348
Fix errata
[ { "path": "docs-translations/ko-KR/api/browser-window.md", "patch": "@@ -340,7 +340,7 @@ window.onbeforeunload = (e) => {\n \n #### Event: 'blur'\n \n-윈도우가 포커스를 잃었을 떄 발생하는 이벤트입니다.\n+윈도우가 포커스를 잃었을 때 발생하는 이벤트입니다.\n \n #### Event: 'focus'\n ", "additions": 1, "deletions": 1, "language": "Markdown" ...
2016-09-23T23:19:24
nodejs/node
503900b4633a541ecbebc159487f775c2669f54d
b376965e503f7cdfc5b2888bd1425f44f79013a9
async_hooks: ensure proper handling in runInAsyncScope We should never try to manually run emitAfter in case of an error, the exception handler will do it for us, if we're going to recover. PR-URL: https://github.com/nodejs/node/pull/30965 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtro...
[ { "path": "lib/async_hooks.js", "patch": "@@ -21,7 +21,6 @@ const {\n executionAsyncId,\n triggerAsyncId,\n // Private API\n- hasAsyncIdStack,\n getHookArrays,\n enableHooks,\n disableHooks,\n@@ -172,14 +171,13 @@ class AsyncResource {\n runInAsyncScope(fn, thisArg, ...args) {\n const asy...
2019-12-14T18:53:03
golang/go
19156a54741d4f353c9e8e0860197ca95a6ee6ca
3474cd4eee82ac442618391f8bc4a70d7b1cb65a
cmd/compile: fix inlining function has shape in type CL 395854 made inline pass to not inlining function with shape params, but pass no shape arguments. But it does not consider the case where function has shape params, but passing zero arguments. In this case, the un-safe interface conversion that may be applied to a...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -714,8 +714,8 @@ func mkinlcall(n *ir.CallExpr, fn *ir.Func, maxCost int32, inlMap map[*ir.Func]b\n \t\t}\n \t} else {\n \t\t// Don't inline a function fn that has shape parameters, but is passed no shape arg.\n-\t\t// See comments (1) above, ...
2022-05-14T09:15:26
huggingface/transformers
82db888e29753c891a246933b60518191d83d835
7cd9b985e0698d4f625a18be0125231b6b930390
Fix dtype guessing from state dict (#44883) * fix * style * preshot fp4 as well
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -259,7 +259,8 @@ def get_state_dict_dtype(state_dict):\n Returns the first found floating dtype in `state_dict` if there is one, otherwise returns the first dtype.\n \"\"\"\n for t in state_dict.values():\n- if t.is_floating_poi...
2026-03-20T13:12:31
vercel/next.js
3338dd0b317fffd6fbde6432b93ff10e20efa59e
fd91ac4f45e865b288605afdae890ac6fa762bcf
fix(next-swc): skips client/server only checks when running with Jest to unblock testing (#54891) Co-authored-by: Jiachi Liu <inbox@huozhi.im>
[ { "path": ".eslintrc.json", "patch": "@@ -6,7 +6,8 @@\n \"browser\": true,\n \"commonjs\": true,\n \"es6\": true,\n- \"node\": true\n+ \"node\": true,\n+ \"jest\": true\n },\n \"parserOptions\": {\n \"requireConfigFile\": false,", "additions": 2, "deletions": 1, "lan...
2023-09-04T11:53:41
nodejs/node
efb908409eae37c32d7a71ec267c5fec2bcc4c8a
ce49f90e14212cd900aba69bac76a8af288d2b58
wasi: require CLI flag to require() wasi module This commit ensures that the WASI module cannot be require()'ed without a CLI flag while the module is still experimental. This fixes a regression from https://github.com/nodejs/node/pull/30778. PR-URL: https://github.com/nodejs/node/pull/30963 Reviewed-By: Anna Hennin...
[ { "path": "lib/internal/bootstrap/pre_execution.js", "patch": "@@ -401,11 +401,10 @@ function initializePolicy() {\n }\n \n function initializeWASI() {\n- if (getOptionValue('--experimental-wasi-unstable-preview0')) {\n- const { NativeModule } = require('internal/bootstrap/loaders');\n- const mod = N...
2019-12-14T16:14:02
golang/go
3474cd4eee82ac442618391f8bc4a70d7b1cb65a
cb458c05a82aefb253034558b34f16dee8713274
encoding/csv: add Reader.InputOffset method Fixes #43401. Change-Id: I2498e77e41d845130d95012bc8623bfb29c0dda1 Reviewed-on: https://go-review.googlesource.com/c/go/+/405675 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto...
[ { "path": "api/next/43401.txt", "patch": "@@ -0,0 +1 @@\n+pkg encoding/csv, method (*Reader) InputOffset() int64 #43401", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "src/encoding/csv/reader.go", "patch": "@@ -149,6 +149,9 @@ type Reader struct {\n \t// numL...
2022-05-11T14:42:00
huggingface/transformers
b7164eca8675e5223cf73fb430a6aaf6ceafc9cc
1229e90d46532f334f3c679006bee34ed502c123
Fix VL model rope_deltas batch size mismatch in online RL training (#44873) * Fix Qwen3.5 rope_deltas persistence causing crash in online RL training * Extend * Extend
[ { "path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py", "patch": "@@ -1383,8 +1383,11 @@ def compute_3d_position_ids(\n mm_token_type_ids=mm_token_type_ids,\n )\n self.rope_deltas = rope_deltas\n- # Use pre-calculated rope-deltas to inf...
2026-03-20T11:51:22
vercel/next.js
91922c44eb6e0a835d32c0ee7eccf183c6c53e35
986f648baa82ac18c30ac17e4c24f967722e1a9b
Add serverError action to list of HMR events (#54964) Adds `serverError` to the list of HMR actions, missed this in the earlier PRs as it wasn't using `hotReloader.send`. Also ensures on-demand-entry-handler reuses the hotReloader.send method.
[ { "path": "packages/next/src/client/page-bootstrap.ts", "patch": "@@ -17,7 +17,7 @@ export function pageBootrap(assetPrefix: string) {\n let buildIndicatorHandler: (obj: Record<string, any>) => void = () => {}\n \n function devPagesHmrListener(payload: any) {\n- if (payload.action === 'serverEr...
2023-09-04T09:40:40
electron/electron
ab5e51c20901da5f94b4018f3433ac0c21aaa5d4
f5694daeb793c41dea4ecf2a689a19aa2a9ad74d
fixes software rendering on macos and small resizing addition
[ { "path": "atom/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -367,9 +367,9 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n new ui::Compositor(content::GetContextFactory(),\n base::ThreadTaskRunnerHandle::Get()));\n compositor_->SetAcceleratedW...
2016-09-23T18:27:05
nodejs/node
81e3bcae65ae261aaaac2fb726e851e24ce762a9
437b6d5d4fb00c40575e03fd040c8a663e9cc7b1
process: fix promise catching Fixes: https://github.com/nodejs/node/issues/30953 PR-URL: https://github.com/nodejs/node/pull/30957 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cji...
[ { "path": "lib/internal/process/promises.js", "patch": "@@ -125,7 +125,8 @@ function handledRejection(promise) {\n return;\n }\n }\n- setHasRejectionToWarn(false);\n+ if (maybeUnhandledPromises.size === 0 && asyncHandledRejections.length === 0)\n+ setHasRejectionToWarn(false);\n }\n \n cons...
2019-12-14T05:53:14
huggingface/transformers
1229e90d46532f334f3c679006bee34ed502c123
cef283004847f44c2c07e48670ba524b7cb2ac24
Fix `layer_types` type hint for `AFMoE` and `Llama4` (#44874) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/models/afmoe/configuration_afmoe.py", "patch": "@@ -87,7 +87,7 @@ class AfmoeConfig(PreTrainedConfig):\n output_router_logits: bool = False\n global_attn_every_n_layers: int | None = 4\n sliding_window: int | None = 1024\n- layer_types: list | None = None\n+ lay...
2026-03-20T11:50:31
golang/go
cb458c05a82aefb253034558b34f16dee8713274
21680959f81cd7577a524b960c9b65ce87fa608f
cmd/compile: don't inline fn with shape params, but passed no shape arg This is the same fix as CL 36126, but for the reverse case, function with shape params but passed no shape arg. The same conversion problem may occur in this case, see details explanation there. Fixes #51909 Fixes #51925 Change-Id: Ib0c1973c7511...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -701,7 +701,7 @@ func mkinlcall(n *ir.CallExpr, fn *ir.Func, maxCost int32, inlMap map[*ir.Func]b\n \t// apparent when we first created the instantiation of the generic function.\n \t// We can't handle this if we actually do the inlining, sinc...
2022-03-25T16:29:44
huggingface/transformers
cef283004847f44c2c07e48670ba524b7cb2ac24
f5e573080ae0838799c1f9a0ba28be8431120b56
Align lfm2 cache to other mamba caches (#44866) * align to other mambas * oupsi * fix
[ { "path": "src/transformers/models/lfm2/modeling_lfm2.py", "patch": "@@ -179,8 +179,10 @@ def __init__(\n self.max_batch_size = max_batch_size\n self.layer_types = config.layer_types\n self.first_attention_layer = self.layer_types.index(\"full_attention\")\n+ self.last_conv_la...
2026-03-20T10:50:26
electron/electron
938b9e897a146388253ed32fe846649abd43c487
f5694daeb793c41dea4ecf2a689a19aa2a9ad74d
:penguin: :bug: Workaround for electron/electron#5050 Chromium only show the Tray icon with libappindicator when the env `XDG_CURRENT_DESKTOP`'s value is `Unity`. But under elementaryOS its value is 'Pantheon'. Set it to `Unity` before app startup make the tray icon show under elementaryOS.
[ { "path": "lib/common/init.js", "patch": "@@ -58,3 +58,8 @@ if (process.platform === 'win32') {\n process.windowsStore = true\n }\n }\n+\n+// Workaround for electron/electron#5050\n+if (process.platform === 'linux' && process.env.XDG_CURRENT_DESKTOP === 'Pantheon') {\n+ process.env.XDG_CURRENT_DESKTO...
2016-09-23T10:07:43
vercel/next.js
986f648baa82ac18c30ac17e4c24f967722e1a9b
be3a7e471bc315f978c81bebd589db9995422a36
Unify serverError hmr event (#54962) Ensures only one name is used for the event, makes it easier to search for, going to replace this with the constant like the other events in a follow-up PR but this can be landed as-is.
[ { "path": "packages/next/src/client/dev/webpack-hot-middleware-client.ts", "patch": "@@ -11,54 +11,56 @@ export default () => {\n window.next.router.pathname === '/404' ||\n window.next.router.pathname === '/_error'\n \n- if (obj.action === 'reloadPage') {\n- sendMessage(\n- JSON....
2023-09-04T09:01:22
golang/go
08d6c4c2b96eb3e5012af9b346dc5b325e956844
845a95b1ae0f80d2b30ab6277e31b6d6164f0a90
runtime: account for idle mark time in the GC CPU limiter Currently the GC CPU limiter doesn't account for idle application time at all. This means that the GC could start thrashing, for example if the live heap exceeds the max heap set by the memory limit, but the limiter will fail to kick in when there's a lot of av...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -1324,8 +1324,13 @@ func gcBgMarkWorker() {\n \t\t})\n \n \t\t// Account for time and mark us as stopped.\n-\t\tduration := nanotime() - startTime\n+\t\tnow := nanotime()\n+\t\tduration := now - startTime\n \t\tgcController.markWorkerStop(pp.gcMarkWorkerMode, dur...
2022-05-13T15:30:03
nodejs/node
2986068c5a168dc314b696d2cad4155675f741e5
21ecaa47eed39a4ede527e0b340d102ba8e1972b
repl: fix preview bug in case of long lines This addresses an issue that is caused by lines that exceed the current window columns. That would cause the preview to confuse the REPL. This is meant as hot fix. The preview should be able to handle these cases appropriately as well later on. PR-URL: https://github.com/no...
[ { "path": "lib/internal/repl/utils.js", "patch": "@@ -280,6 +280,16 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {\n return;\n }\n \n+ // Do not show previews in case the current line is longer than the column\n+ // width.\n+ // TODO(BridgeAR): Fix me. This should n...
2019-12-11T18:37:44
rust-lang/rust
8df93e6966e71da8a249a0022680b83eff105f42
5082e6a300974459aec6dc73e76cc039c3a517c1
Tweak spans when encountering multiline initializer in move error ``` error[E0507]: cannot move out of `f`, a captured variable in an `FnMut` closure --> $DIR/borrowck-call-is-borrow-issue-12224.rs:57:13 | LL | let mut f = move |g: Box<dyn FnMut(isize)>, b: isize| { | ----- captured outer variable ...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -663,8 +663,15 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n // | | `Option<Foo>`, which does not implement the\n // | | ...
2025-07-20T02:22:55
huggingface/transformers
f5e573080ae0838799c1f9a0ba28be8431120b56
8dc7a52d766efe76c121c0654a5d24d633bffe9e
Fix nemotron config docstrings (#44878) nemotron-config
[ { "path": "src/transformers/models/nemotron_h/configuration_nemotron_h.py", "patch": "@@ -39,14 +39,14 @@ class NemotronHConfig(PreTrainedConfig):\n Number of groups for expert routing.\n mamba_hidden_act (`str`, *optional*, defaults to `\"silu\"`):\n The non-linear activation function i...
2026-03-20T10:02:26
electron/electron
99e256f461b00a1a2f1d2086be8975caca1dea33
f5694daeb793c41dea4ecf2a689a19aa2a9ad74d
Translate debug-instructinos-macos.md in korean
[ { "path": "docs-translations/ko-KR/development/debug-instructions-macos.md", "patch": "@@ -5,67 +5,66 @@\n >\n > 문서의 번역이 완료되면 이 틀을 삭제해주세요.\n \n-# Debugging on macOS\n+# macOS 에서 디버깅하기\n \n-If you experience crashes or issues in Electron that you believe are not caused\n-by your JavaScript application, but i...
2016-09-23T01:31:12
golang/go
845a95b1ae0f80d2b30ab6277e31b6d6164f0a90
9e9e2a82d8ee82330577d5241aa2ddefd90c76c7
cmd/compile/internal: fix test error on loong64 For TestLogOpt test case, add loong64 support to test the host architecture and os. The Ctz64 is not intrinsified on loong64 for TestIntendedInlining. Contributors to the loong64 port are: Weining Lu <luweining@loongson.cn> Lei Wang <wanglei@loongson.cn> Lingqin ...
[ { "path": "src/cmd/compile/internal/logopt/logopt_test.go", "patch": "@@ -155,7 +155,7 @@ func s15a8(x *[15]int64) [15]int64 {\n \t\tarches := []string{runtime.GOARCH}\n \t\tgoos0 := runtime.GOOS\n \t\tif runtime.GOARCH == \"amd64\" { // Test many things with \"linux\" (wasm will get \"js\")\n-\t\t\tarches ...
2021-11-25T06:20:39
nodejs/node
6c542d1c26decd53fa1154a5aa7a53b4199cad1f
af5c8af5e9d02532d6a59e2a2544c1ea0c4877f7
repl: improve completion This improves the completion output by removing the nested special handling. It never fully worked as expected and required a lot of hacks to even keep it working halfway reliable. Our tests did not cover syntax errors though and those can not be handled by this implementation. Those break the...
[ { "path": "lib/readline.js", "patch": "@@ -501,7 +501,7 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {\n self.resume();\n \n if (err) {\n- self._writeToOutput(`tab completion error ${inspect(err)}`);\n+ self._writeToOutput(`Tab completion error: ${inspect(err)}`);\n ...
2019-12-11T18:26:47
huggingface/transformers
8dc7a52d766efe76c121c0654a5d24d633bffe9e
2cd52c267ce4d0212eaa40c0ec7192a11654336f
Fix nemotron_h modular (#44876) fix
[ { "path": "src/transformers/models/nemotron_h/modeling_nemotron_h.py", "patch": "@@ -1083,7 +1083,6 @@ class NemotronHPreTrainedModel(PreTrainedModel):\n _keep_in_fp32_modules_strict = [\n \"e_score_correction_bias\",\n ]\n- _tied_weights_keys = {}\n _keys_to_ignore_on_load_unexpected...
2026-03-20T10:00:32
vercel/next.js
95e33c4dd229ff58d05cc96c021c16862f38980c
9abf8863ccb3007c385b4a09b0e6b2a793631412
Fix: slug type issue (#54616) Failure at build time because - Type error: Argument of type 'string | null' is not assignable to parameter of type 'string'.
[ { "path": "examples/cms-contentful/lib/api.ts", "patch": "@@ -55,7 +55,7 @@ function extractPostEntries(fetchResponse: any): any[] {\n return fetchResponse?.data?.postCollection?.items\n }\n \n-export async function getPreviewPostBySlug(slug: string): Promise<any> {\n+export async function getPreviewPostB...
2023-09-04T00:23:38
rust-lang/rust
5082e6a300974459aec6dc73e76cc039c3a517c1
690ae523e5c0ac9602db7bbe2b8094ee422e4d0f
Generalize logic pointing at binding moved into closure Account not only for `fn` parameters when moving non-`Copy` values into closure, but also for let bindings. ``` error[E0507]: cannot move out of `bar`, a captured variable in an `FnMut` closure --> $DIR/borrowck-move-by-capture.rs:9:29 | LL | let bar: B...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -623,30 +623,51 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n && let Some(upvar_field) = self\n .prefixes(original_path.as_ref(), PrefixSet::All)\n ...
2025-07-20T02:15:45
electron/electron
5c07643d24125e017b8ec96c54eb9ffe16527b6d
f5694daeb793c41dea4ecf2a689a19aa2a9ad74d
Apply debugging-main-process changes in korean
[ { "path": "docs-translations/ko-KR/tutorial/debugging-main-process-node-inspector.md", "patch": "@@ -0,0 +1,37 @@\n+# VSCode 에서 메인 프로세스 디버깅하기\n+\n+### 1. VS Code 에서 Electron 프로젝트 열기.\n+\n+```bash\n+$ git clone git@github.com:electron/electron-quick-start.git\n+$ code electron-quick-start\n+```\n+\n+### 2. 다...
2016-09-23T03:51:28
golang/go
cfccb5cb7cea77c5272115556e59dea374e4dbd1
9bd6e2776f7dde746dc39923fd2bd994c91fd182
runtime/metrics: add the last GC cycle that had the limiter enabled This metric exports the the last GC cycle index that the GC limiter was enabled. This metric is useful for debugging and identifying the root cause of OOMs, especially when SetMemoryLimit is in use. For #48409. Change-Id: Ic6383b19e88058366a74f6ede1...
[ { "path": "src/runtime/metrics.go", "patch": "@@ -165,6 +165,12 @@ func initMetrics() {\n \t\t\t\tout.scalar = uint64(in.heapStats.tinyAllocCount)\n \t\t\t},\n \t\t},\n+\t\t\"/gc/limiter/last-enabled:gc-cycle\": {\n+\t\t\tcompute: func(_ *statAggregate, out *metricValue) {\n+\t\t\t\tout.kind = metricKindUin...
2022-05-13T15:14:54
nodejs/node
7327f390f69fe53c665b48862f51e343af555d37
67ed526ab03c3e9b2f41290b7cd6e9c2e7d9b4dd
repl: remove dead code The .scope command was used only in the old debugger. Since that's not part of core anymore it's does not have any use. I tried to replicate the expected behavior but it even results in just exiting the repl immediately when using the completion similar to the removed test case. PR-URL: https:/...
[ { "path": "lib/repl.js", "patch": "@@ -43,7 +43,6 @@\n 'use strict';\n \n const {\n- ArrayIsArray,\n MathMax,\n NumberIsNaN,\n ObjectAssign,\n@@ -1277,40 +1276,23 @@ function complete(line, callback) {\n // Resolve expr and get its completions.\n const memberGroups = [];\n if (!expr...
2019-12-10T16:27:22
rust-lang/rust
690ae523e5c0ac9602db7bbe2b8094ee422e4d0f
ee3a0783df39cb11c5706e38805eb9258b4fad79
Tweak borrowck label pointing at `!Copy` value moved into closure When encountering a non-`Copy` value that is moved into a closure which is coming directly from a fn parameter, point at the parameter's type when mentioning it is not `Copy`. Before: ``` error[E0507]: cannot move out of `foo`, a captured variable in ...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -115,10 +115,8 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n fn append_to_grouped_errors(\n &self,\n grouped_errors: &mut Vec<GroupedMoveError<'tcx>>,\n- error: MoveError<'tcx>,\n+ ...
2025-07-20T01:19:55
vercel/next.js
9abf8863ccb3007c385b4a09b0e6b2a793631412
c013e98fa4a4d65de08d315e3930936c34bf381f
docs: fix document format for __next_private_export_map__ (#54952) Fix the document format of `__next_private_export_map__` follow up: #54695
[ { "path": "packages/next/src/build/webpack/loaders/next-barrel-loader.ts", "patch": "@@ -16,7 +16,10 @@\n * be `['a']`. Then, it request the \"__barrel_transform__\" SWC transform to load\n * `foo.js` and receive the following output:\n *\n- * export const __next_private_export_map__ = '[[\"./a\",\"a\"...
2023-09-03T20:53:30
electron/electron
78791763cf542070e3866d0102af99dd34aea4b8
81b55c170002e164a2e057e96372c7102fd720eb
:memo: Fix typos and improve translations in README.md [ci skip]
[ { "path": "docs-translations/it-IT/README.md", "patch": "@@ -1,17 +1,17 @@\n-Per favore sii certo di usare la documentazione che corrisponde alla tua\n-versione di Electron. Il numero della versione dovrebbe fare parte dell'URL\n-della pagina. Se così non fosse, stai probabilmente utilizzando una\n-document...
2016-09-21T19:09:57
golang/go
ba8310cf29ee78576a3da8a3ce8e87075df834df
81d567146eb94678d401e282f99885010411df39
runtime/pprof: fix allFrames cache The compiler may choose to inline multiple layers of function call, such that A calling B calling C may end up with all of the instructions for B and C written as part of A's function body. Within that function body, some PCs will represent code from function A. Some will represent ...
[ { "path": "src/runtime/pprof/proto.go", "patch": "@@ -246,9 +246,10 @@ type locInfo struct {\n \t// https://github.com/golang/go/blob/d6f2f833c93a41ec1c68e49804b8387a06b131c5/src/runtime/traceback.go#L347-L368\n \tpcs []uintptr\n \n-\t// results of allFrames call for this PC\n-\tframes []runtime.Fr...
2022-05-09T04:42:51
nodejs/node
67ed526ab03c3e9b2f41290b7cd6e9c2e7d9b4dd
2d138965971109ddf6a583f78e5cdc3026c5f7f4
stream: error state cleanup Clean up end simplify errored state. - errorEmitted should be set in the same tick as 'error' is emitted. - errored should be set as soon as an error occurs. - errored should exist on Readable as well. - refactor destroy logic and make it easier to follow. PR-URL: https://github.com/nodej...
[ { "path": "lib/_stream_readable.js", "patch": "@@ -140,6 +140,9 @@ function ReadableState(options, stream, isDuplex) {\n // Has it been destroyed\n this.destroyed = false;\n \n+ // Indicates whether the stream has errored.\n+ this.errored = false;\n+\n // Crypto is kind of old and crusty. Historica...
2019-12-08T08:12:14
rust-lang/rust
f1823d15213c3dbafb3d3d39b755ce30da070ef3
8f67bcf4b0524b2efcbeeae50d393b1b51474237
fix: Apply adjusts to pats and exprs when doing pat analysis
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/diagnostics/expr.rs", "patch": "@@ -175,8 +175,9 @@ impl ExprValidator {\n });\n }\n \n- let receiver_ty = self.infer[*receiver].clone();\n- checker.prev_receiver_ty = Some(receiver_ty);\n+ if l...
2025-07-21T15:17:09
electron/electron
bce62622bb4b9fa0a3e2ba843be09896d8613662
783d47f78b9025e6bc16d170d509d22f3b65b016
Fix compiler errors
[ { "path": "atom/browser/native_window.h", "patch": "@@ -118,7 +118,8 @@ class NativeWindow : public base::SupportsUserData,\n virtual bool IsFullScreenable() = 0;\n virtual void SetClosable(bool closable) = 0;\n virtual bool IsClosable() = 0;\n- virtual void SetAlwaysOnTop(bool top, const std::string...
2016-09-22T16:22:28
vercel/next.js
c013e98fa4a4d65de08d315e3930936c34bf381f
6bc23cd2bd593168517a2f9cdd390fb98a08657d
fix: server actions firing twice after navigation (#54948) The original logic here was introduced to unblock client side navigations if a server action was in flight, however this introduced a bug where subsequent actions would fetch twice after navigation. This was happening because the promise handling was in the ...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/server-action-reducer.ts", "patch": "@@ -159,21 +159,22 @@ export function serverActionReducer(\n mutable.globalMutable.pendingNavigatePath &&\n mutable.globalMutable.pendingNavigatePath !== href\n ) {\n+ mutable.inF...
2023-09-03T20:31:48
golang/go
81d567146eb94678d401e282f99885010411df39
9a68dcd7decdebf6a17b3846b886f7c241a3bf5d
runtime: add go:yeswritebarrierrec to panic functions Panic avoids any write barriers in the runtime by checking first and throwing if called inappropriately, so it is "okay". Adding this annotation repairs recursive write barrier checking, which becomes more thorough when the local package naming convention is chang...
[ { "path": "src/runtime/panic.go", "patch": "@@ -106,38 +106,54 @@ func panicCheck2(err string) {\n // a space-minimal register calling convention.\n \n // failures in the comparisons for s[x], 0 <= x < y (y == len(s))\n+//\n+//go:yeswritebarrierrec\n func goPanicIndex(x int, y int) {\n \tpanicCheck1(getcall...
2022-05-13T16:09:21
rust-lang/rust
b5d36e5294d3354ad8feec86b27c698e368c88a6
67819923ac8ea353aaa775303f4c3aacbf41d010
Dont ICE on copy error being suppressed due to overflow
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -303,10 +303,11 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n }\n \n fn has_ambiguous_copy(&mut self, ty: Ty<'tcx>) -> bool {\n- let Some(copy_trait_def) = self.infcx.tcx.lang_items().copy_trait() e...
2025-07-21T16:07:12
huggingface/transformers
aa1c36f1a9f454e69c4eac83071ced235942c7ed
b96f8a98965a744ef5137dd25efd2e280cddcc25
[Model] Add PP-Chart2Table Model Support (#43767) * init * fix doc * update * update * update * update * update * update * update * update * refactor image_processor_fast * update * update * update * update * update * update * update * update * update * update * update * update * update * updat...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1284,6 +1284,8 @@\n title: PP-OCRv5_server_det\n - local: model_doc/pp_ocrv5_server_rec\n title: PP-OCRv5_server_rec\n+ - local: model_doc/pp_chart2table\n+ title: PPChart2Table\n - local: model_doc/pp_lcnet\n ...
2026-03-19T19:00:37
nodejs/node
b2bfacb9142c70e060f522cc5f05f937e66b07c7
3ead1c2fb7b75fbf8d45925308ee8dba4baba0ca
test: avoid leftover report file test-windows-failed-heap-allocation forces a out of mem crash resulting in a report file. To avoid a leftover in repo the child is started in a tmp folder like in test-report-fatal-error. PR-URL: https://github.com/nodejs/node/pull/30925 Reviewed-By: Anna Henningsen <anna@addaleax.net...
[ { "path": "test/parallel/test-windows-failed-heap-allocation.js", "patch": "@@ -14,9 +14,13 @@ if (process.argv[2] === 'heapBomb') {\n fn(2);\n }\n \n+// Run child in tmpdir to avoid report files in repo\n+const tmpdir = require('../common/tmpdir');\n+tmpdir.refresh();\n+\n // --max-old-space-size=3 is th...
2019-12-12T23:28:24
vercel/next.js
6bc23cd2bd593168517a2f9cdd390fb98a08657d
ef6140723aad48dad3636bc4d84cc6add874a69b
Fix group routes custom root not-found (#54931) For group routes, as their custom layout show up at the 1st level of the loader tree, so previously we tried to add the default not-found to that layer, but if they have custom root not-found, we should use that as the root not-found componeny, instead of using default n...
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -182,6 +182,9 @@ async function createTreeCodeFromPath(\n const isNotFoundRoute = page === '/_not-found'\n const isDefaultNotFound = isAppBuiltinNotFoundPage(pagePath)\n const appDirPrefix = isDefaultNotFound ? APP_DI...
2023-09-03T20:15:24
golang/go
9a68dcd7decdebf6a17b3846b886f7c241a3bf5d
0653cb4cf70f7091d10c409c23a12eabbd783fef
buildcfg: disable regabiwrappers along with regabiargs This (1) "just makes sense" and (2) avoids a weird bug in some name-dependent calling conventions in wasm code generation, when the local pkg has a real name instead of "". The calling conventions are triggered for a "wrapper" function, and somehow an abiwrapper w...
[ { "path": "src/internal/buildcfg/exp.go", "patch": "@@ -132,6 +132,7 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t}\n \t// regabi is only supported on amd64, arm64, riscv64, ppc64 and ppc64le.\n \tif !regabiSupported {\n+\t\tflags.RegabiWrappers = false\n \t\tflags.R...
2022-05-12T21:25:04
nodejs/node
3ead1c2fb7b75fbf8d45925308ee8dba4baba0ca
80fb15353ab8ea9d149d2d2606e1ca0b41ff926b
build,win: fix goto exit in vcbuild PR-URL: https://github.com/nodejs/node/pull/30931 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "vcbuild.bat", "patch": "@@ -720,6 +720,7 @@ echo vcbuild.bat no-cctest : skip building cctest.exe\n goto exit\n \n :exit\n+if %errorlevel% neq 0 exit /b %errorlevel%\n exit /b %exit_code%\n \n ", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2019-12-13T03:36:14
huggingface/transformers
b96f8a98965a744ef5137dd25efd2e280cddcc25
e94695e574f969ba5eeb8e442a7fb1e9f72ff37f
[Mistral] Fix query scaling for Mistral4 and Ministral3 (#44860) fix
[ { "path": "src/transformers/models/ministral3/modeling_ministral3.py", "patch": "@@ -104,7 +104,7 @@ def eager_attention_forward(\n \n def get_llama_4_attn_scale(positions_ids: torch.Tensor, beta: float, max_position_embeddings: int) -> torch.Tensor:\n scaling = 1 + beta * torch.log(1 + torch.floor(posi...
2026-03-19T18:02:04
rust-lang/rust
e70112df5f0ff5ebeb4d75d22f66b4b36082c85c
87aa056206fa883963cfa483df5e8e69e0393086
hir-def: Don't apply x86_64-specific asserts on x32 This fixes the rustc build on x32 for which struct sizes differ.
[ { "path": "src/tools/rust-analyzer/crates/hir-def/src/expr_store/path.rs", "patch": "@@ -27,7 +27,7 @@ pub enum Path {\n }\n \n // This type is being used a lot, make sure it doesn't grow unintentionally.\n-#[cfg(target_arch = \"x86_64\")]\n+#[cfg(all(target_arch = \"x86_64\", target_pointer_width = \"64\")...
2025-07-21T15:03:07
electron/electron
aac09e5234c15c785492f197f04d5220289874f5
df3896b1439f330f26bb3af4ea932199a6826210
Fix erratum
[ { "path": "docs-translations/ko-KR/api/remote.md", "patch": "@@ -38,7 +38,7 @@ win.loadURL('https://github.com');\n **참고:** remote 객체가 처음 참조될 때 표시되는\n [enumerable 속성][enumerable-properties]은 remote를 통해서만 접근할 수 있습니다.\n \n-모듈**참고:** 배열과 버퍼는 `remote` 모듈을 통해 접근할 떄 IPC 를 통해\n+**참고:** 배열과 버퍼는 `remote` 모듈을 통해 접근할 ...
2016-09-22T13:56:19
vercel/next.js
ef6140723aad48dad3636bc4d84cc6add874a69b
85f9e1b7510e38d4b16676ca62043cfbb11496f5
Ensure that barrel files behind wildcards are transformed into shortpath (#54951) This fix ensures the case that if you `import { foo } from './index'`, where: index.js: ```js export * from './subpkg' ``` subpkg.js: ```js const unrelatedExpressions = ... export { foo } from './foo' export { bar }...
[ { "path": "packages/next-swc/crates/core/tests/fixture/optimize-barrel/wildcard/2/input.js", "patch": "@@ -0,0 +1,5 @@\n+import { d } from 'd'\n+export const a = 1\n+export { b } from 'b'\n+export * from 'c'\n+export { d as e }", "additions": 5, "deletions": 0, "language": "JavaScript" }, { ...
2023-09-03T20:02:14
golang/go
5b4fafd5db1c13e5e2c9f836476015870b3ed30b
7e33e9e7a39de0dc384f65ddc17c00bdedf85b81
cmd/compile: sort named types before unnamed in reflect When the local package has an explicit name instead of "", this is necessary to get past a cgo plugin test that fails because of a package signature mismatch. There's something questionable going on in the package hash generation, and in particular it went wrong...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -1444,6 +1444,14 @@ type typesByString []typeAndStr\n \n func (a typesByString) Len() int { return len(a) }\n func (a typesByString) Less(i, j int) bool {\n+\t// put named types before unnamed types\n+\tif a[i].t.Sym() != nil && a[j]....
2022-05-12T21:12:32
nodejs/node
80fb15353ab8ea9d149d2d2606e1ca0b41ff926b
2097a6fc053823a8585cdbe858ade70f62c6bb1d
tools: enable Markdown linter's usage information Prior to this commit, running `node tools/lint-md --help` and `node tools/lint-md --version` resulted in an error. * Use `unified-args` to start processor * Use `unified-args`'s error handler Fixes: https://github.com/nodejs/node/issues/30156 PR-URL: https://github.c...
[ { "path": "tools/node-lint-md-cli-rollup/package-lock.json", "patch": "@@ -1,48 +1,45 @@\n {\n \"name\": \"node-lint-md-cli-rollup\",\n- \"version\": \"2.0.0\",\n+ \"version\": \"2.0.1\",\n \"lockfileVersion\": 1,\n \"requires\": true,\n \"dependencies\": {\n+ \"@types/estree\": {\n+ \"ver...
2019-11-02T08:35:32
huggingface/transformers
f4ed5b8d3600eb302c0031129fe51684ae004c8d
62c46ce2ff6e8ed18592eb2c2ac53456689a2013
Update some type hints (#44851) * update eos and q-lora-ranl * oops, wrong name for class
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -31,6 +31,7 @@\n from .generation.configuration_utils import GenerationConfig\n from .modeling_gguf_pytorch_utils import load_gguf_checkpoint\n from .modeling_rope_utils import RotaryEmbeddingConfigMixin\n+from .tokenization_utils_base import...
2026-03-19T16:18:52
electron/electron
762a5bbefa4ed875043a34d672c1c7de6292f35d
85702604c30b16df472cea6d6e502570ee736c2a
Split up debugging-main-process.md, add electron-inspector guide - Move the debugging guides for VSCode and node-inspector into separate files. - Add instructions for using electron-inspector to the node-inspector guide. - Remove note in node-inspector guide about crashing when inspecting `process` (it was fixed...
[ { "path": "docs/tutorial/debugging-main-process-node-inspector.md", "patch": "@@ -0,0 +1,131 @@\n+# Debugging the Main Process in node-inspector\n+\n+[`node-inspector`][node-inspector] provides a familiar DevTools GUI that can\n+be used in Chrome to debug Electron's main process, however, because\n+`node-in...
2016-09-21T09:39:15
vercel/next.js
85f9e1b7510e38d4b16676ca62043cfbb11496f5
7ab02c5e1e2e115abdb666a5b58edac375982048
docs: Fix typo in app/building-your-application/caching (#54841) - fix typo in [Building Your Application: Caching](https://nextjs.org/docs/app/building-your-application/caching#fetch-optionsnexttag-and-revalidatetag) - `options.next.tags` is correct (current: `options.next.tag`)
[ { "path": "docs/02-app/01-building-your-application/04-caching/index.mdx", "patch": "@@ -189,7 +189,7 @@ This is similar to [**stale-while-revalidate**](https://web.dev/stale-while-reva\n \n #### On-demand Revalidation\n \n-Data can be revalidated on-demand by path ([`revalidatePath`](#revalidatepath)) or b...
2023-09-03T17:25:35
golang/go
7e33e9e7a39de0dc384f65ddc17c00bdedf85b81
ece6ac4d4d4aea14d51907979e76dfb32c4b174b
cmd/go: don't assume decimal in test_fuzz_mutate_crash In the float test in test_fuzz_mutate_crash, don't assume the mutator will generate a decimal during mutation. The probability it will is quite high, but it is not guaranteed, which can cause a flake. Since we are not really testing that the mutator will do this k...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt", "patch": "@@ -241,8 +241,7 @@ func FuzzBool(f *testing.F) {\n \n func FuzzFloat(f *testing.F) {\n \tf.Fuzz(func(t *testing.T, a float64) {\n-\t\tif a != float64(int64(a)) {\n-\t\t\t// It has a decimal, so it was mutated by division\n+\t\tif ...
2022-05-12T17:03:25
huggingface/transformers
92c625889f6369cf73d19a2c62159b45c9bd6d98
884333368ff329090c73bd00e57996727f301de3
Fix glm dsa (#44564) relu
[ { "path": "src/transformers/models/glm_moe_dsa/modeling_glm_moe_dsa.py", "patch": "@@ -216,7 +216,7 @@ def forward(\n \n # q·k^T per head: [B, S, H, D] @ [B, T, D]^T → [B, S, H, T]\n scores = torch.einsum(\"bshd,btd->bsht\", q.float(), k_cached.float()) * self.softmax_scale\n-\n+ scor...
2026-03-19T15:13:33
nodejs/node
2097a6fc053823a8585cdbe858ade70f62c6bb1d
e902fadc5ee7615b15ce86d1986785c169d59c01
test: add missing test flags test-wasi-start-validation.js should require the --experimental-wasi-unstable-preview0 flag in order to run. However, due to a recent regression, that hasn't been enforced. https://github.com/nodejs/node/pull/30963 fixes the regression and will cause this test to start (correctly) failing....
[ { "path": "test/wasi/test-wasi-start-validation.js", "patch": "@@ -1,3 +1,4 @@\n+// Flags: --experimental-wasi-unstable-preview0\n 'use strict';\n \n require('../common');", "additions": 1, "deletions": 0, "language": "JavaScript" } ]
2019-12-15T00:11:45
vercel/next.js
7ab02c5e1e2e115abdb666a5b58edac375982048
17da2ca1fef5c043155bdb1d66574d02d9749c84
Fix typo in hot-reloader (#54944) Noticed this small typo from hrm -> hmr.
[ { "path": "packages/next/src/server/lib/router-utils/setup-dev.ts", "patch": "@@ -797,7 +797,7 @@ async function startWatcher(opts: SetupOpts) {\n \n for await (const data of subscription) {\n processIssues(id, data)\n- sendHmr('hrm-event', id, {\n+ sendHmr('hmr-event', id, {\n ...
2023-09-03T13:37:17
golang/go
2eb8b6eec65d3d214c07067db474bbb93de3443a
5a4ba6d90543fc1af8822e4f4d379135cef25655
runtime: make CPU limiter assist time much less error-prone At the expense of performance (having to update another atomic counter) this change makes CPU limiter assist time much less error-prone to manage. There are currently a number of issues with respect to how scavenge assist time is treated, and this change reso...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1439,16 +1439,20 @@ func (l *GCCPULimiter) NeedUpdate(now int64) bool {\n \treturn l.limiter.needUpdate(now)\n }\n \n-func (l *GCCPULimiter) StartGCTransition(enableGC bool, totalAssistTime, now int64) {\n-\tl.limiter.startGCTransition(enableGC, totalAss...
2022-05-06T20:17:52
nodejs/node
e902fadc5ee7615b15ce86d1986785c169d59c01
decc5f5506bfaeac9f09ed1d12b4f519bc0ac250
stream: do not throw multiple callback errors in writable Align ERR_MULTIPLE_CALLBACK in Writable with the rest of error handling as well as how the error is implemented in Transform. PR-URL: https://github.com/nodejs/node/pull/30614 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinc...
[ { "path": "lib/_stream_writable.js", "patch": "@@ -477,8 +477,10 @@ function onwrite(stream, er) {\n const sync = state.sync;\n const cb = state.writecb;\n \n- if (typeof cb !== 'function')\n- throw new ERR_MULTIPLE_CALLBACK();\n+ if (typeof cb !== 'function') {\n+ errorOrDestroy(stream, new ERR...
2019-11-23T22:35:48
vercel/next.js
6c098a74e37092593b9e45d071f587e4c4d39910
166f556f6900f75af2a46ab4906ba9837d7bded3
docs: Minor formatting fix in Pages Router SSG (#54915)
[ { "path": "docs/03-pages/01-building-your-application/02-rendering/02-static-site-generation.mdx", "patch": "@@ -108,7 +108,7 @@ However, which `id` you want to pre-render at build time might depend on externa\n \n Later, you might add the second post with `id: 2`. Then you'd want to pre-render `posts/2` as...
2023-09-02T23:34:21
golang/go
5a4ba6d90543fc1af8822e4f4d379135cef25655
d4dd7acd2e9654e9769f4fa131540ad4e991adb5
cmd/go: make TestScript/test_fuzz_minimize_dirty_cov use less memory The test doesn't need to be as aggressive, it _should_ still tickle the right paths with high enough probability. This should significantly reduce the memory it consumes, which is at a premium when testing fuzzing things. Fixes #52744 Change-Id: I4...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize_dirty_cov.txt", "patch": "@@ -10,8 +10,8 @@\n [!fuzz-instrumented] skip\n \n env GOCACHE=$WORK/gocache\n-go test -fuzz=FuzzCovMin -fuzztime=25s -test.fuzzcachedir=$GOCACHE/fuzz\n-go run check_file/main.go $GOCACHE/fuzz/FuzzCovMin abcd\n+go test -fuzz=...
2022-05-06T17:15:49
rust-lang/rust
bebae76f2396a61499e6e01dcf8f0b510f9fd856
ae8ff77d00f04cee9512c5b7d0bce7d61976bfaa
fix: `module_name_repetitions` FP on exported macros
[ { "path": "clippy_lints/src/item_name_repetitions.rs", "patch": "@@ -8,6 +8,7 @@ use rustc_data_structures::fx::FxHashSet;\n use rustc_hir::{EnumDef, FieldDef, Item, ItemKind, OwnerId, QPath, TyKind, Variant, VariantData};\n use rustc_lint::{LateContext, LateLintPass};\n use rustc_session::impl_lint_pass;\n...
2025-07-21T13:49:41
electron/electron
696e5e73bc45e7bdfa4e8a7ce28c38467e3f46a8
c2c48c407928bd8761ea28a5091d583e20d71e8e
Upgrade Brigthray for CT log verifier fix
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit 4c94ececec0244e3500e4cab29d46a6237e5e213\n+Subproject commit 0383c1322954fd16ef8d4ee9b2a73248a1994aea", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2016-09-21T17:02:42
vercel/next.js
166f556f6900f75af2a46ab4906ba9837d7bded3
7a871a942458f14e28cefbd8c830b53f3eb3992f
Fix typo in description of error.js (#54933)
[ { "path": "docs/02-app/01-building-your-application/01-routing/07-error-handling.mdx", "patch": "@@ -93,7 +93,7 @@ export default function Error({ error, reset }) {\n height=\"903\"\n />\n \n-- `error.js` automatically creates an [React Error Boundary](https://react.dev/reference/react/Component#catching-...
2023-09-02T22:57:49
huggingface/transformers
884333368ff329090c73bd00e57996727f301de3
7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca
🚨🚨 Refactor Image Processors to support different backends (#43514) * init refactor * Fix llava * changes after review * update first batch of image processors * refactor part 2 * improve base image processor class, move backends to separate file * refactor to have backends in separate files, with backends now...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -137,13 +137,15 @@ python utils/modular_model_converter.py <model_name>\n \n This will generate the separate files (`modeling_*.py`, `configuration_*.py`, etc.) from your modular file. The CI will enforce that these generated files match your modular file.\n \n-☐ **...
2026-03-19T14:33:28
nodejs/node
25447d82d34afb8c7f0f7e8fea10942586ef2d7c
f8018f289e36148ce712170ec22377798af12fc8
src: unregister Isolate with platform before disposing I previously thought the order of these calls was no longer relevant. I was wrong. This commit undoes the changes from 312c02d25e9, adds a comment explaining why I was wrong, and flips the order of the calls elsewhere for consistency, the latter having been the g...
[ { "path": "src/node.h", "patch": "@@ -298,6 +298,7 @@ class NODE_EXTERN MultiIsolatePlatform : public v8::Platform {\n \n // This function may only be called once per `Isolate`, and discard any\n // pending delayed tasks scheduled for that isolate.\n+ // This needs to be called right before calling `Is...
2019-12-12T02:48:47
golang/go
016d7552138077741a9c3fdadc73c0179f5d3ff7
da0a6f4b57fc9eb4779c295bc9620c5ed271a641
runtime: measure stack usage; start stacks larger if needed Measure the average stack size used by goroutines at every GC. When starting a new goroutine, allocate an initial goroutine stack of that average size. Intuition is that we'll waste at most 2x in stack space because only half the goroutines can be below avera...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1294,7 +1294,7 @@ func (c *GCController) StartCycle(stackSize, globalsSize uint64, scannableFrac f\n \tif c.heapMarked > trigger {\n \t\ttrigger = c.heapMarked\n \t}\n-\tc.scannableStackSize = stackSize\n+\tc.maxStackScan = stackSize\n \tc.globalsScan = ...
2021-08-28T22:50:52
rust-lang/rust
c193f3039f561aad497fdaced3f320bd889bdb0d
67819923ac8ea353aaa775303f4c3aacbf41d010
opt-dist: make `artifact-dir` an absolute path for `opt-dist local` ...like for CI environments. the same logic applied as for `build_dir`. fixes the issue where some intermediate steps fail due to path being relative to an active directory
[ { "path": "src/tools/opt-dist/src/main.rs", "patch": "@@ -62,7 +62,7 @@ enum EnvironmentCmd {\n python: String,\n \n /// Directory where artifacts (like PGO profiles or rustc-perf) of this workflow\n- /// will be stored.\n+ /// will be stored. Relative to `checkout_dir`\n ...
2025-07-21T12:47:37
vercel/next.js
7a871a942458f14e28cefbd8c830b53f3eb3992f
53d6da6cc63b75c58db12900a76dc4b04a40db07
chore: fix autolabeler (#54916) ### What? Follow-up of #54824 ### Why? Correctly detect the section to look for while autolabeling. The text currently being searched is not present in the issue body, just the template. Example: #54911 where "App Router" is present but was not detected.
[ { "path": ".github/actions/issue-validator/src/autolabel.mjs", "patch": "@@ -38,7 +38,7 @@ async function run() {\n \n const matchSection = issue_body\n .split('Which area(s) are affected? (Select all that apply)')[1]\n- ?.split('Another way you can help the maintainers')[0]\n+ ?.split('### Addi...
2023-09-02T21:05:10
nodejs/node
8dea6dc2fbd527fdf7deda9be2858ec24c24ac48
952b90ca8df1cc530529d26080056652a09d16bb
doc: fix description of N-API exception handlers The return value is not a boolean and even if interpreted as one, it does not indicate whether an exception is pending. For napi_is_exception_pending, the description of the result parameter already explains how to check whether an exception is pending. PR-URL: https:...
[ { "path": "doc/api/n-api.md", "patch": "@@ -1057,8 +1057,6 @@ napi_status napi_get_and_clear_last_exception(napi_env env,\n \n Returns `napi_ok` if the API succeeded.\n \n-This API returns true if an exception is pending.\n-\n This API can be called even if there is a pending JavaScript exception.\n \n ####...
2019-12-11T04:45:19
huggingface/transformers
7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca
be8d8a4cae81fa4889a80d88d84e7a8b2a0c4850
[generate] Never use `cache_position` anymore in generation (#44816) * remove from generation * update tests * more tests * fix * doc * last changes * aqlm slipped through * add bc for remote code models * anton's review * add warning
[ { "path": "docs/source/en/attention_interface.md", "patch": "@@ -198,8 +198,9 @@ This is the default signature for an attention mask function.\n ```python\n def custom_attention_mask(\n batch_size: int, # required arg\n- cache_position: torch.Tensor, # required arg\n+ q_length: int, # required ...
2026-03-19T14:18:26
golang/go
da0a6f4b57fc9eb4779c295bc9620c5ed271a641
6365efb7dcfd6ab90ffe5541ca26bd8d875167a3
spec: fix prose about promoted methods of embedded fields The types of embedded fields must be named, but they don't need to be defined types (e.g. if the type name is an alias). Fixes #41687. Change-Id: Ib9de65dfab0e23c27d8303875fa45c217aa03331 Reviewed-on: https://go-review.googlesource.com/c/go/+/406054 Reviewed-...
[ { "path": "doc/go_spec.html", "patch": "@@ -1089,7 +1089,7 @@ <h3 id=\"Struct_types\">Struct types</h3>\n </p>\n \n <p>\n-Given a struct type <code>S</code> and a <a href=\"#Type_definitions\">defined type</a>\n+Given a struct type <code>S</code> and a <a href=\"#Types\">named type</a>\n <code>T</code>, pro...
2022-05-12T20:25:01
huggingface/transformers
25a91051ed7973a92b158f4fb7da1edb39b416ae
70e454c97368fcc5183066d86d37d1b493a72f8c
Fix KeyError in convert_to_native_format for dict vocab (#44452) When loading tokenizers like vesteinn/ScandiBERT whose tokenizer_config specifies XLMRobertaTokenizer (model=Unigram) but whose tokenizer.json contains a dict-type vocab, the expression vocab[0] raises KeyError because dict keys are strings, not integers...
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -155,7 +155,7 @@ def convert_to_native_format(cls, trust_remote_code=False, **kwargs):\n if isinstance(vocab, list):\n vocab = list(map(tuple, vocab)) # TODO just for now\n elif cls.m...
2026-03-19T13:46:43
vercel/next.js
53d6da6cc63b75c58db12900a76dc4b04a40db07
2b9ffb009cccc4b596ee438042bd4cc774bc18e8
fix: Fix grammar issues on README.md (#54921) In this PR resolved the grammatical error on the [README.md](https://github.com/vercel/next.js/blob/canary/examples/with-passport-and-next-connect/README.md) Fixes #54919
[ { "path": "examples/with-passport-and-next-connect/README.md", "patch": "@@ -4,7 +4,7 @@ This example creates a basic [CRUD](https://en.wikipedia.org/wiki/Create,_read,_\n \n The example shows how to do a sign up, login, logout, and account deactivation. It utilizes [SWR](https://swr.vercel.app/) to fetch t...
2023-09-02T15:10:37
nodejs/node
31b8f4476f30bd062d39df1cbeb382f32e2a2b4a
917d896d6a8a518cf4cd6208214da468acbde141
test: improve assertion error message in test-debug-usage PR-URL: https://github.com/nodejs/node/pull/30913 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/parallel/test-debug-usage.js", "patch": "@@ -24,5 +24,8 @@ child.on('exit', common.mustCall(function(code) {\n const outputLines = actualUsageMessage.split('\\n');\n assert.strictEqual(code, 1);\n for (let i = 0; i < expectedLines.length; i++)\n- assert(expectedLines[i].test(outputL...
2019-12-12T14:28:09
huggingface/transformers
70e454c97368fcc5183066d86d37d1b493a72f8c
be6cf0848668852e3267d297211eb7e983e6c786
fix: XLNet: relative_positional_encoding computes on CPU every forward (#44782) fix: pass device to torch.arange in XLNet relative_positional_encoding
[ { "path": "src/transformers/models/xlnet/modeling_xlnet.py", "patch": "@@ -937,9 +937,9 @@ def positional_embedding(pos_seq, inv_freq, bsz=None):\n \n return pos_emb\n \n- def relative_positional_encoding(self, qlen, klen, bsz=None):\n+ def relative_positional_encoding(self, qlen, klen, bsz=No...
2026-03-19T13:16:31
golang/go
6365efb7dcfd6ab90ffe5541ca26bd8d875167a3
2136e1551089bbac284980c2521d8b729f6a5c3e
test: add test case that caused a gofrontend crash For #52841 Change-Id: If4723a70fba0dbedb5d1e70dab58f0b4612bf8b9 Reviewed-on: https://go-review.googlesource.com/c/go/+/405759 Auto-Submit: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org>...
[ { "path": "test/fixedbugs/issue52841.go", "patch": "@@ -0,0 +1,30 @@\n+// compile\n+\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+// Issue 52841: gofrontend crashed writing export dat...
2022-05-12T02:26:14
electron/electron
ba2cb42f0de5d5f542ade96adc5ab9ca7818aa44
7dfe1a59b155e372ad571021cc45602e519332d8
Remove incorrect letters
[ { "path": "docs-translations/ko-KR/api/window-open.md", "patch": "@@ -1,4 +1,4 @@\n-1# `window.open` 함수\n+# `window.open` 함수\n \n > 새 윈도우를 열고 URL을 로드합니다.\n ", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2016-09-21T15:30:20
nodejs/node
648088289d619bfb149fe90316ce0127083c4c99
ccdd6ef649edfc34d9e769a740440b779bbefe68
stream: make all streams error in a pipeline This changes makes all stream in a pipeline emit 'error' in case of an abnormal termination of the pipeline. If the last stream is currently being async iterated, this change will make the iteration reject accordingly. See: https://github.com/nodejs/node/pull/30861 Fixes: ...
[ { "path": "lib/internal/streams/pipeline.js", "patch": "@@ -43,15 +43,21 @@ function destroyer(stream, reading, writing, callback) {\n \n // request.destroy just do .end - .abort is what we want\n if (isRequest(stream)) return stream.abort();\n- if (typeof stream.destroy === 'function') return st...
2019-12-09T19:44:12
vercel/next.js
2b9ffb009cccc4b596ee438042bd4cc774bc18e8
125605c307d5acd732e629bad4216c060403979e
Update turbopack (#54909) Minor update that includes changes necessary to get HMR errors working. Closes WEB-1494
[ { "path": "Cargo.lock", "patch": "@@ -412,7 +412,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-230901.1#dbc59a36c7d09119fa7768f14d450b4650ec94f0\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-09-02T10:45:49
rust-lang/rust
92111dcc67a4f19c6a6e8f22633b2f88f64ed6bb
0b168815a46bd8132871b909405bf15f12a5438c
Fix false positive in useless_attribute with redundant_imports The useless_attribute lint was incorrectly flagging #[expect(redundant_imports)] as useless when applied to macro re-exports. This occurred because the lint didn't recognize 'redundant_imports' as a valid rustc lint name. This commit: - Adds 'redundant_im...
[ { "path": "clippy_lints/src/attrs/useless_attribute.rs", "patch": "@@ -36,6 +36,7 @@ pub(super) fn check(cx: &EarlyContext<'_>, item: &Item, attrs: &[Attribute]) {\n | sym::unused_braces\n | sym::unused_import_braces\n ...
2025-07-21T11:43:43
huggingface/transformers
be6cf0848668852e3267d297211eb7e983e6c786
e0f69d3810242b055a673a8b95f89ab20c6ca6d6
Fix annotations reader for python 3.14 in `PreTrainedModel` (#44672) Fix annotations reader for python 3.14
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1218,7 +1218,7 @@ def __init_subclass__(cls, **kwargs):\n # otherwise we derive it from the annotated `config` attribute.\n \n # defined in this particular subclass\n- child_annotation = cls.__dict__.get(\"__annotations__\"...
2026-03-19T13:15:25
golang/go
1e5fcefcd188f3fba85156523bf57deb454b9cd4
d6e6140c988e0b276fa5559190ede3494ea73cf0
cmd/go: copy files from go/build into new modindex package These files are all copied as is from the go/build package, to files with the same name in modindex (with the exception of build_read, which was copied from go/build/read.go). This is being done so that the next CL can show exactly the changes that were made ...
[ { "path": "src/cmd/go/internal/modindex/build.go", "patch": "@@ -0,0 +1,2007 @@\n+// Copyright 2011 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 build\n+\n+import (\n+\t\"bytes\"\n+\t\"errors\"\n...
2022-05-03T21:51:14
rust-lang/rust
58537fb869a8e08d5146e8feab982f17b3fd990a
9982d6462bedf1e793f7b2dbd655a4e57cdf67d4
Fix broken TLS destructors on 32-bit win7 On the 32-bit win7 target, we use OS TLS instead of native TLS, due to issues with how the OS handles alignment. Unfortunately, this caused issues due to the TLS destructors not running, causing memory leaks among other problems. On Windows, to support OS TLS, the TlsAlloc fa...
[ { "path": "library/std/src/sys/thread_local/guard/windows.rs", "patch": "@@ -58,7 +58,7 @@\n //! We don't actually use the `/INCLUDE` linker flag here like the article\n //! mentions because the Rust compiler doesn't propagate linker flags, but\n //! instead we use a shim function which performs a volatile ...
2025-07-20T23:32:26
nodejs/node
ccdd6ef649edfc34d9e769a740440b779bbefe68
2e738fb6b53903d11d2557acfe4b17c7c60c3a6b
src: make debug_options getters public This simplifies requires for those using DebugOptions, since debug_options was defined in src/node_options-inl.h and thus embedders would need to require an extra file to do what could trivially be consolidated into one. PR-URL: https://github.com/nodejs/node/pull/30494 Reviewe...
[ { "path": "src/node_options-inl.h", "patch": "@@ -13,14 +13,6 @@ PerIsolateOptions* PerProcessOptions::get_per_isolate_options() {\n return per_isolate.get();\n }\n \n-DebugOptions* EnvironmentOptions::get_debug_options() {\n- return &debug_options_;\n-}\n-\n-const DebugOptions& EnvironmentOptions::debug...
2019-11-15T16:49:07
vercel/next.js
125605c307d5acd732e629bad4216c060403979e
c3d23c6db6963b16eb15b14b98dfcec82de4b074
Debug tracing: time devserver startup (#54537) This: - Profiles dev server startup by wrapping most logic in a debug tracing Span - Sets tracing globals for this case earlier, as they would otherwise be unavailable - Allows Turbopack traces to be uploaded, as while currently incomplete, they are accurate Closes WEB...
[ { "path": "packages/next/src/cli/next-dev.ts", "patch": "@@ -12,7 +12,7 @@ import { getProjectDir } from '../lib/get-project-dir'\n import { CONFIG_FILES, PHASE_DEVELOPMENT_SERVER } from '../shared/lib/constants'\n import path from 'path'\n import { NextConfigComplete } from '../server/config-shared'\n-impo...
2023-09-02T00:34:37
huggingface/transformers
e0f69d3810242b055a673a8b95f89ab20c6ca6d6
cecacd374f575ad7ffe37dcd69a98cf00b551011
[CB] Better parametrization for compile (#44578) * Stacked commits * New config * good logged and silent deletion * nits * better config * review * Update example script * Test for new flag * Better benchmarking of CB * Rebase fixes * Avoid deleting an non-existing arg * No refering non existing var * Remo...
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -6,7 +6,7 @@\n \n \n SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_batching.py\").as_posix()\n-COMMON_ARGS = \"--log-level WARNING --seed 0\".split()\n+COMMON_ARGS = \"--log-level...
2026-03-19T11:37:05
rust-lang/rust
21768bb380495d5c771cad9b6eb2b877844f5a11
460259d14de0274b97b8801e08cb2fe5f16fdac5
Enforce PR CI jobs are a subset of Auto CI jobs (modulo carve-outs) To prevent possibility of a PR with red PR-only CI passing Auto CI, then all subsequent PR CI runs will be red until that is fixed. Note that this is **not** a "strict" subset relationship: some jobs necessarily have to differ under PR CI and Auto CI...
[ { "path": "src/ci/citool/src/jobs.rs", "patch": "@@ -1,9 +1,9 @@\n #[cfg(test)]\n mod tests;\n \n-use std::collections::BTreeMap;\n+use std::collections::{BTreeMap, HashSet};\n \n-use anyhow::Context as _;\n+use anyhow::{Context as _, anyhow};\n use serde_yaml::Value;\n \n use crate::GitHubContext;\n@@ -85,...
2025-07-21T06:02:02
golang/go
d6e6140c988e0b276fa5559190ede3494ea73cf0
f269d90bf201ee97c42ce625376883866ad77332
cmd/compile: fix boolean comparison on RISCV64 Following CL 405114, for RISCV64. May fix RISCV64 builds. Updates #52788. Change-Id: Ifc34658703d1e8b97665e7b862060152e3005d71 Reviewed-on: https://go-review.googlesource.com/c/go/+/405553 Reviewed-by: David Chase <drchase@google.com> Run-TryBot: Cherry Mui <cherryyz@g...
[ { "path": "src/cmd/compile/internal/ssa/gen/RISCV64.rules", "patch": "@@ -583,7 +583,7 @@\n (AtomicOr32 ...) => (LoweredAtomicOr32 ...)\n \n // Conditional branches\n-(If cond yes no) => (BNEZ cond yes no)\n+(If cond yes no) => (BNEZ (MOVBUreg <typ.UInt64> cond) yes no)\n \n // Optimizations\n \n@@ -621,6...
2022-05-10T14:49:33
huggingface/transformers
cecacd374f575ad7ffe37dcd69a98cf00b551011
529504b2fa98970c6c44d3fafaeb07a39c40e7ea
Fix `KeyError` when patching mistral regex (#43376) * Avoid multiple fix_mistral_regex (KeyError) * add regression test * style * fix --------- Co-authored-by: Leonardo Emili <lemili@apple.com> Co-authored-by: vasqu <antonprogamer@gmail.com>
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -456,7 +456,7 @@ def __init__(self, *args, **kwargs):\n self._tokenizer,\n self.init_kwargs.get(\"name_or_path\", None),\n init_kwargs=self.init_kwargs,\n- fix_mistral_r...
2026-03-19T07:55:40
vercel/next.js
cdfc4a996dadafe6d43c8906c969706cddd31e5c
571ce68cef4ac994bab49f62bb562fa3278b13ea
Stub out module.hot.check for next-api (vercel/turbo#5855) ### Description While implementing Errors in next-api, this was consistently failing. We're reusing Next's client-side HMR implementation (mostly), and they call this API to reload individual chunk items. (We don't actually use this API for our own chunk...
[ { "path": "crates/turbopack-ecmascript-runtime/js/src/dev/runtime/base/extensions.d.ts", "patch": "@@ -57,6 +57,7 @@ interface Hot {\n status: () => keyof typeof HotUpdateStatus;\n addStatusHandler: (handler: HotUpdateStatusHandler) => void;\n removeStatusHandler: (handler: HotUpdateStatusHandler) => ...
2023-09-01T23:20:03
nodejs/node
e17403ede37d5879c2fa8e9d2c71f1eacbea9366
9c460e10d10570c6783fd51e885a50ea99464943
http,https: increase server headers timeout Fixes: https://github.com/nodejs/node/issues/24980 Refs: https://github.com/nodejs/node/commit/eb43bc04b1 PR-URL: https://github.com/nodejs/node/pull/30071 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: T...
[ { "path": "doc/api/http.md", "patch": "@@ -1107,7 +1107,7 @@ Stops the server from accepting new connections. See [`net.Server.close()`][].\n added: v11.3.0\n -->\n \n-* {number} **Default:** `40000`\n+* {number} **Default:** `60000`\n \n Limit the amount of time the parser will wait to receive the complete...
2019-10-22T22:17:03
huggingface/transformers
529504b2fa98970c6c44d3fafaeb07a39c40e7ea
16a5b0936dcaae6efbc03ab1a4fd98dc324bfb9e
Correct code block formatting in weightconverter.md (#44839) Fix formatting of code block in weightconverter.md
[ { "path": "docs/source/en/weightconverter.md", "patch": "@@ -66,7 +66,7 @@ model.layers.0.self_attn.k_proj.weight → model.layers.0.self_attn.k_proj.wei\n model.layers.0.mlp.gate_proj.weight → model.layers.0.mlp.gate_proj.weight\n model.layers.0.mlp.up_proj.weight → model.layers.0.mlp.up_proj.w...
2026-03-19T06:59:32
rust-lang/rust
e7c7bf04a7fb8b563cd5c393936118ae487c3999
87c661ebbcf115116c87674d7760a1e8fb1e87e8
Fix rustc testsuite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -39,6 +39,7 @@ rm tests/ui/simd/intrinsic/generic-arithmetic-pass.rs # unimplemented simd_funne\n # exotic linkages\n rm tests/incremental/hashes/function_interfaces.rs\n rm tests/incremental/hashes/statics.rs\n+rm -r tests/run-make/naked-symbol-visibili...
2025-07-21T09:14:09
golang/go
f269d90bf201ee97c42ce625376883866ad77332
1dfe994fe9e87e17b141a3f06c6a88632821020a
spec: use original terminology in metasyntax (cleanup) The metasyntax used in the spec is exactly the Wirth Syntax Notation (WSN), which eventually influenced EBNF. Add a link but keep mentioning EBNF which is likely more commonly known. Use the original terms in the productions. Specifically, use the words "Term" an...
[ { "path": "doc/go_spec.html", "patch": "@@ -22,20 +22,23 @@ <h2 id=\"Introduction\">Introduction</h2>\n </p>\n \n <p>\n-The grammar is compact and simple to parse, allowing for easy analysis\n+The syntax is compact and simple to parse, allowing for easy analysis\n by automatic tools such as integrated devel...
2022-05-12T03:52:05
electron/electron
402e977b400cd6c9aba8243ca2657e08a305a944
e11672d42bb0b94ed3fe7ae8a3302a0eb85fd67a
Fix some bronken links
[ { "path": "docs-translations/ko-KR/tutorial/about.md", "patch": "@@ -1,6 +1,6 @@\n > 이 문서는 아직 Electron 기여자가 번역하지 않았습니다.\n >\n-> Electron에 기여하고 싶다면 [기여 가이드](https://github.com/electron/electron/blob/master/CONTRIBUTING-ko.md)를\n+> Electron에 기여하고 싶다면 [기여 가이드](https://github.com/electron/electron/blob/master/d...
2016-09-20T14:36:20
nodejs/node
d64c1dc24a7323f5ee93c2eff65c37cd8fb71908
d06efafe6b5885e14441409a21eab810cdae754b
console: unregister temporary error listener PR-URL: https://github.com/nodejs/node/pull/30852 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "lib/internal/console/constructor.js", "patch": "@@ -213,7 +213,7 @@ function createWriteErrorHandler(instance, streamSymbol) {\n // removed after the event, non-console.* writes won't be affected.\n // we are only adding noop if there is no one else listening for 'error'\n if (s...
2019-12-08T09:58:13
huggingface/transformers
16a5b0936dcaae6efbc03ab1a4fd98dc324bfb9e
c55f65056becad6df5f7eef7ce74ac0811fdfac6
deepseek_v2, deepseek_v3, and modernbert fix for having incorrect tokenizer class on the hub (#44801) * deepseek and modernbert * deepseek v2
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -347,13 +347,16 @@\n \"deepseek_vl\",\n \"deepseek_vl_v2\",\n \"deepseek_vl_hybrid\",\n+ \"deepseek_v2\",\n+ \"deepseek_v3\",\n \"fuyu\",\n \"hyperclovax_vlm\",\n \"internlm2\",\n \"janus\",\n \...
2026-03-18T21:21:04