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 | f028e9340cca466a64592dbea542d3bdd2c89d5e | 4dd4a8fafed79e28187ba8f5913b1e0442097ea4 | Fix model name test for compressed tensors (#42128)
* fix models
* fix output | [
{
"path": "tests/quantization/compressed_tensors_integration/test_compressed_models.py",
"patch": "@@ -155,8 +155,8 @@ def test_no_warnings_for_all_models(self):\n @require_compressed_tensors\n @require_torch\n class RunCompressedTest(unittest.TestCase):\n- tinyllama_w4a16 = \"nm-testing/tinyllama-w4a16-... | 2025-11-10T15:22:46 |
vercel/next.js | 5aaa6ff65e10a89589f12d01c3bd2e066d9d5c4f | ca32decdadf57efb6c6eca092e7303a039fdfd37 | fix: Disable `tracing/release_max_level_off` for wasm, too (#49639)
### What?
Along with https://github.com/swc-project/plugins/pull/182, this PR will
allow using trace-level logging for debugging turboapck.
### Why?
Requested by @sokra
x-ref: https://vercel.slack.com/archives/C03EWR7LGEN/p16837380764768... | [
{
"path": ".github/workflows/build_test_deploy.yml",
"patch": "@@ -1537,7 +1537,7 @@ jobs:\n run: node scripts/normalize-version-bump.js\n \n - name: Build\n- run: turbo run build-wasm -- --target ${{ matrix.target }}\n+ run: turbo run build-wasm -- --target ${{ matrix.target }} ... | 2023-05-15T14:16:12 |
nodejs/node | ee3b4fd5b27d71345e9e3dcb5b1de2b6d1f91fbf | 58ba9527dc5fd3343f719b11a4cef73d23215253 | tools: add Release and Debug symlinks to .gitignore
Seems at least some windows versions interpret symlinks not as folders
therefore .gitignore needs some extra entries.
PR-URL: https://github.com/nodejs/node/pull/27484
Refs: https://github.com/nodejs/node/pull/27149
Reviewed-By: Refael Ackermann <refack@gmail.com>
R... | [
{
"path": ".gitignore",
"patch": "@@ -42,8 +42,8 @@ coverage/\n /out\n \n # various stuff that VC++ produces/uses and is not in /out\n-/Debug/\n-/Release/\n+/Debug\n+/Release\n !doc/blog/**\n *.sln\n !nodemsi.sln",
"additions": 2,
"deletions": 2,
"language": "Unknown"
}
] | 2019-04-29T19:53:37 |
huggingface/transformers | 4dd4a8fafed79e28187ba8f5913b1e0442097ea4 | 03538a80be2b96d11590c2aee4d0f7f70abcc017 | Fix GPT-2 Flash Attention 2 generation with left-padding (#41966)
* Fix GPT-2 Flash Attention 2 generation with left-padding
* repo consistency
* define is_causal in init
* fix | [
{
"path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py",
"patch": "@@ -121,7 +121,7 @@ def __init__(self, config, is_cross_attention=False, layer_idx=None):\n \n self.attn_dropout = nn.Dropout(config.attn_pdrop)\n self.resid_dropout = nn.Dropout(config.resid... | 2025-11-10T15:14:30 |
golang/go | c5fee935bbb8f02406eb653cfed550593755a1a4 | 529939072eef730c82333344f321972874758be8 | cmd/link: force eager binding when using plugins on darwin
When building/using plugins on darwin, we need to use flat
namespace so the same symbol from the main executable and the
plugin can be resolved to the same address. Apparently, when using
flat namespace the dynamic linker can hang at forkExec when
resolving a ... | [
{
"path": "misc/cgo/testplugin/plugin_test.go",
"patch": "@@ -289,3 +289,31 @@ func TestIssue44956(t *testing.T) {\n \tgoCmd(t, \"build\", \"-o\", \"issue44956.exe\", \"./issue44956/main.go\")\n \trun(t, \"./issue44956.exe\")\n }\n+\n+func TestForkExec(t *testing.T) {\n+\t// Issue 38824: importing the plugi... | 2021-12-16T19:33:13 |
vercel/next.js | ca32decdadf57efb6c6eca092e7303a039fdfd37 | afddb6ebdade616cdd7780273be4cd28d4509890 | Fix cookies().set missing in types (#49806)
Closes #49259. Note that even if we allow `.set` in the types, it will still error when called in wrong places (such as Server Components).
fix NEXT-1090 | [
{
"path": "packages/next/src/server/web/spec-extension/adapters/request-cookies.ts",
"patch": "@@ -12,7 +12,7 @@ import { ReflectAdapter } from './reflect'\n export class ReadonlyRequestCookiesError extends Error {\n constructor() {\n super(\n- 'ReadonlyRequestCookies cannot be modified. Read mor... | 2023-05-15T13:07:49 |
electron/electron | d8086b6532e48e27424e787576a69c7b12553c38 | e450d1586e5733471c25e474b2fa289c88d62011 | docs: fix minor typo
Replace `an` with `a` | [
{
"path": "docs/development/source-code-directory-structure.md",
"patch": "@@ -58,6 +58,6 @@ Electron\n * **node_modules** - Third party node modules used for building.\n * **out** - Temporary output directory of `ninja`.\n * **dist** - Temporary directory created by `script/create-dist.py` script\n- when ... | 2016-02-01T09:10:36 |
nodejs/node | bc0a33070f48eb2bba99990f367a455c2ca4fcf7 | e5c8be2bd0f34ea9b579164ac053fcd30b98d213 | test: refactor and deflake test-tls-sni-server-client
- Run all tests in parallel.
- Move `socket.end()` call to client.
- Use `common.mustCall()` and `common.mustNotCall()`.
Fixes: https://github.com/nodejs/node/issues/27219
Refs: https://github.com/nodejs/node/pull/27300
PR-URL: https://github.com/nodejs/node/pull... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -23,8 +23,6 @@ test-http2-client-upload-reject: PASS,FLAKY\n [$system==linux]\n \n [$system==macos]\n-# https://github.com/nodejs/node/issues/27219\n-test-tls-sni-server-client: PASS,FLAKY\n # https://github.com/nodejs/node/issues/26938\n test-tls-js-s... | 2019-04-26T14:11:14 |
huggingface/transformers | 03538a80be2b96d11590c2aee4d0f7f70abcc017 | 700c48a29f03bea03465b30e1240a650f905c2b5 | [`Attn Masks`] Non-vmap default for attention masks (#41852)
* atmpt 1
* fixup masking to work correctly with old torch
* few changes to make things a bit more cleaner
* oopsie
* fix integer overflow on bidirectional masks via indexing fn
* rm executorch workarounds --> still need to handle on sliding etc fns pro... | [
{
"path": "src/transformers/integrations/executorch.py",
"patch": "@@ -11,7 +11,6 @@\n # specific language governing permissions and limitations under the License.\n \n import logging\n-from collections.abc import Callable\n from typing import Optional\n \n import torch\n@@ -24,13 +23,7 @@\n StaticCache... | 2025-11-10T15:04:21 |
golang/go | 55a25aa6ca03143bef38be7f6d618df51c569a66 | 63077bfcf563e3f2ef96fa51203ed2fad71a371c | net: lengthen arbitrary SetDeadline timeout by a few orders of magnitude
The "someTimeout" constant in the net test is “just to test that
net.Conn implementations don't explode when their SetFooDeadline
methods are called”. It was set to 10 seconds, which is short enough
that it could actually matter on some platforms... | [
{
"path": "src/net/conn_test.go",
"patch": "@@ -17,7 +17,7 @@ import (\n // someTimeout is used just to test that net.Conn implementations\n // don't explode when their SetFooDeadline methods are called.\n // It isn't actually used for testing timeouts.\n-const someTimeout = 10 * time.Second\n+const someTim... | 2021-12-16T17:32:39 |
vercel/next.js | d6857b64cb3fe9775b72fc644fb66c1e2764c7ae | ab459921c64259923781cb205a0d95578a040947 | Re-throw module.error when instantiating runtime modules (vercel/turbo#4918)
### Description
Runtime modules can be executed multiple times within the same context.
However, when such a module encounters a runtime error during execution,
this error is cached in module.error and not properly re-thrown when the
module ... | [
{
"path": "crates/turbopack-dev/js/src/runtime.js",
"patch": "@@ -482,8 +482,9 @@ function instantiateModule(id, source) {\n break;\n }\n \n- runModuleExecutionHooks(module, (refresh) => {\n- try {\n+ // NOTE(alexkirsz) This can fail when the module encounters a runtime error.\n+ try {\n+ r... | 2023-05-15T08:27:38 |
huggingface/transformers | 700c48a29f03bea03465b30e1240a650f905c2b5 | 18a19dea61f41dbdf23425037f01a3e0a2855043 | fix qwen2vl/qwen3vl video processor temporal padding when num_frames%temporal_patch_size!=1 (#42083)
* qwen3vl video process padding video frames
* add two video processor test cases
* fix typo
* down test image size
* fix qwen2vl video processor t padding
* delete padding when num_frames < temporal_patch_size
*... | [
{
"path": "src/transformers/models/qwen2_vl/video_processing_qwen2_vl.py",
"patch": "@@ -232,9 +232,10 @@ def _preprocess(\n patches = stacked_videos\n \n # Check that videos have `num_frames` divisible by `temporal_patch_size`\n- if patches.shape[1] % temporal_patch_size ... | 2025-11-10T14:36:21 |
electron/electron | d2ec311c557412f1be20b79c6a902415b63e90c9 | 0aa0efa43957e7324f2e8b001e6256c72a35f77d | Fix type cast of sharedApplication | [
{
"path": "atom/browser/browser_mac.mm",
"patch": "@@ -103,7 +103,7 @@\n }\n \n void Browser::DockSetIcon(const gfx::Image& image) {\n- [[NSApplication sharedApplication]\n+ [[AtomApplication sharedApplication]\n setApplicationIconImage:image.AsNSImage()];\n }\n ",
"additions": 1,
"deletions... | 2016-02-01T08:06:09 |
nodejs/node | e5c8be2bd0f34ea9b579164ac053fcd30b98d213 | b884ceb518d5a63c1d5a85ca9b7e87b04e02ab4b | module: allow passing a directory to createRequireFromPath
Fixes: https://github.com/nodejs/node/issues/23710
PR-URL: https://github.com/nodejs/node/pull/23818
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Revie... | [
{
"path": "doc/api/modules.md",
"patch": "@@ -916,7 +916,7 @@ added: v10.12.0\n \n ```js\n const { createRequireFromPath } = require('module');\n-const requireUtil = createRequireFromPath('../src/utils');\n+const requireUtil = createRequireFromPath('../src/utils/');\n \n // Require `../src/utils/some-tool`\... | 2018-10-22T18:42:53 |
golang/go | 2e6e9df2c1242274b02b584c617947aeed39c398 | c3561dd346262414caff570c05f2403f9688aca0 | go/types, types2: use compiler error message for undefined operators
For #48712.
Change-Id: I1596fe8688f093e0e92cf5b8d5501aac8631324e
Reviewed-on: https://go-review.googlesource.com/c/go/+/372894
Trust: Robert Griesemer <gri@golang.org>
Run-TryBot: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Findley <rfindl... | [
{
"path": "src/cmd/compile/internal/types2/expr.go",
"patch": "@@ -73,11 +73,7 @@ func init() {\n func (check *Checker) op(m opPredicates, x *operand, op syntax.Operator) bool {\n \tif pred := m[op]; pred != nil {\n \t\tif !pred(x.typ) {\n-\t\t\tif check.conf.CompilerErrorMessages {\n-\t\t\t\tcheck.errorf(x... | 2021-12-16T18:50:34 |
huggingface/transformers | 18a19dea61f41dbdf23425037f01a3e0a2855043 | dba6aeb1e389416ebaae29f2351af71cdd6c82ac | 📝 docs(smolvlm): fix variable name in batch inference example (#42123)
Fixed incorrect variable name on line 162. The code creates a list called
'conversations' (plural) but incorrectly references 'conversation' (singular)
in the apply_chat_template call, which would cause a NameError.
This fixes the batch mixed med... | [
{
"path": "docs/source/en/model_doc/smolvlm.md",
"patch": "@@ -159,7 +159,7 @@ conversation3 = [\n \n conversations = [conversation1, conversation2, conversation3]\n inputs = processor.apply_chat_template(\n- conversation,\n+ conversations,\n add_generation_prompt=True,\n tokenize=True,\n ... | 2025-11-10T13:48:25 |
vercel/next.js | afddb6ebdade616cdd7780273be4cd28d4509890 | 5ccf71a418a1c59b2679c7f9a774cd7c7fdf33e5 | fix(image): preload should respect referrerPolicy (#49584)
This is a bug fix PR.
We should respect referrerPolicy when preloading a priority next/image
Reproduce codesandbox: https://codesandbox.io/p/sandbox/boring-fog-4o28oi
As you can see, the image still request with `referer` header although we have `referrerPol... | [
{
"path": "packages/next/src/client/image.tsx",
"patch": "@@ -970,6 +970,7 @@ const Image = forwardRef<HTMLImageElement | null, ImageProps>(\n imageSrcSet={imgAttributes.srcSet}\n imageSizes={imgAttributes.sizes}\n crossOrigin={rest.crossOrigin}\n+ refe... | 2023-05-13T20:33:07 |
rust-lang/rust | 46e9d2f9fc065e33cc54ccfa0e0e3c34376ebeaa | 36b21637e93b038453924d3c66821089e71d8baa | Reduce mismatched-lifetime-syntaxes suggestions to MaybeIncorrect
`cargo fix` does not have a way of distinguishing a suggestion with
multiple spans which should all be applied from multiple suggestions
where only one should be applied (see issue 53934). `cargo fix` only
works with `MachineApplicable` suggestions, so ... | [
{
"path": "compiler/rustc_lint/src/lints.rs",
"patch": "@@ -3261,7 +3261,7 @@ impl Subdiagnostic for MismatchedLifetimeSyntaxesSuggestion {\n diag.multipart_suggestion_with_style(\n fluent::lint_mismatched_lifetime_syntaxes_suggestion_implicit,\n sugge... | 2025-06-24T17:51:02 |
electron/electron | 745253a36943b613eb737b5bd85a2012dfbd4441 | 066c189249f6392945d8c8a2e7373df705d6e983 | Quick fix for the memory leak + docs | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -1043,13 +1043,13 @@ void WebContents::EndFrameSubscription() {\n }\n \n void WebContents::OnCursorChange(const content::WebCursor& cursor) {\n- content::WebCursor::CursorInfo* info = new content::WebCursor::CursorInfo();\n- cursor.GetCur... | 2016-02-01T06:17:58 |
nodejs/node | b884ceb518d5a63c1d5a85ca9b7e87b04e02ab4b | caf9d3c1d040c0bfd99e063770ea4d5e9f961f88 | fs: align fs.ReadStream buffer pool writes to 8-byte boundary
Prevents alignment issues when creating a typed array from a buffer.
Fixes: https://github.com/nodejs/node/issues/24817
PR-URL: https://github.com/nodejs/node/pull/24838
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@g... | [
{
"path": "lib/internal/fs/streams.js",
"patch": "@@ -51,6 +51,10 @@ function checkPosition(pos, name) {\n }\n }\n \n+function roundUpToMultipleOf8(n) {\n+ return (n + 7) & ~7; // Align to 8 byte boundary.\n+}\n+\n function ReadStream(path, options) {\n if (!(this instanceof ReadStream))\n return ... | 2019-04-01T00:26:06 |
huggingface/transformers | dba6aeb1e389416ebaae29f2351af71cdd6c82ac | 1c9077f66dc285dd32aa2410bed8acc680d64475 | fix continuous batching issues, extend ut cases to xpu (#41830)
* extend conrinuous batching cases to xpu
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
---------
Signed-off-by: Yao, Ma... | [
{
"path": "src/transformers/generation/continuous_batching/requests.py",
"patch": "@@ -19,6 +19,7 @@\n \n import torch\n \n+from ...utils import is_torch_xpu_available\n from ...utils.logging import logging\n from ...utils.metrics import traced\n \n@@ -35,6 +36,13 @@ def get_device_and_memory_breakdown() ->... | 2025-11-10T13:03:52 |
golang/go | c3561dd346262414caff570c05f2403f9688aca0 | 33a1a93a92804205eca89e2bb113ca68c1de5a4f | cmd/compile/internal/types2: better error message when using comparable in union
Fixes #49602.
Change-Id: I3499f8a485a2c8ec8afc74c5ef7b20d42c943a05
Reviewed-on: https://go-review.googlesource.com/c/go/+/372674
Trust: Robert Griesemer <gri@golang.org>
Run-TryBot: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert F... | [
{
"path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue49602.go2",
"patch": "@@ -0,0 +1,19 @@\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+type M interface ... | 2021-12-16T03:50:33 |
vercel/next.js | 3323702018b67e447560b07d4a9625d2ce1b4800 | c3f54ec4416be9c870d204675d384f4408494fbc | Rework client router filter handling (#49741)
This simplifies the implementation for the client router filter and
makes the error rate configuring more accurate. Additional tests haven't
been added as this is still a matter of probability and existing tests
cover the client router behavior.
Example scenario of f... | [
{
"path": "packages/next/src/lib/create-client-router-filter.ts",
"patch": "@@ -5,12 +5,10 @@ import { removeTrailingSlash } from '../shared/lib/router/utils/remove-trailing-\n import { Redirect } from './load-custom-routes'\n import { tryToParsePath } from './try-to-parse-path'\n \n-const POTENTIAL_ERROR_R... | 2023-05-13T19:09:57 |
nodejs/node | caf9d3c1d040c0bfd99e063770ea4d5e9f961f88 | f8cf9f96dd3c910370d493f9dc3eac83a590f4ec | test: make sure weak references are not GCed too early
This fixes flaky `util.inspect` tests by making sure that the
inspected WeakMap and WeakSet only contains objects that still have
other hard references. Otherwise the garbage collection could collect
these objects to early.
PR-URL: https://github.com/nodejs/node/... | [
{
"path": "test/parallel/test-util-inspect.js",
"patch": "@@ -1614,7 +1614,7 @@ util.inspect(process);\n assert.strict.equal(out, expected);\n }\n \n-{ // Test WeakMap\n+{ // Test WeakMap && WeakSet\n const obj = {};\n const arr = [];\n const weakMap = new WeakMap([[obj, arr], [arr, obj]]);\n@@ -163... | 2019-04-29T19:03:19 |
huggingface/transformers | 1c9077f66dc285dd32aa2410bed8acc680d64475 | 756742354b5cde1afadeba584a6c0e1577bf0148 | Fix base model prefix in VLMs (#42059)
* fix base model prefix
* it is now defined | [
{
"path": "src/transformers/models/cohere2_vision/modeling_cohere2_vision.py",
"patch": "@@ -129,7 +129,7 @@ class Cohere2VisionCausalLMOutputWithPast(ModelOutput):\n @auto_docstring\n class Cohere2VisionPreTrainedModel(PreTrainedModel):\n config: Cohere2VisionConfig\n- base_model_prefix = \"\"\n+ ... | 2025-11-10T11:59:41 |
golang/go | 33a1a93a92804205eca89e2bb113ca68c1de5a4f | 0c24038d22a83c0da5feb3d700b13445f47b24c9 | cmd/compile/internal/syntax: fix parsing of type parameter lists
The parser cannot distinguish a type parameter list of the form
[P *T ] or
[P (T)]
where T is not a type literal from an array length specification
P*T (product) or P(T) (constant-valued function call) and thus
interprets these forms as the start of ar... | [
{
"path": "src/cmd/compile/internal/syntax/parser.go",
"patch": "@@ -588,44 +588,81 @@ func (p *parser) typeDecl(group *Group) Decl {\n \td.Name = p.name()\n \tif p.allowGenerics() && p.tok == _Lbrack {\n \t\t// d.Name \"[\" ...\n-\t\t// array/slice or type parameter list\n+\t\t// array/slice type or type p... | 2021-12-09T04:32:29 |
vercel/next.js | 68b51415ec02741fa7918b258db6d252a791467c | cad6d3aa2208e82c26eee7ff81a0a47aeec39968 | chore: update examples to use draft mode (#49720)
This PR updates the examples to use Draft Mode introduced in [Next.js 13.4](https://nextjs.org/blog/next-13-4)
fix NEXT-1153 | [
{
"path": "examples/cms-agilitycms/pages/api/exit-preview.ts",
"patch": "@@ -4,8 +4,8 @@ export default async function handler(\n _req: NextApiRequest,\n res: NextApiResponse\n ) {\n- // Exit the current user from \"Preview Mode\". This function accepts no args.\n- res.clearPreviewData()\n+ // Exit D... | 2023-05-13T07:12:56 |
nodejs/node | 44161274821a2e81e7a5706c06cf8aa8bd2aa972 | 4206e7c2c4d8571029bf3c6e194f979f24910498 | buffer,errors: improve bigint, big numbers and more
This improves the error message from `ERR_OUT_OF_RANGE` by closer
inspecting the value and logging numbers above 2 ** 32 by adding
commas to the output for integer and bigint. BigInt is now also
marked if used.
Buffer errors also format the range as 2 ** n instead o... | [
{
"path": "lib/internal/buffer.js",
"patch": "@@ -43,7 +43,20 @@ function checkBounds(buf, offset, byteLength) {\n \n function checkInt(value, min, max, buf, offset, byteLength) {\n if (value > max || value < min) {\n- throw new ERR_OUT_OF_RANGE('value', `>= ${min} and <= ${max}`, value);\n+ // esli... | 2019-04-14T19:34:26 |
golang/go | 1387b5e91d76ba6727a7434c06f7c368d6c53d5c | b1a53ece68d46e4fb59c74d2bc529060861f5dbf | cmd/compile: only avoid escaping package paths for "go.shape"
We have code that intends to avoid escaping the package path for
built-in packages. But it is hard to determine which packages are
built-in from a general rule, and we really only want to avoid escaping
for the "go.shape" package (since that gives ugly shap... | [
{
"path": "src/cmd/compile/internal/types/pkg.go",
"patch": "@@ -9,7 +9,6 @@ import (\n \t\"cmd/internal/objabi\"\n \t\"fmt\"\n \t\"sort\"\n-\t\"strings\"\n \t\"sync\"\n )\n \n@@ -49,9 +48,11 @@ func NewPkg(path, name string) *Pkg {\n \tp := new(Pkg)\n \tp.Path = path\n \tp.Name = name\n-\tif strings.HasPre... | 2021-12-16T21:24:40 |
vercel/next.js | cad6d3aa2208e82c26eee7ff81a0a47aeec39968 | 16150a3e3399f12abae51bdd681d0ddc53f93d36 | refactor(next-core): deprecate custom_ecmascript_transforms (#49629)
<!-- 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": "Cargo.lock",
"patch": "@@ -400,7 +400,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-230511.2#731d27d8495c63b856a15e0d714b8ae008cecd40\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-05-12T19:43:25 |
nodejs/node | 5f6848943e04c58340e4dd815579d1906010b6cc | e1c838e7aa6c6dfec8efdecdaa2cc5559d3eda2c | Revert "test: skip test-cpu-prof in debug builds with code cache"
Skipping the test is not needed now that the underlying cause
has been addressed in V8.
This reverts commit b66f01d9037a120a8aad624c57e769fb418ccd9c.
Refs: https://github.com/nodejs/node/pull/27423
PR-URL: https://github.com/nodejs/node/pull/27469
Re... | [
{
"path": "test/sequential/test-cpu-prof.js",
"patch": "@@ -3,12 +3,6 @@\n // This tests that --cpu-prof, --cpu-prof-dir and --cpu-prof-name works.\n \n const common = require('../common');\n-if (process.features.debug && process.features.cached_builtins) {\n- // FIXME(joyeecheung): the profiler crashes wh... | 2019-04-28T23:35:07 |
electron/electron | 61e0219e9124e409916ccac6a6118407edac4854 | 0c9174bc7ca28e6e879704f69a5c7d24bbe674bb | Added documentation, restructured the files to fit better with electron's style and fixed a typo in keyboard_util's name. | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -27,6 +27,7 @@\n #include \"atom/common/native_mate_converters/image_converter.h\"\n #include \"atom/common/native_mate_converters/string16_converter.h\"\n #include \"atom/common/native_mate_converters/value_converter.h\"\n+#include \"atom/... | 2016-01-31T01:27:14 |
golang/go | ea26ce7cec7ed19b7e859dbb0e7e4354a9679911 | 1d3a5b4aeac319acd51b32e1d47a9c316d9ce2aa | cmd/go: examine dependencies of main modules in workspace mode
To make sure that we properly pull in everything in all, because
different main modules can interfere with each others' pruning.
Fixes #49763
Change-Id: I0756993d8ae9919ccb27ec460d579d348c38ec3b
Reviewed-on: https://go-review.googlesource.com/c/go/+/37066... | [
{
"path": "src/cmd/go/internal/modload/buildlist.go",
"patch": "@@ -386,6 +386,52 @@ func readModGraph(ctx context.Context, pruning modPruning, roots []module.Versio\n \t}\n \t<-loadQueue.Idle()\n \n+\t// Reload any dependencies of the main modules which are not\n+\t// at their selected versions at workspac... | 2021-12-09T19:52:49 |
huggingface/transformers | 756742354b5cde1afadeba584a6c0e1577bf0148 | 926c37aaf4984d054559c18681c16b67bdfe0a8d | [Bugfix] fix qwen3vl expand generation with video (#42089)
fix qwen3vl expand generation with video and add | [
{
"path": "src/transformers/models/qwen3_vl/modeling_qwen3_vl.py",
"patch": "@@ -1535,15 +1535,16 @@ def _expand_inputs_for_generation(\n input_ids: Optional[torch.LongTensor] = None,\n **model_kwargs,\n ) -> tuple[torch.LongTensor, dict[str, Any]]:\n- # Overwritten -- Support for... | 2025-11-10T09:06:06 |
vercel/next.js | 16150a3e3399f12abae51bdd681d0ddc53f93d36 | 4bc1bc3ea0ecc132d1e49c1e53c6e7746a305566 | refactor(scripts): fix clippy errors (#49719)
<!-- 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
... | [
{
"path": "scripts/run-for-change.js",
"patch": "@@ -41,6 +41,7 @@ const CHANGE_ITEM_GROUPS = {\n 'packages/next-swc',\n 'scripts/normalize-version-bump.js',\n 'test/integration/create-next-app',\n+ 'scripts/send-trace-to-jaeger',\n ],\n }\n ",
"additions": 1,
"deletions": 0,
"l... | 2023-05-12T19:14:30 |
nodejs/node | ea46db664285869fca7bf0d464d814625aae3997 | dce8806c9d6eadcdb3be3940efaf061c017e9a0e | 2019-04-30, Version 11.15.0 (Current)
Notable changes:
* deps: add s390 asm rules for OpenSSL-1.1.1 (Shigeki Ohtsu) [#19794](https://github.com/nodejs/node/pull/19794)
* src: add .code and SSL specific error properties (Sam Roberts) [#25093](https://github.com/nodejs/node/pull/25093)
* tls:
* add --tls-min-v1.2 CLI... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -34,7 +34,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V12.md#12.0.0\">12.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V11.md#11.14.0\">11.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V11.md#11.15.0\">11.... | 2019-04-19T18:18:38 |
electron/electron | 0aa0efa43957e7324f2e8b001e6256c72a35f77d | 9d8e23c8229aa31fb4ece7bae5e0857696a8e075 | Do not print warning for FILE_ERROR_NOT_FOUND
Close #4282. | [
{
"path": "atom/common/asar/archive.cc",
"patch": "@@ -140,7 +140,10 @@ Archive::~Archive() {\n \n bool Archive::Init() {\n if (!file_.IsValid()) {\n- LOG(ERROR) << base::File::ErrorToString(file_.error_details());\n+ if (file_.error_details() != base::File::FILE_ERROR_NOT_FOUND) {\n+ LOG(WARNI... | 2016-01-30T12:48:07 |
golang/go | 1d3a5b4aeac319acd51b32e1d47a9c316d9ce2aa | 7f2314530e7cb4a11c6df4f7bd51187f5cffe2a5 | reflect: fix name of type parameter
Fixes #50208
Change-Id: Ib0aff56341adb98ff6831c5badd1603ebf002b79
Reviewed-on: https://go-review.googlesource.com/c/go/+/372774
Reviewed-by: Keith Randall <khr@golang.org>
Run-TryBot: Keith Randall <khr@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Trust: Cherry Mui <c... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -7768,3 +7768,17 @@ func TestMethodCallValueCodePtr(t *testing.T) {\n \t\tt.Errorf(\"methodValueCall code pointer mismatched, want: %v, got: %v\", want, got)\n \t}\n }\n+\n+type A struct{}\n+type B[T any] struct{}\n+\n+func TestIssue50208(t *testing.T) {\n+\... | 2021-12-16T14:18:26 |
huggingface/transformers | f5630f9b1afb01db38219e574e641d455edcab4e | e8a6eb3304033fdd9346fe3b3293309fe50de238 | Fix return metadata checking logic (#42108)
fix return_metadata_checking_logic | [
{
"path": "src/transformers/models/glm4v/modular_glm4v.py",
"patch": "@@ -1605,7 +1605,7 @@ def __call__(\n if videos is not None:\n videos_inputs = self.video_processor(videos=videos, **output_kwargs[\"videos_kwargs\"])\n # If user has not requested video metadata, pop it\n-... | 2025-11-10T08:23:43 |
nodejs/node | e939b8f13b311fcc39d7806537a5c768f37bb0d0 | f37e40af2b34990540337cfa2932650a584d413c | repl: handle stage-3 language features properly
This adds stage-3 language features to acorn so that the REPL is
able to parse these features properly. Otherwise these would cause
SyntaxErrors.
PR-URL: https://github.com/nodejs/node/pull/27400
Fixes: https://github.com/nodejs/node/issues/27391
Fixes: https://github.c... | [
{
"path": "lib/internal/repl/utils.js",
"patch": "@@ -1,13 +1,28 @@\n 'use strict';\n \n const acorn = require('internal/deps/acorn/acorn/dist/acorn');\n+const privateMethods =\n+ require('internal/deps/acorn-plugins/acorn-private-methods/index');\n+const bigInt = require('internal/deps/acorn-plugins/acorn... | 2019-04-24T21:56:35 |
vercel/next.js | ab459921c64259923781cb205a0d95578a040947 | 78f4bdb507937f1acf65684cbecba45db92095dd | make turbopack respect the order of extensions from ResolveOptions (vercel/turbo#4888)
### Description
It would probably be a bit more efficient to split it up in
`read_matches`, but getting that to work requires a bit more work to
sort the results because it recursively calls itself with the same
pattern
fix W... | [
{
"path": "crates/turbopack-core/src/resolve/mod.rs",
"patch": "@@ -758,13 +758,20 @@ async fn resolve_internal(\n path.push(ext.clone().into());\n patterns.push(path);\n }\n- let new_pat = Pattern::alternatives(patterns);\n \n- resolve_inter... | 2023-05-12T19:10:34 |
golang/go | 7f2314530e7cb4a11c6df4f7bd51187f5cffe2a5 | d107aa2cd1fdc596b9275a127e6c35cc5f8d32bb | cmd/compile: don't re-typecheck while importing
The imported code is already typechecked. NodAddrAt typechecks its
argument, which is unnecessary here and leads to errors when
typechecking unexported field references in other packages' code.
Mark the node is question as already typechecked, so we don't
retypecheck it... | [
{
"path": "src/cmd/compile/internal/typecheck/iimport.go",
"patch": "@@ -1630,11 +1630,16 @@ func (r *importReader) node() ir.Node {\n \t\treturn n\n \n \tcase ir.OADDR, ir.OPTRLIT:\n-\t\tn := NodAddrAt(r.pos(), r.expr())\n \t\tif go117ExportTypes {\n+\t\t\tpos := r.pos()\n+\t\t\texpr := r.expr()\n+\t\t\tex... | 2021-12-14T04:11:07 |
huggingface/transformers | e8a6eb3304033fdd9346fe3b3293309fe50de238 | 370fc65ee594b82aafcb971ce5a0d60ca0851954 | Revert "permissions worflows fix" (#42110)
Revert "permissions worflows fix (#42080)"
This reverts commit 08f52e2178a0bada437da02ed7c1395ae54b3309. | [
{
"path": ".github/workflows/check-workflow-permissions.yml",
"patch": "@@ -20,4 +20,4 @@ jobs:\n contents: read\n with:\n workflow_name: ${{ inputs.workflow_name }}\n- run_count: ${{ fromJSON(inputs.run_count) }}\n+ run_count: ${{ fromJSON(inputs.run_count) }}\n\\ No newline at en... | 2025-11-08T15:21:02 |
rust-lang/rust | 904652b2d05d967deadf201fc35e8343a822c7a6 | 36b21637e93b038453924d3c66821089e71d8baa | Suggest cloning `Arc` moved into closure
```
error[E0382]: borrow of moved value: `x`
--> $DIR/moves-based-on-type-capture-clause-bad.rs:9:20
|
LL | let x = "Hello world!".to_string();
| - move occurs because `x` has type `String`, which does not implement the `Copy` trait
LL | thread::spawn(mo... | [
{
"path": "compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs",
"patch": "@@ -518,11 +518,11 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n } = move_spans\n && can_suggest_clone\n {\n- self.suggest_cloning(err, ty, e... | 2024-05-01T20:46:06 |
nodejs/node | 04b7c007d6e95303953bab3f9bac63f026f283cb | 72c6ea26830025c9b7cecb2b1dfd1002481d93ad | assert: use new language features
This adds new language features to acorn. Otherwise BigInt and other
input would not be parsed correct and would not result in nice error
messages when using simple assert.
PR-URL: https://github.com/nodejs/node/pull/27400
Refs: https://github.com/nodejs/node/issues/27391
Refs: https... | [
{
"path": "lib/assert.js",
"patch": "@@ -203,8 +203,27 @@ function getCode(fd, line, column) {\n function parseCode(code, offset) {\n // Lazy load acorn.\n if (parseExpressionAt === undefined) {\n- ({ parseExpressionAt } = require('internal/deps/acorn/acorn/dist/acorn'));\n+ const acorn = require(... | 2019-04-24T21:54:42 |
electron/electron | 3f68b2f22780e830296602dc9feaac88aed80e8d | 5d16257c2d2ed70b74583bd9bbf9f05e73ef994d | Check whether sender is destroyed before calling sender.send
Fix #4279. | [
{
"path": "atom/browser/lib/rpc-server.js",
"patch": "@@ -162,12 +162,12 @@ var unwrapArgs = function(sender, args) {\n });\n \n let callIntoRenderer = function(...args) {\n- if (rendererReleased)\n+ if (rendererReleased || sender.isDestroyed())\n throw new Erro... | 2016-01-30T04:58:21 |
vercel/next.js | 4bc1bc3ea0ecc132d1e49c1e53c6e7746a305566 | a9e204ca8cd0879ee38f9ef9c3fd06bb531b6de3 | refactor(scripts): apply fmt (#49716)
<!-- 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
### I... | [
{
"path": "scripts/send-trace-to-jaeger/src/main.rs",
"patch": "@@ -1,9 +1,12 @@\n+use std::{\n+ env::args,\n+ fs::File,\n+ io::{self, BufRead},\n+ path::Path,\n+};\n+\n use reqwest::blocking::Client;\n use serde_json::{Map, Number, Value};\n-use std::env::args;\n-use std::fs::File;\n-use std::i... | 2023-05-12T18:05:04 |
huggingface/transformers | 370fc65ee594b82aafcb971ce5a0d60ca0851954 | f065e402fc939758eabcfe182f34543258ac94ca | add xpu support in test_modeling_janus.py::JanusIntegrationTest::test… (#41986)
* add xpu support in test_modeling_janus.py::JanusIntegrationTest::test_model_generate_images
Signed-off-by: Wang, Yi A <yi.a.wang@intel.com>
* fix ci issue
Signed-off-by: Wang, Yi A <yi.a.wang@intel.com>
---------
Signed-off-by: Wang... | [
{
"path": "src/transformers/models/janus/modeling_janus.py",
"patch": "@@ -1419,8 +1419,8 @@ def generate(\n model_inputs = self.prepare_inputs_for_generation(\n inputs_embeds=inputs_embeds, input_ids=input_tokens, **model_kwargs\n )\n-\n- model_inputs[\"at... | 2025-11-08T13:17:21 |
golang/go | d107aa2cd1fdc596b9275a127e6c35cc5f8d32bb | 6e7c6912186b6c91fff332ef473409a8e960c519 | cmd/compile: upgrade ssa to do (int or float) -> complex
Generic instantiations can produce conversions from constant
literal ints or floats to complex values. We could constant literals
during instantiation, but it is just as easy to upgrade the code
generator to do the conversions.
Fixes #50193
Change-Id: I24bdc09... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -2446,6 +2446,38 @@ func (s *state) conv(n ir.Node, v *ssa.Value, ft, tt *types.Type) *ssa.Value {\n \t\treturn s.newValue1(op, tt, v)\n \t}\n \n+\tif ft.IsComplex() && tt.IsComplex() {\n+\t\tvar op ssa.Op\n+\t\tif ft.Size() == tt.Size() {\n+\... | 2021-12-15T21:04:54 |
rust-lang/rust | d82fb1e72df42c8a18e354f6a9cc778d19055a10 | a56bf51d823f1e231797a55043157ab5f7e75296 | Emit a single error when importing a path with `_`
When encountering `use _;`, `use _::*'` or similar, do not emit two errors for that single mistake. This also side-steps the issue of resolve errors suggesting adding a crate named `_` to `Cargo.toml`. | [
{
"path": "compiler/rustc_resolve/src/imports.rs",
"patch": "@@ -608,7 +608,9 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {\n }\n }\n \n- self.throw_unresolved_import_error(errors, glob_error);\n+ if !errors.is_empty() {\n+ self.throw_unresolved_import_error(errors, g... | 2025-06-20T19:20:16 |
nodejs/node | 1001433e8627ef4c8878049ae7a8d68311144e2d | cb414306684ae531af09d84de54643afeb4d8b27 | test: add mustCall for parallel/test-net-connect-paused-connection
Add common.mustCall test on net.createServer callback and listen
callback in the parallel/test-net-connect-paused-connection
remove the mustCall of net.createServer callback
PR-URL: https://github.com/nodejs/node/pull/27463
Reviewed-By: Yongsheng Zha... | [
{
"path": "test/parallel/test-net-connect-paused-connection.js",
"patch": "@@ -26,8 +26,8 @@ const net = require('net');\n \n net.createServer(function(conn) {\n conn.unref();\n-}).listen(0, function() {\n+}).listen(0, common.mustCall(function() {\n net.connect(this.address().port, 'localhost').pause();... | 2019-04-28T09:05:52 |
electron/electron | 5d16257c2d2ed70b74583bd9bbf9f05e73ef994d | 899294a0408b950495906e8297084617bd412319 | Fix "Object has been destroyed" error in "page-title-updated" event
Close #4249. | [
{
"path": "atom/browser/api/lib/browser-window.js",
"patch": "@@ -55,14 +55,16 @@ BrowserWindow.prototype._init = function() {\n })(this));\n \n // Change window title to page title.\n- this.webContents.on('page-title-updated', (function(_this) {\n- return function(event, title) {\n- _this.emit... | 2016-01-30T04:20:28 |
golang/go | 07ed86c57bb2aa5656ad7ab8df9c8b5faf089cbd | 4cda05d41a8585c79bfe00f867ed3513672e69fa | cmd/compile/internal/types2: record types for union subexpressions
This is a port of CL 371757 from go/types to types2, with
minor adjustments for different error handling and AST.
It also names the added API test cases more consistently.
The same renaming was applied to the respective go/types
file.
Updates #50093
... | [
{
"path": "src/cmd/compile/internal/types2/api.go",
"patch": "@@ -202,12 +202,6 @@ type Info struct {\n \t// identifier z in a variable declaration 'var z int' is found\n \t// only in the Defs map, and identifiers denoting packages in\n \t// qualified identifiers are collected in the Uses map.\n-\t//\n-\t//... | 2021-12-15T19:42:58 |
rust-lang/rust | ba4253b286fe6eb49131396a33b11c7dcea1d162 | 76118ec84ee5c1e865d10cd5d99c02878dd56ade | Fix capacity overflow in `single_match` with deref patterns | [
{
"path": "clippy_lints/src/matches/single_match.rs",
"patch": "@@ -152,21 +152,26 @@ fn report_single_pattern(\n }) if lit.node.is_str() || lit.node.is_bytestr() => pat_ref_count + 1,\n _ => pat_ref_count,\n };\n- // References are only implicitly added to the pattern... | 2025-06-24T15:35:29 |
vercel/next.js | a0edc92bbcb5b15c11616affb5fe334f2854f46d | 684abdc5ce9db7457c7661a49ae2d11603049ea2 | Optimize trace span relationships (#49697)
## What?
- Ensures `add-entry` falls under `make`
- Ensures the rootmost module falls under `add-entry`, which is the
entry that caused the module to be compiled
- Ensures `seal` related spans have the `seal` span as parent
- Adds some additional spans under `seal`.
... | [
{
"path": ".vscode/launch.json",
"patch": "@@ -5,7 +5,7 @@\n \"version\": \"0.2.0\",\n \"configurations\": [\n {\n- \"name\": \"Launch app-dir development\",\n+ \"name\": \"Launch test/e2e/app-dir/app development\",\n \"type\": \"node\",\n \"request\": \"launch\",\n \"cwd... | 2023-05-12T11:01:07 |
nodejs/node | 578b31e14b6f80e173c6b90b0a9e60b9a14dfca6 | 0fbd852578b11006b2c5c127fefcc879ef7b0f80 | test: add common.mustCall in test-http-abort-client.js
PR-URL: https://github.com/nodejs/node/pull/27449
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Colin ... | [
{
"path": "test/parallel/test-http-abort-client.js",
"patch": "@@ -24,11 +24,11 @@ const common = require('../common');\n const http = require('http');\n \n let serverRes;\n-const server = http.Server((req, res) => {\n+const server = http.Server(common.mustCall((req, res) => {\n serverRes = res;\n res.w... | 2019-04-28T08:45:58 |
huggingface/transformers | f065e402fc939758eabcfe182f34543258ac94ca | 91d250efb12fd051481b90442597cff0c3a3825e | [v5] 🚨Refactor subprocessors handling in processors (#41633)
* remove attributes and add all missing sub processors to their auto classes
* remove all mentions of .attributes
* cleanup
* fix processor tests
* fix modular
* remove last attributes
* fixup
* fixes after merge
* fix wrong tokenizer in auto floren... | [
{
"path": "src/transformers/models/align/processing_align.py",
"patch": "@@ -59,9 +59,6 @@ class AlignProcessor(ProcessorMixin):\n \n \"\"\"\n \n- attributes = [\"image_processor\", \"tokenizer\"]\n- image_processor_class = \"EfficientNetImageProcessor\"\n- tokenizer_class = (\"BertTokenizer\",... | 2025-11-07T17:57:33 |
electron/electron | 899294a0408b950495906e8297084617bd412319 | d89bda5c68e7e2e5237b25c11f8679333017b612 | win: Don't close the handle since we already closed the fd
Fix #4266. | [
{
"path": "atom/common/asar/archive.cc",
"patch": "@@ -130,8 +130,11 @@ Archive::Archive(const base::FilePath& path)\n \n Archive::~Archive() {\n #if defined(OS_WIN)\n- if (fd_ != -1)\n+ if (fd_ != -1) {\n _close(fd_);\n+ // Don't close the handle since we already closed the fd.\n+ file_.TakePla... | 2016-01-30T03:47:22 |
golang/go | 4cda05d41a8585c79bfe00f867ed3513672e69fa | bc0aba971705722b6798746b2003908166ee007b | cmd/compile/internal/types2: externalize union type sets
This is a port of CL 371756 from go/types to types2 with
minor adjustments due to different error handling or AST.
Updates #50093
Change-Id: Iab6a4634f8fc917bf99df439d31098624085f52a
Reviewed-on: https://go-review.googlesource.com/c/go/+/372474
Trust: Robert G... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -129,6 +129,7 @@ type Checker struct {\n \timports []*PkgName // list of imported packages\n \tdotImportMap map[dotImportKey]*PkgName // maps dot-imported objects to the package they were dot-imported through\n \tre... | 2021-12-15T19:24:56 |
vercel/next.js | 684abdc5ce9db7457c7661a49ae2d11603049ea2 | 328cc8ffa88571bbdf50fa72bbd605f0e0c62891 | Add trace-to-jaeger to workspace (#49692)
## What?
I wasn't able to `cargo run` in trace-to-jaeger because it wasn't in the
workspace.
<!-- 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 ... | [
{
"path": "Cargo.lock",
"patch": "@@ -4649,6 +4649,14 @@ dependencies = [\n \"pest\",\n ]\n \n+[[package]]\n+name = \"send-trace-to-jaeger\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"reqwest\",\n+ \"serde_json\",\n+]\n+\n [[package]]\n name = \"sentry\"\n version = \"0.27.0\"",
"additions": 8,
... | 2023-05-12T10:28:41 |
huggingface/transformers | 7cb42801121ecbe96ebc78d3549686fe18f1955b | 144c8ce2809a2e21914017652700e1ecb450501e | Fix Auto classes to support dynamically registered processors (#41865) | [
{
"path": "src/transformers/models/auto/image_processing_auto.py",
"patch": "@@ -524,10 +524,9 @@ def from_pretrained(cls, pretrained_model_name_or_path, *inputs, **kwargs):\n )\n use_fast = False\n if use_fast:\n- for image_processors in IMAGE_PROC... | 2025-11-07T17:31:36 |
nodejs/node | 0fbd852578b11006b2c5c127fefcc879ef7b0f80 | f4f937b296f62c11dfbd3a8f92abac81049b629e | test: add mustCall to http-abort-queued test
PR-URL: https://github.com/nodejs/node/pull/27447
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Colin Ihrig <cji... | [
{
"path": "test/parallel/test-http-abort-queued.js",
"patch": "@@ -26,7 +26,7 @@ const http = require('http');\n \n let complete;\n \n-const server = http.createServer((req, res) => {\n+const server = http.createServer(common.mustCall((req, res) => {\n // We should not see the queued /thatotherone request... | 2019-04-28T08:48:48 |
rust-lang/rust | 18e008b98177e1ba3bda6038d7386858792b0a21 | 0b648f81afd678be9bda1f8b7a7c48728e7fe603 | ci: Fix cancel parallel jobs on windows | [
{
"path": "src/tools/rust-analyzer/.github/workflows/ci.yaml",
"patch": "@@ -17,6 +17,10 @@ env:\n RUST_BACKTRACE: short\n RUSTUP_MAX_RETRIES: 10\n \n+defaults:\n+ run:\n+ shell: bash\n+\n jobs:\n changes:\n runs-on: ubuntu-latest",
"additions": 4,
"deletions": 0,
"language": "YAML... | 2025-06-24T13:24:46 |
golang/go | bc0aba971705722b6798746b2003908166ee007b | 83fc0978e5d953ed058ca30bcfb8ddbc9ebdd88d | cmd/compile: correct type identity comparison with "any"
The builtin "any" type should only be identical to an unnamed empty
interface type, not a defined empty interface type.
Fixes #50169.
Change-Id: Ie5bb88868497cb795de1fd0276133ba9812edfe4
Reviewed-on: https://go-review.googlesource.com/c/go/+/372217
Trust: Cher... | [
{
"path": "src/cmd/compile/internal/types/identity.go",
"patch": "@@ -59,12 +59,13 @@ func identical(t1, t2 *Type, flags int, assumedEqual map[typePair]struct{}) bool\n \t\tcase TINT32:\n \t\t\treturn (t1 == Types[TINT32] || t1 == RuneType) && (t2 == Types[TINT32] || t2 == RuneType)\n \t\tcase TINTER:\n-\t\... | 2021-12-15T17:34:34 |
huggingface/transformers | 144c8ce2809a2e21914017652700e1ecb450501e | 069684ef87a8cc308647a547c8fc728b6249ab10 | Fix modular docstring for Mixtral (#42041)
* Fix modular docstring for Mixtral
* fixes all docstrings | [
{
"path": "src/transformers/models/deepseek_v2/modeling_deepseek_v2.py",
"patch": "@@ -59,8 +59,8 @@ def forward(\n \"\"\"\n Args:\n hidden_states: (batch_size * sequence_length, hidden_dim)\n- selected_experts: (batch_size * sequence_length, top_k)\n- routi... | 2025-11-07T16:49:50 |
vercel/next.js | 6cc92ff8897c1860b3e0d9c7fcf064130aeabbcc | fdc931c367f39f7c4515f0f948058bfd8c89ac8a | Apply pending transition to context when computing resolve options (vercel/turbo#4901)
### Description
This fixes an issue where references to assets imported with transition
annotations would not be resolved according to the proper resolve
options context of the transition, but that of the previous asset
context ins... | [
{
"path": "crates/turbopack/src/lib.rs",
"patch": "@@ -377,14 +377,20 @@ impl AssetContext for ModuleAssetContext {\n \n #[turbo_tasks::function]\n async fn resolve_options(\n- &self,\n+ self_vc: ModuleAssetContextVc,\n origin_path: FileSystemPathVc,\n _reference_type: ... | 2023-05-12T08:29:27 |
nodejs/node | 034a568502145a056ebe43f59b7d0e72eb04e3aa | 92ab466b74c37a22ea8e378b144391789d2c920c | test: add mustCall in test-fs-readfilesync-pipe-large.js
PR-URL: https://github.com/nodejs/node/pull/27458
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anto Arav... | [
{
"path": "test/parallel/test-fs-readfilesync-pipe-large.js",
"patch": "@@ -26,12 +26,16 @@ const exec = require('child_process').exec;\n const f = JSON.stringify(__filename);\n const node = JSON.stringify(process.execPath);\n const cmd = `cat ${filename} | ${node} ${f} child`;\n-exec(cmd, { maxBuffer: 1000... | 2019-04-28T08:56:13 |
electron/electron | 0169f31feba407ccd8e18b5079db6c3940fc784e | 30b35644f60294c8cf2d0825ad75c704cb46b623 | fix bullets formatting in documentation | [
{
"path": "docs/api/session.md",
"patch": "@@ -213,6 +213,7 @@ proxyURL = [<proxyScheme>\"://\"]<proxyHost>[\":\"<proxyPort>]\n ```\n \n For example:\n+\n * `http=foopy:80;ftp=foopy2` - Use HTTP proxy `foopy:80` for `http://` URLs, and\n HTTP proxy `foopy2:80` for `ftp://` URLs.\n * `foopy:80` - Use HTTP ... | 2016-01-29T19:10:18 |
golang/go | d5fefbb4980aaf46ac25344615c660136c365b9f | 567b177949d0819169c10ba6a07ff60554eb5285 | misc/cgo/testshared: pass -x flag only to commands supporting it
Running testshared with the -testx flag leads to:
./testshared.test -testx -testwork
+ mkdir -p /tmp/shared_test125221103
shared_test.go:79: executing go env -x GOROOT failed exit status 2:
flag provided but not defined: -x
usage: go env [-json] [-u] [-... | [
{
"path": "misc/cgo/testshared/shared_test.go",
"patch": "@@ -56,7 +56,7 @@ func runWithEnv(t *testing.T, msg string, env []string, args ...string) {\n // t.Fatalf if the command fails.\n func goCmd(t *testing.T, args ...string) string {\n \tnewargs := []string{args[0]}\n-\tif *testX {\n+\tif *testX && args... | 2021-12-13T12:28:15 |
huggingface/transformers | 069684ef87a8cc308647a547c8fc728b6249ab10 | a127710b3a91b3d323b27be8e06ddf507b009b87 | feat(ci): add continuous batching to benchmarks (#41916)
* feat(ci): add continuous batching to benchmarks
* refactor(ci): PR comments
* refactor(cb): when stopping, block by default
* fix(benchmarks): `stream` -> `streaming`
* fix(benchmarks): invalid configuration when cb has attn_impl == sdpa
* tests(cb): fix ... | [
{
"path": ".github/workflows/benchmark.yml",
"patch": "@@ -32,16 +32,16 @@ jobs:\n options: --gpus all --privileged --ipc host\r\n steps:\r\n - name: Get repo\r\n- uses: actions/checkout@v4\r\n+ uses: actions/checkout@v5\r\n with:\r\n- ref: ${{ github.event.pul... | 2025-11-07T16:23:27 |
vercel/next.js | 0f332055d43fa97acbb52d7a9c187850bc08073f | ec6cdb3987964539dac5403016021a48c97e0eae | fix: Standalone node http server starts accepting requests before next handler is ready (#49548)
### Fixing a bug
Fixes #49536
Fixes #49338
### What?
Starting on next.js 13.4.0, the `server.js` file created by the
standalone output is incorrect because it does not wait until the Next
handler is ready before ... | [
{
"path": "packages/next/src/build/utils.ts",
"patch": "@@ -1939,8 +1939,6 @@ if (!process.env.NEXT_MANUAL_SIG_HANDLE) {\n process.on('SIGINT', () => process.exit(0))\n }\n \n-let handler\n-\n const currentPort = parseInt(process.env.PORT, 10) || 3000\n const hostname = process.env.HOSTNAME || 'localhost'... | 2023-05-11T17:36:40 |
rust-lang/rust | 943d37958b377d4500345898cdb86d87da28d2e5 | e4b9d0141fdd210fcceebd2b67f7be113401c461 | Error on invalid signatures for interrupt ABIs | [
{
"path": "Cargo.lock",
"patch": "@@ -3316,6 +3316,7 @@ dependencies = [\n \"rustc_parse\",\n \"rustc_session\",\n \"rustc_span\",\n+ \"rustc_target\",\n \"thin-vec\",\n ]\n ",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "compiler/rustc_ast_passes/Cargo.toml",
... | 2025-06-16T20:31:52 |
nodejs/node | a565853dddcf03cd33cc826cda5452fe75144055 | 723d5c058fa180684df13bd2a83bbf3ca6201957 | test: add test of policy about parse error
PR-URL: https://github.com/nodejs/node/pull/26873
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "test/parallel/test-policy-parse-integrity.js",
"patch": "@@ -0,0 +1,86 @@\n+'use strict';\n+\n+const common = require('../common');\n+if (!common.hasCrypto) common.skip('missing crypto');\n+\n+const tmpdir = require('../common/tmpdir');\n+const assert = require('assert');\n+const { spawnSync } = ... | 2019-03-23T00:27:53 |
golang/go | 567b177949d0819169c10ba6a07ff60554eb5285 | b1c7703f266a2d72f80f3b55eff822ad7980ce31 | all: fix typo in comment
Remove duplicate 'the'
Change-Id: I3ed81c8d9c488662387e45580a3bcd462448ba44
GitHub-Last-Rev: 86443993b9b58c6fce4e09e283604c32ccc44cec
GitHub-Pull-Request: golang/go#50017
Reviewed-on: https://go-review.googlesource.com/c/go/+/372394
Reviewed-by: Robert Griesemer <gri@golang.org>
Run-TryBot: R... | [
{
"path": "src/bufio/bufio_test.go",
"patch": "@@ -657,7 +657,7 @@ func TestWriterAppend(t *testing.T) {\n \t\t}\n \n \t\t// While not recommended, it is valid to append to a shifted buffer.\n-\t\t// This forces Write to copy the the input.\n+\t\t// This forces Write to copy the input.\n \t\tif rn.Intn(8) =... | 2021-12-15T18:52:21 |
electron/electron | a26cbf640c74ffdb2cebb1f05c76247945bfd5ae | 367590a32f1abc27b215c1913ad1f15f57eb8fde | docs: cryptographic algorithms used by Electron
Fix #3995. | [
{
"path": "docs/tutorial/mac-app-store-submission-guide.md",
"patch": "@@ -4,6 +4,10 @@ Since v0.34.0, Electron allows submitting packaged apps to the Mac App Store\n (MAS). This guide provides information on: how to submit your app and the\n limitations of the MAS build.\n \n+__Note:__ From v0.36.0 there w... | 2016-01-29T04:38:50 |
huggingface/transformers | 08f52e2178a0bada437da02ed7c1395ae54b3309 | c79040303967682a6351f3fc01a02b8ce5a13568 | permissions worflows fix (#42080)
- add new workflow to scan permissions github_token really need and advise pernmissions
- add actions-permissions/monitor on almost all worklows
=> the goal is to define properly all permissions blocks by jobs
# Conflicts:
# .github/workflows/check-workflow-permissions.yml
Co-author... | [
{
"path": ".github/workflows/check-workflow-permissions.yml",
"patch": "@@ -20,4 +20,4 @@ jobs:\n contents: read\n with:\n workflow_name: ${{ inputs.workflow_name }}\n- run_count: ${{ fromJSON(inputs.run_count) }}\n\\ No newline at end of file\n+ run_count: ${{ fromJSON(inputs.run_... | 2025-11-07T09:37:26 |
vercel/next.js | f169c32d3f48ceb92abf6197226010d288cc0483 | 34f551d9b7c9cb1ff5d7fdcbb990dcb0cc809269 | chore(jest): Simplify isServer expression (#48330)
<!-- 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 Contribu... | [
{
"path": "packages/next/src/build/swc/jest-transformer.ts",
"patch": "@@ -83,11 +83,9 @@ const createTransformer: TransformerCreator<\n process(src, filename, jestOptions) {\n const jestConfig = getJestConfig(jestOptions)\n \n- let swcTransformOpts = getJestSWCOptions({\n+ const swcTransformOpt... | 2023-05-11T11:49:40 |
rust-lang/rust | 07e2d96effb36dc12c76c445448801d0035a21d0 | 76118ec84ee5c1e865d10cd5d99c02878dd56ade | Fix expect_fun_call producing invalid suggestions | [
{
"path": "clippy_lints/src/methods/expect_fun_call.rs",
"patch": "@@ -1,11 +1,12 @@\n use clippy_utils::diagnostics::span_lint_and_sugg;\n+use clippy_utils::eager_or_lazy::switch_to_lazy_eval;\n use clippy_utils::macros::{FormatArgsStorage, format_args_inputs_span, root_macro_call_first_node};\n use clippy... | 2025-06-24T11:04:30 |
nodejs/node | 095bd569aef4fec433ddb26e681eaabff1f7fd10 | 6bfde6a81d81e1a78aee5f14e9cd5ee2b3e0cf13 | test: add mustCall to test-net-after-close test
PR-URL: https://github.com/nodejs/node/pull/27459
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Colin Ihrig <... | [
{
"path": "test/parallel/test-net-after-close.js",
"patch": "@@ -24,10 +24,10 @@ const common = require('../common');\n const assert = require('assert');\n const net = require('net');\n \n-const server = net.createServer(function(s) {\n+const server = net.createServer(common.mustCall(function(s) {\n conso... | 2019-04-28T08:54:17 |
huggingface/transformers | 8012f80f722044fd0dda45b4034f89fffc2ff344 | 7b325cd573e40bbb12951b8446176c96e8b1afaa | Fix inconsistency of commit sha during the workflow run (#42074)
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/check_failed_tests.yml",
"patch": "@@ -125,7 +125,7 @@ jobs:\n const { data: merge_commit } = await github.rest.repos.getCommit({\n owner: pr.base.repo.owner.login,\n repo: pr.base.repo.name,\n- ref: pr.merge_commit_sha,\n+ ... | 2025-11-06T21:32:27 |
golang/go | b1c7703f266a2d72f80f3b55eff822ad7980ce31 | b5c0dbaafc548bd432c14935ae242ce1433180e8 | doc/go1.18: discuss embedded build info compatibility
Fixes #50085
Change-Id: I9be8ddb983fb4fe598becbb0b93bb5b7e1f8438f
Reviewed-on: https://go-review.googlesource.com/c/go/+/372214
Trust: Hyang-Ah Hana Kim <hyangah@gmail.com>
Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -250,6 +250,15 @@ <h3 id=\"go-command\">Go command</h3>\n package.\n </p>\n \n+<p><!-- CL 369977 -->\n+ The underlying data format of the embedded build information can change with\n+ new go releases, so an older version of <code>go</code> may not handle the\n+ ... | 2021-12-15T13:40:30 |
electron/electron | 3b9fb6f9e6594e72ff967a90bce38da7b492807c | 7d54bb54cdf27c2ba0cfc4f1268c6bba2681cd5e | translate zh-TW tutorial debugging-main-process.md | [
{
"path": "docs-translations/zh-TW/tutorial/debugging-main-process.md",
"patch": "@@ -1,74 +1,69 @@\n-# Debugging the Main Process\n+# 主行程 Debug\n \n-The browser window DevTools can only debug the renderer process scripts (i.e.\n-the web pages). In order to provide a way to debug the scripts from the main\n... | 2016-01-28T14:40:13 |
rust-lang/rust | dbe8682cd1c88dd7027004f7ffdf3d16d27015c4 | 16c041d973631df277a3d82f4b94293f8e26c8d9 | Update tidy exceptions | [
{
"path": "src/tools/tidy/src/deps.rs",
"patch": "@@ -206,6 +206,7 @@ const EXCEPTIONS_CRANELIFT: ExceptionList = &[\n (\"regalloc2\", \"Apache-2.0 WITH LLVM-exception\"),\n (\"target-lexicon\", \"Apache-2.0 WITH LLVM-exception\"),\n (\"wasmtime-jit-icache-coherence\", \"Apache-2.0 WITH LLVM-exc... | 2025-06-24T11:38:38 |
vercel/next.js | 34f551d9b7c9cb1ff5d7fdcbb990dcb0cc809269 | 02d020c459ca59a94fa2a22c76bf846121f7e360 | Rename Turbopack/tasks crates to common prefixes (#49446)
See https://github.com/vercel/turbo/pull/4866
This also updates Turbopack to turbopack-230511.2 with the following
changes:
* https://github.com/vercel/turbo/pull/4636 <!-- Alex Kirszenberg - Add
support for logging events and intervals in the macOS pro... | [
{
"path": "Cargo.lock",
"patch": "@@ -400,7 +400,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-230510.1#95be42aa8a2e9d55207fd8ca8da5e247c2f7f322\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-05-11T11:34:36 |
huggingface/transformers | 7b325cd573e40bbb12951b8446176c96e8b1afaa | a9e2b80c716d03bdc13d4ac68886f27cb4a06ddf | Fix security issue 5 (#42072)
fix
Co-authored-by: Pauline <pauline@Paulines-MacBook-Pro-2.local> | [
{
"path": ".github/workflows/check-workflow-permissions.yml",
"patch": "@@ -2,34 +2,22 @@\n name: Check Permissions Advisor\n \n on:\n- workflow_call:\n+ workflow_dispatch:\n inputs:\n workflow_name:\n- description: 'Workflow file to analyze'\n- required: false\n+ descriptio... | 2025-11-06T18:50:59 |
nodejs/node | adedbb12e52d6ae2f256c3e796490d2424ca0ef9 | 439bc6ee0ee84ddb93767d5b6d96ce1bc9ded3e8 | tls: allow enabling the TLS debug trace
Enable the same trace output that the OpenSSL s_client and s_server
support with their `-trace` option. This is invaluable when debugging
reports of TLS bugs as well as when debugging the internal TLS
implementation.
See:
- https://github.com/nodejs/node/issues/25383
- https://... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -725,6 +725,19 @@ added: v8.4.0\n Disables TLS renegotiation for this `TLSSocket` instance. Once called, attempts\n to renegotiate will trigger an `'error'` event on the `TLSSocket`.\n \n+### tlsSocket.enableTrace()\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+When enab... | 2019-02-13T22:54:07 |
golang/go | c948823cb7fc898eafb798ad15655663755d0bc9 | dc5a8f9647257584a17efef219edc7d494b9a5bc | runtime/cgo: fix signature of crosscall_amd64 in comment
In CL 289192, crosscall_amd64() was changed to recieve 3
arguments, but the comment was not updated.
Change-Id: Iba36c27aa5189e50f3fcc2a50291fecb2ef722c1
GitHub-Last-Rev: e7c041f00c562fdfeec84f1f3ea341713dcc7bf5
GitHub-Pull-Request: golang/go#49539
Reviewed-on:... | [
{
"path": "src/runtime/cgo/gcc_amd64.S",
"patch": "@@ -12,7 +12,7 @@\n #endif\n \n /*\n- * void crosscall_amd64(void (*fn)(void))\n+ * void crosscall_amd64(void (*fn)(void), void (*setg_gcc)(void*), void *g)\n *\n * Calling into the 6c tool chain, where all registers are caller save.\n * Called from stan... | 2021-11-12T08:08:25 |
electron/electron | 516b01e398c27ec714e74a5ce10d5a37f01e774d | 05aeceeb52eede7d11a1dcfd0761cc8b2e1b6a56 | win: Call _close before close file handle
Fix #4258. | [
{
"path": "atom/common/asar/archive.cc",
"patch": "@@ -130,14 +130,16 @@ Archive::Archive(const base::FilePath& path)\n \n Archive::~Archive() {\n #if defined(OS_WIN)\n- file_.Close();\n- _close(fd_);\n+ if (fd_ != -1)\n+ _close(fd_);\n #endif\n }\n \n bool Archive::Init() {\n- if (!file_.IsValid())\... | 2016-01-28T14:38:53 |
huggingface/transformers | bc8b0b0541b80be88d930a9ed375f0de2bc73a59 | cbd83bf16133b81e08842704b083a40078a0b748 | fix tensor device placement issue of 2 UT cases (#41921)
fix tensor device placement issue
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> | [
{
"path": "src/transformers/models/speech_to_text/modeling_speech_to_text.py",
"patch": "@@ -544,6 +544,8 @@ class Speech2TextEncoder(Speech2TextPreTrainedModel):\n embed_tokens (nn.Embedding): output embedding\n \"\"\"\n \n+ _no_split_modules = [\"Speech2TextEncoderLayer\"]\n+\n def __in... | 2025-11-06T15:38:58 |
vercel/next.js | 2e1e5654f643329bd760ccc7aa2db1e203aed4d5 | 561df82bbaa63c7de8a3db57478f04adce28e3e1 | Rename Turbopack/tasks crates to common prefixes (vercel/turbo#4866)
### Description
See https://github.com/vercel/turbo/pull/4853 for the corresponding
change on the turborepo side.
### Testing Instructions
link WEB-1015 | [
{
"path": "crates/node-file-trace/Cargo.toml",
"patch": "@@ -12,17 +12,14 @@ bench = false\n \n [features]\n default = [\"cli\", \"custom_allocator\"]\n-cli = [\"dep:clap\", \"turbo-malloc\"]\n-persistent_cache = [\n- # \"dep:turbo-tasks-rocksdb\"\n-]\n+cli = [\"dep:clap\", \"turbo-tasks-malloc\"]\n tokio_... | 2023-05-11T09:40:54 |
nodejs/node | 1d4a8807009f0d97175bb8d14007805950a00408 | cc7b3fbaab2f0b4788e209178fd78eda88d65375 | 2019-04-29, Version 12.1.0 (Current)
Notable changes:
* intl:
* Update ICU to 64.2. This adds support for Japanese Era (Reiwa).
https://github.com/nodejs/node/pull/27361
* Fixes a bug in ICU that affected Node.js 12.0.0 in the case where
`new Date().toLocaleString()` was called with a non-default locale.
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -30,7 +30,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.0.0\">12.0.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V12.md#12.1.0\">12.1.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V12.md#12.0.0\"... | 2019-04-27T10:26:24 |
golang/go | dc5a8f9647257584a17efef219edc7d494b9a5bc | 38c067d178111d48a5ce96feccae1a7abe28ff59 | doc/go1.18: fix an unclosed anchor
Change-Id: I432bcc6ff917d008598b2f37c6e826f588a3d6d6
Reviewed-on: https://go-review.googlesource.com/c/go/+/372074
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Trust: Brad Fitzpatrick <bradfitz@golang.org> | [
{
"path": "doc/go1.18.html",
"patch": "@@ -116,7 +116,7 @@ <h3 id=\"bug_fixes\">Bug fixes</h3>\n \n <p>\n The Go 1.18 compiler now reports an overflow when passing a rune constant expression\n- such as <code>'1' << 32</code> as an argument to the predeclared functions\n+ such as <code>'1' << 32</c... | 2021-12-14T23:39:14 |
huggingface/transformers | cbd83bf16133b81e08842704b083a40078a0b748 | 8f242a45b1059f8c821ea19971bec2d379d9cb93 | Fix logic in setting self.fsdp when it is False (#41974)
Co-authored-by: Roy Chan <roy@Roys-MacBook-Air.local> | [
{
"path": "src/transformers/training_args.py",
"patch": "@@ -2655,7 +2655,7 @@ def set_dataloader(\n return self\n \n def _process_fsdp_args(self):\n- if self.fsdp is None:\n+ if not self.fsdp:\n self.fsdp = []\n elif self.fsdp is True:\n self.fsdp =... | 2025-11-06T15:35:22 |
electron/electron | c4df96df6718b6fa56152bc97031d7e8add5ca0b | 3ca941a94970cec65ce05e7978c0a3f328394806 | Update brightray to fix compilation error | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 7b7213795623ce16523460fb2c3642728515c94b\n+Subproject commit ea6011bc9607f321258bf93e510f56f031973230",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2016-01-27T15:19:22 |
vercel/next.js | 02d020c459ca59a94fa2a22c76bf846121f7e360 | 1f561a67dd6e1a064c04d4a171a6416d6c256f62 | actions: fill prefetchCache with revalidation payload (#49576)
This fixes a bug where the revalidation value was not stored into the
prefetch cache, leading you to potentially see stale value when
re-reading from the prefetch cache.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sur... | [
{
"path": "packages/next/src/client/components/router-reducer/reducers/server-action-reducer.ts",
"patch": "@@ -103,6 +103,7 @@ export function serverActionReducer(\n \n if (!action.mutable.inFlightServerAction) {\n action.mutable.previousTree = state.tree\n+ action.mutable.previousUrl = state.cano... | 2023-05-11T09:38:19 |
nodejs/node | cc7b3fbaab2f0b4788e209178fd78eda88d65375 | 413256d5e8fe01955b8666fea7f1fb29d072fa55 | child_process: only stop readable side of stream passed to proc
Closing the underlying resource completely has the unwanted side effect
that the stream can no longer be used at all, including passing it
to other child processes.
What we want to avoid is accidentally reading from the stream;
accordingly, it should be ... | [
{
"path": "lib/internal/child_process.js",
"patch": "@@ -63,6 +63,7 @@ let freeParser;\n let HTTPParser;\n \n const MAX_HANDLE_RETRANSMISSIONS = 3;\n+const kIsUsedAsStdio = Symbol('kIsUsedAsStdio');\n \n // This object contain function to convert TCP objects to native handle objects\n // and back again.\n@@... | 2019-04-23T19:08:14 |
huggingface/transformers | 8f242a45b1059f8c821ea19971bec2d379d9cb93 | 1c2e50a72e310d315cd84920c4c55660c6b8f0a3 | [deepspeed tests fixes] (#41925)
* [deepspeed tests fixes]
Signed-off-by: Stas Bekman <stas.bekman@snowflake.com>
* simplify
---------
Signed-off-by: Stas Bekman <stas.bekman@snowflake.com>
Co-authored-by: Stas Bekman <stas.bekman@snowflake.com> | [
{
"path": "tests/deepspeed/test_deepspeed.py",
"patch": "@@ -756,13 +756,9 @@ def test_gradient_accumulation(self, stage, dtype):\n self.assertNotEqual(yes_grad_accum_a, a)\n \n # training with half the batch size but accumulation steps as 2 should give the same\n- # weights, but ... | 2025-11-06T15:24:22 |
golang/go | 38c067d178111d48a5ce96feccae1a7abe28ff59 | 8108444eaa7ee45a74b2f2da6d21dd1d2b0c0352 | doc: fix typo in 1.18 release notes for package testing
In release notes for Go 1.18, fix typo in changes for package testing to
correctly document the change in CL 343883.
Change-Id: I40d92858ed3f74554a094466c06771f83dd81942
Reviewed-on: https://go-review.googlesource.com/c/go/+/371616
Reviewed-by: Ian Lance Taylor ... | [
{
"path": "doc/go1.18.html",
"patch": "@@ -853,7 +853,7 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n The precedence of <code>/</code> in the argument for <code>-run</code> and\n <code>-bench</code> has been increased. <code>A/B|C/D</code> used to be\n treated as ... | 2021-12-14T22:05:03 |
electron/electron | 7cfc9fad839a19f64500427adcc45f55e5f6e242 | 144061cb2e239c88603143300766f2f415d91d34 | Fix compilation error | [
{
"path": "brightray/browser/platform_notification_service.cc",
"patch": "@@ -47,7 +47,7 @@ void OnWebNotificationAllowed(\n PlatformNotificationService::PlatformNotificationService(\n BrowserClient* browser_client)\n : browser_client_(browser_client),\n- render_process_id_(0) {\n+ render_... | 2016-01-27T15:18:42 |
vercel/next.js | 3e14cf698b59e33611742ddd1072ad575ee22dcd | 85c2921bf530ab7d191423c226af59f094c82783 | Add puppeteer to external packages list (#49597)
## What?
Add puppeteer to the list of packages that can't be bundled, as it
breaks when bundled as shown in #49383.
Fixes #49383
Fixes NEXT-1136
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoot... | [
{
"path": "packages/next/src/lib/server-external-packages.json",
"patch": "@@ -23,6 +23,7 @@\n \"postcss\",\n \"prettier\",\n \"prisma\",\n+ \"puppeteer\",\n \"rimraf\",\n \"sharp\",\n \"shiki\",",
"additions": 1,
"deletions": 0,
"language": "JSON"
}
] | 2023-05-11T09:30:59 |
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.