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 |
|---|---|---|---|---|---|
electron/electron | 382dbb500cf3c7a01f5b210d2399ddc79abc8bf0 | b139d97f3deb8f07293c5d152637eee14f01d9c1 | Also fix setInterval for #481. | [
{
"path": "atom/common/lib/init.coffee",
"patch": "@@ -32,3 +32,4 @@ global.clearImmediate = timers.clearImmediate\n # timeout in browser process.\n if process.type is 'browser'\n global.setTimeout = wrapWithActivateUvLoop timers.setTimeout\n+ global.setInterval = wrapWithActivateUvLoop timers.setInterva... | 2014-08-07T06:23:28 |
golang/go | 1c6a2ea2ea4b04416f7344ee5effe81816c7200b | d743e67e0695a8082f03fd90bb07e71cf9f34cf1 | doc/go1.17: document time changes for Go1.17
Documents the newly implemented changes of
- Time.IsDST() method
- Addition of Time.UnixMilli, Time.UnixMicro and to-Time helpers UnixMicro, UnixMilli methods
- Addition of comma "," support as separator for fraction seconds
For #44513
Fixes #46026
Change-Id: Ib8d3449d3b0... | [
{
"path": "doc/go1.17.html",
"patch": "@@ -689,15 +689,26 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </p>\n \n <p><!-- CL 264077 -->\n- TODO: <a href=\"https://golang.org/cl/264077\">https://golang.org/cl/264077</a>: add Time.IsDST() to check if its Location is in D... | 2021-05-07T07:48:05 |
nodejs/node | 85c356c10eec14f96eaf92ffc9a8481b591e3652 | 349612b233a1af261991143b22e59461f075a987 | src: implement query callbacks for vm
This allows using a Proxy object as the sandbox for a VM context.
PR-URL: https://github.com/nodejs/node/pull/22390
Fixes: https://github.com/nodejs/node/issues/17480
Fixes: https://github.com/nodejs/node/issues/17481
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: ... | [
{
"path": "doc/api/vm.md",
"patch": "@@ -916,6 +916,48 @@ within which it can operate. The process of creating the V8 Context and\n associating it with the `sandbox` object is what this document refers to as\n \"contextifying\" the `sandbox`.\n \n+## vm module and Proxy object\n+\n+Leveraging a `Proxy` obje... | 2018-08-18T18:04:05 |
vercel/next.js | a79d85d1a9e4ef20fc39243675129b95259537ed | 862deb5a13a02f286e33b0d943a49cc92d55945c | Make static page prefetch apply on navigation in app dir (#44502)
The initial prefetching implementation was based on the response
returning below the common layout, however when static generation was
added the RSC payload for these changed to only include the router tree
patch and the fully rendered page.
Curre... | [
{
"path": "packages/next/src/client/components/reducer.ts",
"patch": "@@ -284,61 +284,6 @@ function invalidateCacheBelowFlightSegmentPath(\n )\n }\n \n-/**\n- * Fill cache with subTreeData based on flightDataPath that was prefetched\n- * This operation is append-only to the existing cache.\n- */\n-functio... | 2023-01-05T21:29:39 |
huggingface/transformers | e296c63cd486c7da646c9e00eefd6a94fdf443a7 | 1c65aef923343d12fc244da1b6c9caa2a3f5a808 | Fix wording in `torchscript.md` (#38004)
Fix wording in torchscript.md | [
{
"path": "docs/source/en/torchscript.md",
"patch": "@@ -16,7 +16,7 @@ rendered properly in your Markdown viewer.\n \n # TorchScript\n \n-[TorchScript](https://pytorch.org/docs/stable/jit.html) serializes PyTorch models into programs that can be executed in non-Python processes. This is especially advantage... | 2025-05-08T15:47:45 |
electron/electron | b139d97f3deb8f07293c5d152637eee14f01d9c1 | d29efb7f81811e48bd7d84da26a6d93d9f90e245 | Update brightray for devtools focus fix. | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 2f87b814ac97eb52628f0808842c99df0611a86e\n+Subproject commit b06cc7a19a6f8dc8de9243996a28878eaf3621ac",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2014-08-07T02:52:17 |
golang/go | d743e67e0695a8082f03fd90bb07e71cf9f34cf1 | dc8f87b7493e173d65d3587389cc41468ba16dc0 | doc/go1.17: document flag changes for Go 1.17
For #44513
Fixes #46010
Change-Id: I1fe638e5db0b4f3b64dbfbd948154a7c7a80afc9
GitHub-Last-Rev: d5bd53b1df202329661ffb1818803f2ec1d3f57a
GitHub-Pull-Request: golang/go#46150
Reviewed-on: https://go-review.googlesource.com/c/go/+/319273
Reviewed-by: Heschi Kreinick <heschi@g... | [
{
"path": "doc/go1.17.html",
"patch": "@@ -434,7 +434,7 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"flag\"><dt><a href=\"/pkg/flag/\">flag</a></dt>\n <dd>\n <p><!-- CL 271788 -->\n- TODO: <a href=\"https://golang.org/cl/271788\">https://golang.org/cl/271788</a... | 2021-05-23T14:05:15 |
nodejs/node | 349612b233a1af261991143b22e59461f075a987 | 2f9dabd0d84af8ed35feca3498116244cc41dad2 | deps: cherry-pick e1a7699 from upstream V8
Original commit message:
[api][runtime] Support all-in ctors of {Named,Indexed}PropertyHandlerConfiguration
- Explicitly allows construction of
{Named,Indexed}PropertyHandlerConfiguration with all the members filled.
Bug: v8:7612
Cq-Include-Trybots: lu... | [
{
"path": "common.gypi",
"patch": "@@ -29,7 +29,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.17',\n+ 'v8_embedder_string': '-node.18',\n \n # Enable disassembler for `--print-co... | 2018-08-18T17:41:51 |
vercel/next.js | 862deb5a13a02f286e33b0d943a49cc92d55945c | f38ddf9f2bec217b0634cb740c88e81455c02575 | Disable telemetry for `pnpm next` when contributing locally (#44610)
This PR fixes telemetry so it no longer reports `pnpm next` when
contributing to Next.js | [
{
"path": "package.json",
"patch": "@@ -41,10 +41,10 @@\n \"publish-stable\": \"lerna version --force-publish\",\n \"lint-staged\": \"lint-staged\",\n \"next-with-deps\": \"./scripts/next-with-deps.sh\",\n- \"next\": \"node --trace-deprecation --enable-source-maps packages/next/dist/bin/next\... | 2023-01-05T21:27:05 |
huggingface/transformers | 1c65aef923343d12fc244da1b6c9caa2a3f5a808 | f2909e024cca9b7846030a91d7d4cafbf0f6208d | Fix incorrect installation instructions (for issue #37476) (#37640)
* debugging issue 36758
* debugging issue 36758
* debugging issue 36758
* updated attn_mask type specification in _flash_attention_forward
* removed pdb
* added a blank line
* removed indentation
* update constants
* remove unnecessary files
... | [
{
"path": "README.md",
"patch": "@@ -78,7 +78,6 @@ Create and activate a virtual environment with [venv](https://docs.python.org/3/\n # venv\n python -m venv .my-env\n source .my-env/bin/activate\n-\n # uv\n uv venv .my-env\n source .my-env/bin/activate\n@@ -88,18 +87,18 @@ Install Transformers in your virt... | 2025-05-08T15:32:58 |
electron/electron | f455798c055fcbbec8e287589fd4f4354f302575 | e5a57b02d806b76b1006da70f584e7beca5e343f | Fix cpplint warnings. | [
{
"path": "brightray/browser/devtools_delegate.cc",
"patch": "@@ -139,7 +139,6 @@ DevToolsDelegate::DevToolsDelegate(\n }\n \n DevToolsDelegate::~DevToolsDelegate() {\n-\tLOG(ERROR) << \"delete!\";\n }\n \n void DevToolsDelegate::Stop() {",
"additions": 0,
"deletions": 1,
"language": "Unknown"
... | 2014-08-07T02:50:50 |
rust-lang/rust | 052293b0927e764c502c759cea87a75afd7a020a | af3bd7b89879b454edd3b549ff7a38b51ebe65ca | add printouts for debugging | [
{
"path": "library/stdarch/crates/intrinsic-test/src/main.rs",
"patch": "@@ -624,14 +624,21 @@ fn compare_outputs(\n };\n \n if !c.status.success() {\n- error!(\"Failed to run C program for intrinsic {}\", intrinsic.name);\n+ error!(\n+ ... | 2025-04-30T08:12:47 |
golang/go | d2b435117d3a1db612ad894125b8ab673a5a46ee | b1f48e8addb640b6cbfad56d790b7702ff9fd30d | test: fix error check messages for 2 types2 tests
Many compiler tests fail with -G=3 due to changes in error message format.
This commit fixes two of these tests, to ensure I am on the right track in review.
Updates #46447
Change-Id: I138956d536a1d48ca9198e6ddbfde13865bb5dd5
GitHub-Last-Rev: 0ed904b9fad5e6739fee02ab... | [
{
"path": "test/complit1.go",
"patch": "@@ -46,20 +46,20 @@ var (\n \t_ = &T{0, 0, \"\", nil} // ok\n \t_ = &T{i: 0, f: 0, s: \"\", next: {}} // ERROR \"missing type in composite literal|omit types within composite literal\"\n \t_ = &T{0, 0, \"\", {}} // ERROR \"missing type in ... | 2021-05-29T19:54:10 |
huggingface/transformers | f2b59c6173191089dadda197554435ce96ae6c84 | 4279057d702adf033c1d40d60ecb8395fadd7d03 | [caches] Raise exception on offloaded static caches + multi device (#37974)
* skip tests on >1 gpu
* add todo | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -2028,6 +2028,13 @@ def __init__(\n layer_device_map: Optional[Dict[int, Union[str, torch.device, int]]] = None,\n ):\n super().__init__(config, max_batch_size, max_cache_len, device, dtype, layer_device_map)\n+\n+ # TODO (... | 2025-05-08T13:37:36 |
vercel/next.js | b451a7ee8ac415e0bd8b28c1700acbe29b8c9ffc | 0f004312d3754ddfc93c399d3f45d85b9c238a31 | [docs/bugfix] fix code example for "Prefixing the Default Locale" - NEXT_LOCALE cookie usage (#44587)
For this trivial bug(fix) I did not create an issue prior.
The example code changed with #40728 for the "Prefixing the Default Locale" section in the docs has a minor bug, where the NEXT_LOCALE cookie is grabbed an... | [
{
"path": "docs/advanced-features/i18n-routing.md",
"patch": "@@ -183,7 +183,7 @@ export async function middleware(req: NextRequest) {\n }\n \n if (req.nextUrl.locale === 'default') {\n- const locale = req.cookies.get('NEXT_LOCALE') || 'en'\n+ const locale = req.cookies.get('NEXT_LOCALE')?.value |... | 2023-01-05T17:39:25 |
nodejs/node | 2f9dabd0d84af8ed35feca3498116244cc41dad2 | fa543c00cdaca6a6c68d1df4c68c061e2b82ca21 | deps: cherry-pick 9eb96bb from upstream V8
Original commit message:
[api] Avoid needlessly calling descriptor interceptors
Reland part of https://chromium-review.googlesource.com/c/v8/v8/+/816515.
Change-Id: I72ad85ffd162fc0563fc25cdf35189e894f9dc82
Reviewed-on: https://chromium-review.googlesource.... | [
{
"path": "common.gypi",
"patch": "@@ -29,7 +29,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.16',\n+ 'v8_embedder_string': '-node.17',\n \n # Enable disassembler for `--print-co... | 2018-08-18T17:41:43 |
electron/electron | d29efb7f81811e48bd7d84da26a6d93d9f90e245 | 53cedc6e5da7fbe77fc76142b2d03b9b817b9a74 | Force updating timeout when setTimeout is called, fixes #481. | [
{
"path": "atom/common/lib/init.coffee",
"patch": "@@ -25,3 +25,10 @@ wrapWithActivateUvLoop = (func) ->\n process.nextTick = wrapWithActivateUvLoop process.nextTick\n global.setImmediate = wrapWithActivateUvLoop timers.setImmediate\n global.clearImmediate = timers.clearImmediate\n+\n+# setTimeout needs to ... | 2014-08-07T02:37:00 |
rust-lang/rust | ef92b59242a98cc5f4e5ecaa873f02521eabd150 | f8782f778b77136f6aeccdd7b96a733a8a232ac5 | fix - aarch64_be tests | [
{
"path": "library/stdarch/ci/docker/aarch64_be-unknown-linux-gnu/Dockerfile",
"patch": "@@ -26,5 +26,8 @@ ENV AARCH64_BE_LIBC=\"${AARCH64_BE_TOOLCHAIN}/aarch64_be-none-linux-gnu/libc\"\n \n ENV CARGO_TARGET_AARCH64_BE_UNKNOWN_LINUX_GNU_LINKER=\"${AARCH64_BE_TOOLCHAIN}/bin/aarch64_be-none-linux-gnu-gcc\"\n ... | 2025-04-22T07:17:25 |
golang/go | cae68700cc76d3118e470180a1cbeac616f3dfad | 567ee865f690cde59d5aeadc04bcc926d2316db8 | runtime: fix formatting
Fix up a gofmt complaint from CL 310591.
Change-Id: I73534ef064a4cfc53539e5e65a8653e2cd684c64
Reviewed-on: https://go-review.googlesource.com/c/go/+/324090
Trust: Keith Randall <khr@golang.org>
Run-TryBot: Keith Randall <khr@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
TryBot-Resu... | [
{
"path": "src/runtime/internal/atomic/atomic_arm64.go",
"patch": "@@ -8,8 +8,8 @@\n package atomic\n \n import (\n-\t\"unsafe\"\n \t\"internal/cpu\"\n+\t\"unsafe\"\n )\n \n const (",
"additions": 1,
"deletions": 1,
"language": "Go"
}
] | 2021-06-02T00:00:22 |
huggingface/transformers | 9f8fffed3cbe6c322d6d15735d06d4a2c27ae16f | 06c16de3d3971e125232c2682ec99d282bb1a27d | Fix `Optional` typing (#38018)
* Fix
* trigger | [
{
"path": "src/transformers/models/beit/image_processing_beit_fast.py",
"patch": "@@ -237,7 +237,7 @@ def preprocess(\n \n return BatchFeature(data=data)\n \n- def post_process_semantic_segmentation(self, outputs, target_sizes: List[Tuple] = None):\n+ def post_process_semantic_segmentation(sel... | 2025-05-08T12:51:45 |
vercel/next.js | 0f004312d3754ddfc93c399d3f45d85b9c238a31 | ed59ad525a05234a24595e01aedb066f553b4e48 | Add lang, generateStaticParams, and server-only for i18n example (#44597)
Ensures static generation is used and the dictionary is not accidentally used in client components
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see [`contri... | [
{
"path": "examples/app-dir-i18n-routing/app/[lang]/layout.tsx",
"patch": "@@ -0,0 +1,19 @@\n+import { i18n } from '../../i18n-config'\n+\n+export async function generateStaticParams() {\n+ return i18n.locales.map((locale) => ({ lang: locale }))\n+}\n+\n+export default function Root({\n+ children,\n+ par... | 2023-01-05T16:29:04 |
nodejs/node | 114606723128a9c0f96ee4dcbf107c88f83cc44f | 9acf4c54927c14fde72d60824f9e1b47d30b74f2 | src: fix --without-ssl build
ProcessArgv referenced fields on PerProcessOptions that aren't there
when the build is configured --without-ssl.
PR-URL: https://github.com/nodejs/node/pull/22484
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Richard Lau <ri... | [
{
"path": "src/node.cc",
"patch": "@@ -2730,12 +2730,14 @@ void ProcessArgv(std::vector<std::string>* args,\n exit(9);\n }\n \n+#if HAVE_OPENSSL\n if (per_process_opts->use_openssl_ca && per_process_opts->use_bundled_ca) {\n fprintf(stderr, \"%s: either --use-openssl-ca or --use-bundled-ca can b... | 2018-08-23T16:19:03 |
electron/electron | a888e4b960497fb73c049f18978e2c25e3987df5 | 15c31ad1ba2d934c088829bebba3378205bd4f39 | linux: Only use global menu bar under Unity.
Fixes atom/atom#3182. | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -39,6 +39,8 @@\n #if defined(USE_X11)\n #include \"atom/browser/ui/views/global_menu_bar_x11.h\"\n #include \"atom/browser/ui/views/frameless_view.h\"\n+#include \"base/environment.h\"\n+#include \"base/nix/xdg_util.h\"\n #include \"chrome/browse... | 2014-08-06T15:34:16 |
rust-lang/rust | f8782f778b77136f6aeccdd7b96a733a8a232ac5 | 4d665d1a017b3bc5bc8a91e4c86e4c8b07ff7987 | Fix errors in incorrect SAE and ROUNDING parameters | [
{
"path": "library/stdarch/crates/core_arch/src/x86/avx512f.rs",
"patch": "@@ -15046,60 +15046,90 @@ pub fn _mm512_maskz_cvt_roundepu32_ps<const ROUNDING: i32>(k: __mmask16, a: __m5\n }\n \n /// Convert packed single-precision (32-bit) floating-point elements in a to packed half-precision (16-bit) floating-... | 2025-05-02T18:46:33 |
golang/go | b1f48e8addb640b6cbfad56d790b7702ff9fd30d | 58ad36b3592d3267ab9d9e0a91adecac08445028 | [dev.typeparams] cmd/compile: fix formatting
Looks like CL 322850 didn't have the change to ARM64Ops.go
properly gofmt'ed.
Change-Id: I1a080bc13ea27b897fbb91f18ded754ce440994b
Reviewed-on: https://go-review.googlesource.com/c/go/+/324109
Trust: Keith Randall <khr@golang.org>
Run-TryBot: Keith Randall <khr@golang.org>... | [
{
"path": "src/cmd/compile/internal/ssa/gen/ARM64Ops.go",
"patch": "@@ -759,17 +759,17 @@ func init() {\n \t}\n \n \tarchs = append(archs, arch{\n-\t\tname: \"ARM64\",\n-\t\tpkg: \"cmd/internal/obj/arm64\",\n-\t\tgenfile: \"../../arm64/ssa.go\",\n-\t\tops: ops,\n-\... | 2021-06-01T23:57:59 |
huggingface/transformers | f6664ee7132bdf6d51357ccd763d9d93ea228636 | 015b6dfbf80fd0c958f8f27e8e78c89fd9a11568 | Add ALL_ATTENTION_FUNCTIONS compatibility for Pixtral model (#37960)
* Add ALL_ATTENTION_FUNCTIONS compatibility for Pixtral model
* Fix invalid operand type
* Allow image_sizes to be optional in forward pass to fit tests
Disallow using sdpa and output_attentions
* Disallow using sdpa with output_attentions
* Del... | [
{
"path": "src/transformers/models/pixtral/modeling_pixtral.py",
"patch": "@@ -14,6 +14,7 @@\n # limitations under the License.\n \"\"\"PyTorch Pixtral model.\"\"\"\n \n+from collections.abc import Callable\n from typing import Optional, Tuple, Union\n \n import torch\n@@ -22,13 +23,12 @@\n \n from ... impo... | 2025-05-08T10:13:13 |
vercel/next.js | 2c23da077f7e3a787af2f443d9610128dad1e800 | 1dc8da96dd625ca4a0ba7542ac60f1332939e92a | misc: fix benchmark script (#44592)
Fixing + doing some maintenance as I was using it for some things.
Changes:
- fixed a bug related to how React is injected
- added a progress tracker for the numbers of requests
- retry on 500
- added a param for crashing the lambda manually (useful for cold boots)
- added a param ... | [
{
"path": "bench/vercel/bench.js",
"patch": "@@ -4,16 +4,24 @@ import console from 'console'\n import chalk from 'chalk'\n \n import PQueue from 'p-queue'\n-import { generateProjects, cleanupProjectFolders } from './project-utils.js'\n+import {\n+ generateProjects,\n+ cleanupProjectFolders,\n+ TEST_PROJE... | 2023-01-05T13:46:41 |
nodejs/node | c8a27a761773b9815bd6af07ce6d6e72ae19df30 | e7b4ba90035cb5f56166606a348a8468dcd01492 | async_hooks: adding regression test case for async/await
The actual bug was fixed by a V8 update in Node v10.4.0.
See: https://github.com/nodejs/node/pull/19989
PR-URL: https://github.com/nodejs/node/pull/22374
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-async-hooks-async-await.js",
"patch": "@@ -0,0 +1,26 @@\n+// Test async-hooks fired on right\n+// asyncIds & triggerAsyncId for async-await\n+'use strict';\n+\n+require('../common');\n+const async_hooks = require('async_hooks');\n+const assert = require('assert');\n+\n+const as... | 2018-08-22T11:46:08 |
rust-lang/rust | a22c8ed6311979d292e835e5a5498d0e3cc95dc0 | 2d5ffc513f1c56b7bc95bacb2519705096e8cc2b | zkVM: Fix env::ArgsOs
The zkVM implementation of `env::ArgsOs` incorrectly reports the full
length even after having iterated. Instead, use a range approach which
works out to be simpler. Also, implement more iterator methods like the
other platforms in #139847. | [
{
"path": "library/std/src/sys/args/zkvm.rs",
"patch": "@@ -1,18 +1,19 @@\n use crate::ffi::OsString;\n use crate::fmt;\n+use crate::num::NonZero;\n use crate::sys::os_str;\n use crate::sys::pal::{WORD_SIZE, abi};\n use crate::sys_common::FromInner;\n \n+#[derive(Clone)]\n pub struct Args {\n- i_forward:... | 2025-04-12T23:33:38 |
electron/electron | dfe111b95a8c9aea7f354048b82aa7ebc7f44be6 | a76ae8cd35699dff19e235eb46ce9e96d58c1d7d | Add support for multiple DPI images, fixes #541. | [
{
"path": "atom/common/native_mate_converters/image_converter.cc",
"patch": "@@ -5,6 +5,7 @@\n #include \"atom/common/native_mate_converters/image_converter.h\"\n \n #include <string>\n+#include <vector>\n \n #include \"atom/common/native_mate_converters/file_path_converter.h\"\n #include \"base/file_util.h... | 2014-08-06T03:20:00 |
huggingface/transformers | 015b6dfbf80fd0c958f8f27e8e78c89fd9a11568 | 5c47d08b0d6835b8d8fc1c06d9a1bc71f6e78ace | Fix `pad` image transform for batched inputs (#37544)
* fix
* add batch dimension to expected output | [
{
"path": "src/transformers/image_transforms.py",
"patch": "@@ -751,7 +751,7 @@ def _expand_for_data_format(values):\n values = ((0, 0), *values) if input_data_format == ChannelDimension.FIRST else (*values, (0, 0))\n \n # Add additional padding if there's a batch dimension\n- values ... | 2025-05-08T09:51:15 |
golang/go | 24e9707cbfa6b1ed6abdd4b11f9ddaf3aac5ad88 | 272552275f56345095b4ea7f404e5b317856cf07 | cmd/link, cmd/cgo: support -flto in CFLAGS
The linker now accepts unrecognized object files in external linking mode.
These objects will simply be passed to the external linker.
This permits using -flto which can generate pure byte code objects,
whose symbol table the linker does not know how to read.
The cgo tool no... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -1638,6 +1638,8 @@ func (p *Package) gccCmd() []string {\n \t\tc = append(c, \"-maix64\")\n \t\tc = append(c, \"-mcmodel=large\")\n \t}\n+\t// disable LTO so we get an object whose symbols we can read\n+\tc = append(c, \"-fno-lto\")\n \tc = append(c, \"-\") //rea... | 2021-05-25T23:31:41 |
vercel/next.js | c1685ab0a81143c0f0abcbdbdb831d745957ccac | f7f2db70bd8a3971386bfc615f78067a3c90b75b | Page data HMR (vercel/turbo#3132)
Based on vercel/turbo#2968
This builds upon vercel/turbo#2968 and @ForsakenHarmony's work on data routes to
enable page data HMR.
Page data HMR is a bit more clever than it is in Next.js as we won't
re-render a Node.js result for each page file update. Instead, thanks to
the... | [
{
"path": "packages/next-swc/crates/next-core/js/src/dev/hmr-client.ts",
"patch": "@@ -47,20 +47,25 @@ export function connect({ assetPrefix }: ClientOptions) {\n }\n globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS = {\n push: ([chunkPath, callback]: [ChunkPath, UpdateCallback]) => {\n- onChunkUpda... | 2023-01-04T15:54:34 |
rust-lang/rust | 809e5b5ed17f6cede5945939bb7f10c5282d9b53 | e1a177bbba2b1297c33e2838f8b2b72ab5f62ecf | Fix some hir pretty-printing over-indenting. | [
{
"path": "compiler/rustc_hir_pretty/src/lib.rs",
"patch": "@@ -1503,7 +1503,7 @@ impl<'a> State<'a> {\n }\n hir::ExprKind::DropTemps(init) => {\n // Print `{`:\n- let cb = self.cbox(INDENT_UNIT);\n+ let cb = self.cbox(0);\n ... | 2025-04-30T06:05:47 |
nodejs/node | 68b07ded9ceb23cf411fa4843b01f533efb600b4 | c35ce5635cc368a5cadca0dd38098117c45679c9 | repl: tab auto complete big arrays
Due to a new API it's possible to skip the indices. That allows to
use auto completion with big (typed) arrays.
PR-URL: https://github.com/nodejs/node/pull/22408
Fixes: https://github.com/nodejs/node/issues/21446
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: An... | [
{
"path": "lib/internal/util.js",
"patch": "@@ -366,7 +366,6 @@ function isInsideNodeModules() {\n return false;\n }\n \n-\n module.exports = {\n assertCrypto,\n cachedResult,",
"additions": 0,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "lib/internal/util/comparisons.js"... | 2018-08-20T01:26:27 |
electron/electron | cbb14f5ca21666d54373dc98b713613a751bb5cc | a8cd101ff5cb33136c6c28d6d63c77f01801bf82 | win: Disable the LegacyRenderWidgetHostHWND, fixes #506. | [
{
"path": "atom/app/atom_main_delegate.cc",
"patch": "@@ -74,6 +74,13 @@ void AtomMainDelegate::PreSandboxStartup() {\n // Add a flag to mark the start of switches added by atom-shell.\n command_line->AppendSwitch(\"atom-shell-switches-start\");\n \n+#if defined(OS_WIN)\n+ // Disable the LegacyRenderWi... | 2014-08-05T10:49:55 |
huggingface/transformers | 5c47d08b0d6835b8d8fc1c06d9a1bc71f6e78ace | 17742bd9c8852ab35986dcaa3e68415342ae7eef | Add Swin2SR ImageProcessorFast (#37169)
* Add fast image processor support for Swin2SR
* Add Swin2SR tests of fast image processing
* Update docs and remove unnecessary test func
* Fix docstring formatting
* Skip fast vs slow processing test
---------
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.norepl... | [
{
"path": "docs/source/en/model_doc/swin2sr.md",
"patch": "@@ -50,6 +50,11 @@ A demo Space for image super-resolution with SwinSR can be found [here](https://\n [[autodoc]] Swin2SRImageProcessor\n - preprocess\n \n+## Swin2SRImageProcessorFast\n+\n+[[autodoc]] Swin2SRImageProcessorFast\n+ - preproces... | 2025-05-07T16:20:16 |
rust-lang/rust | aa7bb1c2f5a8d8e8b709421189186e8e5e8b64f9 | 760cf8d3afd446e9a5f3dc1af006548a0da5686c | Enable `BoxMarker` drop checking.
All the box open/close issues have been fixed. | [
{
"path": "compiler/rustc_ast_pretty/src/pp.rs",
"patch": "@@ -244,9 +244,6 @@ struct BufEntry {\n // forgotten will trigger a panic in `drop`. (Closing a box more than once\n // isn't possible because `BoxMarker` doesn't implement `Copy` or `Clone`.)\n //\n-// FIXME(nnethercote): the panic in `drop` is cur... | 2025-04-29T10:17:29 |
nodejs/node | c35ce5635cc368a5cadca0dd38098117c45679c9 | 29a71bae40ffa0bbc8ba6b2bdf051a09987da7f7 | test: harden sequential/test-performance
1) This adds a better error logging so we are able to address further
failures easier.
2) It adds a extra epsilon so the test runs into less issues in case
the machine is under heavy load.
3) The epsilon in increased if the CPU is under heavy load.
4) The total startup ep... | [
{
"path": "test/sequential/test-performance.js",
"patch": "@@ -11,11 +11,11 @@ assert(performance);\n assert(performance.nodeTiming);\n assert.strictEqual(typeof performance.timeOrigin, 'number');\n // Use a fairly large epsilon value, since we can only guarantee that the node\n-// process started up in 20 ... | 2018-08-19T16:24:34 |
vercel/next.js | 696575f945902805eda64e1311672c51af840227 | 735ecd9c929cde18f84a6e06b2c95e13b08727c6 | Page data HMR (vercel/turbo#3132)
Based on vercel/turbo#2968
This builds upon vercel/turbo#2968 and @ForsakenHarmony's work on data routes to
enable page data HMR.
Page data HMR is a bit more clever than it is in Next.js as we won't
re-render a Node.js result for each page file update. Instead, thanks to
the... | [
{
"path": "crates/next-core/js/src/dev/hmr-client.ts",
"patch": "@@ -47,20 +47,25 @@ export function connect({ assetPrefix }: ClientOptions) {\n }\n globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS = {\n push: ([chunkPath, callback]: [ChunkPath, UpdateCallback]) => {\n- onChunkUpdate(chunkPath, call... | 2023-01-04T15:54:34 |
electron/electron | a8cd101ff5cb33136c6c28d6d63c77f01801bf82 | 009e0790fe54f80be15f301336c8bdb251e0b927 | win: Fix window frame when DWM is disabled, closes #519. | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -45,6 +45,7 @@\n #elif defined(OS_WIN)\n #include \"atom/browser/ui/views/win_frame_view.h\"\n #include \"base/win/scoped_comptr.h\"\n+#include \"ui/base/win/shell.h\"\n #endif\n \n namespace atom {\n@@ -480,9 +481,11 @@ views::ClientView* Native... | 2014-08-05T10:17:14 |
rust-lang/rust | 760cf8d3afd446e9a5f3dc1af006548a0da5686c | 3896ad0acd53fa62cab711d20af8dec1f3e944a1 | Fix hir pretty-printing of `global_asm!`.
One of the boxes isn't closed, and this causes everything after it to be
over-indented. | [
{
"path": "compiler/rustc_hir_pretty/src/lib.rs",
"patch": "@@ -654,10 +654,11 @@ impl<'a> State<'a> {\n self.bclose(item.span, cb);\n }\n hir::ItemKind::GlobalAsm { asm, .. } => {\n- // FIXME(nnethercote): `ib` is unclosed\n- let (cb, _i... | 2025-04-29T10:07:10 |
golang/go | 4b10e4c5473560539c6a6470e45391e8b9a9e786 | f32f4f58d9cd9d15371ee6198c1b222bcf2b56d9 | [dev.typeparams] cmd/compile: handle ONONAME in subster.node
Fixes #46472
Change-Id: I27802978fa0c3bb32a29e452165a6fcac93473bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/323731
Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Go Bot <gob... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -350,6 +350,9 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\t\treturn v\n \t\t\t}\n \t\t\treturn x\n+\t\tcase ir.ONONAME:\n+\t\t\t// This handles the identifier in a type switch guard\n+\t\t\tfallthrough\n \t\tcase ir.OLITERAL, ... | 2021-05-31T17:56:14 |
vercel/next.js | d89bdb2b0c4024965b6f2263be9d8eef290ed850 | 90b86be6dc50287b589363dc71a89f8bb7600736 | Improve errors caused by client hook called in a server component (#44538)
Improve errors caused by client hook called in a server component.
Before

After
\n+#include \"gtk/gtk.h\"\n+#endif\n+\n #include \"atom/browser/ui/views/menu_delegate.h\"\n #include \"base/strings/string_util.h\"\n #include \"base/strings... | 2014-08-05T01:41:29 |
huggingface/transformers | 17742bd9c8852ab35986dcaa3e68415342ae7eef | 3fa8d9c20e5d4ee0c407f4a3d9999e5aa904c0b8 | 🔴 [VLM] Add base model without head (#37033)
* i guessreverted all CdGen classes
* style
* llava onevision
* fix copies
* fix some tests
* some more tests
* dump
* skip these
* nevermind, i am dumb
* revert fix not needed
* fixup
* fixup
* another fixup
* more fixup to make ci finally happy
* fixup aft... | [
{
"path": "docs/source/en/model_doc/aria.md",
"patch": "@@ -102,6 +102,10 @@ response = processor.decode(output_ids, skip_special_tokens=True)\n \n [[autodoc]] AriaTextModel\n \n+## AriaModel\n+\n+[[autodoc]] AriaModel\n+\n ## AriaTextForCausalLM\n \n [[autodoc]] AriaTextForCausalLM",
"additions": 4,
... | 2025-05-07T15:47:51 |
nodejs/node | 29a71bae40ffa0bbc8ba6b2bdf051a09987da7f7 | 92880f31da1eca98a42e0f61708b10d9d8d83955 | src: refactor options parsing
This is a major refactor of our Node’s parser. See `node_options.cc`
for how it is used, and `node_options-inl.h` for the bulk
of its implementation.
Unfortunately, the implementation has come to have some
complexity, in order to meet the following goals:
- Make it easy to *use* for de... | [
{
"path": "node.gyp",
"patch": "@@ -343,14 +343,14 @@\n 'src/node_config.cc',\n 'src/node_constants.cc',\n 'src/node_contextify.cc',\n- 'src/node_debug_options.cc',\n 'src/node_domain.cc',\n 'src/node_encoding.cc',\n 'src/node_errors.h',\n 'src/... | 2018-08-10T00:45:28 |
golang/go | 0b80cf11366f28ef5d0d8bae9c46813e96ffd071 | 3b770f2ccb1fa6fecc22ea822a19447b10b70c5c | cmd/go: make 'go get' save sums for incidentally updated modules
When 'go get' updates a module, it may update another module in the
build list that provides a package in 'all' that wasn't loaded as part
of the 'go get' command. If 'go get' doesn't add a sum for that
module, builds may fail later.
With this change, '... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -38,6 +38,7 @@ import (\n \t\"cmd/go/internal/base\"\n \t\"cmd/go/internal/imports\"\n \t\"cmd/go/internal/load\"\n+\t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/modload\"\n \t\"cmd/go/internal/par\"\n \t\"cmd/go/internal/search\"\n@@ -1466,... | 2021-05-26T19:29:39 |
vercel/next.js | c0986eed066863b5ba604d25c4685cfe3f4c5823 | fae2f403ccb9ed442223b4b9b2978b748bb27443 | [examples] add @types/testing-library__jest-dom package (#44533)
## Documentation / Examples
- [ ] Make sure the linting passes by running `pnpm build && pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing
doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-e... | [
{
"path": "examples/with-jest-babel/package.json",
"patch": "@@ -17,6 +17,7 @@\n \"@testing-library/react\": \"13.2.0\",\n \"@testing-library/user-event\": \"14.2.0\",\n \"@types/react\": \"18.0.9\",\n+ \"@types/testing-library__jest-dom\": \"5.14.5\",\n \"babel-jest\": \"28.1.0\",\n ... | 2023-01-03T23:55:40 |
electron/electron | d31ebb71db5d4b2c6be22f32f79f0952cb7b0dd3 | 2125a0be826170c3a84af1e75572b06402f3add9 | Fix cpplint warnings. | [
{
"path": "atom/common/chrome_version.h",
"patch": "@@ -1,14 +1,14 @@\n-// Copyright (c) 2014 GitHub, Inc. All rights reserved.\r\n-// Use of this source code is governed by the MIT license that can be\r\n-// found in the LICENSE file.\r\n-\r\n-// This file is generated by script/bootstrap.py, you should ne... | 2014-08-05T00:46:06 |
huggingface/transformers | 3fa8d9c20e5d4ee0c407f4a3d9999e5aa904c0b8 | 798f948e88fd0b93fc515ec6b96e0503b78ad6ba | [CSM] tiny fix on generation (#38001)
nit | [
{
"path": "src/transformers/models/csm/generation_csm.py",
"patch": "@@ -476,7 +476,7 @@ def generate(\n if eos_idxs.numel() != 0:\n cutoff_idx = eos_idxs.min()\n else:\n- cutoff_idx = audio_codes_batch.shape[1]\n+ ... | 2025-05-07T15:45:23 |
nodejs/node | 91eec00ca20a54b1dc010cfc2fb34bc2f39eab6b | 6acb55041b53021171019ad755b72515a3712a9e | tty: make _read throw ERR_TTY_WRITABLE_NOT_READABLE
This change avoid an 'read ENOTCONN' error introduced by libuv 1.20.0
when trying to read from a TTY WriteStream. Instead, we are throwing
a more actionable ERR_TTY_WRITABLE_NOT_READABLE.
Fixes: https://github.com/nodejs/node/issues/21203
PR-URL: https://github.com... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1694,6 +1694,12 @@ A `Transform` stream finished with data still in the write buffer.\n \n The initialization of a TTY failed due to a system error.\n \n+<a id=\"ERR_TTY_WRITABLE_NOT_READABLE\"></a>\n+### ERR_TTY_WRITABLE_NOT_READABLE\n+\n+This `Error` is thrown ... | 2018-07-03T16:35:59 |
golang/go | f32f4f58d9cd9d15371ee6198c1b222bcf2b56d9 | 22f5ece3b13b7e5f6dece399c96d1d665b3a05bc | [dev.typeparams] cmd/compile: simplify formatting of defined types
The existing code for deciding how to format defined type names is
incredibly convoluted and difficult to follow. In particular, I'm
looking at changing how Vargen works, and I couldn't tell from the
existing code whether my idea was viable.
This CL o... | [
{
"path": "src/cmd/compile/internal/types/fmt.go",
"patch": "@@ -319,31 +319,20 @@ func tconv2(b *bytes.Buffer, t *Type, verb rune, mode fmtMode, visited map[*Type\n \n \t// Unless the 'L' flag was specified, if the type has a name, just print that name.\n \tif verb != 'L' && t.Sym() != nil && t != Types[t.... | 2021-05-31T01:13:36 |
electron/electron | 28b9df24a636dc88f735086eb21abdd8a08f42f2 | 94b4ceb8ceda320f364683903d14c2d5a7cd50ab | Don't create junk file when posting crash report.
Fixes atom/atom#3166. | [
{
"path": "atom/common/crash_reporter/linux/crash_dump_handler.cc",
"patch": "@@ -350,6 +350,8 @@ void ExecUploadProcessOrTerminate(const BreakpadInfo& info,\n \"--timeout=60\", // Set a timeout so we don't hang forever.\n \"--tries=1\", // Don't retry if the upload fails.\n \"--quiet\", ... | 2014-08-04T14:58:34 |
vercel/next.js | fae2f403ccb9ed442223b4b9b2978b748bb27443 | 83bc5b6bb544beec0c8c65674d2dcbffd3843e84 | Fix prettierignore_staged for compiled (#44550)
Corrects the glob from the `src` folder change.
Fixes:
https://github.com/vercel/next.js/actions/runs/3833725939/jobs/6525483379 | [
{
"path": ".prettierignore_staged",
"patch": "@@ -2,7 +2,7 @@\n **/_next/**\n **/dist/**\n packages/next-swc/crates/**\n-packages/next/compiled/**/*\n+packages/next/src/compiled/**/*\n packages/next/bundles/webpack/packages/*.runtime.js\n lerna.json\n packages/next-codemod/transforms/__testfixtures__/**/*",... | 2023-01-03T23:54:11 |
nodejs/node | 413a7e1deabaf5f0daa633df6e594f8cc1503a12 | 98cf84f2c9d13386362386eac6089bc356c017b2 | http: adding doc and debug for calling empty string on write function
PR-URL: https://github.com/nodejs/node/pull/22118
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "doc/api/http.md",
"patch": "@@ -750,6 +750,9 @@ Returns `true` if the entire data was flushed successfully to the kernel\n buffer. Returns `false` if all or part of the data was queued in user memory.\n `'drain'` will be emitted when the buffer is free again.\n \n+When `write` function is called ... | 2018-08-21T14:20:04 |
golang/go | 3b770f2ccb1fa6fecc22ea822a19447b10b70c5c | 1607c2817241bd141af9331a3e6c3148e5cd5d8b | go/types: don't declare 'comparable' when typeparams are disabled
Fixes #46453
Change-Id: I92b9b1e43ec5182162b2eeeb667f1f548ea373a5
Reviewed-on: https://go-review.googlesource.com/c/go/+/323609
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
TryBot-Result: Go Bot <gobot@go... | [
{
"path": "src/go/types/check_test.go",
"patch": "@@ -330,6 +330,14 @@ func TestIndexRepresentability(t *testing.T) {\n \tcheckFiles(t, &StdSizes{4, 4}, \"\", []string{\"index.go\"}, [][]byte{[]byte(src)}, false)\n }\n \n+func TestIssue46453(t *testing.T) {\n+\tif typeparams.Enabled {\n+\t\tt.Skip(\"type pa... | 2021-05-30T02:14:12 |
electron/electron | e3eaf909a535cf6997c4f6dff01a513d396c31b7 | 33580f66df24c047cc4bc4942e90f52588e4b317 | Use the global_shortcut_listener_x11 from chrome36.
This fixes compilation error on Linux. | [
{
"path": "chromium_src/chrome/browser/extensions/global_shortcut_listener_x11.cc",
"patch": "@@ -7,15 +7,10 @@\n #include \"content/public/browser/browser_thread.h\"\n #include \"ui/base/accelerators/accelerator.h\"\n #include \"ui/events/keycodes/keyboard_code_conversion_x.h\"\n+#include \"ui/events/platf... | 2014-08-04T12:52:42 |
vercel/next.js | 83bc5b6bb544beec0c8c65674d2dcbffd3843e84 | 87c3578cc48223b89d24786a9b7184c3f11d2f5d | Remove un-used app-dir test fixture (#44546)
This fixture is not being used as we aren't currently able to test the
ts plugin directly and will need to investigate using a headless vs code
instance to test against.
x-ref: https://vercel.slack.com/archives/C04DUD7EB1B/p1672784680457859 | [
{
"path": "test/e2e/app-dir/app-typescript/app/@test/inner/page.tsx",
"patch": "@@ -1,18 +0,0 @@\n-/* eslint-disable */\n-\n-// 'use client'\n-\n-import { useCallback, useState } from 'react'\n-\n-export default function Page({ whatIsThis }) {\n- return <div>hello app</div>\n-}\n-\n-export const runtime = ... | 2023-01-03T23:47:49 |
rust-lang/rust | d8a52dbbf82e07b82c574bda26d7963992985491 | 372f3f30387b7cb2fca1c9c82119d170eb3884c8 | fix: Implement mut to const ptr cast for method resolution | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/method_resolution.rs",
"patch": "@@ -515,9 +515,15 @@ impl From<Option<BlockId>> for VisibleFromModule {\n }\n }\n \n+#[derive(Debug, Clone)]\n+pub enum AutorefOrPtrAdjustment {\n+ Autoref(Mutability),\n+ ToConstPtr,\n+}\n+\n #[derive(Debug, Clo... | 2025-05-02T18:00:49 |
nodejs/node | 98cf84f2c9d13386362386eac6089bc356c017b2 | 588fb05e7858e11e556d5a50213e293a2a66e631 | stream: restore flow if there are 'data' handlers after once('readable')
Fixes: https://github.com/nodejs/node/issues/21398
See: https://github.com/nodejs/node/pull/21696
PR-URL: https://github.com/nodejs/node/pull/22209
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mathias Buus <mathiasbuus@gmail.com> | [
{
"path": "doc/api/stream.md",
"patch": "@@ -618,6 +618,12 @@ instance, when the `readable.resume()` method is called without a listener\n attached to the `'data'` event, or when a `'data'` event handler is removed\n from the stream.\n \n+Adding a [`'readable'`][] event handler automatically make the stream... | 2018-08-09T12:02:33 |
golang/go | 1607c2817241bd141af9331a3e6c3148e5cd5d8b | 79bda650410c8617f0ae20dc552c6d5b8f8dcfc8 | go/types: unexport the GoVersion configuration option for Go 1.17
The GoVersion field was added to types.Config as part of the work on
type parameters. Specifically, it was added to be consistent with
cmd/compile/internal/types2, which requires such an option.
This configuration option is useful, but is also non-triv... | [
{
"path": "src/go/types/api.go",
"patch": "@@ -101,12 +101,12 @@ type ImporterFrom interface {\n // A Config specifies the configuration for type checking.\n // The zero value for Config is a ready-to-use default configuration.\n type Config struct {\n-\t// GoVersion describes the accepted Go language versi... | 2021-05-28T15:58:05 |
electron/electron | 33580f66df24c047cc4bc4942e90f52588e4b317 | 139316b9752ed6b43db7a5593e69fb3f59b678bc | Run user's main script before everything is initialized, fixes #543. | [
{
"path": "atom/browser/atom_browser_main_parts.cc",
"patch": "@@ -65,17 +65,18 @@ void AtomBrowserMainParts::PostEarlyInitialization() {\n }\n \n void AtomBrowserMainParts::PreMainMessageLoopRun() {\n+ // Run user's main script before most things get initialized, so we can have\n+ // a chance to setup ev... | 2014-08-04T12:50:05 |
vercel/next.js | 29106f47acea128acb575c09074570736be37b58 | d6a09be30368f8f55a0536d1db5557265ff5adf1 | Collapse sequences of call stack frames from React and Next.js in the error overlay (#44137)
Sequences of call stack frames from React or Next.js are collapsed, most
of the time these just adds noise to the error overlay. The collapsed
stack frames can be expanded though by clicking them.
Adds the package of the ... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.tsx",
"patch": "@@ -0,0 +1,69 @@\n+import React from 'react'\n+import type { StackFrame } from 'next/dist/compiled/stacktrace-parser'\n+import {\n+ getFrameSource,\n+ type OriginalStackFrame,\n+... | 2023-01-03T22:47:58 |
nodejs/node | 36468ca92862f2e1bc086be7e5e12ec8e012982b | 9dae0ae22b62a7f6a3ebf7e5efbfac9611d5ce04 | lib: require a callback for end-of-stream
Make the callback mandatory as mostly done in all other Node.js
callback APIs so users explicitly have to decide what to do in error
cases.
This also documents the options for `Stream.finished()`.
When originally implemented it was missed that Stream.finished() has
an option... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -1294,12 +1294,21 @@ implementors should not override this method, but instead implement\n [`readable._destroy()`][readable-_destroy].\n The default implementation of `_destroy()` for `Transform` also emit `'close'`.\n \n-### stream.finished(stream, callback)\n+##... | 2018-05-31T14:00:24 |
huggingface/transformers | 798f948e88fd0b93fc515ec6b96e0503b78ad6ba | c8607a17cbbfc20b6bae046e3e2f72e1749cf0fc | Add CSM model (#36719)
* draft structure
* depth decoder with forward pre hook
* full model forward draft
* draft update
* depth decoder update
* ConversationalSpeechModelForCausalLM udpates
* add generate
* max length criteria small fix
* udpate
* updates
* generation update
* update in loss compute
* con... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -825,6 +825,8 @@\n title: Bark\n - local: model_doc/clap\n title: CLAP\n+ - local: model_doc/csm\n+ title: CSM\n - local: model_doc/dac\n title: dac\n - local: model_doc/encodec",
"additions": 2,
... | 2025-05-07T14:20:13 |
golang/go | f6cc392d1ddd53a003c413fba4c1fc244ce2d85e | 1419ca7cead4438c8c9f17d8901aeecd9c72f577 | doc/go1.17: document text/template/parse.SkipFuncCheck
Documents the newly added mode that skips type checking
functions as per CL 301493.
Fixes #46025
For #34652
For #44513
For #38627
Change-Id: I56c4f65924702a931944796e39f43cfeb66abc8a
Reviewed-on: https://go-review.googlesource.com/c/go/+/311569
Reviewed-by: Ian ... | [
{
"path": "doc/go1.17.html",
"patch": "@@ -647,7 +647,8 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"text/template/parse\"><dt><a href=\"/pkg/text/template/parse/\">text/template/parse</a></dt>\n <dd>\n <p><!-- CL 301493 -->\n- TODO: <a href=\"https://golang.or... | 2021-04-19T19:26:47 |
electron/electron | 139316b9752ed6b43db7a5593e69fb3f59b678bc | 8fe8cd46b92a5134d3ba0147e43f5bfce49720a5 | Upgrade brightray, fix #498.
Previous 476f545 was using the wrong commit of brightray which didn't
actually contain the fix. | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 91a5af92231458009165a853e279192acdca947c\n+Subproject commit 2f87b814ac97eb52628f0808842c99df0611a86e",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2014-08-04T12:44:50 |
vercel/next.js | 735613bc7ef7e51bd3a72aac0b155238b614a55f | 9ab6d3bf84cf208eb97184f2a2a8ffff20b896bd | Update server-external-packages to include aws-crt (#44214)
Add aws-crt to server-external-packages
<!--
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... | [
{
"path": "packages/next/src/lib/server-external-packages.ts",
"patch": "@@ -4,6 +4,7 @@ export const EXTERNAL_PACKAGES = [\n '@sentry/nextjs',\n '@sentry/node',\n 'autoprefixer',\n+ 'aws-crt',\n 'cypress',\n 'eslint',\n 'express',",
"additions": 1,
"deletions": 0,
"language": "Unkn... | 2023-01-03T22:15:49 |
huggingface/transformers | 8a9441d26de607b3be6167b07aa9189691d80217 | 038f8fc159355b6bae1a554d592df94cb61f2753 | [chat template] separate jinja logic from tokenizers (#37602)
* split oit jinja
* raise error | [
{
"path": "src/transformers/processing_utils.py",
"patch": "@@ -41,6 +41,7 @@\n load_image,\n load_video,\n )\n+from .utils.chat_template_utils import render_jinja_template\n \n \n if is_vision_available():\n@@ -1426,6 +1427,14 @@ def apply_chat_template(\n # It's a template string, ... | 2025-05-07T12:18:03 |
electron/electron | e3118359ad371fa88ec576b6420e9345093464d7 | 4880096f3ddefa35117b36539a27f1c5d9ee8cfc | Destroy web contents when window is closed.
Previously this was reverted because of Chromium's spammy error
loggings, but it also causes the renderer process not to exit when the
page has been closed. After fixing the spammy error logging, we can now
bring this back.
Fixes atom/atom#3141. | [
{
"path": "atom/browser/native_window.cc",
"patch": "@@ -449,6 +449,9 @@ void NativeWindow::MoveContents(content::WebContents* source,\n }\n \n void NativeWindow::CloseContents(content::WebContents* source) {\n+ // Destroy the WebContents before we close the window.\n+ DestroyWebContents();\n+\n // When... | 2014-08-04T06:55:08 |
vercel/next.js | 9ab6d3bf84cf208eb97184f2a2a8ffff20b896bd | c2229a3a405f4cbb58f3ae40c6a3f78cc09d3d50 | Fix cookie parsing removing extra `=` (#44218)
When parsing a cookie, extra `=` characters are removed, when only the
first should be removed.
e.g. with the cookie
`csrf_token_ae6261a96213c493a37ea69489ee39c8bc33a53cda7d95f84efa53146145d09c=lnQptRUO/gpU26e8ZKpGIFHKqtP54vVfR7RBiph8Uc0=`
You would expect:
key:
... | [
{
"path": "packages/next/src/server/web/spec-extension/cookies/serialize.ts",
"patch": "@@ -40,7 +40,9 @@ export function parseCookieString(cookie: string): Map<string, string> {\n \n for (const pair of cookie.split(/; */)) {\n if (!pair) continue\n- const [key, value] = pair.split('=', 2)\n+ co... | 2023-01-03T21:35:15 |
huggingface/transformers | 038f8fc159355b6bae1a554d592df94cb61f2753 | a9384f849a2bfc812ae145b8b4d1f5d4afdf0071 | make aya vision 5 integration tests pass on xpu (#37990)
* 5 aya vision integration pass on XPU
Signed-off-by: Yao Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao Matrix <matrix.yao@intel.com>
---------
Signed-off-by: Yao Matrix <matrix.yao@intel.com>
Co-authored-by: Yih-Dar <2521628+ydshieh@users.no... | [
{
"path": "tests/models/aya_vision/test_modeling_aya_vision.py",
"patch": "@@ -25,10 +25,12 @@\n is_vision_available,\n )\n from transformers.testing_utils import (\n+ Expectations,\n cleanup,\n+ require_deterministic_for_xpu,\n require_read_token,\n require_torch,\n- require_torch_... | 2025-05-07T09:16:38 |
vercel/next.js | c2229a3a405f4cbb58f3ae40c6a3f78cc09d3d50 | 599ca813ae2453120b17d68cca30962436eed281 | chore: addresses leftover from #44045 (#44080)
## 📖 What's in there?
Yesterday we didn't had time to address leftovers from #44045.
Here it is.
- [ ] Implements an existing feature request or RFC. Make sure the
feature request has been accepted for implementation before opening a
PR.
- [ ] Related issues li... | [
{
"path": "packages/next/src/build/analysis/get-page-static-info.ts",
"patch": "@@ -313,17 +313,14 @@ export async function getPageStaticInfo(params: {\n !isEdgeRuntime(resolvedRuntime)\n ) {\n const options = Object.values(SERVER_RUNTIME).join(', ')\n- if (typeof resolvedRuntime !== 's... | 2023-01-03T21:18:14 |
huggingface/transformers | 0b037fd425da1f98ea54e6b63d11e7d223b1e516 | 3c0796aaeac722152836ea063d542a4c628a75be | Fix Qwen models export with torch 2.7 (#37985)
Co-authored-by: Guang Yang <guangyang@fb.com> | [
{
"path": "tests/models/qwen2/test_modeling_qwen2.py",
"patch": "@@ -31,6 +31,7 @@\n slow,\n torch_device,\n )\n+from transformers.utils.import_utils import is_torch_greater_or_equal\n \n from ...generation.test_utils import GenerationTesterMixin\n from ...test_configuration_common import ConfigTest... | 2025-05-07T07:13:08 |
nodejs/node | 6e9e150b6a1746df899b68158dd540b4e790eff8 | 36696cfe8479f3fd511124b60c24b4a6a33a80da | util: Fix number format for `pad`
`pad` is now using `toString(10)`, actually we don't need to do this. As for https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toString, `toString(N)` is a radix converter, which isn't proper here for time conversion.
PR-URL: https://github.com/n... | [
{
"path": "lib/util.js",
"patch": "@@ -1349,7 +1349,7 @@ function isPrimitive(arg) {\n }\n \n function pad(n) {\n- return n < 10 ? `0${n.toString(10)}` : n.toString(10);\n+ return n.toString().padStart(2, '0');\n }\n \n const months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',",
"... | 2018-07-20T07:55:27 |
golang/go | ccd9784edf556673a340f3a8d55d9a8c64b95f59 | 3de3440fb9b2d7f8a14b33f96fcfcee8eb61ec55 | doc/go1.17: document new debug/elf constant
For #39677
For #44513
Change-Id: I8c4193fd4359b83e6739e7e30a3a42b5f21b0f1a
Reviewed-on: https://go-review.googlesource.com/c/go/+/323275
Trust: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> | [
{
"path": "doc/go1.17.html",
"patch": "@@ -373,6 +373,15 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </dd>\n </dl><!-- database/sql -->\n \n+<dl id=\"debug/elf\"><dt><a href=\"/pkg/debug/elf/\">debug/elf</a></dt>\n+ <dd>\n+ <p><!-- CL 239217 -->\n+ The <a href=\"/pkg/d... | 2021-05-27T23:16:37 |
vercel/next.js | c728575599136970922c20f5c57251f9e65c9a74 | 0549a466325c38d82c11a1aaf72ea0452b128b2f | refactor: add warning helper for removed experimental option (#44213)
Continues #44202, implements
https://github.com/vercel/next.js/pull/44202#discussion_r1053678383.
cc @styfle
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attache... | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -126,6 +126,32 @@ function setFontLoaderDefaults(config: NextConfigComplete) {\n } catch {}\n }\n \n+export function warnOptionHasBeenMovedOutOfExperimental(\n+ config: NextConfig,\n+ oldKey: string,\n+ newKey: string,\n+ configFileName: str... | 2023-01-03T20:17:00 |
huggingface/transformers | 3c0796aaeac722152836ea063d542a4c628a75be | ebbe9b12dd75b69f92100d684c47f923ee262a93 | [Fast Processor] BEiT (#37005)
* adding fast processor for beit
* adding resample
* address review issues and add segmentation maps logic
* style
* chore: adding tests
* reduce label test
* adding batched tests
* Update src/transformers/models/beit/image_processing_beit_fast.py
Co-authored-by: Yoni Gozlan <745... | [
{
"path": "docs/source/en/model_doc/beit.md",
"patch": "@@ -150,6 +150,11 @@ If you're interested in submitting a resource to be included here, please feel f\n [[autodoc]] BeitImageProcessor\n - preprocess\n - post_process_semantic_segmentation\n+## BeitImageProcessorFast\n+\n+[[autodoc]] BeitImageP... | 2025-05-06T21:40:28 |
rust-lang/rust | b7c933a495a42d684f7acb493caeee3f3c4e87bf | f97b3c6044a67e0b5d0d0891ca3a6c5d982b2285 | doc(std): fix typo lchown -> lchmod | [
{
"path": "library/std/src/fs.rs",
"patch": "@@ -2994,7 +2994,7 @@ pub fn read_dir<P: AsRef<Path>>(path: P) -> io::Result<ReadDir> {\n /// When possible, permissions should be set at creation time instead.\n ///\n /// # Rationale\n-/// POSIX does not specify an `lchown` function,\n+/// POSIX does not specif... | 2025-05-02T17:13:40 |
nodejs/node | fd76a3d482db94aa06c28f10b1572bb492451a5e | b1e26128f317a6f5a5808a0a727e98f80f088b84 | test: fix flaky http timeout test
There is no guarantee that a timeout won't be delayed considerably due
to unrelated activity on the host. Instead of checking that the timeout
happens within a certain tolerance, simply check that it did not happen
too soon.
Fixes: https://github.com/nodejs/node/issues/22041
PR-URL:... | [
{
"path": "test/sequential/test-http-client-timeout-option-with-agent.js",
"patch": "@@ -42,8 +42,9 @@ function doRequest() {\n timeout_events += 1;\n const duration = Date.now() - start;\n // The timeout event cannot be precisely timed. It will delay\n- // some number of milliseconds, so tes... | 2018-08-19T16:15:04 |
golang/go | 3de3440fb9b2d7f8a14b33f96fcfcee8eb61ec55 | 639acdc833bfd12b7edd43092d1b380d70cb2874 | go/ast: remove FuncDecl.IsMethod for Go 1.17
The IsMethod method was added to FuncDecl in the process of working on
support for type parameters, but is now only used in one place. It also
didn't go through the proposal process. Remove it for 1.17.
Also clean up a doc comment that mentioned type parameters.
Fixes #46... | [
{
"path": "src/go/ast/ast.go",
"patch": "@@ -259,7 +259,7 @@ func (f *FieldList) End() token.Pos {\n \treturn token.NoPos\n }\n \n-// NumFields returns the number of (type) parameters or struct fields represented by a FieldList.\n+// NumFields returns the number of parameters or struct fields represented by... | 2021-05-28T02:27:55 |
electron/electron | 4cd3119125a68d0247fc8ff15484f3586381c9b8 | 191b1aa719c0519b349cb26d7e76182521da63b0 | fix indent | [
{
"path": "script/update.py",
"patch": "@@ -25,7 +25,7 @@ def update_gyp():\n python = sys.executable\n arch = 'ia32'\n if sys.platform.startswith('linux') and sys.maxsize > 2**32 or sys.platform == 'darwin':\n- arch = 'x64'\n+ arch = 'x64'\n if sys.platform in ['cygwin', 'win32']:\n pyt... | 2014-07-31T18:22:22 |
vercel/next.js | 08fb7b5bd826407df28a9e105d28d1b4421996ed | 4a9dc112352059a0b24117d69fece6d3f6c7bef4 | Fix taskr watching core files | [
{
"path": "packages/next/taskfile.js",
"patch": "@@ -2240,24 +2240,24 @@ export default async function (task) {\n const opts = { dev: true }\n await task.clear('dist')\n await task.start('build', opts)\n- await task.watch('bin', 'bin', opts)\n- await task.watch('pages', 'pages', opts)\n- await task... | 2023-01-03T14:52:18 |
huggingface/transformers | ebbe9b12dd75b69f92100d684c47f923ee262a93 | 06c4d05fe60e83bbe43bce8bad3a94316a77c859 | Fix donut backtracking (#37788)
* Fix donut backtracking
* make fixup
* Trigger tests
* Remove old line
* Update code
* Fix reversed slice | [
{
"path": "src/transformers/models/donut/processing_donut.py",
"patch": "@@ -156,14 +156,18 @@ def token2json(self, tokens, is_inner_value=False, added_vocab=None):\n output = {}\n \n while tokens:\n- start_token = re.search(r\"<s_(.*?)>\", tokens, re.IGNORECASE)\n- if ... | 2025-05-06T16:39:04 |
golang/go | 193d5141318d65cea310d995258288bd000d734c | ab2ef4aaa77dff91cd98ded88aeba0bf5b5b2e80 | net/http: correct Client.Do doc about context cancelation
The documentation of the Client.Do method and Get function incorrectly
stated that, in case of context cancelation, the returned url.Error
Timeout method returns true.
Update the documentation to correctly match the implementation.
See also CL 200798 that, due... | [
{
"path": "src/net/http/client.go",
"patch": "@@ -433,8 +433,7 @@ func basicAuth(username, password string) string {\n // An error is returned if there were too many redirects or if there\n // was an HTTP protocol error. A non-2xx response doesn't cause an\n // error. Any returned error will be of type *url... | 2021-05-27T08:44:57 |
vercel/next.js | 4a9dc112352059a0b24117d69fece6d3f6c7bef4 | a7b046d92e5c145a3ff9c64e1e842e4e4f2e407b | Test server component error recovery in dev (#44155)
Test that server components can recover from syntax and component error.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see
[`contributing.md`](https://github.com/vercel/next... | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -247,6 +247,88 @@ describe('ReactRefreshLogBox app', () => {\n await cleanup()\n })\n \n+ test('server component can recover from syntax error', async () => {\n+ const { session, browser, cleanup } = await sandbox... | 2023-01-03T11:45:50 |
electron/electron | 6a5f732bbaeef6e1304483489600c49ca7dec83f | fba17720007d7d0e5454c6f247b9bab34311e748 | mac: Emit focus/blur events after page has actually focus/blur-ed.
Otherwise the page would receive the blur event when it has not blured
yet.
Fixes atom/atom#3124. | [
{
"path": "atom/browser/native_window_mac.mm",
"patch": "@@ -49,8 +49,6 @@ - (void)setAcceptsFirstMouse:(BOOL)accept {\n }\n \n - (void)windowDidBecomeMain:(NSNotification*)notification {\n- shell_->NotifyWindowFocus();\n-\n content::WebContents* web_contents = shell_->GetWebContents();\n if (!web_cont... | 2014-07-31T09:35:08 |
rust-lang/rust | 3cc172074a1ed94aa90372360688a000b47e6946 | 867b4c9e489c71246915ebe3e1ceddef66d760a3 | collateral damage in derive tests, improves errors by not refering to implementation details | [
{
"path": "tests/ui/derives/deriving-with-repr-packed-move-errors.rs",
"patch": "@@ -11,15 +11,15 @@ use std::cmp::Ordering;\n #[repr(packed)]\n #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Default)]\n struct StructA(String);\n-//~^ ERROR: cannot move out of `self` which is behind a shared r... | 2025-05-02T11:44:51 |
nodejs/node | b1e26128f317a6f5a5808a0a727e98f80f088b84 | f1d3f97c3bc813528e85b9c3e6506fc75b931d92 | src: implement v8::Platform::CallDelayedOnWorkerThread
This method is crucial for Runtime.evaluate protocol command with
timeout flag. At least Chrome DevTools frontend uses this method for
every execution in console.
PR-URL: https://github.com/nodejs/node/pull/22383
Fixes: https://github.com/nodejs/node/issues/22157... | [
{
"path": "src/node_platform.cc",
"patch": "@@ -2,6 +2,7 @@\n #include \"node_internals.h\"\n \n #include \"env-inl.h\"\n+#include \"debug_utils.h\"\n #include \"util.h\"\n #include <algorithm>\n \n@@ -29,7 +30,127 @@ static void PlatformWorkerThread(void* data) {\n \n } // namespace\n \n+class WorkerThrea... | 2018-08-18T01:47:05 |
huggingface/transformers | 031ef8802c2d8bf6fec977fd274e1596d8a5ef21 | 5534b80b7f2d8dc8f72b89ae41c92b6c3ca9cd98 | fix FSDP + torch.compile bug when saving pretrained model (#37725)
* args keep_torch_compile=False in _save and _wwrap_method
* Fix FSDP execution on evaluation for torch_compile mode
* add test trainer FSDP + Torch Compile
* fix quality code
* make style
* Revert " make style"
This reverts commit 77e797f8829c... | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -1986,7 +1986,7 @@ def _wrap_model(self, model, training=True, dataloader=None):\n return smp.DistributedModel(model, backward_passes_per_step=self.args.gradient_accumulation_steps)\n \n # train/eval could be run multiple-times - if a... | 2025-05-06T15:51:28 |
golang/go | ab2ef4aaa77dff91cd98ded88aeba0bf5b5b2e80 | 0ece95a0feafe151cadf1346464952bb5c95fab3 | doc/go1.17: document reflect changes
For #44513.
Fixes #46019.
Change-Id: Ica84edd5703a4ccf343ff01e10483f8d51d1c79f
Reviewed-on: https://go-review.googlesource.com/c/go/+/323069
Trust: Damien Neil <dneil@google.com>
Run-TryBot: Damien Neil <dneil@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Dmitr... | [
{
"path": "doc/go1.17.html",
"patch": "@@ -500,11 +500,13 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </p>\n \n <p><!-- CL 281233 -->\n- TODO: <a href=\"https://golang.org/cl/281233\">https://golang.org/cl/281233</a>: add VisibleFields function\n+ The new <a hre... | 2021-05-27T01:06:26 |
rust-lang/rust | 867b4c9e489c71246915ebe3e1ceddef66d760a3 | f97b3c6044a67e0b5d0d0891ca3a6c5d982b2285 | Test that names of variables in external macros are not shown on a borrow error | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/mod.rs",
"patch": "@@ -317,6 +317,14 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n opt: DescribePlaceOpt,\n ) -> Option<String> {\n let local = place.local;\n+ if self.body.local_decls[local]\n+ .source_in... | 2025-05-02T11:26:35 |
electron/electron | fba17720007d7d0e5454c6f247b9bab34311e748 | e62986b97d14e06956dd9da0e961114e89c48d06 | Don't mess up with browser process's execArgv, fixes #492. | [
{
"path": "atom/browser/lib/init.coffee",
"patch": "@@ -14,7 +14,7 @@ process.argv.splice 1, 1\n # Pick out switches appended by atom-shell.\n startMark = process.argv.indexOf '--atom-shell-switches-start'\n endMark = process.argv.indexOf '--atom-shell-switches-end'\n-process.execArgv = process.argv.splice ... | 2014-07-31T08:58:59 |
nodejs/node | f1d3f97c3bc813528e85b9c3e6506fc75b931d92 | 28675b66d2e2fae839b64cf0b06ebb5df8cde025 | test: remove third argument from assert.strictEqual()
`test/parallel/test-util-inspect.js` has a call to
`assert.strictEqual()` that receives three arguments.
The third argument is a string literal. Unfortunately,
calling assert.strictEqual() this way means that if
there is an AssertionError, the value of the variable... | [
{
"path": "test/parallel/test-util-inspect.js",
"patch": "@@ -979,7 +979,7 @@ if (typeof Symbol !== 'undefined') {\n const npos = line.search(numRE);\n if (npos !== -1) {\n if (pos !== undefined) {\n- assert.strictEqual(pos, npos, 'container items not aligned');\n+ asse... | 2018-08-17T09:41:26 |
huggingface/transformers | 5534b80b7f2d8dc8f72b89ae41c92b6c3ca9cd98 | 7db5d5b9ea46a8d1cc7512c6f18da7f9bc9e0510 | enable xpu in test_trainer (#37774)
* enable xpu in test_trainer
Signed-off-by: YAO Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: YAO Matrix <matrix.yao@intel.com>
* enhance _device_agnostic_dispatch to cover value
Signed-off-by: Yao Matrix <matrix.yao@intel.com>
* add default values for torch not ava... | [
{
"path": "src/transformers/testing_utils.py",
"patch": "@@ -2946,10 +2946,10 @@ def _device_agnostic_dispatch(device: str, dispatch_table: dict[str, Callable],\n \n fn = dispatch_table[device]\n \n- # Some device agnostic functions return values. Need to guard against `None`\n- # instead at user ... | 2025-05-06T15:13:35 |
golang/go | 0ece95a0feafe151cadf1346464952bb5c95fab3 | cdcd02842da7c004efd023881e3719105209c908 | cmd/go: don't let 'go mod download' save sums for inconsistent requirements
'go mod download' calls modload.LoadModFile early to find the main
module path in order to validate arguments. LoadModFile may write
go.mod and go.sum to fix formatting and add a go directive. This calls
keepSums, which, in eager mode, loaded ... | [
{
"path": "src/cmd/go/internal/modcmd/download.go",
"patch": "@@ -138,14 +138,14 @@ func runDownload(ctx context.Context, cmd *base.Command, args []string) {\n \tsem := make(chan token, runtime.GOMAXPROCS(0))\n \tinfos, infosErr := modload.ListModules(ctx, args, 0)\n \tif !haveExplicitArgs {\n-\t\t// 'go mo... | 2021-05-24T20:47:45 |
vercel/next.js | f7f2db70bd8a3971386bfc615f78067a3c90b75b | 87e4a467f993e6162e2faf4c8a2e511ce9cddba2 | Refactor the Next SSG transform to handle the inverse operation (vercel/turbo#2968)
## The original transform
The original behavior of the Next SSG transform is to remove `getServerSideProps`, `getStaticProps`, and `getStaticPaths` from Next.js page files so they can be bundled for the client. This is what enables th... | [
{
"path": "packages/next-swc/crates/next-core/src/next_client/context.rs",
"patch": "@@ -157,7 +157,9 @@ pub async fn add_next_transforms_to_pages(\n ]),\n ]),\n vec![ModuleRuleEffect::AddEcmascriptTransforms(\n- EcmascriptInputTransformsVc::cell(vec![EcmascriptInputTr... | 2023-01-03T10:42:35 |
electron/electron | f3e49b0696b022bfeade693ab21babcf4f6aa43f | 70aad83b07a870e9a6a6d3fb55ea261c6c1424b8 | Fix typo. | [
{
"path": "atom/browser/api/lib/content-tracing.coffee",
"patch": "@@ -4,4 +4,4 @@ module.exports = process.atomBinding 'content_tracing'\n module.exports.DEFAULT_OPTIONS = 0\n module.exports.ENABLE_SYSTRACE = 1 << 0\n module.exports.ENABLE_SAMPLING = 1 << 1\n-module.exports.RECORD_CONTINUOUSLY = << 2\n+mo... | 2014-07-31T07:49:14 |
huggingface/transformers | 7db5d5b9ea46a8d1cc7512c6f18da7f9bc9e0510 | af2866a8b19c621f67396db03031066a2f232c54 | Fix typo (#37964) | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -98,7 +98,7 @@\n - local: generation_strategies\n title: 텍스트 생성 전략 사용자 정의\n - local: serving\n- title: 모델 서빙하기기\n+ title: 모델 서빙하기\n title: 생성\n - isExpanded: false\n sections:",
"additions": 1,
"deletions": 1,
... | 2025-05-06T13:59:00 |
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.