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
vercel/next.js
b25407e4e4b7dc437a77f93b13ed3f28d66a2b69
ec438418a437068f104f8f7892abe2fb3e2b7988
Add `Route` and `LinkProps` stub generics (#54226) Closes #53732. Closes #52929. When using the statically typed routes feature, we might have code like: ```ts export function Card<T extends string>({ href }: { href: Route<T> | URL })... export function Card<T extends string>({ href }: LinkProps<T>)... ``` To stati...
[ { "path": "packages/next/src/build/webpack/plugins/next-types-plugin/index.ts", "patch": "@@ -428,12 +428,12 @@ declare module 'next/link' {\n 'href'\n >\n \n- export type LinkProps<T> = LinkRestProps & {\n+ export type LinkProps<RouteInferType> = LinkRestProps & {\n /**\n * The path or URL...
2023-08-18T14:41:21
electron/electron
1663a9cd132e6ae1050ac8d201c90b05c66b64ac
362f3deb93375e067837e669239db6c04376e53f
fixes linendings
[ { "path": "atom/app/atom_main_delegate.cc", "patch": "@@ -1,177 +1,177 @@\n-// Copyright (c) 2013 GitHub, Inc.\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-#include \"atom/app/atom_main_delegate.h\"\r\n-\r\n-#include <string>\r\n-#inclu...
2016-08-02T17:31:30
huggingface/transformers
7c4c93752add1eea3358141cc7480bdcccfdf564
744639aba7811a9120e738d975ee4498dee60f92
fix(tokenizer): Fix MLukeTokenizer AttributeError post-v5 refactor (#44362) * fix: MLukeTokenizer AttributeError after v5 tokenizer refactor * nit: Fix ci/circleci: check_code_quality
[ { "path": "src/transformers/models/mluke/tokenization_mluke.py", "patch": "@@ -1013,12 +1013,10 @@ def get_input_ids_and_entity_token_spans(text, entity_spans):\n # add special tokens to input ids\n entity_token_start, entity_token_end = first_entity_token_spans[0]\n firs...
2026-03-02T14:50:17
golang/go
a840bf871e005d948ba6442948997eb3ef2e3c7f
0184fe5ece4f84fda9db04d2472b76efcaa8ef55
[dev.boringcrypto] crypto/internal/boring: add GC-aware cache In the original BoringCrypto port, ecdsa and rsa's public and private keys added a 'boring unsafe.Pointer' field to cache the BoringCrypto form of the key. This led to problems with code that “knew” the layout of those structs and in particular that they ha...
[ { "path": "src/crypto/internal/boring/cache.go", "patch": "@@ -0,0 +1,138 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build boringcrypto\n+\n+package boring\n+\n+import (\n+\...
2022-04-27T13:02:53
nodejs/node
04e45db1726e1d2c11ecbf8cbacc82c88672fc83
86f0b7595c8c43fffcc702ffee6ef52072238325
doc: add entry to url.parse() changes metadata Document that returned `pathname` is now `/` when the URL to parse has no path and the protocol scheme is`ws:` or `wss:`. PR-URL: https://github.com/nodejs/node/pull/30348 Fixes: https://github.com/nodejs/node/issues/30154 Refs: https://github.com/nodejs/node/pull/26941 ...
[ { "path": "doc/api/url.md", "patch": "@@ -1185,6 +1185,11 @@ The formatting process operates as follows:\n <!-- YAML\n added: v0.1.25\n changes:\n+ - version: v11.14.0\n+ pr-url: https://github.com/nodejs/node/pull/26941\n+ description: The `pathname` property on the returned URL object is now `/`\n+...
2019-11-10T08:10:14
vercel/next.js
ec438418a437068f104f8f7892abe2fb3e2b7988
803bbe5c9388bb9b5af3b75ba6f1a76332e74112
Fix missing `devPageFiles` collection (#54224) Closes #54168. This was accidentally removed from a code refactoring.
[ { "path": "packages/next/src/server/lib/router-utils/setup-dev.ts", "patch": "@@ -84,6 +84,7 @@ import { PageNotFoundError } from '../../../shared/lib/utils'\n import { srcEmptySsgManifest } from '../../../build/webpack/plugins/build-manifest-plugin'\n import { PropagateToWorkersField } from './types'\n imp...
2023-08-18T14:16:11
electron/electron
362f3deb93375e067837e669239db6c04376e53f
9872fa0f52a2dec9ec5702481c7476f007965588
fixes linting
[ { "path": "atom/browser/osr_web_contents_view.h", "patch": "@@ -16,7 +16,7 @@ namespace atom {\n class OffScreenWebContentsView : public content::WebContentsView,\n public content::RenderViewHostDelegateView {\n public:\n- OffScreenWebContentsView(bool transparent);\n+ ex...
2016-08-02T14:39:07
huggingface/transformers
8468dbf7d0f97550e70755550abf0862978918ec
dcd3d720aa7d4881970d2fc9c6c0286afb422672
[higgs-audio-v2] fix sampling (#44386) * sampling * fix test
[ { "path": "src/transformers/models/higgs_audio_v2/generation_higgs_audio_v2.py", "patch": "@@ -26,7 +26,13 @@\n LogitsProcessorList,\n StoppingCriteriaList,\n )\n-from ...generation.logits_process import LogitsProcessor\n+from ...generation.logits_process import (\n+ InfNanRemoveLogitsProcessor,\...
2026-03-02T13:06:21
golang/go
9e9c7a0aec0f821b54006681d4fdfba8a0cd6679
0ec08283c8e3a673d9916c186f8d2f5428846862
[dev.boringcrypto] crypto/..., go/build: align deps test with standard rules One annoying difference between dev.boringcrypto and master is that there is not a clear separation between low-level (math/big-free) crypto and high-level crypto, because crypto/internal/boring imports both encoding/asn1 and math/big. This ...
[ { "path": "src/crypto/ecdsa/boring.go", "patch": "@@ -8,6 +8,7 @@ package ecdsa\n \n import (\n \t\"crypto/internal/boring\"\n+\t\"crypto/internal/boring/bbig\"\n \t\"math/big\"\n \t\"sync/atomic\"\n \t\"unsafe\"\n@@ -43,7 +44,7 @@ func boringPublicKey(pub *PublicKey) (*boring.PublicKeyECDSA, error) {\n \n ...
2022-04-27T13:02:53
nodejs/node
78dbe74520d36de7f7bc17707848ec8ec63e67a5
f3ea4e9598242f2012e2093157671fc309452eaf
crypto: fix key requirements in asymmetric cipher PR-URL: https://github.com/nodejs/node/pull/30249 Fixes: https://github.com/nodejs/node/issues/30237 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M ...
[ { "path": "lib/internal/crypto/cipher.js", "patch": "@@ -66,11 +66,11 @@ function rsaFunctionFor(method, defaultPadding, keyType) {\n const publicEncrypt = rsaFunctionFor(_publicEncrypt, RSA_PKCS1_OAEP_PADDING,\n 'public');\n const publicDecrypt = rsaFunctionFor(_publicD...
2019-11-04T14:00:25
electron/electron
8c0a033b6ff83f139ddcdde34c9dd1e2c8d835c5
edb573d69e5839e5fa0bf595b0137548dc975e69
Fix lint errors of using __proto__
[ { "path": "atom/renderer/api/atom_api_web_frame.cc", "patch": "@@ -220,11 +220,14 @@ void WebFrame::BuildPrototype(\n \n namespace {\n \n+using atom::api::WebFrame;\n+\n void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,\n v8::Local<v8::Context> context, void* priv) ...
2016-08-02T12:02:28
vercel/next.js
803bbe5c9388bb9b5af3b75ba6f1a76332e74112
819a163fce97a4267383c8eb6521f6d574c36b1f
fix process.env not being available in standalone mode (#54203) ### What? When running Next in standalone mode, `process.env` is not made available to the render workers, making it impossible to access environment variables that aren't provided in `.env` files. ### Why? `initialEnv` is undefined in `createWorke...
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -198,21 +198,25 @@ export async function initialize(opts: {\n },\n } as any)\n \n+ const { initialEnv } = require('@next/env') as typeof import('@next/env')\n+\n if (!!config.experimental.appDir) {\n renderWorkers.app = awa...
2023-08-18T14:04:48
huggingface/transformers
f2f0d17d160bc239de46771d6ad84a4e5c2bc2e2
1391366f78457cac417090219559a6e650be50e2
Add VibeVoice ASR (#43625) * Add vibevoice tokenizer files. * Address style tests. * Revert to expected outputs previously computed on runner. * Enable encoder output test. * Update expected output from runner * Add note on expected outputs * remove code link and better init * Update src/transformers/models/vib...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1044,6 +1044,8 @@\n title: UnivNet\n - local: model_doc/vibevoice_acoustic_tokenizer\n title: VibeVoice Acoustic Tokenizer\n+ - local: model_doc/vibevoice_asr\n+ title: VibeVoice ASR\n - local: model_doc/vits\n ...
2026-03-02T11:29:55
golang/go
e7b0559448dc81ddfcee965152d0794f25b95da0
cb6fc99b32cd5ec80e98f0eaec18bcfffba572ca
regexp/syntax: fix typo in comment Fix typo in comment describing IsWordChar. Change-Id: Ia283813cf5662e218ee6d0411fb0c1b1ad1021f3 Reviewed-on: https://go-review.googlesource.com/c/go/+/393435 Auto-Submit: Dmitri Shuralyov <dmitshur@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Dmitri Shural...
[ { "path": "src/regexp/syntax/prog.go", "patch": "@@ -102,7 +102,7 @@ func EmptyOpContext(r1, r2 rune) EmptyOp {\n \treturn op\n }\n \n-// IsWordChar reports whether r is consider a “word character”\n+// IsWordChar reports whether r is considered a “word character”\n // during the evaluation of the \\b and \...
2022-03-16T17:22:11
huggingface/transformers
1391366f78457cac417090219559a6e650be50e2
9dbc535644e1feb92224b9f4f3da4b1e8f93be88
Mamba-1/-2 init weights in mixer class (#43778) * Move dt_bias init into Mamba2Mixer * Remove redundant init from Mamba2PreTrainedModel * Add back init for meta device * Add dt_bias init into MambaMixer * Formatting code * [mamba,mamba2] add local init * fix check * style --------- Co-authored-by: Arthur <art...
[ { "path": "src/transformers/models/falcon_mamba/modeling_falcon_mamba.py", "patch": "@@ -188,7 +188,7 @@ class FalconMambaMixer(nn.Module):\n and is why FalconMamba is called **selective** state spaces)\n \"\"\"\n \n- def __init__(self, config: FalconMambaConfig, layer_idx: int):\n+ def __init...
2026-03-02T10:33:56
electron/electron
9068182664c52e4670583b4d6717a0bb82745e5e
935d47d83ecfbee060f199dfc6bd7136c9cbc72c
small fixes
[ { "path": "atom/browser/osr_render_widget_host_view.cc", "patch": "@@ -381,7 +381,9 @@ OffScreenRenderWidgetHostView::~OffScreenRenderWidgetHostView() {\n delegated_frame_host_->WasHidden();\n delegated_frame_host_->ResetCompositor();\n \n+#if defined(OS_MACOSX)\n DestroyPlatformWidget();\n+#endif\n...
2016-08-02T10:56:03
vercel/next.js
132d3e8f972a6e38f2c9a5cb09aaaf8b36060070
87b66f64e53b9e5867cc88a7d648f4ab0af816ac
fix: invalid module transform for `@headlessui/react` (#54206) occured since #54188 - `*`: use kebabcase instead of lowercase - Transition: `components/transitions/transition` - Tab: `components/tabs/tabs` ```plain - wait compiling /not-found (client and server)... - error ./node_modules/.pnpm/@headlessui+react@1.7....
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -722,8 +722,12 @@ function assignDefaults(\n },\n },\n '@headlessui/react': {\n- transform:\n- 'modularize-import-loader?name={{member}}&join=./components/{{lowerCase member}}/{{lowerCase member}}!@headlessui/react',\n+ ...
2023-08-18T10:33:33
golang/go
c90a19a7601a201ac54be352608d46365adc0095
74f00094220f26c80fbaab6eca28c3a664897d24
cmd/compile: set correct package for vars/params/results from nested instantiation Fixes #52117 Change-Id: Ib5b2cdbdbce1d516aa10a0df349449b756f2f404 Reviewed-on: https://go-review.googlesource.com/c/go/+/398474 Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Than McIntosh <thanm@google.com> TryBot-...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -417,6 +417,7 @@ func (g *genInst) buildClosure(outer *ir.Func, x ir.Node) ir.Node {\n \tvar dictAssign *ir.AssignStmt\n \tif outer != nil {\n \t\tdictVar = ir.NewNameAt(pos, typecheck.LookupNum(typecheck.LocalDictName, g.dnum))\n+\t\tdictV...
2022-04-05T16:33:58
nodejs/node
5bd6f516d82d069ff8710b86108dedc333b2b580
0e964a7e6fe86de47de4ca21f464c47eaac256a8
doc: add lookup to http.request() options Add documentation for the `lookup` option. PR-URL: https://github.com/nodejs/node/pull/30353 Fixes: https://github.com/nodejs/node/issues/30171 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev...
[ { "path": "doc/api/http.md", "patch": "@@ -2133,6 +2133,7 @@ changes:\n * `hostname` {string} Alias for `host`. To support [`url.parse()`][],\n `hostname` will be used if both `host` and `hostname` are specified.\n * `localAddress` {string} Local interface to bind for network connections.\n+ * `loo...
2019-11-10T17:52:18
huggingface/transformers
6a92ebdd00d13708a35dd05d6b5947a1f04916d7
e58be565aab224dcf24f8324aad761ba5634b2bc
Model patching API (#43917) * patching api * remove * simpler * add extra weight conversions * use a pather class instead of a config for better extensibility * docs * library wide monkey patching * remove * Update docs/source/en/monkey_patching.md Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.g...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -16,6 +16,8 @@\n title: Loading models\n - local: custom_models\n title: Customizing models\n+ - local: monkey_patching\n+ title: Monkey patching\n - local: how_to_hack_models\n title: Customizing model components\n ...
2026-03-02T10:10:48
golang/go
74f00094220f26c80fbaab6eca28c3a664897d24
0eb93d6b43dde6721b2a52460037745843f7f2bf
runtime: use saved LR when unwinding through morestack On LR machine, consider F calling G calling H, which grows stack. The stack looks like ... G's frame: ... locals ... saved LR = return PC in F <- SP points here at morestack H's frame (to be created) At morestack, we save gp.sched.pc = H's morestack call gp....
[ { "path": "src/runtime/traceback.go", "patch": "@@ -82,6 +82,7 @@ func gentraceback(pc0, sp0, lr0 uintptr, gp *g, skip int, pcbuf *uintptr, max in\n \t}\n \twaspanic := false\n \tcgoCtxt := gp.cgoCtxt\n+\tstack := gp.stack\n \tprinting := pcbuf == nil && callback == nil\n \n \t// If the PC is zero, it's lik...
2022-04-15T16:23:06
vercel/next.js
c676f9357ee1e9f364c1e20265b3ab70bf207cf5
631018a674123466e92a4774e9806654a118f914
fix bfcache restoration behavior (#54198) Follow up to https://github.com/vercel/next.js/pull/54081 -- this was restoring the router tree improperly causing an error on bfcache hits Had to override some default behaviors to prevent `forward` / `back` in playwright from hanging indefinitely since no load event is ...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -373,12 +373,12 @@ function Router({\n // would trigger the mpa navigation logic again from the lines below.\n // This will restore the router to the initial state in the event that the app is restored from bfcache.\n f...
2023-08-17T22:05:26
rust-lang/rust
49ae52e3ffeb3d98f19845eba5eb9fa1408fa432
5795086bdfe7ed988aa53a110bd0692c33d8755b
Fix encoding of `link_section` and `no_mangle` cross crate
[ { "path": "compiler/rustc_attr_data_structures/src/encode_cross_crate.rs", "patch": "@@ -40,18 +40,18 @@ impl AttributeKind {\n Fundamental { .. } => Yes,\n Ignore { .. } => No,\n Inline(..) => No,\n- LinkName { .. } => Yes,\n+ LinkName { .. } => Yes...
2025-07-17T06:02:26
huggingface/transformers
dd5f1a1ec8d7133329548f6be4dcbb0693750c99
11b1906d5c0dae39c13270e47cc02c4cde70e548
Strict export cleanup (#44293) * remove strict mode tests * fix export errors * last one * skip pretraining as it always computes loss * fix * only skip videomae for pretraining
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -1441,12 +1441,12 @@ def msg_callable():\n if callable(cond):\n cond = cond()\n \n+ # These checks are also compiler hints for TorchDynamo telling\n+ # it that the condition is expected to be True during compilation\n if ...
2026-03-02T09:36:16
nodejs/node
1e0679e56d8e340821fc803073df215c1145dc5b
3d926898db50699e081a8ce077e212339fde082c
doc: fix up N-API doc * Add missing N-API version info * Fix N-API version info for napi_extended_error_info PR-URL: https://github.com/nodejs/node/pull/30254 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
[ { "path": "doc/api/n-api.md", "patch": "@@ -729,8 +729,8 @@ is provided which returns a `napi_extended_error_info` structure.\n The format of the `napi_extended_error_info` structure is as follows:\n \n <!-- YAML\n-added: v10.6.0\n-napiVersion: 4\n+added: v8.0.0\n+napiVersion: 1\n -->\n \n ```C\n@@ -1369,7 ...
2019-11-04T21:38:45
electron/electron
a498cf5b7956095a7e49699335c6dd00fcbe61ff
b59f37de98bbd37f614fa0ba42a3f00a43a4a52e
Fix linting issues
[ { "path": "lib/browser/api/web-contents.js", "patch": "@@ -128,7 +128,6 @@ const wrapWebContents = function (webContents) {\n const asyncWebFrameMethods = function (requestId, method, callback, ...args) {\n this.send('ELECTRON_INTERNAL_RENDERER_ASYNC_WEB_FRAME_METHOD', requestId, method, args)\n i...
2016-08-02T03:13:17
vercel/next.js
ff8c53be5c20572b0448bf585a5bf46c9e78e6ee
d3210a2bf207a935d52aba5a64fa4172461cc264
fix: give name to package so that it works with rust codepath (vercel/turbo#5727) Co-authored-by: Alexander Lyon <Alexander Lyon>
[ { "path": "crates/turbopack-tests/tests/execution/package.json", "patch": "@@ -1,5 +1,6 @@\n {\n \"private\": true,\n+ \"name\": \"execution-test\",\n \"dependencies\": {\n \"expect\": \"29.5.0\",\n \"jest-circus\": \"29.5.0\",", "additions": 1, "deletions": 0, "language": "JSON" ...
2023-08-17T18:58:58
huggingface/transformers
11b1906d5c0dae39c13270e47cc02c4cde70e548
f5da14f893009d863124785ff1c3f46bb058e2c0
[docs] kernelconfig fix (#44337) fix
[ { "path": "docs/source/en/kernel_doc/loading_kernels.md", "patch": "@@ -129,11 +129,11 @@ from transformers import AutoModelForCausalLM, KernelConfig\n kernel_config = KernelConfig(\n kernel_mapping={\n \"RMSNorm\": \"kernels-community/liger_kernels:LigerRMSNorm\",\n- \"LlamaAttention\": ...
2026-02-27T21:26:35
nodejs/node
3d926898db50699e081a8ce077e212339fde082c
796f3d0af49164314868c4778af90eca356f1fef
doc: fix some recent doc nits * Fix formatting. * Fix list numbering. * Unify abbreviation casing. * Use an uppercased constructor in a hypothetic code example. * Fix typos. * Fix sorting in sections and references. PR-URL: https://github.com/nodejs/node/pull/30341 Reviewed-By: Michaël Zasso <targos@protonmail.com> R...
[ { "path": "doc/api/cli.md", "patch": "@@ -168,9 +168,9 @@ The default is `explicit`, which requires providing the full path to a\n module. The `node` mode will enable support for optional file extensions and\n the ability to import a directory that has an index file.\n \n-Please see [customizing esm specifi...
2019-11-09T12:03:49
huggingface/transformers
f5da14f893009d863124785ff1c3f46bb058e2c0
8257fe36dcd81ed26981c08a71ce747f1270aae5
Add `ProcessingKwargs` `ImagesKwargs` etc. to docs (#44269) * Fix tied weight keys sam2 video * add tests + fix parameter type parsing * nit less verbose * fix style * fix imports * debug * improve return section handling (use auto_docstring parsing/formatting methods) * fix import errors * improve how kwargs ...
[ { "path": "docs/source/en/main_classes/processors.md", "patch": "@@ -32,6 +32,22 @@ Those processors inherit from the following base class that implements the savin\n \n [[autodoc]] ProcessorMixin\n \n+### Processing kwargs\n+\n+Processor `__call__` methods accept keyword arguments organized by modality. Th...
2026-02-27T19:03:14
electron/electron
c36bcf47d39d3fd0eecf14cf857060656ea0ad48
f8025d95b89bea74841e18fc184f0b11c5ce7878
:memo: Fix link to macOS Debugging Instructions
[ { "path": "docs/README.md", "patch": "@@ -93,6 +93,6 @@ an issue:\n * [Build Instructions (macOS)](development/build-instructions-osx.md)\n * [Build Instructions (Windows)](development/build-instructions-windows.md)\n * [Build Instructions (Linux)](development/build-instructions-linux.md)\n-* [Debug Instruc...
2016-08-02T02:15:03
vercel/next.js
71149293e59bbc1c285def10a51276da64b6c4ca
e20c8c824c9dc8cfde3d4b6eb6c3c7bd2fd2c081
Allow range version for eslint config (#53751) Fixes #52365 In #52275 that eslint config changed to a fixed canary version to leverage the improvement of `react-hooks` eslint plugin but breaks the installation when 3rd party packages having strict matching for certain version of eslint plugin. This PR allows both pr...
[ { "path": "packages/eslint-config-next/package.json", "patch": "@@ -18,7 +18,7 @@\n \"eslint-plugin-import\": \"^2.26.0\",\n \"eslint-plugin-jsx-a11y\": \"^6.5.1\",\n \"eslint-plugin-react\": \"^7.31.7\",\n- \"eslint-plugin-react-hooks\": \"5.0.0-canary-7118f5dd7-20230705\"\n+ \"eslint-plu...
2023-08-17T18:39:03
rust-lang/rust
fad8dec970f51a2d4c23593b059b1684bd85472a
3014e79f9c8d5510ea7b3a3b70d171d0948b1e96
fix: false positive double_negations when it jumps macro boundary
[ { "path": "compiler/rustc_lint/src/builtin.rs", "patch": "@@ -1584,6 +1584,8 @@ impl EarlyLintPass for DoubleNegations {\n if let ExprKind::Unary(UnOp::Neg, ref inner) = expr.kind\n && let ExprKind::Unary(UnOp::Neg, ref inner2) = inner.kind\n && !matches!(inner2.kind, ExprKin...
2025-07-16T06:39:31
nodejs/node
f8c069f5b88a25304ee2fc638c51464b4df196dd
e55d65384d3feb3dd1bb7341a23766663fbcdba6
stream: increase MAX_HWM MAX_HWM was added in 9208c89 where the highwatermark was changed to always increase in steps of highest power of 2 to prevent increasing hwm excessivly in tiny amounts. Why a limit was added on the highwatermark is unclear but breaks existing usage where a larger read size is used. The invari...
[ { "path": "doc/api/stream.md", "patch": "@@ -1094,6 +1094,8 @@ buffer will be returned.\n If the `size` argument is not specified, all of the data contained in the\n internal buffer will be returned.\n \n+The `size` argument must be less than or equal to 1 GB.\n+\n The `readable.read()` method should only b...
2019-10-20T08:13:57
huggingface/transformers
8257fe36dcd81ed26981c08a71ce747f1270aae5
d22e8d07fa1a98a2c8a470b5f472f2cff85402a2
Fix typos in comments and docstrings (#44332) - Fix 'orignal' -> 'original' in peft.py (lines 245, 284) - Fix duplicate 'is is' -> 'is' in processing_dia.py (line 89)
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -242,7 +242,7 @@ def _build_peft_weight_mapping(\n peft_weight_operations.append(op)\n \n # TODO: this assumption may not hold for models != mixtral\n- # For source, we capture the orignal ...
2026-02-27T18:02:59
golang/go
c15d0a93c772c03fb028f0473016629a70a4427e
4289bd365c38a44db091396873050cab3cfa8098
cmd/compile: fix missing export/import init nodes of builtins that allow multiple arguments Fixes #52590 Change-Id: Ibd0852ae2a9ad8e4598e93320daff1b3c196929f Reviewed-on: https://go-review.googlesource.com/c/go/+/402854 Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> ...
[ { "path": "src/cmd/compile/internal/typecheck/iexport.go", "patch": "@@ -2001,6 +2001,7 @@ func (w *exportWriter) expr(n ir.Node) {\n \t\tn := n.(*ir.BinaryExpr)\n \t\tw.op(n.Op())\n \t\tw.pos(n.Pos())\n+\t\tw.stmtList(n.Init())\n \t\tw.expr(n.X)\n \t\tw.expr(n.Y)\n \t\tif go117ExportTypes {\n@@ -2037,6 +20...
2022-04-28T14:03:00
vercel/next.js
e20c8c824c9dc8cfde3d4b6eb6c3c7bd2fd2c081
847c14ea15d42b3fa8a1701d0a549b8a33d9caef
Assign default not-found boundary if custom not-found is not present for root layer only (#54185) Fixes #54174 We should only add default not-found boundary to loader tree components for root layout. It was accidently added for children routes before
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -53,6 +53,8 @@ const GLOBAL_ERROR_FILE_TYPE = 'global-error'\n const PAGE_SEGMENT = 'page$'\n const PARALLEL_CHILDREN_SEGMENT = 'children$'\n \n+const defaultNotFoundPath = 'next/dist/client/components/not-found-error'\n+\n...
2023-08-17T18:27:27
nodejs/node
e55d65384d3feb3dd1bb7341a23766663fbcdba6
e6a58a89cb01aaac668aabf4cab737c6503a27a1
doc: add link to node-code-ide-configs in testing Refs: https://github.com/orgs/nodejs/teams/collaborators/discussions/58 This config will help contributors to run/debug tests on VSCode PR-URL: https://github.com/nodejs/node/pull/24012 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "BUILDING.md", "patch": "@@ -371,6 +371,10 @@ loopback interface on Ubuntu:\n sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0\n ```\n \n+You can use\n+[node-code-ide-configs](https://github.com/nodejs/node-code-ide-configs)\n+to run/debug tests, if your IDE configs are present.\n+\n #### Running Co...
2018-11-01T05:46:29
electron/electron
217b639597bf32a8231377a7f2870004bcaf447e
c943e4a61fb903d7df023f3024895a311c90b589
Fix filename when uploading to github
[ { "path": "script/upload.py", "patch": "@@ -224,12 +224,11 @@ def upload_electron(github, release, file_path):\n pass\n \n # Upload the file.\n- name = os.path.dirname(file_path)\n with open(file_path, 'rb') as f:\n- upload_io_to_github(github, release, name, f, 'application/zip')\n+ upload...
2016-08-01T12:59:25
huggingface/transformers
dc6c2bad0ddbf02d5a93580b624a6c073e1f42fe
46d09b53ec4f38ff3e6d893c802e5f9af98fba68
Update common tests Trainer (#44260) * update * better now * data is better also now * trainingargs udpate * style * checkpoiting * Fix all * much better i think now * style * fix first test * Fix tests ! * fix * remove report_to * fix import
[ { "path": "src/transformers/trainer.py", "patch": "@@ -1572,7 +1572,9 @@ def _prepare_for_training(self, max_steps, train_dataloader, resume_from_checkpo\n if not delay_optimizer_creation:\n self.create_optimizer()\n \n- model = self._wrap_model(self.model)\n+ # Pass `self....
2026-02-27T17:31:47
vercel/next.js
847c14ea15d42b3fa8a1701d0a549b8a33d9caef
11dfdf8d7a01a4657e57d090ad82b612361ee3ab
Add `size` property to `ReadonlySearchParams` (#53144) Closes #49774 (and my dupe https://github.com/vercel/next.js/issues/53141), where there's a type error when attempting to construct URLSearchParams from ReadonlyURLSearchParams, [as recommended in the Next docs here](https://nextjs.org/docs/app/api-reference/funct...
[ { "path": "packages/next/src/client/components/navigation.test.ts", "patch": "@@ -0,0 +1,9 @@\n+import { ReadonlyURLSearchParams } from './navigation'\n+\n+describe('next/navigation', () => {\n+ it('should be able to construct URLSearchParams from ReadonlyURLSearchParams', () => {\n+ const searchParams ...
2023-08-17T18:15:45
golang/go
4289bd365c38a44db091396873050cab3cfa8098
29bbca5c2c1ad41b2a9747890d183b6dd3a4ace4
runtime: simply user throws, expand runtime throws This gives explicit names to the possible states of throwing (-1, 0, 1). m.throwing is now one of: throwTypeOff: not throwing, previously == 0 throwTypeUser: user throw, previously == -1 throwTypeRuntime: runtime throw, previously == 1 For runtime throws, we now al...
[ { "path": "src/runtime/HACKING.md", "patch": "@@ -93,8 +93,12 @@ messages are prefixed with \"runtime:\".\n For unrecoverable errors where user code is expected to be at fault for the\n failure (such as racing map writes), use `fatal`.\n \n-For runtime error debugging, it's useful to run with\n-`GOTRACEBACK...
2022-03-07T19:07:14
nodejs/node
e6a58a89cb01aaac668aabf4cab737c6503a27a1
8ac771b8093f26ede5426a10ca243eed0d2af2ef
test: fix Python unittests in ./test and ./tools Co-authored-by: @patrickhousley Fixes to Python tests to ensure that the following all pass: 1. __python2 -m pytest ./test ./tools__ # 30 tests pass 2. __python3 -m pytest ./test ./tools__ # 30 tests pass 3. __python2 -m unittest discover -s ./test/tools__ # 1 test ...
[ { "path": "Makefile", "patch": "@@ -300,7 +300,7 @@ jstest: build-addons build-js-native-api-tests build-node-api-tests ## Runs addo\n \n .PHONY: tooltest\n tooltest:\n-\t@$(PYTHON) test/tools/test-js2c.py\n+\t@$(PYTHON) -m unittest discover -s ./test/tools\n \n .PHONY: coverage-run-js\n coverage-run-js:", ...
2019-11-08T19:58:49
huggingface/transformers
46d09b53ec4f38ff3e6d893c802e5f9af98fba68
fc8a65771665466d5b7abf3991d60373e23b42e2
[timesfm2_5] fix timesfm mlp bias (#44325) fix timesfm mlp bias
[ { "path": "src/transformers/models/timesfm2_5/modeling_timesfm2_5.py", "patch": "@@ -81,8 +81,8 @@ def __init__(self, config: TimesFm2_5Config):\n super().__init__()\n self.config = config\n self.activation_fn = ACT2FN[config.activation]\n- self.fc1 = nn.Linear(config.hidden_s...
2026-02-27T13:36:12
electron/electron
c943e4a61fb903d7df023f3024895a311c90b589
d00bff4d94d5ddae1bfe05b9c507b97fe410f010
Fix error in run_boto_script
[ { "path": "script/lib/util.py", "patch": "@@ -220,13 +220,7 @@ def run_boto_script(access_key, secret_key, script_name, *args):\n [env.get('PYTHONPATH', '')] + boto_path_dirs())\n \n boto = os.path.join(BOTO_DIR, 'bin', script_name)\n-\n- args = [\n- sys.executable,\n- boto\n- ] + args\n-\n-...
2016-08-01T12:54:03
golang/go
4bb45f7549548add8222aa4f3040d0e2120691a9
17371eea25f203575389f85b33ddb58792d25e84
runtime: mark sigtramp as TOPFRAME Currently throw() in the signal handler results in "fatal error: unknown return pc from runtime.sigreturn ...". Marking sigtramp as TOPFRAME allows gentraceback to stop tracebacks at the end of a signal handler, since there is not much beyond sigtramp. This is just done on Linux fo...
[ { "path": "src/runtime/sys_linux_386.s", "patch": "@@ -433,7 +433,7 @@ TEXT runtime·sigfwd(SB),NOSPLIT,$12-16\n \tRET\n \n // Called using C ABI.\n-TEXT runtime·sigtramp(SB),NOSPLIT,$28\n+TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$28\n \t// Save callee-saved C registers, since the caller may be a C signal ...
2022-04-26T18:42:34
vercel/next.js
11dfdf8d7a01a4657e57d090ad82b612361ee3ab
8def0c8418b8c128afa848093c374eac3b356c5e
Turbopack: Strip relative path prefix when generating PageLoaderAsset (#54040) ### What? Strip the relative path prefix (`_next/`) when generating the `PageLoaderAsset`. This is necessary because the page loader will internally use `__turbopack_load__`, which prepends the prefix back onto the path. ### Why? Without...
[ { "path": "Cargo.lock", "patch": "@@ -412,7 +412,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-230814.2#1295dbce87dc480b0eb1e19108950e1adce54573\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-08-17T17:29:30
huggingface/transformers
fc8a65771665466d5b7abf3991d60373e23b42e2
9dd90763cdf58bfc245f370f7547da2ee0445ba3
[Quantization] Fixing mxfp4 saving using reverse_op (#43148) * fix * fix * style * update * fix * add kernels to docker * fix * fix * revert docker changes * fix --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/integrations/mxfp4.py", "patch": "@@ -125,22 +125,24 @@ def convert(\n input_dict: dict[str, torch.Tensor],\n model: torch.nn.Module | None = None,\n full_layer_name: str | None = None,\n- missing_keys=None,\n+ missing_keys: list[str] | None ...
2026-02-27T13:28:51
electron/electron
d00bff4d94d5ddae1bfe05b9c507b97fe410f010
079a7a1a1cde24ca7af069a2ad55531461410e75
Fix error of run_python_script
[ { "path": "script/upload.py", "patch": "@@ -126,8 +126,8 @@ def parse_args():\n \n \n def run_python_script(script, *args):\n- script_path = os.path.join(SOURCE_ROOT, 'script', script),\n- return execute([sys.executable, script_path] + args)\n+ script_path = os.path.join(SOURCE_ROOT, 'script', script)\n+...
2016-08-01T12:41:55
golang/go
89044b6d423a07bea3b6f80210f780e859dd2700
f0ee7fda636408b4f04ca3f3b11788f662c90610
math/big: add comprehensive aliasing tests (and minor fixes to Exp, Rand) TestAlias checks systematically for aliasing issues, where passing the same value for an argument and the receiver leads to incorrect results. We had a number of issues like that over the years: - #31084: Lsh on arm64 - #30217: GCD ...
[ { "path": "src/math/big/alias_test.go", "patch": "@@ -0,0 +1,312 @@\n+// Copyright 2019 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package big_test\n+\n+import (\n+\tcryptorand \"crypto/rand\"\n+\t\"ma...
2019-04-04T16:48:58
vercel/next.js
8def0c8418b8c128afa848093c374eac3b356c5e
3fadba5aba5d4fcc217cd869ddd6d20b27b947c8
Update rust toolchain (#54130) The current toolchain is very buggy. Closes WEB-1400
[ { "path": ".cargo/config.toml", "patch": "@@ -32,4 +32,8 @@ rustflags = [\n \"-Zshare-generics=y\",\n \"-Csymbol-mangling-version=v0\",\n \"-Aclippy::too_many_arguments\",\n+ # Clippy's needless mut lint is buggy: https://github.com/rust-lang/rust-clippy/issues/11299\n+ \"-Aclippy::needless_pass_by_...
2023-08-17T16:37:33
electron/electron
36918250ecc5898c76c23b0f3c747021f549a3fa
439ad94afeb6d3d33e8cf34a94cfd2706715ea39
a possible fix for dragging
[ { "path": "atom/browser/osr_render_widget_host_view.cc", "patch": "@@ -593,7 +593,8 @@ void OffScreenRenderWidgetHostView::ClearCompositorFrame() {\n }\n \n void OffScreenRenderWidgetHostView::InitAsPopup(\n- content::RenderWidgetHostView *, const gfx::Rect &) {\n+ content::RenderWidgetHostView* parent_...
2016-08-01T10:06:46
huggingface/transformers
9dd90763cdf58bfc245f370f7547da2ee0445ba3
fe3cb66e51f03ebb7087f2ec44dddf66c9f3d8e2
[Quantization] Add metal quantization for MPS devices! (#43934) * first commit * style * fix * fix * mlx -> metal * other fixes * add tests * fixes * weight -> qweight * fix * tests * fix style * fix * toctree * some docs * qweight -> weight * fix dtype * rm print * overview --------- Co-authored-b...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -232,6 +232,8 @@\n title: HIGGS\n - local: quantization/hqq\n title: HQQ\n+ - local: quantization/metal\n+ title: Metal\n - local: quantization/mxfp4\n title: MXFP4\n - local: quantization/optimum", "additions": 2, "deletion...
2026-02-27T13:28:29
golang/go
f0ee7fda636408b4f04ca3f3b11788f662c90610
0b5218cf4e3e5c17344ea113af346e8e0836f6c4
crypto/tls: remove tls10default GODEBUG flag Updates #45428 Change-Id: Ic2ff459e6a3f1e8ded2a770c11d34067c0b39a8a Reviewed-on: https://go-review.googlesource.com/c/go/+/400974 Reviewed-by: Filippo Valsorda <valsorda@google.com> Auto-Submit: Filippo Valsorda <valsorda@google.com> TryBot-Result: Gopher Robot <gobot@gola...
[ { "path": "doc/go1.19.html", "patch": "@@ -92,6 +92,16 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n TODO: complete this section\n </p>\n \n+<dl id=\"crypto/tls\"><dt><a href=\"/pkg/crypto/tls/\">crypto/tls</a></dt>\n+ <dd>\n+ <p><!-- CL 400974 -->\n+ The <code>tls10defa...
2022-04-19T10:26:53
vercel/next.js
d3210a2bf207a935d52aba5a64fa4172461cc264
5cd6a3096f77be04409e695b3997126b9e7427fb
Update rust toolchain (vercel/turbo#5739) The current toolchain is very buggy. Closes WEB-1405
[ { "path": "crates/turbo-tasks-macros/src/lib.rs", "patch": "@@ -1,7 +1,6 @@\n #![feature(proc_macro_diagnostic)]\n #![feature(allow_internal_unstable)]\n #![feature(box_patterns)]\n-#![allow(clippy::too_many_arguments)]\n \n mod derive;\n mod func;", "additions": 0, "deletions": 1, "language": "...
2023-08-17T16:08:58
nodejs/node
acd35d92750840f76a6c8bb4574a7b9fa3ca6b57
896b75a4da58a7283d551c4595e0aa454baca3e0
test: fix test-benchmark-cluster test-benchmark-cluster needs to account for an option added in 973f324. PR-URL: https://github.com/nodejs/node/pull/30342 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/benchmark/test-benchmark-cluster.js", "patch": "@@ -4,4 +4,9 @@ require('../common');\n \n const runBenchmark = require('../common/benchmark');\n \n-runBenchmark('cluster', ['n=1', 'payload=string', 'sendsPerBroadcast=1']);\n+runBenchmark('cluster', [\n+ 'n=1',\n+ 'payload=string',\n+ 'se...
2019-11-09T13:02:43
electron/electron
01ebc772280f352dbbd7ecdd686c150528d023bc
fb76aaac39d936d465dffad706d60dcdaa3c131a
Fix styling issues
[ { "path": "atom/browser/native_window_views.h", "patch": "@@ -214,10 +214,10 @@ class NativeWindowViews : public NativeWindow,\n // fullscreen), so we restore it correctly.\n gfx::Rect last_normal_bounds_;\n \n- // last_normal_bounds_ may or may not require update on WM_MOVE. When a window \n- // is m...
2016-08-01T00:58:33
huggingface/transformers
fe3cb66e51f03ebb7087f2ec44dddf66c9f3d8e2
a264509c73785467bd6e4b1fc1731d06d5b09940
Timesfm 2.5 (#41763) * init * initial modules * initial model * fix config * compare * rope embedding * normalization * fix scale * add _scale_query * revin * get rid of magic numbers * use configs * scaling=1 * fix Timesfm2P5MLP * normalization * wip * update for v5 * updated docs * Delete convert_t...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1328,6 +1328,8 @@\n title: Time Series Transformer\n - local: model_doc/timesfm\n title: TimesFM\n+ - local: model_doc/timesfm2_5\n+ title: TimesFM2.5\n title: Time series models\n title: Models\n - sections...
2026-02-27T11:59:54
vercel/next.js
02c258dd912296993ddbd795933445c160b5f6bb
fc3bf373c5aba9c4e21c7365276ee97c703ee9a4
Revert "fix(47299): allow testing pages with metadata in jsdom test environment" (#54160) Reverts vercel/next.js#53578 This PR (#53578) will break client components test, revert it for now. Can repro by adding `"use client"` to `app/page.tsx` in `test/production/jest/server-only.test.ts` ``` FAIL app/page.test....
[ { "path": "packages/next/package.json", "patch": "@@ -242,6 +242,7 @@\n \"image-size\": \"1.0.0\",\n \"is-docker\": \"2.0.0\",\n \"is-wsl\": \"2.2.0\",\n+ \"jest-docblock\": \"29.4.3\",\n \"jest-worker\": \"27.0.0-next.5\",\n \"json5\": \"2.2.3\",\n \"jsonwebtoken\": \"9.0.0\",", ...
2023-08-17T08:49:08
golang/go
6796a7924c20d2c58b0cf78766b94543abfadc1b
24b570354caee33d4fb3934ce7ef1cc97fb403fd
crypto/elliptic: refactor package structure Not quite golang.org/wiki/TargetSpecific compliant, but almost. The only substantial code change is in randFieldElement: it used to use Params().BitSize instead of Params().N.BitLen(), which is semantically incorrect, even if the two values are the same for all named curves...
[ { "path": "src/crypto/ecdsa/ecdsa.go", "patch": "@@ -128,7 +128,7 @@ func randFieldElement(c elliptic.Curve, rand io.Reader) (k *big.Int, err error)\n \tparams := c.Params()\n \t// Note that for P-521 this will actually be 63 bits more than the order, as\n \t// division rounds down, but the extra bit is inc...
2021-10-30T04:27:51
huggingface/transformers
a264509c73785467bd6e4b1fc1731d06d5b09940
7d511b6a22f2b1e652c1d6e00eec43edfb30a81c
fix zero3 init config (#44236) * fix zero3 init config * Fix ZeRO-3 weight initialization in `_from_config()` When using `from_config()` with DeepSpeed ZeRO-3, `_init_weights()` silently operated on partitioned empty tensors, making custom initialization a no-op. Parameters retained PyTorch's default kaiming_uniform...
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -290,6 +290,41 @@ def deepspeed_config():\n return None\n \n \n+def initialize_weights_zero3(model):\n+ \"\"\"\n+ DeepSpeed ZeRO-3 variant of `PreTrainedModel.initialize_weights`. Mirrors the `smart_apply`\n+ dispatch logi...
2026-02-27T11:36:17
nodejs/node
8bb83f4d3d29506c9153ff8e025b076531648e1d
0356746f50189368172d389ea1b69d8876cf329b
esm: exit the process with an error if loader has an issue Previously, this would trigger an unhandled rejection that the user cannot handle. Fixes: https://github.com/nodejs/node/issues/30205 PR-URL: https://github.com/nodejs/node/pull/30219 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Colin Ihrig <...
[ { "path": "lib/internal/bootstrap/pre_execution.js", "patch": "@@ -484,16 +484,16 @@ function runMainESM(mainPath) {\n return esmLoader.initializeLoader().then(() => {\n const main = path.isAbsolute(mainPath) ?\n pathToFileURL(mainPath).href : mainPath;\n- return esmLoader.ESMLoader.import(ma...
2019-11-02T11:10:53
vercel/next.js
043114773fba2733c3feea5bd914e1bfe56f89e3
bd5b715d182bb43d3aefecc61c35f8e1a618edcb
fix: `cookies().has()` breaks in app-route (#54112) - Added `has` to ResponseCookies in [edge-runtime/cookies#533](https://github.com/vercel/edge-runtime/pull/533) - Upgraded edge-runtime/cookies to 3.3.0 #54117 - Added a test case Fixes #54005 #54111
[ { "path": "test/e2e/app-dir/app-routes/app-custom-routes.test.ts", "patch": "@@ -423,6 +423,16 @@ createNextDescribe(\n })\n })\n \n+ describe('cookies().has()', () => {\n+ it('gets the correct values', async () => {\n+ const res = await next.fetch(bathPath + '/hooks/cooki...
2023-08-17T01:06:07
golang/go
24b570354caee33d4fb3934ce7ef1cc97fb403fd
68b655f2b91c4407ccd781271039857e0d332989
time: document hhmmss formats Fixes #52516 Change-Id: I173fdb09c245563e09be4e1aacfd374c3a764d74 GitHub-Last-Rev: 14a81e50616e0f268fee9323d0621de861885475 GitHub-Pull-Request: golang/go#52538 Reviewed-on: https://go-review.googlesource.com/c/go/+/402058 Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Ian La...
[ { "path": "src/time/example_test.go", "patch": "@@ -212,6 +212,11 @@ func ExampleTime_Format() {\n \t\tpanic(err)\n \t}\n \n+\ttz, err := time.LoadLocation(\"Asia/Shanghai\")\n+\tif err != nil { // Always check errors even if they should not happen.\n+\t\tpanic(err)\n+\t}\n+\n \t// time.Time's Stringer meth...
2022-04-26T23:55:11
nodejs/node
a4102a00dbfe00b6867589ca9890ae8bf44a9493
dda658cc0f785563fa847061cfd598a054de6420
test: update test-postmortem-metadata.js The following metadata has changed: - v8dbg_class_UncompiledData__inferred_name__String - Implementation was moved to Torque and required update to gen-postmortem-metadata.py. - Refs: https://github.com/v8/v8/commit/e4e86b53cfd028107f6d5e2c0df10d08e690da88 - v8dbg_cla...
[ { "path": "test/v8-updates/test-postmortem-metadata.js", "patch": "@@ -102,7 +102,7 @@ function getExpectedSymbols() {\n 'v8dbg_class_UncompiledData__inferred_name__String',\n 'v8dbg_class_SharedFunctionInfo__internal_formal_parameter_count__uint16_t',\n 'v8dbg_class_SharedFunctionInfo__name_or_...
2019-10-15T00:29:43
huggingface/transformers
8e8b861c19c30c9bef73aa79ad7d0d2f0d9d9aeb
8e26f7e94b310dc9359bcf8bbe8fed453b4e8916
[Model] Add PP-DocLayoutV2 Model Support (#43018) * init * add model_doc * fix * update * update * update * update * update * update * update * update * update * update * update * update * update * update * let's try this * try * fixup docs, expecting autodocstring to fail * is it this * fix * up...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1248,6 +1248,8 @@\n title: Pix2Struct\n - local: model_doc/pixtral\n title: Pixtral\n+ - local: model_doc/pp_doclayout_v2\n+ title: PP-DocLayoutV2\n - local: model_doc/pp_doclayout_v3\n title: PP-DocLayout...
2026-02-27T09:16:28
vercel/next.js
bd5b715d182bb43d3aefecc61c35f8e1a618edcb
6767454b5711c19cbbb0fe240597f12f7c22ae06
Debug tracing: Include navigation through hydration timing (#54078) This: - Adds a simple, generic tracer in the client that can be subscribed to in order to report spans - Reports client spans through the HMR socket in the dev server - Receives these spans and includes them in `.next/trace` Closes WEB-1387
[ { "path": "packages/next/src/client/dev/error-overlay/websocket.ts", "patch": "@@ -17,7 +17,7 @@ export function addMessageListener(cb: (event: any) => void) {\n eventCallbacks.push(cb)\n }\n \n-export function sendMessage(data: any) {\n+export function sendMessage(data: string) {\n if (!source || sourc...
2023-08-17T00:48:44
golang/go
68b655f2b91c4407ccd781271039857e0d332989
d29f5247b8cbf5f2cb7b0e325a5eb1c7c5c1a91f
runtime: disable windowed Smhasher test on 32-bit systems This test tends to be flaky on 32-bit systems. There's not enough bits in the hash output, so we expect a nontrivial number of collisions, and it is often quite a bit higher than expected. Fixes #43130 Change-Id: If35413b7c45eed778a08b834dacf98009ceca840 Revi...
[ { "path": "src/runtime/hash_test.go", "patch": "@@ -525,6 +525,13 @@ func windowed(t *testing.T, k Key) {\n \tif GOARCH == \"wasm\" {\n \t\tt.Skip(\"Too slow on wasm\")\n \t}\n+\tif PtrSize == 4 {\n+\t\t// This test tends to be flaky on 32-bit systems.\n+\t\t// There's not enough bits in the hash output, so...
2022-04-26T23:32:07
electron/electron
64f220fb5013d2d28a0bc9b96f506c413f7a0004
bc9adcd5ca7d2458b7d38bdfbff3c8c4bca27492
fix UTF character sending as suggested by @zcbenz
[ { "path": "atom/common/native_mate_converters/blink_converter.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"atom/common/native_mate_converters/blink_converter.h\"\n \n+#include <algorithm>\n #include <string>\n #include <vector>\n \n@@ -175,11 +176,18 @@ bool Converter<blink::WebKeyboardEvent>::FromV8(\n ...
2016-08-01T00:14:11
huggingface/transformers
24db9db27e3a360149136ac7ba8ba253bb2d899f
710cfdb0af09542df087e1aaca8059fadcd8f364
Improve `has_similar_generate_outputs` assertions (#44166) This patch improves the `has_similar_generate_outputs` assertion, so we get full details when it fails. Before (CI output): ``` AssertionError: False is not true ``` After (CI output would look like): ``` AssertionError: Generate outputs are not similar en...
[ { "path": "tests/generation/test_utils.py", "patch": "@@ -725,7 +725,7 @@ def test_assisted_decoding_matches_greedy_search(self, assistant_type):\n atol = rtol = 1e-5\n \n # The two outputs must match and their shape must be as expected\n- self.assertTrue(has_similar_g...
2026-02-27T08:26:11
nodejs/node
26c8cebb0f6e608211b14e7922b78148f626e017
3429e0178ddb1eb2b288344060db707fefb2da0e
deps: V8: cherry-pick 50031fae736f Original commit message: [compiler] Explicitly initialize const members This fixes a compilation error in Node.js with Xcode: initialize the const member 'blueprint_'. error: constructor for 'v8::internal::compiler::Callee' must explicitly Change-Id: Ia5539842...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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.18',\n+ 'v8_embedder_string': '-node.19',\n \n ##### V8 defaults for Node.js #####\n...
2019-11-04T11:57:15
vercel/next.js
8589a6da759eaa4d50b2eaa90298ca451aeebcf9
4f7fc05f9ec49a578568fb085e5744020348c789
Next build: use exported `handle_issues` from turbopack (#52972) Note: depends on next Turbopack publish https://github.com/vercel/turbo/pull/5487 exports a reusable `handle_issues` function for reporting issues and erroring when failing issues are encountered. This uses it for `next build` with a failing severity l...
[ { "path": "packages/next-swc/crates/next-build/src/next_build.rs", "patch": "@@ -4,7 +4,7 @@ use std::{\n path::{PathBuf, MAIN_SEPARATOR},\n };\n \n-use anyhow::{anyhow, Context, Result};\n+use anyhow::{Context, Result};\n use dunce::canonicalize;\n use next_core::{\n mode::NextMode,\n@@ -25,7 +25,7...
2023-08-16T20:27:04
huggingface/transformers
710cfdb0af09542df087e1aaca8059fadcd8f364
add6461040a0ddeee7371448edbb2f02259621d6
Fix failed test case for exaone_moe model (#43938) * update expected value Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> --------- Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
[ { "path": "tests/models/exaone_moe/test_modeling_exaone_moe.py", "patch": "@@ -22,6 +22,7 @@\n is_torch_available,\n )\n from transformers.testing_utils import (\n+ Expectations,\n cleanup,\n require_flash_attn,\n require_torch,\n@@ -90,12 +91,28 @@ def test_model_logits(self):\n ...
2026-02-27T07:22:46
golang/go
d8cf2243e0ed1c498ed405432c10f9596815a582
13b18ec947c9589b47f058d7e7b95e60fcdb3fc9
runtime: disable idle mark workers with at least one dedicated worker This change completes the proposal laid out in #44163. With #44313 resolved, we now ensure that stopped Ms are able to wake up and become dedicated GC workers. As a result, idle GC workers are in theory no longer required to be a proxy for schedulin...
[ { "path": "src/runtime/mgcpacer.go", "patch": "@@ -287,7 +287,7 @@ type gcControllerState struct {\n \t//\n \t// The top int32 is the maximum number of idle mark workers allowed to\n \t// execute concurrently. Normally, this number is just gomaxprocs. However,\n-\t// during periodic GC cycles it is set to 1...
2022-03-24T18:06:47
electron/electron
bc9adcd5ca7d2458b7d38bdfbff3c8c4bca27492
aac5fb037719a39fbe6e5e8b2bc62bb5d3084519
fix toBUFFER naming issue and cursor-changed parameter order
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1322,9 +1322,9 @@ void WebContents::OnCursorChange(const content::WebCursor& cursor) {\n if (cursor.IsCustom()) {\n Emit(\"cursor-changed\", CursorTypeToString(info),\n gfx::Image::CreateFrom1xBitmap(info.custom_image),\n- ...
2016-08-01T00:13:31
nodejs/node
3429e0178ddb1eb2b288344060db707fefb2da0e
186f15771c7a83d32c9589b7ff8f055b318c9589
deps: V8: cherry-pick e5dbc95 Original commit message: [api] Fix handle leak when getting Context embedder data The `Context::SlowGetAlignedPointerFromEmbedderData()` method returns a pointer, so the fact that it allocates handles is not obvious to the caller. Since this is the slow path anyway,...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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 ##### V8 defaults for Node.js #####\n...
2019-10-30T01:59:09
vercel/next.js
af97755e3c62a6b786b98b98ef8e91bf3d595957
96dd8ff4a505d7ea477c5283a6f7f7ea9be83aad
fix(edge): override init when cloning with `NextRequest` (#54108) ### What? When cloning a `Request` with `NextRequest` the second argument needs to take precedence over the `Headers` set on the original request. ### Why? Follow-up of #53157 I checked the `Request` spec https://fetch.spec.whatwg.org/#request-class...
[ { "path": "packages/next/src/server/web/spec-extension/request.ts", "patch": "@@ -20,7 +20,7 @@ export class NextRequest extends Request {\n const url =\n typeof input !== 'string' && 'url' in input ? input.url : String(input)\n validateURL(url)\n- if (input instanceof Request) super(input)...
2023-08-16T18:54:35
electron/electron
7a471e1ab7ef89be01d7cb6ec7d897c4f1b2ed34
bc7c5c567c37d23fdeb4481e6c4959532b106df9
fix UTF character sending as suggested by @zcbenz
[ { "path": "atom/common/native_mate_converters/blink_converter.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"atom/common/native_mate_converters/blink_converter.h\"\n \n+#include <algorithm>\n #include <string>\n #include <vector>\n \n@@ -175,11 +176,18 @@ bool Converter<blink::WebKeyboardEvent>::FromV8(\n ...
2016-08-01T00:14:11
huggingface/transformers
a28c974c7ac74c83dbf379e93ceecc2661730f63
98fc02ea145010258c68fdeca46af2a03fd3c357
Add OLMo Hybrid model (#43358) * Add OLMo 3.5 Hybrid model * Address review feedback * make RoPE optional Signed-off-by: Yanhong Li <“yanhongl@allenai.org”> * Remove GPT2Tokenizer and use default TokenizersBackend * Address code review feedback * Rename OLMo 3.5 Hybrid → OLMo 3.2 Hybrid * Address review feedbac...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -712,6 +712,8 @@\n title: Olmo3\n - local: model_doc/olmoe\n title: OLMoE\n+ - local: model_doc/olmo_hybrid\n+ title: OlmoHybrid\n - local: model_doc/opt\n title: OPT\n - local: model_doc/pegasus", ...
2026-02-26T23:01:08
golang/go
13b18ec947c9589b47f058d7e7b95e60fcdb3fc9
e1b5f347e78c733bb0743df04c990e20f74bf188
runtime: move scheduling decisions by schedule into findrunnable This change moves several scheduling decisions made by schedule into findrunnable. The main motivation behind this change is the fact that stopped Ms can't become dedicated or fractional GC workers. The main reason for this is that when a stopped M wakes...
[ { "path": "src/runtime/proc.go", "patch": "@@ -2351,6 +2351,11 @@ func handoffp(_p_ *p) {\n \t\tstartm(_p_, false)\n \t\treturn\n \t}\n+\t// if there's trace work to do, start it straight away\n+\tif (trace.enabled || trace.shutdown) && traceReaderAvailable() {\n+\t\tstartm(_p_, false)\n+\t\treturn\n+\t}\n ...
2022-03-18T23:59:12
nodejs/node
186f15771c7a83d32c9589b7ff8f055b318c9589
a9bed0b72b088b5ae8eef625a41b76225686c3f7
deps: V8: backport 5e755c6ee6d3 Original commit message: [objects] Move functions to inline headers This moves a series of functions from dictionary.h and hash-table.h to resp. dictionary-inl.h and hash-table-inl.h. The functions that were moved all somehow use other functions that are defined in...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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 ##### V8 defaults for Node.js #####\n...
2019-10-31T15:06:17
rust-lang/rust
b7caf7593eb77cf8a967fdd40c441b9275bbe7ee
f4b827abeba9f10e6a6f0aaf8c29c7389fe1836a
Improve path segment joining. There are many places that join path segments with `::` to produce a string. A lot of these use `join("::")`. Many in rustdoc use `join_with_double_colon`, and a few use `.joined("..")`. One in Clippy uses `itertools::join`. A couple of them look for `kw::PathRoot` in the first segment, w...
[ { "path": "clippy_lints/src/methods/from_iter_instead_of_collect.rs", "patch": "@@ -4,6 +4,7 @@ use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::source::snippet_with_applicability;\n use clippy_utils::ty::implements_trait;\n use clippy_utils::{is_path_diagnostic_item, sugg};\n+use rust...
2025-05-27T05:51:47
vercel/next.js
0b3e366f3212dcf7d35ed86da60a8422e1a4836a
86d2ead1fe612432f7aee73f295a3753bd421ebe
fix routing bug when bfcache is hit following an mpa navigation (#54081) When an mpa navigation takes place, we currently push the user to the new route and suspend the page indefinitely (x-ref: #49058). When navigating back, if the browser opts into using the [bfcache](https://web.dev/bfcache/), it will remain suspen...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -367,6 +367,28 @@ function Router({\n }, [appRouter, cache, prefetchCache, tree])\n }\n \n+ useEffect(() => {\n+ // If the app is restored from bfcache, it's possible that\n+ // pushRef.mpaNavigation is true, which wou...
2023-08-16T17:55:06
huggingface/transformers
98fc02ea145010258c68fdeca46af2a03fd3c357
b812aa91007ec4b4a1470094da878bf30c9341c1
fix(modeling_attn_mask_utils): remove FutureWarning from logger.warning_once() (#44307) * fix(modeling_attn_mask_utils): remove FutureWarning from logger.warning_once() * refactor(modeling_attn_mask_utils): use warnings instead of logger
[ { "path": "src/transformers/modeling_attn_mask_utils.py", "patch": "@@ -17,18 +17,15 @@\n and will be removed in the future.\n \"\"\"\n \n+import warnings\n from dataclasses import dataclass\n from typing import Union\n \n import torch\n \n-from .utils import logging\n from .utils.import_utils import is_tor...
2026-02-26T21:29:01
electron/electron
bc7c5c567c37d23fdeb4481e6c4959532b106df9
f3b723c9faec28abc3b14653ce1b662456295134
fix toBUFFER naming issue and cursor-changed parameter order
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -1299,9 +1299,9 @@ void WebContents::OnCursorChange(const content::WebCursor& cursor) {\n if (cursor.IsCustom()) {\n Emit(\"cursor-changed\", CursorTypeToString(info),\n gfx::Image::CreateFrom1xBitmap(info.custom_image),\n- ...
2016-08-01T00:13:31
golang/go
e1b5f347e78c733bb0743df04c990e20f74bf188
226346bb763233ed9341bc1d829752628479845f
runtime: reduce max idle mark workers during periodic GC cycles This change reduces the maximum number of idle mark workers during periodic (currently every 2 minutes) GC cycles to 1. Idle mark workers soak up all available and unused Ps, up to GOMAXPROCS. While this provides some throughput and latency benefit in ge...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -1271,7 +1271,7 @@ func (c *GCController) StartCycle(stackSize, globalsSize uint64, scannableFrac f\n \tc.globalsScan = globalsSize\n \tc.heapLive = c.trigger\n \tc.heapScan += uint64(float64(c.trigger-c.heapMarked) * scannableFrac)\n-\tc.startCycle(0, go...
2022-03-16T15:47:57
nodejs/node
a9bed0b72b088b5ae8eef625a41b76225686c3f7
d9fab1fdb76ae3a69b5812a7f2190cf3e58f6d75
deps: V8: backport 07ee86a5a28b Original commit message: PPC: allow for calling CFunctions without function descriptors on AIX. The calling conventions on AIX uses function descriptors, which means that pointers to functions do not point to code, but instead point to metadata about them. When calling...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n...
2019-10-23T13:01:12
rust-lang/rust
fb7aa9e4fdb88a4833274303899b9801ef924100
5795086bdfe7ed988aa53a110bd0692c33d8755b
Improve path segment joining. There are many places that join path segments with `::` to produce a string. A lot of these use `join("::")`. Many in rustdoc use `join_with_double_colon`, and a few use `.joined("..")`. One in Clippy uses `itertools::join`. A couple of them look for `kw::PathRoot` in the first segment, w...
[ { "path": "compiler/rustc_ast/src/ast.rs", "patch": "@@ -18,7 +18,7 @@\n //! - [`Attribute`]: Metadata associated with item.\n //! - [`UnOp`], [`BinOp`], and [`BinOpKind`]: Unary and binary operators.\n \n-use std::borrow::Cow;\n+use std::borrow::{Borrow, Cow};\n use std::{cmp, fmt};\n \n pub use GenericArg...
2025-05-27T05:51:47
vercel/next.js
594f3d1fc0b917b4438cc72bbe284792a7dedda6
b676fce090d21c5b0325d13b759ae9c26ee33f09
Fix root not-found page tree loader structure (#54080) ### What & Why Previously when rendering the root `/_not-found` in production, we'll always override the parallel routes component children with not-found component, this will break the navigation in build mode from root 404 `/_not-found` path. ### How The new ...
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -149,13 +149,15 @@ const isDirectory = async (pathname: string) => {\n async function createTreeCodeFromPath(\n pagePath: string,\n {\n+ page,\n resolveDir,\n resolver,\n resolveParallelSegments,\n me...
2023-08-16T15:10:08
rust-lang/rust
5320b81d1ba23214981e9f55da6cab9ee9bc4e11
08dac6fc6c1634ab60c0b30589b443e31a212e7a
fix `-Zsanitizer=kcfi` on `#[naked]` functions And more broadly only codegen `InstanceKind::Item` using the naked function codegen code. Other instance kinds should follow the normal path.
[ { "path": "src/driver/aot.rs", "patch": "@@ -530,8 +530,12 @@ fn codegen_cgu_content(\n for (mono_item, item_data) in mono_items {\n match mono_item {\n MonoItem::Fn(instance) => {\n- if tcx.codegen_fn_attrs(instance.def_id()).flags.contains(CodegenFnAttrFlags::NAKED)\...
2025-07-01T18:02:31
huggingface/transformers
b812aa91007ec4b4a1470094da878bf30c9341c1
2fcfa37afca074d7b69308a75d87a0060e04a7ec
:rotating_light: [`Ernie 4.5 VL Moe`] Fix up namings to vllm/sglang convention (#44299) * rename * small fix and and adjust converter * oops * try * docs * fix tests * last one? * revisions * fixup naming for ckpt conversion needed for norm * trigger ci fresh * aliases with classes because modular doesnt pic...
[ { "path": "docs/source/en/model_doc/ernie4_5_vl_moe.md", "patch": "@@ -1,4 +1,4 @@\n-<!--Copyright 2025 The Qwen Team and The HuggingFace Inc. team. All rights reserved.\n+<!--Copyright 2025 The Baidu and HuggingFace Inc. team. All rights reserved.\n \n Licensed under the Apache License, Version 2.0 (the \"...
2026-02-26T16:42:29
golang/go
226346bb763233ed9341bc1d829752628479845f
79db59ded9dab276507f3a045e42b76eef5a35b4
runtime: yield instead of sleeping in runqgrab on OpenBSD OpenBSD has a coarse sleep granularity that rounds up to 10 ms increments. This can cause significant STW delays, among other issues. As far as I can tell, there's only 1 tightly timed sleep without an explicit wakeup for which this actually matters. Fixes #52...
[ { "path": "src/runtime/proc.go", "patch": "@@ -5904,10 +5904,10 @@ func runqgrab(_p_ *p, batch *[256]guintptr, batchHead uint32, stealRunNextG bool\n \t\t\t\t\t\t// between different Ps.\n \t\t\t\t\t\t// A sync chan send/recv takes ~50ns as of time of\n \t\t\t\t\t\t// writing, so 3us gives ~50x overshoot.\n...
2022-04-21T22:18:31
nodejs/node
d9fab1fdb76ae3a69b5812a7f2190cf3e58f6d75
53e925a5605675c0f534128c0a317f232229b0f3
deps: V8: cherry-pick 777fa98 Original commit message: Make SetSyntheticModuleExport throw instead of crash for nonexistent export name Per spec, Module::SetSyntheticModuleExport should throw a ReferenceError when called with an export name that was not supplied when constructing that SyntheticModule...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n...
2019-10-28T10:12:22
rust-lang/rust
f100767dce1fcc0287047053cc29659ac5321a6b
9c3064e131f4939cc95a29bb11413c49bbda1491
fix `-Zsanitizer=kcfi` on `#[naked]` functions And more broadly only codegen `InstanceKind::Item` using the naked function codegen code. Other instance kinds should follow the normal path.
[ { "path": "compiler/rustc_codegen_cranelift/src/driver/aot.rs", "patch": "@@ -530,8 +530,12 @@ fn codegen_cgu_content(\n for (mono_item, item_data) in mono_items {\n match mono_item {\n MonoItem::Fn(instance) => {\n- if tcx.codegen_fn_attrs(instance.def_id()).flags.con...
2025-07-01T18:02:31
huggingface/transformers
2fcfa37afca074d7b69308a75d87a0060e04a7ec
af5dfb6c5cb98091aa76c2c768bd4b7a38891b01
fix(flaky): idefics generate cache flake (#44180) Relax idefics cache tolerance for the last layers
[ { "path": "tests/models/idefics/test_modeling_idefics.py", "patch": "@@ -25,6 +25,8 @@\n require_bitsandbytes,\n require_torch,\n require_vision,\n+ set_config_for_less_flaky_test,\n+ set_model_for_less_flaky_test,\n slow,\n torch_device,\n )\n@@ -792,9 +794,10 @@ def test_generate...
2026-02-26T16:18:16
vercel/next.js
b676fce090d21c5b0325d13b759ae9c26ee33f09
bc76784bcbe4debbf1fcbfbedaaccb11e53c3ef8
upgrade edge-runtime dependency (#54117) Hello, This PR upgrades `edge-runtime` and associated packages, mostly fixing issues.
[ { "path": "package.json", "patch": "@@ -65,7 +65,7 @@\n \"@babel/plugin-proposal-object-rest-spread\": \"7.14.7\",\n \"@babel/preset-flow\": \"7.14.5\",\n \"@babel/preset-react\": \"7.14.5\",\n- \"@edge-runtime/jest-environment\": \"2.2.1\",\n+ \"@edge-runtime/jest-environment\": \"2.2.5\"...
2023-08-16T13:57:01
electron/electron
8e1214fc3a5378498f626f1cc886956ca3017d43
aac5fb037719a39fbe6e5e8b2bc62bb5d3084519
paint toggling fix cleanup
[ { "path": "atom/browser/osr_render_widget_host_view.cc", "patch": "@@ -492,7 +492,7 @@ void OffScreenRenderWidgetHostView::Focus() {\n }\n \n bool OffScreenRenderWidgetHostView::HasFocus() const {\n- return true;\n+ return false;\n }\n \n bool OffScreenRenderWidgetHostView::IsSurfaceAvailableForCopy() con...
2016-07-31T23:01:55
golang/go
79db59ded9dab276507f3a045e42b76eef5a35b4
a0f77e56b7a7ecb92dca3e2afdd56ee773c2cb07
runtime: make alloc count metrics truly monotonic Right now we export alloc count metrics via the runtime/metrics package and mark them as monotonic, but that's not actually true. As an optimization, the runtime assumes a span is always fully allocated before being uncached, and updates the accounting as such. In the ...
[ { "path": "src/runtime/mcache.go", "patch": "@@ -156,6 +156,25 @@ func (c *mcache) refill(spc spanClass) {\n \t\t\tthrow(\"bad sweepgen in refill\")\n \t\t}\n \t\tmheap_.central[spc].mcentral.uncacheSpan(s)\n+\n+\t\t// Count up how many slots were used and record it.\n+\t\tstats := memstats.heapStats.acquir...
2022-01-10T22:59:26
nodejs/node
da9695390eafa5df00b2d897fb82cd158194b39f
7484a3863e6d98bfef759bcae260e67637542fe2
deps: V8: cherry-pick 6b0a953 Original commit message: [api] Add possibility for BackingStore to keep Allocator alive Add an `array_buffer_allocator_shared` field to the `Isolate::CreateParams` struct that allows embedders to share ownership of the ArrayBuffer::Allocator with V8, and which in par...
[ { "path": "common.gypi", "patch": "@@ -39,7 +39,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-10-24T11:50:43
huggingface/transformers
d4cb841690bd963f2de7119d5f569ff139b3d989
1ed9eaec6c1a2cad640db8762865fb0e443804e9
XPU now supports backward for the FA2 fixed path (#43905) * XPU supports fixed FA2 bwd now * Update judgment conditions
[ { "path": "tests/models/cohere2/test_modeling_cohere2.py", "patch": "@@ -26,6 +26,8 @@\n Expectations,\n cleanup,\n is_flash_attn_2_available,\n+ is_kernels_available,\n+ is_torch_xpu_available,\n require_flash_attn,\n require_torch,\n require_torch_large_accelerator,\n@@ -249,...
2026-02-26T10:47:43