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
28fab5ef21d8aef72634f9c251fbeb4039dababa
20dd9a42fb80ed4919d79bfb4644c16ab9e09e72
go/types, types2: disable inference for type instances Inference for type instances has dependencies on type-checking order that can lead to subtle bugs. As explained in #51527, disable it for 1.18. Fixes #51527 Change-Id: I42795bad30ce53abecfc5a4914599ae5a2041a9e Reviewed-on: https://go-review.googlesource.com/c/go...
[ { "path": "src/cmd/compile/internal/types2/testdata/check/typeinference.go2", "patch": "@@ -4,22 +4,24 @@\n \n package typeInference\n \n+// As of issue #51527, type-type inference has been disabled.\n+\n // basic inference\n type Tb[P ~*Q, Q any] int\n func _() {\n-\tvar x Tb[*int]\n+\tvar x Tb /* ERROR go...
2022-02-24T19:18:24
huggingface/transformers
6d7b10d57fa273e83d2500cc8c3c2f79636cb452
8dd9c999a6262d6ceb48f4a2da7acaccfa80e3bc
Fixed failing `BioGPT` batch generation test (#43128) * Fixed failing BioGPT batch generation test * Fixed failing BioGPT batch generation test * Comment.
[ { "path": "tests/models/biogpt/test_modeling_biogpt.py", "patch": "@@ -335,9 +335,8 @@ def test_batch_generation(self):\n \n num_paddings = inputs_non_padded.shape[-1] - inputs[\"attention_mask\"][-1].long().sum().item()\n inputs_padded = tokenizer(sentences[1], return_tensors=\"pt\").input_...
2026-01-07T13:06:21
nodejs/node
35788c8c18ca13dcb72f82f156dea62d0d3822c3
4daf153eed2cdf3c4a096915622563094b0105da
src: fix type name in comment The comment refers to an exception type that JS land throws on the C++ code's behalf but apparently I changed the JS name before landing the pull request and forgot to update the comment. Refs: https://github.com/nodejs/node/pull/20816 PR-URL: https://github.com/nodejs/node/pull/28320 R...
[ { "path": "src/node_crypto.cc", "patch": "@@ -6085,7 +6085,7 @@ void Scrypt(const FunctionCallbackInfo<Value>& args) {\n // EVP_PBE_scrypt() does not always put errors on the error stack\n // and therefore ToResult() may or may not return an exception\n // object. Return a sentinel value to inf...
2019-06-20T08:36:32
electron/electron
9c0f29806417498c7a715bcac76df4d306cdd0db
525e3ee9c685d399c38204cf84d850cc96cc3eba
Update libchromiumcontent to fix renderer process crash
[ { "path": "script/lib/config.py", "patch": "@@ -8,7 +8,7 @@\n \n BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \\\n 'https://s3.amazonaws.com/github-janky-artifacts/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '5a15db93479dfaf6506d8d263d409d3f022c81b5'\n+LIBCHROMIUMCONTENT_COMMIT = 'f615ab6d...
2016-05-09T12:23:02
vercel/next.js
54a963b666656b1a7a3152e607b09f543880e4e2
d02f60b99877f90a2c669cff9879bf736b6f3507
Update displayed error message for rsc case (#52004) We show the "Application error: a client-side exception has occurred (see the browser console for more information)" error incorrectly when a server-side error occurs (a digest is present) when we should be showing an error saying it is in fact a server side error a...
[ { "path": "packages/next/src/client/components/error-boundary.tsx", "patch": "@@ -100,19 +100,21 @@ export class ErrorBoundaryHandler extends React.Component<\n }\n \n export default function GlobalError({ error }: { error: any }) {\n+ const digest: string | undefined = error?.digest\n return (\n <ht...
2023-06-30T11:31:19
golang/go
20dd9a42fb80ed4919d79bfb4644c16ab9e09e72
43b09c096a33b8a3cd3477546c445e2c41efcfdf
go/types: document that predicates are undefined on generic types Fixes #50887 Change-Id: I451d66b067badcfb7cf2e2756ea2b062366ac9d4 Reviewed-on: https://go-review.googlesource.com/c/go/+/390039 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> Reviewed-by: Robert Griesemer <...
[ { "path": "src/cmd/compile/internal/types2/api.go", "patch": "@@ -421,8 +421,11 @@ func (conf *Config) Check(path string, files []*syntax.File, info *Info) (*Packa\n }\n \n // AssertableTo reports whether a value of type V can be asserted to have type T.\n-// The behavior of AssertableTo is undefined if V i...
2022-03-04T19:39:43
huggingface/transformers
8dd9c999a6262d6ceb48f4a2da7acaccfa80e3bc
4520b549f230db350523c4f63677fedd789510f8
Use timm-side buffers initialization (#43124) * make the switch * pin version * don't protect import if it is used without protection.... * add batchnorm2d * fix * fix * oupsi * use public API * fix typo
[ { "path": "setup.py", "patch": "@@ -140,7 +140,7 @@\n \"tensorboard\",\n \"timeout-decorator\",\n \"tiktoken\",\n- \"timm>=1.0.20\",\n+ \"timm>=1.0.23\",\n \"tokenizers>=0.22.0,<=0.23.0\",\n \"torch>=2.2\",\n \"torchaudio\",", "additions": 1, "deletions": 1, "langua...
2026-01-07T12:59:22
nodejs/node
4daf153eed2cdf3c4a096915622563094b0105da
03317f0e8ea9d0d4718bc29eb80fc54ac5669208
deps: float 15d7e79 from openssl The upstream commit fixes an incorrect initialization of memory in rand_lib.c. This fixes all errors that are reported by valgrind during startup. Origin: https://github.com/openssl/openssl/commit/15d7e7997e219fc PR-URL: https://github.com/nodejs/node/pull/28796 Fixes: https://github...
[ { "path": "deps/openssl/openssl/crypto/rand/rand_lib.c", "patch": "@@ -235,7 +235,9 @@ size_t rand_drbg_get_nonce(RAND_DRBG *drbg,\n struct {\n void * instance;\n int count;\n- } data = { NULL, 0 };\n+ } data;\n+\n+ memset(&data, 0, sizeof(data));\n \n pool = rand_pool_new(0...
2019-07-21T08:24:24
electron/electron
525e3ee9c685d399c38204cf84d850cc96cc3eba
9ccb495f60101d3bffc65490c7bd8d1a89bc9b1b
Update crashpad with AppKit patch
[ { "path": ".gitmodules", "patch": "@@ -15,7 +15,7 @@\n \turl = https://github.com/zcbenz/native-mate.git\n [submodule \"vendor/crashpad\"]\n \tpath = vendor/crashpad\n-\turl = https://github.com/crashpad/crashpad.git\n+\turl = https://github.com/electron/crashpad.git\n [submodule \"vendor/requests\"]\n \tpa...
2016-05-09T11:31:02
huggingface/transformers
4520b549f230db350523c4f63677fedd789510f8
3f73610faa392a815378ede01b23b3a3257c441c
Optimize MoEs for decoding using batched_mm (#43126) * optimize model for decoding * only optimize when grouped_mm * fixes * fix training compile failures * no need to skip * style * fix * Apply suggestion from @IlyasMoutawwakil * Apply suggestion from @IlyasMoutawwakil * info once
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -19,6 +19,7 @@\n import os\n import warnings\n from collections.abc import Callable\n+from contextlib import contextmanager\n from dataclasses import dataclass\n from typing import TYPE_CHECKING, Any, Optional, Union\n \n@@ -2192,17 +2193,24 @@ ...
2026-01-07T10:42:27
golang/go
43b09c096a33b8a3cd3477546c445e2c41efcfdf
114d5deac2f513a7397ab4c2ee8d2d567a901266
go/types, types2: record all type instances, even duplicates Due to instance de-duplication, we were failing to record some type instances in types.Info.Instances. Fix this by moving the instance recording out of the resolver. Fixes #51494 Change-Id: Iddd8989307d95886eedb321efa4ab98cd2b3573a Reviewed-on: https://go-...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"internal/testenv\"\n \t\"reflect\"\n \t\"regexp\"\n+\t\"sort\"\n \t\"strings\"\n \t\"testing\"\n \n@@ -403,69 +404,61 @@ func TestTypesInfo(t *testing.T) {\n }\n \n func TestInstanceInfo(t *testing.T) {\n-\tv...
2022-03-04T23:52:49
rust-lang/rust
c1ed2ac8a27bce8ccc655bd87102752d9d8015d6
971feb618518d5b53dcdc43dcc873b5f7be3f88c
tidy: add specific error message for trying to use `spellcheck:fix`.
[ { "path": "src/tools/tidy/src/ext_tool_checks.rs", "patch": "@@ -65,6 +65,13 @@ fn check_impl(\n None => vec![],\n };\n \n+ if lint_args.contains(&\"spellcheck:fix\") {\n+ return Err(Error::Generic(\n+ \"`spellcheck:fix` is no longer valid, use `--extra=check=spellcheck --bl...
2025-07-05T15:24:17
vercel/next.js
aec3c58d1c7a7fbb0e670e1d0d5fcb9292e9980d
dfe08aed33d6df979fee1085c32588d8058fc163
Update edge-runtime to latest (#51944) ### What? The updates `edge-runtime` to the latest version ### Why? https://github.com/vercel/edge-runtime/pull/428 fixes `consumeUint8ArrayReadableStream` so that when we break iteration early (due to client disconnect), we cleanup the inner stream. That will fire the stream'...
[ { "path": "packages/next/package.json", "patch": "@@ -222,7 +222,7 @@\n \"debug\": \"4.1.1\",\n \"devalue\": \"2.0.1\",\n \"domain-browser\": \"4.19.0\",\n- \"edge-runtime\": \"2.3.2\",\n+ \"edge-runtime\": \"2.4.4\",\n \"events\": \"3.3.0\",\n \"find-cache-dir\": \"3.3.1\",\n ...
2023-06-29T23:15:20
huggingface/transformers
828c039e08dd91af7ce453567ab1da3370df1f04
5cf0f5beb2752d65a978aca31a3c10cbccc607e8
[`Ernie 4.5 VL Moe`] Fix non contiguous params (#43134) * fix * add test * aya * skip timm backbone
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -432,7 +432,7 @@ def convert(\n tensor = input_dict.get(key, [])\n if len(tensor) != 1:\n raise ValueError(f\"Transpose conversion requires exactly one tensor, found {len(tensor)}.\")\n- outpu...
2026-01-06T16:39:15
nodejs/node
03317f0e8ea9d0d4718bc29eb80fc54ac5669208
e5736d817c93ff9ac88c24d9e6a247a0f057a266
dns: fix unsigned record values Fixes: https://github.com/nodejs/node/issues/28790 PR-URL: https://github.com/nodejs/node/pull/28792 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
[ { "path": "src/cares_wrap.cc", "patch": "@@ -756,7 +756,7 @@ Local<Array> AddrTTLToArray(Environment* env,\n \n Local<Array> ttls = Array::New(isolate, naddrttls);\n for (size_t i = 0; i < naddrttls; i++) {\n- auto value = Integer::New(isolate, addrttls[i].ttl);\n+ auto value = Integer::NewFromUns...
2019-07-21T02:49:24
rust-lang/rust
971feb618518d5b53dcdc43dcc873b5f7be3f88c
fd9ca711a3a0e2bd5bd33a345fa4439348111006
tidy: use --bless for tidy spellcheck instead of spellcheck:fix previous behavior was inconsistent with existing extra checks.
[ { "path": "src/tools/tidy/src/ext_tool_checks.rs", "patch": "@@ -72,8 +72,7 @@ fn check_impl(\n let shell_lint = lint_args.contains(&\"shell:lint\") || shell_all;\n let cpp_all = lint_args.contains(&\"cpp\");\n let cpp_fmt = lint_args.contains(&\"cpp:fmt\") || cpp_all;\n- let spellcheck_all =...
2025-07-05T15:17:31
electron/electron
0253aec0cd7e732d322c8993594256e11be1067c
ce7c1023d5f80f805ed96e7f333b90c6fe07d62c
Add SkUserConfig.h with blank SkDebugf macro This file was copied from: ./third_party/skia/include/config/SkUserConfig.h But because of this linking error we needed to define a macro for SkDebugf. ``` "SkDebugf(char const*, ...)", referenced from: SkBitmap::allocPixels(SkImageInfo const&, unsigned long) in ...
[ { "path": "chromium_src/SkUserConfig.h", "patch": "@@ -0,0 +1,158 @@\n+\n+/*\n+ * Copyright 2006 The Android Open Source Project\n+ *\n+ * Use of this source code is governed by a BSD-style license that can be\n+ * found in the LICENSE file.\n+ */\n+\n+\n+#ifndef SkUserConfig_DEFINED\n+#define SkUserConfig_...
2016-04-29T19:50:40
vercel/next.js
dfe08aed33d6df979fee1085c32588d8058fc163
2f42cf557e4041833b55e261a672dafc1729cbc2
Fix NextRequest constructor parameters (#52001) FIx the type change introduced in #51727
[ { "path": "packages/next/src/server/web/spec-extension/request.ts", "patch": "@@ -16,7 +16,7 @@ export class NextRequest extends Request {\n nextUrl: NextURL\n }\n \n- constructor(input: URL | RequestInfo, init: RequestInit) {\n+ constructor(input: URL | RequestInfo, init: RequestInit = {}) {\n ...
2023-06-29T22:50:53
golang/go
114d5deac2f513a7397ab4c2ee8d2d567a901266
7dc6c5ec34ca6780e8eac1760116ff69d0c27d7a
go/types, types2: don't crash in selectors referring to the type being declared In Checker.typInternal, the SelectorExpr case was the only case that didn't either set or pass along the incoming def *Named type. Handle this by passing it along to Checker.selector and report a cycle if one is detected. Fixes #51509. ...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -423,7 +423,7 @@ var cgoPrefixes = [...]string{\n \t\"_Cmacro_\", // function to evaluate the expanded expression\n }\n \n-func (check *Checker) selector(x *operand, e *syntax.SelectorExpr) {\n+func (check *Checker) selector(x *operand, e *sy...
2022-03-06T23:44:42
huggingface/transformers
5cf0f5beb2752d65a978aca31a3c10cbccc607e8
e5b9fbd16b29388ed944a2682e0f5fd022545236
[`Moe`] Post interface fixes (#43129) * fixes * style
[ { "path": "tests/models/ernie4_5_moe/test_modeling_ernie4_5_moe.py", "patch": "@@ -152,6 +152,7 @@ def get_large_model(cls):\n cls.model = Ernie4_5_MoeForCausalLM.from_pretrained(\n \"baidu/ERNIE-4.5-21B-A3B-PT\",\n device_map=\"auto\",\n+ experts_implementation=\"...
2026-01-06T16:32:02
electron/electron
ce7c1023d5f80f805ed96e7f333b90c6fe07d62c
02d72c81af73bdd765beb3af9b7915209e18a747
Minimum fixes needed for chromium_src
[ { "path": "chromium_src/chrome/browser/printing/printing_message_filter.cc", "patch": "@@ -71,10 +71,6 @@ void RenderParamsFromPrintSettings(const PrintSettings& settings,\n params->margin_top = settings.page_setup_device_units().content_area().y();\n params->margin_left = settings.page_setup_device_uni...
2016-04-29T13:15:04
nodejs/node
9949fbda469e70acc45975f5e50eedd2a3cde57d
89e4b36e62978f54b2e33b4bce8197072dbe8af1
src: do not include partial AsyncWrap instances in heap dump Heap dumps can be taken either through the inspector or the public API for it during an async_hooks init() hook, but at that point the AsyncWrap in question is not done initializing yet and virtual methods cannot be called on it. Address this issue (somewha...
[ { "path": "src/async_wrap.cc", "patch": "@@ -577,22 +577,44 @@ AsyncWrap::AsyncWrap(Environment* env,\n ProviderType provider,\n double execution_async_id,\n bool silent)\n- : BaseObject(env, object),\n- provider_type_(provider) {\n+ ...
2019-07-20T21:12:41
vercel/next.js
2f42cf557e4041833b55e261a672dafc1729cbc2
efdc026ac7ef6f818401f33e8ee7bc29ab0da089
Filter invalid image descriptor from metadata images (#51992) Filter out the invalid images in metadata og/twitter `images` filter to avoid crash when falsy image slides in. Add filtering for now as the erroring doesn't show the proper trace pointing to where it's original introduced, might introduce other validation ...
[ { "path": "packages/next/src/lib/metadata/resolvers/resolve-opengraph.test.ts", "patch": "@@ -20,4 +20,19 @@ describe('resolveImages', () => {\n \n expect(images).toEqual([image1, { url: image2, alt: 'Image2' }])\n })\n+\n+ it('should filter out invalid images', () => {\n+ const images = [\n+ ...
2023-06-29T22:17:25
golang/go
7dc6c5ec34ca6780e8eac1760116ff69d0c27d7a
dcb6547b76c5818b55294e203e8f5057794b23cf
go/types, types2: correctly include comparable in type set intersection The comparable bit was handled incorrectly. This CL establishes a clear invariant for a type set's terms and its comparable bit and correctly uses the bit when computing term intersections. Relevant changes: - Introduce a new function intersectT...
[ { "path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue41124.go2", "patch": "@@ -47,7 +47,7 @@ type _ struct{\n }\n \n type _ struct{\n-\tI3 // ERROR interface is .* comparable\n+\tI3 // ERROR interface contains type constraints\n }\n \n // General composite types.\n@@ -59,19 +59,19 @@ type (\n ...
2022-03-04T23:07:17
huggingface/transformers
e5b9fbd16b29388ed944a2682e0f5fd022545236
02ddf5d47abb61730d157ddf3cb75f76715d05f5
Fix buffer offloading (#43131) fix
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -896,6 +896,7 @@ def convert_and_load_state_dict_in_model(\n device_mesh: torch.distributed.device_mesh.DeviceMesh | None = None,\n disk_offload_index: dict | None = None,\n disk_offload_folder: str | None = None,\n+ offload_buf...
2026-01-06T16:31:40
rust-lang/rust
7b1674d5d0f395bd49434f0cec2f74c26b378362
7cce6aff07fa81c4a69deec899a1b87348f727de
Use `object` crate from crates.io to fix windows build error
[ { "path": "Cargo.lock", "patch": "@@ -143,6 +143,15 @@ dependencies = [\n \"libc\",\n ]\n \n+[[package]]\n+name = \"object\"\n+version = \"0.37.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"03fd943161069e1768b4b3d050890ba48730e590f57e56d4aa04e7e090e61b4a\"\n+depend...
2025-07-05T14:58:04
electron/electron
02d72c81af73bdd765beb3af9b7915209e18a747
22863b9f31db6a13a44d4ed53de71d6aafaa59e4
Fix linking problem with IPC::MessageT IPC::MessageT<ChromeUtilityHostMsg_ProcessStarted_Meta, std::__1::tuple<>, void>::MessageT(IPC::Routing)
[ { "path": "atom/common/common_message_generator.h", "patch": "@@ -8,3 +8,4 @@\n #include \"chrome/common/print_messages.h\"\n #include \"chrome/common/tts_messages.h\"\n #include \"chrome/common/widevine_cdm_messages.h\"\n+#include \"chrome/common/chrome_utility_messages.h\"", "additions": 1, "delet...
2016-04-29T00:07:16
nodejs/node
65c2b2ce392b5304cb7d5c3d10de5db1b7b31dbe
b686bd79dcb750ca76a02100519ef728fab291d5
src: silence compiler warning This commit fixes the following warning: warning: missing field 'exports' initializer PR-URL: https://github.com/nodejs/node/pull/28764 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-...
[ { "path": "src/module_wrap.cc", "patch": "@@ -646,7 +646,7 @@ Maybe<const PackageConfig*> GetPackageScopeConfig(Environment* env,\n if (pjson_url.path() == last_pjson_url.path()) {\n auto entry = env->package_json_cache.emplace(pjson_url.ToFilePath(),\n PackageConfig { Exists::No, IsVali...
2019-07-19T12:59:35
huggingface/transformers
02ddf5d47abb61730d157ddf3cb75f76715d05f5
c8208185a738f5159d365d696a12cf740b678439
Fix test_all_tensors_are_parameter_or_buffer (#43111) * Fix test_all_tensors_are_parameter_or_buffer * Simplify * Review compliance
[ { "path": "tests/models/modernbert/test_modeling_modernbert.py", "patch": "@@ -27,6 +27,7 @@\n require_flash_attn,\n require_torch,\n require_torch_accelerator,\n+ require_torch_gpu,\n slow,\n torch_device,\n )\n@@ -506,6 +507,10 @@ def flash_attn_inference_equivalence(\n ...
2026-01-06T14:40:00
golang/go
dcb6547b76c5818b55294e203e8f5057794b23cf
cc9d3f548a0265124766dfdb45e77cf05579219d
cmd/compile: remove duplicate const logic from typecheck Now that we always use types2 to validate user source code, we can remove the constSet logic from typecheck for detecting duplicate expression switch cases and duplicate map literal keys. This logic is redundant with types2, and currently causes unified IR to re...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -26,12 +26,6 @@ import (\n \t\"cmd/internal/src\"\n )\n \n-// TODO(mdempsky): Suppress duplicate type/const errors that can arise\n-// during typecheck due to naive type substitution (e.g., see #42758).\n-// I anticipate these will be handle...
2022-03-07T16:54:28
vercel/next.js
07591042870766a6d846263e28d3a9400a5bd3e6
e10431612dbb4ee5df72622ab4b01bab1013b52a
Docs: Fix broken link (#51991) Link leads to a 404 page
[ { "path": "docs/03-pages/01-building-your-application/07-deploying/04-ci-build-caching.mdx", "patch": "@@ -76,7 +76,7 @@ Using GitHub's [actions/cache](https://github.com/actions/cache), add the follow\n ```yaml\n uses: actions/cache@v3\n with:\n- # See here for caching with `yarn` https://github.com/actio...
2023-06-29T20:39:49
rust-lang/rust
a839b071f7988e77040474dc870ba16b77666a8f
e3843659e9f65f589d184d1221ac6149d5fa07b5
Use `object` crate from crates.io to fix windows build error
[ { "path": "compiler/rustc_codegen_gcc/Cargo.lock", "patch": "@@ -143,6 +143,15 @@ dependencies = [\n \"libc\",\n ]\n \n+[[package]]\n+name = \"object\"\n+version = \"0.37.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"03fd943161069e1768b4b3d050890ba48730e590f57e56d4...
2025-07-05T14:58:04
huggingface/transformers
c8208185a738f5159d365d696a12cf740b678439
52e9d05fde10cfccf5368c4403a206c7cbef8e6f
[Quantization] torchao serialization (#43127) fix
[ { "path": "src/transformers/quantizers/quantizer_torchao.py", "patch": "@@ -146,7 +146,7 @@ def get_state_dict_and_metadata(self, model):\n We flatten the state dict of tensor subclasses so that it is compatible with the safetensors format.\n \"\"\"\n if TORCHAO_VERSION >= version.pa...
2026-01-06T13:31:30
nodejs/node
6948a95562884636fdbf9627069e3ebc801a71ec
34997417b35bb1c5707d833e2a3588d2e9827460
test: fix assertion argument order in test-esm-namespace PR-URL: https://github.com/nodejs/node/pull/28474 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/es-module/test-esm-namespace.mjs", "patch": "@@ -11,4 +11,4 @@ const keys = Object.entries(\n .concat('default')\n .sort();\n \n-assert.deepStrictEqual(Object.keys(fs).sort(), keys);\n+assert.deepStrictEqual(keys, Object.keys(fs).sort());", "additions": 1, "deletions": 1, "la...
2019-06-28T21:53:17
electron/electron
22863b9f31db6a13a44d4ed53de71d6aafaa59e4
48e62ac0b558cb988b34c652318984e68b96fe0c
Fix GURL coonstructor from webkit string error
[ { "path": "atom/browser/api/atom_api_cookies.cc", "patch": "@@ -137,7 +137,8 @@ void GetCookiesOnIO(scoped_refptr<net::URLRequestContextGetter> getter,\n if (url.empty())\n GetCookieStore(getter)->GetAllCookiesAsync(filtered_callback);\n else\n- GetCookieStore(getter)->GetAllCookiesForURLAsync(GU...
2016-04-28T14:02:05
golang/go
cc9d3f548a0265124766dfdb45e77cf05579219d
63bd6f68e6cbb237b46a99775103758afaee370a
runtime: print goid when throwing in gentraceback This makes it easier to figure out where the crash is occurring. Change-Id: Ie1f78a360367090dcd61c61b2a55c34f3e2ff2eb Reviewed-on: https://go-review.googlesource.com/c/go/+/390034 Trust: David Chase <drchase@google.com> Reviewed-by: David Chase <drchase@google.com> Tr...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -665,7 +665,7 @@ retry:\n func TestBadTraceback(t *testing.T) {\n \toutput := runTestProg(t, \"testprog\", \"BadTraceback\")\n \tfor _, want := range []string{\n-\t\t\"runtime: unexpected return pc\",\n+\t\t\"unexpected return pc\",\n \t\t\"called from 0xb...
2022-03-04T16:17:43
rust-lang/rust
1d7fde30850f1058e8ee4fa4dda8b7ce66b0e926
625b73b8b0e15c8be56f1116cf27e6f391d9a8d9
Fix Borrow and BorrowMut define from beta std
[ { "path": "src/tools/rust-analyzer/crates/test-utils/src/minicore.rs", "patch": "@@ -392,13 +392,13 @@ pub mod convert {\n \n pub mod borrow {\n // region:borrow\n- pub trait Borrow<Borrowed: crate::marker::PointeeSized>: crate::marker::PointeeSized {\n+ pub trait Borrow<Borrowed: ?Sized> {\n ...
2025-07-05T13:49:56
vercel/next.js
e10431612dbb4ee5df72622ab4b01bab1013b52a
a2df492957151685d5edd0e5bc4d7bab002eccf9
Remove test skip (#51988) Re-enables the test disabled in #51879 as it was fixed in #51973
[ { "path": "test/e2e/app-dir/metadata-dynamic-routes/index.test.ts", "patch": "@@ -402,7 +402,7 @@ createNextDescribe(\n }\n })\n \n- it.skip('should error when id is missing in generateSitemaps', async () => {\n+ it('should error when id is missing in generateSitemaps', async () => {...
2023-06-29T20:23:55
huggingface/transformers
52e9d05fde10cfccf5368c4403a206c7cbef8e6f
5c68832efdcdc20a933aee105a0e2ddc7bf6c982
[`Ernie 4.5 VL Moe`] Post merge adjustments (#43117) post merge fixes
[ { "path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py", "patch": "@@ -1705,6 +1705,8 @@ def prepare_inputs_for_generation(\n past_key_values=None,\n image_grid_thw=None,\n video_grid_thw=None,\n+ use_cache=True,\n+ is_first_iteration=False,\n ...
2026-01-06T12:51:18
nodejs/node
34997417b35bb1c5707d833e2a3588d2e9827460
f02dfdb2b5e266a057eda1e07eafc62b55f468d3
stream: add null push transform in async_iterator when the readable side of a transform ends any for await loop on that transform stream should also complete. This fix prevents for await loop on a transform stream from hanging indefinitely. PR-URL: https://github.com/nodejs/node/pull/28566 Reviewed-By: Anna Henningse...
[ { "path": "lib/internal/streams/async_iterator.js", "patch": "@@ -155,7 +155,7 @@ const createReadableStreamAsyncIterator = (stream) => {\n });\n iterator[kLastPromise] = null;\n \n- finished(stream, (err) => {\n+ finished(stream, { writable: false }, (err) => {\n if (err && err.code !== 'ERR_STRE...
2019-07-05T18:02:08
golang/go
63bd6f68e6cbb237b46a99775103758afaee370a
d1820f748f8d63da8ef602e53d1db224f072be8f
internal/fuzz: fix TestUnmarshalMarshal on MIPS Previous value used in the float32 roundtrip used float32(math.NaN())-1 which caused the quiet/signal bit to flip, which seemed to break the test on MIPS platforms. Instead switch to using float32(math.NaN())+1, which preserves the bit and makes the test happy. Possibly...
[ { "path": "src/internal/fuzz/encoding_test.go", "patch": "@@ -104,6 +104,12 @@ float32(2.5)`,\n \t\t\tok: true,\n \t\t},\n \t\t{\n+\t\t\t// The two IEEE 754 bit patterns used for the math.Float{64,32}frombits\n+\t\t\t// encodings are non-math.NAN quiet-NaN values. Since they are not equal\n+\t\t\t// to math...
2022-03-05T16:47:33
electron/electron
f418ac5b5da8490ba447b15f6f9dc4280de49c63
d889bdef491adbe547dce75b66ef7039e4e18b44
Update to brave crashpad dep (Electron maintainer rebase this to use your ref)
[ { "path": ".gitmodules", "patch": "@@ -15,7 +15,7 @@\n \turl = https://github.com/zcbenz/native-mate.git\n [submodule \"vendor/crashpad\"]\n \tpath = vendor/crashpad\n-\turl = https://github.com/electron/crashpad.git\n+\turl = https://github.com/brave/crashpad.git\n [submodule \"vendor/requests\"]\n \tpath ...
2016-04-27T21:09:54
vercel/next.js
ed280d2c46be592b14f915c77bd90c9bbe028ad6
8703c55f9f3d96df18ce192612141e094b3dc4fd
Add shared input filesystem (#51879) ## What? Currently we use 3 separate webpack compilers: - server - client - edge All of these were creating their own input filesystem (which is used to read file, stat, etc.). Changing them to share a single inputFileSystem allows the `cachedFileSystem` to be reused b...
[ { "path": "packages/next/src/build/compiler.ts", "patch": "@@ -37,10 +37,18 @@ function closeCompiler(compiler: webpack.Compiler | webpack.MultiCompiler) {\n \n export function runCompiler(\n config: webpack.Configuration,\n- { runWebpackSpan }: { runWebpackSpan: Span }\n-): Promise<CompilerResult> {\n+ ...
2023-06-29T13:49:05
huggingface/transformers
5c68832efdcdc20a933aee105a0e2ddc7bf6c982
68dcd13bfb67bb5b2b12a2f9502d31ab7ecbc434
[`GPT OSS`] Fix false flag (#43120) fix
[ { "path": "src/transformers/models/gpt_oss/modeling_gpt_oss.py", "patch": "@@ -434,7 +434,7 @@ class GptOssPreTrainedModel(PreTrainedModel):\n _skip_keys_device_placement = [\"past_key_values\"]\n _supports_flash_attn = True\n _supports_sdpa = False\n- _supports_flex_attn = False\n+ _suppo...
2026-01-06T12:49:50
nodejs/node
f02dfdb2b5e266a057eda1e07eafc62b55f468d3
b30dca8d9efcff9d7650e633c20c93ace5e52f36
inspector: add inspector.waitForDebugger() This method blocks current node process until a client sends Runtime.runifWaitingForDebugger. It can be useful when we need to report inspector.url() before waiting for connection: ``` inspector.open(0, undefined, false); fs.writeFileSync(someFileName, inspector.url()); insp...
[ { "path": "doc/api/errors.md", "patch": "@@ -1188,6 +1188,11 @@ after the session had already closed.\n \n An error occurred while issuing a command via the `inspector` module.\n \n+<a id=\"ERR_INSPECTOR_NOT_ACTIVE\"></a>\n+### ERR_INSPECTOR_NOT_ACTIVE\n+\n+The `inspector` is not active when `inspector.wait...
2019-06-25T22:28:56
golang/go
0e2f1abf5b764a4a3928a2f4f050144063c46a93
8893175c3b5267f1eb70c518b5de6f03037c4d03
cmd/compile: represent derived types with ir.DynamicType in unified IR This CL switches unified IR to using ir.DynamicType for derived types. This has an immediate effect of fixing compilation of generic code that when fully stenciled results in statically invalid type assertions. This does require updating typecheck ...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -1407,25 +1407,22 @@ func (r *reader) switchStmt(label *types.Sym) ir.Node {\n \tinit := r.stmt()\n \n \tvar tag ir.Node\n+\tvar ident *ir.Ident\n+\tvar iface *types.Type\n \tif r.Bool() {\n \t\tpos := r.pos()\n-\t\tvar ident *ir.Ident\n \t\...
2022-03-07T07:47:27
huggingface/transformers
68dcd13bfb67bb5b2b12a2f9502d31ab7ecbc434
accb698c745815ed35b29dbf57b791aff9b2383b
Fix shapes in modular_gpt_oss.py (#42737) * Fix shapes in modular_gpt_oss.py * Run make fix-copies
[ { "path": "src/transformers/models/gpt_oss/modeling_gpt_oss.py", "patch": "@@ -88,8 +88,8 @@ def forward(self, hidden_states: torch.Tensor, router_indices=None, routing_weig\n \n Args:\n hidden_states (torch.Tensor): (batch_size, seq_len, hidden_size)\n- selected_experts (torc...
2026-01-06T12:42:22
vercel/next.js
484bdebc2468e14a677f71f18457722ba33a69c3
3773c5be8c55d13c5b5252a86296bb298880d9d0
Update `turbopack` and `swc_core` to `v0.78.24` (#51943) Reverts #51940 ### What? Update SWC crates and turbopack ### Turbopack Updates * https://github.com/vercel/turbo/pull/5366 <!-- Justin Ridgewell - Fix bug with `imports` field from a nested directory --> * https://github.com/vercel/turbo/pull/5361 ...
[ { "path": "Cargo.lock", "patch": "@@ -39,6 +39,18 @@ dependencies = [\n \"version_check\",\n ]\n \n+[[package]]\n+name = \"ahash\"\n+version = \"0.8.3\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f\"\n+d...
2023-06-29T13:11:57
rust-lang/rust
d87984e12934cc2f1cf64461f2416a82d76383fe
23b3be5ada3ca3ba98b99e1145f4e771b71d7fad
shims::fs adding more fields to FileMetadata addressing, partially at least, FIXME comment and targetting unixes, adding device, user and group ids.
[ { "path": "src/tools/miri/src/shims/unix/fs.rs", "patch": "@@ -128,16 +128,19 @@ trait EvalContextExtPrivate<'tcx>: crate::MiriInterpCxExt<'tcx> {\n let (created_sec, created_nsec) = metadata.created.unwrap_or((0, 0));\n let (modified_sec, modified_nsec) = metadata.modified.unwrap_or((0, 0))...
2025-07-05T04:06:18
golang/go
8893175c3b5267f1eb70c518b5de6f03037c4d03
82a65299050cb1146583c72350f841684256bb3c
flag: make tests silent A few of the tests were printing garbage to stderr, since FlagSet's default Output is os.Stderr: $ go test flag provided but not defined: -x invalid value "1" for flag -v: test error Usage of test: flag needs an argument: -b Usage of test: -b usage PASS ok flag 0.008s Add the rem...
[ { "path": "src/flag/export_test.go", "patch": "@@ -4,7 +4,10 @@\n \n package flag\n \n-import \"os\"\n+import (\n+\t\"io\"\n+\t\"os\"\n+)\n \n // Additional routines compiled into the package only during testing.\n \n@@ -15,6 +18,7 @@ var DefaultUsage = Usage\n // exit the program.\n func ResetForTesting(us...
2022-03-06T11:26:11
nodejs/node
49144ab64d3c5810f70585c2ccb0c90539fec116
6c288a704453ec7319928495efd0d3c482bcf754
inspector: do not spin-wait while waiting for the initial connection Fixes: https://github.com/nodejs/node/issues/28741 PR-URL: https://github.com/nodejs/node/pull/28756 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Aleksei Koziatinskii <ak239spb@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> ...
[ { "path": "src/inspector_agent.cc", "patch": "@@ -699,8 +699,7 @@ class NodeInspectorClient : public V8InspectorClient {\n \n MultiIsolatePlatform* platform = env_->isolate_data()->platform();\n while (shouldRunMessageLoop()) {\n- if (interface_ && hasConnectedSessions())\n- interface_->...
2019-07-18T20:04:11
electron/electron
eef9d9beaf539787347f474d204b87688e70fdfb
f86bd75f828e44d386a2c9c47d19fd9d11031d5a
Fixed grammar issue.
[ { "path": "docs/api/power-save-blocker.md", "patch": "@@ -29,7 +29,7 @@ The `powerSaveBlocker` module has the following methods:\n Starts preventing the system from entering lower-power mode. Returns an integer\n identifying the power save blocker.\n \n-**Note:** `prevent-display-sleep` has higher has prece...
2016-05-12T02:08:01
huggingface/transformers
accb698c745815ed35b29dbf57b791aff9b2383b
c154b0218ab78c2df076ab8cf4a7bde1cd2bf40f
[CB] Support the `num_return_sequences` argument (#42921) * Reformat to make the code pretty * Allow for multiple decoding sequences in CB * Style * Fix a generation config bug * Add seed to example * Batch forking * Cahnge the fixme (for later PR) * Copy source is optional * Added a benchmark script for PR *...
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -0,0 +1,59 @@\n+import re\n+import subprocess\n+from pathlib import Path\n+\n+from tabulate import tabulate\n+\n+\n+SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_batching.py\").as...
2026-01-06T12:40:53
rust-lang/rust
db0b4912583eb39efb93cdeae98948afcbe85eb3
733b47ea4b1b86216f14ef56e49440c33933f230
Fix short linker error output This PR does 2 things: - It removes the braces when there's a single element. This is required since brace expansion (at least in bash and zsh) only triggers if there's at least 2 elements. - It removes the extra `.rlib` suffixes of the elements. See https://github.com/rust-lang/rus...
[ { "path": "compiler/rustc_codegen_ssa/src/errors.rs", "patch": "@@ -457,7 +457,7 @@ impl<G: EmissionGuarantee> Diagnostic<'_, G> for LinkingFailed<'_> {\n } else if arg.as_encoded_bytes().ends_with(b\".rlib\") {\n let rlib_path = Path::new(&arg);\n let...
2025-07-05T08:54:22
vercel/next.js
3773c5be8c55d13c5b5252a86296bb298880d9d0
c897933b6eee33ac9b495087b05e17582971cb69
Ensure metadata test is not affected by other tests (#51973) Turn out the `should error when id is missing in generateSitemaps` test was passing because of this test passing: `should error when id is missing in generateImageMetadata` <!-- Thanks for opening a PR! Your contribution is much appreciated. To make su...
[ { "path": "packages/next/src/build/webpack/loaders/next-metadata-route-loader.ts", "patch": "@@ -115,7 +115,7 @@ export async function GET(_, ctx) {\n id = imageMetadata.find((item) => {\n if (process.env.NODE_ENV !== 'production') {\n if (item?.id == null) {\n- throw new Error('i...
2023-06-29T13:10:19
huggingface/transformers
c154b0218ab78c2df076ab8cf4a7bde1cd2bf40f
491e0cd2345b0a43344d4c92c0f58c70088ceb89
[CI] Fixing some AMD failures (#42879) * fix qwen2 & qwen2_5_omni * one more fix * fix qwen2_5_vl * fix * fix some more failures on nvidia
[ { "path": "src/transformers/models/qwen2_5_omni/modeling_qwen2_5_omni.py", "patch": "@@ -2459,7 +2459,11 @@ def forward(\n self.rope_deltas = rope_deltas\n \n else:\n- batch_size, seq_length, _ = inputs_embeds.shape\n+ if inputs_embeds is not None:\n...
2026-01-06T10:03:33
nodejs/node
68c83f962e002a47f61648c5aa2adb41dbe6a358
b7bcfc9d7e0083a2f8aedd4010853140163eefc5
vm: fix gc bug with modules and compiled functions PR-URL: https://github.com/nodejs/node/pull/28671 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Guy Bedford <guybedford@gmail.com>
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -705,7 +705,7 @@ function wrapSafe(filename, content) {\n });\n }\n \n- const compiledWrapper = compileFunction(\n+ const compiled = compileFunction(\n content,\n filename,\n 0,\n@@ -725,15 +725,15 @@ function wrapSafe(filename...
2019-07-19T14:30:09
golang/go
7c292ddf1f883698b3a0bab7004368cff62a04a5
da2773fe3e2f6106634673a38dc3a6eb875fe7d8
cmd/compile: fix reentrancy issue in unified IR function body reading We shouldn't need to read in function bodies for new functions found during inlining, but something is expecting them to still be read in. We should fix that code to not depend on them being read in, but in the mean time reading them in anyway is at...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -930,11 +930,6 @@ var bodyReader = map[*ir.Func]pkgReaderIndex{}\n // constructed.\n var todoBodies []*ir.Func\n \n-// todoBodiesDone signals that we constructed all function in todoBodies.\n-// This is necessary to prevent reader.addBody ad...
2022-03-07T04:11:21
huggingface/transformers
491e0cd2345b0a43344d4c92c0f58c70088ceb89
a34922d6dc777a5ea769308d265dbdbd47c04772
Fix inits in modernbert (#43115) * Fix inits in moderbert * Repo consistency * Update modular_modernbert.py Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co> * Repo consistency --------- Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co>
[ { "path": "src/transformers/models/modernbert/modeling_modernbert.py", "patch": "@@ -685,6 +685,9 @@ def init_weight(module: nn.Module, std: float):\n curr_inv_freq, _ = rope_init_fn(module.config, layer_type=layer_type)\n init.copy_(getattr(module, f\"{layer_type}_inv_freq\"...
2026-01-06T10:02:56
rust-lang/rust
7405e2a9154268955de216840ef4dd7e975b0cd5
556d20a834126d2d0ac20743b9792b8474d6d03c
Improve compiletest config documentation Including a bunch of FIXMEs.
[ { "path": "src/tools/compiletest/src/common.rs", "patch": "@@ -172,207 +172,422 @@ pub enum Sanitizer {\n Hwaddress,\n }\n \n-/// Configuration for compiletest\n+/// Configuration for `compiletest` *per invocation*.\n+///\n+/// In terms of `bootstrap`, this means that `./x test tests/ui tests/run-make` ...
2025-07-04T11:20:09
vercel/next.js
c897933b6eee33ac9b495087b05e17582971cb69
7c5eb3191e656a29b48ae7926171079937ff9fc2
fix(typedRoutes): added missing anchor props to LinkRestProps (#51977) ### What? This PR fixes `next/link`'s `<Link />` missing many `<a />` props when `experimental.typedRoutes` is enabled. ### How? It does that by changing `AnchorHTMLAttributes<HTMLAnchorElement>` in LinkRestProps to `DetailedHTMLProps<Ancho...
[ { "path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts", "patch": "@@ -413,11 +413,17 @@ declare module 'next' {\n \n declare module 'next/link' {\n import type { LinkProps as OriginalLinkProps } from 'next/dist/client/link'\n- import type { AnchorHTMLAttributes } from 'react'\n+ import...
2023-06-29T12:24:44
nodejs/node
15d44bf6f0cf0cd390009c7c547a5113c7bcb7d0
19b21987d22bf0875cd6d7e6690e497d1fa6295c
build: update of the large page option error Now large pages is also supported by FreeBSD. PR-URL: https://github.com/nodejs/node/pull/28729 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "configure.py", "patch": "@@ -400,7 +400,7 @@\n action='store_true',\n dest='node_use_large_pages',\n help='build with Large Pages support. This feature is supported only on Linux kernel' +\n- '>= 2.6.38 with Transparent Huge pages enabled')\n+ '>= 2.6.38 with Transpare...
2019-07-17T09:11:46
electron/electron
b81742f3351a232f81e97491df8c9021f4c3c636
5a702425eb015035188363a18da9f35172aad6f1
Update screen.md bugfix-修改错别字
[ { "path": "docs-translations/zh-CN/api/screen.md", "patch": "@@ -7,7 +7,7 @@\n **注意:** 在渲染进程 / 开发者工具栏, `window.screen` 是一个预设值的 DOM\n 属性, 所以这样写 `var screen = require('electron').screen` 将不会工作.\n 在我们下面的例子, 我们取代使用可变名字的 `electronScreen`.\n-一个例子,创建一个充满真个屏幕的窗口 :\n+一个例子,创建一个充满整个屏幕的窗口 :\n \n ```javascript\n const e...
2016-05-12T01:21:10
golang/go
da2773fe3e2f6106634673a38dc3a6eb875fe7d8
45f45444b307cea7c8330b100b30382e642e010f
all: fix some typos Change-Id: I7dfae0fc91c2d70873ec7ec920be7c0a4888153a Reviewed-on: https://go-review.googlesource.com/c/go/+/390175 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Trust: Daniel Martí <mvdan@mvdan.cc>
[ { "path": "src/compress/bzip2/huffman.go", "patch": "@@ -182,7 +182,7 @@ func buildHuffmanNode(t *huffmanTree, codes []huffmanCode, level uint32) (nodeIn\n \n \t\t// If this function was called recursively then we know that\n \t\t// len(codes) >= 2 because, otherwise, we would have hit the\n-\t\t// \"leaf n...
2022-03-05T08:51:15
rust-lang/rust
c4d9c0f248f05542024ad55a52774ea84406db81
733b47ea4b1b86216f14ef56e49440c33933f230
tests: Use `cfg_target_has_reliable_f16_f128` `conv-bits-runtime-const` gates `f16` and `f128` tests behind `x86_64`, but this isn't always accurate. In particular, x86 `MinGW` has an ABI bug [1] which means things work when linked to our Rust math libraries but don't work with host libraries. RUST-143405 slightly adj...
[ { "path": "tests/ui/float/conv-bits-runtime-const.rs", "patch": "@@ -5,34 +5,33 @@\n \n #![feature(f16)]\n #![feature(f128)]\n+#![feature(cfg_target_has_reliable_f16_f128)]\n #![allow(unused_macro_rules)]\n+// expect the unexpected (`target_has_reliable_*` are not \"known\" configs since they are unstable)\...
2025-07-05T06:46:49
huggingface/transformers
a34922d6dc777a5ea769308d265dbdbd47c04772
98578fc62260130652be4725a5597ad257bfe800
🚨Fix MobileViT image processor default interpolation to BICUBIC (#43024) * Fix MobileViT image processor default interpolation to BICUBIC The original MobileViT implementation (Apple's ml-cvnets) and timm both use BICUBIC interpolation for image preprocessing. Updates both slow and fast image processors to match. C...
[ { "path": "src/transformers/models/mobilevit/image_processing_mobilevit.py", "patch": "@@ -79,7 +79,7 @@ class MobileViTImageProcessor(BaseImageProcessor):\n size (`dict[str, int]` *optional*, defaults to `{\"shortest_edge\": 224}`):\n Controls the size of the output image after resizing...
2026-01-06T00:37:09
vercel/next.js
b236670f9776c48afee65ca7d4ef6021d0d0dbfb
b636d3d75536809b682292c97962d1642a061727
Fix entrypoints.get and entrypoints.stream from turbopack (#50733) ## What? Both `entrypoints.get` and `entrypoints.stream` threw an error because it was using the wrong tasks implementation. @sokra helped fix it.
[ { "path": "packages/next-swc/crates/napi/src/app_structure.rs", "patch": "@@ -13,7 +13,6 @@ use next_core::app_structure::{\n use serde::{Deserialize, Serialize};\n use turbopack_binding::{\n turbo::{\n- tasks,\n tasks::{\n debug::ValueDebugFormat, primitives::StringsVc, trace...
2023-06-29T09:40:02
nodejs/node
21ec137859af19d0676f1a356d6b1381a6e01cc8
6aa6716a9159ce8180a42b658afa9bad328e8281
build: fix building with d8 PR-URL: https://github.com/nodejs/node/pull/28733 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ric...
[ { "path": "node.gypi", "patch": "@@ -66,7 +66,7 @@\n 'defines': [ '__POSIX__' ],\n }],\n [ 'node_enable_d8==\"true\"', {\n- 'dependencies': [ 'deps/v8/gypfiles/d8.gyp:d8' ],\n+ 'dependencies': [ 'tools/v8_gypfiles/d8.gyp:d8' ],\n }],\n [ 'node_use_bundled_v8==\"true\"', {\n ...
2019-07-17T15:55:12
electron/electron
2d19d8108b07a37735beaea7fb29d879ece7b322
064af6ecb23d8ae1baffd1693830649d83e67394
Fixed typo
[ { "path": "atom/browser/native_window.cc", "patch": "@@ -412,7 +412,7 @@ void NativeWindow::RendererUnresponsive(content::WebContents* source) {\n // responsive event soon. This could happen after the whole application had\n // blocked for a while.\n // Also notice that when closing this event would b...
2016-05-11T22:14:17
huggingface/transformers
1b743cd9fc44dcceda79ef9fcb6e488d0babc159
8fe3ec2101faeb6e2e40571c8cb7f72d9708074c
🚨 Fix EfficientNet image processor default interpolation to BICUBIC (#42956) Fix EfficientNet image processor default interpolation to BICUBIC The original EfficientNet implementation uses BICUBIC interpolation for image preprocessing, but both EfficientNetImageProcessor and EfficientNetImageProcessorFast defaulted ...
[ { "path": "src/transformers/models/efficientnet/image_processing_efficientnet.py", "patch": "@@ -66,7 +66,7 @@ class EfficientNetImageProcessor(BaseImageProcessor):\n `do_resize` in `preprocess`.\n size (`dict[str, int]` *optional*, defaults to `{\"height\": 346, \"width\": 346}`):\n ...
2026-01-05T23:42:56
golang/go
45f45444b307cea7c8330b100b30382e642e010f
2981fc7f1676ca79e487ba3c1df06e5e60723483
fmt: clarify right-padded strings use spaces Fixes #51419 Change-Id: I0a32f41a6e6e01481ad58c7dddb57ec7085d77af Reviewed-on: https://go-review.googlesource.com/c/go/+/389434 Reviewed-by: Rob Pike <r@golang.org> Trust: Ian Lance Taylor <iant@golang.org>
[ { "path": "src/fmt/doc.go", "patch": "@@ -124,7 +124,8 @@\n \t\t' '\t(space) leave a space for elided sign in numbers (% d);\n \t\t\tput spaces between bytes printing strings or slices in hex (% x, % X)\n \t\t0\tpad with leading zeros rather than spaces;\n-\t\t\tfor numbers, this moves the padding after the...
2022-03-02T23:05:39
vercel/next.js
60d27380f7458ec84aa4627568a54910e62db5b5
f4b947fb5606765e637d89ccd26d43b71cc72b36
fix modularizeImports with @mui/material (#51953) Fixes #51872. We were exploring in https://github.com/mui/material-ui/pull/35457 the option to move the `modularizeImports` config to our Next.js examples to fix https://github.com/mui/material-ui/issues/35450 however, we never got to complete the work. We are n...
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -693,9 +693,6 @@ function assignDefaults(\n '@mui/icons-material': {\n transform: '@mui/icons-material/{{member}}',\n },\n- '@mui/material': {\n- transform: '@mui/material/{{member}}',\n- },\n 'date-fns': {\n tra...
2023-06-29T03:26:04
huggingface/transformers
8fe3ec2101faeb6e2e40571c8cb7f72d9708074c
e8c51d1848187b9e58d00bf7d638811686ab2a4b
[SAM3] Fix MPS race condition in add_point_inputs (#43042) [SAM2] Fix MPS race condition in add_point_inputs
[ { "path": "src/transformers/models/edgetam_video/modeling_edgetam_video.py", "patch": "@@ -1001,7 +1001,7 @@ def add_point_inputs(self, obj_idx: int, frame_idx: int, inputs: dict):\n device_inputs = {}\n for key, value in inputs.items():\n if isinstance(value, torch.Tensor):\n- ...
2026-01-05T23:40:36
nodejs/node
7e977d7cd41cd57ce6bc6b7b639e88377d725cf3
6874aa1fb15e815bacf0b0f7e18a434d72de0b4d
repl: fix some repl context issues This partially fixes contexts like `{} instanceof Object === false` in the REPL. This does not fix all cases, since it's something fundamental from the REPL's design that things like these can happen. Refs: https://github.com/nodejs/node/issues/27859 PR-URL: https://github.com/node...
[ { "path": "lib/repl.js", "patch": "@@ -875,8 +875,11 @@ REPLServer.prototype.createContext = function() {\n context = vm.createContext();\n });\n for (const name of Object.getOwnPropertyNames(global)) {\n- Object.defineProperty(context, name,\n- Object.getOwnPro...
2019-07-05T15:24:28
electron/electron
12d40cd310858bc2ebb8b663aa74ba3b03333102
759a46f3d61c029cbfdcc96904fa1450ea8bb410
Add typename hint to fix compilation error on VS2015
[ { "path": "atom/common/key_weak_map.h", "patch": "@@ -79,7 +79,7 @@ class KeyWeakMap {\n \n private:\n static void OnObjectGC(\n- const v8::WeakCallbackInfo<KeyWeakMap<K>::KeyObject>& data) {\n+ const v8::WeakCallbackInfo<typename KeyWeakMap<K>::KeyObject>& data) {\n KeyWeakMap<K>::KeyObjec...
2016-05-11T11:57:21
golang/go
bf97c99b62fe7d6652cc8c807dbc91998d488a01
e79c39f004769fc55e60c2fb052155486295d533
cmd/go: clarify error from 'go install' when arguments have mismatched versions and paths Fixes #51196. Change-Id: I0ee4d8234f11e4f3b71b81546518647e07fafd7d GitHub-Last-Rev: 8fd1a77adff982dd00385c5b25a4e0cdf3e2e220 GitHub-Pull-Request: golang/go#51373 Reviewed-on: https://go-review.googlesource.com/c/go/+/388154 Trus...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -3001,7 +3001,7 @@ func PackagesAndErrorsOutsideModule(ctx context.Context, opts PackageOpts, args\n \tpatterns := make([]string, len(args))\n \tfor i, arg := range args {\n \t\tif !strings.HasSuffix(arg, \"@\"+version) {\n-\t\t\treturn nil, fmt.Erro...
2022-02-26T13:58:54
rust-lang/rust
b47a091b7df34d0a95913974419076c67a91643d
704a1a9064cb0157aff557da5492e5afd797f982
clippy fix: use div_ceil
[ { "path": "crates/core_simd/src/lane_count.rs", "patch": "@@ -8,7 +8,7 @@ pub struct LaneCount<const N: usize>;\n \n impl<const N: usize> LaneCount<N> {\n /// The number of bytes in a bitmask with this many lanes.\n- pub const BITMASK_LEN: usize = (N + 7) / 8;\n+ pub const BITMASK_LEN: usize = N.d...
2025-07-04T14:22:09
vercel/next.js
f4b947fb5606765e637d89ccd26d43b71cc72b36
15b84c1dd3a6a4b493d82c7a52b34a2912f8e5bc
Fix eslint async client component (#51952) Fixes #51917 It's throwing error in arrow function, should also be covered in the lint rule fix NEXT-1326
[ { "path": "packages/eslint-plugin-next/src/rules/no-async-client-component.ts", "patch": "@@ -36,7 +36,7 @@ export = defineRule({\n if (block.type === 'ExportDefaultDeclaration' && isClientComponent) {\n // export default async function MyComponent() {...}\n if (\n- ...
2023-06-29T03:03:32
huggingface/transformers
e8c51d1848187b9e58d00bf7d638811686ab2a4b
c9b0498f2e5ab0ef83ff6d6226025bec7c23aaec
gpt-oss is not working with flash-attention (#42736) * gpt-oss not working with flash attention * changed conditions to allow vllm kernel * changed conditions to allow vllm kernel and modeling file generated * test for flash attention initialization error * fixing modular * import error * tets fixed * removed u...
[ { "path": "src/transformers/models/gpt_oss/configuration_gpt_oss.py", "patch": "@@ -117,5 +117,22 @@ def __init__(\n **kwargs,\n )\n \n+ def __setattr__(self, key, value):\n+ \"\"\"\n+ Overwritten to allow checking for the proper attention implementation to be used.\n+\n...
2026-01-05T18:46:40
nodejs/node
6874aa1fb15e815bacf0b0f7e18a434d72de0b4d
f9388580bd4169a7e3e3d049ca86a7b1e614ee55
repl: fix autocomplete while using .load This makes sure that complete functions work as expected after using the REPL's `.load` command. It also fixes the corresponding test. So far the assertion where swallowed and the test passed even though it should not have. Fixes: https://github.com/nodejs/node/issues/28546 P...
[ { "path": "lib/repl.js", "patch": "@@ -1535,10 +1535,10 @@ function defineDefaultCommands(repl) {\n help: 'Save all evaluated commands in this REPL session to a file',\n action: function(file) {\n try {\n- fs.writeFileSync(file, this.lines.join('\\n') + '\\n');\n- this.outputStre...
2019-07-09T11:36:57
golang/go
e79c39f004769fc55e60c2fb052155486295d533
2b8aa2b734721487bb718ee5fb6080f51b57efd9
encoding/xml: improve the test coverage, fix minor bugs Improve the test coverage of encoding/xml package by adding the test cases for the execution paths that were not covered before. Since it reveals a couple of issues, fix them as well while we're at it. As I used an `strings.EqualFold` instead of adding one more...
[ { "path": "src/encoding/xml/xml.go", "patch": "@@ -10,9 +10,6 @@ package xml\n // Annotated XML spec: https://www.xml.com/axml/testaxml.htm\n // XML name spaces: https://www.w3.org/TR/REC-xml-names/\n \n-// TODO(rsc):\n-//\tTest error handling.\n-\n import (\n \t\"bufio\"\n \t\"bytes\"\n@@ -499,7 +496...
2021-11-17T14:46:22
huggingface/transformers
e8d60a7fe614d1170fd4938255f3955fbc9ca498
a616b914451ffd3bb3553874e67af7fe47e8adeb
Silence pytest warnings due to sentencepiece version (#43118) fix
[ { "path": "pyproject.toml", "patch": "@@ -72,5 +72,11 @@ markers = [\n log_cli = 1\n log_cli_level = \"WARNING\"\n asyncio_default_fixture_loop_scope = \"function\"\n-# The above pytest-asyncio rule emits unnessecary warnings when it's not installed, so skip it by regex here\n-filterwarnings = [\"ignore:Unk...
2026-01-05T17:02:29
vercel/next.js
15b84c1dd3a6a4b493d82c7a52b34a2912f8e5bc
e602207cb0879d5f3f2be391b2da5c00467624c7
lint fix
[ { "path": "docs/02-app/02-api-reference/01-components/image.mdx", "patch": "@@ -476,7 +476,7 @@ module.exports = {\n This must point to a file relative to the root of your Next.js application. The file must export a default function that returns a string, for example:\n \n ```js\n-\"use client\"\n+'use clie...
2023-06-29T03:00:37
nodejs/node
f9388580bd4169a7e3e3d049ca86a7b1e614ee55
195239a5f697214a86ca8b8eeefa1947ce409385
test: make repl tests more resilient This refactors two tests to ignore line numbers in stack traces. That way changed line numbers do not have any impact on the test outcome anymore. PR-URL: https://github.com/nodejs/node/pull/28608 Fixes: https://github.com/nodejs/node/issues/28546 Reviewed-By: Jiawen Geng <technic...
[ { "path": "test/parallel/test-repl-pretty-custom-stack.js", "patch": "@@ -5,6 +5,7 @@ const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const repl = require('repl');\n \n+const stackRegExp = /repl:[0-9]+:[0-9]+/g;\n \n function run({ command, expected }) {\n let accum =...
2019-07-09T11:40:01
huggingface/transformers
a616b914451ffd3bb3553874e67af7fe47e8adeb
1802c84ffe4a767a9cabf549189b509520e0b03a
Fix warnings poping up with `fixup` and `pytest` (#43109) * remove license classifier * pytest warnings
[ { "path": "pyproject.toml", "patch": "@@ -72,3 +72,5 @@ markers = [\n log_cli = 1\n log_cli_level = \"WARNING\"\n asyncio_default_fixture_loop_scope = \"function\"\n+# The above pytest-asyncio rule emits unnessecary warnings when it's not installed, so skip it by regex here\n+filterwarnings = [\"ignore:Unkn...
2026-01-05T15:44:09
golang/go
2b8aa2b734721487bb718ee5fb6080f51b57efd9
7d7b9bbc7a37d3b83936a8caea08e0be7240a125
internal/fuzz: handle Inf/NaN float values Fixes #51258 Change-Id: I3c8b785ac912d66e1a6e2179625e6903032b8330 Reviewed-on: https://go-review.googlesource.com/c/go/+/388354 Reviewed-by: Bryan Mills <bcmills@google.com> Trust: Roland Shoemaker <roland@golang.org> Run-TryBot: Roland Shoemaker <roland@golang.org> Auto-Sub...
[ { "path": "src/internal/fuzz/encoding.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"go/ast\"\n \t\"go/parser\"\n \t\"go/token\"\n+\t\"math\"\n \t\"strconv\"\n )\n \n@@ -27,8 +28,20 @@ func marshalCorpusFile(vals ...any) []byte {\n \t// instead of changing to byte and rune respectively.\n \tfor _, val := r...
2022-02-28T13:42:11
vercel/next.js
f17614abd14c46a083e33e2f1ec69d9ef4c15add
946c9c5c46091604b8a9c73260bfe26ece70de23
[Docs] Fix run-on sentence (#51956) As stated in title :)
[ { "path": "docs/02-app/01-building-your-application/01-routing/06-loading-ui-and-streaming.mdx", "patch": "@@ -3,7 +3,7 @@ title: Loading UI and Streaming\n description: Built on top of Suspense, Loading UI allows you to create a fallback for specific route segments, and automatically stream content as it b...
2023-06-29T02:28:28
electron/electron
e6c0b1fe0c13c59e0c783dd4c0d6cf7a88b0b859
79c1ad85f9b8a91269066294fb922dae4dcfd7c8
Fix leak when KeyWeakMap::Remove is called directly Usually the KeyObject would be destroyed when GC happens, but then Remove is called before GC happens, the KeyObject would be leaked forever. This fixes it by keeping KeyObject as a member of map.
[ { "path": "atom/common/id_weak_map.cc", "patch": "@@ -12,16 +12,9 @@ namespace atom {\n \n namespace {\n \n-struct ObjectKey {\n- ObjectKey(int id, KeyWeakMap* map) : id(id), map(map) {}\n- int id;\n- KeyWeakMap* map;\n-};\n-\n-void OnObjectGC(const v8::WeakCallbackInfo<ObjectKey>& data) {\n- ObjectKey*...
2016-05-11T05:26:32
huggingface/transformers
fc15b32246e7b8fb450a46761db2b3dd80f6cdfb
37cd3240acbf5337c0939f4bc6a0a3074a971c9f
Fix duplicate words typos in comments and docstrings (#43038)
[ { "path": "src/transformers/generation/stopping_criteria.py", "patch": "@@ -430,7 +430,7 @@ def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor, **kwa\n initial_match = end_lengths > 0\n \n # Tokens continue the string if the cumsum() so far is one of the valid position...
2026-01-05T15:33:45
nodejs/node
195239a5f697214a86ca8b8eeefa1947ce409385
971915e89f1106444453eba39263ade92b3ed598
test: fix race condition in test-worker-process-cwd.js This simplifies the test logic and fixes the race condition that could happen right now. PR-URL: https://github.com/nodejs/node/pull/28609 Refs: https://github.com/nodejs/node/issues/28193 Closes: https://github.com/nodejs/node/pull/28477 Fixes: https://github.co...
[ { "path": "test/parallel/test-worker-process-cwd.js", "patch": "@@ -3,43 +3,65 @@ const common = require('../common');\n const assert = require('assert');\n const { Worker, isMainThread, parentPort } = require('worker_threads');\n \n+// Verify that cwd changes from the main thread are handled correctly in\n...
2019-07-09T14:41:55
golang/go
7d7b9bbc7a37d3b83936a8caea08e0be7240a125
797e8890463671b96fb0af8ed151101950d76999
crypto/sha512: fix stack size for previous change In a recent change CL 388654 a function was updated so it no longer needed stack space, but the TEXT statement was not updated to reflect that change. This corrects that problem. Change-Id: I9e60cebddae620788b1097ab7b39c47b323d1f62 Reviewed-on: https://go-review.googl...
[ { "path": "src/crypto/sha512/sha512block_ppc64x.s", "patch": "@@ -292,7 +292,7 @@ GLOBL ·kcon(SB), RODATA, $1312\n \tVADDUDM\t\ts1, xj, xj\n \n // func block(dig *digest, p []byte)\n-TEXT ·block(SB),0,$128-32\n+TEXT ·block(SB),0,$0-32\n \tMOVD\tdig+0(FP), CTX\n \tMOVD\tp_base+8(FP), INP\n \tMOVD\tp_len+16(F...
2022-03-03T13:28:44
huggingface/transformers
82c60184bf07db5659aa1d3bebd0690d15642721
24502729d5667b4480eb61c00bcbc0dfedd21947
Fix InvalidVersion error when flash_attn version cannot be determined (#43004) When flash_attn_3 is installed without flash_attn (v2), the flash_attn module may be importable but its version cannot be determined, resulting in version.parse("N/A") which raises InvalidVersion. Wrap version parsing in try/except, consis...
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -890,14 +890,17 @@ def is_flash_attn_2_available() -> bool:\n \n import torch\n \n- if torch.version.cuda:\n- return version.parse(flash_attn_version) >= version.parse(\"2.1.0\")\n- elif torch.version.hip:\n- # TODO: Bu...
2026-01-05T15:04:47
nodejs/node
da69f56e7f317651949bc2305513a005ae837ed0
54fcb14467b59e82d6e24bf44803462226a5de4d
n-api: correct bug in napi_get_last_error napi_get_last_error returns incorrect napi_status. PR-URL: https://github.com/nodejs/node/pull/28702 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Daw...
[ { "path": "src/js_native_api_types.h", "patch": "@@ -81,6 +81,10 @@ typedef enum {\n napi_bigint_expected,\n napi_date_expected,\n } napi_status;\n+// Note: when adding a new enum value to `napi_status`, please also update\n+// `const int last_status` in `napi_get_last_error_info()' definition,\n+// in ...
2019-07-11T23:23:12
vercel/next.js
946c9c5c46091604b8a9c73260bfe26ece70de23
bd1fc78bd83a0803655654097b52e12a3aa49574
Add `unstable_getImgProps` export from `next/image` (#51205) ### Description This PR refactors the Image component so that the core logic can be consolidated into a single function. This allows usage outside of `<Image>`, such as: 1. Working with [`background-image`](https://developer.mozilla.org/en-US/docs/Web/CS...
[ { "path": "packages/next/image-types/global.d.ts", "patch": "@@ -2,7 +2,7 @@\n // if the static image import handling is enabled\n \n declare module '*.png' {\n- const content: import('../dist/client/image').StaticImageData\n+ const content: import('../dist/shared/lib/image-external').StaticImageData\n \n...
2023-06-29T01:35:08
rust-lang/rust
016bc61312b85fae0f0f53c56946239b712b4604
19ab6461fbb1d9c05c3a6b6cdbaf9ffcd0f1c8d9
Test building custom targets and resolve an issue probing `rustc` The `rustc` probe done in our build scripts needs to pass `--target` to get the correct configuration, which usually comes from the `TARGET` environment variable. However, for targets specified via a `target.json` file, `TARGET` gets set to the file nam...
[ { "path": "library/compiler-builtins/.github/workflows/main.yaml", "patch": "@@ -195,6 +195,25 @@ jobs:\n run: ./ci/update-musl.sh\n - run: cargo clippy --workspace --all-targets\n \n+ build-custom:\n+ name: Build custom target\n+ runs-on: ubuntu-24.04\n+ timeout-minutes: 10\n+ steps:...
2025-07-05T00:42:18
golang/go
1e122e3894bd12407b0043ab25c2a5f665b3f6e5
ca384f76296af68b874cf9305a78ca5269c20956
syscall: remove TestRlimit It's more trouble than it's worth. New code should be using x/sys/unix anyhow. Fixes #40564 Fixes #51479 Change-Id: I1c0e13f494380c1565e98359f088af9f52790b79 Reviewed-on: https://go-review.googlesource.com/c/go/+/390020 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor...
[ { "path": "src/syscall/syscall_unix_test.go", "patch": "@@ -326,33 +326,6 @@ func TestUnixRightsRoundtrip(t *testing.T) {\n \t}\n }\n \n-func TestRlimit(t *testing.T) {\n-\tvar rlimit, zero syscall.Rlimit\n-\tif err := syscall.Getrlimit(syscall.RLIMIT_CPU, &rlimit); err != nil {\n-\t\tt.Fatalf(\"Getrlimit: ...
2022-03-04T18:03:32
huggingface/transformers
314a45154650cc594d3ec9a8b1099e50daf17e5a
64a476b718728c76aea8a847aeabbf8074fe3202
fix TP issue within the device mesh (Tensor Parallel group) (#43105) Signed-off-by: Wang, Yi <yi.a.wang@intel.com>
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -1064,7 +1064,7 @@ def convert_and_load_state_dict_in_model(\n if getattr(mapping, \"distributed_operation\", None) is None:\n tp_layer = ALL_PARALLEL_STYLES[model.tp_plan[matched_tp_pattern]].__clas...
2026-01-05T13:45:43
vercel/next.js
bd1fc78bd83a0803655654097b52e12a3aa49574
3fb41561c4aea3ea8b102e3af56bc2d0919ff8cd
Add cpu-features to server external packages (#51946) <!-- 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 Contr...
[ { "path": "docs/02-app/02-api-reference/05-next-config-js/serverComponentsExternalPackages.mdx", "patch": "@@ -26,6 +26,7 @@ Next.js includes a [short list of popular packages](https://github.com/vercel/ne\n - `autoprefixer`\n - `aws-crt`\n - `bcrypt`\n+- `cpu-features`\n - `cypress`\n - `eslint`\n - `expre...
2023-06-29T00:52:04
huggingface/transformers
64a476b718728c76aea8a847aeabbf8074fe3202
486a7229ccb6e8a7bedd3aa4de043e19ee0311fb
Fix Qwen3OmniMoe Talker weight loading and config initialization (#43084) * fix modular_qwen3_omni_moe Signed-off-by: HuiyingLi <willwin.lee@gmail.com> * update generated configuration and modeling file Signed-off-by: HuiyingLi <willwin.lee@gmail.com> * fix tie weight keys Signed-off-by: HuiyingLi <willwin.lee@gm...
[ { "path": "src/transformers/models/qwen3_omni_moe/configuration_qwen3_omni_moe.py", "patch": "@@ -907,6 +907,7 @@ def __init__(\n self.audio_start_token_id = audio_start_token_id\n self.vision_start_token_id = vision_start_token_id\n self.speaker_id = speaker_id\n+ self.initia...
2026-01-05T13:36:13
golang/go
27ec2bf0dd67a11036626cef26899df7280b0000
81767e23c2f0e3edf0a329d9f00f5683c9851692
crypto/ed25519/internal/edwards25519: sync with filippo.io/edwards25519 Import the following commits (and minor comment fixes): * 17a0e59 - field: fix heap escape in SqrtRatio <Filippo Valsorda> * edec5b9 - field: fix SqrtRatio when arguments and receiver alias <Filippo Valsorda> * 26ce6fc - edwards25519:...
[ { "path": "src/crypto/ed25519/ed25519.go", "patch": "@@ -126,7 +126,10 @@ func newKeyFromSeed(privateKey, seed []byte) {\n \t}\n \n \th := sha512.Sum512(seed)\n-\ts := edwards25519.NewScalar().SetBytesWithClamping(h[:32])\n+\ts, err := edwards25519.NewScalar().SetBytesWithClamping(h[:32])\n+\tif err != nil ...
2022-01-05T13:55:55