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 |
|---|---|---|---|---|---|
electron/electron | 468dd9e7c8c309788c69908c1dddb0c08a3161a4 | ed2c18c7248b2e8f0471c755701d413ed2514d44 | :memo: fix grammatical error in desktop notification docs [ci skip] | [
{
"path": "docs/tutorial/desktop-environment-integration.md",
"patch": "@@ -25,7 +25,7 @@ myNotification.onclick = function () {\n }\n ```\n \n-While code and user experience across operating systems are similar, but there\n+While code and user experience across operating systems are similar, there\n are fi... | 2015-12-08T05:13:45 |
golang/go | e8cda0a6c925668972ada40602ada08468fa90dc | 2375b6edf376f97d0d8e3978fa3211788bc9b4dd | cmd/compile: don't run ComputeAddrTaken on imported generic functions
It causes a crash because of the unexpected XDOT operation. It's not
needed, since we will run ComputeAddrTaken() on function instantiations
after stenciling. And it's not always correct, since we may not be able
to distinguish between a array and a... | [
{
"path": "src/cmd/compile/internal/ir/node.go",
"patch": "@@ -584,7 +584,7 @@ func OuterValue(n Node) Node {\n \tfor {\n \t\tswitch nn := n; nn.Op() {\n \t\tcase OXDOT:\n-\t\t\tbase.FatalfAt(n.Pos(), \"OXDOT in walk: %v\", n)\n+\t\t\tbase.FatalfAt(n.Pos(), \"OXDOT in OuterValue: %v\", n)\n \t\tcase ODOT:\n... | 2021-11-18T18:52:35 |
huggingface/transformers | 6c901bdc0e1b9c727392f69b2d5fc15ceebec304 | 58f9e133139653a120f9c6e73eb0511cc560fba7 | [SAM] Fix typing hints (#41506)
fix | [
{
"path": "src/transformers/models/sam/processing_sam.py",
"patch": "@@ -30,13 +30,15 @@\n if is_torch_available():\n import torch\n \n+NestedList = list[Union[Optional[float | int], \"NestedList\"]]\n+\n \n class SamImagesKwargs(ImagesKwargs, total=False):\n segmentation_maps: Optional[ImageInput]\... | 2025-10-13T09:52:00 |
nodejs/node | ef0701d31f8d409916847b8466d5d37dc241a9a2 | 534d0dc5a85d650924c822bd8976e893b3679159 | tools: update dependencies in lint-md-cli-rollup
Summary
+ Update `@zeit/ncc` to `^0.16.1` from `^0.15.2`
+ Update `unified-engine` to `^6.0.1` from `^5.1.0`
+ Run `npm audit fix`
+ Run `npm run build-node`
Refs:
+ https://github.com/unifiedjs/unified-engine/releases/tag/6.0.0
+ https://github.com/unifiedjs/unified-e... | [
{
"path": "tools/node-lint-md-cli-rollup/package-lock.json",
"patch": "@@ -34,9 +34,9 @@\n }\n },\n \"@zeit/ncc\": {\n- \"version\": \"0.15.2\",\n- \"resolved\": \"https://registry.npmjs.org/@zeit/ncc/-/ncc-0.15.2.tgz\",\n- \"integrity\": \"sha512-O5olWTrJ/b/gI1pxHgolV8Gwx0aA5BU... | 2019-03-24T14:06:04 |
electron/electron | c63a8c944bef19a67a153b80ce98356645921f5f | c3f7f2447cbaaf60290ed21cb37c2a39dbf4618c | Fix release title | [
{
"path": "script/upload.py",
"patch": "@@ -174,11 +174,10 @@ def create_or_get_release_draft(github, releases, tag, tag_exists):\n \n \n def create_release_draft(github, tag):\n+ name = '{0} {1}'.format(PROJECT_NAME, tag)\n if os.environ.has_key('CI'):\n- name = '{0} pending draft'.format(PROJECT_NAM... | 2015-12-08T02:42:51 |
huggingface/transformers | 58f9e133139653a120f9c6e73eb0511cc560fba7 | eb282422516157801606c38b82a4898499f1e1f0 | Fixed Type-hints in function defintions (#41525)
* Explicitly annotate default None parameters as Optional
* make style.
* make style.
* Fixed check_copies.
* fix consistency. | [
{
"path": "src/transformers/models/detr/image_processing_detr.py",
"patch": "@@ -1724,7 +1724,7 @@ def get_ids_area(masks, scores, dedup=False):\n \n # inspired by https://github.com/facebookresearch/detr/blob/master/models/detr.py#L258\n def post_process_object_detection(\n- self, outputs, t... | 2025-10-13T09:48:37 |
golang/go | 2375b6edf376f97d0d8e3978fa3211788bc9b4dd | 24898d6948e1651aab909a5abccbfde64dc359cd | cmd/go/internal/test: add dep from test pkg build to real pkg build
If we have to build a test package, and if the full set of packages
being tested imports the regular package somewhere, then make building
the test package depend on building the regular package. That way if
the regular package fails to build we only... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -890,14 +890,25 @@ func runTest(ctx context.Context, cmd *base.Command, args []string) {\n \t\t}\n \t}\n \n+\t// Collect all the packages imported by the packages being tested.\n+\tallImports := make(map[*load.Package]bool)\n+\tfor _, p := range pkg... | 2021-11-18T20:14:24 |
huggingface/transformers | 65cb8fac6dba2fc6e2e530ed97e983f38cf5d95f | 3927ffed31e3c0d2929bf98bd05b7c61fcc48b62 | [Qwen3VL] fix: hidden_states in place modification error (#41535)
```
File "transformers/models/qwen3_vl_moe/modeling_qwen3_vl_moe.py", line 941, in forward
hidden_states = self._deepstack_process(
^^^^^^^^^^^^^^^^^^^^^^^^
File "transformers/models/qwen3_vl_moe/modeling_qwen3_vl_moe.py", li... | [
{
"path": "src/transformers/models/qwen3_omni_moe/modeling_qwen3_omni_moe.py",
"patch": "@@ -1694,7 +1694,8 @@ def _deepstack_process(self, hidden_states, visual_pos_masks, visual_embeds):\n visual_pos_masks = visual_pos_masks[..., 0]\n visual_pos_masks = visual_pos_masks.to(hidden_states.de... | 2025-10-13T08:50:14 |
electron/electron | af289001898f80feddc5d8af62b6f3c0442dcaba | d0be6c74116e92b667213c1740ff57014aceee66 | Fix up Chrome47 changes | [
{
"path": "atom/browser/ui/file_dialog_gtk.cc",
"patch": "@@ -22,7 +22,9 @@ gboolean FileFilterCaseInsensitive(const GtkFileFilterInfo* file_info,\n // Makes .* file extension matches all file types.\n if (*file_extension == \".*\")\n return true;\n- return base::EndsWith(file_info->filename, *file... | 2015-12-07T21:27:05 |
golang/go | 24898d6948e1651aab909a5abccbfde64dc359cd | c4aae23d6426442402b3de0e5f7de1ef8da3842a | spec: various clarifications/fixes for method sets and interfaces
- fixed a typo in the method set section
- express in the syntax that ~T denotes an underlying type
- be more precise when talking about types vs type terms
- refer to "unions" rather than "union expressions"
- make it clear in the spec title that this ... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,16 +1,14 @@\n <!--{\n-\t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Nov 17, 2021\",\n+\t\"Title\": \"The Go Programming Language Specification - Go 1.18 Draft (incomplete)\",\n+\t\"Subtitle\": \"Version of Nov 18, 202... | 2021-11-18T18:02:08 |
nodejs/node | f0b3855a90bc5f68fe38ea5e7c69d30ae7d81a27 | e54f237afe53324ff6d6f1504a40f26b9fe7711c | net: remove usage of require('util')
Use `require('internal/util/inspect').inspect`,
`require('internal/util/debuglog').debuglog`,
`require('internal/util').deprecate` and `Object.setPrototypeOf` instead
of `require('util')`.
Fix test in `test/parallel/test-net-access-byteswritten.js` to do not
check the `super_` prop... | [
{
"path": "lib/net.js",
"patch": "@@ -23,8 +23,9 @@\n \n const EventEmitter = require('events');\n const stream = require('stream');\n-const util = require('util');\n-const internalUtil = require('internal/util');\n+const { inspect } = require('internal/util/inspect');\n+const debug = require('internal/util... | 2019-03-26T11:28:25 |
vercel/next.js | f2819a6e7f4ffb215e01c9bb8767e73bc41437bb | 488615ab0204cbd12a6a3c73945db97c07e25e0f | Replace css_chunk_root_path with ProxiedAsset (vercel/turbo#4740)
### Description
This replaces the use case of `css_chunk_root_path` with a
`ProxiedAsset`, which allows the same kind of behavior but in a more
granular way: the user decides which assets are exposed under which
path, instead of it being a chunkin... | [
{
"path": "crates/turbopack-core/src/lib.rs",
"patch": "@@ -17,6 +17,7 @@ pub mod ident;\n pub mod introspect;\n pub mod issue;\n pub mod plugin;\n+pub mod proxied_asset;\n pub mod reference;\n pub mod reference_type;\n pub mod resolve;",
"additions": 1,
"deletions": 0,
"language": "Rust"
},
... | 2023-04-28T14:50:41 |
huggingface/transformers | 3927ffed31e3c0d2929bf98bd05b7c61fcc48b62 | 7164924a7e83f223a2bf2e104bef98eabe545091 | [testing] reduce runtime of `HunYuanMoEV1IntegrationTest:test_model_generation` (#41373)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/hunyuan_v1_moe/test_modeling_hunyuan_v1_moe.py",
"patch": "@@ -16,6 +16,7 @@\n import unittest\n \n import pytest\n+import torch\n from parameterized import parameterized\n \n from transformers import is_torch_available\n@@ -99,10 +100,12 @@ def tearDown(self):\n def test_model_g... | 2025-10-10T20:27:01 |
electron/electron | 3931ebb7ef4b38867440315b07b2796a05da411f | d0be6c74116e92b667213c1740ff57014aceee66 | Fix up Windows build errors | [
{
"path": "atom/browser/browser_win.cc",
"patch": "@@ -127,7 +127,7 @@ void Browser::SetUserTasks(const std::vector<UserTask>& tasks) {\n \n PCWSTR Browser::GetAppUserModelID() {\n if (app_user_model_id_.empty()) {\n- SetAppUserModelID(ReplaceStringPlaceholders(\n+ SetAppUserModelID(base::ReplaceStr... | 2015-12-07T18:02:06 |
golang/go | 8d6c4e07fdd4a81c466450b51cda71a1bfab41fc | 5d5f2b1e201fe9f3b641109ccd91b3ceae4cf460 | go/types: use "implements" rather than "satisfies" in error messages
This is a port of CL 363839 from types2 to go/types.
Change-Id: I9efe412a6a602fd55170d1ee89c8e1513037c926
Reviewed-on: https://go-review.googlesource.com/c/go/+/364936
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@... | [
{
"path": "src/go/types/instantiate.go",
"patch": "@@ -188,18 +188,17 @@ func (check *Checker) implements(V, T Type, qf Qualifier) error {\n \t// type set of V is not empty\n \n \t// No type with non-empty type set satisfies the empty type set.\n-\t// TODO(gri) should use \"implements\" rather than \"satisf... | 2021-11-18T01:17:55 |
rust-lang/rust | 4145596954c7ea313a9f9403044e05d57d175235 | 6c7830e75dc15840e3f5787906fa570f922d267c | fix markup
That was intended to be a list.
Also, the order is not relevant. | [
{
"path": "src/doc/rustc-dev-guide/src/building/new-target.md",
"patch": "@@ -174,8 +174,8 @@ compiler, you can use it instead of the JSON file for both arguments.\n ## Promoting a target from tier 2 (target) to tier 2 (host)\n \n There are two levels of tier 2 targets:\n- a) Targets that are only cross-co... | 2025-06-18T22:03:33 |
nodejs/node | e54f237afe53324ff6d6f1504a40f26b9fe7711c | 68b04274ca79c632ca7ff480e5d3738163c962d1 | util: add subclass and null prototype support for errors in inspect
This adds support to visualize the difference between errors with
null prototype or subclassed errors. This has a couple safeguards
to be sure that the output is not intrusive.
PR-URL: https://github.com/nodejs/node/pull/26923
Reviewed-By: James M Sn... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -666,25 +666,9 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n return ctx.stylize(base, 'date');\n }\n } else if (isError(value)) {\n- // Make error with message first say the error.\n- base = formatError(valu... | 2019-03-26T13:45:40 |
huggingface/transformers | 7164924a7e83f223a2bf2e104bef98eabe545091 | 26a5368c4429a7b59f133ed283b4cfccd8b50ef7 | Fix Latex typesetting in documentation (#41177)
Fix Latex typsetting in documentation
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "docs/source/en/cache_explanation.md",
"patch": "@@ -41,13 +41,13 @@ $$\n \n The query (`Q`), key (`K`), and value (`V`) matrices are projections from the input embeddings of shape `(b, h, T, d_head)`.\n \n-For causal attention, the mask prevents the model from attending to future tokens. Once a t... | 2025-10-10T15:54:27 |
vercel/next.js | 488615ab0204cbd12a6a3c73945db97c07e25e0f | bef8d73608bbbb896318e981833d5f0c9b90b70b | improve commonjs esm interop and node ESM (vercel/turbo#4738)
### Description
* generate a default export when import faux modules
* detect specified module type and follow that
* emit errors/warnings when using non-matching syntax
next.js test case: https://github.com/vercel/next.js/pull/48940 | [
{
"path": "crates/turbopack-dev/js/src/runtime.js",
"patch": "@@ -16,7 +16,7 @@\n /** @typedef {import('../types').SourceType.Parent} SourceTypeParent */\n /** @typedef {import('../types').SourceType.Update} SourceTypeUpdate */\n /** @typedef {import('../types').Exports} Exports */\n-/** @typedef {import('.... | 2023-04-28T14:45:00 |
golang/go | 9ea939be600df12fe51b201112cc12e741acef00 | 14c3f749bebafe10d60cf5a9b1f4ae6663ff862a | go/types: implement Checker.implements
This is a port of CL 363837 from types2 to go/types. As usual, test
error messages had to be repositioned on the operand.
Change-Id: I2b53fae7aa30f9147f8d05f75b0ab252338320bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/364934
Trust: Robert Findley <rfindley@google.com... | [
{
"path": "src/go/types/instantiate.go",
"patch": "@@ -133,113 +133,122 @@ func (check *Checker) validateTArgLen(pos token.Pos, ntparams, ntargs int) bool\n }\n \n func (check *Checker) verify(pos token.Pos, tparams []*TypeParam, targs []Type) (int, error) {\n+\t// TODO(rfindley): it would be great if users... | 2021-11-18T01:01:16 |
rust-lang/rust | f3d42786434dca79521ee35d1c0c7c478a86dfaa | f9c15f40fbd7b4ba1baea6fb89551274047e17b3 | Fix `core::iter::Fuse`'s `Default` impl to do what it's docs say it does.
Add a doctest with a non-empty-by-default iterator. | [
{
"path": "library/core/src/iter/adapters/fuse.rs",
"patch": "@@ -198,8 +198,30 @@ impl<I: Default> Default for Fuse<I> {\n /// let iter: Fuse<slice::Iter<'_, u8>> = Default::default();\n /// assert_eq!(iter.len(), 0);\n /// ```\n+ ///\n+ /// This is equivalent to `I::default().fuse()`[^fu... | 2025-05-14T02:12:47 |
huggingface/transformers | feca4f3de717071b9e83e7cf8d0360289f750000 | c6042a41699745532ecee05de32daaef3b847770 | remove `tpu_num_cores` (#41383)
* remove-tpu-num-cores
* fix
* let's remove it
* style
* Update examples/legacy/seq2seq/finetune_tpu.sh
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
---------
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> | [
{
"path": "examples/legacy/seq2seq/finetune_tpu.sh",
"patch": "@@ -16,8 +16,8 @@ export TPU_NUM_CORES=8\n \n # the proper usage is documented in the README, you need to specify data_dir, output_dir and model_name_or_path\n # run ./finetune_tpu.sh --help to see all the possible options\n-python xla_spawn.py ... | 2025-10-10T13:53:28 |
vercel/next.js | a141366ff6917f8c4a6c61e205f71eb25fb9b840 | cc2bcece63f18f62cd601cf5bf42e8f1304b396d | Error for missing dynamic generated id and refactor metadata image url (#48953)
### What?
In #48928 we decided to error for the missing `id` from `generateImageMetadata` and `generateSitemaps` for better dev DX. This PR also refactors the metadata image urls generation that assumbling the utils together | [
{
"path": "packages/next/src/build/webpack/loaders/metadata/discover.ts",
"patch": "@@ -6,7 +6,6 @@ import type {\n import path from 'path'\n import { stringify } from 'querystring'\n import { STATIC_METADATA_IMAGES } from '../../../../lib/metadata/is-metadata-route'\n-import { normalizeAppPath } from '../.... | 2023-04-28T14:06:07 |
nodejs/node | 6a34b85b05d61d016a1ca5072c94f6b449ab0e06 | 7a547098d5b13e14b8ad86145fd889fb18b7f3d4 | url: add ws: and wss: to slashedProtocol set
Fix cases where the pathname is incorrectly parsed as `null`.
PR-URL: https://github.com/nodejs/node/pull/26941
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> | [
{
"path": "lib/url.js",
"patch": "@@ -95,7 +95,11 @@ const slashedProtocol = new SafeSet([\n 'gopher',\n 'gopher:',\n 'file',\n- 'file:'\n+ 'file:',\n+ 'ws',\n+ 'ws:',\n+ 'wss',\n+ 'wss:'\n ]);\n const {\n CHAR_SPACE,",
"additions": 5,
"deletions": 1,
"language": "JavaScript"
},
... | 2019-03-27T07:53:15 |
golang/go | 14c3f749bebafe10d60cf5a9b1f4ae6663ff862a | f6647f2e3bc0b803a67c97a7d5d8733cefbd5d5b | cmd/link: relocate dwarf examiner helper to separate package
The linker DWARF test includes an "examiner" helper type (with
associated methods) that is used to help linker DWARF tests read DWARF
info in a higher level and more structured way than just raw
debug/dwarf operations. This patch extracts out "examiner" and
... | [
{
"path": "src/cmd/link/internal/dwtest/dwtest.go",
"patch": "@@ -0,0 +1,197 @@\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 dwtest\n+\n+import (\n+\t\"debug/dwarf\"\n+\t\"err... | 2021-11-12T18:20:07 |
huggingface/transformers | 60f6ec438a4e77dea878b753affa9da75bc8db3e | f9f8bf5a1062ce0293cbd42be0126e17a15446e9 | Fix detectron2 import (#41510)
* fix
* fix
* typo | [
{
"path": "src/transformers/utils/import_utils.py",
"patch": "@@ -724,7 +724,15 @@ def is_datasets_available() -> bool:\n \n @lru_cache\n def is_detectron2_available() -> bool:\n- return _is_package_available(\"detectron2\")\n+ # We need this try/except block because otherwise after uninstalling the l... | 2025-10-10T11:33:47 |
vercel/next.js | 44dc4efad21f3d85d7385f85a726efc45e494fd3 | c94122dc2c417d5be11b0bfa50c0957e0e2ae91a | Fix dynamic routes for generateImageMetadata (#48928)
* Fix the `generateImageMetadata` for non dynamic routes and related
`param` matching (Found during development)
* Fix dynamic routes with number suffix `(\d)` (Fixes #48689) | [
{
"path": "packages/next/src/build/webpack/loaders/next-metadata-route-loader.ts",
"patch": "@@ -106,9 +106,9 @@ export async function GET(_, ctx) {\n const id = __metadata_id__[0]\n const imageMetadata = generateImageMetadata ? await generateImageMetadata({ params }) : null\n if (imageMetadata) {\n- ... | 2023-04-28T10:27:21 |
nodejs/node | 6bc2ab19e9f338f99de259a7e3f4c9436fd1b9fc | 2e2c015422dce973f15acb42571486e4003efddb | doc: remove "How is an LTS release cut?" section
The release process is in the Release plan, linked earlier in the doc.
Don't include information here because duplicated information is likely
to drift apart, resulting in contradictions and a lack of clarity about
which document is correct. (I think the text removed is... | [
{
"path": "COLLABORATOR_GUIDE.md",
"patch": "@@ -30,11 +30,8 @@\n - [I Made a Mistake](#i-made-a-mistake)\n - [Long Term Support](#long-term-support)\n - [What is LTS?](#what-is-lts)\n- - [How does LTS work?](#how-does-lts-work)\n- - [Landing semver-minor commits in LTS](#landing-semver-minor-... | 2019-03-28T05:35:43 |
electron/electron | d0be6c74116e92b667213c1740ff57014aceee66 | 27dd233820ccc7b8e1cd4a56982c9d31f3f4cd13 | Fix cppling warning | [
{
"path": "atom/browser/atom_browser_context.cc",
"patch": "@@ -86,7 +86,8 @@ std::string AtomBrowserContext::GetUserAgent() {\n return content::BuildUserAgentFromProduct(user_agent);\n }\n \n-scoped_ptr<net::URLRequestJobFactory> AtomBrowserContext::CreateURLRequestJobFactory(\n+scoped_ptr<net::URLReques... | 2015-12-07T14:44:35 |
golang/go | d8f7a64519695f037cce8696c5c3b7216fd4a680 | f1cc5294290b33889d48a3185b3c3711531881e0 | test: make issue8606b test more robust
Use actual unmapped memory instead of small integers to make
pointers that will fault when accessed.
Fixes #49562
Change-Id: I2c60c97cf80494dd962a07d10cfeaff6a00f4f8e
Reviewed-on: https://go-review.googlesource.com/c/go/+/364914
Trust: Keith Randall <khr@golang.org>
Run-TryBot:... | [
{
"path": "test/fixedbugs/issue8606b.go",
"patch": "@@ -1,4 +1,5 @@\n // run\n+// +build linux darwin\n \n // Copyright 2020 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style\n@@ -20,20 +21,10 @@ package main\n import (\n \t\"fmt\"\n \t\"reflect\"\n+\t\"syscall\"\n... | 2021-11-18T00:12:43 |
huggingface/transformers | f9f8bf5a1062ce0293cbd42be0126e17a15446e9 | b4067472aee9b566237091dbcd3659dd2ce92004 | Revert `local_rank` deletion and some cleaning (#41504)
* forgot those
* clean
* Fix
* merge
* fix
* fix | [
{
"path": "examples/legacy/seq2seq/seq2seq_trainer.py",
"patch": "@@ -144,7 +144,7 @@ def _get_train_sampler(self) -> Optional[torch.utils.data.Sampler]:\n \n return (\n RandomSampler(self.train_dataset)\n- if self.args.local_rank == -1\n+ if self.ar... | 2025-10-10T10:23:04 |
vercel/next.js | 0918ebd69a23622d78e0f25b2993beea47f5a55f | a2a3f5e37805636000f3e48f3e73cd4c97b58601 | fixes #48794 : When using pageExtensions like "page.jsx", global css import not working (#48795)
fixes #48794
<!-- 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 c... | [
{
"path": "packages/next/src/server/app-render/get-css-inlined-link-tags.tsx",
"patch": "@@ -17,7 +17,7 @@ export function getCssInlinedLinkTags(\n ): string[] {\n const layoutOrPageCssModules = serverCSSManifest.cssImports[filePath]\n \n- const filePathWithoutExt = filePath.replace(/\\.[^.]+$/, '')\n+ ... | 2023-04-28T08:23:00 |
nodejs/node | 2e2c015422dce973f15acb42571486e4003efddb | 61ef9df958f98bed5159d9d4553ea5b2f894272f | crypto: decode missing passphrase errors
When a user attempts to load an encrypted key without supplying a
passphrase, a cryptic OpenSSL error is thrown. This change intercepts
the OpenSSL error and throws a nice error code instead.
PR-URL: https://github.com/nodejs/node/pull/25208
Reviewed-By: Ben Noordhuis <info@bn... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1486,6 +1486,11 @@ a `dynamicInstantiate` hook.\n A `MessagePort` was found in the object passed to a `postMessage()` call,\n but not provided in the `transferList` for that call.\n \n+<a id=\"ERR_MISSING_PASSPHRASE\"></a>\n+### ERR_MISSING_PASSPHRASE\n+\n+An att... | 2018-12-23T14:13:32 |
electron/electron | 647f151906dc46bc3be4b188294ccc389617b7e2 | 95e7c796ec28e805a979004ba6912d1d87d8acab | Fix the failing sendSync | [
{
"path": "atom/renderer/api/lib/remote.coffee",
"patch": "@@ -119,7 +119,11 @@ metaToPlainObject = (meta) ->\n \n # Browser calls a callback in renderer.\n ipcRenderer.on 'ATOM_RENDERER_CALLBACK', (event, id, args) ->\n- callbacksRegistry.apply id, metaToValue(args)\n+ # Delay the callback to next tick i... | 2015-12-07T13:25:19 |
huggingface/transformers | b4067472aee9b566237091dbcd3659dd2ce92004 | bc529a3368e9942bcf42ebf02bdd5546ef39f9be | Bump to hfh 1.0.0.rc5 to fix test (#41508) | [
{
"path": "setup.py",
"patch": "@@ -114,7 +114,7 @@\n \"GitPython<3.1.19\",\n \"hf-doc-builder>=0.3.0\",\n \"hf_xet\",\n- \"huggingface-hub==1.0.0.rc4\",\n+ \"huggingface-hub==1.0.0.rc5\",\n \"importlib_metadata\",\n \"ipadic>=1.0.0,<2.0\",\n \"jinja2>=3.1.0\",",
"additions... | 2025-10-10T10:12:08 |
golang/go | f1cc5294290b33889d48a3185b3c3711531881e0 | 72f0976ac45fcb7f3fd6d47a3ac5c96a78edd59d | go/types: better position for invalid slice indices error
This is a port of CL 363671 from types2 to go/types. Also adjust the
error message to match types2 ("invalid" vs "swapped").
Change-Id: I662a73c915814fea14bfcb1ebde0fbf39589f022
Reviewed-on: https://go-review.googlesource.com/c/go/+/364902
Trust: Robert Findle... | [
{
"path": "src/go/types/index.go",
"patch": "@@ -310,9 +310,13 @@ func (check *Checker) sliceExpr(x *operand, e *ast.SliceExpr) {\n L:\n \tfor i, x := range ind[:len(ind)-1] {\n \t\tif x > 0 {\n-\t\t\tfor _, y := range ind[i+1:] {\n-\t\t\t\tif y >= 0 && x > y {\n-\t\t\t\t\tcheck.errorf(inNode(e, e.Rbrack), ... | 2021-11-18T00:45:49 |
nodejs/node | 61ef9df958f98bed5159d9d4553ea5b2f894272f | 7aad63ba349d7b9b0eda4149d236ee66e5a26401 | inspector: display error when ToggleAsyncHook fails
This patch refactors `AppendExceptionLine` and `PrintSyncTrace`
to reuse the error formatting logic and use them to print
uncaught error in ``ToggleAsyncHook`
PR-URL: https://github.com/nodejs/node/pull/26859
Refs: https://github.com/nodejs/node/issues/26798
Reviewe... | [
{
"path": "src/env.cc",
"patch": "@@ -33,12 +33,10 @@ using v8::HandleScope;\n using v8::Integer;\n using v8::Isolate;\n using v8::Local;\n-using v8::Message;\n using v8::NewStringType;\n using v8::Number;\n using v8::Object;\n using v8::Private;\n-using v8::StackFrame;\n using v8::StackTrace;\n using v8::S... | 2019-03-22T16:07:46 |
vercel/next.js | a2a3f5e37805636000f3e48f3e73cd4c97b58601 | e260adb805dc358ff1fb97389d8b316b7011584d | turbopack: parse and propagate `output: 'export'` (#48046)
Depends on https://github.com/vercel/turbo/pull/4491
This adds support for the new `output: 'export'` configuration, and
propagates the value through to our Node.js rendering code to render.
Unfortunately, we don't support page-level configs at the moment... | [
{
"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-230427.2#af5fbbb42e76e8a3e4ac75505cca9b0346a06cb6\"\n+source = \"git+https://github.com/vercel/turbo.git?ta... | 2023-04-28T06:36:32 |
electron/electron | c6167bdf0a058808d32b2f2ea3bc32e64ce8cf76 | e1d7ef7e24affd8f4ede3689c5354ef11036bf62 | Fix broken link in Docs > Synopsis | [
{
"path": "docs/api/synopsis.md",
"patch": "@@ -11,7 +11,7 @@ both processes.\n \n The basic rule is: if a module is [GUI][gui] or low-level system related, then\n it should be only available in the main process. You need to be familiar with\n-the concept of [main process vs. renderer process][mai-process] ... | 2015-12-05T05:51:33 |
huggingface/transformers | f4487ec52170558d6f1559073e8ca97f737f6d37 | e8194fe84f6622ea06593a2a371382bda43749c1 | fix gemma3n case failure (#41426)
* fix gemma3n case failure
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* Update dependency_versions_table.py
* change the case argument passing way to make the case PASS,
generation_config way need re-visit
Sign... | [
{
"path": "tests/models/gemma3n/test_modeling_gemma3n.py",
"patch": "@@ -31,7 +31,6 @@\n Gemma3nAudioConfig,\n Gemma3nAudioFeatureExtractor,\n Gemma3nConfig,\n- GenerationConfig,\n StaticCache,\n is_torch_available,\n )\n@@ -740,7 +739,7 @@ def setUp(self):\n audio_ds = load_d... | 2025-10-10T09:15:27 |
golang/go | 72f0976ac45fcb7f3fd6d47a3ac5c96a78edd59d | 3404ee3e86b9f4eab55d2451dcd9db5b4cd9ed4a | go/types: better position for "3-index slice of string" error
This is a port of CL 363670 from types2 to go/types.
Change-Id: I2ac3a5f86bb4eafddd2854e193083b2b737e29b6
Reviewed-on: https://go-review.googlesource.com/c/go/+/364901
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.... | [
{
"path": "src/go/types/index.go",
"patch": "@@ -223,7 +223,11 @@ func (check *Checker) sliceExpr(x *operand, e *ast.SliceExpr) {\n \tcase *Basic:\n \t\tif isString(u) {\n \t\t\tif e.Slice3 {\n-\t\t\t\tcheck.invalidOp(x, _InvalidSliceExpr, \"3-index slice of string\")\n+\t\t\t\tat := e.Max\n+\t\t\t\tif at =... | 2021-11-18T00:37:04 |
nodejs/node | 7aad63ba349d7b9b0eda4149d236ee66e5a26401 | 58bf61524df078ed2563725aa5e982bed51a4853 | src: do not call into JS in the maxAsyncCallStackDepthChanged interrupt
If Debugger.setAsyncCallStackDepth is sent during bootstrap,
we cannot immediately call into JS to enable the hooks, which could
interrupt the JS execution of bootstrap. So instead we save the
notification in the inspector agent if it's sent in th... | [
{
"path": "lib/internal/bootstrap/node.js",
"patch": "@@ -157,17 +157,6 @@ if (isMainThread) {\n const { nativeHooks } = require('internal/async_hooks');\n internalBinding('async_wrap').setupHooks(nativeHooks);\n \n-// XXX(joyeecheung): this has to be done after the initial load of\n-// `internal/async_hook... | 2019-03-26T20:03:27 |
vercel/next.js | e260adb805dc358ff1fb97389d8b316b7011584d | 7b66e8aef87553aa5e3f62d59f08edc0eace32c5 | fix: Enable CJS annotations for next.js files (#48811)
### What?
Enable import/export annotations for next.js files.
### Why?
It's required to allow importing next.js modules from node.
`cjs-module-lexer` needs these annotations to import CJS modules.
### How?
Closes WEB-949
Fixes #48801 | [
{
"path": "package.json",
"patch": "@@ -76,7 +76,7 @@\n \"@opentelemetry/api\": \"1.4.1\",\n \"@svgr/webpack\": \"5.5.0\",\n \"@swc/cli\": \"0.1.55\",\n- \"@swc/core\": \"1.3.51\",\n+ \"@swc/core\": \"1.3.55\",\n \"@swc/helpers\": \"0.5.1\",\n \"@testing-library/react\": \"13.0.0\"... | 2023-04-27T23:13:40 |
electron/electron | 220d05a39866caa147588c96f7377fcd160ba5c0 | e1d7ef7e24affd8f4ede3689c5354ef11036bf62 | Docs: Fix link to webcontents send channel | [
{
"path": "docs/api/ipc-main.md",
"patch": "@@ -68,4 +68,4 @@ Returns the `webContents` that sent the message, you can call\n `event.sender.send` to reply to the asynchronous message, see\n [webContents.send][webcontents-send] for more information.\n \n-[webcontents-send]: web-contents.md#webcontentssendcha... | 2015-12-04T21:07:33 |
huggingface/transformers | e8194fe84f6622ea06593a2a371382bda43749c1 | 9556b36b2f5599e190ff6fea644c1fcbdfb2717b | Fix some tests (#41503)
* fix
* fix
* doc | [
{
"path": "docs/source/ar/llm_tutorial_optimization.md",
"patch": "@@ -472,7 +472,7 @@ for _ in range(5):\n next_token_id = torch.argmax(next_logits, dim=-1)\n \n print(\"shape of input_ids\", next_token_id.shape)\n- print(\"length of key-value cache\", len(past_key_values[0][0])) # past_key_values ar... | 2025-10-10T09:05:09 |
golang/go | ce7e5013a68ef4572b9fa439b1402145ef710631 | 353cb71ea29e02a41f77b7576d658de4515e264d | go/types: allow slicing for operands with []byte|string type sets
This is a port of CL 363662 from types2 to go/types. An error message
was adjusted to be on the operand in test data.
Change-Id: I4d2d69976f4f05e0d89ba1c6bf8b3e4cf1a82316
Reviewed-on: https://go-review.googlesource.com/c/go/+/364899
Trust: Robert Findl... | [
{
"path": "src/go/types/builtins.go",
"patch": "@@ -342,26 +342,11 @@ func (check *Checker) builtin(x *operand, call *ast.CallExpr, id builtinId) (_ b\n \t\tif y.mode == invalid {\n \t\t\treturn\n \t\t}\n-\t\t// src, _ := structuralType(y.typ).(*Slice); but also accepts strings\n-\t\tvar src *Slice\n-\t\tva... | 2021-11-18T00:26:37 |
nodejs/node | 58bf61524df078ed2563725aa5e982bed51a4853 | 7ef3acb62651046f542f246d26182b21c6b620a5 | build: fix skipping of flaky tests on Travis
`PARALLEL_ARGS` is overwritten in the Makefile if `JOBS` is set. Use
`CI_JS_SUITES` instead.
PR-URL: https://github.com/nodejs/node/pull/27002
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": ".travis.yml",
"patch": "@@ -49,4 +49,4 @@ matrix:\n - ./configure\n - make -j2 V=\n script:\n- - PARALLEL_ARGS='--flaky-tests=skip' make -j1 test\n+ - CI_JS_SUITES='--flaky-tests=skip default' make -j1 test",
"additions": 1,
"deletions": 1,
"languag... | 2019-03-28T21:07:19 |
vercel/next.js | f35abb7d0e7f30a3c0b23c76b056faf9017e28db | c4b0165da408ab6446fba0080371917ad217f383 | fix: turborepo unused code lints (vercel/turbo#4727)
### Description
Mostly gating constants and imports behind `#[cfg(windows)]`.
One question for @arlyon is if we should delete the two methods on
`BumpTimeout` that appear unused. I did a search and I didn't find any
uses in the codebase, but wasn't sure if t... | [
{
"path": "crates/globwatch/src/lib.rs",
"patch": "@@ -36,7 +36,7 @@ pub use notify::{Error, Event, Watcher};\n pub use stop_token::{stream::StreamExt, StopSource, StopToken, TimedOutError};\n use tokio::sync::mpsc::{UnboundedReceiver, UnboundedSender};\n use tokio_stream::wrappers::UnboundedReceiverStream;... | 2023-04-27T21:04:28 |
huggingface/transformers | 5aca530b342e24c3f0bf51f1ee7d67a6a5b376fb | 4f323369db3ca4b56120a75367e2a707056fb621 | [Parakeet] unnecessary warning & auto mapping (#41412)
* add parakeet to CONFIG_MAPPING_NAMES
* TOKENIZER_MAPPING_NAMES update
* fix auto tokenizer
* update
* fix | [
{
"path": "src/transformers/models/auto/tokenization_auto.py",
"patch": "@@ -509,7 +509,7 @@\n (\"owlv2\", (\"CLIPTokenizer\", \"CLIPTokenizerFast\" if is_tokenizers_available() else None)),\n (\"owlvit\", (\"CLIPTokenizer\", \"CLIPTokenizerFast\" if is_tokenizers_available() else None)),\n ... | 2025-10-10T09:00:15 |
golang/go | 2463b4fcafbd59998ea4c81b0fd91a697ad02c15 | b95bff0318150e0b2869079bf2c0068fb4bcb17c | go/types: simplify under() and fix a crash
This is a port of CL 363665 from types2 to go/types.
Change-Id: I20c4e20ab97f1e4de66a29095dc4a9b160810fe5
Reviewed-on: https://go-review.googlesource.com/c/go/+/364897
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
TryBot-Result:... | [
{
"path": "src/go/types/lookup.go",
"patch": "@@ -469,6 +469,13 @@ func (check *Checker) assertableTo(V *Interface, T Type) (method, wrongType *Fun\n // Otherwise it returns (typ, false).\n func deref(typ Type) (Type, bool) {\n \tif p, _ := typ.(*Pointer); p != nil {\n+\t\t// p.base should never be nil, but... | 2021-11-18T00:20:52 |
huggingface/transformers | 4f323369db3ca4b56120a75367e2a707056fb621 | f5f3457278be00e7ba8a1766690f4d9a3e2248fa | Fixed tiny incorrect imports in `glm4v` (#41483)
Fixed tiny import issue in glm4v | [
{
"path": "src/transformers/models/glm4v/modular_glm4v.py",
"patch": "@@ -54,8 +54,8 @@\n Qwen2_5_VLVisionBlock,\n )\n from ..qwen2_vl.processing_qwen2_vl import (\n- Qwen2_VLProcessor,\n- Qwen2_VLProcessorKwargs,\n+ Qwen2VLProcessor,\n+ Qwen2VLProcessorKwargs,\n )\n \n \n@@ -1526,7 +1526,7 ... | 2025-10-10T08:57:01 |
vercel/next.js | 7b66e8aef87553aa5e3f62d59f08edc0eace32c5 | 678c69753b4f1127b1ecf33819fc6064898df758 | fix: explicit undefined typecheck (#48920)
The current implementation is throwing wrongly if you set a falsy JS value (like `0` or `null`)
So right now this is fail even it's a legit implementation: `process.counter = 0` | [
{
"path": "packages/next/src/server/web/sandbox/context.ts",
"patch": "@@ -117,7 +117,7 @@ function createProcessPolyfill(options: Pick<ModuleContextOptions, 'env'>) {\n if (key === 'env') continue\n Object.defineProperty(processPolyfill, key, {\n get() {\n- if (overridenValue[key]) {\n... | 2023-04-27T19:01:23 |
nodejs/node | 30e884f4f4692cc327b0ff5b3228eec88f270773 | dd9cad9cb34f37ad47bf67996118efbc07787a2b | test: add known_issues test for fs.copyFile()
On macOS, fs.copyFile() may not respect file permissions. There is a PR
for libuv that should fix this, but until it lands and we can either
float a patch or upgrade libuv, have a known_issues test.
Ref: https://github.com/nodejs/node/issues/26936
Ref: https://github.com/... | [
{
"path": "test/known_issues/known_issues.status",
"patch": "@@ -7,18 +7,24 @@ prefix known_issues\n [true] # This section applies to all platforms\n \n [$system==win32]\n+test-fs-copyfile-respect-permissions: SKIP\n \n [$system==linux]\n test-vm-timeout-escape-promise: PASS,FLAKY\n+test-fs-copyfile-respect... | 2019-03-27T06:32:20 |
electron/electron | 973ae06f214122686c501ec28ff5f55e60fd4f0e | 2c6d23225460be0102ab7aeb0da0c6c14b09f838 | Destroy the native window in next tick
It fixes a possible crash when native code is iterating all windows
while the JavaScript code decides to destroy a window. | [
{
"path": "atom/browser/api/atom_api_window.cc",
"patch": "@@ -159,6 +159,10 @@ Window::Window(v8::Isolate* isolate, const mate::Dictionary& options) {\n Window::~Window() {\n if (!window_->IsClosed())\n window_->CloseContents(nullptr);\n+\n+ // Destroy the native window in next tick because the nati... | 2015-12-04T03:35:04 |
golang/go | 0440fb833405a5c61ed0269af9c5897b03390bac | a218365faeed6d62d3becabf0c8700f0e0b3a734 | runtime: make faketime more robust against GC
When using faketime, only run the scavenger for one loop.
It tries to run for 1 ms, but with faketime that calculation fails.
Prohibit write barriers in the faketime write function, in case
the GC wants to print something (e.g., with GODEBUG=gctrace=1).
Fixes #49614
Cha... | [
{
"path": "src/runtime/mgcscavenge.go",
"patch": "@@ -344,6 +344,11 @@ func bgscavenge(c chan int) {\n \t\t\t\tcrit += float64(end - start)\n \t\t\t}\n \t\t\treleased += r\n+\n+\t\t\t// When using fake time just do one loop.\n+\t\t\tif faketime != 0 {\n+\t\t\t\tbreak\n+\t\t\t}\n \t\t}\n \n \t\tif released =... | 2021-11-17T19:07:44 |
huggingface/transformers | b543679d0ec057cb51a1d0be7b86df0e78556763 | ac7777be1675a46a4355142f6f48bf641e069bfb | [kernels] Remove RWKV kernel finally ! (#41493)
* rm kernel
* fix style | [
{
"path": "src/transformers/kernels/rwkv/wkv_cuda.cu",
"patch": "@@ -1,187 +0,0 @@\n-#include <stdio.h>\n-#include <assert.h>\n-\n-#define MIN_VALUE (-1e38)\n-\n-template <typename F>\n-__global__ void kernel_forward(\n- const int B, const int T, const int C, const F *__restrict__ const _w, const F *__re... | 2025-10-10T08:32:05 |
vercel/next.js | 678c69753b4f1127b1ecf33819fc6064898df758 | 3efbb1a14f79c72ddc10d983b683cf83384df353 | Upgrade Edge Runtime (#46818)
Hello,
This Edge Runtime update fix some small bugs, and also it allows using `TextDecoderStream` and `TextEncoderStream` for development (aka `next dev`)
Related: https://github.com/vercel/edge-runtime/releases/tag/edge-runtime%402.1.0
Fixes #47189
fix NEXT-833 ([link](https://linear.... | [
{
"path": "package.json",
"patch": "@@ -60,7 +60,7 @@\n \"@babel/plugin-proposal-object-rest-spread\": \"7.14.7\",\n \"@babel/preset-flow\": \"7.14.5\",\n \"@babel/preset-react\": \"7.14.5\",\n- \"@edge-runtime/jest-environment\": \"2.0.5\",\n+ \"@edge-runtime/jest-environment\": \"2.0.8\"... | 2023-04-27T17:04:14 |
nodejs/node | dd9cad9cb34f37ad47bf67996118efbc07787a2b | d8c2803dcf9a614dc4c627891e877fa24aa08b1a | doc: add note about mkdtemp() platform differences
PR-URL: https://github.com/nodejs/node/pull/26944
Fixes: https://github.com/nodejs/node/issues/26435
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> | [
{
"path": "doc/api/fs.md",
"patch": "@@ -2277,7 +2277,10 @@ changes:\n Creates a unique temporary directory.\n \n Generates six random characters to be appended behind a required\n-`prefix` to create a unique temporary directory.\n+`prefix` to create a unique temporary directory. Due to platform\n+inconsist... | 2019-03-27T14:38:57 |
rust-lang/rust | 70f376d308c6d144c897be988427a13c9a276b00 | 20a62ab2a112fa973b4e891afd2358a23c5aef78 | fix: Closure capturing for let exprs | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/closure.rs",
"patch": "@@ -1230,11 +1230,15 @@ impl InferenceContext<'_> {\n self.select_from_expr(*expr);\n }\n }\n+ Expr::Let { pat: _, expr } => {\n+ self.walk_expr(*expr);... | 2025-06-18T16:30:10 |
huggingface/transformers | ac7777be1675a46a4355142f6f48bf641e069bfb | 17c31a98ac7c728615eb934220c1a443be69a7c5 | fix bnb model loading (#41499) | [
{
"path": "src/transformers/quantizers/auto.py",
"patch": "@@ -126,6 +126,12 @@ def from_dict(cls, quantization_config_dict: dict):\n \"The model's quantization config from the arguments has no `quant_method` attribute. Make sure that the model has been correctly quantized\"\n )\... | 2025-10-10T08:27:29 |
golang/go | 0981724eaeb9e3a4553473072c38cf11822bc7fd | 9bdbed1d963a840d8c23640bbd20bd4cb9776859 | go/types: check for non-negative index in tparamIndex
There are code paths (particularly error formatting or tracing) that
call tparamIndex before the type parameter is bound. We cannot rely on
the index being non-negative.
Change-Id: Ibad91c691b4f319b0c7b465a750b679a8a7af6a1
Reviewed-on: https://go-review.googlesour... | [
{
"path": "src/cmd/compile/internal/types2/unify.go",
"patch": "@@ -9,7 +9,6 @@ package types2\n import (\n \t\"bytes\"\n \t\"fmt\"\n-\t\"internal/buildcfg\"\n )\n \n // The unifier maintains two separate sets of type parameters x and y\n@@ -162,13 +161,13 @@ func (d *tparamsList) index(typ Type) int {\n //... | 2021-11-17T14:38:16 |
nodejs/node | 415a825dc0f53710394d51482ff9b7b65473d5e2 | 8df9fdcc3990c8211014a9217935d7f4fb400195 | repl: remove usage of require('util') in `repl.js`
Use `require('internal/util/inspect').inspect` and
`require('internal/util/debuglog').debuglog` instead of
`require('util').inspect` and `require('util').debuglog`.
Refs: https://github.com/nodejs/node/issues/26546
PR-URL: https://github.com/nodejs/node/pull/26820
R... | [
{
"path": "lib/repl.js",
"patch": "@@ -51,8 +51,12 @@ const {\n isIdentifierStart,\n isIdentifierChar\n } = require('internal/deps/acorn/acorn/dist/acorn');\n-const internalUtil = require('internal/util');\n-const util = require('util');\n+const {\n+ decorateErrorStack,\n+ isError,\n+ deprecate\n+} =... | 2019-03-21T09:24:13 |
vercel/next.js | c4b0165da408ab6446fba0080371917ad217f383 | daa21df97debdc75d6d8a0c7f1048e10e02be881 | define refresh runtime for the entire module instead of just during initial execution (vercel/turbo#4726)
### Description
I _think_ HOCs will have the refresh signature call nested inside a
function, so this is necessary for correctly refreshing those?
fix WEB-823 | [
{
"path": "crates/turbopack-dev-server/src/source/mod.rs",
"patch": "@@ -505,9 +505,9 @@ impl ContentSource for NoContentSource {\n \n /// A rewrite returned from a [ContentSource]. This tells the dev server to\n /// update its parsed url, path, and queries with this new information, and any\n-/// later [Ne... | 2023-04-27T13:41:47 |
electron/electron | 225fe72d0337410117ad8f29647fc5ccd72e78c1 | 32e949efed094d8212d8aafd2e6d0e7f7ffb46c0 | Ensure that `window.open` does not override the child options
Fixes https://github.com/atom/electron/issues/3652. | [
{
"path": "atom/browser/lib/guest-window-manager.coffee",
"patch": "@@ -5,7 +5,7 @@ frameToGuest = {}\n \n # Copy attribute of |parent| to |child| if it is not defined in |child|.\n mergeOptions = (child, parent) ->\n- for own key, value of parent when key not in child\n+ for own key, value of parent when... | 2015-12-02T19:54:52 |
golang/go | 9bdbed1d963a840d8c23640bbd20bd4cb9776859 | 17b7604ef62316c7ea69e6a07f90282edcf4c874 | go/types, types2: complete methods on pointer receivers in missingMethod
We were not calling objDecl on methods on pointer receivers in
missingMethod. This may not have mattered before, but with lazy
completion of instance methods it is necessary.
Fixes #49579
Change-Id: Icddb1f3b16bef7d8017859734f9879a4f1cc18de
Rev... | [
{
"path": "src/cmd/compile/internal/types2/lookup.go",
"patch": "@@ -71,6 +71,8 @@ func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (o\n // lookupFieldOrMethod should only be called by LookupFieldOrMethod and missingMethod.\n // If checkFold is true, the lookup for methods will ... | 2021-11-17T14:35:57 |
nodejs/node | 520b3e63ea2518bd2b356fe2f38be99b2ab75fdb | f9da55cca2eda56ad2e35f654272c257d378d907 | util: fix map entries inspection
This makes sure the arrays returned by Map#entries() are handled as
any other array instead of just visualizing the entries as array.
Therefore options should have an impact on the arrays.
PR-URL: https://github.com/nodejs/node/pull/26918
Reviewed-By: Anna Henningsen <anna@addaleax.ne... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1180,27 +1180,28 @@ function formatMapIterInner(ctx, recurseTimes, entries, state) {\n const remaining = len - maxArrayLength;\n const maxLength = Math.min(maxArrayLength, len);\n let output = new Array(maxLength);\n- let start = '';\n- let end... | 2019-03-26T07:39:07 |
vercel/next.js | fafecb8438576c2baadb0af014081cf279ee02a2 | b002102c0bc62488bbfe2c3f4fbc30689d9e16ba | add missing exports for static generation bailout (#48910)
### What?
add missing exports from next-app-loader
### Why?
avoid crashing
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/app/layout-entry.tsx",
"patch": "@@ -1,10 +1,21 @@\n-export { default as AppRouter } from 'next/dist/client/components/app-router.js'\n-export { default as LayoutRouter } from 'next/dist/client/components/layout-router.js'\n-export { default as Rend... | 2023-04-27T13:28:10 |
golang/go | 17b7604ef62316c7ea69e6a07f90282edcf4c874 | 0555ea3ce997db6e6ef14ba9f55857f359b3fbf2 | go/types: match Go 1.17 compiler error messages more closely
Introduce a new constant compilerErrorMessages, which is set to false
for now, so that we can port types2 error handling more precisely. Use
this to (partially) port CL 363436, excluding issue49005.go, which does
not exist in go/types (it was added in a prev... | [
{
"path": "src/go/types/assignments.go",
"patch": "@@ -84,10 +84,18 @@ func (check *Checker) assignment(x *operand, T Type, context string) {\n \n \treason := \"\"\n \tif ok, code := x.assignableTo(check, T, &reason); !ok {\n-\t\tif reason != \"\" {\n-\t\t\tcheck.errorf(x, code, \"cannot use %s as %s value ... | 2021-11-17T00:17:31 |
nodejs/node | f2dc99c127092c7535aedf954e371d5ffe426024 | 2506ab5f396e5f3466485e52739937b662a6cb42 | test: do not require flags when executing a file
Instead of throwing an error in case a flag is missing, just start
a `child_process` that includes all flags. This improves the situation
for all developers in case they want to just plainly run a test.
Co-authored-by: Rich Trott <rtrott@gmail.com>
PR-URL: https://git... | [
{
"path": "test/common/index.js",
"patch": "@@ -80,7 +80,18 @@ if (process.argv.length === 2 &&\n // If the binary is build without `intl` the inspect option is\n // invalid. The test itself should handle this case.\n (process.features.inspector || !flag.startsWith('--inspect')... | 2019-03-22T15:39:39 |
vercel/next.js | b002102c0bc62488bbfe2c3f4fbc30689d9e16ba | 3ed412a308af1534f917646c49476749b76ae239 | Ensure __PAGE__ is checked in all cases (#48862)
## What
We recently added the searchParams as part of the __PAGE__ key in the
router. There were still a few cases where it incorrectly checked equals
instead of startsWith.
## How
Searched for ` '__PAGE__'` in order to find the leftover cases and
changed th... | [
{
"path": "packages/next/src/client/components/router-reducer/compute-changed-path.ts",
"patch": "@@ -33,7 +33,7 @@ export function extractPathFromFlightRouterState(\n )\n return undefined\n \n- if (segment === '__PAGE__') return ''\n+ if (segment.startsWith('__PAGE__')) return ''\n \n const path ... | 2023-04-27T12:51:39 |
electron/electron | 95675996989e9675acd06d3fcc4fa30b615eadfc | 202475f5a98cf4530845b80c87cd6c218059dc82 | Update debugging-main-process.md | [
{
"path": "docs/tutorial/debugging-main-process.md",
"patch": "@@ -19,7 +19,7 @@ Like `--debug` but pauses the script on the first line.\n \n ## Use node-inspector for Debugging\n \n-__Note:__ Electron uses node v0.11.13, which currently doesn't work very well\n+__Note:__ Electron doesn't currently work ver... | 2015-12-02T10:23:21 |
golang/go | ab75484d7130496ac9b204b0d418b1ec95bee2f8 | 54b9cb80372f45b5e86c5246717c766fac6f1fe6 | internal/fuzz: limit number of consecutive mutations
This makes two changes: (1) mutator.mutate now only applies a single
mutation to the input, and (2) in workerServer.fuzz if, after five
mutations are applied to the input, no new coverage is found the input
is reset to its initial state. This process is repeated unt... | [
{
"path": "src/internal/fuzz/mutator.go",
"patch": "@@ -125,48 +125,44 @@ func (m *mutator) mutate(vals []interface{}, maxBytes int) {\n }\n \n func (m *mutator) mutateInt(v, maxValue int64) int64 {\n-\tnumIters := 1 + m.r.exp2()\n \tvar max int64\n-\tfor iter := 0; iter < numIters; iter++ {\n+\tfor {\n \t\... | 2021-11-16T01:47:15 |
huggingface/transformers | c20849bad1df6a557f9a62fa7fb2abf469201296 | 776eea8612458f60bbe684f38ea34f85fe890486 | [`CI`] Fix copies on main (#41486)
fix copies | [
{
"path": "src/transformers/models/apertus/configuration_apertus.py",
"patch": "@@ -177,13 +177,6 @@ def __init__(\n attention_dropout=0.0,\n **kwargs,\n ):\n- super().__init__(\n- pad_token_id=pad_token_id,\n- bos_token_id=bos_token_id,\n- eos_tok... | 2025-10-09T16:38:14 |
nodejs/node | 7d0e50dcfef98ca56715adf74678bcaf4aa08796 | 36e5fd2915e1ff9a8f0944b1a7783760fab38654 | crypto: add crypto.sign() and crypto.verify()
These methods are added primarily to allow signing and verifying
using Ed25519 and Ed448 keys, which do not support streaming of
input data. However, any key type can be used with these new
APIs, to allow better performance when only signing/verifying
a single chunk.
Fixe... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -2659,6 +2659,35 @@ added: v10.0.0\n Enables the FIPS compliant crypto provider in a FIPS-enabled Node.js build.\n Throws an error if FIPS mode is not available.\n \n+### crypto.sign(algorithm, data, key)\n+<!-- YAML\n+added: REPLACEME\n+-->\n+* `algorithm` {strin... | 2019-03-12T13:17:10 |
electron/electron | c691094aa103ee7d036ba524623edd280371dc72 | 0d50e08ed106ae2897d6320966b47ac0357b8da1 | spec: Fix failing tests on win32 | [
{
"path": "spec/asar-spec.coffee",
"patch": "@@ -424,6 +424,8 @@ describe 'asar package', ->\n assert.equal internalModuleReadFile(p).toString().trim(), 'a'\n \n describe 'process.noAsar', ->\n+ errorName = if process.platform is 'win32' then 'ENOENT' else 'ENOTDIR'\n+\n beforeEach ->... | 2015-12-02T03:00:28 |
golang/go | 54b9cb80372f45b5e86c5246717c766fac6f1fe6 | 4083a6f3776487e707d4c56c63b1d7dbabb01fb0 | runtime: make sure to properly park before going to sleep in Windows ConsoleControlHandler
This change avoids the program intermittently hanging on windows/arm64 after getting
a signal for which the ConsoleControlHandler can not return.
Fixes #49458
Change-Id: Ie28f0f437c7e0f9634b6b3e29dc6cdebd5d996f6
Reviewed-on: h... | [
{
"path": "src/runtime/os_windows.go",
"patch": "@@ -1194,8 +1194,10 @@ func ctrlHandler(_type uint32) uintptr {\n \tif sigsend(s) {\n \t\tif s == _SIGTERM {\n \t\t\t// Windows terminates the process after this handler returns.\n-\t\t\t// Block indefinitely to give signal handlers a chance to clean up.\n-\t... | 2021-11-16T22:35:59 |
huggingface/transformers | 3839d5101338bd44d35c09df76da1ec1b21964e2 | 78f79ba5af6546ffa0d8c5aea5404533dcf70f7d | `report_to` default changed to "none" + cleaning deprecated env var (#41375)
* reporting
* fix
* fix | [
{
"path": "docs/source/en/tasks/knowledge_distillation_for_image_classification.md",
"patch": "@@ -109,7 +109,6 @@ training_args = TrainingArguments(\n output_dir=\"my-awesome-model\",\n num_train_epochs=30,\n fp16=True,\n- logging_dir=f\"{repo_name}/logs\",\n logging_strategy=\"epoch\",\... | 2025-10-09T16:28:48 |
nodejs/node | 36e5fd2915e1ff9a8f0944b1a7783760fab38654 | f11f1808785fee9741436dfb43a87e2050d8b3af | doc: correct typo: cert.issuerCertificate
- docs incorrectly mention issuerCert, should be issuerCertificate
Fix for Commit:
https://github.com/nodejs/node/commit/a856406c2dc#diff-f6e3a86962eaf0897ab59e88b418e64fR678
Fix for PR: https://github.com/nodejs/node/pull/24358 | [
{
"path": "doc/api/tls.md",
"patch": "@@ -855,7 +855,7 @@ certificate.\n alternative to the `subject` names.\n * `infoAccess` {Array} (Optional) An array describing the AuthorityInfoAccess,\n used with OCSP.\n-* `issuerCert` {Object} (Optional) The issuer certificate object. For\n+* `issuerCertificate... | 2019-03-26T19:55:21 |
huggingface/transformers | b450d55a91828a0868ad4345b53316e49000c9db | 1a3a5f5289e13980642315277ea5d9986622ffc8 | Remove `past_index` (#41384)
* remove-tpu-num-cores
* fix
* rm past index
* Revert "fix"
This reverts commit 7608a6c059210957d3a77812e66178c8b79a9313.
* Revert "remove-tpu-num-cores"
This reverts commit ef08a51d71389849851518d67d8ad6c9ea8f04fc. | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -2434,10 +2434,6 @@ def _inner_training_loop(\n if hasattr(epoch_dataloader, \"set_epoch\"):\n epoch_dataloader.set_epoch(epoch)\n \n- # Reset the past mems state at the beginning of each epoch if necessary.\n- ... | 2025-10-09T16:06:46 |
vercel/next.js | 7a5ef27b5edb6ffbabe575e2704f0327289de889 | ffefb31efb26187f3ef609227e483e2dcf59459a | Preload css (#48840)
This PR implements preloading of CSS from RSC.
1. The underlying Flight protocol was extended in
https://github.com/facebook/react/pull/26502 to allow sending hints from
RSC to SSR and Client runtimes. React was updated to include these
changes.
2. We now call `ReactDOM.preload()` for each ... | [
{
"path": "package.json",
"patch": "@@ -196,13 +196,13 @@\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-c8369527e-20230420\",\n- \"react-experimental-builtin\": \"npm:react@0.0.0-experimental-c8369... | 2023-04-27T10:51:52 |
nodejs/node | 8c69e06972b5b0aa7e45163f860fb63d90203289 | bcbd35a48d00c915690682b546e6c282bd15150b | tls: return an OpenSSL error from renegotiate
A generic error lacks any of the context or detail of the underlying
OpenSSL error, so throw from C++, and report the OpenSSL error to the
callback.
PR-URL: https://github.com/nodejs/node/pull/26868
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ben Noordhu... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1771,11 +1771,6 @@ Valid TLS protocol versions are `'TLSv1'`, `'TLSv1.1'`, or `'TLSv1.2'`.\n Attempting to set a TLS protocol `minVersion` or `maxVersion` conflicts with an\n attempt to set the `secureProtocol` explicitly. Use one mechanism or the other.\n \n-<a ... | 2019-03-27T19:10:48 |
golang/go | 4083a6f3776487e707d4c56c63b1d7dbabb01fb0 | 1d004fa2015d128acf6302fc74b95f6a36c35680 | go/types: better error for type assertion/switch on type parameter value
This is a port of CL 363439 from types2 to go/types.
Change-Id: Ic71871874345e1d0a4a42703e3673aadd11f2bfc
Reviewed-on: https://go-review.googlesource.com/c/go/+/364378
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfind... | [
{
"path": "src/go/types/expr.go",
"patch": "@@ -1432,6 +1432,11 @@ func (check *Checker) exprInternal(x *operand, e ast.Expr, hint Type) exprKind {\n \t\tif x.mode == invalid {\n \t\t\tgoto Error\n \t\t}\n+\t\t// TODO(gri) we may want to permit type assertions on type parameter values at some point\n+\t\tif... | 2021-11-16T16:24:22 |
huggingface/transformers | 823fab4860ec7a5c71d8a21f834104c6deedfaa4 | 42d4e13a0bcaf7e7828f7b79ea2997be46a3dad8 | Fix bnb fsdp loading for pre-quantized checkpoint (#41415)
* fix
* fix
* get_param_name
* fix device name | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -761,21 +761,17 @@ def _load_state_dict_into_meta_model(\n # and then cast it to CPU to avoid excessive memory usage on each GPU\n # in comparison to the sharded model across GPUs.\n if is_fsdp_enabl... | 2025-10-09T16:05:35 |
vercel/next.js | d9850940addac09551735a46dec2bcfebd0d9150 | 0b59b1708ff470fe9bab64aaecb047b9f860b7ba | Fix scrolling when invisible element is targeted (#48874)
### What?
Mux reported they're experiencing a specific case where scroll wasn't
applied. I've found a bug when the first element in a layout or page,
the one that React will return from `findDOMNode`, is display: hidden.
At that point the rect is is `0` `... | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -105,6 +105,26 @@ function findDOMNode(\n return ReactDOM.findDOMNode(instance)\n }\n \n+const rectProperties = [\n+ 'bottom',\n+ 'height',\n+ 'left',\n+ 'right',\n+ 'top',\n+ 'width',\n+ 'x',\n+ 'y',\n+] as const\n+/*... | 2023-04-27T08:00:51 |
nodejs/node | bcbd35a48d00c915690682b546e6c282bd15150b | 805e614ba7401a04330d8f2878d61213268d6e8b | crypto: add openssl specific error properties
Don't force the user to parse the long-style OpenSSL error message,
decorate the error with the library, reason, code, function.
PR-URL: https://github.com/nodejs/node/pull/26868
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -186,10 +186,6 @@ circumstance of why the error occurred. `Error` objects capture a \"stack trace\"\n detailing the point in the code at which the `Error` was instantiated, and may\n provide a text description of the error.\n \n-For crypto only, `Error` objects wi... | 2019-03-27T19:10:21 |
huggingface/transformers | 42d4e13a0bcaf7e7828f7b79ea2997be46a3dad8 | 0eae41ad36c2a9823bf3906eb9e332f125583998 | RT-Detr correct 2d positional embeddings for non-square images (#41380)
* Correct 2d positional embeddings for non-square images
* Simplify bug fix propagate changes to other models
---------
Co-authored-by: Konstantinos Pitas <kostasp210@gmail.com>
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.git... | [
{
"path": "src/transformers/models/d_fine/modeling_d_fine.py",
"patch": "@@ -2064,7 +2064,7 @@ def build_2d_sincos_position_embedding(\n ):\n grid_w = torch.arange(torch_int(width), device=device).to(dtype)\n grid_h = torch.arange(torch_int(height), device=device).to(dtype)\n- gri... | 2025-10-09T15:58:22 |
golang/go | 1d004fa2015d128acf6302fc74b95f6a36c35680 | 03dd049d6efcbca6b829d7ed504ceea6318f2036 | cmd/compile: emit definition of 'any' only if generic enabled
CL 364377 emitted definition of 'any' when compiling runtime. But 'any'
is only available when generic enabled. Thus emitting its definition
unconditionally causes the compiler crashes.
Updates #49619
Change-Id: I0888ca1cbc7a7df300310a99a344f170636333f2
R... | [
{
"path": "src/cmd/compile/internal/reflectdata/reflect.go",
"patch": "@@ -1384,7 +1384,9 @@ func WriteBasicTypes() {\n \t\t}\n \t\twriteType(types.NewPtr(types.Types[types.TSTRING]))\n \t\twriteType(types.NewPtr(types.Types[types.TUNSAFEPTR]))\n-\t\twriteType(types.AnyType)\n+\t\tif base.Flag.G > 0 {\n+\t\... | 2021-11-17T03:17:31 |
electron/electron | 5cae8397ccaf6116be4606dc81da498fa529bc9d | 9a93ecc3cfe74f6d953751dfc75059fcb81b9feb | :memo: [ci skip] fix more typos | [
{
"path": "docs-translations/pt-BR/api/shell.md",
"patch": "@@ -1,11 +1,11 @@\n # shell\n \n-O módulo `shell` fornece funções relacionadas intereções com o OS do usuário.\n+O módulo `shell` fornece funções relacionadas à integração com o desktop.\n \n Um exemplo para abrir uma URL no browser padrão do usuár... | 2015-12-01T23:57:07 |
nodejs/node | 805e614ba7401a04330d8f2878d61213268d6e8b | afad3b443e5aa90a771031ea9045182d1ecbf11a | errors: make range mandatory in ERR_OUT_OF_RANGE
So far the range argument was allowed to be undefined. This is not
used in the codebase anymore and therefore it is best to make it
mandatory for the best user experience.
PR-URL: https://github.com/nodejs/node/pull/26924
Reviewed-By: James M Snell <jasnell@gmail.com>
... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -995,10 +995,10 @@ E('ERR_NO_ICU',\n E('ERR_NO_LONGER_SUPPORTED', '%s is no longer supported', Error);\n E('ERR_OUT_OF_RANGE',\n (str, range, input, replaceDefaultBoolean = false) => {\n+ assert(range, 'Missing \"range\" argument');\n let msg = repla... | 2019-03-26T14:23:27 |
vercel/next.js | b50ecb7e53727923ab9a9714b534aca93f68f70d | 0cfa3fce23ccacec1129972f493968483335dd93 | add support for static implicit metadata in turbopack (#48823)
### What?
* support local static metadata files; opengraph-image, twitter-image,
favicon, manifest, icon, apple-icon
* support global static metadata files: robots.txt, sitemap.xml,
favicon.ico
* dynamic metadata is not yet implemented, but yields a... | [
{
"path": "packages/next-swc/crates/napi/src/app_structure.rs",
"patch": "@@ -8,7 +8,7 @@ use napi::{\n };\n use next_core::app_structure::{\n find_app_dir, get_entrypoints as get_entrypoints_impl, Components, ComponentsVc, Entrypoint,\n- EntrypointsVc, LoaderTree, LoaderTreeVc,\n+ EntrypointsVc, ... | 2023-04-27T05:54:53 |
golang/go | 3c00a2839a8b577912f78d5fe1ba2d765d0f6c7c | 2f937d9bfcbb1e95c089a3af37677bacb185aedb | cmd/compile/internal/types2: return an error from Instantiate on incorrect len(targs)
This CL is a clean port of CL 363635 from go/types to types2.
Updates #47916
Change-Id: Ib46758435c31ad9a6a4a63f552503d5afa66b5c0
Reviewed-on: https://go-review.googlesource.com/c/go/+/364534
Trust: Robert Griesemer <gri@golang.org... | [
{
"path": "src/cmd/compile/internal/types2/instantiate.go",
"patch": "@@ -13,40 +13,50 @@ import (\n \t\"fmt\"\n )\n \n-// Instantiate instantiates the type typ with the given type arguments targs.\n-// typ must be a *Named or a *Signature type, and its number of type parameters\n-// must match the number o... | 2021-11-16T20:20:11 |
huggingface/transformers | 0eae41ad36c2a9823bf3906eb9e332f125583998 | 589fc29c9da0b98b8a9cdf3b0d4cbe949886c274 | Add Code World Model (CWM) (#41199)
* [wip][cwm] Code World Model stubs and setup in HF Transformers
* [wip] Get other things working
* [wip] Working
* Tokenizer pad
* fix: cwm window attn
* temp remove test
* temp remove test
* Fixes
* Temporarily add auto config remapping option until VLLM 0.11 is out
* Fix... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1026,6 +1026,8 @@\n title: CLIPSeg\n - local: model_doc/clvp\n title: CLVP\n+ - local: model_doc/cwm\n+ title: Code World Model (CWM)\n - local: model_doc/cohere2_vision\n title: Cohere2Vision\n - lo... | 2025-10-09T15:57:45 |
rust-lang/rust | b93020257e4b6c88cd7947257984b1da2158a757 | 27733d46d79f4eb92e240fbba502c43022665735 | hir_analysis: add `#![rustc_no_implicit_bounds]`
Adds a new `rustc_attrs` attribute that stops rustc from adding any
default bounds. Useful for tests where default bounds just add noise and
make debugging harder. | [
{
"path": "compiler/rustc_feature/src/builtin_attrs.rs",
"patch": "@@ -1108,6 +1108,10 @@ pub static BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[\n TEST, rustc_insignificant_dtor, Normal, template!(Word),\n WarnFollowing, EncodeCrossCrate::Yes\n ),\n+ rustc_attr!(\n+ TEST, rust... | 2025-06-18T12:23:35 |
electron/electron | 9a93ecc3cfe74f6d953751dfc75059fcb81b9feb | 229dc02a41b06f47285746f6de3350795d36e8f3 | :memo: [ci skip] fix typos | [
{
"path": "docs-translations/pt-BR/api/accelerator.md",
"patch": "@@ -1,7 +1,7 @@\n # Acelerador (teclas de atalhos)\n \n-Um acelerador é uma string que representa um atalho de tecla. Isso pode conter\n-multiplos modificadores e códigos chaves, combinado pelo caracter `+`.\n+Um acelerador é uma string que r... | 2015-12-01T23:46:13 |
vercel/next.js | 073a1753d0fa8fe19c6e91cefef2828de717f604 | f4a01b4b0e90fb1704b6a29d6dacf7863f8a87c6 | Ensure require-hook env is set properly on deploy (#48902)
This ensures we set the pre-bundled react env variable early enough when
in a deploy environment as otherwise incorrect react versions could be
initialized with app directory.
Test deployment with fix can be seen here
https://metadata-dynamic-lsbqdamud-v... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -283,6 +283,15 @@ export default async function build(\n \n if (isAppDirEnabled) {\n process.env.NEXT_PREBUNDLED_REACT = '1'\n+\n+ if (!process.env.__NEXT_TEST_MODE && ciEnvironment.hasNextSupport) {\n+ const requireHoo... | 2023-04-27T03:28:51 |
nodejs/node | afad3b443e5aa90a771031ea9045182d1ecbf11a | 63e13fd2209ac407ee70505dbffaa4e53138614b | test: update postmortem metadata test for V8 7.4
Summary of changes:
- v8dbg_class_FixedTypedArrayBase__external_pointer__Object
- Type changed in https://github.com/v8/v8/commit/f70bb59b57e2a66f165a728c1799e36ceb0e9fc8#diff-f3f182b0510ba2ee39ae87e421ff110b.
- Use v8dbg_class_FixedTypedArrayBase__external_pointer... | [
{
"path": "test/v8-updates/test-postmortem-metadata.js",
"patch": "@@ -64,11 +64,11 @@ function getExpectedSymbols() {\n 'v8dbg_class_FixedArray__data__uintptr_t',\n 'v8dbg_class_FixedArrayBase__length__SMI',\n 'v8dbg_class_FixedTypedArrayBase__base_pointer__Object',\n- 'v8dbg_class_FixedType... | 2019-03-28T12:47:22 |
golang/go | 2f937d9bfcbb1e95c089a3af37677bacb185aedb | 1c13b58abaaeaaaa54a5471613c020fe78105016 | cmd/compile/internal/types2: add a test for Context deduplication of hash collisions
This CL is a clean port of CL 363517 from go/types to types2,
with the exception that types_test.go was not removed because
it's still needed to set a types2-specific test flag.
Change-Id: I12177866537c0f95f3fa36fa0f4aa02016609ca9
Re... | [
{
"path": "src/cmd/compile/internal/types2/context_test.go",
"patch": "@@ -0,0 +1,69 @@\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 types2\n+\n+import (\n+\t\"testing\"\n+)\n... | 2021-11-16T19:36:09 |
huggingface/transformers | 589fc29c9da0b98b8a9cdf3b0d4cbe949886c274 | 26b5b52676ec22e1cf94bc27ed1a6c542e60159d | enhance patched_tearDown to support python 3.11+ (#41429)
* enhance to support python 3.11+
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
---------
Signed-off-by: Yao, Matrix <matrix.yao@intel.com> | [
{
"path": "src/transformers/testing_utils.py",
"patch": "@@ -3533,8 +3533,15 @@ def _patched_tearDown(self, *args, **kwargs):\n # We still record those failures not handled by the patched methods, and add custom messages along with the usual\n # pytest failure report.\n regular_failures_info = [... | 2025-10-09T15:49:29 |
rust-lang/rust | 2c434edf2418dcec1f9a3544ecd497243c7872af | 1bb335244c311a07cee165c28c553c869e6f64a9 | remove duplicate crash test | [
{
"path": "library/alloctests/testing/crash_test.rs",
"patch": "@@ -1,9 +1,8 @@\n use std::cmp::Ordering;\n+use std::fmt::Debug;\n use std::sync::atomic::AtomicUsize;\n use std::sync::atomic::Ordering::SeqCst;\n \n-use crate::fmt::Debug; // the `Debug` trait is the only thing we use from `crate::fmt`\n-\n /... | 2025-06-18T14:04:02 |
electron/electron | 229dc02a41b06f47285746f6de3350795d36e8f3 | 85b7aa6933c2d9cdce5aac1a53a0d49fdccff3ff | :memo: [ci skip] Update to match english docs, fix typos | [
{
"path": "docs-translations/pt-BR/api/process.md",
"patch": "@@ -1,22 +1,48 @@\n # process\n-O objeto `process` no Electron tem as seguintes diferenças de um upstream node:\n+O objeto `process` no Electron tem as seguintes diferenças do objeto no upstream node:\n \n-* `process.type` String - Tipo de proces... | 2015-12-01T23:34:35 |
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.