repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
rust-lang/rust | 663e2b7e2904d68fda6d5c23fd1b8ad9fbd7ee03 | 0f6f68313d6d1b503c695bddd2f41dc09f6c1058 | refactor: move `convert` module to `stable_mir`
note that this commit delete `convert/error.rs`, we would use `SmirError::from_internal` instead.
**Unresolved questions:**
- There are still a few direct calls to rustc's internals scattered across `impl Stable`s, but most of them appear to be relatively stable, e.g., ... | [
{
"path": "compiler/rustc_smir/src/rustc_internal/mod.rs",
"patch": "@@ -17,13 +17,12 @@ use rustc_span::Span;\n use rustc_span::def_id::{CrateNum, DefId};\n use scoped_tls::scoped_thread_local;\n use stable_mir::Error;\n+use stable_mir::convert::{RustcInternal, Stable};\n \n use crate::rustc_smir::context:... | 2025-05-05T07:35:54 |
golang/go | 55e5b03cb359c591a2ca6ad8b6e9274d094b1632 | 6d810241ebd2a02bc63b7706ad68ae8d0edbfd8e | doc/go1.18: note changes to automatic go.mod and go.sum updates
Fixes #51242
Updates #45551
Change-Id: Iba6e6acd9a94d24e26fcdd125f1022430723ada7
Reviewed-on: https://go-review.googlesource.com/c/go/+/387920
Trust: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Bryan Mill... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -287,6 +287,20 @@ <h4 id=\"go-get\"><code>go</code> <code>get</code></h4>\n and installs packages, as before.\n </p>\n \n+<h4 id=\"go-mod-updates\">Automatic <code>go.mod</code> and <code>go.sum</code> updates</h4>\n+\n+<p><!-- https://go.dev/issue/45551 -->\n+ T... | 2022-02-24T22:01:14 |
huggingface/transformers | 2f9e21f5c58e73bf612228a3f9680fd2cf54f33d | f404f150aab0403359c85b59ea9a8c792f0cba4c | docs: Squared ReLU paper fix (#42931)
* docs: Squared ReLU paper fix
* fix: other papers with versioning in URL | [
{
"path": "docs/source/de/index.md",
"patch": "@@ -172,7 +172,7 @@ Die Bibliothek enthält derzeit JAX-, PyTorch- und TensorFlow-Implementierungen,\n 1. **[Trajectory Transformer](model_doc/trajectory_transformers)** (from the University of California at Berkeley) released with the paper [Offline Reinforceme... | 2025-12-17T18:13:44 |
vercel/next.js | bc05ce921a9a7fd3971d1366f7fc62ebdd9f6b63 | 0a4b6ef810fb080f8b832908bb28a427cb917a44 | Move Pages `render` out of server (#51678)
This removes calls for rendering files in `pages/` via the server code and relies instead relies on the bundled `routeModule` to perform the rendering.
Future cases that try to call the legacy render will hit a new:
```
Invariant: render should have used routeModule
```
E... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -53,7 +53,7 @@ import { isAppRouteRoute } from '../lib/is-app-route-route'\n import { normalizeMetadataRoute } from '../lib/metadata/get-metadata-route'\n import { fileExists } from '../lib/file-exists'\n import { getRouteLoaderEntry } from './web... | 2023-06-23T20:22:43 |
electron/electron | 0e7de568a2578707bce69d81f187709cfb0b79d0 | f984536523b4a80f42ffb326603e5b3ca2f3b8bf | :memo: Small fixes
[ci skip] | [
{
"path": "README-ko.md",
"patch": "@@ -78,4 +78,4 @@ npm install electron-prebuilt --save-dev\n - [`electron-jp`](https://electron-jp-slackin.herokuapp.com/) *(일본)* 커뮤니티\n \n [awesome-electron](https://github.com/sindresorhus/awesome-electron) 프로젝트에\n-커뮤니티가 운영중인 유용한 예제 어플리케이션과 도구, 리소스가 있으니 참고하기 바랍니다.\n+커뮤니... | 2016-05-03T06:34:47 |
rust-lang/rust | 96ad3882324199305495ce03f6c94fa3bfebf34c | 3a43ed2f377cb449856d53b564f4a464792ffdfe | refactor: impl `SmirError` for `stable_mir::Error` | [
{
"path": "compiler/rustc_smir/src/stable_mir/error.rs",
"patch": "@@ -7,6 +7,10 @@\n use std::fmt::{Debug, Display, Formatter};\n use std::{fmt, io};\n \n+use rustc_smir::SmirError;\n+\n+use crate::rustc_smir;\n+\n macro_rules! error {\n ($fmt: literal $(,)?) => { Error(format!($fmt)) };\n ($fmt:... | 2025-05-05T07:22:48 |
nodejs/node | 727b8204fa3fc3c192a4efa33ae9795e3add24f5 | 344d12c592ec9867a4cf325ba61bb94ccb29809b | test: unmark test-gc-http-client-onerror flaky
The test has not failed on FreeBSD in the last 100 runs and appears to
perhaps not be an issue anymore.
Closes: https://github.com/nodejs/node/issues/23089
test-gc-http-client-onerror: PASS,FLAKY
PR-URL: https://github.com/nodejs/node/pull/28429
Fixes: https://github.co... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -33,7 +33,5 @@ test-async-hooks-http-parser-destroy: PASS,FLAKY\n [$system==solaris] # Also applies to SmartOS\n \n [$system==freebsd]\n-# https://github.com/nodejs/node/issues/23089\n-test-gc-http-client-onerror: PASS,FLAKY\n \n [$system==aix]",
"... | 2019-06-25T21:37:24 |
huggingface/transformers | f404f150aab0403359c85b59ea9a8c792f0cba4c | b712a97d09efb3e6058d364c4e4783356a0250c8 | Remove ipex/ccl in CPU training doc (#42866)
* rm ipex and ccl on cpu training doc
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* fix format
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* Update docs/source/en/perf_train_cpu_many.md
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.co... | [
{
"path": "docs/source/en/perf_train_cpu_many.md",
"patch": "@@ -19,48 +19,21 @@ CPUs are commonly available and can be a cost-effective training option when GPU\n \n This guide demonstrates how to perform distributed training with multiple CPUs using a [DistributedDataParallel (DDP)](./perf_train_gpu_many#... | 2025-12-17T18:06:15 |
golang/go | c0840a7c720061f1293063bad5d5648267a02ba8 | c15527f0b05fe893e2630420747b128fe17566a6 | go/types, types2: method recv type parameter count must match base type parameter count
Check receiver type parameter count when type checking the method
signature and report a suitable error (don't rely on delayed
instantiation and possibly constraint type inference).
While at it, simplify blank name recoding and ty... | [
{
"path": "src/cmd/compile/internal/types2/assignments.go",
"patch": "@@ -294,15 +294,14 @@ func (check *Checker) typesSummary(list []Type, variadic bool) string {\n \treturn \"(\" + strings.Join(res, \", \") + \")\"\n }\n \n-func (check *Checker) assignError(rhs []syntax.Expr, nvars, nvals int) {\n-\tmeasu... | 2022-02-24T05:43:06 |
vercel/next.js | f2c01e246ebc2e29135e3da3ec943460dfcb241f | b973586d417f25f38ef220b59bca12e1a1089ca5 | Fix bug with `imports` field from a nested directory (vercel/turbo#5366)
### Description
When importing a `#foo` subpath import, the resolved file is relative
the the `package.json` containing the `imports` field, not the file with
the import statement. This fixes subpath imports to use the proper
context path during... | [
{
"path": "crates/turbopack-core/src/resolve/mod.rs",
"patch": "@@ -1343,7 +1343,7 @@ async fn resolve_package_internal_with_imports_field(\n };\n \n handle_exports_imports_field(\n- context,\n+ package_json_path.parent(),\n *package_json_path,\n resolve_options,\n ... | 2023-06-23T18:53:30 |
huggingface/transformers | b712a97d09efb3e6058d364c4e4783356a0250c8 | b05d2c4309ba28cecaa64acf14521fea5c829523 | Make gradient-checkpoint enabling tolerant of models without get_input_embeddings (#42558)
* add embedding getter
* modify your own logic
* a common test
* some adapters are not PreTrainedModel s
* few fixes
* implement correct-ish fix?
* fixup
* this is needed likely
* woops
* solving some cross-imports issu... | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -36,6 +36,7 @@\n is_librosa_available,\n is_mistral_common_available,\n is_mlx_available,\n+ is_numba_available,\n is_pretty_midi_available,\n )\n ",
"additions": 1,
"deletions": 0,
"language": "Python"
},
{
"path"... | 2025-12-17T16:30:50 |
nodejs/node | 344d12c592ec9867a4cf325ba61bb94ccb29809b | 8619b19a8099b22cbc985503c7d2082df0009fa0 | doc: simplify `process.resourceUsage()` section
Merge options list with its description to reduce redundancy
(some possible typos were also fixed and some periods added).
PR-URL: https://github.com/nodejs/node/pull/28499
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>... | [
{
"path": "doc/api/process.md",
"patch": "@@ -1821,60 +1821,48 @@ Additional documentation is available in the [report documentation][].\n added: v12.6.0\n -->\n \n-* Returns: {Object}\n- * `userCPUTime` {integer}\n- * `systemCPUTime` {integer}\n- * `maxRSS` {integer}\n- * `sharedMemorySize` {in... | 2019-07-01T15:04:44 |
golang/go | c15527f0b05fe893e2630420747b128fe17566a6 | 5a9fc946b42cc987db41eabcfcbaffd2fb310d94 | go/types, types2: implement adjCoreType using TypeParam.is
TypeParam.is also provides ~ (tilde) information which is needed
to fix #51229. Delete all code related to singleType as it's not
used anymore.
Also, remove TypeParam.hasTerms as it was not used.
For #51229.
Change-Id: Ie49b19d157230beecb17a444d1f17cf24aa4f... | [
{
"path": "src/cmd/compile/internal/types2/infer.go",
"patch": "@@ -591,15 +591,24 @@ func (check *Checker) inferB(pos syntax.Pos, tparams []*TypeParam, targs []Type)\n \treturn\n }\n \n+// adjCoreType returns the core type of tpar unless the\n+// type parameter embeds a single, possibly named type,\n+// in... | 2022-02-23T00:53:17 |
vercel/next.js | b448a50475ffdcdce6dd400c9009367a511d532d | 4dae429e8c1df0feec4d0a7953bcaa68b9928b11 | fix(docs): added missing dot (#51718)
Added missing dot in
```docs/02-app/01-building-your-application/06-configuring/03-environment-variables.mdx``` | [
{
"path": "docs/02-app/01-building-your-application/06-configuring/03-environment-variables.mdx",
"patch": "@@ -163,4 +163,4 @@ For example, if `NODE_ENV` is `development` and you define a variable in both `.\n \n ## Good to know\n \n-- If you are using a [`/src` directory](/docs/app/building-your-applicati... | 2023-06-23T18:48:47 |
rust-lang/rust | dee1b192cb4343cbe228dcf1e553b6f380595b53 | 8b1dbac4e508c4b27f0461ad2631b6df07f1af73 | fix: allow emcc | [
{
"path": "src/bootstrap/src/core/sanity.rs",
"patch": "@@ -334,7 +334,8 @@ than building it.\n || build.config.rust_std_features.contains(\"compiler-builtins-c\"))\n {\n let cc_tool = build.cc_tool(*target);\n- if !cc_tool.is_like_clang() {\n+ if !c... | 2025-07-03T22:17:36 |
huggingface/transformers | b05d2c4309ba28cecaa64acf14521fea5c829523 | 0001b3ee40be23bcac4f361e7684f1391a49a56b | Fix dtype quantizer (#42882)
* fix dtype quantizer
* fix
* rm print
* fix
* style
* fix
* revert
* bitnet
* fix
* gogo
* Update src/transformers/modeling_utils.py
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
* warn instead
* fix
* fix
---------
Co-authored-by: Mohamed ... | [
{
"path": "src/transformers/configuration_utils.py",
"patch": "@@ -1019,10 +1019,6 @@ def _remove_keys_not_serialized(self, d: dict[str, Any]) -> None:\n Checks and removes if there are any keys in the dict that should not be serialized when saving the config.\n Runs recursive check on the d... | 2025-12-17T15:51:34 |
electron/electron | 34b4ebd9f3e9b253cdc28043ce3382022b9fb2c6 | 098d72b741fc8d974e1f83d5b78d9d86af13a7b2 | Fix logic errors | [
{
"path": "script/bootstrap.py",
"patch": "@@ -42,15 +42,14 @@ def main():\n \n # Redirect to use local libchromiumcontent build.\n if args.build_libchromiumcontent:\n- build_libchromiumcontent(args.verbose, args.target_arch, args.disable_clang,\n- args.clang_dir)\n+ bu... | 2016-05-02T12:15:10 |
golang/go | 5a9fc946b42cc987db41eabcfcbaffd2fb310d94 | 4edefe95689c31846a73e36b3e0723c924def45d | cmd/go: avoid +incompatible major versions if a go.mod file exists in a subdirectory for that version
Previous versions of the 'go' command would reject a pseudo-version
passed to 'go get' if that pseudo-version had a mismatched major
version and lacked a "+incompatible" suffix. However, they would
erroneously accept ... | [
{
"path": "src/cmd/go/internal/modfetch/coderepo.go",
"patch": "@@ -305,17 +305,46 @@ func (r *codeRepo) convert(info *codehost.RevInfo, statVers string) (*RevInfo, e\n \t//\n \t// (If the version is +incompatible, then the go.mod file must not exist:\n \t// +incompatible is not an ongoing opt-out from sema... | 2022-02-23T16:55:08 |
huggingface/transformers | 0001b3ee40be23bcac4f361e7684f1391a49a56b | 99be81e77cb8aebfc52671611df3144bd2f03dc4 | [kernels] Add user_agent to track kernels metrics (#41689)
* add wrapper
* fix style
* change the name to get_kernel
* nit | [
{
"path": "src/transformers/integrations/eetq.py",
"patch": "@@ -97,7 +97,7 @@ def replace_with_eetq_linear(model, modules_to_not_convert: list[str] | None = N\n Names of the modules to not convert in `EetqLinear`. In practice we keep the `lm_head` in full precision\n for numerical s... | 2025-12-17T15:43:32 |
rust-lang/rust | a8ab02c4641de4e3ec634b3479fddb60e4ad7763 | 83148cb28343bf15ed469f946915c73deeaa9a28 | Fix several issues with `manual_is_multiple_of`
- `&a % &b == 0` compiles, but requires dereferencing `b` when
replacing with `a.is_multiple_of(b)`.
- In `a % b == 0`, if type of `a` is not certain,
`a.is_multiple_of(b)` might not be typable.
- In `a % b == 0`, `a` and `b` must be unsigned integers, not any
arbi... | [
{
"path": "clippy_lints/src/operators/manual_is_multiple_of.rs",
"patch": "@@ -2,11 +2,12 @@ use clippy_utils::consts::is_zero_integer_const;\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::msrvs::{self, Msrv};\n use clippy_utils::sugg::Sugg;\n+use clippy_utils::ty::expr_type_is_cer... | 2025-07-03T18:22:18 |
vercel/next.js | 5d54eaaf18a9cc3efcfdb106dac4ec57eca06c0e | d457e989ff83e11a9cbcf64115fa9be167f1e51e | type check tests (and convert next-test-utils.js to ts) (#51071)
Enables type checking for tests in CI and fixes a bunch of things related to that | [
{
"path": "package.json",
"patch": "@@ -26,6 +26,7 @@\n \"genstats\": \"cross-env LOCAL_STATS=true node .github/actions/next-stats-action/src/index.js\",\n \"git-reset\": \"git reset --hard HEAD\",\n \"git-clean\": \"git clean -d -x -e node_modules -e packages -f\",\n+ \"typescript\": \"tsc -... | 2023-06-23T17:42:50 |
electron/electron | cc24bea813305dc8a13e58aa4ff437550c4f4b84 | 459a65d296aff06a9a6183ed4499a70f8f669cd4 | Fix pylint warnings | [
{
"path": "script/bootstrap.py",
"patch": "@@ -174,9 +174,9 @@ def update_win32_python():\n execute_stdout(['git', 'clone', PYTHON_26_URL])\n \n \n-def build_libchromiumcontent(is_verbose_mode, target_arch):\n+def build_libchromiumcontent(verbose, target_arch):\n args = [os.path.join(SOURCE_ROOT, 's... | 2016-05-02T07:38:58 |
golang/go | 4edefe95689c31846a73e36b3e0723c924def45d | 8c5904f149a4863183925c71ce4118413e7e0167 | cmd/compile: delay all call transforms if in a generic function
We changed to delaying all transforms of generic functions, since there
are so many complicated situations where type params can be used. We
missed changing so that all Call expressions(not just some) are delayed
if in a generic function. This changes to ... | [
{
"path": "src/cmd/compile/internal/noder/expr.go",
"patch": "@@ -114,7 +114,7 @@ func (g *irgen) expr0(typ types2.Type, expr syntax.Expr) ir.Node {\n \n \tcase *syntax.CallExpr:\n \t\tfun := g.expr(expr.Fun)\n-\t\treturn Call(pos, g.typ(typ), fun, g.exprs(expr.ArgList), expr.HasDots)\n+\t\treturn g.callExp... | 2021-11-01T02:45:21 |
huggingface/transformers | 99be81e77cb8aebfc52671611df3144bd2f03dc4 | 171e079edc52bc91c6f485fed2d54a77b9798683 | fix Dtensor and tensor mismatch for Col/RowRep (#42924)
* begin Moe test tensor parallel
* create tiny moe model + fix test tensor parallel Moe
eaeaae
* create tiny moe model + fix test tensor parallel Moe
eaeaae
fix tensor parallel MoE test
fix tensor parallel MoE test
* fix backward pass test in tensor paralle... | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -767,6 +767,15 @@ def __init__(self, **kwargs):\n super().__init__(use_dtensor=False, **kwargs)\n \n \n+class ColwiseParallelReplicate(ColwiseParallel):\n+ \"\"\"\n+ Colwise parallel with output layouts replicated.\n+ ... | 2025-12-17T15:39:37 |
rust-lang/rust | 08f5ebafa62a5fd3a30bc3f8e4f2c50ae2a2ecbf | 321542e6117c6e3a5ac2bf50310e87afdde50668 | Mark unsuffixed type literals are type uncertain by default
However, if they appear within the context of a function argument, they
will be marked as certain, as they might eventually be considered `i32`
by default if the context is not more specific.
Also, in the case of binary expressions, if one of the side is
unc... | [
{
"path": "clippy_utils/src/ty/type_certainty/mod.rs",
"patch": "@@ -12,6 +12,7 @@\n //! be considered a bug.\n \n use crate::paths::{PathNS, lookup_path};\n+use rustc_ast::{LitFloatType, LitIntType, LitKind};\n use rustc_hir::def::{DefKind, Res};\n use rustc_hir::def_id::DefId;\n use rustc_hir::intravisit:... | 2025-03-28T15:07:41 |
vercel/next.js | 889e2203a5ce97ddd566d0f7ecec7ac43fbd82f0 | bb38fe5f08e6bfc4e92dbb0763980797998d55a9 | Update page.tsx tw className (#49040)
I changed the tailwindcss code, which is written differently than the
other elements in `app/page.tsx`
<!-- 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 sectio... | [
{
"path": "packages/create-next-app/templates/app-tw/ts/app/page.tsx",
"patch": "@@ -59,7 +59,7 @@ export default function Home() {\n \n <a\n href=\"https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app\"\n- className=\"grou... | 2023-06-23T15:11:59 |
nodejs/node | 8df76e6d47896322aba7a7945d4c7802fc3d5936 | f5f8a18831daa22ca6dcb1ec0b516ee5e1311bf8 | test: fix assertion argument order in test-https-agent.js
PR-URL: https://github.com/nodejs/node/pull/28383
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi P... | [
{
"path": "test/parallel/test-https-agent.js",
"patch": "@@ -68,5 +68,5 @@ server.listen(0, function() {\n \n \n process.on('exit', function() {\n- assert.strictEqual(N * M, responses);\n+ assert.strictEqual(responses, N * M);\n });",
"additions": 1,
"deletions": 1,
"language": "JavaScript"
... | 2019-06-21T21:31:12 |
huggingface/transformers | 171e079edc52bc91c6f485fed2d54a77b9798683 | a05e0e27ca1277a062344b93d4b6d2481ad1f601 | Remove tied weight keys Sam2Video (#42840)
* Fix tied weight keys sam2 video
* fix edgetam_video
* fix modular sam3_tracker_video | [
{
"path": "src/transformers/models/edgetam_video/modeling_edgetam_video.py",
"patch": "@@ -1976,11 +1976,6 @@ class EdgeTamVideoModel(EdgeTamVideoPreTrainedModel):\n input_modalities = (\"video\", \"text\")\n _can_record_outputs = {\"mask_decoder_attentions\": OutputRecorder(EdgeTamVideoTwoWayAttent... | 2025-12-17T15:01:45 |
rust-lang/rust | e04574454cc4a548e43a02e5cc8639263d8e05eb | 60a13592b739c8de3931e14f3682ceb0b9088e44 | Fix some things with builtin derives
1. Err on unions on derive where it's required.
2. Err on `#[derive(Default)]` on enums without `#[default]` variant.
3. Don't add where bounds `T: Default` when expanding `Default` on enums (structs need that, enums not).
Also, because I was annoyed by that, in minicore, add a... | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/macro_expansion_tests/builtin_derive_macro.rs",
"patch": "@@ -746,3 +746,83 @@ struct Struct9<#[pointee] T, U>(T) where T: ?Sized;\n 623..690: `derive(CoercePointee)` requires `T` to be marked `?Sized`\"#]],\n );\n }\n+\n+#[test]\n+fn uni... | 2025-07-03T20:05:56 |
golang/go | b2dfec100afa7739dc1845f1009dad2d7163116c | 78e99761fc4bf1f5370f912b8a4594789c2f09f8 | doc/go1.18: fix typo in AMD64 port section
Change-Id: I234ae7988fd3c7a41c08e72664f8db811eb23bb1
Reviewed-on: https://go-review.googlesource.com/c/go/+/387854
Trust: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Matt Layher <mdlayher@gmail.com>
Reviewed-by: Keith Randall <khr@golang.org> | [
{
"path": "doc/go1.18.html",
"patch": "@@ -182,7 +182,7 @@ <h3 id=\"amd64\">AMD64</h3>\n \n <p><!-- CL 349595 -->\n Go 1.18 introduces the new <code>GOAMD64</code> environment variable, which selects at compile time\n- a mininum target version of the AMD64 architecture. Allowed values are <code>v1</code>... | 2022-02-24T09:02:52 |
vercel/next.js | b7d49e0e0fcd874786f00877a1752a13f3e6538a | 5f3d7c43ea688e50a391e1681bb8c39fc77eea1c | Fix typo in 01-typescript.mdx (#51669)
Change 'Previous' to 'Previously' | [
{
"path": "docs/02-app/01-building-your-application/06-configuring/01-typescript.mdx",
"patch": "@@ -136,7 +136,7 @@ function Card<T extends string>({ href }: { href: Route<T> | URL })\n Next.js 13 has **enhanced type safety**. This includes:\n \n 1. **No serialization of data between fetching function and ... | 2023-06-23T14:13:19 |
nodejs/node | 46a73b9409a6b072c4c77106f760f094ac97a5e6 | 285e036ab629f7a3a31f7ea1edf26e039a56c06b | readline: fix position computation
The implementation of _getDisplayPos, used to compute the cursor
position and to find out how many lines to clear up when re-rendering
the readline output, was counting each line (except the last one) from
the input as one row, even if they were wraping. This caused some
rendering i... | [
{
"path": "lib/readline.js",
"patch": "@@ -732,8 +732,9 @@ Interface.prototype._getDisplayPos = function(str) {\n i++;\n }\n if (code === 0x0a) { // new line \\n\n+ // row must be incremented by 1 even if offset = 0 or col = +Infinity\n+ row += Math.ceil(offset / col) || 1;\n o... | 2019-06-17T22:34:27 |
electron/electron | 91911d2d3222195c1fa907b99e7f982dc70d318e | 03ce8a195a3c22fbde06b7fe55db5d038b7b3cc6 | Fix systemPreferences docs | [
{
"path": "docs/api/system-preferences.md",
"patch": "@@ -59,7 +59,7 @@ not (transparent windows won't work correctly when DWM composition is disabled):\n let browserOptions = {width: 1000, height: 800};\n \n // Make the window transparent only if the platform supports it.\n-if (process.platform !== 'win32'... | 2016-04-30T15:50:04 |
golang/go | 78e99761fc4bf1f5370f912b8a4594789c2f09f8 | e94f7df957b6cfbdfbed7092fd05628452c5e018 | go/types, types2: don't crash if comp. literal element type has no core type
Instead, report a suitable error.
Fixes #51335.
Change-Id: Ifce90cb7487b1e99c6b4221c0d43bacc0c39dca8
Reviewed-on: https://go-review.googlesource.com/c/go/+/387676
Trust: Robert Griesemer <gri@golang.org>
Run-TryBot: Robert Griesemer <gri@go... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -1360,6 +1360,10 @@ func (check *Checker) exprInternal(x *operand, e syntax.Expr, hint Type) exprKin\n \t\t\t// no composite literal type present - use hint (element type of enclosing type)\n \t\t\ttyp = hint\n \t\t\tbase, _ = deref(coreType(... | 2022-02-23T22:26:07 |
huggingface/transformers | a05e0e27ca1277a062344b93d4b6d2481ad1f601 | 05c7e4a487819f7f93f9b8125b63f4f5b826a365 | Add Pixio pre-trained models (#42795)
* Add Pixo
* Add Pixo
* Add test
* Add model_doc
* Add model_doc
* modularize
* modularize more
* Add Pixo
* Add Pixo
* Add test
* Add model_doc
* Add model_doc
* Use modular for Pixo
* missing backbone autodoc
* cleanup
* cleanup
* Revise converting
* rename
* r... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -819,6 +819,8 @@\n title: MobileViT\n - local: model_doc/mobilevitv2\n title: MobileViTV2\n+ - local: model_doc/pixio\n+ title: Pixio\n - local: model_doc/poolformer\n title: PoolFormer\n - local: mod... | 2025-12-17T14:55:21 |
rust-lang/rust | de58bdc3db9ca033adafcf9c798e227ffd0f8559 | ef78e985fbf350d1df42eadb3fc9a03155a4eb9e | Make __rust_alloc_error_handler_should_panic a function | [
{
"path": "src/allocator.rs",
"patch": "@@ -84,19 +84,34 @@ fn codegen_inner(\n &mangle_internal_symbol(tcx, alloc_error_handler_name(alloc_error_handler_kind)),\n );\n \n- let data_id = module\n- .declare_data(\n- &mangle_internal_symbol(tcx, OomStrategy::SYMBOL),\n- ... | 2025-07-03T16:17:48 |
huggingface/transformers | 05c7e4a487819f7f93f9b8125b63f4f5b826a365 | 0218f1a577e4b0b74b8d8599a9d904ebe1032f71 | Fix cuda index (#42897)
fix index
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/accelerate.py",
"patch": "@@ -182,6 +182,10 @@ def check_and_set_device_map(device_map: \"torch.device | int | str | dict | None\n device_map = {\"\": device_map}\n elif isinstance(device_map, str) and device_map not in [\"auto\", \"balanced\", \"balanced... | 2025-12-17T14:47:53 |
nodejs/node | fcf8fe9f1a556758eb9faf86bf74de2ddda805c8 | d3b10f66bd4943f7da9aa25415ea6900d7f48086 | 2019-07-03, Version 12.6.0 (Current)
Notable changes:
* build:
* Experimental support for building Node.js on MIPS architecture
is back. https://github.com/nodejs/node/pull/27992
* child_process:
* The promisified versions of `child_process.exec` and
`child_process.execFile` now both return a `Promise` wh... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -28,7 +28,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.5.0\">12.5.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.6.0\">12.6.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V12.md#12.5.0\"... | 2019-07-02T08:12:51 |
electron/electron | abb60ecd2ee58226b8c83249cd388ed028ffed69 | 586e5e2ba59be8c1e739515b95a2704e0fcaf1c5 | Fix autoUpdater error on OS X
If there is no localizedFailureReason, then then this will no longer be
added to the error string (which would result previously in it printing
'(null)' as part of the string) | [
{
"path": "atom/browser/auto_updater_mac.mm",
"patch": "@@ -90,9 +90,14 @@\n delegate->OnUpdateNotAvailable();\n }\n } error:^(NSError *error) {\n- delegate->OnError(base::SysNSStringToUTF8(\n- [NSString stringWithFormat:@\"%@: %@\",\n- error.localize... | 2016-05-01T10:25:27 |
golang/go | e94f7df957b6cfbdfbed7092fd05628452c5e018 | 163da6feb525a98dab5c1f01d81b2c705ead51ea | go/types, types2: generalize cleanup phase after type checking
Use a cleanup method and simple registration mechanism
for types that need some final processing before the end
of type checking.
Use cleanup mechanism instead of expandDefTypes mechanism
for *Named types. There is no change in functionality here.
Use cl... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -126,7 +126,7 @@ type Checker struct {\n \tuntyped map[syntax.Expr]exprInfo // map of expressions without final type\n \tdelayed []action // stack of delayed action segments; segments are processed in FIFO order\n \tobjPath... | 2022-02-22T21:06:52 |
vercel/next.js | df08b22e7ff783523ef8fc27913d6480e66f2db0 | 5abeb99b493b091185b39051181b02941180de87 | `docs`: fix generated app icons file extensions (#51562)
The file extensions of the generated file extensions section are not what it's supposed to be or not what documentation has specified.
Co-authored-by: Lee Robinson <9113740+leerob@users.noreply.github.com>
Co-authored-by: Jiachi Liu <4800338+huozhi@users.norepl... | [
{
"path": "docs/01-getting-started/02-project-structure.mdx",
"patch": "@@ -90,8 +90,8 @@ This page provides an overview of the file and folder structure of a Next.js pro\n | | ... | 2023-06-23T10:34:16 |
huggingface/transformers | 0218f1a577e4b0b74b8d8599a9d904ebe1032f71 | c67ec2c4c14477faf7b258eba532d2673ddad4a7 | Fix: Pass local_files_only from pipeline() to model loading (#42318)
* Fix: Propagate local_files_only to hub_kwargs and PEFT adapter loading
* Fix conflicts and code style
* Apply formatting fixes
* Apply style fixes
* Fix style: Apply minimal changes for local_files_only
* Style: Revert formatting and finalize ... | [
{
"path": "src/transformers/integrations/peft.py",
"patch": "@@ -84,6 +84,7 @@ def load_adapter(\n low_cpu_mem_usage: bool = False,\n is_trainable: bool = False,\n hotswap: bool | Literal[\"auto\"] = \"auto\",\n+ local_files_only: bool = False,\n adapter_kwargs: dict[s... | 2025-12-17T14:15:54 |
rust-lang/rust | 7cce6aff07fa81c4a69deec899a1b87348f727de | 44b7484252898fed16d117a3f01873dfa386aded | Make __rust_alloc_error_handler_should_panic a function | [
{
"path": "src/allocator.rs",
"patch": "@@ -1,6 +1,6 @@\n-use gccjit::{Context, FunctionType, GlobalKind, ToRValue, Type};\n #[cfg(feature = \"master\")]\n-use gccjit::{FnAttribute, VarAttribute};\n+use gccjit::FnAttribute;\n+use gccjit::{Context, FunctionType, RValue, ToRValue, Type};\n use rustc_ast::expa... | 2025-07-03T16:17:48 |
nodejs/node | 3ab457ec15a1aa54c8563f0416358c16fc32dce4 | cce78bbdf5ca4e2fad2766978cb29a2ee9631647 | doc: fix link from bootstrap README to BUILDING
PR-URL: https://github.com/nodejs/node/pull/28504
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Luigi Pinca <luig... | [
{
"path": "tools/bootstrap/README.md",
"patch": "@@ -1,2 +1,2 @@\n-See the main project [README.md](../../README.md#boxstarter) for details on how\n-to use this script.\n+See the main project [BUILDING.md](../../BUILDING.md#boxstarter) for details on\n+how to use this script.",
"additions": 2,
"dele... | 2019-07-02T01:39:28 |
electron/electron | bde412dd69a8a70cad6dac81d968af21650a1b4f | 83af5de572993d98395385bac932008052bb5ba5 | :memo: Fix typos
[ci skip] | [
{
"path": "docs-translations/ko-KR/api/frameless-window.md",
"patch": "@@ -42,7 +42,7 @@ var win = new BrowserWindow({ transparent: true, frame: false });\n [이슈](https://github.com/electron/electron/issues/1335)를 참고하세요.\n * 투명한 창은 크기를 조절할 수 없습니다. `resizable` 속성을 `true`로 할 경우 몇몇\n 플랫폼에선 크래시가 일어납니다.\n-* `... | 2016-04-30T16:11:21 |
vercel/next.js | 16eb80b0b0be13f04a6407943664b5efd8f3d7d0 | 89f36a98bc23594db386f9152bcfc3a712ceb62e | Fix standalone rendering for unmatched _next routes (#51611)
Request data flow in the server
```
request ---> router worker (1) ---> ipc ---> render worker app (2)
|-----> render worker pages (3)
```
When it's hitting `_next/*` unmatched routes in standal... | [
{
"path": "packages/next/src/server/app-render/use-flight-response.tsx",
"patch": "@@ -3,7 +3,8 @@ import type { FlightResponseRef } from './flight-response-ref'\n import { readableStreamTee } from '../stream-utils/node-web-streams-helper'\n import { encodeText, decodeText } from '../stream-utils/encode-dec... | 2023-06-22T22:58:04 |
huggingface/transformers | 79432f7a4c1a4dd39ebdc3622dfe2dd45eac2589 | ade62c2a0f4e8fbe2df9f00c733b6c04f112c135 | [`Auto`] Make processor subclasses overridable on load time (#42912)
fix | [
{
"path": "src/transformers/models/auto/feature_extraction_auto.py",
"patch": "@@ -348,13 +348,13 @@ def from_pretrained(cls, pretrained_model_name_or_path, **kwargs):\n )\n _ = kwargs.pop(\"code_revision\", None)\n feature_extractor_class.register_for_auto_class()\n- ... | 2025-12-17T13:15:34 |
rust-lang/rust | 2b22d0f0d2b9d0d71025065db93058e34f846600 | b94bd12401d26ccf1c3b04ceb4e950b0ff7c8d29 | Make __rust_alloc_error_handler_should_panic a function | [
{
"path": "compiler/rustc_codegen_cranelift/src/allocator.rs",
"patch": "@@ -84,19 +84,34 @@ fn codegen_inner(\n &mangle_internal_symbol(tcx, alloc_error_handler_name(alloc_error_handler_kind)),\n );\n \n- let data_id = module\n- .declare_data(\n- &mangle_internal_symbol(tcx... | 2025-07-03T16:17:48 |
golang/go | 163da6feb525a98dab5c1f01d81b2c705ead51ea | e534907f65f5a3eda47a069ea0aab33306c1d616 | go/types, types2: add "dynamic" flag to comparable predicate
A type implements a comparable interface only if the type
is statically known to be comparable. Specifically, a type
cannot contain (component) interfaces that are not statically
known to be comparable.
This CL adds a flag "dynamic" to the comparable predic... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -899,7 +899,7 @@ func (check *Checker) incomparableCause(typ Type) string {\n \t}\n \t// see if we can extract a more specific error\n \tvar cause string\n-\tcomparable(typ, nil, func(format string, args ...interface{}) {\n+\tcomparable(typ, ... | 2022-02-20T20:58:21 |
nodejs/node | ea736668500d640783242186334c38a144501961 | 5ab24edb025f8433d6f971d1cf8f9c51023a4f63 | deps: upgrade to libuv 1.30.1
This upgrade is a small patch release, fixing compilation
errors on Android, Cygwin, and uClibc - none of which are
tested in the CI.
PR-URL: https://github.com/nodejs/node/pull/28511
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Review... | [
{
"path": "deps/uv/CMakeLists.txt",
"patch": "@@ -260,8 +260,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL \"Android\")\n src/unix/linux-syscalls.c\n src/unix/procfs-exepath.c\n src/unix/pthread-fixes.c\n- src/unix/sysinfo-loadavg.c\n- src/unix/sysinfo-memory.c)\n+ src/unix/sysin... | 2019-07-02T15:07:43 |
electron/electron | d91cd424fec788bb1e5ee490e265964fd4022b63 | 5766f4703ad595ba3c3b1f06b1e21343839b1ff8 | Revert "Run tests for branches on appveyor"
This reverts commit 33370b18b3f468a3eb501e45c35626cdb031a81d.
This commit was wrongly pushed. | [
{
"path": "appveyor.yml",
"patch": "@@ -14,6 +14,10 @@ install:\n - cmd: SET PATH=C:\\python27;%PATH%\n - cmd: python script/cibuild\n \n+branches:\n+ only:\n+ - master\n+\n # disable build and test pahses\n build: off\n test: off",
"additions": 4,
"deletions": 0,
"language": "YAML"
}
... | 2016-04-30T12:21:11 |
huggingface/transformers | ade62c2a0f4e8fbe2df9f00c733b6c04f112c135 | 558666f26f3615d3a51f3cfb0ac0a5fe5fcc24e0 | [`Tokenizers`] Change treatment of special tokens (#42903)
* fix
* test | [
{
"path": "src/transformers/tokenization_utils_base.py",
"patch": "@@ -2152,9 +2152,10 @@ def save_pretrained(\n # Add tokenizer class to the tokenizer config to be able to reload it with from_pretrained\n tokenizer_class = self.__class__.__name__\n \n- # tokenizers backend don't need... | 2025-12-17T13:08:34 |
vercel/next.js | 89f36a98bc23594db386f9152bcfc3a712ceb62e | db4b9858cac1bed5a5043b68207c808b2286b58a | Hot reload when conflicted pages detected and when conflicts are resolved (#51516)
When conflicted pages occur between app and pages server used to throw error and you need to solve the conflicts and restart the server.
This PR capture the error during files aggregation, and send to client to display the error for fi... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/hot-reloader-client.tsx",
"patch": "@@ -209,7 +209,39 @@ function processMessage(\n router: ReturnType<typeof useRouter>,\n dispatcher: Dispatcher\n ) {\n- const obj = JSON.parse(e.data)\n+ let obj\n+ try {\n+ obj = JSON.parse(e.data... | 2023-06-22T22:32:14 |
golang/go | e534907f65f5a3eda47a069ea0aab33306c1d616 | d0c3b0116217a898f2e5d2d00cc5f0356ea5ad1e | go/types: delete unnecessary slice construction
CL 374294 made our check for incorrect type parameters constraints
eager, but failed to remove the construction of the bounds slice, which
was no longer used.
Change-Id: Ib8778fba947ef8a8414803e95d72c49b8f75c204
Reviewed-on: https://go-review.googlesource.com/c/go/+/386... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -569,7 +569,6 @@ func (check *Checker) collectTypeParams(dst **TypeParamList, list []*syntax.Fiel\n \n \t// Keep track of bounds for later validation.\n \tvar bound Type\n-\tvar bounds []Type\n \tfor i, f := range list {\n \t\t// Optimization... | 2022-02-18T14:19:47 |
huggingface/transformers | 558666f26f3615d3a51f3cfb0ac0a5fe5fcc24e0 | 1dc69bd6f7f5dcc1a32467be505dd873d573846e | Preprocessing fixes and more tests for LFM2-VL (#42784)
* fix processing bugs + add more test cases
* add more image processor tests
* refactor expand_text_with_placeholders
* CI fix | [
{
"path": "src/transformers/models/lfm2_vl/processing_lfm2_vl.py",
"patch": "@@ -165,63 +165,103 @@ def expand_text_with_placeholders(\n image_sizes: list[list[int]],\n use_image_special_tokens: bool,\n **images_kwargs,\n- ):\n- prompt_strings = []\n+ ) -> list[str]:\n+ ... | 2025-12-17T12:36:42 |
nodejs/node | 9868126546b93ed992cff094e1884af3a88460a3 | e008ca8b93af0eb5e360ee1244680c914a795344 | build: expose napi_build_version variable
Expose `napi_build_version` to allow `node-gyp` to make it
available for building native addons.
Fixes: https://github.com/nodejs/node-gyp/issues/1745
Refs: https://github.com/nodejs/abi-stable-node/issues/371
PR-URL: https://github.com/nodejs/node/pull/27835
Reviewed-By: Ben... | [
{
"path": "configure.py",
"patch": "@@ -34,6 +34,7 @@\n # imports in tools/\n sys.path.insert(0, 'tools')\n import getmoduleversion\n+import getnapibuildversion\n from gyp_node import run_gyp\n \n # imports in deps/v8/tools/node\n@@ -1147,6 +1148,10 @@ def configure_node(o):\n else:\n o['variables']['... | 2019-05-23T09:57:31 |
electron/electron | f65f8918c95ed2b83651309d48a91bb9b60f211d | 33370b18b3f468a3eb501e45c35626cdb031a81d | Fix specs on Windows when running without desktop session | [
{
"path": "spec/api-desktop-capturer-spec.js",
"patch": "@@ -1,7 +1,13 @@\n const assert = require('assert')\n const desktopCapturer = require('electron').desktopCapturer\n \n+const isCI = require('electron').remote.getGlobal('isCi')\n+\n describe('desktopCapturer', function () {\n+ if (isCI && process.pla... | 2016-04-30T11:51:09 |
vercel/next.js | db4b9858cac1bed5a5043b68207c808b2286b58a | f74968492107d250dbe574f51568a149a4be99ef | Add esm entry for next/server and alias @vercel/og (#51651)
The next-metadata-route-loader emitted content with `"next/server"` is still using cjs version which is not get tree-shaked on edge runtime, This PR adds a new esm entry for it and mapped it that on edge runtime so unused exports can be tree-shaked. This case... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -1077,6 +1077,9 @@ export default async function getBaseWebpackConfig(\n ...nodePathList, // Support for NODE_PATH environment variable\n ],\n alias: {\n+ // Alias 3rd party @vercel/og package to vendored og image package... | 2023-06-22T21:34:12 |
huggingface/transformers | 0dbf808573cb3433992a9d4177222fdccd67b4ee | a33ef4f94eb0df76147fa1eff69a39e0f875b8f7 | adds jais2 model support (#42684)
* adds jais2 model support
* updates tests
* addresses review comment
* review comments addressed
* addresses test review comments
* fixes date
* format issue fix
* Update src/transformers/models/jais2/__init__.py
Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.git... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -551,6 +551,8 @@\n title: HunYuanMoEV1\n - local: model_doc/ibert\n title: I-BERT\n+ - local: model_doc/jais2\n+ title: Jais2\n - local: model_doc/jamba\n title: Jamba\n - local: model_doc/jetmoe",
... | 2025-12-17T11:06:04 |
golang/go | d17b65ff54a1824288eb68fe3fbc8c7beed14bb6 | c9fe126c8bf25d14b233f1ccaff12c1bffbd4971 | crypto/x509, runtime: fix occasional spurious “certificate is expired”
As documented in #51209, we have been seeing a low-rate failure
on macOS builders caused by spurious x509 “certificate is expired” errors.
The root cause is that CFDateCreate takes a float64, but it is being
passed a uintptr instead. That is, we'r... | [
{
"path": "src/crypto/x509/internal/macos/corefoundation.go",
"patch": "@@ -48,7 +48,7 @@ func CFStringToString(ref CFRef) string {\n // TimeToCFDateRef converts a time.Time into an apple CFDateRef\n func TimeToCFDateRef(t time.Time) CFRef {\n \tsecs := t.Sub(time.Date(2001, 1, 1, 0, 0, 0, 0, time.UTC)).Sec... | 2022-02-22T14:05:21 |
nodejs/node | e008ca8b93af0eb5e360ee1244680c914a795344 | 3c9c89df128cb4c25d9161a1789d44442e99c6fb | test: fix flaky test-vm-timeout-escape-nexttick
PR-URL: https://github.com/nodejs/node/pull/28461
Fixes: https://github.com/nodejs/node/issues/24120
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/known_issues/known_issues.status",
"patch": "@@ -22,5 +22,3 @@ test-vm-timeout-escape-promise: PASS,FLAKY\n [$system==aix]\n \n [$arch==arm]\n-# https://github.com/nodejs/node/issues/24120\n-test-vm-timeout-escape-nexttick: PASS,FLAKY",
"additions": 0,
"deletions": 2,
"language":... | 2019-06-27T23:36:47 |
electron/electron | 214eb0430c823f5196cc5989a6189bd774caa142 | 2a55d935015e73baaae87dd341ad01ef13b54152 | Fix a few failing tests on Windows | [
{
"path": "spec/api-browser-window-spec.js",
"patch": "@@ -173,11 +173,12 @@ describe('browser-window module', function () {\n })\n \n it('does not crash in did-fail-provisional-load handler', function (done) {\n+ this.timeout(10000)\n w.webContents.once('did-fail-provisional-load', funct... | 2016-04-30T09:21:18 |
vercel/next.js | 82abde8dd9d0447f70dc36019ceb73617066c632 | 487f5d6b6fa963de972375d4820dada1a489229c | Revert "[Docs] Fix validator action breaking when PRs originate from … (#51674)
Nvm, it doesn't work. | [
{
"path": ".github/actions/validate-docs-links/README.MD",
"patch": "@@ -4,8 +4,6 @@ This action ensures that internal links in `.mdx` files in the `/docs/` director\n \n The action is triggered by the workflow defined in `.github/workflows/validate-docs-links.yml`.\n \n-> **Note**: This action runs on `pul... | 2023-06-22T19:50:14 |
huggingface/transformers | a33ef4f94eb0df76147fa1eff69a39e0f875b8f7 | dd24a80666b72c85f02c6cf9df18164cc174ab74 | Rewrite for loop in get_image_features with torch ops for export (#42822)
* Rewrite ministral 3 for loop with torch ops for export
* Fix Llava as well
* Format
* make fix-copies
* Accidentally reversed ministral changes
* Update modular mistral3
* Update .md
* Update .md | [
{
"path": "src/transformers/models/llava/modeling_llava.py",
"patch": "@@ -202,10 +202,11 @@ def get_image_features(\n image_features = self.multi_modal_projector(selected_image_feature)\n \n if \"image_sizes\" in kwargs:\n- split_sizes = [\n- (height // self.vision... | 2025-12-17T09:53:37 |
golang/go | c9fe126c8bf25d14b233f1ccaff12c1bffbd4971 | 851ecea4cc99ab276109493477b2c7e30c253ea8 | doc/go1.18: fix a few small typos, add a few commas
Updates #47694
Change-Id: I6c1c3698fdd55fe83c756f28776d1d26dba0a9df
Reviewed-on: https://go-review.googlesource.com/c/go/+/386974
Trust: Alberto Donizetti <alb.donizetti@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@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/49030 -->\n Embedding a type parameter, or a pointer to a type parameter, as\n- an unnamed field in a struct type is not permitted. Similarly\n+ an... | 2022-02-19T17:13:52 |
nodejs/node | e669b8154cbf3bd5364b6b63321cbf615cc14fce | b12528f34935d6dd45ba00f06eebf261d867e104 | tools: fix v8 testing with devtoolset on ppcle
The devtoolset doesn't use or set the CXX, etc, env vars, so ignore them
if not present.
PR-URL: https://github.com/nodejs/node/pull/28458
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Rich Trott <rtrott... | [
{
"path": "tools/make-v8.sh",
"patch": "@@ -12,7 +12,9 @@ if [[ \"$ARCH\" == \"s390x\" ]] || [[ \"$ARCH\" == \"ppc64le\" ]]; then\n export BUILD_TOOLS=/home/iojs/build-tools\n export LD_LIBRARY_PATH=$BUILD_TOOLS:$LD_LIBRARY_PATH\n export PATH=$BUILD_TOOLS:$PATH\n- CXX_PATH=`which $CXX |grep g++`\n+ ... | 2019-06-27T21:37:42 |
electron/electron | 8aa88067ca0cef906e7f7bda97239c09335b4fcf | 6756f8c7af799c4a99cc7c9f5d7faaff655fd4d0 | Do not write to stdout in Electron when running on win32 CI machine
This makes Electron crash on CI machine somehow. | [
{
"path": "script/cibuild",
"patch": "@@ -39,7 +39,6 @@ def main():\n if os.environ.has_key('TARGET_ARCH'):\n target_arch = os.environ['TARGET_ARCH']\n \n- is_appveyor = (os.getenv('APPVEYOR') == 'True')\n is_travis = (os.getenv('TRAVIS') == 'true')\n if is_travis and PLATFORM == 'linux':\n p... | 2016-04-30T08:05:52 |
huggingface/transformers | dd24a80666b72c85f02c6cf9df18164cc174ab74 | 703da867001c5e2c8322b2c3395e6c4a5ba31022 | Support having multiple sub-processors (of any kind) in the same processor (#42667)
* support saving/loading multiple sub_processor of the same kind
* standardize all processors
* remove tokenizer_class from lasr
* fix modular
* fix kwargs logic
* override _load_tokenizer_from_pretrained in pixtral and fuyu
* fi... | [
{
"path": "src/transformers/models/audioflamingo3/processing_audioflamingo3.py",
"patch": "@@ -74,10 +74,6 @@ class AudioFlamingo3Processor(ProcessorMixin):\n Special token used to represent audio inputs in the chat template.\n \"\"\"\n \n- attributes = [\"feature_extractor\", \"tokenizer... | 2025-12-16T22:11:54 |
vercel/next.js | 487f5d6b6fa963de972375d4820dada1a489229c | 554e58c31a9cf71f2f950062f9d4eae8770690c6 | [Docs] Fix validator action breaking when PRs originate from forks (#51668) | [
{
"path": ".github/actions/validate-docs-links/README.MD",
"patch": "@@ -4,6 +4,8 @@ This action ensures that internal links in `.mdx` files in the `/docs/` director\n \n The action is triggered by the workflow defined in `.github/workflows/validate-docs-links.yml`.\n \n+> **Note**: This action runs on `pul... | 2023-06-22T19:22:29 |
golang/go | 851ecea4cc99ab276109493477b2c7e30c253ea8 | 0261fa616a16dc37b862691f79c7b4d301dfbe4a | encoding/xml: embedded reference to substruct causes XML marshaller to panic on encoding
When encoding a xml attribute is zero value (IsValid == false), we need
a `continue` to jump over the attribute. If not, followed marshalAttr
function will panic.
Fixes: #50164
Change-Id: I42e064558e7becfbf47728b14cbf5c7afa1e8798... | [
{
"path": "src/encoding/xml/marshal.go",
"patch": "@@ -512,7 +512,7 @@ func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo, startTemplat\n \t\t}\n \t\tfv := finfo.value(val, dontInitNilPointers)\n \n-\t\tif finfo.flags&fOmitEmpty != 0 && isEmptyValue(fv) {\n+\t\tif finfo.flags&fOmitEmpty != 0... | 2022-02-13T14:03:56 |
nodejs/node | 1095635a8aaf8658670a0610fea5dd775bac36d1 | 85496e94d3b7053f0954b15973c55bb1e8e1f11b | src: don't abort on EIO when restoring tty
EIO has been observed to be returned by the Linux kernel under some
circumstances. Reading through drivers/tty/tty_io*.c, it seems to
indicate the tty went away. Of course none of this is documented.
Fixes: https://github.com/nodejs/node/issues/28479
PR-URL: https://github.... | [
{
"path": "src/node.cc",
"patch": "@@ -692,7 +692,10 @@ void ResetStdio() {\n do\n err = tcsetattr(fd, TCSANOW, &s.termios);\n while (err == -1 && errno == EINTR); // NOLINT\n- CHECK_NE(err, -1);\n+ // EIO has been observed to be returned by the Linux kernel under some\n+ ... | 2019-07-01T06:34:25 |
electron/electron | 83af5de572993d98395385bac932008052bb5ba5 | f7d4ff90eac6c934f280599ce6e73f1b26cd27ea | :memo: Small fixes
[ci skip] | [
{
"path": "README-ko.md",
"patch": "@@ -5,9 +5,9 @@\n [](https://david-dm.org/electron/electron#info=devDependencies)\n [](http://atom-slack.herokua... | 2016-04-29T01:32:33 |
huggingface/transformers | 703da867001c5e2c8322b2c3395e6c4a5ba31022 | 9aef5ca4d7d3e1a651c8a06071bda4aac094363c | Fix add_dates script: Fetch github repo from url to check if model is new (#42878)
Fetch github repo from url to check if model is new | [
{
"path": "docs/source/en/model_doc/paddleocr_vl.md",
"patch": "@@ -13,7 +13,7 @@ specific language governing permissions and limitations under the License.\n rendered properly in your Markdown viewer.\n \n -->\n-*This model was released on 2025.10.16 and added to Hugging Face Transformers on 2025.12.10*\n+... | 2025-12-16T18:30:42 |
rust-lang/rust | 7ea812fd54f04070d16a5f69ff3b034814bf72b8 | 3c3f1e461cc6009e1dc025205e984a932bc0ab62 | nanosleep: fix argument name and add a missing argument read | [
{
"path": "src/tools/miri/src/shims/time.rs",
"patch": "@@ -330,18 +330,15 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n interp_ok(Scalar::from_i32(0)) // KERN_SUCCESS\n }\n \n- fn nanosleep(\n- &mut self,\n- req_op: &OpTy<'tcx>,\n- _rem: &OpTy<'tcx>... | 2025-07-03T15:47:34 |
vercel/next.js | 5871b0d6d7105343c8756343fd5afe9799d79653 | 5127c33fc9f73be485cbecc1538c2b23337c247e | Pages Error Route Module Rendering (#51374)
Continuing on changes to move the rendering logic into the bundles.
- Unifies edge render functions: `appRenderToHTML` and `pagesRenderToHTML` becomes `renderToHTML`
- When an error occurs, the error module's match is used so the module's internal render can be used (easing... | [
{
"path": "packages/next/src/build/webpack/loaders/next-edge-ssr-loader/index.ts",
"patch": "@@ -116,17 +116,16 @@ const edgeSSRLoader: webpack.LoaderDefinitionFunction<EdgeSSRLoaderQuery> =\n ${\n isAppDir\n ? `\n- import { renderToHTMLOrFlight as appRenderToHTML } from 'next/dist/es... | 2023-06-22T15:13:13 |
golang/go | 0261fa616a16dc37b862691f79c7b4d301dfbe4a | 903e7cc69971b2c7bf40a1e7ff2a9e3dd353dc5a | testdata: fix typo in comment
Change-Id: If3d5884d9f3f32606c510af5597529b832a8f4a9
Reviewed-on: https://go-review.googlesource.com/c/go/+/386934
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Trust: Dmitri Shuralyov <dmitshu... | [
{
"path": "src/cmd/compile/internal/types2/testdata/examples/methods.go2",
"patch": "@@ -35,7 +35,7 @@ func (t T1[[ /* ERROR must be an identifier */ ]int]) m2() {}\n // style. In m3 below, int is the name of the local receiver type parameter\n // and it shadows the predeclared identifier int which then can... | 2022-02-19T04:33:16 |
electron/electron | f7d4ff90eac6c934f280599ce6e73f1b26cd27ea | 4001f10e2d286bdbe0164f7135ab73a69e3d7e8e | added accelerator.md to api folders and translated (#5316)
* added accelerator.md to api folders and translated :tada:
* added file-object.md to api folder and translated
* added all folders to /tr-TR for broken links
* removed untouched documentation file
* broken link fix | [
{
"path": "docs-translations/tr-TR/README.md",
"patch": "@@ -5,82 +5,82 @@ Eğer öyleyse, atom.io üzerinden [mevcut sürümler](http://electron.atom.io/d\n ## SSS(Sıkça Sorulan Sorular)\n \n Bir problem(issue) bildirmeden önce sıkça sorulan sorulara göz atın:\n-* [Electron SSS](faq/electron-faq.md)\n+* [Electr... | 2016-04-28T23:28:46 |
nodejs/node | 85496e94d3b7053f0954b15973c55bb1e8e1f11b | 367ada49f192d9767d80701786d44f648e4b9a9d | lib: fix stack overflow check to not break on primitives
PR-URL: https://github.com/nodejs/node/pull/28338
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -587,7 +587,7 @@ function isStackOverflowError(err) {\n }\n }\n \n- return err.name === maxStack_ErrorName &&\n+ return err && err.name === maxStack_ErrorName &&\n err.message === maxStack_ErrorMessage;\n }\n ",
"additions": 1,
"delet... | 2019-06-21T20:08:38 |
huggingface/transformers | 9aef5ca4d7d3e1a651c8a06071bda4aac094363c | b1a2fba1c47e14390f17998218addf20c329e010 | Sam: Perception Encoder Audiovisual (#42905)
* Adding PE-Audio model
* Adding judge and FL-CLAP models
* lint
* Update to flatten ModernBERT
* Remove EMPTY_DICT default parameters
* Use AutoModel for modernbert
* Reference config directly instead of adding new properties to model
* Remove patch_size from `Patch... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -921,6 +921,8 @@\n title: MusicGen Melody\n - local: model_doc/parakeet\n title: Parakeet\n+ - local: model_doc/pe_audio\n+ title: PE Audio\n - local: model_doc/pop2piano\n title: Pop2Piano\n - local:... | 2025-12-16T17:54:30 |
vercel/next.js | aa7fdc67b98ac37b0776a8c773508cdc644862ea | 04b26ffeb33e58c3f34aa0f7dad67081319811ea | fix lockfile (#51650)
concurrent merges... | [
{
"path": "Cargo.lock",
"patch": "@@ -7404,7 +7404,7 @@ dependencies = [\n [[package]]\n name = \"turbopack-build\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230615.1#1ff1956dc18ff1805b2ac87f21f79e1abea75fc8\"\n+source = \"git+https://github.com/vercel/turbo.gi... | 2023-06-22T13:12:14 |
golang/go | 903e7cc69971b2c7bf40a1e7ff2a9e3dd353dc5a | e002cf4df7fcd9925916ed78df7ed2a49031ed2e | doc/go1.18: fix grammar error
sed 's/the/that/g'
Change-Id: I3f539817b055d54b0ec99346555ac91b756d9ed6
GitHub-Last-Rev: 2e7df1c3462d4b3a17e9a05ff178341f4ee369b0
GitHub-Pull-Request: golang/go#51267
Reviewed-on: https://go-review.googlesource.com/c/go/+/386854
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Dmit... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -84,7 +84,7 @@ <h3 id=\"generics\">Generics</h3>\n <li>\n The new\n <a href=\"/ref/spec#Predeclared_identifiers\">predeclared identifier</a>\n- <code>comparable</code> is an interface the denotes the set of all types which can be\n+ <code>comparable<... | 2022-02-18T22:43:31 |
huggingface/transformers | b1a2fba1c47e14390f17998218addf20c329e010 | 6994c5ac32d0f930030a330d396b8e8d248161a8 | fix `Dtensor` and `tensor` mismatch (#42906)
* begin Moe test tensor parallel
* create tiny moe model + fix test tensor parallel Moe
eaeaae
* create tiny moe model + fix test tensor parallel Moe
eaeaae
fix tensor parallel MoE test
fix tensor parallel MoE test
* fix backward pass test in tensor parallel for Dense... | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -758,6 +758,15 @@ def partition_tensor(self, param, empty_param, param_type, param_casting_dtype,\n return nn.Parameter(parameter, requires_grad=parameter.is_floating_point())\n \n \n+class LocalColwiseParallel(ColwiseParalle... | 2025-12-16T17:36:04 |
nodejs/node | 26b048effb23eb479fe0e10087860bb7f9862f2a | 9b77be4814cfe9cf816c05b325b2fa7bc6a92e55 | http2: remove square brackets from parsed hostname
Make `http2.connect()` work when using URLs with literal IPv6
addresses.
Fixes: https://github.com/nodejs/node/issues/28216
PR-URL: https://github.com/nodejs/node/pull/28406
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -2778,7 +2778,16 @@ function connect(authority, options, listener) {\n const protocol = authority.protocol || options.protocol || 'https:';\n const port = '' + (authority.port !== '' ?\n authority.port : (authority.protocol === 'http:' ? 80 : 443)... | 2019-06-24T16:15:58 |
vercel/next.js | ae92eb5d5927a569ff52d8506df14ef538365a2b | 17b4617e4ce34027514bb5765714c39f60eb1301 | fix(ci): Turbopack Clippy CI (vercel/turbo#5339)
### Description
<!--
✍️ Write a short summary of your work.
If necessary, include relevant screenshots.
-->
### Testing Instructions
<!--
Give a quick description of steps to test your changes.
-->
---------
Co-authored-by: --global <Nicholas Yang>
Co-authore... | [
{
"path": "crates/turbo-tasks-macros/src/lib.rs",
"patch": "@@ -1,6 +1,7 @@\n #![feature(proc_macro_diagnostic)]\n #![feature(allow_internal_unstable)]\n #![feature(box_patterns)]\n+#![allow(clippy::too_many_arguments)]\n \n mod derive;\n mod func;",
"additions": 1,
"deletions": 0,
"language": "... | 2023-06-22T12:14:21 |
huggingface/transformers | 4c64a8fb15de548ea3a684f6a621a9c3118318ef | b61da251692e5a107117618ca71d0b1ccd2e059c | fix: typehits for Causal LM models (#42885)
chore: fix missing typecheck imports | [
{
"path": "src/transformers/models/__init__.py",
"patch": "@@ -23,6 +23,7 @@\n from .albert import *\n from .align import *\n from .altclip import *\n+ from .apertus import *\n from .arcee import *\n from .aria import *\n from .audio_spectrogram_transformer import *\n@@ -107,6 +10... | 2025-12-16T14:35:24 |
golang/go | e002cf4df7fcd9925916ed78df7ed2a49031ed2e | 61b5c866a9507524d0a3d7a7e0c892c975ca081b | strings: fix typo in comment
Remove unnecessary whitespace in noescape comment
Fixes #50634
Change-Id: I1c8d16c020b05678577d349470fac7e7ab8a10b7
Reviewed-on: https://go-review.googlesource.com/c/go/+/378815
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Dmitri Shuralyov <dmitshur@golang.org> | [
{
"path": "src/strings/builder.go",
"patch": "@@ -17,10 +17,9 @@ type Builder struct {\n \tbuf []byte\n }\n \n-// noescape hides a pointer from escape analysis. noescape is\n-// the identity function but escape analysis doesn't think the\n-// output depends on the input. noescape is inlined and currently\... | 2022-01-15T19:43:05 |
electron/electron | 3e4ecd6d6eb1dfdef6319b98b63fb70c57ec7670 | 6979ea7fda87c8145de087c0027653cc53634c72 | Fix logo
So the inner dot is filled | [
{
"path": "default_app/index.html",
"patch": "@@ -37,10 +37,12 @@\n margin-right: 0.4em;\n }\n \n- .svg-stroke,\n- .svg-fill {\n+ .svg-stroke {\n stroke: #9feaf9;\n }\n+ .svg-fill {\n+ fill: #9feaf9;\n+ }\n \n .vertical-middle {\n vertical-align: middle !imp... | 2016-04-27T01:42:03 |
rust-lang/rust | b007ecb46763a1287e955c07aeb38a22798e3fe2 | 7d5579d5e484f04ce019daeb4d97ed7089c1130c | fix: resolve item in match bind
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com> | [
{
"path": "src/tools/rust-analyzer/crates/hir/src/source_analyzer.rs",
"patch": "@@ -765,7 +765,8 @@ impl<'db> SourceAnalyzer<'db> {\n },\n };\n \n- let res = resolve_hir_path(db, &self.resolver, path, HygieneId::ROOT, Some(store))?;\n+ let body_owner = self.resolver.body_o... | 2025-06-28T15:35:46 |
huggingface/transformers | 24275124c69477762e1dd6af2bb05d9513098a7e | 4d6516e2565af683f6edad4ae8d13caa6a70bf0b | Add local kernel loading support to KernelConfig(). (#42800)
* add add_to_mapping_local for KernelConfig
* refactor kernel_mapping format
* lint code
* specify the kernel path
* fix `abs/path`
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
* rename check_kernel_from_local to use_l... | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -3533,7 +3533,9 @@ def set_use_kernels(self, use_kernels, kernel_config):\n \n # This is a context manager to override the default kernel mapping\n # We are calling kernelize inside this context manager using the us... | 2025-12-16T13:02:30 |
vercel/next.js | 99ec3057d7da90bdcd4b58e144aa7cbc326dcc9b | 6f61fb40682ef3a5b7882ddbcb3cb93f3dc58b88 | add edge rendering for app dir for Turbopack (#51631)
## What
* reland #50830
* remove Object.hasOwn
* fix CSS chunks in edge runtime
## Turbopack Changes
* https://github.com/vercel/turbo/pull/5253 <!-- OJ Kwon -
fix(turbopack): enable runtime flag -->
* https://github.com/vercel/turbo/pull/5295 <!-- Wi... | [
{
"path": "Cargo.lock",
"patch": "@@ -400,7 +400,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230615.1#1ff1956dc18ff1805b2ac87f21f79e1abea75fc8\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-06-22T09:43:59 |
nodejs/node | 9b77be4814cfe9cf816c05b325b2fa7bc6a92e55 | 6271ef005eb311c819b7ab041e09f50e4155ec1e | doc: fix swapedOut typo
This corrects a typo in the process.resourceUsage() docs. The
field is named swappedOut, not swapedOut.
PR-URL: https://github.com/nodejs/node/pull/28497
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.... | [
{
"path": "doc/api/process.md",
"patch": "@@ -1829,7 +1829,7 @@ added: REPLACEME\n * `unsharedStackSize` {integer}\n * `minorPageFault` {integer}\n * `majorPageFault` {integer}\n- * `swapedOut` {integer}\n+ * `swappedOut` {integer}\n * `fsRead` {integer}\n * `fsWrite` {integer}\n ... | 2019-07-01T14:28:51 |
golang/go | 61b5c866a9507524d0a3d7a7e0c892c975ca081b | d27248c52f8545aa3c3de07e3d2568da5c5df785 | doc/go1.18: document Go 1.17 bootstrap and //go:build fix
For #44505 and #41184.
Change-Id: I9503292dace1aa60de167ca5807bf131554465b9
Reviewed-on: https://go-review.googlesource.com/c/go/+/386774
Trust: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Jeremy Faller <jeremy@golang.org> | [
{
"path": "doc/go1.18.html",
"patch": "@@ -250,6 +250,8 @@ <h3 id=\"fuzzing\">Fuzzing</h3>\n \n <h3 id=\"go-command\">Go command</h3>\n \n+<h4 id=\"go-get\"><code>go</code> <code>get</code></h4>\n+\n <p><!-- golang.org/issue/43684 -->\n <code>go</code> <code>get</code> no longer builds or installs package... | 2022-02-18T19:51:58 |
electron/electron | 340b7220f126e8f9d590a76b34604a085c833cab | 850bc2d44319289d04ec64dde542dc00b5ff64bc | Fix #3075 by not caching the displays (id is not persistent on Windows) | [
{
"path": "atom/browser/api/atom_api_screen.cc",
"patch": "@@ -49,7 +49,6 @@ std::vector<std::string> MetricsToArray(uint32_t metrics) {\n \n Screen::Screen(v8::Isolate* isolate, gfx::Screen* screen)\n : screen_(screen) {\n- displays_ = screen_->GetAllDisplays();\n screen_->AddObserver(this);\n Ini... | 2016-04-28T15:46:41 |
huggingface/transformers | 4d6516e2565af683f6edad4ae8d13caa6a70bf0b | 24b311eead0ee199ed6e77f8b562f01b7afa924d | Simplify tie weights logic (#42895)
* fix
* let's not use source backup, clearer to use original name imo
* fix
* use a set
* simplify
* style
* add comment | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2387,11 +2387,6 @@ def tie_weights(self, missing_keys: Optional[set[str]] = None, recompute_mapping\n \n tied_keys = list(tied_keys.items())\n for i, (target_param_name, source_param_name) in enumerate(tied_keys):\n- # ... | 2025-12-16T11:58:21 |
vercel/next.js | 6f61fb40682ef3a5b7882ddbcb3cb93f3dc58b88 | c6313606c9c80e5b2534e18e92942ecb0ade34b4 | bugfix: route interception with dynamic paths (#51526)
### What?
Paths with interception markers adjacent to dynamic segments are not correctly parsed, which leads to the path match logic failing.
### Why?
`getParametrizedRoutes` checks for brackets but isn't expecting to receive an interception marker. For example,... | [
{
"path": "packages/next/src/server/app-render/get-segment-param.tsx",
"patch": "@@ -1,3 +1,4 @@\n+import { INTERCEPTION_ROUTE_MARKERS } from '../future/helpers/interception-routes'\n import { DynamicParamTypes } from './types'\n \n /**\n@@ -7,6 +8,16 @@ export function getSegmentParam(segment: string): {\n... | 2023-06-22T09:43:24 |
nodejs/node | 20d099af7a1fc103ecfb9a4afe59fd2fdcbe7802 | 4565292a771249e0bea3e8b1a69c5c6a7549fffa | src: fix small memory leak
PR-URL: https://github.com/nodejs/node/pull/28452
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -260,11 +260,14 @@ void ContextifyContext::MakeContext(const FunctionCallbackInfo<Value>& args) {\n if (try_catch.HasCaught()) {\n if (!try_catch.HasTerminated())\n try_catch.ReThrow();\n+ delete context;\n return;\n }\n \n- if (context-... | 2019-06-27T16:36:56 |
huggingface/transformers | 24b311eead0ee199ed6e77f8b562f01b7afa924d | 0f896619724ad8bfe43bae91d0208f80817e5a5b | fix FastSpeech2ConformerTokenizer crash in tokenize (#42888)
Signed-off-by: Wang, Yi <yi.a.wang@intel.com> | [
{
"path": "src/transformers/models/fastspeech2_conformer/tokenization_fastspeech2_conformer.py",
"patch": "@@ -79,6 +79,7 @@ def __init__(\n unk_token=unk_token,\n pad_token=pad_token,\n should_strip_spaces=should_strip_spaces,\n+ special_tokens_pattern=\"none\... | 2025-12-16T11:42:38 |
golang/go | d35ed094864617d82c5701f56811ad68b37eda6e | eaf040502b763a6f00dced35e4173c2ce90eb52f | cmd/compile: fix importers to deal with recursion through type constraints
The code for issue #51219 reveals bugs in the types1 and types2
importers that can occur for recursive types that are recursive through
the type constraint.
The crash in the issue is caused by the types1 bug, which leads to the
production of a... | [
{
"path": "src/cmd/compile/internal/importer/iimport.go",
"patch": "@@ -180,6 +180,14 @@ func ImportData(imports map[string]*types2.Package, data, path string) (pkg *typ\n \t\tp.doDecl(localpkg, name)\n \t}\n \n+\t// SetConstraint can't be called if the constraint type is not yet complete.\n+\t// When type ... | 2022-02-17T04:11:52 |
rust-lang/rust | 9b351f13e298b753c333f8ec0ace85bf2594c9a6 | 60a13592b739c8de3931e14f3682ceb0b9088e44 | fix: Closure capturing for let exprs, again | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/closure.rs",
"patch": "@@ -1229,10 +1229,11 @@ impl InferenceContext<'_> {\n self.select_from_expr(*expr);\n }\n }\n- Expr::Let { pat: _, expr } => {\n+ Expr::Let { pat, expr } =>... | 2025-07-03T13:51:16 |
vercel/next.js | b714ac55c113bbb387b2501ec968028a2637acb4 | f59710e907c01ab57730eec0ae571dfff80f49fa | Support response aborting (#51594)
### What?
This is an alternative to #51330, which only support aborting the response (doesn't support back-pressure). If the client cancels the request (HMR update, navigates to another page, etc), we'll be able to detect that and stop pulling data from the dev's `ReadableStream` re... | [
{
"path": "packages/next/src/server/lib/render-server-standalone.ts",
"patch": "@@ -100,6 +100,20 @@ export const createServerHandler = async ({\n return\n }\n const proxyServer = getProxyServer(req.url || '/')\n+\n+ // http-proxy does not properly detect a client disconnect in newer\n+ ... | 2023-06-22T00:43:31 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.