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 |
|---|---|---|---|---|---|
golang/go | 323e009c757229bdf58f68fde1c5bf07e9e65b61 | 73971784dc586a5db3b81dfdd41954f650d493ac | go/types: ensure named types are expanded after type-checking
Rather than using Checker.later in newNamed, add a Checker.defTypes
field to track named types that have been created during type-checking,
and use this to expand named types as a final phase in type checking.
We have encountered several bugs related to in... | [
{
"path": "src/go/types/check.go",
"patch": "@@ -113,6 +113,7 @@ type Checker struct {\n \tuntyped map[ast.Expr]exprInfo // map of expressions without final type\n \tdelayed []func() // stack of delayed action segments; segments are processed in FIFO order\n \tobjPath []Object /... | 2021-10-15T20:39:39 |
vercel/next.js | 2a257cef60358589a58d6609a22a7b8fac1fa8be | d0bdd8f230369ef22206e302a4d717ac3ab94355 | Fix trigger_release workflow type (#47466)
Follow-up to https://github.com/vercel/next.js/pull/47461 swapping the
workflow type | [
{
"path": ".github/workflows/trigger_release.yml",
"patch": "@@ -1,5 +1,5 @@\n on:\n- workflow_call:\n+ workflow_dispatch:\n inputs:\n releaseType:\n description: stable or canary (case sensitive)?",
"additions": 1,
"deletions": 1,
"language": "YAML"
}
] | 2023-03-23T23:37:53 |
huggingface/transformers | 893d89e5e6fac7279fe4292bfa3b027172287162 | becab2c6014a99f93252fccc33122b946f93b62e | [omni modality] support composite processor config (#38142)
* dump ugly option to check again tomorrow
* tiny update
* do not save as nested dict yet!
* fix and add tests
* fix dia audio tokenizers
* rename the flag and fix new model Evolla
* fix style
* address comments
* broken from different PRp
* fix savi... | [
{
"path": "src/transformers/feature_extraction_utils.py",
"patch": "@@ -27,9 +27,9 @@\n from .dynamic_module_utils import custom_object_save\n from .utils import (\n FEATURE_EXTRACTOR_NAME,\n+ PROCESSOR_NAME,\n PushToHubMixin,\n TensorType,\n- cached_file,\n copy_func,\n download_u... | 2025-08-28T12:40:27 |
rust-lang/rust | 129d568e6de140606ee37fd945c8e001167a3f4b | 957e649bad5d5d11c0e249071eb048be2ec4a5d9 | fix: Record macro calls in signatures in `ChildBySource` impls | [
{
"path": "src/tools/rust-analyzer/crates/hir/src/semantics.rs",
"patch": "@@ -1948,18 +1948,12 @@ impl<'db> SemanticsImpl<'db> {\n ChildContainer::TraitId(it) => {\n return Some(SourceAnalyzer::new_generic_def(self.db, it.into(), node, offset));\n }\n- Chi... | 2025-06-05T13:04:50 |
golang/go | 73971784dc586a5db3b81dfdd41954f650d493ac | 3befaf0cdb18420f45acfa7cee725297aa550faf | go/types: add support for inferring type instances
Add constraint type inference for type instances, to be consistent with
inference of function values.
Fixes #47990
Change-Id: Ib99b5215cb2da5c10badc4de7e9e60ca0e48489f
Reviewed-on: https://go-review.googlesource.com/c/go/+/356489
Trust: Robert Findley <rfindley@goog... | [
{
"path": "src/go/types/call.go",
"patch": "@@ -60,14 +60,42 @@ func (check *Checker) funcInst(x *operand, ix *typeparams.IndexExpr) {\n \t}\n \n \t// instantiate function signature\n-\tres := check.instantiate(x.Pos(), sig, targs, poslist).(*Signature)\n+\tres := check.instantiateSignature(x.Pos(), sig, ta... | 2021-10-15T14:52:55 |
huggingface/transformers | 8acbbdcadfc1becf14e674ab9d5cad795b510640 | 2300be3b4184683dc67e86e1aca9def1519d0fc3 | [serve] fix ` request_id` unexpected (#40501)
* fix request-id in serving
* style
* fix | [
{
"path": "src/transformers/commands/chat.py",
"patch": "@@ -129,7 +129,6 @@ async def stream_output(self, stream: AsyncIterator[ChatCompletionStreamOutput])\n text = \"\"\n async for token in await stream:\n outputs = token.choices[0].delta.content\n- ... | 2025-08-28T12:16:28 |
vercel/next.js | 476940700687f43fb9d675ba9346ab67a69b10a2 | 577828f71be71aa600a3fda1876dcb43924fec56 | chore: run all tests for next/image against app dir (#47267)
These tests are copy/pasta from existing tests
- from `test/integration/next-image-new/default`
- to `test/integration/next-image-new/app-dir`
There were a handful of changes need to migrate the fixture from `pages` to `app` but the test assertions are th... | [
{
"path": "test/integration/next-image-new/app-dir/app/blob/page.js",
"patch": "@@ -0,0 +1,27 @@\n+'use client'\n+import React, { useEffect, useState } from 'react'\n+import Image from 'next/image'\n+\n+const Page = () => {\n+ const [src, setSrc] = useState()\n+\n+ useEffect(() => {\n+ fetch('/test.jpg... | 2023-03-23T22:02:40 |
rust-lang/rust | 79fbc38867529b3dc29fa0542a1e2b3e4ee592b5 | 425e142686242c7e73f5e32c79071ae266f0f355 | doc: Fix inverted meaning in E0783.md | [
{
"path": "compiler/rustc_error_codes/src/error_codes/E0783.md",
"patch": "@@ -9,7 +9,7 @@ match 2u8 {\n }\n ```\n \n-Older Rust code using previous editions allowed `...` to stand for exclusive\n+Older Rust code using previous editions allowed `...` to stand for inclusive\n ranges which are now signified u... | 2025-06-05T10:27:08 |
nodejs/node | 5109e42629d41902cda6a598a4ddb7c3ef36f5b1 | 7493db21b667ed746d39c9b54357eac4287232e3 | doc: fix file extension on ESM file example
PR-URL: https://github.com/nodejs/node/pull/25692
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "doc/api/esm.md",
"patch": "@@ -98,7 +98,7 @@ representing the value of `module.exports` at the time they finished evaluating.\n // foo.js\n module.exports = { one: 1 };\n \n-// bar.js\n+// bar.mjs\n import foo from './foo.js';\n foo.one === 1; // true\n ```",
"additions": 1,
"deletions": ... | 2019-01-25T03:28:19 |
huggingface/transformers | 476cd7bab17d83224c19cd17e70d0e9209fe4c1c | 1499f9e3566cc402c64cc66a460799f3f01eaa07 | [vision] Improve keypoint-matching models docs (#40497)
fix options and add inference_mode | [
{
"path": "docs/source/en/model_doc/efficientloftr.md",
"patch": "@@ -45,7 +45,7 @@ results = keypoint_matcher([url_0, url_1], threshold=0.9)\n print(results[0])\n # {'keypoint_image_0': {'x': ..., 'y': ...}, 'keypoint_image_1': {'x': ..., 'y': ...}, 'score': ...}\n ```\n-<hfoption id=\"AutoModel\">\n+</hfo... | 2025-08-28T11:31:21 |
golang/go | 3befaf0cdb18420f45acfa7cee725297aa550faf | 425db64811285fd0b35ed12eaed7568ec547da78 | net/url: fix stale RFC 3986 links
The URLs for RFC 3986 have been changed from:
http://tools.ietf.org/html/rfc3986
to:
https://datatracker.ietf.org/doc/html/rfc3986
Change-Id: I0662557d91bbb7de51d7ca4bc64e838741cd9074
Reviewed-on: https://go-review.googlesource.com/c/go/+/356429
Run-TryBot: Ian Lance Taylor <iant... | [
{
"path": "src/net/url/url_test.go",
"patch": "@@ -1172,7 +1172,7 @@ var resolveReferenceTests = []struct {\n \t{\"http://foo.com/bar/baz\", \"quux/./dotdot/../dotdot/../dot/./tail/..\", \"http://foo.com/bar/quux/dot/\"},\n \n \t// Remove any dot-segments prior to forming the target URI.\n-\t// http://tools... | 2021-10-16T15:19:57 |
vercel/next.js | ae71ff6eb733e8c61d5fd333880fcdbba890ca67 | 38cddd902bde742af2a27cdbc3dd1884e1ea5301 | Error during dev if returning `Response` in pages API routes in Node.js runtime (#47442)
This avoids the case that one can accidentally return a `Response` object in the Node.js runtime in `pages/api/`, that causes the request to hang forever. | [
{
"path": "packages/next/src/server/api-utils/node.ts",
"patch": "@@ -530,23 +530,31 @@ export async function apiResolver(\n }\n \n // Call API route method\n- await getTracer().trace(\n+ const apiRouteResult = await getTracer().trace(\n NodeSpan.runHandler,\n {\n spanName:... | 2023-03-23T15:54:23 |
nodejs/node | 7493db21b667ed746d39c9b54357eac4287232e3 | 5cb196441a6df0fc3fa62e042ce108347f49814c | assert: adjust loose assertions
This changes the loose deep equal comparison by using the same logic
as done in the strict deep equal comparison besides comparing
primitives loosely, not comparing symbol properties and not comparing
the prototype.
`assert.deepEqual` is still commenly used and this is likely the
bigge... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -163,6 +163,10 @@ An alias of [`assert.ok()`][].\n <!-- YAML\n added: v0.1.21\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/25008\n+ description: The type tags are now properly compared and there are a couple\n+ ... | 2018-12-13T06:33:31 |
electron/electron | d180d3b1682e2d633ceb4e09bb675a1c463d8da5 | c65ccb68579b6d4681586f12ea0817d68252e134 | webview: fix partition attribute | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -159,16 +159,20 @@ WebContents::WebContents(const mate::Dictionary& options) {\n \n type_ = is_guest ? WEB_VIEW : BROWSER_WINDOW;\n \n- auto browser_context = AtomBrowserMainParts::Get()->browser_context();\n content::WebContents* web_... | 2015-08-06T15:01:05 |
huggingface/transformers | d10603f701986a892aa5172f1144d6becbb9297a | f9b9a5e884c9d58f2b020f060f164a48021c44d5 | Add Apertus (#39381)
* init swissai model
* AutoModelForCausalLM
* AutoModelForCausalLM mapping
* qk norm and post ln optional
* fix wrong shape of qk norm: megatron uses head_dim
* automodel fixes
* minor fix in forward
* fix rope validation to accept llama3 scaling
* `SwissAIForTokenClassification` support
... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -373,6 +373,8 @@\n - sections:\n - local: model_doc/albert\n title: ALBERT\n+ - local: model_doc/apertus\n+ title: Apertus\n - local: model_doc/arcee\n title: Arcee\n - local: model_doc/bamba",
"addit... | 2025-08-28T09:55:43 |
golang/go | 425db64811285fd0b35ed12eaed7568ec547da78 | 33b3260c1e765ef66500ce155c6d5a526d8852e9 | bufio: use underlying ReadFrom even when data is buffered
When (*bufio.Writer).ReadFrom is called with a partially filled buffer,
fill out and flush the buffer and then call the underlying writer's
ReadFrom method if present.
Fixes #44815.
Change-Id: I15b3ef0746d0d60fd62041189a9b9df11254dd29
Reviewed-on: https://go-... | [
{
"path": "src/bufio/bufio.go",
"patch": "@@ -745,26 +745,27 @@ func (b *Writer) WriteString(s string) (int, error) {\n }\n \n // ReadFrom implements io.ReaderFrom. If the underlying writer\n-// supports the ReadFrom method, and b has no buffered data yet,\n-// this calls the underlying ReadFrom without buf... | 2021-08-06T20:23:13 |
vercel/next.js | 38cddd902bde742af2a27cdbc3dd1884e1ea5301 | 9791d1e60853b408c0eb1d19a43ee01614797db3 | Add test for force-dynamic and catch-all routes (#47418
fix NEXT-640 ([link](https://linear.app/vercel/issue/NEXT-640))
([link](https://linear.app/vercel/issue/NEXT-640)). Fix #45603.
https://github.com/vercel/next.js/issues/45603#issuecomment-1480195089 | [
{
"path": "test/e2e/app-dir/app-static/app-static.test.ts",
"patch": "@@ -168,6 +168,7 @@ createNextDescribe(\n 'dynamic-error/[id]/page.js',\n 'dynamic-no-gen-params-ssr/[slug]/page.js',\n 'dynamic-no-gen-params/[slug]/page.js',\n+ 'force-dynamic-catch-all/[slug]/[[..... | 2023-03-23T14:53:51 |
nodejs/node | 5cb196441a6df0fc3fa62e042ce108347f49814c | bbb2134e7b5d2c736b294deee798124ac91fc245 | doc: remove outdated s_client information in tls.md
There is a description of how to use s_client for testing of
renegotiation limits in the `tls` module documentation. The information
is somewhat out of scope, but it also may be somewhat problematic due to
changes/peculiarities (bugs?) in recent s_client. Remove the ... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -136,10 +136,6 @@ threshold is exceeded. The limits are configurable:\n The default renegotiation limits should not be modified without a full\n understanding of the implications and risks.\n \n-To test the renegotiation limits on a server, connect to it using the Op... | 2019-01-24T06:14:06 |
huggingface/transformers | f9b9a5e884c9d58f2b020f060f164a48021c44d5 | b824f4986f9c13faffac1df016ae663e00adc755 | Update quantization overview for XPU (#40331)
* update xpu quantization overview
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* fix aqlm tests
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* fix format
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* update gguf support
Signed-off-by: jiqing-feng... | [
{
"path": "docs/source/en/gguf.md",
"patch": "@@ -33,6 +33,7 @@ Add the `gguf_file` parameter to [`~PreTrainedModel.from_pretrained`] to specify\n \n ```py\n # pip install gguf\n+import torch\n from transformers import AutoTokenizer, AutoModelForCausalLM\n \n model_id = \"TheBloke/TinyLlama-1.1B-Chat-v1.0-G... | 2025-08-28T09:52:59 |
electron/electron | 53b9d618311b878099c1939b034786ce6ae7f381 | c81de98d2213ad1a917d96a3eb8a6b8998065439 | Fix building on Windows | [
{
"path": "atom/browser/net/asar/url_request_asar_job.cc",
"patch": "@@ -172,7 +172,7 @@ bool URLRequestAsarJob::IsRedirectResponse(GURL* location,\n #if defined(OS_WIN)\n // Follow a Windows shortcut.\n // We just resolve .lnk file, ignore others.\n- if (!LowerCaseEqualsASCII(file_path_.Extension(), \... | 2015-09-03T12:07:29 |
golang/go | 6c0daa733192031eab23d09ed6515c4cd959aa92 | 267abbe3ba9dda96a8694e8aad8892e3ba2be60e | syscall/js: remove Wrapper interface
This change removes the js.Wrapper interface for performance reasons.
See proposal #44006 for details.
This is a breaking change, but syscall/js is exempt from Go's
compatibility promise.
Fixes #44006
Change-Id: I968cd14b1e61cc72ea9f84240b6bd29e8b8ae673
Reviewed-on: https://go-r... | [
{
"path": "src/syscall/js/func.go",
"patch": "@@ -15,8 +15,6 @@ var (\n \tnextFuncID uint32 = 1\n )\n \n-var _ Wrapper = Func{} // Func must implement Wrapper\n-\n // Func is a wrapped Go function to be called by JavaScript.\n type Func struct {\n \tValue // the JavaScript function that invokes the Go funct... | 2021-10-16T15:17:21 |
rust-lang/rust | 1443bbac932296a1a5b336a56c31acbf2b238fcd | bf5f0eac9bf2d0bca50d3ba6a5c0548e713e6a5d | Fix path resolution of `rustfmt` in `cargo-fmt` (#6566)
Locate `rustfmt` in the same directory as `cargo-fmt` when the RUSTFMT env isn't set.
Signed-off-by: onur-ozkan <work@onurozkan.dev> | [
{
"path": "src/cargo-fmt/main.rs",
"patch": "@@ -6,7 +6,6 @@\n use std::cmp::Ordering;\n use std::collections::{BTreeMap, BTreeSet};\n use std::env;\n-use std::ffi::OsStr;\n use std::fs;\n use std::hash::{Hash, Hasher};\n use std::io::{self, Write};\n@@ -151,11 +150,13 @@ fn execute() -> i32 {\n }\n \n fn r... | 2025-06-05T02:45:41 |
vercel/next.js | 9791d1e60853b408c0eb1d19a43ee01614797db3 | 394bff5fd01bce51257b0468eda1fdde7c9db02b | feat: change `next build` to emit output with `output: export` (#47376)
This PR ensures the correct output is emitted during `next build` and
deprecates `next export`.
The `output: export` configuration tells it to emit exported html and
the `distDir: out` configures the output directory.
```js
module.exports... | [
{
"path": "docs/advanced-features/static-html-export.md",
"patch": "@@ -17,9 +17,9 @@ The core of Next.js has been designed to enable starting as a static site (or Si\n \n Since Next.js supports this static export, it can be deployed and hosted on any web server that can serve HTML/CSS/JS static assets.\n \... | 2023-03-23T14:40:18 |
huggingface/transformers | b824f4986f9c13faffac1df016ae663e00adc755 | c9ff166718ab6dcc7bfbf3e289d36285bc73ba8e | fix typo (#40484)
* fix typo
Signed-off-by: guochenxu <guochenxu@modelbest.cn>
* csm & qwen omni
Signed-off-by: guochenxu <guochenxu@modelbest.cn>
* format
Signed-off-by: guochenxu <guochenxu@modelbest.cn>
* Apply style fixes
* omni
Signed-off-by: guochenxu <guochenxu@modelbest.cn>
---------
Signed-off-by: g... | [
{
"path": "tests/models/csm/test_processing_csm.py",
"patch": "@@ -34,6 +34,7 @@\n @require_torch\n class CsmProcessorTest(ProcessorTesterMixin, unittest.TestCase):\n processor_class = CsmProcessor\n+ audio_input_name = \"input_values\"\n \n @classmethod\n def setUpClass(cls):\n@@ -64,6 +65,1... | 2025-08-28T08:31:25 |
nodejs/node | bbb2134e7b5d2c736b294deee798124ac91fc245 | d1d357d3adcf91d1203af53a2dc9b2682246c83f | doc: fix metadata for v11.8.0 doc changes
Refs: https://github.com/nodejs/node/commit/641de82404d5fa381053e0f5abd522c7f5881e5a
PR-URL: https://github.com/nodejs/node/pull/25709
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addal... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -77,21 +77,21 @@ $ source node_bash_completion\n \n ### `--diagnostic-report-directory=directory`\n <!-- YAML\n-added: v11.7.0\n+added: v11.8.0\n -->\n \n Location at which the report will be generated.\n \n ### `--diagnostic-report-filename=filename`\n <!-- YAML\n-a... | 2019-01-25T18:02:00 |
rust-lang/rust | 29492da34bccad34ec1532e2825e43fba8aac4ff | ed143afc7f5ee4b3ce0c692b0528bdc51d0733ab | Fix suggestion-causes-error of `manual_swap` | [
{
"path": "clippy_lints/src/swap.rs",
"patch": "@@ -10,7 +10,7 @@ use rustc_data_structures::fx::FxIndexSet;\n use rustc_hir::intravisit::{Visitor, walk_expr};\n \n use rustc_errors::Applicability;\n-use rustc_hir::{AssignOpKind, Block, Expr, ExprKind, LetStmt, PatKind, QPath, Stmt, StmtKind};\n+use rustc_h... | 2025-06-04T18:20:28 |
golang/go | 394a1ad2956f0397e83b5f0234ea7e972a307848 | 4d550727f8b85e9f8866f22c8a02b8f56fa64159 | cmd/compile: allow importing and exporting of ODYANMICDOTTYPE[2]
Fixes #49027
Change-Id: I4520b5c754027bfffbc5cd92c9c27002b248c99a
Reviewed-on: https://go-review.googlesource.com/c/go/+/356569
Trust: Keith Randall <khr@golang.org>
Trust: Dan Scales <danscales@google.com>
Run-TryBot: Keith Randall <khr@golang.org>
Rev... | [
{
"path": "src/cmd/compile/internal/typecheck/iexport.go",
"patch": "@@ -1888,6 +1888,14 @@ func (w *exportWriter) expr(n ir.Node) {\n \t\tw.expr(n.X)\n \t\tw.typ(n.Type())\n \n+\tcase ir.ODYNAMICDOTTYPE, ir.ODYNAMICDOTTYPE2:\n+\t\tn := n.(*ir.DynamicTypeAssertExpr)\n+\t\tw.op(n.Op())\n+\t\tw.pos(n.Pos())\n... | 2021-10-18T17:26:18 |
vercel/next.js | 394bff5fd01bce51257b0468eda1fdde7c9db02b | 3b1aaa2686ab50fa4945595d1b46122e34cbc5e7 | Fix closure and rest params handling in SWC transform (#47401)
This PR addresses two bugs:
- The parameters of arrow functions were not being tracked in `closure_idents` due to not being visited via `visit_mut_param`. They are stored as `Vec<Pat>` instead so we need to handle these as a special case.
- The rest param... | [
{
"path": "packages/next-swc/crates/core/src/server_actions.rs",
"patch": "@@ -237,19 +237,12 @@ impl<C: Comments> ServerActions<C> {\n // export const $ACTION_myAction = async () => {}\n let mut new_params: Vec<Pat> = vec![closure_arg.clone().into()];\n for (... | 2023-03-23T13:55:22 |
huggingface/transformers | e3d8fd730ed063a88edc49ed5f3c8acfabb53368 | 821384d5d4cd168a4eba90d03a3342fb99dd8fc0 | docs(pixtral): Update Pixtral model card to new format (#40442)
* docs(pixtral): Update Pixtral model card to new format
* docs(pixtral): Change cuda into auto for device_map
* docs(pixtral): Apply suggestions from review
Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
* docs(pixtral): Appl... | [
{
"path": "docs/source/en/model_doc/pixtral.md",
"patch": "@@ -15,74 +15,126 @@ rendered properly in your Markdown viewer.\n -->\n *This model was released on 2024-09-17 and added to Hugging Face Transformers on 2024-09-14.*\n \n-# Pixtral\n \n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\"... | 2025-08-27T18:38:51 |
nodejs/node | d1d357d3adcf91d1203af53a2dc9b2682246c83f | 303585eb293e1d6aa2c13d2cf47fa7285732237f | test: fix sequential/test-performance delay
PR-URL: https://github.com/nodejs/node/pull/25695
Fixes: https://github.com/nodejs/node/issues/23291
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jeremiah Senk... | [
{
"path": "test/sequential/test-performance.js",
"patch": "@@ -56,42 +56,17 @@ assert(inited < 15000);\n assert.strictEqual(performance.nodeTiming.name, 'node');\n assert.strictEqual(performance.nodeTiming.entryType, 'node');\n \n-let timeoutDelay = 111; // An extra of 111 ms for the first call.\n-\n-functi... | 2019-01-25T07:07:25 |
golang/go | 4d550727f8b85e9f8866f22c8a02b8f56fa64159 | 543a513304c35d42b162790a6e70191aac68225c | reflect: add Value.UnsafePointer
Allowing eliminates a class of possible misuse of unsafe.Pointer, and
allow callers to migrate from Value.Addr and Value.Pointer, thus they
can be now deprecated.
Fixes #40592
Change-Id: I798e507c748922cac5cc1c1971c1b2cc7095a068
Reviewed-on: https://go-review.googlesource.com/c/go/+/... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -3223,11 +3223,11 @@ func (*outer) M() {}\n \n func TestNestedMethods(t *testing.T) {\n \ttyp := TypeOf((*outer)(nil))\n-\tif typ.NumMethod() != 1 || typ.Method(0).Func.Pointer() != ValueOf((*outer).M).Pointer() {\n+\tif typ.NumMethod() != 1 || typ.Method(0)... | 2021-09-18T03:32:22 |
vercel/next.js | 3b1aaa2686ab50fa4945595d1b46122e34cbc5e7 | b2ca7a3bf8a130e199fc8c9a9211dc6730e47384 | improve source mapping of console output and errors (#47388)
### What?
* see https://github.com/vercel/turbo/pull/4284
* also adds a test case
* fixes some bugs with app dir (e. g. fixes https://github.com/vercel/turbo/issues/2496)
### Why?
* Stack traces pointing to generated code are not very useful
### How?
* ... | [
{
"path": "packages/next-swc/Cargo.lock",
"patch": "@@ -234,7 +234,7 @@ checksum = \"0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba\"\n dependencies = [\n \"proc-macro2\",\n \"quote\",\n- \"syn 2.0.7\",\n+ \"syn 2.0.8\",\n ]\n \n [[package]]\n@@ -300,7 +300,7 @@ checksum = \"86ea188f25f0... | 2023-03-23T12:43:22 |
huggingface/transformers | 821384d5d4cd168a4eba90d03a3342fb99dd8fc0 | 304225aa15bdd20e172a7c8df7847d12c52b4e3b | Fix the CI workflow of `merge to main` (#40503)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/push-important-models.yml",
"patch": "@@ -145,6 +145,7 @@ jobs:\n name: Model CI\n uses: ./.github/workflows/self-scheduled.yml\n needs: get_modified_models\n+ if: needs.get_modified_models.outputs.matrix != '' && needs.get_modified_models.outputs.matrix != '[]'\n... | 2025-08-27T16:35:12 |
nodejs/node | 303585eb293e1d6aa2c13d2cf47fa7285732237f | 71b00f0b5bbaf1b3bc5bb5e3523e54ebb52a83af | repl: improve doc for disabling REPL history on Windows
Environment variables with empty values are not permitted on Windows. As
such, to disable persistent REPL history one or more spaces should be
used. Node will trim whitespace from the variable, resulting in a blank
variable at runtime and the desired behaviour.
... | [
{
"path": "doc/api/repl.md",
"patch": "@@ -540,8 +540,10 @@ environment variables:\n \n - `NODE_REPL_HISTORY` - When a valid path is given, persistent REPL history\n will be saved to the specified file rather than `.node_repl_history` in the\n- user's home directory. Setting this value to `''` will di... | 2019-01-23T22:45:02 |
electron/electron | 4254eb279f9921a8e263bb200dbaebaf792d207f | 262b66b93af57f5395ec0e532ccea28f4922b961 | Fix API changes on Linux | [
{
"path": "atom/browser/ui/file_dialog_gtk.cc",
"patch": "@@ -22,7 +22,7 @@ gboolean FileFilterCaseInsensitive(const GtkFileFilterInfo* file_info,\n // Makes .* file extension matches all file types.\n if (*file_extension == \".*\")\n return true;\n- return EndsWith(file_info->filename, *file_exten... | 2015-09-02T09:30:07 |
golang/go | 417100ec1b08bb1046e207fd08de105944668d27 | 3e5cc4d6f6befb284d7b2a5142a8b576bf5970ea | cmd/go: fix broken fuzz test
Fixes test breakage caused by CL 355691.
Change-Id: I85fcb1491dc39c45342f4cae91fdfda6aedecd1a
Reviewed-on: https://go-review.googlesource.com/c/go/+/356530
Trust: Katie Hockman <katie@golang.org>
Run-TryBot: Katie Hockman <katie@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewe... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt",
"patch": "@@ -34,21 +34,6 @@ stdout FAIL\n stdout 'there was an Error'\n stdout FAIL\n \n-# Test that minimization occurs for a crash that appears while minimizing a\n-# newly found interesting input. There must be only one worker for this test ... | 2021-10-18T14:24:00 |
rust-lang/rust | cdeca5cbd323841285d41af33825864b5764642e | 4b27a04cc8ed4da10a546a871e23e665d03f7a79 | fix Zip unsoundness (again)
Some history: The Zip TrustedRandomAccess specialization has tried
to emulate the side-effects of the naive implementation for a long time,
including backwards iteration. 82292¹ tried to fix unsoundness (82291¹) in that
side-effect-preservation code, but this introduced some panic-safety
un... | [
{
"path": "library/core/src/iter/adapters/zip.rs",
"patch": "@@ -18,7 +18,6 @@ pub struct Zip<A, B> {\n // index, len and a_len are only used by the specialized version of zip\n index: usize,\n len: usize,\n- a_len: usize,\n }\n impl<A: Iterator, B: Iterator> Zip<A, B> {\n pub(in crate::i... | 2025-04-30T18:51:22 |
huggingface/transformers | 6350636964b2a5481be827f61f5f4ba6c4d31c75 | 52aaa3f5004d18ecb148c82534eb9eec8ac20f8f | Fix `qwen2_moe` tests (#40494)
update
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/qwen2_moe/test_modeling_qwen2_moe.py",
"patch": "@@ -13,18 +13,18 @@\n # limitations under the License.\n \"\"\"Testing suite for the PyTorch Qwen2MoE model.\"\"\"\n \n-import gc\n import unittest\n \n import pytest\n \n from transformers import AutoTokenizer, Qwen2MoeConfig, is_torc... | 2025-08-27T14:22:04 |
electron/electron | 45491ca7aba545afd0eded3d19c96c4ec16fa774 | 1db843244de2d128e003bfe5e997f893eaa81029 | Fix API changes | [
{
"path": "atom/browser/api/atom_api_content_tracing.cc",
"patch": "@@ -19,27 +19,19 @@ using content::TracingController;\n namespace mate {\n \n template<>\n-struct Converter<base::trace_event::CategoryFilter> {\n+struct Converter<base::trace_event::TraceConfig> {\n static bool FromV8(v8::Isolate* isolat... | 2015-09-02T07:16:49 |
nodejs/node | 71b00f0b5bbaf1b3bc5bb5e3523e54ebb52a83af | f40778e97a1a324a01e266ed82d91c272715a69a | doc: fix keyObject.symmetricSize to be keyObject.symmetricKeySize
PR-URL: https://github.com/nodejs/node/pull/25670
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -1172,7 +1172,7 @@ encryption mechanism, PEM-level encryption is not supported when encrypting\n a PKCS#8 key. See [RFC 5208][] for PKCS#8 encryption and [RFC 1421][] for\n PKCS#1 and SEC1 encryption.\n \n-### keyObject.symmetricSize\n+### keyObject.symmetricKeySi... | 2019-01-23T18:38:11 |
rust-lang/rust | ab453db3c4e7a49d0ed3811c12ae658cf578f78b | 1599091459580e2e20b7b874da111b6cbdb6ae36 | `panic-handler`: Remove the `no_core` feature
This was introduced before `#[panic_handler]` was stable, but should no
longer be needed. Additionally, we only need it for
`builtins-test-intrinsics`, not as a dependency of `compiler-builtins`. | [
{
"path": "library/compiler-builtins/builtins-test-intrinsics/Cargo.toml",
"patch": "@@ -6,7 +6,7 @@ publish = false\n license = \"MIT OR Apache-2.0\"\n \n [dependencies]\n-compiler_builtins = { path = \"../compiler-builtins\", features = [\"compiler-builtins\"]}\n+compiler_builtins = { path = \"../compiler... | 2025-06-04T21:17:51 |
golang/go | c091767d87b7a6ef6016286bc0fae8add59b92de | 74acbaf94ab3c7aaa7e22fda4f90920e90f11ead | cmd/asm: report an error when trying to do spectre on 386
The compiler refuses to do spectre mitigation on 386, but the
assembler doesn't. Fix that.
Fixes #49006
Change-Id: I887b6f7ed7523a47f463706f06ca4c2c6e828b6b
Reviewed-on: https://go-review.googlesource.com/c/go/+/356190
Trust: Keith Randall <khr@golang.org>
Ru... | [
{
"path": "src/cmd/internal/obj/x86/asm6.go",
"patch": "@@ -2035,6 +2035,11 @@ type nopPad struct {\n }\n \n func span6(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n+\tif ctxt.Retpoline && ctxt.Arch.Family == sys.I386 {\n+\t\tctxt.Diag(\"-spectre=ret not supported on 386\")\n+\t\tctxt.Retpoline = ... | 2021-10-15T20:52:05 |
huggingface/transformers | 52aaa3f5004d18ecb148c82534eb9eec8ac20f8f | ed5dd2999cb2ba93e9f30c0cc09ac045c2e379a4 | [EfficientLoFTR] dynamic image size support (#40329)
* fix: reverted efficientloftr embeddings computation to inference time with lru cache
* fix: added dtype and device for torch ones and zeros creation
* fix: fixed embed height and width computation with aggregation
* fix: make style
* fix error message
* fix f... | [
{
"path": "src/transformers/models/efficientloftr/configuration_efficientloftr.py",
"patch": "@@ -68,8 +68,6 @@ class EfficientLoFTRConfig(PretrainedConfig):\n Kernel size used for the fine feature matching\n batch_norm_eps (`float`, *optional*, defaults to 1e-05):\n The epsi... | 2025-08-27T14:05:08 |
electron/electron | c01d2fbbcd905e23b673ae3884efa187945ebf8b | f75458f78db2f558f9235b034109450b9d22bfa9 | Suppress running tests on our OS X machine
It gets stuck and I don't know the reason, ignore it for now and work on
more important things, will fix it in future. | [
{
"path": "script/cibuild",
"patch": "@@ -71,7 +71,7 @@ def main():\n run_script('upload.py')\n else:\n run_script('build.py', ['-c', 'D'])\n- if PLATFORM != 'win32' and target_arch == 'x64':\n+ if is_travis or PLATFORM == 'linux':\n run_script('test.py', ['--ci'])\n \n run_script('c... | 2015-09-03T08:46:44 |
nodejs/node | f40778e97a1a324a01e266ed82d91c272715a69a | 96731fc8d3b0115c512234876b193e5b435082c7 | doc: add metadata to report docs
Fixes: https://github.com/nodejs/node/issues/25682
PR-URL: https://github.com/nodejs/node/pull/25708
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "doc/api/report.md",
"patch": "@@ -1,5 +1,12 @@\n # Diagnostic Report\n \n+<!--introduced_in=v11.8.0-->\n+<!-- type=misc -->\n+\n+> Stability: 1 - Experimental\n+\n+<!-- name=report -->\n+\n Delivers a JSON-formatted diagnostic summary, written to a file.\n \n The report is intended for developmen... | 2019-01-25T17:47:17 |
rust-lang/rust | 35cb28b7cfd2659bb1ac5ebed026694770199d0d | df8102fe5f24f28a918660b0cd918d7331c3896e | Verbose suggestion to make param `const`
```
error[E0747]: type provided when a constant was expected
--> $DIR/invalid-const-arguments.rs:10:19
|
LL | impl<N> Foo for B<N> {}
| ^
|
help: consider changing this type parameter to a const parameter
|
LL - impl<N> Foo for B<N> {}
LL + impl<... | [
{
"path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/generics.rs",
"patch": "@@ -73,7 +73,7 @@ fn generic_arg_mismatch_err(\n let param_name = tcx.hir_ty_param_name(param_local_id);\n let param_type = tcx.type_of(param.def_id).instantiate_identity();\n ... | 2025-06-04T21:23:11 |
golang/go | cf51fb5d680a9a1ca98af3361e65722d07bff111 | fa7d11a0e9c0ed469111ba5fdd86f7462a48ef49 | cmd/compile, types2: avoid confusing follow-on error in invalid type assertion
This CL avoids a useless follow-on error (that gets reported before the
actual error due to source position). This addresses the first part of
the issue below.
Thanks to @cuonglm for the suggestion for the fix.
For #49005.
Change-Id: Ifd... | [
{
"path": "src/cmd/compile/internal/types2/typexpr.go",
"patch": "@@ -312,6 +312,13 @@ func (check *Checker) typInternal(e0 syntax.Expr, def *Named) (T Type) {\n \t\t\ttyp := new(Pointer)\n \t\t\tdef.setUnderlying(typ)\n \t\t\ttyp.base = check.varType(e.X)\n+\t\t\t// If typ.base is invalid, it's unlikely th... | 2021-10-17T03:30:12 |
huggingface/transformers | ed5dd2999cb2ba93e9f30c0cc09ac045c2e379a4 | 8b804311ba9bf921a6099c32edb6aae1ae557b8e | [ESM] support attention API (#40370)
* ESM supports attention API
* supports flags
* fix tests
* fix copiees
* another fixup needed after fixing tests
* fix tests and make sure Evolla copied everything
* fix
* order
* forgot about "is_causal" for fa2
* cross attention can't be causal | [
{
"path": "src/transformers/models/esm/modeling_esm.py",
"patch": "@@ -16,14 +16,13 @@\n \"\"\"PyTorch ESM model.\"\"\"\n \n import math\n-from typing import Optional, Union\n+from typing import Callable, Optional, Union\n \n import torch\n import torch.utils.checkpoint\n from torch import nn\n from torch.n... | 2025-08-27T13:39:04 |
electron/electron | d6daea12af1de8297f976fe450ca3c90d0f5540f | 28e5258a96dca763c9c08d869aa395ca4df2a0d9 | fix jp/quick-start-jp.md
this change includes some typo, misspelled things in jp/quick-start-jp.md | [
{
"path": "docs-translations/jp/quick-start-jp.md",
"patch": "@@ -14,17 +14,17 @@ Electronでは、`package.json` の `main`で実行されるプロセスを __\n \n Electronはウェブページを表示させるためにChromiumを使用しているので、Chromiumのマルチプロセスアーキテクチャが使用されることになります。Electronで実行されるウェブページはそれぞれ自身のプロセスで実行されます。それを __レンダラープロセス__ と呼びます。\n \n-通常、ブラウザのウェブページはサウンドボックス... | 2015-09-03T08:19:12 |
golang/go | fa7d11a0e9c0ed469111ba5fdd86f7462a48ef49 | 640a49b8d45760b7c965fc1529dffc8e000cc846 | go/types, types2: add test case for missing return
The respective issue was fixed in types2 with CL 356189;
and the problem didn't exist in go/types. This CL simply
adds the test case to the type checkers as well.
For #49003.
Change-Id: Ib50ee8bb0ad21f2916f2b79d4f77593302899a3e
Reviewed-on: https://go-review.googles... | [
{
"path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue49003.go",
"patch": "@@ -0,0 +1,10 @@\n+// Copyright 2021 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 p\n+\n+func f(s string) i... | 2021-10-16T21:54:42 |
nodejs/node | 96731fc8d3b0115c512234876b193e5b435082c7 | 0ce615c4af2fbd19f99b5c65c044ce33cd4e1eba | doc: fix 11.8.0 changelog
Problem with tool resulted in wrong commits being included
PR-URL: https://github.com/nodejs/node/pull/25705
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "doc/changelogs/CHANGELOG_V11.md",
"patch": "@@ -58,49 +58,16 @@\n \n ### Commits\n \n-* [[`e09dd0c5f0`](https://github.com/nodejs/node/commit/e09dd0c5f0)] - **assert**: make `actual` and `expected` getters (Ruben Bridgewater) [#25250](https://github.com/nodejs/node/pull/25250)\n-* [[`516f75fda8`]... | 2019-01-25T15:48:45 |
vercel/next.js | b2ca7a3bf8a130e199fc8c9a9211dc6730e47384 | 0416bd559deaa320082054525e366863aae64944 | Fix twitter metadata info merging (#47433)
* Fix rest of twitter metadata when merging with static metadata images,
should include title/description/etc. properties
* rename `opengraph` to `openGraph` property
Related to NEXT-266
Follow up for #47425
Fixing the twitter metadata are missing found while testin... | [
{
"path": "packages/next/src/build/webpack/loaders/metadata/discover.ts",
"patch": "@@ -23,7 +23,7 @@ export const STATIC_METADATA_IMAGES = {\n filename: 'favicon',\n extensions: ['ico'],\n },\n- opengraph: {\n+ openGraph: {\n filename: 'opengraph-image',\n extensions: ['jpg', 'jpeg', 'p... | 2023-03-23T12:04:26 |
huggingface/transformers | 8b804311ba9bf921a6099c32edb6aae1ae557b8e | a3afebbbbeb18090b7708ed4da47b5ec1bbcceaf | [modular] Remove ambiguity in all calls to parent class methods + fix dependency graph (#40456)
* fix in modular
* remove leftover print
* fix everything except when it's in assignment
* fix assignment as well
* more general
* better
* better
* better comment
* docstring
* cleaner
* remove base
* doc | [
{
"path": "docs/source/en/modular_transformers.md",
"patch": "@@ -21,10 +21,10 @@ Model users still import and use the single-file interface they've grown familia\n \n A linter \"unravels\" the modular file into a `modeling.py` file to preserve the single model, single file directory structure (modeling, pr... | 2025-08-27T12:51:28 |
golang/go | 1b072b3ed56c18619587354f499fcda5279718a2 | 85cbdda5a6d8525973580776c835e725452db898 | runtime: consistently access pollDesc r/w Gs with atomics
Both netpollblock and netpollunblock read gpp using a non-atomic load.
When consuming a ready event, netpollblock clears gpp using a non-atomic
store, thus skipping a barrier.
Thus on systems with weak memory ordering, a sequence like so this is
possible:
... | [
{
"path": "src/runtime/netpoll.go",
"patch": "@@ -78,6 +78,7 @@ type pollDesc struct {\n \t// pollReset, pollWait, pollWaitCanceled and runtime·netpollready (IO readiness notification)\n \t// proceed w/o taking the lock. So closing, everr, rg, rd, wg and wd are manipulated\n \t// in a lock-free way by all o... | 2021-10-14T22:18:49 |
huggingface/transformers | a3afebbbbeb18090b7708ed4da47b5ec1bbcceaf | 75d6f17de68f372284ecb5b40db6f83007ffa394 | [modular] Use multi-processing + fix model import issue (#40481)
* add mp and simplify a bit
* improve
* fix
* fix imports
* nit | [
{
"path": "utils/check_modular_conversion.py",
"patch": "@@ -36,7 +36,7 @@ def process_file(\n # Read the actual modeling file\n with open(file_path, \"r\", encoding=\"utf-8\") as modeling_file:\n content = modeling_file.read()\n- output_buffer = StringIO(generated_modeling_content[file_t... | 2025-08-27T12:51:12 |
nodejs/node | 80441c8086aa5d5d74d93b5c6b779eab734149d4 | f8d52c25c478c6eb8b182f0b4ea33a58f3fa2aad | src,test: fix JSON escaping in node-report
Previously only simple escape sequences were handled
(i.e. \n, \t, r etc.). This commit adds escaping of other control
symbols in the range of 0x00 to 0x20.
Also, this replaces multiple find+replace calls with a single pass
replacer.
PR-URL: https://github.com/nodejs/node/p... | [
{
"path": "node.gyp",
"patch": "@@ -980,6 +980,7 @@\n 'test/cctest/test_node_postmortem_metadata.cc',\n 'test/cctest/test_environment.cc',\n 'test/cctest/test_platform.cc',\n+ 'test/cctest/test_report_util.cc',\n 'test/cctest/test_traced_value.cc',\n 'test/ccte... | 2019-01-21T21:16:46 |
huggingface/transformers | 75d6f17de68f372284ecb5b40db6f83007ffa394 | 80f4c0c6a0f4cf1edd9a812115e41b49cd9be448 | Validate GptOssConfig rope config after it's fully initialized (#40474)
* Validate GptOssConfig rope config after it's fully initialized
Fixes #40461
* Remove whitespaces | [
{
"path": "src/transformers/models/gpt_oss/configuration_gpt_oss.py",
"patch": "@@ -98,17 +98,18 @@ def __init__(\n ]\n layer_type_validation(self.layer_types)\n \n+ self.attention_bias = True\n+ self.max_position_embeddings = max_position_embeddings\n+ self.router_a... | 2025-08-27T09:16:58 |
golang/go | 85cbdda5a6d8525973580776c835e725452db898 | a17b2e865551ebdeccd6aafcdc23c1b63932b258 | doc/go1.18: add release notes for build and VCS info
Fixes #37475
For #39301
Change-Id: I765bc667004931ff8973b947f2e95624a4a0375d
Reviewed-on: https://go-review.googlesource.com/c/go/+/356013
Reviewed-by: Bryan C. Mills <bcmills@google.com>
Trust: Jay Conrod <jayconrod@google.com> | [
{
"path": "doc/go1.18.html",
"patch": "@@ -65,6 +65,30 @@ <h3 id=\"go-command\">Go command</h3>\n and installs packages, as before.\n </p>\n \n+<p><!-- golang.org/issue/37475 -->\n+ The <code>go</code> command now embeds version control information in\n+ binaries including the currently checked-out revi... | 2021-10-14T22:40:44 |
electron/electron | 66a1405d2b415c9b4cb97dd4ac2a3db173dd2957 | 131cd9cff6caa4b319147cafee0f754b401c5c76 | Fix conflict | [
{
"path": "docs/tutorial/desktop-environment-integration.md",
"patch": "@@ -29,11 +29,7 @@ var app = require('app');\n app.addRecentDocument('/Users/USERNAME/Desktop/work.type');\n ```\n \n-<<<<<<< HEAD\n-You can use [app.clearRecentDocuments](clearrecentdocuments) API to empty\n-=======\n And you can use [... | 2015-09-03T00:09:37 |
nodejs/node | 399ef4f5369ea3e7a7edf5f8bb09e889e3715ba0 | 7d27f0e9d0570696962c301c08080396829c487f | test: remove common.isOSXMojave
common.isOSXMojave was added because it was believed that there was a
bug in macOS Mojave that allowed unprivileged users to bind to
privileged ports. As it turns out, that was a feature not a bug. It is
likely to be in all future versions of macOS. Remove isOSXMojave and
skip appropria... | [
{
"path": "test/common/index.js",
"patch": "@@ -99,8 +99,6 @@ const isOpenBSD = process.platform === 'openbsd';\n const isLinux = process.platform === 'linux';\n const isOSX = process.platform === 'darwin';\n \n-const isOSXMojave = isOSX && (os.release().startsWith('18'));\n-\n const enoughTestMem = os.tota... | 2019-01-23T03:27:14 |
huggingface/transformers | ff8b88a948fc2f6aba421ca64ad165291928dcee | 74ad608a2be6bee0fd8b7180b2e0f7873d17ebd0 | Fix nightly torch CI (#40469)
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/self-nightly-caller.yml",
"patch": "@@ -12,12 +12,34 @@ on:\n branches:\n - run_ci_with_nightly_torch*\n \n+# Used for `push` to easily modify the target workflow runs to compare against\n+env:\n+ prev_workflow_run_id: \"\"\n+ other_workflow_run_id: \"\"\n+\n+\n ... | 2025-08-26T20:02:15 |
electron/electron | 2f41641139cf0c1d4666423cf75ec16bb66db83f | 159b6ca61119fcbaacfb7e6eead6dddb8d0bcedb | Update browser-window.md
Fix App Command Web Link | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -236,7 +236,7 @@ Emitted when devtools is focused / opened.\n \n ### Event: 'app-command' _Windows_\n \n-Emitted when an [App Command](https://msdn.microsoft.com/en-us/library/windows/desktop/ms646275(v=vs.85).aspx\n+Emitted when an [App Command](https://... | 2015-09-02T19:44:51 |
golang/go | a17b2e865551ebdeccd6aafcdc23c1b63932b258 | 22951fbc89a1bc3c5cc38f4e71b4a682f5149361 | cmd/go: allow nested VCS repositories when preparing build stamp
The go command no longer reports an error when invoked in a repository
nested inside another. This check is still used by 'go get' in GOPATH
mode when locating a repository, but it's not needed when preparing
the build stamp.
Fixes #49004
Change-Id: I4... | [
{
"path": "src/cmd/go/internal/get/get.go",
"patch": "@@ -446,7 +446,8 @@ func downloadPackage(p *load.Package) error {\n \n \tif p.Internal.Build.SrcRoot != \"\" {\n \t\t// Directory exists. Look for checkout along path to src.\n-\t\trepoDir, vcsCmd, err = vcs.FromDir(p.Dir, p.Internal.Build.SrcRoot)\n+\t\... | 2021-10-15T18:57:58 |
nodejs/node | 641de82404d5fa381053e0f5abd522c7f5881e5a | 35f45ba47b6fe9474a285483044ec27bd0a22896 | 2019-01-24, Version 11.8.0 (Current)
Notable Changes:
* events:
* For unhandled `error` events with an argument that is not an
`Error` object, the resulting exeption will have more information
about the argument.
https://github.com/nodejs/node/pull/25621
* child_process:
* When the `maxBuffer` option ... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -28,7 +28,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V11.md#11.7.0\">11.7.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V11.md#11.8.0\">11.8.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V11.md#11.7.0\"... | 2019-01-24T21:33:33 |
huggingface/transformers | 78f32c3917596b4558d4738e61ff0c39ec0d16ac | 6451294f6f28f0d4842f78bff4c9a70c208f4ea4 | [pipeline] Add Keypoint Matching pipeline (#39970)
* feat: keypoint-matcher pipeline
* docs: added keypoint-matcher pipeline in docs
* fix: added missing statements for repo consistency
* docs: updated SuperGlue, LightGlue and EfficientLoFTR docs
* Apply suggestions from code review
Co-authored-by: Pavel Iakubovs... | [
{
"path": "docs/source/en/main_classes/pipelines.md",
"patch": "@@ -363,6 +363,12 @@ Pipelines available for computer vision tasks include the following.\n - __call__\n - all\n \n+### KeypointMatchingPipeline\n+\n+[[autodoc]] KeypointMatchingPipeline\n+ - __call__\n+ - all\n+\n ### ObjectDetec... | 2025-08-26T14:26:57 |
vercel/next.js | 34b816cf5be033488f8de1c261f343bc1ea91f05 | 252c9588bf1f112840c1b879afc42743a5886fe2 | improve source mapping of console output and errors (vercel/turbo#4284)
### Description
* source map node.js process output
* fix race condition in console output
* decode magic identifier
* add source context
* add some coloring to the console
* improve readablility of sources in the devtools
![image
(3)]... | [
{
"path": "crates/turbo-tasks-fs/src/lib.rs",
"patch": "@@ -99,7 +99,7 @@ impl DiskWatcher {\n fn restore_if_watching(&self, dir_path: &Path, root_path: &Path) -> Result<()> {\n if self.watching.contains(dir_path) {\n let mut watcher = self.watcher.lock().unwrap();\n- self... | 2023-03-23T10:47:20 |
golang/go | 22951fbc89a1bc3c5cc38f4e71b4a682f5149361 | cfe6763783615233ec7ae863784b898718d14c40 | cmd/compile: make for loops with range statements not terminating
Fixes #49003
Change-Id: If09c6f028dce5440b1be238612653ffdd626113a
Reviewed-on: https://go-review.googlesource.com/c/go/+/356189
Trust: Keith Randall <khr@golang.org>
Reviewed-by: roger peppe <rogpeppe@gmail.com>
Reviewed-by: Matthew Dempsky <mdempsky@g... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Sep 16, 2021\",\n+\t\"Subtitle\": \"Version of Oct 15, 2021\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4598,7 +4598,8 @@ <h3 id=\"Terminating_statem... | 2021-10-15T15:06:58 |
nodejs/node | 35f45ba47b6fe9474a285483044ec27bd0a22896 | 0d31293d4aa2c5a8e9de4e7ef446f2566def1908 | test: remove known_issues/test-cluster-bind-privileged-port
The test was added to check for a bug in macOS Mojave, but it turns out
the issue is a macOS feature, not a bug.
Refs: https://github.com/nodejs/node/issues/21679#issuecomment-456589386
Fixes: https://github.com/nodejs/node/issues/21679
PR-URL: https://gith... | [
{
"path": "test/known_issues/test-cluster-bind-privileged-port.js",
"patch": "@@ -1,25 +0,0 @@\n-'use strict';\n-const common = require('../common');\n-\n-// This test should fail on macOS (10.14) due to an issue with privileged ports.\n-\n-const assert = require('assert');\n-const cluster = require('cluste... | 2019-01-22T22:17:22 |
electron/electron | 3914ff2ac50624cea0088607d354c258b5a47934 | ba7ddd66a1b91d01dc447b2d1b564f0993e63e70 | Fix many typos, update as upstream | [
{
"path": "docs-translations/ko/README.md",
"patch": "@@ -17,7 +17,7 @@\n ## API 레퍼런스\n \n * [개요](api/synopsis.md)\n-* [프로세스 객체](api/process.md)\n+* [process](api/process.md)\n * [크롬 Command-Line 스위치 지원](api/chrome-command-line-switches.md)\n \n 커스텀 DOM elements:",
"additions": 1,
"deletions": 1,
... | 2015-09-02T16:12:54 |
huggingface/transformers | 5a8ba87ecf17aecec428a67e96cb14f8a9a74055 | 0ce6709e709cbb10573d5c7d53b36feb6467ecf3 | [fast_image_processor] fix image normalization for resize (#40436) | [
{
"path": "src/transformers/image_processing_utils_fast.py",
"patch": "@@ -304,9 +304,9 @@ def compile_friendly_resize(\n A wrapper around `F.resize` so that it is compatible with torch.compile when the image is a uint8 tensor.\n \"\"\"\n if image.dtype == torch.uint8:\n- ... | 2025-08-26T13:49:51 |
vercel/next.js | a5dfe46cca64fbc1a62d57e1ebed0ab2eb65d24c | 91506209935107419a9478b7d21519af2f0b4c6c | turbopack: Implement streamed middleware (#47264)
Fun! This depends on https://github.com/vercel/turbo/pull/4251 to
implement streamed Node evaluations, giving us the ability to support
streamed middleware responses.
This is just the first step to supporting RSC streaming in Turbopack. I
chose to start with this... | [
{
"path": "packages/next-swc/Cargo.lock",
"patch": "@@ -18,7 +18,7 @@ version = \"0.19.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97\"\n dependencies = [\n- \"gimli 0.27.1\",\n+ \"gimli 0.27.2\",\n ]\n... | 2023-03-23T04:04:33 |
golang/go | cfe6763783615233ec7ae863784b898718d14c40 | 8331f25e96d6120bb0ec212bd03abcae53282769 | internal/fuzz: fix bugs with minimization
This pulls in some code and tests from CL 353355.
This change makes some refactors for when we read
to and write from memory during minimization.
That fixes a bug when minimizing interesting inputs.
Now, if an error occurs while minimizing an interesting
input, that value wil... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt",
"patch": "@@ -7,56 +7,72 @@\n env GOCACHE=$WORK/gocache\n \n # Test that fuzzminimizetime cannot be negative seconds\n-! go test -fuzz=FuzzMinimizerRecoverable -run=FuzzMinimizerRecoverable -fuzztime=10000x -fuzzminimizetime=-1ms minimizer_test.... | 2021-10-13T20:49:27 |
huggingface/transformers | 263d06fedc17bb28f70dabe2acae562bc617ef9b | 58cebc848baa0af2e4ff159fb11504d94179f376 | Fix extra template loading (#40455)
* Fix extra template loading
* Reformat
* Trigger tests | [
{
"path": "src/transformers/tokenization_utils_base.py",
"patch": "@@ -2015,6 +2015,7 @@ def from_pretrained(\n revision=revision,\n cache_dir=cache_dir,\n ):\n+ template = template.removesuffix(\".jin... | 2025-08-26T13:01:01 |
electron/electron | 90125c44e39b561a26f87a57f7a7a1e5a966e599 | 38a211db2eadbd79e3c831742d7b76afa4831d79 | Fix API changes on Linux | [
{
"path": "brightray/browser/views/views_delegate.cc",
"patch": "@@ -13,13 +13,9 @@\n namespace brightray {\n \n ViewsDelegate::ViewsDelegate() {\n- DCHECK(!views::ViewsDelegate::views_delegate);\n- views::ViewsDelegate::views_delegate = this;\n }\n \n ViewsDelegate::~ViewsDelegate() {\n- DCHECK_EQ(views... | 2015-09-02T09:29:30 |
nodejs/node | 0c6b5cea424476d93c98030bcba0ba2b7f95302d | 58606140b558ea1fd4b62c45e0ac7fd76e16c7c3 | test: fix pummel/test-exec
Fix test/pummel/test-exec.js which broke as a result of
e47f972d6851b3196b3b2ba611929f25a5fcadb6
(https://github.com/nodejs/node/pull/24951).
(Until very recently, pummel tests were not run at all in CI and
currently only run nightly on master.)
PR-URL: https://github.com/nodejs/node/pull/... | [
{
"path": "test/pummel/test-exec.js",
"patch": "@@ -122,7 +122,7 @@ exec('python -c \"print 200000*\\'C\\'\"', { maxBuffer: 1000 },\n function(err, stdout, stderr) {\n assert.ok(err);\n assert.ok(/maxBuffer/.test(err.message));\n- assert.strictEqual(stdout, '');\n+ assert.stri... | 2019-01-24T05:43:28 |
vercel/next.js | 252c9588bf1f112840c1b879afc42743a5886fe2 | ddc71d0682f70654aef8d51056e92da43bb95ef0 | Implement node eval streaming (vercel/turbo#4251)
### Description
This implements streaming Node evaluation using an fun generic
`Stream<T>`, usable within any Vc (I'm kinda surprised it works). Think
of it a bit like a `DuplexStream`, it implements both a reader (that can
be streaming read with the `Stream` tra... | [
{
"path": "crates/turbo-tasks-bytes/Cargo.toml",
"patch": "@@ -0,0 +1,24 @@\n+[package]\n+name = \"turbo-tasks-bytes\"\n+version = \"0.1.0\"\n+description = \"TBD\"\n+license = \"MPL-2.0\"\n+edition = \"2021\"\n+\n+[lib]\n+bench = false\n+\n+[dependencies]\n+anyhow = { workspace = true }\n+bytes = { workspa... | 2023-03-23T02:22:17 |
nodejs/node | 47062f12a7095658f1f7cff7d25234ea21a839cf | e47f972d6851b3196b3b2ba611929f25a5fcadb6 | crypto: add crypto modules to cannotUseCache
Currently, when configured --without-ssl there are two failures like the
following:
internal/util.js:101
throw new ERR_NO_CRYPTO();
^
Error [ERR_NO_CRYPTO]:
Node.js is not compiled with OpenSSL crypto support
at assertCrypto (internal/util.js:101:11)
at crypto... | [
{
"path": "lib/internal/bootstrap/cache.js",
"patch": "@@ -59,6 +59,8 @@ if (!process.versions.openssl) {\n 'internal/crypto/util',\n 'internal/http2/core',\n 'internal/http2/compat',\n+ 'internal/policy/manifest',\n+ 'internal/process/policy',\n 'internal/streams/lazy_transform',\n ... | 2019-01-21T07:33:05 |
electron/electron | 38a211db2eadbd79e3c831742d7b76afa4831d79 | 5e004b4c24f080e2b65f2192980b22452c10068e | Fix API changes | [
{
"path": "brightray/browser/devtools_ui.cc",
"patch": "@@ -29,19 +29,19 @@ std::string PathWithoutParams(const std::string& path) {\n \n std::string GetMimeTypeForPath(const std::string& path) {\n std::string filename = PathWithoutParams(path);\n- if (EndsWith(filename, \".html\", false)) {\n+ if (base... | 2015-09-02T07:16:34 |
huggingface/transformers | 58cebc848baa0af2e4ff159fb11504d94179f376 | 34108a2230c4591c9a20e299ca22edc147c3918f | flash_paged: s_aux may not exist (#40434)
Some implementations (i.e.,
https://huggingface.co/kernels-community/vllm-flash-attn3) support an
`s_aux` arg for attention sinks, but others
(https://huggingface.co/kernels-community/flash-attn) do not. If s_aux
is present in the kwargs, we forward it, otherwise we don't.
Th... | [
{
"path": "src/transformers/integrations/flash_paged.py",
"patch": "@@ -53,7 +53,7 @@ def paged_attention_forward(\n sliding_window = (-1, -1) if not getattr(module, \"sliding_window\", False) else (module.sliding_window, 0)\n if implementation is not None:\n flash_attn_varlen_func = impleme... | 2025-08-26T11:15:59 |
golang/go | 8331f25e96d6120bb0ec212bd03abcae53282769 | 8c99421f01aca303240a8f809bc65fa0c56db861 | reflect: make Elem panic on bad notinheap pointers
This CL fixes the subtle issue that Elem can promote a
not-in-heap pointer, which could be any bit pattern, into an
unsafe.Pointer, which the garbage collector can see. If that
resulting value is bad, it can crash the GC.
Make sure that we don't introduce bad pointer... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -7697,3 +7697,23 @@ func TestSetIter(t *testing.T) {\n \t\tt.Errorf(\"pointer incorrect: got %d want %d\", got, b)\n \t}\n }\n+\n+//go:notinheap\n+type nih struct{ x int }\n+\n+var global_nih = nih{x: 7}\n+\n+func TestNotInHeapDeref(t *testing.T) {\n+\t// Se... | 2021-09-15T16:56:09 |
rust-lang/rust | 55f59fb0e329d0815a06d51dd469d774eb455cba | 52882f6522ae9f34f1d574b2efabc4b18e691ae0 | Fix parsing of frontmatters with inner hyphens | [
{
"path": "compiler/rustc_lexer/src/lib.rs",
"patch": "@@ -545,11 +545,12 @@ impl Cursor<'_> {\n \n let mut s = self.as_str();\n let mut found = false;\n+ let mut size = 0;\n while let Some(closing) = s.find(&\"-\".repeat(length_opening as usize)) {\n let preceding... | 2025-06-04T15:51:36 |
vercel/next.js | b1d220077018ac49bacb00e3b81cdb5b1967013a | 95322649ffb2ad0d6423481faed188dd7b1f7ff2 | Add optional match support of rewrites and redirects in `typedRoutes` (#47398)
This PR refactors the types plugin a bit and adds support for optional match groups in rewrites and redirects:
```js
source: '/redirect(/v1)?/guides/:param/page'
```
Which will be created as two rules:
```ts
| `/redirect/guides/${SafeSlu... | [
{
"path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts",
"patch": "@@ -202,26 +202,65 @@ function addRedirectsRewritesRouteTypes(\n }\n \n if (Array.isArray(tokens)) {\n- let normalizedRoute = ''\n+ const possibleNormalizedRoutes = ['']\n+ let slugCnt = 1\n+\n+ f... | 2023-03-22T23:27:59 |
nodejs/node | e47f972d6851b3196b3b2ba611929f25a5fcadb6 | 5f866821adf71ff3ed909d4be8c808197663c110 | child_process: truncate output when maxBuffer is exceeded
Preserves truncated output for `child_process.exec()` when `maxBuffer`
is exceeded.
This is particularly useful for commands which have indistinguishable
error codes for what output they produce.
PR-URL: https://github.com/nodejs/node/pull/24951
Reviewed-By: ... | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -147,8 +147,9 @@ changes:\n `'/bin/sh'` on UNIX, `process.env.ComSpec` on Windows.\n * `timeout` {number} **Default:** `0`\n * `maxBuffer` {number} Largest amount of data in bytes allowed on stdout or\n- stderr. If exceeded, the child process is ... | 2018-12-11T00:34:32 |
golang/go | 8c99421f01aca303240a8f809bc65fa0c56db861 | a80e53ec43d6ab925bb34d62dd8597a4227af363 | cmd/compile/internal/types2: add debugging support for delayed actions
Add a simple mechanism to provide formatted descriptions for
delayed actions. The comment strings are printed when tracing
is enabled and the delayed action is executed. This results
in more easily decipherable tracing output.
Requires debug mode ... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -74,6 +74,28 @@ type dotImportKey struct {\n \tname string\n }\n \n+// An action describes a (delayed) action.\n+type action struct {\n+\tf func() // action to be executed\n+\tdesc *actionDesc // action description; may be nil, requ... | 2021-10-14T01:50:06 |
huggingface/transformers | 34108a2230c4591c9a20e299ca22edc147c3918f | 49e168ff08ed837f1d7c4f4dccac4ddc427f887a | Continuous batching refactor (#40426)
* Rework of the CB example
* Further rework of CB example
* Refactor PA cache, slice on tokens, add debug prints -- WIP
* Slice cache -- WIP
* Added a mechanism to check batched outputs in CB script
* Less logging, debug flag for slice, !better reset! -- WIP
* QOL and safety... | [
{
"path": "examples/metrics-monitoring/README.md",
"patch": "@@ -2,3 +2,40 @@\n \n ## Continuous Batching Metrics in Transformers\n \n+To setup metric monitoring with continuous batching, you will want to have tempo and prometheus running.\n+\n+For this, we provide a docker compose image in `examples/metric... | 2025-08-26T11:01:42 |
vercel/next.js | 783d7d589c5a55a969b8308430d649e9961dea96 | de9278114547c6d7238b05e90c840b3a9739df47 | Extend `not-found.js` to catch all unmatched routes (#47328)
This PR continues the work of #45867, that treats the root-level `not-found.js` file inside app dir as the global 404 page, if it exists. Previously, it fallbacks to the /404 route inside pages (and the default one if `404.js` isn't specified).
In the imple... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -523,7 +523,17 @@ export default async function build(\n appPaths = await nextBuildSpan\n .traceChild('collect-app-paths')\n .traceAsyncFn(() =>\n- recursiveReadDir(appDir, validFileMatcher.isAppRouterPage)\n+ ... | 2023-03-22T22:16:50 |
electron/electron | 2c4753270204fc984228266dc9ba7114c7f12eb6 | 0cb20c48f6fa91131201f327da6d992599802c59 | Fix link to app.addRecentDocument | [
{
"path": "docs/tutorial/desktop-environment-integration.md",
"patch": "@@ -29,7 +29,7 @@ var app = require('app');\n app.addRecentDocument('/Users/USERNAME/Desktop/work.type');\n ```\n \n-And you can use [app.clearRecentDocuments](clearrecentdocuments) API to empty\n+And you can use [app.clearRecentDocumen... | 2015-09-01T21:15:21 |
nodejs/node | 5f866821adf71ff3ed909d4be8c808197663c110 | b1a4e4100635da33d9dbee7908758c8523a520b2 | test: add stdio checks to cp-exec-maxBuffer
Expands this test case to check what happens to stdout/stderr when
maxBuffer is exceeded.
Also changes how cases are checked so that assertion stacks are
tracable to their test case, aka 'make it actually debuggable'.
PR-URL: https://github.com/nodejs/node/pull/24951
Revie... | [
{
"path": "test/parallel/test-child-process-exec-maxBuffer.js",
"patch": "@@ -3,12 +3,11 @@ const common = require('../common');\n const assert = require('assert');\n const cp = require('child_process');\n \n-function checkFactory(streamName) {\n- return common.mustCall((err) => {\n- assert.strictEqual(... | 2018-12-11T00:30:43 |
huggingface/transformers | 49e168ff08ed837f1d7c4f4dccac4ddc427f887a | b8184b7ce9de5d93e2e255ea67f98f52d20ebbb6 | 🚨 Remove Contrastive Search decoding strategy (#40428)
* delete go brrr
* fix tests
* review | [
{
"path": "docs/source/en/generation_strategies.md",
"patch": "@@ -225,29 +225,6 @@ outputs = model.generate(**inputs, assistant_model=assistant_model, tokenizer=to\n tokenizer.batch_decode(outputs, skip_special_tokens=True)\n ['Alice and Bob are sitting in a bar. Alice is drinking a beer and Bob is drinkin... | 2025-08-26T10:31:46 |
vercel/next.js | de9278114547c6d7238b05e90c840b3a9739df47 | 1d407f27a5283c3991f5b520b9be72ec6cc4aaa9 | Add default meta tags to error page (#47404)
Default tags of `charset` and `viewport` should also be rendered in app
router error pages like not found pages.
Closes NEXT-869
This PR:
* Extract not found boundary to single component
* Add the default tags to `NotFoundErrorBoundary` rendering
* Fix duplicated ... | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -24,6 +24,7 @@ import { matchSegment } from './match-segments'\n import { handleSmoothScroll } from '../../shared/lib/router/utils/handle-smooth-scroll'\n import { findHeadInCache } from './router-reducer/reducers/find-head-in-c... | 2023-03-22T21:44:45 |
golang/go | fad4a16fd43f6a72b6917eff656be27522809074 | 1cbec685124b7a40fe899286db697a85da7be28a | cmd/go: use portable flags in TestScript/version_build_settings
This fixes a test failure on the 386-longtest builder.
For #37475
Change-Id: Icd1d3474968fcf85ef893190760fb488302abc3a
Reviewed-on: https://go-review.googlesource.com/c/go/+/356209
Trust: Bryan C. Mills <bcmills@google.com>
Run-TryBot: Bryan C. Mills <b... | [
{
"path": "src/cmd/go/testdata/script/version_build_settings.txt",
"patch": "@@ -8,17 +8,17 @@ stdout '^\\tbuild\\tcompiler\\tgc$'\n \n # Toolchain flags are added if present.\n # The raw flags are included, with package patterns if specified.\n-go build -asmflags=all=-spectre=all\n+go build -asmflags=examp... | 2021-10-15T15:22:03 |
huggingface/transformers | b8184b7ce9de5d93e2e255ea67f98f52d20ebbb6 | 32fcc246671d970656b3a8224c86d8c990634474 | Make cache_config not mandatory (#40316)
* Relaxed assumptions on cache_config
* Review compliance
* Style
* Styyyle
* Removed default and added args
* Rebase mishapfix
* Propagate args to TorchExportableModuleForDecoderOnlyLM
* Fix the test I wanted fixed in this PR
* Added some AMD expectation related to ca... | [
{
"path": "src/transformers/integrations/executorch.py",
"patch": "@@ -201,7 +201,10 @@ class TorchExportableModuleForDecoderOnlyLM(torch.nn.Module):\n def __init__(\n self,\n model: PreTrainedModel,\n- ):\n+ batch_size: Optional[int] = None,\n+ max_cache_len: Optional[i... | 2025-08-26T10:06:17 |
electron/electron | 10b53f7f731e984a505dee7fdc1d9cc2a65b060f | ac84f56e36d1336906fcde5cc0f9331f94a64a44 | Fix print spooler hangs when printing more than 3 pages on Windows. | [
{
"path": "chromium_src/chrome/browser/printing/print_job.cc",
"patch": "@@ -220,64 +220,6 @@ PrintedDocument* PrintJob::document() const {\n return document_.get();\n }\n \n-void PrintJob::UpdatePrintedDocument(PrintedDocument* new_document) {\n- if (document_.get() == new_document)\n- return;\n-\n- ... | 2015-09-01T09:48:43 |
nodejs/node | a6286e64c517b14b28cf84325ea24eab52b4c45f | a8d763adf20c2d8faaf5638a3e1b071a14af45dd | process: fix call process.reallyExit, vs., binding
Some user-land modules, e.g., nyc, mocha, currently rely on patching
process.reallyExit.
PR-URL: https://github.com/nodejs/node/pull/25655
Fixes: https://github.com/nodejs/node/issues/25650
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Anna Henningsen <anna@adda... | [
{
"path": "lib/internal/process/per_thread.js",
"patch": "@@ -149,7 +149,10 @@ function wrapProcessMethods(binding) {\n process._exiting = true;\n process.emit('exit', process.exitCode || 0);\n }\n- binding.reallyExit(process.exitCode || 0);\n+ // FIXME(joyeecheung): This is an undocum... | 2019-01-23T17:44:43 |
golang/go | 1cbec685124b7a40fe899286db697a85da7be28a | 81484cf6263461057251bbda825f2c3dc4cdcd09 | reflect: fix SetIter test
Missed one review comment in CL 356049
Change-Id: I05be585d15e77afc1aa57b737cdc8ba7204bab98
Reviewed-on: https://go-review.googlesource.com/c/go/+/356051
Trust: Keith Randall <khr@golang.org>
Trust: Josh Bleecher Snyder <josharian@gmail.com>
Run-TryBot: Keith Randall <khr@golang.org>
Reviewe... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -7635,7 +7635,7 @@ func TestSetIter(t *testing.T) {\n \t\tk.SetIterKey(i)\n \t})\n \tshouldPanic(\"Value.SetIterValue called before Next\", func() {\n-\t\tk.SetIterValue(i)\n+\t\tv.SetIterValue(i)\n \t})\n \tdata2 := map[string]int{}\n \tfor i.Next() {\n@@ -... | 2021-10-15T06:01:34 |
rust-lang/rust | 9091a94ff042d501b627f6244444f472a32fc972 | 61413aea937d9663d01b62902535f8d4ec85cc95 | bootstrap: Fix file permissions when dereferencing symlinks | [
{
"path": "src/bootstrap/src/lib.rs",
"patch": "@@ -1795,11 +1795,12 @@ Executed at: {executed_at}\"#,\n let now = t!(SystemTime::now().duration_since(SystemTime::UNIX_EPOCH));\n let _ = fs::rename(dst, format!(\"{}-{}\", dst.display(), now.as_nanos()));\n }\n- let met... | 2025-06-04T14:00:20 |
nodejs/node | eeea0dd1e74487edb0f707e571ddd14ec09686b0 | 2b65399694440d0bab1c4e394898a4555e58c324 | events: show inspected error in uncaught 'error' message
If there is no handler for `.emit('error', value)` and `value`
is not an `Error` object, we currently just call `.toString()`
on it.
Almost always, using `util.inspect()` provides better information
for diagnostic purposes, so prefer to use that instead.
Refs:... | [
{
"path": "lib/events.js",
"patch": "@@ -172,9 +172,18 @@ EventEmitter.prototype.emit = function emit(type, ...args) {\n // up in Node's output if this results in an unhandled exception.\n throw er; // Unhandled 'error' event\n }\n+\n+ let stringifiedEr;\n+ const { inspect } = require(... | 2019-01-21T19:45:55 |
vercel/next.js | 1d407f27a5283c3991f5b520b9be72ec6cc4aaa9 | 84a416b5e115f5b622d3cfab2d747dfe64a12e7d | upgrade vendored React to `18.3.0-next-12a1d140e-20230321` (#47405)
Includes the following upstream changes:
- 12a1d140e Don't prerender siblings of suspended component (#26380)
(Andrew Clark)
- 77ba1618a Bugfix: Remove extra render pass when reverting to client
render (#26445) (Andrew Clark)
- 520f7f3ed Refact... | [
{
"path": "package.json",
"patch": "@@ -193,11 +193,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-3706edb81-20230308\",\n+ \"react-builtin\": \"npm:react@18.3.0-next-12a1d140e-20230321\",\n ... | 2023-03-22T20:26:46 |
golang/go | 8dab959a8e3c631e3166eb08ba450bfdbbf56e03 | 3da0ff8e3b05333c378efe17585609598692791e | reflect: rename Mapiter.SetKey to Value.SetIterKey
Same for Value.
Add a bigger test. Include some shouldPanic checks.
Fix a bug in assignment conversion.
Fixes #48294
Change-Id: Id863ee5122a5787a7b35574b18586fd24d118788
Reviewed-on: https://go-review.googlesource.com/c/go/+/356049
Trust: Keith Randall <khr@golang... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -348,8 +348,8 @@ func TestMapIterSet(t *testing.T) {\n \n \titer := v.MapRange()\n \tfor iter.Next() {\n-\t\titer.SetKey(k)\n-\t\titer.SetValue(e)\n+\t\tk.SetIterKey(iter)\n+\t\te.SetIterValue(iter)\n \t\twant := m[k.String()]\n \t\tgot := e.Interface()\n \t... | 2021-10-15T00:30:42 |
huggingface/transformers | f690a2a1e09e8a8c7b04cc050ef24838c609060b | 64ae6e6b1de2c6822a53be46aba9db68f75ec595 | [video processors] decode only sampled videos -> less RAM and faster processing (#39600)
* draft update two models for now
* batch update all VLMs first
* update some more image processors
* update
* fix a few tests
* just make CI green for now
* fix copies
* update once more
* update
* unskip the test
* fix... | [
{
"path": "docs/source/en/main_classes/image_processor.md",
"patch": "@@ -16,8 +16,7 @@ rendered properly in your Markdown viewer.\n \n # Image Processor\n \n-An image processor is in charge of preparing input features for vision models and post processing their outputs. This includes transformations such a... | 2025-08-26T09:38:02 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.