repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
6da16b6ad5787a043fc9978d2d009934e3b2e165
0807986fe6bf6040bafa9c415ab72e4cc8e519a4
go/types, types2: clarify a comment and add an extra test Confirm that the current implementation of core type unification looks correct and update the respective comment. Add an extra test. Fixes #51376. Change-Id: I6a603a4baeee2ede5bb4a1d60766204a808936d7 Reviewed-on: https://go-review.googlesource.com/c/go/+/3882...
[ { "path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue51376.go2", "patch": "@@ -0,0 +1,24 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+type Map map[stri...
2022-02-28T05:08:29
rust-lang/rust
d117c77a0e0bb7468e25eef66c79f87989104810
cdf5236ee8fc1c4534c3e186e0f2584cca3ea108
Fix raw-dylib.rs
[ { "path": "example/raw-dylib.rs", "patch": "@@ -5,7 +5,7 @@ fn main() {\n #[cfg(windows)]\n {\n #[link(name = \"kernel32\", kind = \"raw-dylib\")]\n- extern \"C\" {\n+ unsafe extern \"C\" {\n fn GetModuleFileNameA(\n module: *mut std::ffi::c_void,\n ...
2025-07-04T09:55:39
huggingface/transformers
70179949f7899e0ca235210f7188c6c9e0add77b
a8a22624f5598167eb82a3e0bc4228021e5440f6
Fix tests trainer again (#42933)
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -304,6 +304,7 @@ def _load_state_dict_into_zero3_model(model_to_load, state_dict):\n state_dict._metadata = metadata\n \n error_msgs = []\n+ missing_keys = set(model_to_load.state_dict().keys())\n \n # PyTorch's `_load_f...
2025-12-19T19:31:12
vercel/next.js
aec75c2f061008245967d7bd82de4cba20ad670e
d06bc5e286f21607289ab24cde279bdfcba0ed00
fix: build stats should properly report root page size in appDir (#51854) ### What? `next build` is incorrectly reporting file size stats for the root path when using the app dir ### Why? In #50768, the denormalization logic was removed for appDir routes, but `pagesManifest` has the root page keyed by `/` while...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -65,6 +65,7 @@ import { patchFetch } from '../server/lib/patch-fetch'\n import { nodeFs } from '../server/lib/node-fs-methods'\n import * as ciEnvironment from '../telemetry/ci-info'\n import { normalizeAppPath } from '../shared/lib/router/utils/app...
2023-06-27T01:57:50
nodejs/node
1cc5c547d5f83097b7190d8186533bf176df6c9f
86f8f4f7912eb7a97bd7b7b10d634c7ecaca1387
doc: fix nits in stream.md * Unify periods and upper case in comments. * Add missing parentheses for methods. * Add missing backticks. * Fix sorting position of `writable.writableFinished` section. * Replace a one-letter variable with a more readable one. * `catch(console.log)` -> `catch(console.error)`. * Document mi...
[ { "path": "doc/api/stream.md", "patch": "@@ -115,20 +115,20 @@ that implements an HTTP server:\n const http = require('http');\n \n const server = http.createServer((req, res) => {\n- // `req` is an http.IncomingMessage, which is a Readable Stream\n- // `res` is an http.ServerResponse, which is a Writable...
2019-07-07T17:56:12
golang/go
0807986fe6bf6040bafa9c415ab72e4cc8e519a4
aaa3d39f270d7b9957f34f3d2a68decba63beffe
go/types, types2: correctly consider ~ (tilde) in constraint type inference When doing constraint type inference, we must consider whether the constraint's core type is precise (no tilde) or imprecise (tilde, or not a single specific type). In the latter case, we cannot infer an unknown type argument from the (impreci...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -474,52 +474,54 @@ func TestInstanceInfo(t *testing.T) {\n \t\t// \t`func(float64)`,\n \t\t// },\n \n-\t\t{`package s1; func f[T any, P interface{~*T}](x T) {}; func _(x string) { f(x) }`,\n+\t\t{`package s1; func f[T any, P interface{*T}...
2022-02-25T06:11:40
rust-lang/rust
cdf5236ee8fc1c4534c3e186e0f2584cca3ea108
f02793c37f5c0698b84de1e6f72b2ea4bff7d50a
Fix neon.rs
[ { "path": "example/neon.rs", "patch": "@@ -14,7 +14,7 @@ unsafe fn test_vpmin_s8() {\n let a = i8x8::from([1, -2, 3, -4, 5, 6, 7, 8]);\n let b = i8x8::from([0, 3, 2, 5, 4, 7, 6, 9]);\n let e = i8x8::from([-2, -4, 5, 7, 0, 2, 4, 6]);\n- let r: i8x8 = transmute(vpmin_s8(transmute(a), transmute(...
2025-07-04T09:55:07
electron/electron
767c2357080bda8c01dd62b47c4cf03d97eb8921
ef459c7676ea0fe45c5e5caf34e35e4dd9f1a59f
Fix compilation error
[ { "path": "atom/browser/api/atom_api_window.cc", "patch": "@@ -79,6 +79,7 @@ Window::Window(v8::Isolate* isolate, const mate::Dictionary& options) {\n options.Get(options::kWebPreferences, &web_preferences);\n \n // Copy the backgroundColor to webContents.\n+ v8::Local<v8::Value> value;\n if (options...
2016-05-07T01:38:41
vercel/next.js
8b60fbc718da27940b3721b1b606b877a2aaba76
0732f2f5383cb10bdba74bd17c61d0cc68e4c7f6
fix: webpack target should match node engines (#51852) The webpack `target` was outdated so I updated to match `engines`. See related https://github.com/vercel/next.js/pull/48941
[ { "path": "packages/next/src/build/webpack/config/blocks/base.ts", "patch": "@@ -14,9 +14,8 @@ export const base = curry(function base(\n : COMPILER_NAMES.server\n : COMPILER_NAMES.client\n \n- // @ts-ignore TODO webpack 5 typings\n config.target = !ctx.targetWeb\n- ? 'node12.22'\n+ ? 'no...
2023-06-26T22:15:44
huggingface/transformers
a8a22624f5598167eb82a3e0bc4228021e5440f6
f218ed21d997b515d99efea36a6d00e98d2aec51
[`Ernie 4.5`] Ernie VL models (#39585) * more attention cleanup * llama like text attention * generates different text but cos and sin tensors are always close - 1e-8 * another round of rope fixups * yea, gonna check tomorrow cant cheat w freqs for whatever reason * NOTE: last time where comp with old rope * rop...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1037,6 +1037,8 @@\n title: EdgeTamVideo\n - local: model_doc/emu3\n title: Emu3\n+ - local: model_doc/ernie4_5_vl_moe\n+ title: ernie4_5_vl_moe\n - local: model_doc/evolla\n title: Evolla\n - local: ...
2025-12-19T17:51:11
golang/go
aaa3d39f270d7b9957f34f3d2a68decba63beffe
d40e7bb1744507be421b80c19372b9411c9856b4
cmd/compile: include all entries in map literal hint size Currently we only include static entries in the hint for sizing the map when allocating a map for a map literal. Change that to include all entries. This will be an overallocation if the dynamic entries in the map have equal keys, but equal keys in map literal...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -202,7 +202,10 @@ type CompLitExpr struct {\n \tNtype Ntype\n \tList Nodes // initialized values\n \tPrealloc *Name\n-\tLen int64 // backing array length for OSLICELIT\n+\t// For OSLICELIT, Len is the backing array length.\n+\t// For ...
2022-02-06T17:43:39
rust-lang/rust
f02793c37f5c0698b84de1e6f72b2ea4bff7d50a
d24852f515c98fb39b2fda3b52968400d27c55c7
Fix std_example on x86
[ { "path": "example/std_example.rs", "patch": "@@ -230,51 +230,53 @@ unsafe fn test_crc32() {\n #[cfg(target_arch = \"x86_64\")]\n #[target_feature(enable = \"sse2\")]\n unsafe fn test_simd() {\n- assert!(is_x86_feature_detected!(\"sse2\"));\n-\n- let x = _mm_setzero_si128();\n- let y = _mm_set1_epi...
2025-07-04T09:47:01
nodejs/node
f428f476363c447af38e23ee20b7b971ba211266
7008d783c8d87dd2a6ff74b525ca0e0a1575cdc2
doc: change 'unix' to 'Unix' in ninja guide A recent PR converted all instances of 'unix' and 'UNIX' to 'Unix' in the API docs. This commit fixes one instance in the guides in preparation for a relevant lint rule. PR-URL: https://github.com/nodejs/node/pull/28619 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-...
[ { "path": "doc/guides/building-node-with-ninja.md", "patch": "@@ -2,7 +2,7 @@\n \n The purpose of this guide is to show how to build Node.js using [Ninja][], as\n doing so can be significantly quicker than using `make`. Please see\n-[Ninja's site][Ninja] for installation instructions (unix only).\n+[Ninja's...
2019-07-10T05:07:42
electron/electron
fd432ddbc988fd489fc283e479ea9406dbd132db
446da677b56f19ce3e480652551ce293c5c45b52
Fix the toDataUrl call in desktopCapturer
[ { "path": "lib/browser/desktop-capturer.js", "patch": "@@ -45,7 +45,7 @@ desktopCapturer.emit = function (event, name, sources) {\n results.push({\n id: source.id,\n name: source.name,\n- thumbnail: source.thumbnail.toDataUrl()\n+ thumbnail: source.thumbnail.toDataURL()\n...
2016-05-03T00:16:39
huggingface/transformers
f218ed21d997b515d99efea36a6d00e98d2aec51
d14d99eadf41fd6702522eaea2f17b346fc5800a
[`Generation`] Fix default overwrite for non-`None` defaults (#42958) * fix * test * fix 2 * should not happen but safety * fast "integration" test
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1795,6 +1795,20 @@ def _prepare_generation_config(\n generation_config.update(**self.generation_config.to_dict(), defaults_only=True)\n generation_config.update(**global_defaults, defaults_only=True)\n \n+ # Due to some v...
2025-12-19T17:36:52
vercel/next.js
0732f2f5383cb10bdba74bd17c61d0cc68e4c7f6
65f94baa834c3ca371ade70fc4f392c432e4c595
Update 10-router-handlers.mdx (#51850) Fixes a key bug for RequestCookie type
[ { "path": "docs/02-app/01-building-your-application/01-routing/10-router-handlers.mdx", "patch": "@@ -256,7 +256,7 @@ export async function GET(request: Request) {\n \n return new Response('Hello, Next.js!', {\n status: 200,\n- headers: { 'Set-Cookie': `token=${token}` },\n+ headers: { 'Set-Cook...
2023-06-26T21:25:39
golang/go
b0db2f00a0d540c3d3f5d14433da2e3e1ad41f9f
f4722d84499cc07fe8c8beb9b3154e59b7d21adf
cmd/compile: use AutogeneratedPos for method value wrapper We use AutogeneratedPos for most compiler-generated functions. But for method value wrappers we currently don't. Instead, we use the Pos for their (direct) declaration if there is one, otherwise not set it in methodValueWrapper, which will probably cause it to...
[ { "path": "src/cmd/compile/internal/walk/closure.go", "patch": "@@ -235,15 +235,7 @@ func methodValueWrapper(dot *ir.SelectorExpr) *ir.Name {\n \tsaveLineNo := base.Pos\n \tir.CurFunc = nil\n \n-\t// Set line number equal to the line number where the method is declared.\n-\tif pos := dot.Selection.Pos; pos....
2022-03-01T17:02:38
nodejs/node
e800f9d68a3d949cd2bcea741638cfa8e42f3461
fe4d53df512edcd046f002b1b78c47a687f0fad1
http2: override authority with options Make `options.host` and `options.port` take precedence over `authority.host` and `authority.port` respectively. PR-URL: https://github.com/nodejs/node/pull/28584 Fixes: https://github.com/nodejs/node/issues/28182 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -2795,7 +2795,7 @@ function connect(authority, options, listener) {\n } else {\n switch (protocol) {\n case 'http:':\n- socket = net.connect(port, host);\n+ socket = net.connect(options.port || port, options.host || host);\n ...
2019-07-07T05:59:44
electron/electron
76853801051be1dfbe94cb855567b5c901f9f12d
56cd57872cd5f6f7198b38201428845ae8b554ba
Remove crashed event forwarding
[ { "path": "lib/browser/api/browser-window.js", "patch": "@@ -43,11 +43,6 @@ BrowserWindow.prototype._init = function () {\n }\n })\n \n- // Forward the crashed event.\n- this.webContents.on('crashed', () => {\n- this.emit('crashed')\n- })\n-\n // Change window title to page title.\n this.web...
2016-05-02T23:52:59
huggingface/transformers
d14d99eadf41fd6702522eaea2f17b346fc5800a
d54d78f76f4fa5a38f01636c51c99f00e989cf12
Fix infinity in JSON serialized files (#42959) * Handle inifinity and NaNs in JSON serialization * Docs * Tests
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -16,6 +16,7 @@\n \n import copy\n import json\n+import math\n import os\n import warnings\n from typing import TYPE_CHECKING, Any, Optional, TypeVar, Union\n@@ -50,6 +51,9 @@\n # type hinting: specifying the type of config class that inherits...
2025-12-19T16:46:45
vercel/next.js
65f94baa834c3ca371ade70fc4f392c432e4c595
f1240b8efd24b03ce1b549d93d0de79dc0600b9b
feat: Introduce eslint rule for async client components (#51547) The [React Server Component RFC on promise support](https://github.com/acdlite/rfcs/blob/first-class-promises/text/0000-first-class-support-for-promises.md) indicates that [client components cannot be async functions](https://github.com/acdlite/rfcs/blob...
[ { "path": "docs/02-app/01-building-your-application/06-configuring/02-eslint.mdx", "patch": "@@ -88,6 +88,7 @@ Next.js provides an ESLint plugin, [`eslint-plugin-next`](https://www.npmjs.com/\n | <Check size={18} /> | [@next/next/inline-script-id](/docs/messages/inline-script-id) ...
2023-06-26T21:10:24
rust-lang/rust
98659a339dd7203e0f23871b327b9305940e0d61
837c5dd7de03aa97190593aef4e70d53e1bb574b
treat box patterns as deref patterns in THIR and usefulness analysis This removes special-casing of boxes from `rustc_pattern_analysis`, as a first step in replacing `box_patterns` with `deref_patterns`. Incidentally, it fixes a bug caused by box patterns being represented as structs rather than pointers, where `exhau...
[ { "path": "compiler/rustc_mir_build/src/thir/pattern/mod.rs", "patch": "@@ -319,9 +319,10 @@ impl<'a, 'tcx> PatCtxt<'a, 'tcx> {\n }\n PatKind::Deref { subpattern }\n }\n- hir::PatKind::Box(subpattern) => {\n- PatKind::Deref { subpattern: ...
2025-07-04T08:23:36
golang/go
f4722d84499cc07fe8c8beb9b3154e59b7d21adf
d6d2ebb7b8194eb20d95b84bae39f7a5837e9f72
test: workaround codegen bug in typeparam/mdempsky/13.go This test case is failing on the noopt builder, because it disables inlining. Evidently the explicit -gcflags flag in all of our generics tests was overriding the noopt builder's default mode. This CL restores a noop -gcflags to get the builder green again unti...
[ { "path": "test/typeparam/mdempsky/13.go", "patch": "@@ -1,4 +1,4 @@\n-// run\n+// run -gcflags=\"\"\n \n // Copyright 2021 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style", "additions": 1, "deletions": 1, "language": "Go" } ]
2022-03-01T20:21:04
nodejs/node
b851469855862f5fd1e5da38bbcd944c9987cd02
012ed4910ff66a349568ad7b7d3dcf3e894888c4
src: simplify DEP0062 logic This commit simplifies the DEP0062 error logic. Instead of looking for certain combinations of flags, just show an error for any usage of --debug or --debug-brk. PR-URL: https://github.com/nodejs/node/pull/28589 Fixes: https://github.com/nodejs/node/issues/28588 Reviewed-By: Ruben Bridgewa...
[ { "path": "src/node_options.cc", "patch": "@@ -34,17 +34,12 @@ void DebugOptions::CheckOptions(std::vector<std::string>* errors) {\n }\n #endif\n \n- if (deprecated_debug && !inspector_enabled) {\n+ if (deprecated_debug) {\n errors->push_back(\"[DEP0062]: `node --debug` and `node --debug-brk` \"\n- ...
2019-07-07T16:44:07
huggingface/transformers
bb9357ffe89252437286478c98cbd302708cb9f6
789226c1afe0f1cc9a7696684feddb9263ddc8d2
[loading] Really initialize on meta device for huge perf gains (#42941) * use meta device directly * style * move back non-persistent * fix * make helper * fix it * use native param dtype * make tensors buffers * style * fix * oupsi * add a test and fix * fix * create timm integration to reinit non-persis...
[ { "path": "src/transformers/integrations/accelerate.py", "patch": "@@ -21,7 +21,6 @@\n import os\n import re\n from collections import OrderedDict, defaultdict\n-from contextlib import contextmanager\n from typing import TYPE_CHECKING\n \n from safetensors import safe_open\n@@ -55,114 +54,6 @@\n logger = lo...
2025-12-19T13:43:50
vercel/next.js
6238f8a5c0ffabb7dfb35872c52c942ed7f148da
4b1a0165d33dea6a57600067ac3546973a4df829
performance: don't compile on hover on dev (#51830) An annoying issue that slows down compilation times in dev for Next is that we might trigger compilation of a page via hover on app. We do this because we want the same experience in production and dev and the prefetching is important for instantaneous loading s...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/navigate-reducer.ts", "patch": "@@ -211,13 +211,24 @@ export function navigateReducer(\n // If we don't have a prefetch value, we need to create one\n if (!prefetchValues) {\n const data = createRecordFromThenable(\n- fetchS...
2023-06-26T16:12:59
golang/go
d6d2ebb7b8194eb20d95b84bae39f7a5837e9f72
0fcb94895fa3efd9733e5ab66f5634f92cee9aa3
cmd/compile/internal/ir: remove unused -G=0 node types ir.PkgName was only used by the old -G=0 frontend for representing identifiers that refer to a package name. The new types2-based frontends directly resolve the qualified identifier to the respective object during IR construction. Similarly, most of the ir.*Type ...
[ { "path": "src/cmd/compile/internal/ir/copy.go", "patch": "@@ -79,7 +79,7 @@ func DeepCopy(pos src.XPos, n Node) Node {\n \tvar edit func(Node) Node\n \tedit = func(x Node) Node {\n \t\tswitch x.Op() {\n-\t\tcase OPACK, ONAME, ONONAME, OLITERAL, ONIL, OTYPE:\n+\t\tcase ONAME, ONONAME, OLITERAL, ONIL, OTYPE:...
2022-02-28T23:31:35
huggingface/transformers
789226c1afe0f1cc9a7696684feddb9263ddc8d2
a4d6229197f5be783eb5c951d4850d93110e652a
fix error: 'BlockMask' object has no attribute 'dtype' for lasr model (#42802) * fix error: 'BlockMask' object has no attribute 'dtype' for lasr model Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * fix error: 'BlockMask' object has no attribute 'dtype' for lasr model Signed-off-by: Liu, Kaixuan <kaixuan.liu@...
[ { "path": "src/transformers/models/lasr/modeling_lasr.py", "patch": "@@ -421,7 +421,8 @@ class LasrPreTrainedModel(PreTrainedModel):\n _no_split_modules = [\"LasrEncoderBlock\"]\n _supports_flat_attention_mask = True\n _supports_sdpa = True\n- _supports_flex_attn = True\n+ # padding is inc...
2025-12-19T11:17:01
vercel/next.js
e140e90e05f1bd8b4c7ba077c3e864d036d39c02
c8f3897fe2e332c7be0d652fc47fcd5fa83eefb4
[Docs] Fix usage of article "an" before a consonant sound (#51803) Because `<Carousel />` starts with the consonant, "C", the preceding article should be "a" not "an". Reference: [https://www.merriam-webster.com/words-at-play/is-it-a-or-an](https://www.merriam-webster.com/words-at-play/is-it-a-or-an)
[ { "path": "docs/01-getting-started/03-react-essentials.mdx", "patch": "@@ -425,7 +425,7 @@ Since Server Components are new, third-party packages in the ecosystem are just\n \n Today, many components from `npm` packages that use client-only features do not yet have the directive. These third-party components...
2023-06-26T15:34:31
golang/go
0fcb94895fa3efd9733e5ab66f5634f92cee9aa3
ad523565369af0005c59232e5d2dd7359073f0f4
cmd/compile/internal/typecheck: remove unused -G=0 code The typechecking code for dealing with dot imports and redeclaration errors can be removed, as these will now always be caught by types2 instead. Even when running the typecheck on internally constructed IR, we'll never introduce new imports or redeclare identifi...
[ { "path": "src/cmd/compile/internal/ir/func.go", "patch": "@@ -31,8 +31,7 @@ import (\n // using a special data structure passed in a register.\n //\n // A method declaration is represented like functions, except f.Sym\n-// will be the qualified method name (e.g., \"T.m\") and\n-// f.Func.Shortname is the b...
2022-02-28T23:07:56
huggingface/transformers
a4d6229197f5be783eb5c951d4850d93110e652a
cf0f071eb8d820d29bb90b19e28da7b3a2c2692b
fix concat order (#42946)
[ { "path": "src/transformers/models/pe_audio_video/modeling_pe_audio_video.py", "patch": "@@ -830,24 +830,32 @@ def forward(\n raise ValueError(\"At least two of input_ids, pixel_values_videos, or input_values must be provided\")\n \n if pixel_values_videos is None:\n- audio_ou...
2025-12-19T10:11:07
electron/electron
d627ead273dbaf651850985447f4bbac006457e8
16d4c436cbc731012d55b600a7b81afc85d9eb1a
Remove linter errors
[ { "path": "lib/browser/api/app.js", "patch": "@@ -1,7 +1,7 @@\n 'use strict'\n \n const electron = require('electron')\n-const {session, Menu} = electron\n+const {Menu} = electron\n const EventEmitter = require('events').EventEmitter\n \n const bindings = process.atomBinding('app')", "additions": 1, ...
2016-04-28T17:17:52
huggingface/transformers
cf0f071eb8d820d29bb90b19e28da7b3a2c2692b
b5eea3472f8db9d8a257bf5cb94d280c75bdc480
[kernels] Fix failling tests (#42953) fix
[ { "path": "tests/kernels/test_kernels.py", "patch": "@@ -44,6 +44,8 @@\n import kernels as kernels_pkg\n from kernels import Device, Mode, kernelize\n \n+ import transformers.integrations.hub_kernels as hub_kernels_pkg\n+\n \n @require_kernels\n @slow\n@@ -95,6 +97,7 @@ def test_forward(self):\n ...
2025-12-19T10:10:06
vercel/next.js
0dd0ef226cd88a66dca94aa5ce4e55abd1750f1a
70aad4a2b5b34fbbae006c477f96c54118da6381
Fix tree-shaking for metadata image functions on the Edge runtime (#51762) This PR fixes tree-shaking for the metadata image generation module (e.g. `opengraph-image.js` and other conventions) when the page has `runtime = 'edge'`. ## Details The first step of this fix is to change this from the loader: ```j...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -2272,6 +2272,12 @@ export default async function getBaseWebpackConfig(\n \"'server-only' cannot be imported from a Client Component module. It should only be used from a Server Component.\",\n },\n },\n+ ...
2023-06-26T11:44:29
electron/electron
a6cf7a10954c2615f6c6721a92ca21f4508efdc4
6f0471f6cb129edc758929079c66ca62ea9211b4
Remove deprecated crashReporter.start options
[ { "path": "lib/common/api/crash-reporter.js", "patch": "@@ -10,7 +10,7 @@ var CrashReporter = (function () {\n function CrashReporter () {}\n \n CrashReporter.prototype.start = function (options) {\n- var app, args, autoSubmit, companyName, deprecate, env, extra, ignoreSystemCrashHandler, start, subm...
2016-04-28T16:48:13
golang/go
d9fd9201ad214e8da769a9338b9d3a5f3e1bc980
d81464e1eb69faab8bcf04015575d8a491e882b5
cmd/compile: avoid generating unreachable branch for select cases Fixes #50823 Change-Id: I1c12e875b840eecadefb0d9e044ff2a268ccfbaa Reviewed-on: https://go-review.googlesource.com/c/go/+/380894 Reviewed-by: Keith Randall <khr@golang.org> Trust: Michael Knyszek <mknyszek@google.com>
[ { "path": "src/cmd/compile/internal/walk/select.go", "patch": "@@ -239,21 +239,28 @@ func walkSelectCases(cases []*ir.CommClause) []ir.Node {\n \n \t// dispatch cases\n \tdispatch := func(cond ir.Node, cas *ir.CommClause) {\n-\t\tcond = typecheck.Expr(cond)\n-\t\tcond = typecheck.DefaultLit(cond, nil)\n-\n-...
2022-01-26T12:23:11
nodejs/node
581bddc656ff822978bc0a23c61c2f0c40328ddb
db55c3cfc14775cda810efc58bb8d7c1b7c356c4
src: implement runtime option --no-node-snapshot for debugging PR-URL: https://github.com/nodejs/node/pull/28567 Refs: https://github.com/nodejs/node/issues/28558 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "src/node.cc", "patch": "@@ -1052,16 +1052,21 @@ int Start(int argc, char** argv) {\n \n {\n Isolate::CreateParams params;\n- // TODO(joyeecheung): collect external references and set it in\n- // params.external_references.\n- std::vector<intptr_t> external_references = {\n- ...
2019-07-05T18:43:27
huggingface/transformers
b5eea3472f8db9d8a257bf5cb94d280c75bdc480
3e4baf8e62c49796ab1a5b391dc81446d18152cd
[Quantization] CI green by end of year (#42951) * initial * initial commit * fix * fix * first fix * second fix * second fix * revert * fix
[ { "path": "src/transformers/integrations/compressed_tensors.py", "patch": "@@ -0,0 +1,48 @@\n+# coding=utf-8\n+# Copyright 2025 The HuggingFace Inc. team. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with th...
2025-12-19T09:21:36
vercel/next.js
70aad4a2b5b34fbbae006c477f96c54118da6381
cb7be1912f9544dd6fb97a929211b71dd0aece31
Fix `NODE_OPTIONS='--inspect'` not running expected (#51467) ## Fixing a bug Fixes #50489 Fixes #48767 Fixes #45697 ## What? When running `NODE_OPTIONS='--inspect' next dev` Then go to `http://localhost:3000/` Will display error message `WebSockets request was expected` like the following screenshot ![image](https:/...
[ { "path": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -7,7 +7,11 @@ import { isIPv6 } from 'net'\n import * as Log from '../../build/output/log'\n import { normalizeRepeatedSlashes } from '../../shared/lib/utils'\n import { initialEnv } from '@next/env'\n-import { genRouterWorkerExecArgv, g...
2023-06-25T22:31:09
golang/go
d81464e1eb69faab8bcf04015575d8a491e882b5
21998413ad82655fef1f31316db31e23e0684b21
cmd/compile: don't panic when printing package-less symbols Some of the SSA pseudo-variables like the memory variable don't have a package. Print those gracefully instead of printing a panic. Fixes #51108 Change-Id: I5c29029356e045c5cf70909d6e63666ebc58ffaa Reviewed-on: https://go-review.googlesource.com/c/go/+/3846...
[ { "path": "src/cmd/compile/internal/types/fmt.go", "patch": "@@ -157,6 +157,9 @@ func symfmt(b *bytes.Buffer, s *Sym, verb rune, mode fmtMode) {\n // symbols from the given package in the given mode.\n // If it returns the empty string, no qualification is needed.\n func pkgqual(pkg *Pkg, verb rune, mode fm...
2022-02-09T19:42:54
nodejs/node
db55c3cfc14775cda810efc58bb8d7c1b7c356c4
7e50bb3dce11988284c7ca9e2316c086aefac1e1
worker: fix passing multiple SharedArrayBuffers at once V8 has a handle scope below each `GetSharedArrayBufferId()` call, so using a `v8::Local` that outlives that handle scope to store references to `SharedArrayBuffer`s is invalid and may cause accidental de-duplication of passed `SharedArrayBuffer`s. Use a persiste...
[ { "path": "src/node_messaging.cc", "patch": "@@ -19,6 +19,7 @@ using v8::Exception;\n using v8::Function;\n using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n+using v8::Global;\n using v8::HandleScope;\n using v8::Isolate;\n using v8::Just;\n@@ -241,8 +242,10 @@ class SerializerDelegate : publi...
2019-07-06T20:09:52
huggingface/transformers
3e4baf8e62c49796ab1a5b391dc81446d18152cd
b93f2e3a9841f1318ef45d8ed213974fb7e163fc
Updated `backbone_config` docstrings and type annotations (#42927) * Updated backbone_config docstrings * Fix typos
[ { "path": "src/transformers/models/conditional_detr/configuration_conditional_detr.py", "patch": "@@ -37,7 +37,7 @@ class ConditionalDetrConfig(PreTrainedConfig):\n use_timm_backbone (`bool`, *optional*, defaults to `True`):\n Whether or not to use the `timm` library for the backbone. If...
2025-12-18T19:16:26
vercel/next.js
1b804c05297d9bba13934e509cd3ef3bdff3ebb6
6d0d5e313b5238dcc188cf86fd130dc933527605
fix: interception rewrites should support catch-all segments (#51787) ### What? Interception route rewrites are not properly parsing catch-all segments, which leads to "missing parameter name" errors when passed to `pathToRegexp`. ### Why? The existing `toPathToRegexpPath` function ignores `...` and keeps it as...
[ { "path": "packages/next/src/lib/generate-interception-routes-rewrites.ts", "patch": "@@ -9,7 +9,13 @@ import { Rewrite } from './load-custom-routes'\n \n // a function that converts normalised paths (e.g. /foo/[bar]/[baz]) to the format expected by pathToRegexp (e.g. /foo/:bar/:baz)\n function toPathToRege...
2023-06-25T21:02:10
electron/electron
0e8636cb2aaf02c963e226ee05785a01ff5044c4
f10ab71f60162acc690ad7f83b7f3d4953557254
Fix spacing on lines and url
[ { "path": "docs/api/app.md", "patch": "@@ -386,12 +386,12 @@ default protocol handler.\n \n ### `app.isDefaultProtocolClient(protocol)` _OS X_ _Windows_\n \n-* `protocol` String - The name of your protocol, without `://`. \n+* `protocol` String - The name of your protocol, without `://`.\n \n This method ch...
2016-05-06T16:56:07
huggingface/transformers
f2c6d2ad358f2190cffdfdf40c6c81e724a2b431
60634caac9202f42b747bbfb8fef64bb4c813bae
Load generation config from nested configs (#42922) * fix * add comment * add a test * wording * this is it!
[ { "path": "src/transformers/generation/configuration_utils.py", "patch": "@@ -1150,20 +1150,25 @@ def from_model_config(cls, model_config: Union[\"PreTrainedConfig\", dict]) -> \"Ge\n \n # Removes all `None` from the model config dict -- this lets the generation config defaults to take hold\n ...
2025-12-18T18:33:39
golang/go
9fe3676bc7de9f648c2e3ce6d4f1aa395b92cefd
f9285818b6890b896f43a38449e35744d97c817a
all: fix typos Change-Id: I93ff3d33a5db130dd57a9545456f2961fc3f668b GitHub-Last-Rev: f95fafc04937a99f82cb992aabb7bac602033d8e GitHub-Pull-Request: golang/go#51394 Reviewed-on: https://go-review.googlesource.com/c/go/+/388314 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> ...
[ { "path": "doc/go1.18.html", "patch": "@@ -137,7 +137,7 @@ <h3 id=\"generics\">Generics</h3>\n </li>\n <li><!-- https://golang.org/issue/51183 -->\n The Go compiler currently only supports calling a method <code>m</code> on a value\n- <code>x</code> of type parameter type <code>P</code> i...
2022-02-28T12:17:25
nodejs/node
30911157f6b186628ffc527b89b84eb10becda84
e04ee9b37a73ca86a91668f32327f16b3a04c236
doc: clarify http2 server.close() behavior This commit is an attempt to clarify the behavior of HTTP2's server.close() method. Specifically, this makes it more clear that the server stops allowing new sessions although the callback may not be invoked for some time due to previously existing sessions. PR-URL: https://...
[ { "path": "doc/api/http2.md", "patch": "@@ -1749,11 +1749,14 @@ added: v8.4.0\n -->\n * `callback` {Function}\n \n-Stops the server from accepting new connections. See [`net.Server.close()`][].\n+Stops the server from establishing new sessions. This does not prevent new\n+request streams from being created ...
2019-07-06T15:08:30
huggingface/transformers
60634caac9202f42b747bbfb8fef64bb4c813bae
b62e5b3e4060c07b0e595f670135d85bb51673fe
🚨 Fix ConvNeXt image processor default interpolation to BICUBIC (#42934) * Fix ConvNeXt image processor default interpolation to BICUBIC The original ConvNeXt implementation uses BICUBIC interpolation for image preprocessing, but the HuggingFace image processor defaulted to BILINEAR. This change aligns the default w...
[ { "path": "src/transformers/models/convnext/image_processing_convnext.py", "patch": "@@ -78,7 +78,7 @@ class ConvNextImageProcessor(BaseImageProcessor):\n crop_pct (`float` *optional*, defaults to 224 / 256):\n Percentage of the image to crop. Only has an effect if `do_resize` is `True` ...
2025-12-18T18:03:54
electron/electron
45b3bd3a22848f9913fd80c772b9673afb52f344
636570306aa41786decf2b9c7675495cb5d67d96
ipcRenderer: fix crash with multiple listeners to sync message
[ { "path": "atom/browser/api/event.cc", "patch": "@@ -45,7 +45,10 @@ bool Event::SendReply(const base::string16& json) {\n return false;\n \n AtomViewHostMsg_Message_Sync::WriteReplyParams(message_, json);\n- return sender_->Send(message_);\n+ bool success = sender_->Send(message_);\n+ message_ = NU...
2016-05-05T21:22:59
vercel/next.js
6d0d5e313b5238dcc188cf86fd130dc933527605
72fdb063eec21813d1c27ce2605ed38519aa68fa
docs(deploy): fix GitHub Actions cache key (#51789) The specified default cache key `**.[jt]s` does not consider any files in folders, while `**/*.[jt]s` recursively includes all files. The same goes for jsx/tsx. Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/03-pages/01-building-your-application/07-deploying/04-ci-build-caching.mdx", "patch": "@@ -81,7 +81,7 @@ with:\n ~/.npm\n ${{ github.workspace }}/.next/cache\n # Generate a new cache whenever packages or source files change.\n- key: ${{ runner.os }}-nextjs-${{ hashFiles('**/packag...
2023-06-25T20:28:02
golang/go
f9285818b6890b896f43a38449e35744d97c817a
eb8198d2f67477517e7a735faa49dfd7c0fb3622
go/types, types2: fix string to type parameter conversions Converting an untyped constant to a type parameter results in a non-constant value; but the constant must still be representable by all specific types of the type parameter. Adjust the special handling for constant-to-type parameter conversions to also includ...
[ { "path": "src/cmd/compile/internal/types2/conversions.go", "patch": "@@ -49,11 +49,14 @@ func (check *Checker) conversion(x *operand, T Type) {\n \t\t// have specific types, constant x cannot be\n \t\t// converted.\n \t\tok = T.(*TypeParam).underIs(func(u Type) bool {\n-\t\t\t// t is nil if there are no sp...
2022-02-28T02:13:23
nodejs/node
36fdf1aa6c87ccfaebabb8f9c8004baab0549b0b
7cf6f9e964aa00772965391c23acda6d71972a9a
src: allow fatal exceptions to be enhanced This commit allows fatal exceptions to be enhanced so that exceptions thrown from an unhandledException handler have the stack attached properly. PR-URL: https://github.com/nodejs/node/pull/28562 Fixes: https://github.com/nodejs/node/issues/28550 Reviewed-By: Joyee Cheung <j...
[ { "path": "src/node_errors.cc", "patch": "@@ -448,10 +448,11 @@ TryCatchScope::~TryCatchScope() {\n HandleScope scope(env_->isolate());\n Local<v8::Value> exception = Exception();\n Local<v8::Message> message = Message();\n+ EnhanceFatalException enhance = CanContinue() ?\n+ EnhanceFat...
2019-07-05T15:45:45
huggingface/transformers
b62e5b3e4060c07b0e595f670135d85bb51673fe
4dc60fd3ff4d3bfae8aa20786f3960728cdb2c4f
fix(tvp): add missing type_vocab_size parameter to TvpConfig (#42928) Fixes #42925 The `type_vocab_size` parameter was missing from TvpConfig, causing an AttributeError when instantiating TvpModel. This adds the parameter with a default value of 2, which matches all TVP models on Hugging Face Hub. Co-authored-by: Cl...
[ { "path": "src/transformers/models/tvp/configuration_tvp.py", "patch": "@@ -68,6 +68,8 @@ class TvpConfig(PreTrainedConfig):\n vocab_size (`int`, *optional*, defaults to 30522):\n Vocabulary size of the Tvp text model. Defines the number of different tokens that can be represented by\n ...
2025-12-18T17:55:31
vercel/next.js
869aeb40ce3d8003ed43eab9257e47b35d68645d
5e36c349925ddf71ab48ef44e3d713ddc5afc883
Fix HMR for missing dependencies in next-app-loader (#51778) As noted in the comments, it's necessary to always add optional dependencies as missing dependencies even if they exist because they might be deleted and re-added. Closes #51763.
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -522,11 +522,11 @@ const nextAppLoader: AppLoader = async function nextAppLoader() {\n !result &&\n (await fileExists(absolutePathWithExtension, FileType.File))\n ) {\n- // Ensures we call `addM...
2023-06-25T19:26:09
electron/electron
7268f434b254e6646b735a50ca770807cd5fc2bb
3f2a25d07cbed3d86e58d01e86b0e18165b0fa0d
Fix code styling problems
[ { "path": "atom/browser/api/atom_api_app.cc", "patch": "@@ -250,11 +250,14 @@ void App::OnFinishLaunching() {\n Emit(\"ready\");\n }\n \n-void App::OnContinueUserActivity(bool* prevent_default,\n- const std::string& type,\n- const std::map<std::string, std::string>& user_info) {\n+#if defined(OS_MACOSX)...
2016-05-05T03:26:23
golang/go
b33592dcfd2c8cf1e574531ecb49af7755864e82
57e3809884dd695d484acaefba8ded720c5a02c1
spec: the -'s possessive suffix is English, not code Change-Id: I2debcf926ef116c632c7366646d37de8686b7c9e Reviewed-on: https://go-review.googlesource.com/c/go/+/388174 Reviewed-by: Robert Griesemer <gri@golang.org> Trust: Matthew Dempsky <mdempsky@google.com>
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification - Go 1.18 Draft\",\n-\t\"Subtitle\": \"Version of Feb 14, 2022\",\n+\t\"Subtitle\": \"Version of Feb 28, 2022\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2008,7 +2008,7 @@ <h3 id=\"As...
2022-02-27T05:08:52
nodejs/node
7cf6f9e964aa00772965391c23acda6d71972a9a
327c6734cba332c2ac19cf0cdedaca1b918e7010
process: refactor unhandledRejection logic This commit prevents a deprecation warning from being emitted if the unhandledRejection event was actually handled. PR-URL: https://github.com/nodejs/node/pull/28540 Fixes: https://github.com/nodejs/node/issues/28539 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-B...
[ { "path": "lib/internal/process/promises.js", "patch": "@@ -199,10 +199,12 @@ function processPromiseRejections() {\n }\n case kDefaultUnhandledRejections: {\n const handled = process.emit('unhandledRejection', reason, promise);\n- if (!handled) emitUnhandledRejectionWarning(uid, ...
2019-07-04T20:20:20
huggingface/transformers
af91c0ba849b471a4967931092a187ac0b1125e1
537c2e3d7e4e2df84e0f3c1148b85fffcf684110
Fp8 dq (#42926) * fix * maybe more clearer ? * style * style
[ { "path": "src/transformers/quantizers/quantizer_finegrained_fp8.py", "patch": "@@ -33,7 +33,7 @@ def validate_environment(self, *args, **kwargs):\n return\n \n if not torch.cuda.is_available() and not is_torch_xpu_available():\n- if self.pre_quantized and not self.quantizatio...
2025-12-18T16:54:34
vercel/next.js
5e36c349925ddf71ab48ef44e3d713ddc5afc883
881512baf149e30f2be58d859e6f9375b6aa0d16
fix: typo into 03-css-in-js.mdx page (#51761) ### Improving Documentation Just fixing a typo into "alphabetical" word - Run `pnpm prettier-fix` to fix formatting issues before opening the PR. - Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs.org/docs/community/...
[ { "path": "docs/02-app/01-building-your-application/04-styling/03-css-in-js.mdx", "patch": "@@ -9,7 +9,7 @@ description: Use CSS-in-JS libraries with Next.js\n >\n > We're working with the React team on upstream APIs to handle CSS and JavaScript assets with support for React Server Components and streaming ...
2023-06-24T22:08:49
golang/go
57e3809884dd695d484acaefba8ded720c5a02c1
06a43e4ab62bc5f8353e1c6ed5267d51ce2b483c
runtime: avoid cgo_unsafe_args for syscall.syscall functions on darwin/arm64 Currently, syscall.syscall-like functions are defined as cgo_unsafe_args, which makes them ABI0, as it takes the address of the argument area based on ABI0 layout. Those functions are linkname'd to the syscall package. When compiling the sysc...
[ { "path": "src/runtime/sys_darwin.go", "patch": "@@ -17,85 +17,89 @@ import (\n \n //go:linkname syscall_syscall syscall.syscall\n //go:nosplit\n-//go:cgo_unsafe_args\n func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2, err uintptr) {\n+\targs := struct{ fn, a1, a2, a3, r1, r2, err uintptr }{fn, a1, a2, ...
2022-02-18T18:09:54
nodejs/node
b06ce0bf8d6f50dd2666a3a0d117ccd58c76c694
17862fca5f6acfad5941ec651769493310a5c571
src: block SIGTTOU before calling tcsetattr() We might be a background job that doesn't own the TTY so block SIGTTOU before making the tcsetattr() call, otherwise that signal suspends us. This is a better fix than PR #28490 for issue #28479. Fixes: https://github.com/nodejs/node/issues/28530 Fixes: https://github.co...
[ { "path": "src/node.cc", "patch": "@@ -688,14 +688,20 @@ void ResetStdio() {\n }\n \n if (s.isatty) {\n+ sigset_t sa;\n int err;\n+\n+ // We might be a background job that doesn't own the TTY so block SIGTTOU\n+ // before making the tcsetattr() call, otherwise that signal suspen...
2019-07-04T10:11:00
vercel/next.js
fb10b2cfb16afeab13da0bea266df4d4b8c04b56
96d540c768330e3a53f14e954ef9f2a70e68b163
chore(examples): relax pinned versions to fix npm install fail due to peer deps issue (#51636) Currently `npm install` fails with ``` npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: undefined@undefined npm ERR! Found: react@18.2.0 npm ERR! node_module...
[ { "path": "examples/with-redux-wrapper/package.json", "patch": "@@ -10,9 +10,9 @@\n \"next-redux-wrapper\": \"^7.0.2\",\n \"react\": \"^18.2.0\",\n \"react-dom\": \"^18.2.0\",\n- \"react-redux\": \"7.1.3\",\n- \"redux\": \"4.0.5\",\n- \"redux-devtools-extension\": \"2.13.8\",\n- \"re...
2023-06-24T07:12:38
electron/electron
2b079588bbff3c2aaa231bdea61a77262cda7870
6fba72a40cbfd0bdb98c99be3384cd75aeb2b228
Fix small mistakes in CONTRIBUTING-ko.md
[ { "path": "CONTRIBUTING-ko.md", "patch": "@@ -34,7 +34,7 @@\n 준수\n * [문서 스타일 가이드](/docs-translations/ko-KR/styleguide.md)에 따라 문서를\n [Markdown](https://daringfireball.net/projects/markdown) 형식으로 작성.\n-* 짧은, 현재 시제 커밋 메시지 사용. [커밋 메시지 스타일 가이드](#Git-커밋-메시지)를\n+* 짧은, 현재 시제 커밋 메시지 사용. [커밋 메시지 스타일 가이드](#git-커밋-메시지)...
2016-05-04T15:02:53
huggingface/transformers
537c2e3d7e4e2df84e0f3c1148b85fffcf684110
728f34c3c31cde2b6015b8368fa5c1a71eaec8a6
Add buffers to `_init_weights` for ALL models (#42309) * start * all until clvp * all until gpt2 * until lfm2_moe * all until seamless * finally all first batch * style * Copied from * apply modulars * small fixes * add test * name * fix * more * fix typos * more * fix * typo * fix * revert annoying...
[ { "path": "src/transformers/modeling_rope_utils.py", "patch": "@@ -255,7 +255,7 @@ def _compute_dynamic_ntk_parameters(\n \n def _compute_yarn_parameters(\n config: \"PreTrainedConfig\",\n- device: \"torch.device\",\n+ device: Optional[\"torch.device\"] = None,\n seq_len: Optional[int] = None,...
2025-12-18T15:11:57
golang/go
06a43e4ab62bc5f8353e1c6ed5267d51ce2b483c
0907d57abf34e1d11debef2ea7bb4d7b2c11f51e
cmd/compile: fix case for structural types where we should be looking at typeparams In getInstantiation, we were not computing tparams correctly for the case where the receiver of a method was a fully-instantiated type. This wasn't affecting later parts of the function, since method instantiations of fully-instantiate...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -641,6 +641,11 @@ func (g *genInst) getInstantiation(nameNode *ir.Name, shapes []*types.Type, isMe\n \t\t// over any pointer)\n \t\trecvType := nameNode.Type().Recv().Type\n \t\trecvType = deref(recvType)\n+\t\tif recvType.IsFullyInstantiat...
2022-02-25T22:56:04
nodejs/node
d0e3c2346ffeabc7447bf4efcba28a2ed4d6d3f8
8850ef276ad215b7449cee713bc6096d067c33f7
doc: fix link in build instructions The right one is #prerequisites. PR-URL: https://github.com/nodejs/node/pull/28572 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -29,7 +29,7 @@ file a new issue.\n * [Building the documentation](#building-the-documentation)\n * [Building a debug build](#building-a-debug-build)\n * [Windows](#windows)\n- * [Prerequisites](#prerequisites-1)\n+ * [Prerequisites](#prerequisites)\n ...
2019-07-06T05:35:56
vercel/next.js
2c5cf40377393fcb9c744c49daca7239f89e6b9d
74a5d2068aebfc97a96be2d97c6ab941e05eb7d8
Fix not-found handling in turbopack (#51735) Adds the overlay changes from https://github.com/vercel/next.js/pull/51637 Fixes: https://github.com/vercel/next.js/actions/runs/5362063391/jobs/9728782834
[ { "path": "packages/next-swc/crates/next-core/js/src/dev/hot-reloader.tsx", "patch": "@@ -5,12 +5,22 @@ import { useRouter, usePathname } from 'next/dist/client/components/navigation'\n import { useEffect } from 'react'\n import { subscribeToUpdate } from '@vercel/turbopack-ecmascript-runtime/dev/client/hmr...
2023-06-24T04:35:38
electron/electron
28d12166fd0323875f0f591d6fcb484f615848b2
7074789011541b72ef838107baa2a1d68ef9cd76
Fix margin of elements in flex
[ { "path": "default_app/index.html", "patch": "@@ -17,6 +17,10 @@\n flex-direction: column;\n }\n \n+ .container > * {\n+ margin: 15px 0 0 0;\n+ }\n+\n .header {\n background-color: #2f3241;\n border-bottom: 1px solid #1a1b23;", "additions": 4, "deletions": 0, ...
2016-05-04T08:50:45
huggingface/transformers
728f34c3c31cde2b6015b8368fa5c1a71eaec8a6
dd8057afa6b2dcc8f3d7c657f612bb0e494c43c5
rewrite _process_parameter_type in auto_docstring.py to improve usability (#42431) * rewrite to improve its usability * rewrite to improve its usability * Clarify comment about function parameter elements * Update implementation of _process_parameter_type * rewrite to improve its usability * Clarify comment about...
[ { "path": "src/transformers/utils/auto_docstring.py", "patch": "@@ -17,7 +17,8 @@\n import os\n import textwrap\n from pathlib import Path\n-from typing import get_args\n+from types import UnionType\n+from typing import Union, get_args, get_origin\n \n import regex as re\n \n@@ -1280,38 +1281,46 @@ def _get...
2025-12-18T14:54:22
nodejs/node
8850ef276ad215b7449cee713bc6096d067c33f7
04cf20261f241530d00bf2e4f8153d55102429d2
doc: add description for the listener argument Clarify that `listener` is registered as a one-time listener of the `'connect'` event. PR-URL: https://github.com/nodejs/node/pull/28500 Fixes: https://github.com/nodejs/node/issues/28217 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Trivikram Kamat <trivikr.d...
[ { "path": "doc/api/http2.md", "patch": "@@ -2208,7 +2208,8 @@ changes:\n instance passed to `connect` and the `options` object, and returns any\n [`Duplex`][] stream that is to be used as the connection for this session.\n * ...: Any [`net.connect()`][] or [`tls.connect()`][] options can be provid...
2019-07-01T16:42:14
golang/go
0907d57abf34e1d11debef2ea7bb4d7b2c11f51e
9c4a8620c802fbb03545e401c41f11d622b84b42
cmd/compile: emit types of constants which are instantiated generic types Normally types of constants are emitted when the type is defined (an ODCLTYPE). However, the types of constants where the type is an instantiated generic type made inside the constant declaration, do not normally get emitted. But the DWARF proce...
[ { "path": "src/cmd/compile/internal/gc/obj.go", "patch": "@@ -217,6 +217,10 @@ func dumpGlobalConst(n ir.Node) {\n \t\tif ir.ConstOverflow(v, t) {\n \t\t\treturn\n \t\t}\n+\t} else {\n+\t\t// If the type of the constant is an instantiated generic, we need to emit\n+\t\t// that type so the linker knows about...
2022-02-26T00:06:53
vercel/next.js
fa519f63b7f1a4131979941e593f3a0b67c30245
1033a03d86f0431636c5ed1f7e280e44944c8288
fix some issues on examples/app-dir-i18n-routing (#51576)
[ { "path": "examples/app-dir-i18n-routing/middleware.ts", "patch": "@@ -15,7 +15,11 @@ function getLocale(request: NextRequest): string | undefined {\n let languages = new Negotiator({ headers: negotiatorHeaders }).languages()\n // @ts-ignore locales are readonly\n const locales: string[] = i18n.locale...
2023-06-24T00:29:41
huggingface/transformers
dd8057afa6b2dcc8f3d7c657f612bb0e494c43c5
0a8465420eecbac1c6d7dd9f45c08dd96b8c5027
Update `param_element_size` (#42818) * clean * int * check * better * working * remove unrelated stuff * rm print * torchao * Fix * added * fix quanto * revert * reverted * rm comment * fix
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4056,6 +4056,7 @@ def _load_pretrained_model(\n \n # Model's definition arriving here is final (TP hooks added, quantized layers replaces)\n expected_keys = list(model.state_dict().keys())\n+\n if logger.level >= logging.W...
2025-12-18T14:26:44
electron/electron
540076e9d55fcb2cd80368d971d1e8723c6167b8
8957ba52220abef7d88150d30d72fc6178b7e5f7
Fix code styling issue
[ { "path": "atom/browser/auto_updater_mac.mm", "patch": "@@ -90,13 +90,11 @@\n delegate->OnUpdateNotAvailable();\n }\n } error:^(NSError *error) {\n- NSString *failureString;\n- if(error.localizedFailureReason) {\n- failureString = [NSString stringWithFormat:@\"...
2016-05-04T08:12:10
nodejs/node
c25cccf1302e779cebbefc9948f2fae700c5296f
1c989c9f546cc811ebbd1e930a9a57caf4fc80e0
test: check getReport when error with one line stack PR-URL: https://github.com/nodejs/node/pull/28433 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <...
[ { "path": "test/report/test-report-getreport.js", "patch": "@@ -21,6 +21,14 @@ common.expectWarning('ExperimentalWarning',\n assert.deepStrictEqual(helper.findReports(process.pid, process.cwd()), []);\n }\n \n+{\n+ // Test with an error with one line stack\n+ const error = new Error();\n+ error.stack =...
2019-06-26T14:53:24
golang/go
a064a4f29a97a4fc7398d1ac9d7c53c5ba0bc646
286e3e61aa9310bb8fd333adac6d06cfb2fcc95b
cmd/compile: ensure dictionary assignment statements are defining statements The problem in 51355 is that escape analysis decided that the dictionary variable was captured by reference instead of by value. We want dictionaries to always be captured by value. Escape analysis was confused because it saw what it thought...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/logopt\"\n+\t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n )\n \n@@ -243,6 +244,9 @@ func (b *bat...
2022-02-25T23:10:24
huggingface/transformers
0a8465420eecbac1c6d7dd9f45c08dd96b8c5027
04e78e675ae91cd7b7396b78ba94ae637d37023a
[Tests] Fix CompressedTensors tests (#42935) refactor tests Signed-off-by: Kyle Sayers <kylesayrs@gmail.com> Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "tests/quantization/compressed_tensors_integration/test_compressed_tensors.py", "patch": "@@ -1,15 +1,8 @@\n import gc\n import unittest\n-from unittest import skip\n \n from transformers import AutoModelForCausalLM, AutoTokenizer, CompressedTensorsConfig\n-from transformers.testing_utils import (...
2025-12-18T12:30:37
vercel/next.js
385e6fdbcf6317424e0eec010ff6ed79d26f1173
c98d2b927d83f3511fe9a2b9246fcdb51d02a446
Fix Typo in Optimizing - Open Telemetry docs (#51729) ### What this PR does This PR fixes a minor typo on the Vercel Open Telemetry Docs. `It's not extensible and you should configure OpenTelemetry manually (if) you need to customize your setup.` That is all :) Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/02-app/01-building-your-application/05-optimizing/08-open-telemetry.mdx", "patch": "@@ -25,7 +25,7 @@ When you enable OpenTelemetry we will automatically wrap all your code like `get\n \n OpenTelemetry is extensible but setting it up properly can be quite verbose.\n That's why we prepared a ...
2023-06-23T23:33:34
nodejs/node
1c989c9f546cc811ebbd1e930a9a57caf4fc80e0
7fa9abf6f2fc17fa524bde7d1f9b7f539efff994
test: check writeReport when error with one line stack PR-URL: https://github.com/nodejs/node/pull/28433 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott...
[ { "path": "test/report/test-report-writereport.js", "patch": "@@ -37,6 +37,14 @@ function validate() {\n validate();\n }\n \n+{\n+ // Test with an error with one line stack\n+ const error = new Error();\n+ error.stack = 'only one line';\n+ process.report.writeReport(error);\n+ validate();\n+}\n+\n {\...
2019-06-26T14:46:36
golang/go
286e3e61aa9310bb8fd333adac6d06cfb2fcc95b
01e522a97384d2c81c90490654c2749bfe05045e
go/types, types2: report an error for x.sel where x is a built-in In case of a selector expression x.sel where x is a built-in we didn't report an error because the type of built-ins is invalid and we surpress errors on operands of invalid types, assuming that an error has been reported before. Add a corresponding ch...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -525,7 +525,11 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr) {\n \t}\n \n \tcheck.exprOrType(x, e.X, false)\n-\tif x.mode == invalid {\n+\tswitch x.mode {\n+\tcase builtin:\n+\t\tcheck.errorf(e.Pos(), \"cannot select o...
2022-02-25T19:10:44
vercel/next.js
c98d2b927d83f3511fe9a2b9246fcdb51d02a446
a9870df101641ea8d715852b3b566d214a9c5f3c
fix: handle 404 errors in HotReload client (#51637) ### What? In dev mode, routing to a 404 page will result in an infinite redirect cycle. This PR is an attempt to bring back similar functionality currently implemented in the [pages router.](https://github.com/vercel/next.js/blob/canary/packages/next/src/client/d...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -434,18 +434,14 @@ function Router({\n return findHeadInCache(cache, tree[1])\n }, [cache, tree])\n \n+ const notFoundProps = { notFound, notFoundStyles, asNotFound }\n+\n const content = (\n- <NotFoundBoundary\n- ...
2023-06-23T23:30:48
electron/electron
d63d570327e7e0ee55c358a27b29a899a6e6708e
ebd8d30f25c3c3999c3a58de71934cd9c22e03c2
:memo: Fix typo [ci skip]
[ { "path": "docs-translations/ko-KR/tutorial/testing-on-headless-ci.md", "patch": "@@ -1,4 +1,4 @@\n-# Headless CI 시스템에서 테스팅하기 (Travis, Jenkins) (Travis CI, Jenkins)\n+# Headless CI 시스템에서 테스팅하기 (Travis, Jenkins)\n \n Chromium을 기반으로 한 Electron은 작업을 위해 디스플레이 드라이버가 필요합니다.\n 만약 Chromium이 디스플레이 드라이버를 찾기 못한다면, Ele...
2016-05-04T00:46:14
huggingface/transformers
d7dd443a4cdbdc39b8d45c98f3edd2c0840bdbcb
d3d4b6299dbf1882a76ef82985a1506c889d762f
[Quantization] Misc tests fixes (#42940) * initial commit * update
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -142,12 +142,12 @@ def _build_checkpoint_conversion_mapping():\n if hasattr(torch.nn.utils.parametrizations, \"weight_norm\"):\n mapping[\"legacy\"] += [\n WeightRenaming(\n- source_patterns=\"weight_g\",...
2025-12-18T10:57:05
nodejs/node
6aafee1771ae266c8f2a6d25d92f7cc3dd417b3b
ba565a37349e81c9d2402b0c8ef05ab39dca8968
test: generate des rsa_cert.pfx My node distribution uses a shared openssl library with some ciphers disabled, including RC2. These tests (which use `rsa_cert.pfx`) fail with `unknown cipher`: - parallel/test-crypto-binary-default - parallel/test-https-pfx - parallel/test-crypto The other fixture .pfx's use the `...
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -631,7 +631,7 @@ rsa_cert.crt: rsa_private.pem\n \topenssl req -new -x509 -days 99999 -key rsa_private.pem -config rsa_cert.cnf -out rsa_cert.crt\n \n rsa_cert.pfx: rsa_cert.crt\n-\topenssl pkcs12 -export -passout 'pass:sample' -inkey rsa_private.pem -in...
2019-06-28T18:11:39
golang/go
01e522a97384d2c81c90490654c2749bfe05045e
26999cfd84dfa11f8e87153dc91a9f67070f6916
go/types,types2: revert documentation for Type.Underlying In the dev.typeparams branch, the documentation for Type.Underlying was updated with commentary about forwarding chains. This aspect of Underlying should not be exposed to the user. Revert to the documentation of Go 1.16. Fixes #51036 Change-Id: I4b73d3908a88...
[ { "path": "src/cmd/compile/internal/types2/type.go", "patch": "@@ -7,9 +7,7 @@ package types2\n // A Type represents a type of Go.\n // All types implement the Type interface.\n type Type interface {\n-\t// Underlying returns the underlying type of a type\n-\t// w/o following forwarding chains. Only used by...
2022-02-25T23:20:12
vercel/next.js
a9870df101641ea8d715852b3b566d214a9c5f3c
916e21f9138abe6a9805539a47944d5c06805381
feat: add body parser limit for server actions (#51104) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Con...
[ { "path": "packages/next/src/build/entries.ts", "patch": "@@ -377,6 +377,7 @@ export function getEdgeServerEntry(opts: {\n middlewareConfig: Buffer.from(\n JSON.stringify(opts.middlewareConfig || {})\n ).toString('base64'),\n+ serverActionsSizeLimit: opts.config.experimental.serverActionsSi...
2023-06-23T23:24:18
electron/electron
ebd8d30f25c3c3999c3a58de71934cd9c22e03c2
0e7de568a2578707bce69d81f187709cfb0b79d0
:memo: Small fixes [ci skip]
[ { "path": "docs-translations/ko-KR/README.md", "patch": "@@ -6,10 +6,9 @@ URL에 포함되어 있습니다. 만약 그렇지 않다면, 아마 현재 보\n 수 있습니다. 또한 GitHub 인터페이스의 \"Switch branches/tags\" 드롭다운 메뉴에서도\n 사용 중인 Electron 버전으로 변경할 수 있습니다.\n \n-**역주:** 한국어 번역 문서는 `atom.io`에 반영되어 있지 않습니다. 따라서 번역 문서는\n-GitHub 프로젝트내에서만 볼 수 있으며 `master` 브랜치의 문...
2016-05-03T17:55:10
rust-lang/rust
efa26e1d64c374fa9960e5bf8709937fc251816b
b5a2e7d08057bc04c823ab1611e60cccb2d2cce4
fix: resolve the unsoundness add a new trait `InternalCx`, which defines the methods that are fine to call from `RustcInternal`. `RustcInternal::internal()` then takes a `impl InternalCx<'tcx>` instead of `TyCtxt<'tcx>`. make `tcx` in `SmirCtxt` public, since we need to pass it to `RustcInternal::internal()` in `Smir...
[ { "path": "compiler/rustc_smir/src/rustc_internal/mod.rs", "patch": "@@ -43,11 +43,14 @@ pub fn stable<'tcx, S: Stable<'tcx>>(item: S) -> S::T {\n /// # Panics\n ///\n /// This function will panic if StableMIR has not been properly initialized.\n-pub fn internal<'tcx, S>(item: S) -> S::T<'tcx>\n+pub fn inte...
2025-06-09T08:13:27
huggingface/transformers
a81e04a92371a6b1ba80018f012b2467bab5d61f
bdaddb6f5876701e75a12c0a2b86a4faa394d84b
🚨 Generation config defaults are now `None` (#42702) * this way betetr maybe? * delete legacy from bart and mvp * import not found * fix some tests * fix more tests * revert smth to run tests again * i though I fixed it already, but there were more models * commit and check tests, clean-up later * assisted de...
[ { "path": "examples/pytorch/continuous_batching.py", "patch": "@@ -45,9 +45,7 @@ def generate_without_cb(\n key = \" \".join(map(str, input_ids)) # This will be used to identify the output after batched generation\n input_ids = torch.tensor([input_ids]).to(\"cuda\")\n attention_mask...
2025-12-18T10:20:23
nodejs/node
ba565a37349e81c9d2402b0c8ef05ab39dca8968
fd23c122631a83ea9b4cf069fb78dfb212ecb742
http: improve parser error messages Include the library-provided reason in the Error’s `message`. Fixes: https://github.com/nodejs/node/issues/28468 PR-URL: https://github.com/nodejs/node/pull/28487 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Revi...
[ { "path": "lib/_http_client.js", "patch": "@@ -33,6 +33,7 @@ const {\n httpSocketSetup,\n parsers,\n HTTPParser,\n+ prepareError,\n } = require('_http_common');\n const { OutgoingMessage } = require('_http_outgoing');\n const Agent = require('_http_agent');\n@@ -451,6 +452,7 @@ function socketOnData(...
2019-06-30T22:34:55
golang/go
26999cfd84dfa11f8e87153dc91a9f67070f6916
7c694fbad1ed6f2f825fd09cf7a86da3be549cea
runtime/internal/atomic: set SP delta correctly for 64-bit atomic functions on ARM 64-bit atomic functions on ARM have the following structure: - check if the address is 64-bit aligned, if not, prepare a frame and call panicUnaligned - tail call armXXX or goXXX depending on GOARM The alignment check calls panicUnal...
[ { "path": "src/runtime/internal/atomic/atomic_arm.s", "patch": "@@ -229,16 +229,22 @@ store64loop:\n // functions tail-call into the appropriate implementation, which\n // means they must not open a frame. Hence, when they go down the\n // panic path, at that point they push the LR to create a real frame\n-...
2022-02-25T04:31:53
vercel/next.js
fda1ecc31e3a76a488330acc84241a6a9470d6a5
c3c6214c09ab1fbcaaa7fe74e909f36eab93cbb7
Add url to patched fetch response (#51665) ### What? Add `url` property to response returned from patched fetch ### Why? So that libraries that rely on `response.url` work with the app directory and fetch cacheing ### How? Using the same code as https://github.com/vercel/edge-runtime/blob/edge-runtime%402.4.3/pac...
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -378,6 +378,7 @@ export function patchFetch({\n body: bodyBuffer.toString('base64'),\n status: res.status,\n tags,\n+ url: res.url,\n ...
2023-06-23T21:53:17
rust-lang/rust
6916089d7c4cefc2c2bb10398547535e0250fb60
663e2b7e2904d68fda6d5c23fd1b8ad9fbd7ee03
fix: rewrite some parts of `rustc_smir::builder.rs`
[ { "path": "compiler/rustc_smir/src/rustc_smir/builder.rs", "patch": "@@ -9,8 +9,7 @@ use rustc_middle::mir;\n use rustc_middle::mir::visit::MutVisitor;\n use rustc_middle::ty::{self, TyCtxt};\n \n-use crate::rustc_smir::{Stable, Tables};\n-use crate::stable_mir;\n+use crate::rustc_smir::{Bridge, Tables};\n ...
2025-05-05T07:40:42
huggingface/transformers
5ef16eddf9d9a0d8a50c6b65c2bf352f0c3cace5
12fe95f88b8beb31344c905bb4931efcafe0d044
[docs] optimization cleanup (#42827) * optimum * assisted decoding * fix * feedback * toctree
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -88,12 +88,8 @@\n title: Cache strategies\n - local: cache_explanation\n title: Caching\n- - local: perf_infer_gpu_one\n- title: GPU\n- - local: perf_infer_cpu\n- title: CPU\n- - local: llm_optims\n- title: Optimiz...
2025-12-17T19:24:25
nodejs/node
fd23c122631a83ea9b4cf069fb78dfb212ecb742
de10602c514bb9803be650e831a6bb8fbe220a5b
doc: fix family default value in socket.connect PR-URL: https://github.com/nodejs/node/pull/28521 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "doc/api/net.md", "patch": "@@ -618,8 +618,8 @@ For TCP connections, available `options` are:\n * `host` {string} Host the socket should connect to. **Default:** `'localhost'`.\n * `localAddress` {string} Local address the socket should connect from.\n * `localPort` {number} Local port the socket ...
2019-07-03T12:43:19
golang/go
7c694fbad1ed6f2f825fd09cf7a86da3be549cea
55e5b03cb359c591a2ca6ad8b6e9274d094b1632
go/types, types2: delay receiver type validation Delay validation of receiver type as it may cause premature expansion of types the receiver type is dependent on. This was actually a TODO. While the diff looks large-ish, the actual change is small: all the receiver validation code has been moved inside the delayed fu...
[ { "path": "src/cmd/compile/internal/types2/signature.go", "patch": "@@ -194,66 +194,69 @@ func (check *Checker) funcType(sig *Signature, recvPar *syntax.Field, tparams []\n \t\tcase 1:\n \t\t\trecv = recvList[0]\n \t\t}\n+\t\tsig.recv = recv\n \n-\t\t// TODO(gri) We should delay rtyp expansion to when we ac...
2022-02-24T21:35:16
vercel/next.js
c3c6214c09ab1fbcaaa7fe74e909f36eab93cbb7
91636405fc846cef20c863faa1eef8d807c062fb
Update docs for Google Analytics 4 (#51405) ### What? Update docs for Google Analytics 4 ### Why? This page doesn't make it clear which script is recommended, and has code that's outdated and erroring. ### How? Update headings and clean up bad code.
[ { "path": "errors/next-script-for-ga.md", "patch": "@@ -8,7 +8,7 @@ An inline script was used for Google analytics which might impact your webpage's\n \n ### Possible Ways to Fix It\n \n-#### Using gtag.js\n+#### Using gtag.js (recommended)\n \n If you are using the [gtag.js](https://developers.google.com/a...
2023-06-23T20:54:52
electron/electron
e9c9e22a9ecec3474d86ab3d39ae85fd192b1e86
513b07b3b30f6138f4e0d951c7a08273b496818f
:memo: Fix Windows debug doc pointing to OS X [ci skip]
[ { "path": "docs/development/debug-instructions-windows.md", "patch": "@@ -11,7 +11,7 @@ with breakpoints inside Electron's source code.\n \n * **A debug build of Electron**: The easiest way is usually building it\n yourself, using the tools and prerequisites listed in the\n- [build instructions for Windo...
2016-05-03T15:51:57
huggingface/transformers
1aab1e9ceb527d6ce4ab77df55854037a62ddae3
2f9e21f5c58e73bf612228a3f9680fd2cf54f33d
[docs] WeightConverter (#42636) * weight converter draft * fix * feedback * update
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -9,6 +9,8 @@\n - isExpanded: false\n sections:\n - sections:\n+ - local: weightconverter\n+ title: Dynamic weight loading\n - local: models\n title: Loading models\n - local: custom_models", "additions": 2, "deletions": ...
2025-12-17T18:28:23
nodejs/node
cdd3833bca4da3b0e799865f7f0319f6c2f07406
727b8204fa3fc3c192a4efa33ae9795e3add24f5
test: create home for test-npm-install This test currently fails if run as root: npm ERR! makeDirectory homeless? npm WARN install-dir No description npm WARN install-dir No repository field. npm WARN install-dir No license field. npm ERR! path /root/node/test/.tmp.0/npm-sandbox/home npm ERR! code ENOENT npm ERR! err...
[ { "path": "test/parallel/test-npm-install.js", "patch": "@@ -13,6 +13,8 @@ const tmpdir = require('../common/tmpdir');\n tmpdir.refresh();\n const npmSandbox = path.join(tmpdir.path, 'npm-sandbox');\n fs.mkdirSync(npmSandbox);\n+const homeDir = path.join(tmpdir.path, 'home');\n+fs.mkdirSync(homeDir);\n cons...
2019-07-02T13:13:40