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 |
|---|---|---|---|---|---|
nodejs/node | 58b1fe7bd11db74cfac2404a1db2f7fefc7a971c | 6b57a51b5469e1c639bc067373c0a985a9462b9a | http: fix socketOnWrap edge cases
Properly handle prependListener wrapping on http server
socket, in addition to on and addListener.
PR-URL: https://github.com/nodejs/node/pull/27968
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail... | [
{
"path": "lib/_http_server.js",
"patch": "@@ -404,9 +404,10 @@ function connectionListenerInternal(server, socket) {\n socket.on('resume', onSocketResume);\n socket.on('pause', onSocketPause);\n \n- // Override on to unconsume on `data`, `readable` listeners\n- socket.on = socketOnWrap;\n- socket.ad... | 2019-05-30T09:32:51 |
electron/electron | b68be5c583e7f8ec956f3c91cfa464c8b00162c5 | bbfa5835e742699b4d6f0e4dfe38f14870095702 | :checkered_flag: Notify only when enabled
- Previously, we'd attempt to create a notification no matter what the
user's configuration was. Microsoft advises against that, because it
can create race conditions if notifications are disabled.
- This fixes the issue.
Closes https://github.com/atom/electron/issues/468... | [
{
"path": "brightray/browser/win/windows_toast_notification.cc",
"patch": "@@ -89,7 +89,16 @@ void WindowsToastNotification::Show(\n const bool silent) {\n auto presenter_win = static_cast<NotificationPresenterWin*>(presenter());\n std::wstring icon_path = presenter_win->SaveIconToFilesystem(icon, i... | 2016-03-16T00:10:24 |
vercel/next.js | 57e28dc544b1d55f7b1d8de8f367a7a8d1ce4c02 | 3d6dd97ecbbbeed681d7bd97698100f4afde9269 | Prepare RouterContentSource for basePath (vercel/turbo#5218)
### Description
This is part 2 of [WEB-993](https://linear.app/vercel/issue/WEB-993)
basePath support. A few of our next-specific content sources will need
to be scoped under the `basePath` (like `_next/image` and
`__nextjs_original-stack-frame`). These are... | [
{
"path": "crates/turbopack-dev-server/src/source/router.rs",
"patch": "@@ -7,22 +7,105 @@ use crate::source::ContentSourcesVc;\n \n /// Binds different ContentSources to different subpaths. A fallback\n /// ContentSource will serve all other subpaths.\n+// TODO(WEB-1151): Remove this and migrate all users ... | 2023-06-06T16:08:20 |
golang/go | 97e740e8b0ff1b32b164b0cbef06c12c4d591f3f | f88c3b9f4d087895c3eab5ac4dd8459c76d0d0d8 | runtime: replace TestFutexsleep with TestTimediv
TestFutexsleep was originally created in CL 7876043 as a
regression test for buggy division logic in futexsleep. Several months
later CL 11575044 moved this logic to timediv (called by futexsleep).
This test calls runtime.Futexsleep, which temporarily disables
asynchro... | [
{
"path": "src/runtime/export_futex_test.go",
"patch": "@@ -1,19 +0,0 @@\n-// Copyright 2013 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build dragonfly || freebsd || linux\n-\n-package runtime\n-\... | 2022-01-21T21:52:56 |
nodejs/node | 6b57a51b5469e1c639bc067373c0a985a9462b9a | 187b05640837443353ec4183e203f352ff0af88a | doc: fix the wrong name of AssertionError
err.name of AssertionError should be 'AssertionError'
PR-URL: https://github.com/nodejs/node/pull/27982
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Ruben Bridg... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -68,7 +68,7 @@ try {\n } catch (err) {\n assert(err instanceof assert.AssertionError);\n assert.strictEqual(err.message, message);\n- assert.strictEqual(err.name, 'AssertionError [ERR_ASSERTION]');\n+ assert.strictEqual(err.name, 'AssertionError');\n asser... | 2019-05-30T16:23:48 |
electron/electron | 492269a0fdc2a19a39ece921ed6fe636838bcb46 | 141f909b683ee9c7f74f0f226dc496aea5e5a53b | More info for crash reporter form type and payload | [
{
"path": "docs/api/crash-reporter.md",
"patch": "@@ -54,7 +54,7 @@ ID.\n \n ## crash-reporter Payload\n \n-The crash reporter will send the following data to the `submitURL` as `POST`:\n+The crash reporter will send the following data to the `submitURL` as a `multipart/form-data` `POST`:\n \n * `ver` Strin... | 2016-03-15T13:49:34 |
vercel/next.js | 43fb7249b6c3a4dfdc9cae6a8a99addc00fde6ee | 1e0566b9accd4a0e8d581b9eb790ed28adb311ff | Add turbo summary artifact for swc builds (#50857)
This adds uploading the turbo run summaries for our publish builds so we
can debug cache misses there easier the same as the new build_reusable
workflow. | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -259,13 +259,19 @@ jobs:\n datadog-ci metric --no-fail --level pipeline --metrics \"turbopack.bytesize.$FILENAME:$BYTESIZE\"\n done\n \n- - name: Upload artifact\n+ - name: Upload swc artifact\n if: ${{ ... | 2023-06-06T16:06:12 |
rust-lang/rust | 99780df8add4790dd838d5172257d6e66124597a | fe8b5e6cd2b13750bfb5a1feda233f640bd84671 | Fix intrinsic copysignf128 | [
{
"path": "build_system/src/test.rs",
"patch": "@@ -9,8 +9,8 @@ use crate::build;\n use crate::config::{Channel, ConfigInfo};\n use crate::utils::{\n create_dir, get_sysroot_dir, get_toolchain, git_clone, git_clone_root_dir, remove_file,\n- run_command, run_command_with_env, run_command_with_output, ... | 2025-06-29T00:02:52 |
golang/go | f88c3b9f4d087895c3eab5ac4dd8459c76d0d0d8 | f9df4ea0c9426eecb93375d31e36cccf95b46e1f | cmd/compile: distinguish bound calls/field access in getInstInfo
Given we have support for field access to type params with a single
structural type, we need to distinguish between methods calls and field
access when we have an OXDOT node on an expression which is a typeparam
(or correspondingly a shape). We were miss... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -1036,13 +1036,13 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \t\t\t}\n \n \t\tcase ir.OXDOT:\n-\t\t\t// Finish the transformation of an OXDOT, unless this was a\n-\t\t\t// bound call (a direct call on a type param). A bound call\n... | 2022-01-19T22:46:58 |
nodejs/node | f86100caf3b5b48ef7c3d67d7f258dd1cba8f9b4 | 2983eaca84e9e79c19dba09fb036fe55131b8a5d | http2: respect inspect() depth
This commit causes Http2Stream and Http2Session to account
for inspect() depth.
PR-URL: https://github.com/nodejs/node/pull/27983
Fixes: https://github.com/nodejs/node/issues/27976
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Rev... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -1069,6 +1069,9 @@ class Http2Session extends EventEmitter {\n }\n \n [kInspect](depth, opts) {\n+ if (typeof depth === 'number' && depth < 0)\n+ return this;\n+\n const obj = {\n type: this[kType],\n closed: this.closed,\n@@ -... | 2019-05-30T18:12:09 |
rust-lang/rust | 38fa4a4861d5d0241c8a9b980d5fb2bf84530de2 | a80f3c4a84b8bbb5b72f95acc63e09d8124ab6bd | Fix sysroot Cargo.toml for compiler-builtins | [
{
"path": "build_system/build_sysroot/Cargo.toml",
"patch": "@@ -6,6 +6,7 @@ resolver = \"2\"\n \n [dependencies]\n core = { path = \"./sysroot_src/library/core\" }\n+compiler_builtins = { path = \"./sysroot_src/library/compiler-builtins/compiler-builtins\" }\n alloc = { path = \"./sysroot_src/library/alloc... | 2025-06-28T22:08:26 |
vercel/next.js | 230641adfdc5fd456ca404459026d5957dc69c35 | ec5ba3184b69e2f6c6bdcc722464537449b9bd5b | Bail out of 404 page when favicon.ico doesn't exist (#50795)
## What?
Anytime you open a Next.js application that doesn't have a `favicon.ico`
you'll notice `/_error` is being compiled because the browser requests
`favicon.ico`. This PR ensures the 404 page is not compiled in
development for that request. It hel... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -2371,6 +2371,14 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n ctx: RequestContext,\n err: Error | null\n ): Promise<ResponsePayload | null> {\n+ // Short-circuit favicon.ico in development ... | 2023-06-06T08:58:40 |
golang/go | 19d819d49c73c8e47749b3c4cbbc2e58a259269a | 0ef6dd74409506eb084bd8d2fe61e0e70ed9e5a4 | runtime: call fflush before exiting in C test
Very, very rarely TestVectoredHandlerDontCrashOnLibrary fails because
the C subprocess exits with a 0 status code and no output. This
appears to happen because C does not actually guarantee that stdout
will be flushed on exit and somehow, very rarely, it is not flushed.
A... | [
{
"path": "src/runtime/testdata/testwinlib/main.c",
"patch": "@@ -41,17 +41,20 @@ int main()\n if (NULL == exceptionHandlerHandle)\n {\n printf(\"cannot add vectored exception handler\\n\");\n+ fflush(stdout);\n return 2;\n }\n void *continueHandlerHandle = AddVectored... | 2022-01-24T14:27:31 |
nodejs/node | 951318f1adc1f1d86d39007a6dc11c526eaf25fb | ad40a03bd99515ee842ac200ddc601a4833174ac | deps: V8: backport 3a75c1f
Original commit message:
Fixing a possible freeze on abort with 'v8_win64_unwinding_info'
Win64 unwind data can specify a language-specific handler function which is
called as part of the search for an exception handler, as described in
https://docs.microsoft.com/en-us/cpp/... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n... | 2019-05-28T01:09:56 |
huggingface/transformers | b54f79073c5ec482df13304231edddf176c19cb0 | 6db4332171df2b4099c44c7a5c01258b91f7394a | replace source_keys and target_keys (#42471)
fix | [
{
"path": "src/transformers/quantizers/quantizer_bnb_4bit.py",
"patch": "@@ -306,7 +306,7 @@ def get_weight_conversions(self):\n if self.pre_quantized:\n return [\n WeightConverter(\n- source_keys=[\n+ source_patterns=[\n ... | 2025-11-28T12:41:22 |
rust-lang/rust | 2359b6bd91631d5d0489109743093056e149ed82 | 5a29dddfdd47f1f37b6e6e38e77a4b0f94f007d6 | Fix signature of `filter_landing_pad` | [
{
"path": "src/builder.rs",
"patch": "@@ -1608,9 +1608,9 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n (value1, value2)\n }\n \n- fn filter_landing_pad(&mut self, pers_fn: Function<'gcc>) -> (RValue<'gcc>, RValue<'gcc>) {\n+ fn filter_landing_pad(&mut sel... | 2025-06-28T22:00:58 |
vercel/next.js | 3d6dd97ecbbbeed681d7bd97698100f4afde9269 | 07a21e5f4d6ad09ebee5c2e25b3bb8fea4d93106 | improve error reporting, omit timeout while debugging (vercel/turbo#5221)
### Description
* I need more than 60s to debug a problem.
* print nicer error messages when JSON is invalid | [
{
"path": "crates/turbopack-node/src/pool.rs",
"patch": "@@ -26,7 +26,7 @@ use tokio::{\n sync::{OwnedSemaphorePermit, Semaphore},\n time::{sleep, timeout},\n };\n-use turbo_tasks_fs::FileSystemPathVc;\n+use turbo_tasks_fs::{json::parse_json_with_source_context, FileSystemPathVc};\n use turbopack_ec... | 2023-06-06T08:47:54 |
golang/go | 35b0db7607a33da662a510f85d30f18cd40c1149 | 9eba5ff5219a76c3c4e020fa27e966a226174d7e | cmd/go: evaluate root symlink in matchPackages
This fixes checks for crossing module boundaries when the root of
the module is a symlink. We're comparing paths by string, so we need
to follow the symlink to get the proper path to compare.
Change-Id: Idf5f0dd5c49bcae5fffb5372e99a7fab89169a9d
Reviewed-on: https://go-re... | [
{
"path": "src/cmd/go/internal/modload/search.go",
"patch": "@@ -54,6 +54,11 @@ func matchPackages(ctx context.Context, m *search.Match, tags map[string]bool, f\n \t)\n \n \twalkPkgs := func(root, importPathRoot string, prune pruning) {\n+\t\t// Follow root if it's a symlink so path == root comparisons don'... | 2022-01-21T21:05:02 |
nodejs/node | ad40a03bd99515ee842ac200ddc601a4833174ac | 6797610b8e7e6cde2ebc02bea4f24a35b6231e74 | deps: V8: fix BUILDING_V8_SHARED issues
PR-URL: https://github.com/nodejs/node/pull/27375
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihri... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n... | 2019-05-26T18:19:09 |
huggingface/transformers | 6db4332171df2b4099c44c7a5c01258b91f7394a | c95d4affc1198cd9c95c41063d0b71a1c9c8e07c | [Trainer] use output.loss when using liger-kernel (#42444)
* use output.loss when using liger
Handle loss computation for models using Liger-kernel.
fixes #42414
* Clarify Liger-kernel loss computation in comments
* Both standard transformers and Liger models handle shift_labels correctly via **kwargs
* removed u... | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -3909,7 +3909,7 @@ def compute_loss(\n \n def _deepspeed_sp_compute_loss(self, model, inputs, return_outputs, pc):\n \"\"\"\n- How the loss is computed by Trainer under sequence parallelism with sp_backend==\"deepspeed\" and sp_size>1.... | 2025-11-28T11:00:33 |
rust-lang/rust | a420d39afb992093bd0105aecfa033a640115c0a | 13d0ef30c9acf216d3c666a868639d0d84f257a8 | Fix signature of `filter_landing_pad` | [
{
"path": "compiler/rustc_codegen_gcc/src/builder.rs",
"patch": "@@ -1608,9 +1608,9 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n (value1, value2)\n }\n \n- fn filter_landing_pad(&mut self, pers_fn: Function<'gcc>) -> (RValue<'gcc>, RValue<'gcc>) {\n+ fn ... | 2025-06-28T22:00:58 |
vercel/next.js | 8e9613fae53865286fb8d7624b64cc02928330da | c2d7bbd1b82c71808b99e9a7944fb16717a581db | Update fetch dynamic error handling (#50822)
Updates to not throw the dynamic server error inside of the patched
fetch as it's typical for fetch errors to be caught and handled and this
error is not meant to be caught by users. This instead throws it during
rendering so we can ensure we catch it instead of users.
... | [
{
"path": "packages/next/src/client/components/static-generation-async-storage.ts",
"patch": "@@ -1,5 +1,6 @@\n import type { AsyncLocalStorage } from 'async_hooks'\n import type { IncrementalCache } from '../../server/lib/incremental-cache'\n+import type { DynamicServerError } from './hooks-server-context'... | 2023-06-06T04:47:01 |
golang/go | 9eba5ff5219a76c3c4e020fa27e966a226174d7e | d15481b8c7f5f73a8b987a0c1deea04659ed0bb0 | runtime/pprof: TestLabelSystemstack parallelLabelHog.func1 must be labeled
The closure in parallelLabelHog should be labeled in a addition to
parallelLabelHog itself. Generally samples on that goroutine land on
labelHog, but there is a small portion of the closure outside of
labelHog.
Fixes #50740.
Change-Id: I363b6... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -1448,7 +1448,7 @@ func TestLabelSystemstack(t *testing.T) {\n \t\tfor _, loc := range s.Location {\n \t\t\tfor _, l := range loc.Line {\n \t\t\t\tswitch l.Function.Name {\n-\t\t\t\tcase \"runtime/pprof.labelHog\", \"runtime/pprof.parallelLabelHog\":... | 2022-01-21T16:07:52 |
huggingface/transformers | 603eb77a12b9ba5a3ed1482e1dd92868599bdf91 | d08b98b965176ea9cf8c8e8b24995c955b7e2ec9 | Fix T5 tests: use generation_config for generation parameters (#42419)
* pass the generation parameters to generate()
* fix use_task_specific_params to separate model.config and model.generation_config params
* fix style
* some fixes
* remove redundant check
* update expectation for llama_7b_bf16 on rocm
* Updat... | [
{
"path": "tests/models/llama/test_modeling_llama.py",
"patch": "@@ -117,7 +117,7 @@ def test_model_7b_logits_bf16(self):\n (\"xpu\", 3): torch.tensor([[-6.5208, -4.1218, -4.9377, -3.2536, 0.8127, -2.9811, 1.2918, -3.3848]]),\n (\"cuda\", 7): torch.tensor([[-6.5061, -4.1147, -4.966... | 2025-11-28T08:32:22 |
nodejs/node | 6797610b8e7e6cde2ebc02bea4f24a35b6231e74 | 0df8f53abb5281c2fd4132ddf541b6330c82636b | deps: V8: workaround for MSVC 14.20 optimizer bug
Refs: https://developercommunity.visualstudio.com/content/problem/512352/compiler-doesnt-finish-142027508.html
PR-URL: https://github.com/nodejs/node/pull/27375
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Revie... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2019-05-17T15:50:21 |
electron/electron | c25264113f41892f29df4fb4622759bfd79cee76 | 17ff8f2e7e59e77caa7b55cbbfcb3fc8fa67080d | fix devtools filesystem api and allow delegate to request stored filesystem paths | [
{
"path": "brightray/browser/devtools_embedder_message_dispatcher.h",
"patch": "@@ -49,7 +49,7 @@ class DevToolsEmbedderMessageDispatcher {\n virtual void AppendToFile(const std::string& url,\n const std::string& content) = 0;\n virtual void RequestFileSystems() = 0;\n-... | 2016-03-15T02:23:40 |
golang/go | 32636cd1ffc6cd9ef81d09b8320d2aaad4a21117 | 2c2e08144f79d8746384c2a483bf03532dc0c443 | cmd/compile: make sure multiple blank typeparams remain unique
In a method declaration "func (f *Foo[_, _]) String() string { ... }",
the two blank typeparams have the same name, but our current design with
types1 needs unique names for type params. Similarly, for export/import,
we need unique names to keep the type p... | [
{
"path": "src/cmd/compile/internal/importer/iimport.go",
"patch": "@@ -9,6 +9,7 @@ package importer\n \n import (\n \t\"cmd/compile/internal/syntax\"\n+\t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types2\"\n \t\"encoding/binary\"\n \t\"fmt\"\n@@ -376,12 +377,12 @@ func (r *importReader) ... | 2022-01-18T20:55:17 |
huggingface/transformers | d08b98b965176ea9cf8c8e8b24995c955b7e2ec9 | 05c0e1d39082ee8b69064ed4ea9c239cd17405e9 | [loading/saving] Reverse all loading operations when saving (#42396)
* first shot
* default to reversing
* oupso
* oupsi 2
* oupsi 3
* fix renamed kwargs
* fix timm_wrapper
* remove fix_state_dict methods
* can do it all the time, with __init__ as well
* doc
* oupsi
* fix
* create helper
* fix annotation ... | [
{
"path": "src/transformers/conversion_mapping.py",
"patch": "@@ -13,7 +13,10 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+from __future__ import annotations\n+\n from copy import deepcopy\n+from typing import TYPE_CHECKING\n \n from .cor... | 2025-11-27T18:46:09 |
electron/electron | cdc7b8d15e881f12c1ff3cba7dd92fb2fd759730 | e92d002eec310fd9b534bf7694c017490746fdaf | devtools: fix filesyatem api usage and use prefs to track filesystem paths | [
{
"path": "atom/browser/atom_browser_context.cc",
"patch": "@@ -194,6 +194,7 @@ void AtomBrowserContext::RegisterPrefs(PrefRegistrySimple* pref_registry) {\n PathService::Get(chrome::DIR_DEFAULT_DOWNLOADS, &download_dir);\n pref_registry->RegisterFilePathPref(prefs::kDownloadDefaultDirectory,\n ... | 2016-03-15T02:21:36 |
nodejs/node | 9457fab1adcb2cbae55a43af97f379129ec4261d | 4badd3eeb21bd309ed86d6bfe2b5e0a6b9c2e33c | deps: V8: patch register-arm64.h
Fixes a compilation issue on some platforms
PR-URL: https://github.com/nodejs/node/pull/27375
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Matteo Collina <matteo.coll... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2019-05-22T15:33:02 |
golang/go | 2c2e08144f79d8746384c2a483bf03532dc0c443 | 65535bfe6dad2cb7535f6a5647b288e4489608f9 | runtime: remove -tags=threadprof in tests
Use an enviroment variable rather than a build tag to control starting
a busy loop thread when testprogcgo starts. This lets us skip another
build that invokes the C compiler and linker, which should avoid
timeouts running the runtime tests.
Fixes #44422
Change-Id: I516668d7... | [
{
"path": "src/runtime/crash_cgo_test.go",
"patch": "@@ -7,7 +7,6 @@\n package runtime_test\n \n import (\n-\t\"bytes\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"os\"\n@@ -95,17 +94,8 @@ func TestCgoExternalThreadSIGPROF(t *testing.T) {\n \t\tt.Skipf(\"no pthreads on %s\", runtime.GOOS)\n \t}\n \n-\texe, e... | 2022-01-19T02:46:00 |
rust-lang/rust | ed16ae851bdb840ab2e7776e343ef865bfcbb76d | b63223c152212832ce37a109e26cc5f84c577532 | Do not freshen ReError | [
{
"path": "compiler/rustc_infer/src/infer/freshen.rs",
"patch": "@@ -110,17 +110,16 @@ impl<'a, 'tcx> TypeFolder<TyCtxt<'tcx>> for TypeFreshener<'a, 'tcx> {\n \n fn fold_region(&mut self, r: ty::Region<'tcx>) -> ty::Region<'tcx> {\n match r.kind() {\n- ty::ReBound(..) => {\n- ... | 2025-06-28T20:46:46 |
nodejs/node | 4badd3eeb21bd309ed86d6bfe2b5e0a6b9c2e33c | cdd443967298890cf588e548f313d40459172bfa | deps: V8: backport f89e555
Original commit message:
[api] Fix compilation issue with macOS
Fixes the following error caught by the Node.js CI:
../deps/v8/src/api.cc:8943:10:
error: no viable conversion from returned value of type
'unique_ptr<v8::internal::MicrotaskQueue, default_delete<v8::i... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "... | 2019-05-23T14:07:20 |
electron/electron | 9a13d559e9c774c2f84a77af2663f8a81001ca30 | 92a9c49a77b59c71408baad2483783747e41391d | Leak the JavascriptEnvironment on exit
This is to work around the bug that V8 would be waiting for background
tasks to finish on exit, while somehow it waits forever in Electron, more
about this can be found at https://github.com/atom/electron/issues/4767.
On the other handle there is actually no need to gracefully s... | [
{
"path": "atom/browser/atom_browser_main_parts.cc",
"patch": "@@ -46,6 +46,14 @@ AtomBrowserMainParts::AtomBrowserMainParts()\n }\n \n AtomBrowserMainParts::~AtomBrowserMainParts() {\n+ // Leak the JavascriptEnvironment on exit.\n+ // This is to work around the bug that V8 would be waiting for background... | 2016-03-14T04:59:31 |
golang/go | 59122f85bd3a1231dd5b49fa83319d634bc96f23 | 9284279b44418b52221b4d68d400fa9220521726 | runtime/pprof: allow labels on racecall in TestLabelSystemstack
Fixes #50705.
Change-Id: I85857f836cbe58447625df6cd56756d3a69880ff
Reviewed-on: https://go-review.googlesource.com/c/go/+/379834
Trust: Michael Pratt <mpratt@google.com>
Run-TryBot: Michael Pratt <mpratt@google.com>
Reviewed-by: Bryan Mills <bcmills@goog... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -1462,13 +1462,13 @@ func TestLabelSystemstack(t *testing.T) {\n \t\t\t\t\t// runtime.isSystemGoroutine). These\n \t\t\t\t\t// should never be labeled.\n \t\t\t\t\tmustNotBeLabeled = true\n-\t\t\t\tcase \"gogo\", \"gosave_systemstack_switch\":\n-\t\t... | 2022-01-20T16:17:51 |
rust-lang/rust | a80f3c4a84b8bbb5b72f95acc63e09d8124ab6bd | a836612ab05af7f0c786acaaebbd756af676e36c | Fix clippy warnings | [
{
"path": "src/abi.rs",
"patch": "@@ -1,7 +1,9 @@\n #[cfg(feature = \"master\")]\n use gccjit::FnAttribute;\n use gccjit::{ToLValue, ToRValue, Type};\n-use rustc_abi::{ArmCall, CanonAbi, InterruptKind, Reg, RegKind, X86Call};\n+#[cfg(feature = \"master\")]\n+use rustc_abi::{ArmCall, CanonAbi, InterruptKind,... | 2025-06-28T20:31:38 |
vercel/next.js | 39453b59b6614d529f3e270b72b5e2beb933e6e0 | 52f7dbcac43538bac38d0f62df0dc15082d44d94 | fix(turbopack-image): fix build error (vercel/turbo#5207)
### Description
enabling webp never actually able to build. | [
{
"path": "crates/turbopack-image/Cargo.toml",
"patch": "@@ -10,6 +10,7 @@ autobenches = false\n bench = false\n \n [features]\n+\n # [NOTE]: Before enable this, ensure this can build all of the target platforms we support.\n avif = [\"image/avif-decoder\", \"image/avif-encoder\"]\n webp = [\"image/webp\", ... | 2023-06-05T17:26:34 |
nodejs/node | cdd443967298890cf588e548f313d40459172bfa | 0859870bc0fde70c938ea43e79b929f4d540bede | deps: V8: cherry-pick cca9ae3c9a
Original commit message:
Remove recursion from NeedsCheckHeapObject.
We use the predicate NeedsCheckHeapObject in the compiler frontend to
determine whether we can skip introducing CheckHeapObject nodes. But
this predicate would also walk up the graph in case of Phis,... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "... | 2019-05-15T06:37:20 |
huggingface/transformers | 05c0e1d39082ee8b69064ed4ea9c239cd17405e9 | 01c51596ec56407eabc7f8d1f021a8aeb679a330 | rm slow tokenizers (#40936)
* fixes missed
* gemma test fix
* refactor
* rm legacy from llama
* added renaming
* add _model
* update legacy
* update legacy
* fix docstring
* always load blank, then set _tokenizer if we have it
* new toks
* update all berttokenizer based models
* apply feedback - delete ber... | [
{
"path": "MIGRATION_GUIDE_V5.md",
"patch": "@@ -74,6 +74,207 @@ While this is being implemented, expect varying levels of support across differe\n \n Linked PR: https://github.com/huggingface/transformers/pull/41580\n \n+\n+\n+\n+## Tokenization\n+\n+Just as we moved towards a single backend library for mo... | 2025-11-27T18:24:50 |
golang/go | bb7fb8a5fac1ad9570c554c366826d649350acbe | c1296af151f5682f6e0cd88cd0372aca5a464a97 | runtime: print error if mmap fails
Fixes #49687
Change-Id: Ife7f64f4c98449eaff7327e09bc1fb67acee72c9
Reviewed-on: https://go-review.googlesource.com/c/go/+/379354
Trust: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Austin... | [
{
"path": "src/runtime/mem_aix.go",
"patch": "@@ -72,6 +72,7 @@ func sysMap(v unsafe.Pointer, n uintptr, sysStat *sysMemStat) {\n \t\tthrow(\"runtime: out of memory\")\n \t}\n \tif err != 0 {\n+\t\tprint(\"runtime: mprotect(\", v, \", \", n, \") returned \", err, \"\\n\")\n \t\tthrow(\"runtime: cannot map p... | 2022-01-19T03:44:34 |
vercel/next.js | 78ed08d88e61d7b21fc1cfeb2acb223fee74a7f9 | b04c70573ac199a9bb3ea42201e0865e610d5b67 | fix(next-swc): reenable filesystem cache (#50651)
### What?
Quick fix for the regressions that next.js cannot load plugin due to missing filesystem cache. | [
{
"path": "Cargo.toml",
"patch": "@@ -42,11 +42,11 @@ swc_core = { version = \"0.76.37\" }\n testing = { version = \"0.33.13\" }\n \n # Turbo crates\n-turbopack-binding = { git = \"https://github.com/vercel/turbo.git\", tag = \"turbopack-230531.2\" }\n+turbopack-binding = { git = \"https://github.com/vercel... | 2023-06-05T15:42:13 |
nodejs/node | e378e7d7b1db748532bd00269b744ae9f3952e62 | a74c46bf4bcda5a3cc96d193c26e08cdae5593c5 | deps: V8: un-cherry-pick bd019bd
Original commit message:
[testrunner] delete ancient junit compatible format support
Testrunner has ancient support for JUnit compatible XML output.
This CL removes this old feature.
R=mstarzinger@chromium.org,jgruber@chromium.org,jkummerow@chromium.org
CC=mach... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2019-03-27T14:32:10 |
electron/electron | 48064ee7e9a81ed431649e883d42e8e0908da4e4 | b2059ec8af70f41af6d432312788d5230d3e7b16 | browser: fix retrieving webcontents from associated process id | [
{
"path": "atom/browser/atom_browser_client.cc",
"patch": "@@ -46,11 +46,6 @@ namespace atom {\n \n namespace {\n \n-// The default routing id of WebContents.\n-// In Electron each RenderProcessHost only has one WebContents, so this ID is\n-// same for every WebContents.\n-int kDefaultRoutingID = 1;\n-\n //... | 2016-03-13T22:23:39 |
huggingface/transformers | 01c51596ec56407eabc7f8d1f021a8aeb679a330 | a099b27ddb2fe4a0f690ba6007ee38f109ccbf31 | update with more recent tts models (#42328)
* update with more recent tts models
* fix pipelin | [
{
"path": "docs/source/en/tasks/text-to-speech.md",
"patch": "@@ -19,18 +19,18 @@ rendered properly in your Markdown viewer.\n [[open-in-colab]]\n \n Text-to-speech (TTS) is the task of creating natural-sounding speech from text, where the speech can be generated in multiple\n-languages and for multiple spe... | 2025-11-27T17:59:43 |
golang/go | c1296af151f5682f6e0cd88cd0372aca5a464a97 | 1efc5815dd316953a8f37e58f7e3542a6aac3adf | cmd/compile: add early a CONVIFACE normally created in the order phase
Most CONVIFACEs are created in the transform phase (or old typechecker,
in -G=0 mode). But if the main result of a multi-value assignment (map,
channel, or dot-type) must be converted to an interface during the
assignment, that CONVIFACE is not cre... | [
{
"path": "src/cmd/compile/internal/noder/transform.go",
"patch": "@@ -356,6 +356,37 @@ assignOK:\n \t\t}\n \t\tcheckLHS(0, r.Type())\n \t\tcheckLHS(1, types.UntypedBool)\n+\t\tt := lhs[0].Type()\n+\t\tif t != nil && rhs[0].Type().HasShape() && t.IsInterface() && !types.IdenticalStrict(t, rhs[0].Type()) {\n... | 2022-01-17T21:24:06 |
huggingface/transformers | a8457eb866c8fc6cf3b4db0eb51288b27c001f44 | e2e411c42b1fff2a5f988170def15ca47739fd15 | Fix the "test_offline" test (#42458)
* Fix the test offline test
* Refactor test_offline method with context patches
Refactor test_offline to use patch for offline mode.
* Apply suggestion from @Wauplin
---------
Co-authored-by: Lucain <lucainp@gmail.com> | [
{
"path": "tests/utils/test_modeling_utils.py",
"patch": "@@ -290,22 +290,20 @@ def forward(self, mask, inputs_embeds):\n return attention_mask\n \n class TestOffline(unittest.TestCase):\n- @patch(\"huggingface_hub.constants\")\n- def test_offline(self, mock_hf_hub_constants):\... | 2025-11-27T16:36:58 |
nodejs/node | a74c46bf4bcda5a3cc96d193c26e08cdae5593c5 | 317b712a52e0bb855bd18670ea8efa6c32bae032 | deps: V8: fix filename manipulation for Windows
PR-URL: https://github.com/nodejs/node/pull/27375
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Co... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.0',\n+ 'v8_embedder_string': '-node.1',\n \n ##### V8 defaults for Node.js #####\n "... | 2019-03-31T15:53:24 |
vercel/next.js | 8ab38cef4115bb0e63f79d3ce0b623b962d43337 | 886b38916a1d5fabfafbedf24c395a8abbcb9f42 | Improve compile time on large application (#50792)
## What?
While investigating slow compilation for a page on vercel.com in
development I found that there was close to 10 seconds of time
unaccounted for in `.next/trace`. Ran a profile and found that time was
spent in watchpack `batch`, specifically calling `clo... | [
{
"path": "packages/next/package.json",
"patch": "@@ -89,6 +89,7 @@\n \"caniuse-lite\": \"^1.0.30001406\",\n \"postcss\": \"8.4.14\",\n \"styled-jsx\": \"5.1.1\",\n+ \"watchpack\": \"2.4.0\",\n \"zod\": \"3.21.4\"\n },\n \"peerDependencies\": {",
"additions": 1,
"deletions": 0... | 2023-06-05T13:05:54 |
huggingface/transformers | 9bdec656c992617b4798589faa3f7c8bf21bb30a | e31c5f603e3c9872372bdfe807b1e85e36631798 | Let's break Qwen-VL 🚨 (#42420)
* Lets braeaak!
* pop attributes so we don't have 2 different values for the same key. Reported by TRL in the past
* oh no, tying is messing up with slow tests....
* fix copies
* migration guide | [
{
"path": "MIGRATION_GUIDE_V5.md",
"patch": "@@ -128,7 +128,7 @@ model_4bit = AutoModelForCausalLM.from_pretrained(\n - Methods to init a nested config such as `from_xxx_config` are deleted. Configs can be init from the `__init__` method in the same way. See [#41314](https://github.com/huggingface/transform... | 2025-11-27T15:25:16 |
golang/go | 1efc5815dd316953a8f37e58f7e3542a6aac3adf | a4d3c73ac3cc109ac2088beadf4d51987a60c625 | go/types, types2: use orig. compiler error message for a shift error
Slightly better for cases such as string(1 << s).
Leaves type-checker tests alone for now because
there are multiple dozens.
For #45117.
Change-Id: I47b314c713fabe424c2158674bf965416a8a6f5c
Reviewed-on: https://go-review.googlesource.com/c/go/+/379... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -504,8 +504,11 @@ func (check *Checker) invalidConversion(code errorCode, x *operand, target Type)\n // Also, if x is a constant, it must be representable as a value of typ,\n // and if x is the (formerly untyped) lhs operand of a non-constan... | 2022-01-19T01:52:16 |
nodejs/node | aa8b820aaa4d36085baaf8beb1187b2b9955fffb | d05668d6884992765e94cec2ba755feb946071c1 | errors: create internal connResetException
Replace various instances of errors that use code ECONNRESET with a
single centralized factory function to create the errors.
(While making changes to _tls_wrap.js, this also takes the opportunity
to make trailing commas consistent on multi-line arrays. One had a
trailing co... | [
{
"path": "lib/_http_client.js",
"patch": "@@ -40,13 +40,14 @@ const { Buffer } = require('buffer');\n const { defaultTriggerAsyncIdScope } = require('internal/async_hooks');\n const { URL, urlToOptions, searchParamsSymbol } = require('internal/url');\n const { outHeadersKey, ondrain } = require('internal/h... | 2019-05-29T15:03:21 |
vercel/next.js | d13fe04f1e5232291afefd8676695fa954a99f9f | e657741b9908cf0044aaef959c0c4defb19ed6d8 | fix: conditional cookies in draft mode (#50660)
fix NEXT-1246 | [
{
"path": "packages/next/src/client/components/draft-mode.ts",
"patch": "@@ -1,4 +1,5 @@\n-import { DraftModeProvider } from '../../server/async-storage/draft-mode-provider'\n+import type { DraftModeProvider } from '../../server/async-storage/draft-mode-provider'\n+\n import { staticGenerationBailout } from... | 2023-06-02T17:30:10 |
rust-lang/rust | eb4d42951556853481ea3d5834403f23b6e9f133 | 144989400e64298805690dc923f50a97fbf41c9d | Fix for libgccjit 12 | [
{
"path": "src/builder.rs",
"patch": "@@ -1597,7 +1597,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n }\n \n #[cfg(not(feature = \"master\"))]\n- fn cleanup_landing_pad(&mut self, _pers_fn: RValue<'gcc>) -> (RValue<'gcc>, RValue<'gcc>) {\n+ fn cleanup_landin... | 2025-06-28T18:55:31 |
huggingface/transformers | e31c5f603e3c9872372bdfe807b1e85e36631798 | 52c5c6582bdef8bd0f0a9238c9d6703137a10583 | FIX: Minimal fix for loading PEFT weights (#42387)
* FIX Minimal fix for loading PEFT weights
After the weight conversion PR #41580, some adjustments were still
required for loading PEFT weights. This PR presents a minimal fix to
make it work again.
Besides renaming keys, this PR does not address possible conversion... | [
{
"path": "src/transformers/integrations/peft.py",
"patch": "@@ -15,9 +15,9 @@\n import inspect\n import json\n import os\n-import re\n from typing import Any, Literal\n \n+from ..core_model_loading import WeightRenaming, build_glob_alternation, repl\n from ..utils import (\n CONFIG_NAME,\n cached_f... | 2025-11-27T15:13:44 |
golang/go | d1640d86522c08e662eec86de985e9781e879e20 | efbecc7eff88a0d54f3ea9fca290e1808e197ae2 | runtime/pprof: compare all samples vs rusage in TestCPUProfileMultithreadMagnitude
TestCPUProfileMultithreadMagnitude compares pprof results vs OS rusage
to verify that pprof is capturing all CPU usage. Presently it compares
the sum of cpuHog1 samples vs rusage. However, background usage from the
scheduler, GC, etc ca... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -154,14 +154,6 @@ func TestCPUProfileMultithreadMagnitude(t *testing.T) {\n \t\tmaxDiff = 0.40\n \t}\n \n-\t// This test compares the process's total CPU time against the CPU\n-\t// profiler's view of time spent in direct execution of user code.\n-\t... | 2022-01-19T19:25:12 |
nodejs/node | f692299764c83810ee2b7cde176b0d2b8cf839d6 | a40aae8d1bd8e6d292cdfb20a59b101981673334 | crypto: fix KeyObject handle type error message
Fix KeyObject handle type error message. Add test to cover KeyObject
ERR_INVALID_ARG_TYPE exception.
PR-URL: https://github.com/nodejs/node/pull/27904
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: R... | [
{
"path": "lib/internal/crypto/keys.js",
"patch": "@@ -44,7 +44,7 @@ class KeyObject {\n if (type !== 'secret' && type !== 'public' && type !== 'private')\n throw new ERR_INVALID_ARG_VALUE('type', type);\n if (typeof handle !== 'object')\n- throw new ERR_INVALID_ARG_TYPE('handle', 'string... | 2019-05-26T13:47:09 |
huggingface/transformers | 52c5c6582bdef8bd0f0a9238c9d6703137a10583 | f624084ef479c9d449577314e9bde320f708bdeb | Correctly return finish reason length when finished (#42157)
* Correctly return finish reason length when finished
* Typos + fixup
* Fix a few tests
* Update src/transformers/cli/chat.py
Co-authored-by: Lucain <lucainp@gmail.com>
---------
Co-authored-by: Lucain <lucainp@gmail.com> | [
{
"path": "src/transformers/cli/chat.py",
"patch": "@@ -19,7 +19,7 @@\n import string\n import time\n from collections.abc import AsyncIterator\n-from typing import Annotated\n+from typing import Annotated, Any, Optional\n \n import click\n import typer\n@@ -103,12 +103,14 @@ def __init__(self, model_id: st... | 2025-11-27T14:55:55 |
electron/electron | c9375688464f0e82435f481845810919f9fc9a73 | b10f196d169ebc5bf8c274a8fb3ac15c93c15458 | Fix libffmpeg.dylib path for install_name_tool | [
{
"path": "atom.gyp",
"patch": "@@ -489,7 +489,7 @@\n 'action': [\n 'install_name_tool',\n '-change',\n- '@loader_path/libffmpeg.dylib',\n+ '/usr/local/lib/libffmpeg.dylib',\n '@rpath/libffmpeg.dylib',\n ... | 2016-03-12T01:38:53 |
rust-lang/rust | 144989400e64298805690dc923f50a97fbf41c9d | 5735bb39abf74f4c9eb8117704c1c5af60a64fe0 | Fix to use Function instead of RValue | [
{
"path": "src/builder.rs",
"patch": "@@ -1570,16 +1570,13 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n aggregate_value\n }\n \n- fn set_personality_fn(&mut self, _personality: RValue<'gcc>) {\n+ fn set_personality_fn(&mut self, _personality: Function<'g... | 2025-06-28T18:51:16 |
vercel/next.js | e657741b9908cf0044aaef959c0c4defb19ed6d8 | a7afb53a873582dee0f5f25051788f94969b3b2b | next/font: tolerate missing unused fields in capsize map (#50708)
Some font entries in capsize do not include fields like `cap_height` and `x_height`. Since these are unused by next/font, remove these from the serde structure entirely.
Additionally, this makes it so that failing to read or deserialize the capsize map... | [
{
"path": "packages/next-swc/crates/next-core/src/next_font/google/font_fallback.rs",
"patch": "@@ -24,24 +24,18 @@ use crate::{\n };\n \n /// An entry in the Google fonts metrics map\n-#[derive(Deserialize)]\n+#[derive(Deserialize, Debug)]\n #[serde(rename_all = \"camelCase\")]\n pub(super) struct FontMetr... | 2023-06-02T17:10:28 |
golang/go | efbecc7eff88a0d54f3ea9fca290e1808e197ae2 | 985d97e602cb39c7739c072250e09ba61e440318 | go/types, types2: explicitly check for non-nil type in LookupFieldOrMethod
Document and enforce API expectation. Add a test so we don't
inadvertently change the function behavior with respect to nil
type arguments.
Fixes #50620.
Change-Id: Ic000bff7504a03006bd248a319c7a2d49dcf09c8
Reviewed-on: https://go-review.goog... | [
{
"path": "src/cmd/compile/internal/types2/api_test.go",
"patch": "@@ -1443,6 +1443,18 @@ var _ = a.C2\n \tmakePkg(\"main\", mainSrc) // don't crash when type-checking this package\n }\n \n+func TestLookupFieldOrMethodOnNil(t *testing.T) {\n+\t// LookupFieldOrMethod on a nil type is expected to produce a ru... | 2022-01-19T03:58:14 |
huggingface/transformers | 1bca9bac88b98b8809cc2d9c145c93ef1ec8a7da | 663b4cf121d2ab284bb24dd8174e53a79c404d15 | fix: Restore explicit .keys() calls for TensorDict compatibility (#42373)
* fix: Restore explicit .keys() calls for TensorDict compatibility
Fixes issue where TensorDict objects cause RuntimeError: generator raised StopIteration
when used with data collators and tokenization utilities.
Problem:
- TensorDict.__iter__... | [
{
"path": "src/transformers/feature_extraction_sequence_utils.py",
"patch": "@@ -123,8 +123,9 @@ def pad(\n # If we have a list of dicts, let's convert it in a dict of lists\n # We do this to allow using this method as a collate_fn function in PyTorch Dataloader\n if isinstance(proce... | 2025-11-27T14:31:55 |
nodejs/node | afb84744c6071e77f0738a7ff1a52aaa81db8b77 | b1bd9e3dd210d6b20d94c50758e12e93d9dbb3db | stream: convert existing buffer when calling .setEncoding
Convert already-stored chunks when `.setEncoding()` is called
so that subsequent `data` events will receive decoded strings,
as they expect.
Fixes: https://github.com/nodejs/node/issues/27932
PR-URL: https://github.com/nodejs/node/pull/27936
Reviewed-By: Matt... | [
{
"path": "lib/_stream_readable.js",
"patch": "@@ -321,9 +321,22 @@ Readable.prototype.isPaused = function() {\n Readable.prototype.setEncoding = function(enc) {\n if (!StringDecoder)\n StringDecoder = require('string_decoder').StringDecoder;\n- this._readableState.decoder = new StringDecoder(enc);\n... | 2019-05-28T12:01:05 |
rust-lang/rust | 7c71c8388fbe1a06a160e43ff6a37e335cc8e00f | 2e89179368b3c8fc46699b008a37e0ffafeac44b | Fix type_name intrinsic | [
{
"path": "src/builder.rs",
"patch": "@@ -1105,7 +1105,13 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n // TODO(antoyo)\n }\n \n- fn store(&mut self, val: RValue<'gcc>, ptr: RValue<'gcc>, align: Align) -> RValue<'gcc> {\n+ fn store(&mut self, mut val: RVa... | 2025-06-28T18:44:54 |
electron/electron | 0e1bb989132e20b317735c8c134580f85d5e6714 | 71fb6840694aef4d39450c6e45609918c2566f58 | Fix broken/outdated link and push up the version | [
{
"path": "docs/tutorial/debugging-main-process.md",
"patch": "@@ -40,11 +40,11 @@ $ npm install git+https://git@github.com/enlight/node-pre-gyp.git#detect-electro\n ### 4. Recompile the `node-inspector` `v8` modules for electron (change the target to your electron version number)\n \n ```bash\n-$ node_modu... | 2016-03-12T00:26:29 |
vercel/next.js | a7afb53a873582dee0f5f25051788f94969b3b2b | 0f7da4c0680da6c5a27bd2c05a0665fa50f0a923 | fix: a11y issues in the overlay component (HMR) (#49782)
This is a follow-up PR for #49460.
I've fixed some a11y issues at #49460, but I've noticed that Next has other overlay implementations.
So I've applied that into another implementation, which seems to be for HMR overlay.
There is another overlay implementatio... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.tsx",
"patch": "@@ -114,6 +114,7 @@ const LeftRightDialogHeader: React.FC<LeftRightDialogHeaderProps> =\n fill=\"none\"\n xmlns=\"http://www.w3.org/200... | 2023-06-02T16:18:18 |
huggingface/transformers | 663b4cf121d2ab284bb24dd8174e53a79c404d15 | dc7364824d3020a261068618e31e190ba2b473fb | tiny fix for deepseekocr support [vllm] (#42423)
* tiny fix
* fix usage
* only need the config
* remove that too
* fixup | [
{
"path": "src/transformers/models/deepseek_v2/configuration_deepseek_v2.py",
"patch": "@@ -101,6 +101,9 @@ class DeepseekV2Config(PreTrainedConfig):\n Number of selected groups per token for expert selection.\n topk_method (`str`, *optional*, defaults to `\"greedy\"`):\n The... | 2025-11-27T14:25:16 |
golang/go | 985d97e602cb39c7739c072250e09ba61e440318 | 3e45eb3ce1f28ccb6e4150b6c2c09ca8568874e6 | runtime/pprof: assert that labels never appear on unexpected samples
This makes TestLabelSystemstack much more strict, enabling it to detect
any misplacement of labels.
Unfortunately, there are several edge cases where we may not have an
obviously correct stack trace, so we generally except the runtime
package, with ... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -1435,47 +1435,89 @@ func TestLabelSystemstack(t *testing.T) {\n \n \tmatches := matchAndAvoidStacks(stackContainsLabeled, []string{\"runtime.systemstack;key=value\"}, avoidFunctions())\n \tp := testCPUProfile(t, matches, func(dur time.Duration) {\n-... | 2021-12-07T17:01:04 |
electron/electron | 0e5e230c037ee62909b2472fa997ea052b39f091 | 3c11f5dc4d84b7599fe0f314cebc241ef35f3121 | Remove lint errors due to rebase | [
{
"path": "lib/browser/api/menu.js",
"patch": "@@ -122,7 +122,6 @@ Menu.prototype._init = function() {\n // Make sure radio groups have at least one menu item seleted.\n var checked, group, id, j, len, radioItem, ref1;\n ref1 = this.groupsMap;\n- results = [];\n for (id in ref1)... | 2016-03-11T19:12:47 |
vercel/next.js | 062dc38fb9f1d51563ec8d3d3ff42a64ac512694 | 1b9fea7a8c2f76b96c5b3691c09237049c183bef | Fix image loader file emission path for edge runtime (#50683)
[slack-thread](https://vercel.slack.com/archives/C04DUD7EB1B/p1685646762333709?thread_ts=1685643782.265269&cid=C04DUD7EB1B)
Using image in pages SSR emitting the static image files into `<rootDir>/static/media`, which should be located at `<rootDir>/.next/... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -2124,8 +2124,8 @@ export default async function getBaseWebpackConfig(\n not: [new RegExp(WEBPACK_RESOURCE_QUERIES.metadata)],\n },\n options: {\n- isServer: isNodeServer ||... | 2023-06-02T14:01:53 |
huggingface/transformers | dc7364824d3020a261068618e31e190ba2b473fb | e1ab70974d87f0aac43a92cf8cdf489ac2e6d485 | [`FA`] Cleanup loading logic (#41427)
* fix
* style
* fix kernels loading as well
* fix typing
* refactor CB loading logic as well
* fix base fa logic
* rename
* properly lazy load paged fa
* fix
* check if ci is crashing again
* fix fallback
* style
* allow varlen only, e.g. for metal kernel
* fixup new ... | [
{
"path": "examples/pytorch/continuous_batching.py",
"patch": "@@ -172,7 +172,7 @@ def batch_generate(\n \n # Model parameters\n parser.add_argument(\"--sliding-window\", type=int, default=0)\n- parser.add_argument(\"--attn\", type=str, default=\"kernels-community/flash-attn\", help=\"Attention i... | 2025-11-27T14:23:13 |
rust-lang/rust | 3d968973c9563fb19ef041145b8e0ef7bb183b85 | ac6cfdef131b236609ad4e9d82a8474303b26d1b | fix docs of FakeBorrowKind | [
{
"path": "compiler/rustc_abi/src/lib.rs",
"patch": "@@ -1595,29 +1595,29 @@ pub enum TagEncoding<VariantIdx: Idx> {\n /// Niche (values invalid for a type) encoding the discriminant.\n /// Note that for this encoding, the discriminant and variant index of each variant coincide!\n /// (This gets... | 2025-06-27T11:04:39 |
golang/go | 3e45eb3ce1f28ccb6e4150b6c2c09ca8568874e6 | bec2cc370871b998a131f5f363dab4a14b5f2eb2 | runtime: do not inherit labels on system goroutines
GC background mark worker goroutines are created when the first GC is
triggered (or next GC after GOMAXPROCS increases). Since the GC can be
triggered from a user goroutine, those workers will inherit any pprof
labels from the user goroutine.
That isn't meaningful, ... | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -4300,11 +4300,13 @@ func newproc1(fn *funcval, callergp *g, callerpc uintptr) *g {\n \tnewg.gopc = callerpc\n \tnewg.ancestors = saveAncestors(callergp)\n \tnewg.startpc = fn.fn\n-\tif _g_.m.curg != nil {\n-\t\tnewg.labels = _g_.m.curg.labels\n-\t}\n \tif isSys... | 2021-12-07T20:59:14 |
electron/electron | 5f63df248ad386ea7a4af0017156b35f1bd63bac | d564727583b405fdeec53a320ffdc41bc7ed5c28 | Fix the chrome version | [
{
"path": "atom/common/chrome_version.h",
"patch": "@@ -8,7 +8,7 @@\n #ifndef ATOM_COMMON_CHROME_VERSION_H_\n #define ATOM_COMMON_CHROME_VERSION_H_\n \n-#define CHROME_VERSION_STRING \"49.0.2623.64\"\n+#define CHROME_VERSION_STRING \"49.0.2623.75\"\n #define CHROME_VERSION \"v\" CHROME_VERSION_STRING\n \n #... | 2016-03-11T10:53:41 |
huggingface/transformers | 352a2e0c120370f7db3b40caa4c60f0efca4e737 | 7094f1eca16aebf61aff876d82ddda3e873533ac | Benchmark simplification (#42408)
* Renames
* Added the timestamps to request
* Better rename for prompt_ids
* Merged the two timing functions
* Style
* Remove the first timestamp for generate timing
* Fix nit in comment
* Re-introduce timestamps
* Now upload two versions of the results: full and summarized
*... | [
{
"path": "benchmark_v2/framework/benchmark_runner.py",
"patch": "@@ -10,6 +10,7 @@\n from queue import Queue\n from typing import Any\n \n+import numpy as np\n import torch\n from datasets import Dataset\n from huggingface_hub import HfApi\n@@ -208,10 +209,11 @@ def run_benchmark(\n self.logger... | 2025-11-27T10:51:00 |
vercel/next.js | b1f24bf9b314771988c3986b9612b3db44b114b9 | 8b15c16e75fe4600c3c17941d7cb1b8e1e93db02 | make HMR re-execute modules that self invalidate (vercel/turbo#5161)
### Description
This can happen when a module that previously exported a React component
no longer does, the next react refresh integration will then call
`module.hot.invalidate()`
fixes the `acceptance/ReactRefreshRequire.test.ts` next.js inte... | [
{
"path": "crates/turbopack-ecmascript-runtime/js/src/dev/runtime/base/runtime-base.ts",
"patch": "@@ -15,7 +15,7 @@\n \n // This file must not use `import` and `export` statements. Otherwise, it\n // becomes impossible to augment interfaces declared in `<reference>`d files\n-// (e.g. `Module`). Hence the n... | 2023-06-01T23:51:16 |
rust-lang/rust | c9ef11695ffee0dc17f795b51c19f333abdb08a2 | db9daab1ee4146b634492a86391914f3ab6002b7 | Keep inlined var_debug_info only when full debug info is used | [
{
"path": "compiler/rustc_mir_transform/src/inline.rs",
"patch": "@@ -982,14 +982,16 @@ fn inline_call<'tcx, I: Inliner<'tcx>>(\n // Insert all of the (mapped) parts of the callee body into the caller.\n caller_body.local_decls.extend(callee_body.drain_vars_and_temps());\n caller_body.source_sco... | 2025-02-08T01:33:38 |
golang/go | bec2cc370871b998a131f5f363dab4a14b5f2eb2 | d93ff73ae207763871bee38590242be968b2e743 | runtime: eliminate arbitrary timeout in TestStackGrowth
Instead, allow the test to run up until nearly the test's deadline,
whatever that may be, and then crash with a panic (instead of calling
t.Errorf) to get a useful goroutine dump.
With the arbitrary timeout removed, we can now also run this test in
short mode, r... | [
{
"path": "src/runtime/stack_test.go",
"patch": "@@ -7,11 +7,9 @@ package runtime_test\n import (\n \t\"bytes\"\n \t\"fmt\"\n-\t\"os\"\n \t\"reflect\"\n \t\"regexp\"\n \t. \"runtime\"\n-\t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n \t\"sync/atomic\"\n@@ -83,12 +81,7 @@ func TestStackGrowth(t *testing.T) {\n ... | 2022-01-12T15:26:04 |
nodejs/node | b1bd9e3dd210d6b20d94c50758e12e93d9dbb3db | 490c7e060644a8d0d1d0c92bbe6f0e8922a08093 | tls: trace errors can show up as SSL errors
Calls to TLS_trace might leave errors on the SSL error stack, which then
get reported as SSL errors instead of being ignored. Wrap TLS_trace to
keep the error stack unchanged.
Fixes: https://github.com/nodejs/node/issues/27636
PR-URL: https://github.com/nodejs/node/pull/27... | [
{
"path": "src/tls_wrap.cc",
"patch": "@@ -938,7 +938,17 @@ void TLSWrap::EnableTrace(\n #if HAVE_SSL_TRACE\n if (wrap->ssl_) {\n wrap->bio_trace_.reset(BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT));\n- SSL_set_msg_callback(wrap->ssl_.get(), SSL_trace);\n+ SSL_set_msg_callback(wrap->ssl_.get()... | 2019-05-23T17:56:41 |
huggingface/transformers | 7c8d72bde8fe7c362aa3294f4244a8dd67af0abf | a33943ec696ca80f84e4c64ca0aa96b1b0990281 | [MODEL] Nanochat implementation (#41634)
* first draft on modelling
* add modelling to auto
* add to init
* [WIP] add scripts for conversion
* hack at attention and rotary using logit comparison unitl it works
* update conversion script
* fix test
* tody up decoding inputs
* fix all naming nanogpt >> nanochat
... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -620,6 +620,8 @@\n title: MVP\n - local: model_doc/myt5\n title: myt5\n+ - local: model_doc/nanochat\n+ title: NanoChat\n - local: model_doc/nemotron\n title: Nemotron\n - local: model_doc/nllb",
... | 2025-11-27T09:21:38 |
rust-lang/rust | db9daab1ee4146b634492a86391914f3ab6002b7 | d41e12f1f4e4884c356f319b881921aa37040de5 | Test MIR inlined var debug info | [
{
"path": "tests/mir-opt/inline_var_debug_info_kept.rs",
"patch": "@@ -0,0 +1,50 @@\n+//@ test-mir-pass: Inline\n+//@ revisions: PRESERVE FULL NONE LIMITED\n+//@ [PRESERVE]compile-flags: -O -C debuginfo=0 -Zinline-mir-preserve-debug\n+//@ [FULL]compile-flags: -O -C debuginfo=2\n+//@ [NONE]compile-flags: -O ... | 2025-06-22T20:31:22 |
vercel/next.js | eb85e79941ca77cd5b111d247718c9f3da3fa5cb | 38d9d2efee50e785f9fc707a9fcb349e49fa6dd5 | fix `@vercel/turbopack-node` types (and more turbopack updates) (#50605)
for #50557
## Turbopack Updates
* https://github.com/vercel/turbo/pull/5131 <!-- Tobias Koppers - sync
dependencies with next.js -->
* https://github.com/vercel/turbo/pull/5138 <!-- Justin Ridgewell - Fix
`vdbg!` depth and JSON error me... | [
{
"path": "Cargo.lock",
"patch": "@@ -394,7 +394,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-230530.1#ebd2988c245d2c3a7bc5ed4e44c75d5d6aff304b\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-06-01T15:27:13 |
golang/go | d93ff73ae207763871bee38590242be968b2e743 | ca33b34e17b5f4673a40c894a4f807c01d1ecebe | cmd/compile: don't elide extension for LoadReg to FP register on MIPS64
For an extension operation like MOWWreg, if the operand is already
extended, we optimize the second extension out. Usually a LoadReg
of a proper type would come already extended, as a MOVW/MOVWU etc.
instruction does. But for a LoadReg to a floati... | [
{
"path": "src/cmd/compile/internal/mips64/ssa.go",
"patch": "@@ -320,7 +320,10 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tfor a.Op == ssa.OpCopy || a.Op == ssa.OpMIPS64MOVVreg {\n \t\t\ta = a.Args[0]\n \t\t}\n-\t\tif a.Op == ssa.OpLoadReg {\n+\t\tif a.Op == ssa.OpLoadReg && mips.REG_R0 <= a... | 2022-01-18T23:36:00 |
huggingface/transformers | a33943ec696ca80f84e4c64ca0aa96b1b0990281 | 1fe7cfab8e5c2dc5d5ca3b1f62ec5c44ae6b41ce | Fix an edge case for `get_encoder()` (#42295)
* fix and edge case
* ci must turn green
* ci must turn green - second try | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2030,7 +2030,11 @@ def get_encoder(self, modality: Optional[str] = None):\n return getattr(self, name)\n \n if self.base_model is not self and hasattr(self.base_model, \"get_encoder\"):\n- return self.base_model... | 2025-11-27T09:09:18 |
nodejs/node | b8bdf0ebd7e9c5a623badc89a67a810dc82bf9ed | f46952289a35ccfb4ff6a9ebfb31f40a5de449f6 | console: fix table() output
Fixes: https://github.com/nodejs/node/issues/27915
PR-URL: https://github.com/nodejs/node/pull/27917
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gm... | [
{
"path": "lib/internal/console/constructor.js",
"patch": "@@ -412,6 +412,7 @@ const consoleMethods = {\n const opt = {\n depth,\n maxArrayLength: 3,\n+ breakLength: Infinity,\n ...this[kGetInspectOptions](this._stdout)\n };\n return inspect(v, opt);",
"a... | 2019-05-26T17:09:07 |
rust-lang/rust | bc00a633c63871eddc803c6ba21f94b43554cb52 | d41e12f1f4e4884c356f319b881921aa37040de5 | fix typos on some doc comments | [
{
"path": "compiler/rustc_feature/src/accepted.rs",
"patch": "@@ -341,7 +341,7 @@ declare_features! (\n (accepted, pattern_parentheses, \"1.31.0\", Some(51087)),\n /// Allows `use<'a, 'b, A, B>` in `impl Trait + use<...>` for precise capture of generic args.\n (accepted, precise_capturing, \"1.8... | 2025-06-28T11:13:59 |
vercel/next.js | fa076a3a69c9ccf63c9d1e53e7b681aa6dc23db7 | 8253fa0938ca40fd6dad390fe370e0a179b0d573 | Fix required check job (#50620)
x-ref:
https://github.com/vercel/next.js/actions/runs/5138467619/attempts/1 | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -163,8 +163,5 @@ jobs:\n runs-on: [self-hosted, linux, x64]\n name: thank you, next\n steps:\n- - run: exit 0\n- if: success()\n-\n - run: exit 1\n- if: failure()\n+ if: ${{ always() && contains(needs.... | 2023-06-01T01:38:53 |
electron/electron | fcc1f4d7ed1fd0978e68f72c405c8ee5f179e519 | c1267b232072c48b21b55908d5bd699be954b4fa | Finalized browser-window show & hide events, added tests & fixed os x implementation | [
{
"path": "atom/browser/native_window.cc",
"patch": "@@ -428,6 +428,14 @@ void NativeWindow::NotifyWindowFocus() {\n FOR_EACH_OBSERVER(NativeWindowObserver, observers_, OnWindowFocus());\n }\n \n+void NativeWindow::NotifyWindowShow() {\n+ FOR_EACH_OBSERVER(NativeWindowObserver, observers_, OnWindowShow()... | 2016-03-08T19:11:17 |
huggingface/transformers | 1fe7cfab8e5c2dc5d5ca3b1f62ec5c44ae6b41ce | 5458d81d0f9995d85d9ff8a3c7b86de3b1808318 | [fp8] fix scales param name (#42434)
* fix
* up
* up | [
{
"path": "src/transformers/integrations/finegrained_fp8.py",
"patch": "@@ -409,14 +409,14 @@ def __init__(self, config, block_size, device):\n # gate_up tiles: ceil(Wg_out/bo) x ceil(Wg_in/bi)\n gu_scale_o = _ceil_div(Wg_out, bo)\n gu_scale_i = _ceil_div(Wg_in, bi)\n- ... | 2025-11-27T09:09:05 |
golang/go | 2a061fdd47ccb5420229ce5f9f057e194be76995 | 4042194f2d9fd605bd8b6553043e8b195767c446 | cmd/go: fix TestScript/version_buildvcs_git_gpg
This test was missed in CL 358539, presumably because the 'longtest'
builders lack a 'gpg' executable.
Updates #49168
Fixes #50675
Change-Id: Ie3bfc761a5e4304531119625742f3def9df8af3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/378575
Trust: Bryan Mills <bcm... | [
{
"path": "src/cmd/go/testdata/script/version_buildvcs_git_gpg.txt",
"patch": "@@ -34,9 +34,9 @@ exec git log\n # Verify commit signature does not interfere with versioning\n go install\n go version -m $GOBIN/a\n-stdout '^\\tbuild\\tgitrevision\\t'\n-stdout '^\\tbuild\\tgitcommittime\\t'\n-stdout '^\\tbuild... | 2022-01-14T16:15:28 |
nodejs/node | 28ec14fded61eed6d76707d3e003df1952a2d5ee | b84b4d8c7dc957dd630a66ee372c6f29e173e98d | tls: group chunks into TLS segments
TLSWrap::DoWrite() now concatenates data chunks and makes a single
call to SSL_write(). Grouping data into a single segment:
- reduces network overhead: by factors of even 2 or 3 in usages
like `http2` or `form-data`
- improves security: segment lengths can reveal lots of info, ... | [
{
"path": "src/tls_wrap.cc",
"patch": "@@ -302,7 +302,7 @@ void TLSWrap::EncOut() {\n // No encrypted output ready to write to the underlying stream.\n if (BIO_pending(enc_out_) == 0) {\n Debug(this, \"No pending encrypted output\");\n- if (pending_cleartext_input_.empty()) {\n+ if (pending_cl... | 2019-05-24T18:02:04 |
vercel/next.js | 0c3cc04591349fd9c64f05a5880e93a685283843 | 0a6a6abcd37f010c5e8258f8cd9f9c3fcb92ecbe | [turbopack]: Fix HEAD requests (#50366)
I noticed while testing that we're getting a bunch of 500 errors after #50241 merged. Turns out that `fetchNextData` will [fetch `HEAD` requests](https://github.com/vercel/next.js/blob/cf9591cd/packages/next/src/shared/lib/router/router.ts#L619-L621) for background priority. The... | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/router.ts",
"patch": "@@ -1,12 +1,9 @@\n import type { Ipc, StructuredError } from '@vercel/turbopack-node/ipc/index'\n-import type { IncomingMessage, ServerResponse } from 'node:http'\n+import type { IncomingMessage } from 'node:http'\n import { Bu... | 2023-05-31T23:00:55 |
huggingface/transformers | 5458d81d0f9995d85d9ff8a3c7b86de3b1808318 | 55b1400b74b7329f050f8e2bf7ca8534f2019295 | Fix processor usage + add chat_template support to TTS pipeline, and shift common chat template logic to base class. (#42326)
* Fix processor usage and add chat_template support to TTS pipeline.
* Fallback to tokenizer for musicgen.
* Fallback to tokenizer for musicgen.
* Make style
* style/quality after update?
... | [
{
"path": "src/transformers/models/bark/modeling_bark.py",
"patch": "@@ -651,8 +651,10 @@ def generate(\n ) # size: 10048\n \n # take the generated semantic tokens\n- semantic_output = semantic_output[:, max_input_semantic_length + 1 :]\n-\n+ if kwargs.get(\"return_dict_in_gen... | 2025-11-27T09:04:39 |
electron/electron | c1267b232072c48b21b55908d5bd699be954b4fa | ee61ab2d260f84775698dcb7cdbf5308bc520dbb | Added 'show' & 'hide' events to browser-window, fixed visibilitychange event in renderer | [
{
"path": "atom/browser/api/atom_api_window.cc",
"patch": "@@ -191,6 +191,14 @@ void Window::OnWindowFocus() {\n Emit(\"focus\");\n }\n \n+void Window::OnWindowShow() {\n+ Emit(\"show\");\n+}\n+\n+void Window::OnWindowHide() {\n+ Emit(\"hide\");\n+}\n+\n void Window::OnWindowMaximize() {\n Emit(\"maxi... | 2016-03-08T17:36:41 |
golang/go | 4042194f2d9fd605bd8b6553043e8b195767c446 | 50869f377fd72a921d27e3522a05604b7753b3ab | spec: add another example for an invalid shift case
Fixes #45114.
Change-Id: I969e5f1037254fc0ffbba2fc07a81a3987e6b05f
Reviewed-on: https://go-review.googlesource.com/c/go/+/379275
Trust: Robert Griesemer <gri@golang.org>
Run-TryBot: Robert Griesemer <gri@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Rev... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification - Go 1.18 Draft (incomplete)\",\n-\t\"Subtitle\": \"Version of Jan 10, 2022\",\n+\t\"Subtitle\": \"Version of Jan 18, 2022\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4259,7 +4259,8 @... | 2022-01-19T02:04:30 |
nodejs/node | b84b4d8c7dc957dd630a66ee372c6f29e173e98d | eb4c1d5663ff7089badfeaf37dbe246df60607e9 | http2: fix tracking received data for maxSessionMemory
Track received data correctly. Specifically, for the buffer that
is used for receiving data, we previously would try to increment
the current memory usage by its length, and later decrement it
by that, but in the meantime the buffer had been turned over to V8
and ... | [
{
"path": "src/node_http2.cc",
"patch": "@@ -1782,11 +1782,13 @@ void Http2Session::OnStreamRead(ssize_t nread, const uv_buf_t& buf_) {\n // Shrink to the actual amount of used data.\n buf.Resize(nread);\n \n- IncrementCurrentSessionMemory(buf.size());\n+ IncrementCurrentSessionMemory(nread);\n OnSc... | 2019-05-26T15:48:47 |
vercel/next.js | ae1505d1886ff453f31cf2c5c8728f2eb65e3197 | 7953d66f7fddb5e32d37aa572c6e3b54cba0f273 | Support installing tip-of-canary next for benchmarks (vercel/turbo#5156)
### Description
A small change to support installing a local
`next@file:path/to/next.js/packages/next` next package. This fixes an
issue where we run tip-of-canary `next-dev` vs the last published `next`
package, and allows us to benchmark break... | [
{
"path": "crates/turbopack-bench/src/util/npm.rs",
"patch": "@@ -42,7 +42,12 @@ pub fn install(install_dir: &Path, packages: &[NpmPackage<'_>]) -> Result<()> {\n .write_all(format!(\"{:#}\", package_json).as_bytes())?;\n }\n \n- let mut args = vec![\"install\".to_owned(), \"--force\".to_... | 2023-05-31T22:43:08 |
huggingface/transformers | 55b1400b74b7329f050f8e2bf7ca8534f2019295 | 1ae4d917ed3badbdb1ffc167e0529f5a6d3c080d | Any to any pipeline and auto-mapping (#40884)
* initial commit
* fix tests
* fix copies, tests and rename pipe
* another rename
* fix copies again
* activate pipeline mixin in some models
* audio loading
* typo
* fix the test
* stupid typo in filename
* fix copies
* docs
* forgot
* fix pipe tests
* fix c... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -302,6 +302,8 @@\n title: Image tasks with IDEFICS\n - local: tasks/image_text_to_text\n title: Image-text-to-text\n+ - local: tasks/any_to_any\n+ title: Any-to-any\n - local: tasks/video_text_to_text\n tit... | 2025-11-27T07:57:23 |
electron/electron | ee61ab2d260f84775698dcb7cdbf5308bc520dbb | 377a8eefb229cbca78866b190015e678b163aff5 | Cache browser visibility state & emit visibilitychange event on change
Fixes #3788 | [
{
"path": "lib/browser/api/browser-window.js",
"patch": "@@ -88,6 +88,18 @@ BrowserWindow.prototype._init = function() {\n };\n })(this));\n \n+ // Evented visibilityState changes\n+ this.on('minimize', (function(_this) {\n+ return function() {\n+ return _this.webContents.send('ATOM_RENDERER... | 2016-03-07T09:26:36 |
rust-lang/rust | 46e18d1fe048a80613afacb05472d3eb44cec535 | 44e69f592f4e80a39abe98db5279e03e00c73cef | Add FIXMEs for those ignored tests. | [
{
"path": "compiler/rustc_thread_pool/src/broadcast/tests.rs",
"patch": "@@ -64,6 +64,7 @@ fn spawn_broadcast_self() {\n assert!(v.into_iter().eq(0..7));\n }\n \n+// FIXME: We should fix or remove this ignored test.\n #[test]\n #[ignore]\n #[cfg_attr(any(target_os = \"emscripten\", target_family = \"was... | 2025-06-26T06:49:20 |
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.