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
huggingface/transformers
3016717f0d904910fd9a55b3708e76024e71fe72
ca975f1cb880d86dd7d85485c236b8bebad57273
Use removeprefix and removesuffix (#41240) * Use removeprefix and removesuffix Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * More fixes Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> --------- Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
[ { "path": "src/transformers/commands/chat.py", "patch": "@@ -443,8 +443,7 @@ def parse_generate_flags(self, generate_flags: list[str]) -> dict:\n # 2. b. strings should be quoted\n def is_number(s: str) -> bool:\n # handle negative numbers\n- if s.startswith(\"-\"):\n-...
2025-10-01T13:13:04
rust-lang/rust
32c0cb0f5a18ae1cb1966944d287e15ff9225b7d
e314b97ee54091b6bcf33db4770c93d82fded8bc
Add union with default field values case test In particular, there should be no additional errors (default field values for `union` fields are currently erroneously accepted).
[ { "path": "tests/ui/structs/default-field-values/failures.rs", "patch": "@@ -49,6 +49,12 @@ enum E {\n Variant {} //~ ERROR the `#[default]` attribute may only be used on unit enum variants\n }\n \n+union U\n+{\n+ x: i32 = 1,\n+ y: f32 = 2.,\n+}\n+\n fn main () {\n let _ = Foo { .. }; // ok\n ...
2025-06-16T08:17:32
vercel/next.js
12472b4c60069771faf5eebf37013dfcee1bce5d
77204c9ee202c660ac12c0bd4bfa2ae08ecaac7b
Fixed `image-optimizer` crashing when using `outputFileTracing` (#48513) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making:...
[ { "path": "packages/next/src/server/image-optimizer.ts", "patch": "@@ -9,12 +9,11 @@ import contentDisposition from 'next/dist/compiled/content-disposition'\n import { join } from 'path'\n import nodeUrl, { UrlWithParsedQuery } from 'url'\n import { NextConfigComplete } from './config-shared'\n-import {\n- ...
2023-04-18T11:34:21
golang/go
805b4d56364ec40f29fc7efba5de537d14036c6a
b93220c9ca1935c56c01afc1d72d063f1e026f15
cmd/dist: wait for exit in bgwait after a fatal error Currently, when a command scheduled by bgrun fails, bgwait returns to the caller even in case the fatal error was detected. In case of a syntax error in one of the standard packages, as an example, the runInstall function will try to read the generated archive fil...
[ { "path": "src/cmd/dist/util.go", "patch": "@@ -172,6 +172,9 @@ func bgwait(wg *sync.WaitGroup) {\n \tselect {\n \tcase <-done:\n \tcase <-dying:\n+\t\t// Don't return to the caller, to avoid reporting additional errors\n+\t\t// to the user.\n+\t\tselect {}\n \t}\n }\n ", "additions": 3, "deletions"...
2021-05-16T17:52:37
electron/electron
3d5437e0a45b884d850ff125d38c0c49edc4d86f
ce0167756e2a587eea6a31c6fad7660a68fab8f5
tracing: fix docs and allow null values in file path conversion fromv8
[ { "path": "atom/common/native_mate_converters/file_path_converter.h", "patch": "@@ -21,6 +21,9 @@ struct Converter<base::FilePath> {\n static bool FromV8(v8::Isolate* isolate,\n v8::Local<v8::Value> val,\n base::FilePath* out) {\n+ if (val->IsNull())\n+ re...
2015-11-12T21:06:38
huggingface/transformers
1d1ac078933dc7eb902a4d49b9eb347e5242d1e6
bcec3e2175ab7360fd8caa6ffc89682714718563
[repo utils] Update `models_to_deprecate.py` (#41231) * update models_to_deprecate * exclude this file * handle typos and aliases * don't commit files * PR suggestions; make fixup
[ { "path": "utils/models_to_deprecate.py", "patch": "@@ -12,7 +12,8 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \"\"\"\n-Script to find a candidate list of models to deprecate based on the number of downloads and the date of the last commit....
2025-10-01T12:01:52
vercel/next.js
1865a6e3d9193c7b1a87d1e9cedb2163118eb989
6106666d3e2bb20e101c890c77010b1f01c4f62f
Don't build pages before middleware (#48339) ### What? The team working on vercel.com reported that multiple pages were being compiled when opening a single page. Investigated this a bit and found it was caused by the matching logic (that also triggers compiling of matched pages) running before middleware runs. ...
[ { "path": "packages/next/src/server/next-server.ts", "patch": "@@ -2077,14 +2077,9 @@ export default class NextNodeServer extends BaseServer {\n ) {\n return { finished: false }\n }\n- const normalizedPathname = removeTrailingSlash(params.parsed.pathname || '')\n \n let url: string\n \n...
2023-04-18T10:28:49
golang/go
b93220c9ca1935c56c01afc1d72d063f1e026f15
f981a9f7ded779749dca199e0893aa08529b52ec
encoding/xml: add generic encoding test Fixes #48521 Change-Id: Id8402bcff243c0ab19e4ec0b138b9af8c111f88d Reviewed-on: https://go-review.googlesource.com/c/go/+/355492 Trust: Keith Randall <khr@golang.org> Trust: Dan Scales <danscales@google.com> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Go Bot <gobot...
[ { "path": "src/encoding/xml/marshal_test.go", "patch": "@@ -524,6 +524,10 @@ type IfaceAny struct {\n \tT2 T2\n }\n \n+type Generic[T any] struct {\n+\tX T\n+}\n+\n var (\n \tnameAttr = \"Sarah\"\n \tageAttr = uint(12)\n@@ -641,6 +645,7 @@ var marshalTests = []struct {\n \t{Value: &Particle{HasMas...
2021-10-12T23:50:35
electron/electron
edd807d2271634dbe1228f13863a034e5801ed29
c5913c31493dd36b1455c5f1c9a28d65f67c5c72
Fix a typo
[ { "path": "atom/browser/api/lib/app.coffee", "patch": "@@ -9,10 +9,10 @@ app = bindings.app\n app.__proto__ = EventEmitter.prototype\n \n app.setApplicationMenu = (menu) ->\n- electron.menu.setApplicationMenu menu\n+ electron.Menu.setApplicationMenu menu\n \n app.getApplicationMenu = ->\n- electron.menu....
2015-11-12T14:56:18
huggingface/transformers
bcec3e2175ab7360fd8caa6ffc89682714718563
ae879f67f892f64f41a70c59b4136721f37fcca0
fix TrainerIntegrationDeepSpeed UT failures (#41236) Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -356,7 +356,7 @@ def deepspeed_optim_sched(trainer, hf_deepspeed_config, args, num_training_steps\n \n optimizer = None\n if \"optimizer\" in config:\n- if args.adafactor:\n+ if args.optim == \"adafactor\":\n ...
2025-10-01T11:55:01
nodejs/node
269103a0e5e30cc217bde1660087e87dfc722b8a
c5e619b8ffe9e1106a3e104cc138c8bc0324c1a7
stream: fix regression introduced in #26059 In #26059, we introduced a bug that caused 'readable' to be nextTicked on EOF of a ReadableStream. This breaks the dicer module on CITGM. That change was partially reverted to still fix the bug in #25810 and not break dicer. See: https://github.com/nodejs/node/pull/26059 Fi...
[ { "path": "lib/_stream_readable.js", "patch": "@@ -512,12 +512,24 @@ function onEofChunk(stream, state) {\n }\n }\n state.ended = true;\n- state.needReadable = false;\n \n- // We are not protecting if emittedReadable = true,\n- // so 'readable' gets scheduled anyway.\n- state.emittedReadable = t...
2019-03-13T21:26:18
golang/go
a0963164e86356092074473049cca7bff52afbce
5430203a1e7f3ba3af70b17bf2eeb61efda2ae58
cmd/compile: add line number test for #49436 This enhances the existing line number test to allow a specific -gcflags (e.g., -G=3) and to permit ignoring duplicate line numbers (which is arguably a bug, but not THIS bug, and it lowers the risk of a flaky test). Limited to Linux/Darwin and amd64/arm64, also tests with...
[ { "path": "src/cmd/compile/internal/ssa/debug_lines_test.go", "patch": "@@ -8,10 +8,10 @@ import (\n \t\"bufio\"\n \t\"bytes\"\n \t\"flag\"\n+\t\"internal/buildcfg\"\n \t\"runtime\"\n \t\"sort\"\n \n-\t// \"flag\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"io/ioutil\"\n@@ -45,24 +45,43 @@ func testGoArch() ...
2021-11-09T16:47:49
nodejs/node
d35af56e5f3b1334c4360dbf8a013d0c522fe5f8
22de2cfb71f3f1ab63e9663f4aa62bd9016b762a
src: shutdown node in-flight This commit introduces a `node::Stop()` API. An identified use case for embedders is their ability to tear down Node while it is still running (event loop contain pending events) Here the assumptions are that (i) embedders do not wish to resort to JS routines to initiate shutdown (ii) em...
[ { "path": "src/api/callback.cc", "patch": "@@ -82,7 +82,7 @@ void InternalCallbackScope::Close() {\n HandleScope handle_scope(env_->isolate());\n \n if (!env_->can_call_into_js()) return;\n- if (failed_ && !env_->is_main_thread() && env_->is_stopping_worker()) {\n+ if (failed_ && !env_->is_main_thread...
2018-06-12T13:01:46
huggingface/transformers
ae879f67f892f64f41a70c59b4136721f37fcca0
1c4d9982d36dd9a565d695e949907979242f72fc
🚨 [v5] Delete feature extractors used for vision (#41174) * bye bye * remove from docs * do not use feature extractor here * fix docs * do not delete it * forgot these
[ { "path": "docs/source/en/main_classes/feature_extractor.md", "patch": "@@ -16,7 +16,7 @@ rendered properly in your Markdown viewer.\n \n # Feature Extractor\n \n-A feature extractor is in charge of preparing input features for audio or vision models. This includes feature extraction from sequences, e.g., p...
2025-10-01T11:20:58
vercel/next.js
43d09ce2fde0f29ad3fd2fcb06279c3cd37eb544
9c910101e29bda3d797144762a2473abec974bff
Update swc_core to `v0.75.23` (#48098) Depends on https://github.com/vercel/turbo/pull/4470 --- - Closes https://github.com/vercel/next.js/issues/46989 - Fixes WEB-879 - Fixes WEB-813 --------- Co-authored-by: OJ Kwon <1210596+kwonoj@users.noreply.github.com> Co-authored-by: Donny/강동윤 <kdy1997.dev@gm...
[ { "path": "package.json", "patch": "@@ -77,8 +77,8 @@\n \"@opentelemetry/api\": \"1.4.1\",\n \"@svgr/webpack\": \"5.5.0\",\n \"@swc/cli\": \"0.1.55\",\n- \"@swc/core\": \"1.2.203\",\n- \"@swc/helpers\": \"0.4.14\",\n+ \"@swc/core\": \"1.3.51\",\n+ \"@swc/helpers\": \"0.5.0\",\n \...
2023-04-18T06:59:52
rust-lang/rust
e3916036f927e2bfc2ff356df08ef2e1d1b29378
262e8210a5e7c010186333612041ddfc1697c02b
Fix RISC-V C function ABI when passing/returning structs containing floats
[ { "path": "src/abi/pass_mode.rs", "patch": "@@ -40,7 +40,18 @@ fn apply_attrs_to_abi_param(param: AbiParam, arg_attrs: ArgAttributes) -> AbiPar\n }\n }\n \n-fn cast_target_to_abi_params(cast: &CastTarget) -> SmallVec<[AbiParam; 2]> {\n+fn cast_target_to_abi_params(cast: &CastTarget) -> SmallVec<[(Size, ...
2025-04-03T22:53:06
golang/go
f48115c6502a3fb791dc4b37f5817024c9731ee3
8c20584a8206844be705c50efe8aabb6ab9c503e
os: clarify that File.{Read,Write} use the buffer Fixes #49470 Change-Id: I81fd4b0e2eef1d8d430b5d1d10c4f824e803a75c Reviewed-on: https://go-review.googlesource.com/c/go/+/362335 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-b...
[ { "path": "src/os/file.go", "patch": "@@ -109,7 +109,7 @@ func (e *LinkError) Unwrap() error {\n \treturn e.Err\n }\n \n-// Read reads up to len(b) bytes from the File.\n+// Read reads up to len(b) bytes from the File and stores them in b.\n // It returns the number of bytes read and any error encountered.\...
2021-11-09T02:30:30
huggingface/transformers
db1cc65c062fb601a8a011e98d7e4d917919ce1d
f22cb1e8689905091acb07e238b670aadde1e4ee
Video processor accepts single frames on cuda (#41218) * fix * why was is np if input is in torch
[ { "path": "src/transformers/video_utils.py", "patch": "@@ -196,7 +196,9 @@ def make_batched_videos(videos) -> list[Union[np.ndarray, \"torch.Tensor\", \"URL\",\n return convert_pil_frames_to_video([videos])\n # only one frame passed, thus we unsqueeze time dim\n elif is_valid_image(videos):\...
2025-10-01T08:55:11
nodejs/node
ee4f32f27ccde8d2c53d9233ff23f48667ee2b89
5a23a87663cfcf3b6193f5d3095144fb468ca635
doc: update copy/paste error message in Troubleshooting In the Troubleshooting portion of the Collaborator Guide, there is a copy/pasted error message. The message is out of date. More recent git contains a more concise and clear message. Update the text to reflect the current git error message. PR-URL: https://githu...
[ { "path": "COLLABORATOR_GUIDE.md", "patch": "@@ -603,10 +603,9 @@ like this:\n To https://github.com/nodejs/node\n ! [rejected] master -> master (fetch first)\n error: failed to push some refs to 'https://github.com/nodejs/node'\n-hint: Updates were rejected because the remote contains work th...
2019-03-14T03:10:01
vercel/next.js
9c910101e29bda3d797144762a2473abec974bff
a95611fa76c1fdb7525e81c825f704ca938231b8
fix(turbopack/transform_options): enforce default react runtime (#48400) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making:...
[ { "path": "packages/next-swc/crates/next-core/src/next_client/context.rs", "patch": "@@ -158,7 +158,7 @@ pub async fn get_client_module_options_context(\n let tsconfig = get_typescript_transform_options(project_path);\n let decorators_options = get_decorators_transform_options(project_path);\n l...
2023-04-18T06:10:53
rust-lang/rust
308ca3377430d07300cfffbcc7f22a8e2b984b10
8f473467262c7eee210feee9ed7363abd9a1c8d0
Fix RISC-V C function ABI when passing/returning structs containing floats
[ { "path": "src/intrinsic/mod.rs", "patch": "@@ -626,7 +626,7 @@ impl<'gcc, 'tcx> ArgAbiExt<'gcc, 'tcx> for ArgAbi<'tcx, Ty<'tcx>> {\n bx.lifetime_start(llscratch, scratch_size);\n \n // ... where we first store the value...\n- bx.store(val, llscratch, scratch_a...
2025-04-03T22:53:06
huggingface/transformers
f22cb1e8689905091acb07e238b670aadde1e4ee
374ded5ea40c9026cf36003c737e07c584dbd63d
fix qwen text config (#41158) * fix qwen text config * fix tests * fix one more test * address comments
[ { "path": "src/transformers/models/glm4v/configuration_glm4v.py", "patch": "@@ -330,7 +330,6 @@ def __init__(\n video_end_token_id=151342,\n **kwargs,\n ):\n- super().__init__(**kwargs)\n if isinstance(vision_config, dict):\n self.vision_config = self.sub_confi...
2025-09-30T17:23:44
golang/go
8c20584a8206844be705c50efe8aabb6ab9c503e
d3aedb72c687cc58e10755eff006a4dd45cb8e15
bufio: document that NewWriter can return its argument Fixes #49446 Change-Id: Ib0b53a7dd5d567a2dd0bdf29f53d276587b60afb Reviewed-on: https://go-review.googlesource.com/c/go/+/361921 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Revie...
[ { "path": "src/bufio/bufio.go", "patch": "@@ -593,6 +593,8 @@ func NewWriterSize(w io.Writer, size int) *Writer {\n }\n \n // NewWriter returns a new Writer whose buffer has the default size.\n+// If the argument io.Writer is already a Writer with large enough buffer size,\n+// it returns the underlying Wri...
2021-11-08T21:57:50
nodejs/node
6f77af541e4336037f08a876e1a3fa657fd22675
fe8972a4ff4aee5ba48e01e3cad0c9464ba70285
Revert "crypto: add KeyObject.asymmetricKeySize" This reverts commit 4895927a0a4372e0699f84657e0a299393a3d281. PR-URL: https://github.com/nodejs/node/pull/26636 Fixes: https://github.com/nodejs/node/issues/26631 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By:...
[ { "path": "doc/api/crypto.md", "patch": "@@ -1121,15 +1121,6 @@ exposes different functions.\n Most applications should consider using the new `KeyObject` API instead of\n passing keys as strings or `Buffer`s due to improved security features.\n \n-### keyObject.asymmetricKeySize\n-<!-- YAML\n-added: REPLAC...
2019-03-13T16:31:03
vercel/next.js
a95611fa76c1fdb7525e81c825f704ca938231b8
a9e4b795d70281fd4daacaa27aa9c8a9a02dc1b7
feat(next-swc): force teardown heap profiler if exists (#47769) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ##...
[ { "path": "packages/next/src/cli/next-dev.ts", "patch": "@@ -219,7 +219,7 @@ const nextDev: CliCommand = async (argv) => {\n \n const { validateTurboNextConfig } =\n require('../lib/turbopack-warning') as typeof import('../lib/turbopack-warning')\n- const { loadBindings, __isCustomTurbopackBina...
2023-04-18T06:15:36
rust-lang/rust
5723c9997c41be799fcaec791e591fb8406421ff
68ac5abb067806a88464ddbfbd3c7eec877b488d
Fix RISC-V C function ABI when passing/returning structs containing floats
[ { "path": "compiler/rustc_codegen_cranelift/src/abi/pass_mode.rs", "patch": "@@ -40,7 +40,18 @@ fn apply_attrs_to_abi_param(param: AbiParam, arg_attrs: ArgAttributes) -> AbiPar\n }\n }\n \n-fn cast_target_to_abi_params(cast: &CastTarget) -> SmallVec<[AbiParam; 2]> {\n+fn cast_target_to_abi_params(cast: ...
2025-04-03T22:53:06
electron/electron
f63a4a05b79c063bc81ebd75fc66ae4904c3a758
60ec1ca3f71d9e3ee08eb9e4b868a492d6073d20
spec: Make the crash-reporter test more reliable
[ { "path": "spec/api-crash-reporter-spec.coffee", "patch": "@@ -24,10 +24,15 @@ describe 'crash-reporter module', ->\n \n it 'should send minidump when renderer crashes', (done) ->\n @timeout 120000\n+ called = false\n server = http.createServer (req, res) ->\n server.close()\n form ...
2015-11-11T02:37:01
golang/go
d3aedb72c687cc58e10755eff006a4dd45cb8e15
f59d36d2e3f0707c8bf2b157009ffc38a9b74d25
cmd/compile: NewSelectorExpr use n.Pos instead of base.Pos Fixes #49436 Change-Id: I4c8851e7aaee631d5eb22f2ef0aea5a25e936d87 Reviewed-on: https://go-review.googlesource.com/c/go/+/361917 Run-TryBot: Dan Scales <danscales@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org> ...
[ { "path": "src/cmd/compile/internal/typecheck/subr.go", "patch": "@@ -160,7 +160,7 @@ func AddImplicitDots(n *ir.SelectorExpr) *ir.SelectorExpr {\n \tcase path != nil:\n \t\t// rebuild elided dots\n \t\tfor c := len(path) - 1; c >= 0; c-- {\n-\t\t\tdot := ir.NewSelectorExpr(base.Pos, ir.ODOT, n.X, path[c].f...
2021-11-08T14:58:51
nodejs/node
b0de48e85441ff710aab240fdfa8a34adbbee976
7e2088f773d97e00e29cacdc20e1a36b80528be0
src,lib: make DOMException available in all Contexts This allows using `DOMException` from Node.js code for any `vm.Context`. PR-URL: https://github.com/nodejs/node/pull/26497 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/bootstrap/cache.js", "patch": "@@ -25,6 +25,7 @@ const cannotBeRequired = [\n 'internal/bootstrap/node',\n \n 'internal/per_context/setup',\n+ 'internal/per_context/domexception',\n ];\n \n // Skip modules that cannot be required when they are not", "additions": 1, "dele...
2019-03-07T14:45:31
vercel/next.js
842ffeed16ccefd69d593b05e883ee50aaabcbac
22eb2edbfb878ffe684ded35496215f30a8f8dcd
Update swc_core to `v0.75.22` (vercel/turbo#4470) ### Description This update includes an improvement of `@swc/helpers`, so we need to update `@swc/helpers` too when updating next-swc. ### Testing Instructions Fix WEB-744 Fix WEB-859 --- - Fixes #2825. - Fixes #4092.
[ { "path": "crates/turbopack-css/Cargo.toml", "patch": "@@ -27,6 +27,7 @@ turbopack-swc-utils = { workspace = true }\n swc_core = { workspace = true, features = [\n \"ecma_ast\",\n \"css_ast\",\n+ \"css_ast_serde\",\n \"css_codegen\",\n \"css_parser\",\n \"css_utils\",", "additions": 1, "d...
2023-04-18T04:27:30
rust-lang/rust
743c2a4c71f5514ad93d4ccf77d3fdf9f33ac94d
e314b97ee54091b6bcf33db4770c93d82fded8bc
Fix `-nopt` CI jobs They were using `--config` instead of `--set`, which overrides too much stuff.
[ { "path": "src/ci/docker/host-x86_64/i686-gnu-nopt/Dockerfile", "patch": "@@ -22,10 +22,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \\\n COPY scripts/sccache.sh /scripts/\n RUN sh /scripts/sccache.sh\n \n-RUN mkdir -p /config\n-RUN echo \"[rust]\" > /config/nopt-std-config.toml\n-R...
2025-06-16T08:28:55
huggingface/transformers
374ded5ea40c9026cf36003c737e07c584dbd63d
16a141765c3f44a77359482c54d2c6506847e834
Fix white space in documentation (#41157) * Fix white space Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * Revert changes Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * Fix autodoc Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> --------- Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
[ { "path": "CONTRIBUTING.md", "patch": "@@ -278,13 +278,14 @@ are working on it).<br>\n useful to avoid duplicated work, and to differentiate it from PRs ready to be merged.<br>\n ☐ Make sure existing tests pass.<br>\n ☐ If adding a new feature, also add tests for it.<br>\n- - If you are adding a new model...
2025-09-30T16:41:03
electron/electron
90d142b6415c316b7b1af00bf72788a2f03e01e1
da0197543acb41e34c27730012480ee09a11560a
Fix build error
[ { "path": "brightray/script/bootstrap", "patch": "@@ -29,7 +29,8 @@ def main():\n elif (args.libcc_source_path != None or\n args.libcc_shared_library_path != None or\n args.libcc_static_library_path != None):\n- print \"Error: All options of libchromiumcontent are required OR let bright...
2015-11-10T14:26:42
golang/go
01103d533a086afd6c06f3eec5057d46f117d2ff
55e6e825d4c90544248c3a725b4dee9fb45848e7
cmd/link: fix GCC startfiles names on AIX Since GCC version 11, the 64-bit version of GCC starting files are now suffixed by "_64" instead of being stored without suffix under "ppc64" multilib directory. Change-Id: Ibe53521ed24d36e5f6282e3574849b9ae11a1e9a Reviewed-on: https://go-review.googlesource.com/c/go/+/362594...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -1499,8 +1499,19 @@ func (ctxt *Link) hostlink() {\n \t\t\t}\n \t\t\treturn strings.Trim(string(out), \"\\n\")\n \t\t}\n-\t\targv = append(argv, getPathFile(\"crtcxa.o\"))\n-\t\targv = append(argv, getPathFile(\"crtdbase.o\"))\n+\t\t// Since GCC vers...
2021-11-09T09:01:05
nodejs/node
0752a18b88452fd0cbf554856dc5305076cb9da5
c32615ccac2598ece644789feadcd225713946d7
src: fix warning in node_messaging PR-URL: https://github.com/nodejs/node/pull/26682 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -30,7 +30,7 @@ using v8::String;\n using v8::Value;\n using v8::ValueDeserializer;\n using v8::ValueSerializer;\n-using v8::WasmCompiledModule;\n+using v8::WasmModuleObject;\n \n namespace node {\n namespace worker {\n@@ -49,7 +49,7 @@ class DeserializerDelega...
2019-03-15T13:12:01
rust-lang/rust
b7cfe2f4db9e7740f6302a1627d1c087054e64b4
1ade48fde9faeb4e161119619aaa4f940acab79b
Use the new --debug flag of abi-cafe As opposed to patching abi-cafe itself.
[ { "path": "build_system/abi_cafe.rs", "patch": "@@ -6,8 +6,8 @@ use crate::{CodegenBackend, SysrootKind, build_sysroot};\n static ABI_CAFE_REPO: GitRepo = GitRepo::github(\n \"Gankra\",\n \"abi-cafe\",\n- \"49efdca14e9d48c34e50552d1f620615a87637bb\",\n- \"21fed1b4ca4cd439\",\n+ \"94d3803041...
2025-06-16T08:23:24
huggingface/transformers
16a141765c3f44a77359482c54d2c6506847e834
5d1e8530320099d87302eb216417da6fee07d3ab
[docs] Fix tp_plan (#41205) remove manual
[ { "path": "docs/source/en/perf_infer_gpu_multi.md", "patch": "@@ -45,13 +45,7 @@ This guide shows how to enable tensor parallelism with Transformers and differen\n \n ## Partitioning a model\n \n-Transformers supports tensor parallelism if a model has a `tp_plan`. There are two plans to partition a model.\n...
2025-09-30T16:27:50
vercel/next.js
a9e4b795d70281fd4daacaa27aa9c8a9a02dc1b7
af64047d994152a44991dec9c4d671ef7630d31f
typo (#48495) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation or addin...
[ { "path": "docs/api-reference/next.config.js/headers.md", "patch": "@@ -416,6 +416,6 @@ For more information, we recommend the following sections:\n <div class=\"card\">\n <a href=\"/docs/advanced-features/security-headers.md\">\n <b>Security Headers:</b>\n- <small>Improve the security of your Next...
2023-04-18T02:39:15
golang/go
55e6e825d4c90544248c3a725b4dee9fb45848e7
36dbf7f7e63f3738795bb04593c3c011e987d1f3
net/http: add MaxBytesHandler Fixes #39567 Change-Id: I226089b678a6a13d7ce69f360a23fc5bd297d550 GitHub-Last-Rev: 6435fd5881fc70a276d04df5a60440e365924b49 GitHub-Pull-Request: golang/go#48104 Reviewed-on: https://go-review.googlesource.com/c/go/+/346569 Trust: Damien Neil <dneil@google.com> Trust: Ian Lance Taylor <ia...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -6682,3 +6682,63 @@ func testQuerySemicolon(t *testing.T, query string, wantX string, allowSemicolon\n \t\t}\n \t}\n }\n+\n+func TestMaxBytesHandler(t *testing.T) {\n+\tsetParallel(t)\n+\tdefer afterTest(t)\n+\n+\tfor _, maxSize := range []int64{100, 1_00...
2021-08-31T20:35:35
nodejs/node
01b112a031a2f0c6390e541bbaaeb8e0d85c9e0b
38ad285a2ea245ad4c892b04a323022b7f9366c7
test: update postmortem metadata test for V8 7.3 The V8 7.3 update requires the following adjustments to the postmortem debugging metadata constants: - v8dbg_prop_idx_first was removed in https://github.com/v8/v8/commit/1ad0cd560eb8c35bbc7bda49968af1f3859425fe - v8dbg_jsarray_buffer_was_neutered_mask was renamed t...
[ { "path": "test/v8-updates/test-postmortem-metadata.js", "patch": "@@ -84,7 +84,7 @@ function getExpectedSymbols() {\n 'v8dbg_class_Map__constructor_or_backpointer__Object',\n 'v8dbg_class_Map__inobject_properties_start_or_constructor_function_index__char',\n 'v8dbg_class_Map__instance_type__uin...
2018-12-21T18:50:04
huggingface/transformers
5d1e8530320099d87302eb216417da6fee07d3ab
cecd92849edb85beb5412ef5d8cbe7ee63734d73
[Trainer] deprecate `num_train_tokens` (#41165) * dep * fix * fix
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2296,16 +2296,6 @@ def _inner_training_loop(\n max_steps,\n ) = self.set_initial_training_values(args, train_dataloader, total_train_batch_size)\n \n- num_train_tokens = None\n- if self.args.include_tokens_per_second:\n...
2025-09-30T15:53:16
rust-lang/rust
9505b6e91451ced923d027d1e2f1b50919e9cb24
4fc768e0978e7af8870e2b94740ca5c182218044
Fix test description
[ { "path": "tests/ui-fulldeps/stable-mir/check_variant.rs", "patch": "@@ -1,6 +1,6 @@\n //@ run-pass\n-//! Test that users are able to use stable mir APIs to retrieve type information from a crate item\n-//! definition.\n+//! Test that users are able to use stable mir APIs to retrieve\n+//! discriminant valu...
2025-06-06T12:25:32
vercel/next.js
d9e3803e6481f772c6a2c553330cfc6bed759977
1c677406763a58dcd852ad118f81c9c97eb17699
Fix server references handling in the edge runtime (#48502) Currently POST requests to `"use server"` entries are not correctly handled, and this PR partially fixes the behavior. Note that the `isMultipartAction` case is still missing as we can't simply use `busboy`. Later we'll unify the implementation here to alw...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -1261,8 +1261,13 @@ export default async function build(\n : null\n const entriesWithAction = actionManifest ? new Set() : null\n if (actionManifest && entriesWithAction) {\n- for (const id in actionManifest) {\n- ...
2023-04-17T22:36:23
electron/electron
08e245e3dc502baa1f84ec62c85add45738ce5ff
1f01a4535ae6073f6730b993a5b3089c14611cfb
Fix typo
[ { "path": "atom/browser/api/lib/ipc.coffee", "patch": "@@ -1,6 +1,6 @@\n deprecate = require 'deprecate'\n \n-# This module is deprecated, we mirror everything from ipcRenderer.\n+# This module is deprecated, we mirror everything from ipcMain.\n deprecate.warn 'ipc module', 'ipcMain module'\n \n module.expo...
2015-11-10T11:42:05
golang/go
36dbf7f7e63f3738795bb04593c3c011e987d1f3
15a54d627ca7a0bdf45a3d1862b35a892024cacc
cmd/go: add //go:embed all:pattern When //go:embed d matches directory d, it embeds the directory tree rooted at d, but it excludes files beginning with . and _, as well as files having problematic names that will not be packaged into modules (names such as .git and com1). After long discussions on #42328 and #43854,...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -2017,13 +2017,18 @@ func resolveEmbed(pkgdir string, patterns []string) (files []string, pmap map[st\n \tfor _, pattern = range patterns {\n \t\tpid++\n \n+\t\tglob := pattern\n+\t\tall := strings.HasPrefix(pattern, \"all:\")\n+\t\tif all {\n+\t\t\t...
2021-10-28T17:22:07
nodejs/node
38ad285a2ea245ad4c892b04a323022b7f9366c7
260d5f8c3bd55381878cc77c7890d639b7c04452
test: fix tests after V8 update Adapt to changes in async stack traces and function name inference PR-URL: https://github.com/nodejs/node/pull/25852 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
[ { "path": "test/message/esm_display_syntax_error.out", "patch": "@@ -3,4 +3,5 @@ file:///*/test/message/esm_display_syntax_error.mjs:3\n await async () => 0;\n ^^^^^\n SyntaxError: Unexpected reserved word\n- at translators.set (internal/modules/esm/translators.js:*:*)\n+ at internal/modules/esm/trans...
2019-01-18T08:38:22
rust-lang/rust
426ab142507fca8704d934da556f1c96b0fd61b2
ed44c0e3b3a4f90c464361ec6892c1d42c15ea8f
Set MSG_NOSIGNAL for UnixSteam https://github.com/rust-lang/rust/issues/139956 fix
[ { "path": "library/std/src/net/tcp.rs", "patch": "@@ -53,6 +53,12 @@ use crate::time::Duration;\n /// Ok(())\n /// } // the stream is closed here\n /// ```\n+///\n+/// # Platform-specific Behavior\n+///\n+/// On Unix, writes to the underlying socket in `SOCK_STREAM` mode are made with\n+/// `MSG_NOSIGNA...
2025-04-18T08:38:17
electron/electron
1f01a4535ae6073f6730b993a5b3089c14611cfb
d582ddf790969527155e3dd6ccda3eaebb8d1327
Fix compilation error of brightray
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit 29bd72a7537ffb99775e3e56ad5662fd4a1bfed0\n+Subproject commit 871bc3ccf10a86c4d63116f6279dd6095faf3af4", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2015-11-10T10:04:59
huggingface/transformers
cecd92849edb85beb5412ef5d8cbe7ee63734d73
103fa6d235fa34a09c243893b6c85a0b14f23e5e
[v5] Remove train kwargs (#41127) * rm train kwargs * fix
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2131,7 +2131,6 @@ def train(\n resume_from_checkpoint: Optional[Union[str, bool]] = None,\n trial: Union[\"optuna.Trial\", dict[str, Any], None] = None,\n ignore_keys_for_eval: Optional[list[str]] = None,\n- **kwargs: Any,...
2025-09-30T15:43:25
vercel/next.js
a92c5465cac0a123eee2a8086dbfff8482d811b8
e329b31d90a24e937e9f2b7c06470cf95a035fe2
Make jest config serializable (#47620) ### What? This PR ensures the jest configuration is json-serializable. It also adds a bunch of typescript types. ### Why? Jest requires that the configuration be json-serializable. See #47407 for details on the issues caused when it isn't. However, prior to this commit, we wer...
[ { "path": "packages/next/package.json", "patch": "@@ -137,6 +137,8 @@\n \"@edge-runtime/cookies\": \"3.0.6\",\n \"@edge-runtime/primitives\": \"2.1.2\",\n \"@hapi/accept\": \"5.0.2\",\n+ \"@jest/transform\": \"29.5.0\",\n+ \"@jest/types\": \"29.5.0\",\n \"@napi-rs/cli\": \"2.14.7\",\n ...
2023-04-17T18:52:52
golang/go
15a54d627ca7a0bdf45a3d1862b35a892024cacc
90f47dbba635802bb009404e321fa4759ac76d20
runtime: add upper half and carry bit with zero https://golang.org/cl/246763 accidentally changed this from upper + 0 + carry to upper + old vdsoSP + carry. The old value of vdsoPC is usually zero, so this typically works. However, the reentrant case will have a non-zero value, resulting in a bogus returned time. Fi...
[ { "path": "src/runtime/sys_linux_arm.s", "patch": "@@ -456,7 +456,7 @@ finish:\n \tMOVW\t$1000000000, R3\n \tMULLU\tR0, R3, (R1, R0)\n \tADD.S\tR2, R0\n-\tADC\tR4, R1\n+\tADC\t$0, R1\t// Add carry bit to upper half.\n \n \tMOVW\tR0, ret_lo+0(FP)\n \tMOVW\tR1, ret_hi+4(FP)", "additions": 1, "deletion...
2021-11-09T16:35:52
nodejs/node
ff5d632a8312d738400ef882310720f7aa2d15c9
2f477bd34de128683c8d183e759b8f098205b1c9
build,deps: fix V8 snapshot gyp dependencies PR-URL: https://github.com/nodejs/node/pull/25852 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
[ { "path": "deps/v8/gypfiles/v8.gyp", "patch": "@@ -79,7 +79,7 @@\n '<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtin-definitions-from-dsl.h',\n ],\n },\n- 'includes': ['toolchain.gypi', 'features.gypi'],\n+ 'includes': ['toolchain.gypi', 'features.gypi', 'v8_external_snapshot.gypi'],\n 't...
2019-03-10T21:08:04
electron/electron
37a89ee0d98ab59b9f5291c6a79181e16fe48e1e
e3bcb15b814687121ac7dcf51eed9a76b1d2bcd8
Fix compilation error
[ { "path": "brightray/browser/win/windows_toast_notification.cc", "patch": "@@ -329,7 +329,6 @@ HRESULT WindowsToastNotification::CreateHString(const WCHAR* source, HSTRING* de\n */\n ToastEventHandler::ToastEventHandler(WindowsToastNotification* notification, content::DesktopNotificationDelegate* delegate)\...
2015-11-10T10:04:46
rust-lang/rust
5ac1cd9c7da72eed5bce611755ca185a88aef84f
c85760c66ad94d0c1d50c5b8c537e26e896e6816
Test Debug for Location.
[ { "path": "library/coretests/tests/panic/location.rs", "patch": "@@ -29,3 +29,11 @@ fn location_const_column() {\n const COLUMN: u32 = CALLER.column();\n assert_eq!(COLUMN, 40);\n }\n+\n+#[test]\n+fn location_debug() {\n+ let f = format!(\"{:?}\", Location::caller());\n+ assert!(f.contains(&fo...
2025-06-11T16:28:17
huggingface/transformers
e99dee6470ef276d814138b087cf0541d1fa63ae
dded9fd1122a504be7b6be254f39f6cac220ce3f
Remove old sagemaker api support (#41161) * fix * fix
[ { "path": "src/transformers/trainer.py", "patch": "@@ -208,13 +208,8 @@\n \n if is_sagemaker_mp_enabled():\n import smdistributed.modelparallel.torch as smp\n- from smdistributed.modelparallel import __version__ as SMP_VERSION\n-\n- IS_SAGEMAKER_MP_POST_1_10 = version.parse(SMP_VERSION) >= version...
2025-09-30T15:41:52
nodejs/node
2f477bd34de128683c8d183e759b8f098205b1c9
cec35a5eb9a6424f1deb78e0ff624cbf9e166fb6
build,win: mark x86 image as not SAFESEH Refs: https://docs.microsoft.com/en-us/cpp/build/reference/safeseh-image-has-safe-exception-handlers PR-URL: https://github.com/nodejs/node/pull/25852 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ali Ija...
[ { "path": "node.gypi", "patch": "@@ -35,6 +35,13 @@\n '-Werror=undefined-inline',\n ],\n },\n+ # Relevant only for x86.\n+ # Refs: https://docs.microsoft.com/en-us/cpp/build/reference/safeseh-image-has-safe-exception-handlers\n+ 'msvs_settings': {\n+ 'VCLinkerTool': {\n+ 'ImageHasSafe...
2019-02-02T03:03:47
vercel/next.js
6be8c59075ae06f584210d284352960c61858951
da8a82d6bf5789ccb226ec8127c5cdd7e337c265
app dir fixes (#48025) ### What? * fix app dir chunking * fix app dir 404s * improve app dir performance * rerender shadowportal on errors to re-add nextjs-portal to avoid empty page * inject polyfills before user code * fix manifest generation see also https://github.com/vercel/turbo/pull/4488 ### Why?...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -386,7 +386,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-230414.4#f09057dac5eee416fdfe04c02b1e51b478d189bc\"\n+source = \"git+https://github.com/v...
2023-04-17T15:58:33
electron/electron
d582ddf790969527155e3dd6ccda3eaebb8d1327
682433028c8ebb5360f3ac0551f57f314aeb99ec
Update brightray for win7 crash of using notification
[ { "path": "vendor/brightray", "patch": "@@ -1 +1 @@\n-Subproject commit 7c9915847e84076b5444ee945e6dc2904fb345d1\n+Subproject commit 29bd72a7537ffb99775e3e56ad5662fd4a1bfed0", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2015-11-10T09:44:14
rust-lang/rust
3cb0cba054d9d1871f3a10345d5c30cfc7ac214c
015c7770ec0ffdba9ff03f1861144a827497f8ca
Handle win32 separator & prefixes for cygwin paths
[ { "path": "library/std/src/path.rs", "patch": "@@ -1316,8 +1316,17 @@ impl PathBuf {\n need_sep = false\n }\n \n+ let need_clear = if cfg!(target_os = \"cygwin\") {\n+ // If path is absolute and its prefix is none, it is like `/foo`,\n+ // and will be handled...
2025-06-01T15:12:35
nodejs/node
cec35a5eb9a6424f1deb78e0ff624cbf9e166fb6
0d4d6b39a7756e573a8cfcff16917265ed7cc8bb
deps: V8: cherry-pick 7803fa6 Original commit message: Move ARM64 Assembler::nop definition from header to source file When Assembler::nop is in the header, it is considered an inline function. With GN arg is_component_build=true, the V8_EXPORT_PRIVATE mark on the class causes it to be exported every...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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-03-07T17:01:06
huggingface/transformers
6fb6117abebbc83daa2edc4d364425f022f21b66
5bdb70450d40f511c0959e632fb3db5ee933a1f1
Revert "Fix DeepSpeed mixed precision precedence over Accelerate defaults" (#41124) * Revert "Fix DeepSpeed mixed precision precedence over Accelerate defaults (#3…" This reverts commit df67cd35f0ca1a1cbf7147b2576db31b16200cf4. * fix
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -130,58 +130,11 @@ def fill_match(self, ds_key_long, hf_val, hf_key=None, must_match=True):\n \n fill_only = partialmethod(fill_match, must_match=False)\n \n- def override_training_args_from_deepspeed(self, args):\n- \"\"\"\n...
2025-09-30T15:37:42
electron/electron
05611f5e60166f350d4b6776435e62924b8d6e7d
751af25f374c0c144b3f56fb301170fc5b0829b8
spec: Use multiparty instead of formidable The latter is buggy and affects our specs.
[ { "path": "spec/api-crash-reporter-spec.coffee", "patch": "@@ -3,7 +3,7 @@ path = require 'path'\n http = require 'http'\n url = require 'url'\n remote = require 'remote'\n-formidable = require 'formidable'\n+multiparty = require 'multiparty'\n \n crashReporter = remote.require 'crash...
2015-11-10T08:21:08
huggingface/transformers
5bdb70450d40f511c0959e632fb3db5ee933a1f1
a61fc6a0b985548c681df89c15f8053dafe322bf
Fix sliding window attn mask (#41228) * Fix sliding window attn mask * Clearer test * Apply style fixes * If Picasso made ascii drawings he would have made this --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -42,7 +42,56 @@ def build_attention_mask(\n ) -> None:\n \"\"\"Builds an attention mask inplace using the cumulative seqlens of the query and key. If given a sliding window, it\n will also apply a sliding win...
2025-09-30T15:22:53
golang/go
90f47dbba635802bb009404e321fa4759ac76d20
34abc12b2a24fd76cdfad531f0a229f3cbb55bc3
runtime/pprof: include labels in profile dump For tests of pprof label support having the sample labels in the output is needed for effective debugging. For #48577 Change-Id: Ic7c5bc90cb33e8fb477f7db62d9b56a7a9d6ffa8 Reviewed-on: https://go-review.googlesource.com/c/go/+/362614 Trust: Michael Pratt <mpratt@google.co...
[ { "path": "src/runtime/pprof/pprof_test.go", "patch": "@@ -494,6 +494,7 @@ func profileOk(t *testing.T, matches matchFunc, need []string, avoid []string, p\n \tp := parseProfile(t, prof.Bytes(), func(count uintptr, stk []*profile.Location, labels map[string][]string) {\n \t\tfmt.Fprintf(&buf, \"%d:\", count...
2021-11-09T15:59:32
nodejs/node
0d4d6b39a7756e573a8cfcff16917265ed7cc8bb
1a6ed980603a244418edfa2897ed81785aa1776e
deps: V8: cherry-pick 58cefed Original commit message: snapshot: add source line stubs for ARM64 Windows When stubbing out source line information emission for Windows, the ARM64 Windows branch was missed. This change copies the x86/x64 stubs as appropriate. Bug: chromium:893460,v8:8870 R=j...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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-03-07T17:01:03
electron/electron
7720346ee7624730ad1103217a423fbaeadbeebe
93ebbb1c86315e093c177555924f4e29333762d4
Update libchromiumcontent for filenames.gypi fix
[ { "path": "brightray/script/bootstrap", "patch": "@@ -68,21 +68,22 @@ def setup_libchromiumcontent(is_dev, commit, target_arch, url,\n libcc_source_path,\n libcc_shared_library_path,\n libcc_static_library_path):\n- mk...
2015-11-09T10:19:32
huggingface/transformers
a61fc6a0b985548c681df89c15f8053dafe322bf
919a4845fb4f510c73e911c4ee05802fbbebf64f
Fix typing of train_args (#41142) * Fix typing Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * Fix fsdp typing Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> --------- Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
[ { "path": "src/transformers/training_args.py", "patch": "@@ -476,7 +476,7 @@ class TrainingArguments:\n When resuming training, whether or not to skip the epochs and batches to get the data loading at the same\n stage as in the previous training. If set to `True`, the training will b...
2025-09-30T14:28:02
vercel/next.js
f6604d4afed8e2dbe1fcd73278112c9fe4bd57da
2a61253f72e629816b989acadf088e0e2ff5bd9c
Revert "Re-land "Vendor `react@experimental` under an `experimentalReact` flag"" (#48478) Reverts vercel/next.js#48041 fix NEXT-926
[ { "path": "package.json", "patch": "@@ -197,13 +197,11 @@\n \"random-seed\": \"0.3.0\",\n \"react\": \"18.2.0\",\n \"react-17\": \"npm:react@17.0.2\",\n- \"react-builtin\": \"npm:react@18.3.0-next-b14f8da15-20230403\",\n- \"react-experimental-builtin\": \"npm:react@0.0.0-experimental-b14f8...
2023-04-17T13:00:02
golang/go
34abc12b2a24fd76cdfad531f0a229f3cbb55bc3
47e3c4bc74f5f260cbc9c5e6d1ababde0a114a97
cmd/compile/internal/types2: roll-forward removal of asX converters This CL reverts CL 361964, rolling forward the original CL 362254 with a fix for re-entrant expansion via type hashing (compare patchsets 1 and 2). Change-Id: I62869e50e919f42eb8d6fef5b0d7a5ec8960bd84 Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/cmd/compile/internal/types2/assignments.go", "patch": "@@ -71,7 +71,7 @@ func (check *Checker) assignment(x *operand, T Type, context string) {\n \t// x.typ is typed\n \n \t// A generic (non-instantiated) function value cannot be assigned to a variable.\n-\tif sig := asSignature(x.typ); sig !...
2021-11-08T18:08:59
rust-lang/rust
248b7a9490ca05876715e613a0fc5fff6a2826e0
586ad391f5ee4519acc7cae340e34673bae762b1
Fix `PathSource` lifetimes. It currently has two, which don't accurately capture what's happening -- the `TupleStruct` spans are allocated in `ResolverArenas`, which is different to where the `Expr` is allocated -- and require some "outlives" constraints to be used. This commit adds another lifetime, renames the exis...
[ { "path": "compiler/rustc_resolve/src/late.rs", "patch": "@@ -415,24 +415,24 @@ pub(crate) enum AliasPossibility {\n }\n \n #[derive(Copy, Clone, Debug)]\n-pub(crate) enum PathSource<'a, 'c> {\n+pub(crate) enum PathSource<'a, 'ast, 'ra> {\n /// Type paths `Path`.\n Type,\n /// Trait paths in bou...
2025-06-09T08:04:09
nodejs/node
1a6ed980603a244418edfa2897ed81785aa1776e
bea1a386a32afa2879622450549886b0e0bdeead
deps: v8, backport 2d08967 Original commit message: [coverage] Extend SourceRangeAstVisitor for throw statements The SourceRangeAstVisitor has custom logic for blocks ending with a statement that has a continuation range. In these cases, the trailing continuation is removed which makes the reported coverage ...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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.3',\n+ 'v8_embedder_string': '-node.4',\n \n ##### V8 defaults for Node.js #####\n "...
2019-02-27T18:05:58
electron/electron
5e3b8d51e490bcd3468fac71779e4ac3be484c24
3465095c493f765bad2843c57c9af129222c94fa
docs: Fix typo
[ { "path": "docs/tutorial/mac-app-store-submission-guide.md", "patch": "@@ -77,10 +77,10 @@ codesign --deep -fs \"$APP_KEY\" --entitlements child.plist \"$FRAMEWORKS_PATH/$APP\n codesign --deep -fs \"$APP_KEY\" --entitlements child.plist \"$FRAMEWORKS_PATH/$APP Helper EH.app/\"\n codesign --deep -fs \"$APP_K...
2015-11-09T03:42:37
vercel/next.js
2a61253f72e629816b989acadf088e0e2ff5bd9c
3ac76585152c1cd50b29eafaa2cd1acebc576946
Fix misordered CSS resources (#48244) ### What? This PR fixes misordered CSS `<link>` tags. CSS imports in inner layers (e.g. a page) should always take precedence over outer layers (e.g. root layout), but currently it's reversed. ### Why? In layouts we usually define more general styles like globals, reset...
[ { "path": "packages/next/src/client/components/layout-router.tsx", "patch": "@@ -453,6 +453,7 @@ export default function OuterLayoutRouter({\n notFound,\n notFoundStyles,\n asNotFound,\n+ styles,\n }: {\n parallelRouterKey: string\n segmentPath: FlightSegmentPath\n@@ -467,6 +468,7 @@ export defau...
2023-04-17T12:11:47
golang/go
16215e5340a84adcfce7ba49fdde6f9a0bbe1c0a
c9858c7bdc8493f471f9914cc4c79d41ef483265
[dev.boringcrypto] cmd/compile: disable version test on boringcrypto This test modifies a binary, which the FIPS integrity test doesn't like. Fixes #49402 Change-Id: I817d1f49e779ce1ea5f9477bf74e729e82b42875 Reviewed-on: https://go-review.googlesource.com/c/go/+/362654 Trust: Keith Randall <khr@golang.org> Run-TryBo...
[ { "path": "src/cmd/compile/internal/amd64/versions_test.go", "patch": "@@ -2,6 +2,8 @@\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 amd64_test\n \n import (", "additions": 2, "deletions": 0, ...
2021-11-09T16:08:16
nodejs/node
cf649c9b0243612d4a75ad99c328c0feaed4c3b9
44d5401b8d64161fb9d057c8ec47bbc917e87247
deps: V8: cherry-pick 74571c8 Original commit message: Fix preview of set entries Set entries return an array with the value as first and second entry. As such these are considered key value pairs to align with maps entries iterator. So far the return value was identical to the values iterator an...
[ { "path": "common.gypi", "patch": "@@ -37,7 +37,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-04T12:27:08
electron/electron
ae2b004db747aec9edcd8a911991428867eee059
09169ed4026aa674d49e1be5898a3895a4b6b089
Fix pylint errors
[ { "path": "script/bootstrap.py", "patch": "@@ -41,7 +41,8 @@ def main():\n elif (args.libcc_source_path != None or\n args.libcc_shared_library_path != None or\n args.libcc_static_library_path != None):\n- print \"Error: All options of libchromiumcontent are required OR let electron choo...
2015-11-08T08:41:16
huggingface/transformers
52f5eca7c96dd21618c2481e23f5f4f3a6a756eb
a80f05dfcb23e1de981ce1eb48f278a8c048b3e5
:rotating_light: [`v5`] Remove headmasking (#41076) * first attempt at removing * copies * last bits in core * quick fixes * tests purge * docs and examples * some fixes * more * another round of cleanups * fix * fix a bunch of models * fix dummy bert * fix * fix new model * fix signature change * fix ...
[ { "path": "docs/source/en/model_doc/biogpt.md", "patch": "@@ -121,7 +121,6 @@ print(output)\n \n - Pad inputs on the right because BioGPT uses absolute position embeddings.\n - BioGPT can reuse previously computed key-value attention pairs. Access this feature with the [past_key_values](https://huggingface....
2025-09-30T14:04:57
golang/go
2559a98a3cda46084cbdd3ea49217fdc8074ce7a
b7529c3617a64ed5d1e2a6c7a9366d4a4988a38d
testing: remove package from fuzz crasher message Fixes #48149 Change-Id: Iaf91d2c54fda809c7da90cdfb6d1d075f474c69b Reviewed-on: https://go-review.googlesource.com/c/go/+/362116 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com> Review...
[ { "path": "src/testing/fuzz.go", "patch": "@@ -356,7 +356,7 @@ func (f *F) Fuzz(ff interface{}) {\n \t\t\t\tcrashPath := crashErr.CrashPath()\n \t\t\t\tfmt.Fprintf(f.w, \"Crash written to %s\\n\", crashPath)\n \t\t\t\ttestName := filepath.Base(crashPath)\n-\t\t\t\tfmt.Fprintf(f.w, \"To re-run:\\ngo test %s ...
2021-11-08T17:13:01
vercel/next.js
3ac76585152c1cd50b29eafaa2cd1acebc576946
9f67638999d87d15a5a9452b852f8ddcbedba2f4
Refactor entries.ts (#48460) Couple of small changes, I'm preparing the file for a larger refactor around the new entries resolving. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below...
[ { "path": "packages/next/src/build/entries.ts", "patch": "@@ -40,7 +40,6 @@ import {\n isMiddlewareFile,\n isMiddlewareFilename,\n isInstrumentationHookFile,\n- NestedMiddlewareError,\n } from './utils'\n import { getPageStaticInfo } from './analysis/get-page-static-info'\n import { normalizePathSep ...
2023-04-17T08:15:33
huggingface/transformers
a80f05dfcb23e1de981ce1eb48f278a8c048b3e5
1f1e93e09537ff148956cb602c85d319e972f190
[generate] cache missing custom generate file (#41216) * cache missing custom generate file * make fixup
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -22,7 +22,6 @@\n \n import torch\n import torch.distributed as dist\n-from huggingface_hub import file_exists\n from packaging import version\n from torch import nn\n \n@@ -392,23 +391,20 @@ def load_custom_generate(\n Returns:\n ...
2025-09-30T13:32:24
nodejs/node
d266e3e2cf1f8f78120f665e8d0b8e8dd30c2976
9577f7724d5aab7750ffd83348d8a9245339b4d9
deps: sync V8 gypfiles with 7.2 Co-authored-by: Ujjwal Sharma <usharma1998@gmail.com> win: add v8_init to dependencies Fixes: https://github.com/nodejs/node-v8/issues/89 Co-authored-by: Bartosz Sosnowski <bartosz@janeasystems.com> PR-URL: https://github.com/nodejs/node/pull/25852 Reviewed-By: Ujjwal Sharma <usharma...
[ { "path": "common.gypi", "patch": "@@ -71,6 +71,9 @@\n # Still WIP in V8 7.1\n 'v8_enable_pointer_compression': 'false',\n \n+ # Explicitly set to false to copy V8's default\n+ 'v8_enable_31bit_smis_on_64bit_arch': 'false',\n+\n # New in V8 7.1\n 'v8_enable_embedded_builtins': 'true',\...
2018-10-10T16:29:25
electron/electron
b8cd4f7981c2670ad54179c033c3afd77913a7dc
54997db5f262fefd30b92d30f9e8716e410fab30
linux: Link Xi with pkg-config Fix atom/electron#3357.
[ { "path": "brightray/brightray.gyp", "patch": "@@ -1,7 +1,7 @@\n {\n 'variables': {\n # The libraries brightray will be compiled to.\n- 'linux_system_libraries': 'gtk+-2.0 libnotify dbus-1 x11 xrandr xext gconf-2.0 gmodule-2.0 nss'\n+ 'linux_system_libraries': 'gtk+-2.0 libnotify dbus-1 x11 xi x...
2015-11-07T04:11:12
golang/go
b7529c3617a64ed5d1e2a6c7a9366d4a4988a38d
6dcf83d882a668894f4423045833e97f7e3c31cf
cmd/go: fix mod_get_direct https://github.com/googleapis/google-cloud-go has changed the default branch from master to main, causing mod_get_direct failed on longtest. Change-Id: I8fe0356b2ff532d1fdedbcb1e1832d7335babaa0 Reviewed-on: https://go-review.googlesource.com/c/go/+/361965 Trust: Cuong Manh Le <cuong.manhle....
[ { "path": "src/cmd/go/testdata/script/mod_get_direct.txt", "patch": "@@ -10,7 +10,7 @@ env GO111MODULE=on\n env GOPROXY=direct\n env GOSUMDB=off\n \n-go list -m cloud.google.com/go@master\n+go list -m cloud.google.com/go@main\n ! stdout 'v0.0.0-'\n \n -- go.mod --", "additions": 1, "deletions": 1, ...
2021-11-09T03:37:43
vercel/next.js
9f67638999d87d15a5a9452b852f8ddcbedba2f4
ea8c4274b818be0cebad1fa1b9ebc3202ee5592c
parallel routes: fix incorrect optimistic tree when there are multiple parallel routes (#48449) This PR fixes parallel routes navigation with `prefetch={false}`. This was broken because the optimistic tree created when navigating with prefetching disabled resulted in a state where the router tree was expecting an i...
[ { "path": "packages/next/src/client/components/router-reducer/create-optimistic-tree.ts", "patch": "@@ -17,15 +17,26 @@ export function createOptimisticTree(\n \n const segmentMatches =\n existingSegment !== null && matchSegment(existingSegment, segment)\n- const shouldRefetchThisLevel = !flightRoute...
2023-04-17T08:12:46
huggingface/transformers
1f1e93e09537ff148956cb602c85d319e972f190
2a596f5b2f3d9c55b8ded806a9b6b8b3312062df
Align pull request template to bug report template (#41220) The only difference is that I don't users to https://discuss.huggingface.co/ for hub issues.
[ { "path": ".github/PULL_REQUEST_TEMPLATE.md", "patch": "@@ -39,41 +39,40 @@ members/contributors who may be interested in your PR.\n \n Models:\n \n-- text models: @ArthurZucker\n-- vision models: @amyeroberts, @qubvel\n-- speech models: @eustlb\n+- text models: @ArthurZucker @Cyrilvallez\n+- vision models:...
2025-09-30T12:25:41
nodejs/node
8549ac09b256666cf5275224ec58fab9939ff32e
107c95da0dd8cb4c9024d762b61b62630bfb7bba
doc: add Gireesh to TSC TSC voted in Gireesh today. Add him to the TSC list in the README. Closes: https://github.com/nodejs/node/issues/26186 PR-URL: https://github.com/nodejs/node/pull/26657 Fixes: https://github.com/nodejs/node/issues/26186 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Michaël Zasso <...
[ { "path": "README.md", "patch": "@@ -184,6 +184,8 @@ For information about the governance of the Node.js project, see\n **Jeremiah Senkpiel** &lt;fishrock123@rocketmail.com&gt;\n * [gabrielschulhof](https://github.com/gabrielschulhof) -\n **Gabriel Schulhof** &lt;gabriel.schulhof@intel.com&gt;\n+* [gireeshp...
2019-03-14T06:01:34
electron/electron
c4ee8c1b1f8d335931f6a8fdce6a37ecab2e3d07
d70706f8765033138f4e19eef8c6ef723b217bc6
spec: Fix refreshing on Windows
[ { "path": "spec/api-crash-reporter-spec.coffee", "patch": "@@ -53,5 +53,6 @@ describe 'crash-reporter module', ->\n protocol: 'file'\n pathname: path.join fixtures, 'api', 'crash.html'\n search: \"?port=#{port}\"\n- crashReporter.start {'submitUrl': 'http://127.0.0.1:' + port}\n...
2015-11-06T13:00:38
golang/go
6dcf83d882a668894f4423045833e97f7e3c31cf
5344dcae4139de85b9e3d8cea81f9b65fc2bd25f
runtime: revert recent Windows crashdump changes Recent changes to runtime enabled crashdumps, which under some circumstances apparently might result in memory being uploaded to Microsoft. A change like this should go through the proper proposals process where we can discuss how to gate it and what all of its implicat...
[ { "path": "src/runtime/os_windows.go", "patch": "@@ -40,7 +40,6 @@ const (\n //go:cgo_import_dynamic runtime._LoadLibraryW LoadLibraryW%1 \"kernel32.dll\"\n //go:cgo_import_dynamic runtime._LoadLibraryA LoadLibraryA%1 \"kernel32.dll\"\n //go:cgo_import_dynamic runtime._PostQueuedCompletionStatus PostQueuedC...
2021-11-09T00:23:02
vercel/next.js
ea8c4274b818be0cebad1fa1b9ebc3202ee5592c
612c8cb2bf3ec475358baa2bed2dc1b34ae9b343
interception routes: fix production rewrites (#48451) This PR fixes a bug with interception where the rewritten path passed an incorrect segment data on production, resulting in a 404. The fix consists of moving the rewrite pre-processing step that rewrites the dynamic segment from the originating path to when we...
[ { "path": "packages/next/src/lib/generate-interception-routes-rewrites.ts", "patch": "@@ -1,6 +1,7 @@\n import { pathToRegexp } from 'next/dist/compiled/path-to-regexp'\n import { NEXT_URL } from '../client/components/app-router-headers'\n import {\n+ INTERCEPTION_ROUTE_MARKERS,\n extractInterceptionRout...
2023-04-17T08:08:25
huggingface/transformers
3edd8048b01c51f1d1e721baa991cad5f77d6625
59035fd0e1876f9e526488b61fe43ff8829059f6
Trainer: Pass `num_items_in_batch` to `compute_loss` in `prediction_step` (#41183) * Add num_items_in_batch computation to predict_step. * address comments. * Fix test cases. * fixup --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/trainer.py", "patch": "@@ -4844,7 +4844,10 @@ def prediction_step(\n else:\n if has_labels or loss_without_labels:\n with self.compute_loss_context_manager():\n- loss, outputs = self.compute_loss(model, inputs...
2025-09-30T09:45:17
nodejs/node
0c1e93b9efadfc9fae74907a631908477c7d085e
5672ab766829d8808afe5d34eb78149d3ee8c51e
test: whitelist the expected modules in test-bootstrap-modules.js Be explicit on the modules that are expected to be loaded and add an appropriate assertion failure message to help debug when the list changes. Fixes: https://github.com/nodejs/node/issues/23884 PR-URL: https://github.com/nodejs/node/pull/26531 Review...
[ { "path": "test/parallel/test-bootstrap-modules.js", "patch": "@@ -3,15 +3,131 @@\n \n // This list must be computed before we require any modules to\n // to eliminate the noise.\n-const list = process.moduleLoadList.slice();\n+const actualModules = new Set(process.moduleLoadList.slice());\n \n const common...
2019-03-08T17:17:34
electron/electron
d70706f8765033138f4e19eef8c6ef723b217bc6
acf4372cf7d8a07a9c55763ac2bb726e962aa251
Make sure handles of callbacks are releases on exit Some callbacks are stored in native resources that not managed by JavaScript, so when those resources are destroyed the JavaScript context may already be destroyed, and releasing callbacks then would result in crash.
[ { "path": "atom/common/native_mate_converters/callback.cc", "patch": "@@ -4,6 +4,8 @@\n \n #include \"atom/common/native_mate_converters/callback.h\"\n \n+#include \"atom/browser/atom_browser_main_parts.h\"\n+\n namespace mate {\n \n namespace internal {\n@@ -54,6 +56,33 @@ v8::Local<v8::Value> BindFunction...
2015-11-06T12:23:41
golang/go
5344dcae4139de85b9e3d8cea81f9b65fc2bd25f
bee0c739007617c840ac29a6f8fcf9f24cbf1505
cmd/compile: remove unneeded "==" method in pre-defined "comparable" interface Fixes #49421 Change-Id: Iecf3952346ecd278198c1000014a321e230f7fa7 Reviewed-on: https://go-review.googlesource.com/c/go/+/361962 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> Trust: Dan Scales <danscales@google.com> Run-TryBot: Cuong Man...
[ { "path": "src/cmd/compile/internal/reflectdata/reflect.go", "patch": "@@ -1304,12 +1304,6 @@ func writeITab(lsym *obj.LSym, typ, iface *types.Type) {\n \t\t\t\tbreak\n \t\t\t}\n \t\t}\n-\t\tif sigs[0].Sym.Name == \"==\" {\n-\t\t\tsigs = sigs[1:]\n-\t\t\tif len(sigs) == 0 {\n-\t\t\t\tbreak\n-\t\t\t}\n-\t\t}...
2021-11-08T08:51:05
huggingface/transformers
d97397787e4507127d6e56ed1642d1ac7e13b569
06c04e085154bb19ea16aac80ae02537fe3b2fd2
Wait for main process in _save_checkpoint to ensure best checkpoint exists (#40923) * Update trainer.py * fix * fix format * move barrier, delete redundant
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2765,14 +2765,6 @@ def _inner_training_loop(\n \n logger.info(\"\\n\\nTraining completed. Do not forget to share your model on huggingface.co/models =)\\n\\n\")\n if args.load_best_model_at_end and self.state.best_model_checkpoint is not...
2025-09-30T09:41:03
vercel/next.js
612c8cb2bf3ec475358baa2bed2dc1b34ae9b343
07410160230d31ac8eec6945d2486120a19b4048
interception routes: support middleware rewrites (#48450) This PR fixes an edge case when using interception routes and rewrites. The issue was that the default state of the router tree incorrectly assumed that the base pathname would be the referrer URL for the interception but it turns out the tree/what we want t...
[ { "path": "packages/next/src/client/components/router-reducer/compute-changed-path.ts", "patch": "@@ -10,6 +10,16 @@ const segmentToPathname = (segment: Segment): string => {\n return segment[1]\n }\n \n+function normalizePathname(pathname: string): string {\n+ return pathname.split('/').reduce((acc, seg...
2023-04-17T08:07:31
nodejs/node
5672ab766829d8808afe5d34eb78149d3ee8c51e
32853c0a136b0616844cdf5c276d2f1eb9a4fc50
util: prevent tampering with internals in `inspect()` This makes sure user options passed to `util.inspect()` will not override any internal properties (besides `stylize`). PR-URL: https://github.com/nodejs/node/pull/26577 Fixes: https://github.com/nodejs/node/issues/24765 Reviewed-By: Matteo Collina <matteo.collina@...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -150,6 +150,16 @@ const meta = [\n '', '', '', '', '', '', '', '\\\\\\\\'\n ];\n \n+function getUserOptions(ctx) {\n+ const obj = { stylize: ctx.stylize };\n+ for (const key of Object.keys(inspectDefaultOptions)) {\n+ obj[key] = ctx[key];\n+ }\n...
2019-03-10T22:59:49
electron/electron
acf4372cf7d8a07a9c55763ac2bb726e962aa251
863199348f8a07cdff4dfa23fea0598ddb3dcf2b
win: Add ELECTRON_DEFAULT_ERROR_MODE env It is useful to help debugging crashes without opening debugger.
[ { "path": "atom/common/node_bindings.cc", "patch": "@@ -14,6 +14,7 @@\n #include \"atom/common/node_includes.h\"\n #include \"base/command_line.h\"\n #include \"base/base_paths.h\"\n+#include \"base/environment.h\"\n #include \"base/files/file_path.h\"\n #include \"base/message_loop/message_loop.h\"\n #incl...
2015-11-06T10:51:34
huggingface/transformers
06c04e085154bb19ea16aac80ae02537fe3b2fd2
0e5a97560807393e6d3bf005136591b5af0c2614
Deprecate `half_precision_backend` (#41134) * deprecate * remove * rm apex * fix * fix * fix doc
[ { "path": "docs/source/en/deepspeed.md", "patch": "@@ -452,7 +452,7 @@ For Ampere GPUs and PyTorch 1.7+, the more efficient [tf32](https://pytorch.org/\n </hfoption>\n <hfoption id=\"fp16\">\n \n-To configure AMP-like fp16 mixed precision, set up the config as shown below with `\"auto\"` or your own values....
2025-09-30T09:36:44
golang/go
bee0c739007617c840ac29a6f8fcf9f24cbf1505
67e22941dfe1555d8597e48f49ff86d3be340a36
cmd/compile: fix irgen mis-handling of ... argument when creating closure When bulding formal arguments of newly created closure, irgen forgets to set "..." field attribute, causing type mismatched between the closure function and the ONAME node represents that closure function. Fixes #49432 Change-Id: Ieddaa64980cd...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -2085,6 +2085,7 @@ func startClosure(pos src.XPos, outer *ir.Func, typ *types.Type) (*ir.Func, []*t\n \t\tfn.Dcl = append(fn.Dcl, arg)\n \t\tf := types.NewField(pos, arg.Sym(), t)\n \t\tf.Nname = arg\n+\t\tf.SetIsDDD(typ.Params().Field(i).I...
2021-11-08T06:08:58
vercel/next.js
07410160230d31ac8eec6945d2486120a19b4048
2eb821ad19f79eade53b260eedb4ef386965d5f9
parallel routes: fix next-provided default.js not being resolved if the config doesn't specify .js (#48446) This PR fixes an edge case when the next config has `pageExtensions` specified. When resolving the default parallel route, we use that config. If it does not specify `.js` then it wouldn't be able to resolve ...
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader.ts", "patch": "@@ -51,7 +51,8 @@ const PAGE_SEGMENT = 'page$'\n \n type PathResolver = (\n pathname: string,\n- resolveDir?: boolean\n+ resolveDir?: boolean,\n+ internal?: boolean\n ) => Promise<string | undefined>\n \n export type Comp...
2023-04-17T08:06:50