repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | dd8d425fedd88970a7ee79e908eb47f6d1fcdcad | df57592276bc26e2eb4e4ca5e77e4e2e422c7c6b | all: fix some lint issues
Make some code more simple.
Change-Id: I801adf0dba5f6c515681345c732dbb907f945419
GitHub-Last-Rev: a505146baca00a1b3268d11d10510afa8cea6f1d
GitHub-Pull-Request: golang/go#49626
Reviewed-on: https://go-review.googlesource.com/c/go/+/364634
Run-TryBot: Ian Lance Taylor <iant@google.com>
Auto-Su... | [
{
"path": "src/crypto/des/block.go",
"patch": "@@ -248,16 +248,12 @@ func (c *desCipher) generateSubkeys(keyBytes []byte) {\n // By doing so, we can have the input blocks (four bits each), and the key blocks (six bits each) well-aligned without\n // extra shifts/rotations for alignments.\n func unpack(x uin... | 2021-11-23T03:00:32 |
huggingface/transformers | 3dd82faf3e887043db772d4c1191ec40271a1584 | 9574fb69040fdf93df58463bef3d2f310533be2d | fix(models): Forward timm model kwargs to timm.create_model for OmDet-Turbo (#44611)
* fix: Add and forward timm_model_kwargs to timm.create_model
* fix: Revert TimmBackboneConfig, add BC migration comment
* change: Address review
* nit: Add comment | [
{
"path": "src/transformers/models/omdet_turbo/configuration_omdet_turbo.py",
"patch": "@@ -161,6 +161,13 @@ def __init__(\n **kwargs,\n )\n \n+ # Extract timm.create_model kwargs; TimmBackbone doesn't forward arbitrary config attrs to timm\n+ timm_kwargs = {}\n+ if ... | 2026-03-13T11:47:34 |
rust-lang/rust | c8e2a65ed16b948819cee23d883d8e598665318b | 4bd3b74aa9ec4a21507d73f712186619baf93ba0 | tidy: use a lockfile for js tools instead of npx
this makes us less vulnerable to MITM and supply chain attacks.
it also means that the CI scripts are no longer responsible for
tracking the versions of these tools.
it should also avoid the situation where local tsc and CI
disagree on the presense of errors due to th... | [
{
"path": ".gitignore",
"patch": "@@ -85,8 +85,6 @@ __pycache__/\n \n ## Node\n node_modules\n-package-lock.json\n-package.json\n /src/doc/rustc-dev-guide/mermaid.min.js\n \n ## Rustdoc GUI tests",
"additions": 0,
"deletions": 2,
"language": "Unknown"
},
{
"path": "package.json",
"pa... | 2025-06-27T19:29:39 |
electron/electron | 249777721ca52b23e6d856b83112550c3e31c197 | 31e947a9f782a7ac3e05371acd2f31f717ccaa5b | Fix symbols zip's name | [
{
"path": "script/create-dist.py",
"patch": "@@ -210,7 +210,7 @@ def create_ffmpeg_zip():\n \n \n def create_symbols_zip():\n- dist_name = get_zip_name(PROJECT_NAME, ELECTRON_VERSION)\n+ dist_name = get_zip_name(PROJECT_NAME, ELECTRON_VERSION, 'symbols')\n zip_file = os.path.join(DIST_DIR, dist_name)\n ... | 2016-09-01T10:18:19 |
huggingface/transformers | 9574fb69040fdf93df58463bef3d2f310533be2d | ca960f0cc0d2c2549b0f1834a51fa91230e50134 | Ensure same `dtype` for subconfig when `_from_config` (#44629)
fix for vllm
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -1454,6 +1454,12 @@ def _from_config(cls, config, **kwargs):\n if isinstance(dtype, str):\n dtype = getattr(torch, dtype)\n \n+ # Set the same `dtype` on all subconfigs to avoid dtype mismatch. When \"auto\" dtype\n+ ... | 2026-03-13T11:21:05 |
vercel/next.js | ef0c5e20b8ad89876d55f17bdd70291256f0587d | 1491d4c2eddba04ab8007e5067dfa97ee2754949 | add support for app pages to next.rs api (#54668)
### What?
fix the paths for app pages with route groups (e. g. `(dashboard)`)
Closes WEB-1463
---------
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": "packages/next-swc/crates/next-api/src/app.rs",
"patch": "@@ -586,10 +586,10 @@ impl AppEndpoint {\n .into_iter()\n .collect(),\n };\n+ let manifest_path_prefix = get_asset_prefix_from_pathname(&app_entry.pathname);\n let app_build_manifest_ou... | 2023-08-28T14:23:43 |
golang/go | df57592276bc26e2eb4e4ca5e77e4e2e422c7c6b | 507a44dc228a3817e7007f292a404fe6c9f66315 | archive/zip: permit zip files to have prefixes
A Java jar file is a zip file, but it can have a prefix that is a bash
script that unpacks the zip file. Most zip programs ignore such prefixes.
This CL changes the archive/zip package to do the same.
Fixes #10464
Fixes #51337
Change-Id: I976e9c64684644317bd21077bc5b4a2... | [
{
"path": "src/archive/zip/reader.go",
"patch": "@@ -33,6 +33,10 @@ type Reader struct {\n \tComment string\n \tdecompressors map[uint16]Decompressor\n \n+\t// Some JAR files are zip files with a prefix that is a bash script.\n+\t// The baseOffset field is the start of the zip file proper.\n+\tbaseOff... | 2022-02-25T03:23:17 |
electron/electron | cd25066c9f8276e391738e090da62c554aa3208e | af9e010162adaf3261cce5ee35b426db235ffa53 | Fix oops on Windows / Linux. | [
{
"path": "atom/browser/atom_browser_main_parts.cc",
"patch": "@@ -157,7 +157,7 @@ void AtomBrowserMainParts::PreMainMessageLoopRun() {\n // The corresponding call in macOS is in AtomApplicationDelegate.\n Browser::Get()->WillFinishLaunching();\n base::DictionaryValue* empty_info = new base::Dictionar... | 2016-09-01T00:26:25 |
nodejs/node | 0e3d774ed21375675b024f555a67773821e56a9d | 3ebae6cf1b20ce104423214d75c3c84129a8f141 | fs: fix existsSync for invalid symlink at win32
Fixes: https://github.com/nodejs/node/issues/30538
PR-URL: https://github.com/nodejs/node/pull/30556
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/fs.js",
"patch": "@@ -234,7 +234,16 @@ function existsSync(path) {\n return false;\n }\n const ctx = { path };\n- binding.access(pathModule.toNamespacedPath(path), F_OK, undefined, ctx);\n+ const nPath = pathModule.toNamespacedPath(path);\n+ binding.access(nPath, F_OK, undefined, c... | 2019-11-22T06:01:21 |
vercel/next.js | dda62b693e3e9cf9fd566085e7372c46c16fa14a | 2ab39ec14a0dea9b9f8a4f841efb89cf5fffb99e | Fix weight values above 900 not working with Google Fonts (#54339)
## What?
This PR fixes issue #54304. As discussed in the issue it was suspected that the values of weights were not being sorted correctly. The weights were being sorted in lexicographical order.
In order for Google fonts to work, Google Fonts need t... | [
{
"path": "packages/font/src/google/get-google-fonts-url.ts",
"patch": "@@ -1,3 +1,5 @@\n+import { sortFontsVariantValues } from './sort-fonts-variant-values'\n+\n /**\n * Generate the Google Fonts URL given the requested weight(s), style(s) and additional variable axes\n */\n@@ -53,7 +55,7 @@ export func... | 2023-08-28T12:02:40 |
huggingface/transformers | ca960f0cc0d2c2549b0f1834a51fa91230e50134 | adc2f16bf1824f7b57c790b4cf3bc48f95ecec69 | Remove `cache_position` in more models (2) (#44602)
* bert and the likes
* NO COPIED FROM IN MODULAR IT IS AUTOMATIC
* more more
* idefics
* more
* t5 and the likes
* fix and simplify the t5s
* fix random test
* review comments
* those got added in between but were previously removed
* this random signature ... | [
{
"path": "docs/source/en/model_doc/pp_ocrv5_server_det.md",
"patch": "@@ -13,7 +13,7 @@ specific language governing permissions and limitations under the License.\n rendered properly in your Markdown viewer.\n \n -->\n-*This model was released on 2025-5-20 and added to Hugging Face Transformers on 2026-03-... | 2026-03-12T22:38:12 |
rust-lang/rust | e1d4f2a0c297690ddfc24815de57539f532f2471 | 12865ffd0dfb4ea969e2f16eb0140238bb9dd382 | tests: Require `run-fail` ui tests to have an exit code (`SIGABRT` not ok)
And introduce two new directives for ui tests:
* `run-crash`
* `run-fail-or-crash`
Normally a `run-fail` ui test like tests that panic shall not be
terminated by a signal like `SIGABRT`. So begin having that as a hard
requirement.
Some of our... | [
{
"path": "src/doc/rustc-dev-guide/src/tests/directives.md",
"patch": "@@ -75,8 +75,10 @@ expectations](ui.md#controlling-passfail-expectations).\n | `check-fail` | Building (no codegen) should fail | `ui`, `crashes` | N/A |\n | `build-pass` ... | 2025-06-25T05:56:40 |
golang/go | 4c565a5561e33e1d488116ea45c35d3ce408cf93 | 0ad74fd1dcb278b7d9348e9c8a46152bdab4c376 | time: return ENOENT instead of ERROR_PATH_NOT_FOUND in windows
When using windows some users got a weird error (File not found) when the timezone database is not found. It happens because some methods in the time package don't treat ERROR_PATH_NOT_FOUND and ENOTDIR. To solve it was added a conversion to ENOTENT error.... | [
{
"path": "src/time/sys_windows.go",
"patch": "@@ -16,6 +16,10 @@ func interrupt() {\n func open(name string) (uintptr, error) {\n \tfd, err := syscall.Open(name, syscall.O_RDONLY, 0)\n \tif err != nil {\n+\t\t// This condition solves issue https://go.dev/issue/50248\n+\t\tif err == syscall.ERROR_PATH_NOT_F... | 2022-01-31T22:47:42 |
electron/electron | 5cbc8d5c7123ea5bb8cdf2552ae2dd2e509c56c8 | be4bc6b7efcfd19e4c32cf09caafb03b13eed972 | fix ambiguous constructor call | [
{
"path": "atom/browser/api/atom_api_session.cc",
"patch": "@@ -369,7 +369,7 @@ void DidCalculateBlobSize(\n uint64_t total_size = blob_reader->total_size();\n int bytes_read = 0;\n scoped_refptr<net::IOBuffer> blob_data =\n- new net::IOBuffer(total_size);\n+ new net::IOBuffer(static_cast<si... | 2016-08-23T08:34:03 |
nodejs/node | 3ebae6cf1b20ce104423214d75c3c84129a8f141 | a025c5a8745637aa5f6e06acab0c15461a920d8e | worker: add argv constructor option
A convenience option to populate `process.argv` in worker threads.
PR-URL: https://github.com/nodejs/node/pull/30559
Fixes: https://github.com/nodejs/node/issues/30531
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: ... | [
{
"path": "doc/api/worker_threads.md",
"patch": "@@ -510,6 +510,9 @@ changes:\n - version: v13.2.0\n pr-url: https://github.com/nodejs/node/pull/26628\n description: The `resourceLimits` option was introduced.\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/30559\n+ d... | 2019-11-20T16:55:36 |
huggingface/transformers | adc2f16bf1824f7b57c790b4cf3bc48f95ecec69 | 745341d8a27e6160caf1a18cdd3e81d876a4a3ad | fix: cast to proper dtype in EmbeddingParallel (#44612)
Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -967,7 +967,7 @@ def _prepare_output_fn(self, mod, outputs, device_mesh):\n input_mask = mod._input_mask\n # Use multiplication instead of in-place assignment to preserve gradients\n mask_expanded ... | 2026-03-12T20:45:17 |
vercel/next.js | 2ab39ec14a0dea9b9f8a4f841efb89cf5fffb99e | 41368670a32520fddd89cc4dd4b9f085e8705587 | Implement hot reloader interface for Turbopack (#54632)
Implements the `NextJsHotReloaderInterface` type for the Turbopack
implementation. This removes the Proxy that had an `any` type and did
not have all methods implemented.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your... | [
{
"path": "packages/next/src/server/dev/hot-reloader-types.ts",
"patch": "@@ -6,7 +6,7 @@ import type getBaseWebpackConfig from '../../build/webpack-config'\n import type { RouteMatch } from '../future/route-matches/route-match'\n \n export interface NextJsHotReloaderInterface {\n- activeConfigs?: Array<Aw... | 2023-08-28T11:34:38 |
golang/go | 0ad74fd1dcb278b7d9348e9c8a46152bdab4c376 | 831f1168289e65a7ef49942ad8d16cf14af2ef43 | cmd/cgo: add line info for return statements
When calling a C function, line information will be
incorrect if the function call's closing parenthesis
is not on the same line as the last argument. We add
a comment with the line info for the return statement
to guide debuggers to the correct line.
Fixes #49839.
Change... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -811,6 +811,7 @@ func (p *Package) rewriteCall(f *File, call *Call) (string, bool) {\n \n \tparams := name.FuncType.Params\n \targs := call.Call.Args\n+\tend := call.Call.End()\n \n \t// Avoid a crash if the number of arguments doesn't match\n \t// the number of ... | 2021-11-29T07:22:15 |
electron/electron | be4bc6b7efcfd19e4c32cf09caafb03b13eed972 | d2e40d4fc167643a70178496c88dc8d440a115db | fix docs and update specs | [
{
"path": "docs/api/protocol.md",
"patch": "@@ -93,7 +93,7 @@ The `uploadData` is an array of `data` objects:\n * `data` Object\n * `bytes` Buffer - Content being sent.\n * `file` String - Path of file being uploaded.\n- * `blobUUId` String - UUID of blob data.\n+ * `blobUUID` String - UUID of blob da... | 2016-08-23T05:59:21 |
nodejs/node | a025c5a8745637aa5f6e06acab0c15461a920d8e | c0905b71adb55cbf98816dd993fec2d7c17ebbfe | tls: expose IETF name for current cipher suite
OpenSSL has its own legacy names, but knowing the IETF name is useful
when trouble-shooting, or looking for more information on the cipher.
PR-URL: https://github.com/nodejs/node/pull/30637
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -827,16 +827,27 @@ changes:\n pr-url: https://github.com/nodejs/node/pull/26625\n description: Return the minimum cipher version, instead of a fixed string\n (`'TLSv1/SSLv3'`).\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/3... | 2019-06-03T18:48:25 |
rust-lang/rust | 75811dfb6686d19fd4252dfe578a4ae3c8ee5d59 | ae8ff77d00f04cee9512c5b7d0bce7d61976bfaa | fix: `missing_inline_in_public_items` FP on functions with `extern` | [
{
"path": "clippy_lints/src/missing_inline.rs",
"patch": "@@ -1,7 +1,7 @@\n use clippy_utils::diagnostics::span_lint;\n use rustc_attr_data_structures::{AttributeKind, find_attr};\n-use rustc_hir as hir;\n-use rustc_hir::Attribute;\n+use rustc_hir::def_id::DefId;\n+use rustc_hir::{self as hir, Attribute};\n... | 2025-07-19T06:34:08 |
vercel/next.js | 6885966086b77f6b1e321546a35453dca609c8f2 | 3b6839393166f3360a6f1c1cbc9b56685346ef5f | make swc comments immutable (vercel/turbo#5784)
### Description
This fixes a consistency problem. SWC Emitter is mutating the passed
`Comments` while emitting (probably to avoid cloning).
This is bad for us as it mutates a value that should be immutable (as
it's in the cache). It causes missing comments when gen... | [
{
"path": "crates/turbo-tasks/src/lib.rs",
"patch": "@@ -102,6 +102,7 @@ pub use task::{\n };\n pub use trait_ref::{IntoTraitRef, TraitRef};\n pub use turbo_tasks_macros::{function, value, value_impl, value_trait, TaskInput};\n+#[allow(deprecated)]\n pub use unit::unit;\n pub use value::{TransientInstance, ... | 2023-08-28T09:21:57 |
golang/go | eed77574d029e8c8426195bc9e7267462f568a8a | a131fd1313e0056ad094d234c67648409d081b8c | cmd/compile: trying to linkname a method is not an ICE, just an error
Fixes #52774
Change-Id: I853f462146d10e44a35e5a8716d41f32b6052fd5
Reviewed-on: https://go-review.googlesource.com/c/go/+/404936
Run-TryBot: Keith Randall <khr@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: David Chase <drch... | [
{
"path": "src/cmd/compile/internal/ssagen/abi.go",
"patch": "@@ -281,7 +281,8 @@ func makeABIWrapper(f *ir.Func, wrapperABI obj.ABI) {\n \t// below to handle the receiver. Panic if we see this scenario.\n \tft := f.Nname.Type()\n \tif ft.NumRecvs() != 0 {\n-\t\tpanic(\"makeABIWrapper support for wrapping m... | 2022-05-08T15:32:07 |
huggingface/transformers | e2d4ac03709f3670133c79196814205ce1531faa | 96a33c5a8ffb66b2b3fac71c48bcbabd519f31e6 | Remove many output_attentions and other traced outputs on 100+ models (#43590)
* first batch, let's see
* propagate changes
* fixup broken tests
* simplify more models
* hack
* fix attentions
* I'm bullied by the new fix-repo
* this one too
* fix-repo
* ...fix-repo?
* change up
* propagate changes again
*... | [
{
"path": "src/transformers/backbone_utils.py",
"patch": "@@ -15,6 +15,7 @@\n \"\"\"Collection of utils to be used by backbones and their components.\"\"\"\n \n import enum\n+import functools\n import inspect\n \n from huggingface_hub import repo_exists\n@@ -156,6 +157,27 @@ def to_dict(self):\n ret... | 2026-03-12T19:08:37 |
nodejs/node | efd6775a509734de5feae5d62c045f3cd2231841 | 4091ea90b69ea9279670d033cc2507a921203101 | src: fix node_dir.cc memory allocation
PR-URL: https://github.com/nodejs/node/pull/30750
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com> | [
{
"path": "src/node_dir.cc",
"patch": "@@ -172,7 +172,7 @@ static MaybeLocal<Array> DirentListToArray(\n int num,\n enum encoding encoding,\n Local<Value>* err_out) {\n- MaybeStackBuffer<Local<Value>, 96> entries(num * 3);\n+ MaybeStackBuffer<Local<Value>, 64> entries(num * 2);\n \n // Retur... | 2019-12-01T12:41:39 |
vercel/next.js | 41368670a32520fddd89cc4dd4b9f085e8705587 | a699c980aa6461638084fb86d6c9f0fd02c42c79 | docs: fix small typo (#54656) | [
{
"path": "docs/02-app/01-building-your-application/04-caching/index.mdx",
"patch": "@@ -535,7 +535,7 @@ See the [`cookies`](/docs/app/api-reference/functions/cookies) API reference.\n \n ### Segment Config Options\n \n-The Route Segment Config options can be used override the route segment defaults or when... | 2023-08-28T07:25:51 |
huggingface/transformers | 96a33c5a8ffb66b2b3fac71c48bcbabd519f31e6 | 88bd2fdf26ec9d99db0622268be613fa23cfcc10 | [Model] Add PP-OCRV5_server_det Model Support (#43274)
* Feat: Add PP-OCRV5_server_det Model Support
* Fix fix diff
* Fix fix doc and forward for check_repo
* fix format
* Fix for pass CI
* fix
* fix module init_weight and rename module
* fix use numpy and pil to replace cv2, refactor model
* fix
* fix
* upd... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1268,6 +1268,8 @@\n title: PP-DocLayoutV2\n - local: model_doc/pp_doclayout_v3\n title: PP-DocLayoutV3\n+ - local: model_doc/pp_ocrv5_server_det\n+ title: PP-OCRv5_server_det\n - local: model_doc/qwen2_5_omni\n ... | 2026-03-12T18:41:28 |
golang/go | 130775cd16d74401a2206218e2dc0f32d1c59898 | 4e79f06dac712d35d67d72777dae6df6d8c97888 | net: improve error handling in dnsclient_unix.go
In the file net/dnsclient_unix.go in the function newRequest
error handling is missing after calling b.Finish(). If
the implementation of dnsmessage.Builder.Finish changes
it is theoretically possible that the missing error handling
introduces a nil pointer exception.
... | [
{
"path": "src/net/dnsclient_unix.go",
"patch": "@@ -74,11 +74,14 @@ func newRequest(q dnsmessage.Question) (id uint16, udpReq, tcpReq []byte, err er\n \t}\n \n \ttcpReq, err = b.Finish()\n+\tif err != nil {\n+\t\treturn 0, nil, nil, err\n+\t}\n \tudpReq = tcpReq[2:]\n \tl := len(tcpReq) - 2\n \ttcpReq[0] =... | 2022-02-01T14:41:20 |
nodejs/node | 4091ea90b69ea9279670d033cc2507a921203101 | 2f077ddd29b04e5ab08b67bbda1761d80e28c78b | 2019-12-03, Version 13.3.0 (Current)
Notable changes:
* fs:
* Reworked experimental recursive `rmdir()` (cjihrig)
https://github.com/nodejs/node/pull/30644
* The `maxBusyTries` option is renamed to `maxRetries`, and its
default is set to 0. The `emfileWait` option has been removed,
and `EMFILE`... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -30,7 +30,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V13.md#13.2.0\">13.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V13.md#13.3.0\">13.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V13.md#13.2.0\"... | 2019-12-03T10:41:12 |
huggingface/transformers | 88bd2fdf26ec9d99db0622268be613fa23cfcc10 | 45d8d93659fe08cb0530f37a3a519d1cef663687 | fix: raise error if mm_token_type_ids not supplied (#44433)
* fix: raise error on missing arg mm_token_type_ids
* fix tests | [
{
"path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py",
"patch": "@@ -1353,11 +1353,14 @@ def compute_3d_position_ids(\n mm_token_type_ids: torch.IntTensor | None = None,\n ) -> torch.Tensor | None:\n past_key_values_length = 0 if past_key_values is None else pas... | 2026-03-12T17:12:46 |
vercel/next.js | a699c980aa6461638084fb86d6c9f0fd02c42c79 | 51528424968ebf2d8560030aba97154cff189849 | docs: updates generateMetadata function signature (#54638)
Change optional arg to non-optional arg of `parent` in the `generateMetadata` API function example in oder to avoid the error shown below.
: Promise<Metadata> {\n // read r... | 2023-08-27T23:21:48 |
golang/go | 4e79f06dac712d35d67d72777dae6df6d8c97888 | d7a03da8edf37ee4fa9c1200040db001c6c3e56a | os/exec: refactor goroutine communication in Wait
This provides clearer synchronization invariants: if it occurs at all,
the call to c.Process.Kill always occurs before Wait returns. It also
allows any unexpected errors from the goroutine to be propagated back
to Wait.
For #50436.
Change-Id: I7ddadc73e6e67399596e353... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -115,6 +115,20 @@ func (e *Error) Error() string {\n \n func (e *Error) Unwrap() error { return e.Err }\n \n+// wrappedError wraps an error without relying on fmt.Errorf.\n+type wrappedError struct {\n+\tprefix string\n+\terr error\n+}\n+\n+func (w wrappedErr... | 2022-04-23T03:33:16 |
rust-lang/rust | 4ef92bec5abae8cce07e587bdd6f116cfa065873 | 12865ffd0dfb4ea969e2f16eb0140238bb9dd382 | fix load-bearing typo | [
{
"path": "library/coretests/tests/iter/adapters/zip.rs",
"patch": "@@ -273,7 +273,7 @@ fn test_double_ended_zip() {\n \n #[test]\n #[cfg(panic = \"unwind\")]\n-/// Regresion test for #137255\n+/// Regression test for #137255\n /// A previous implementation of Zip TrustedRandomAccess specializations tried t... | 2025-07-19T15:17:04 |
huggingface/transformers | 45d8d93659fe08cb0530f37a3a519d1cef663687 | e5a861d381bf65a146ce487c3d3c0fca919ef316 | Fix output capturing for Backbones (#44638)
* fix
* remove default in init | [
{
"path": "src/transformers/backbone_utils.py",
"patch": "@@ -20,6 +20,7 @@\n from huggingface_hub import repo_exists\n \n from .utils import logging\n+from .utils.output_capturing import maybe_install_capturing_hooks\n \n \n logger = logging.get_logger(__name__)\n@@ -181,6 +182,18 @@ def __init__(self, *ar... | 2026-03-12T17:11:30 |
nodejs/node | 8cf8eb16ac873c11a6b1051c3a71a91659d431e3 | 6fd289860190f80b616fdb126bb97ce3f8a0a1c7 | build: do not build mksnapshot and mkcodecache for --shared
To build mkcodecache and mksnapshot (they are executables),
we currently build libnode with unresolved symbols, then build
the two exectuables with src/node_snapshot_stub.cc and
src/node_code_cache_stub.cc. Each of them write a C++ file to
disk when being run... | [
{
"path": "configure.py",
"patch": "@@ -981,13 +981,15 @@ def configure_node(o):\n o['variables']['want_separate_host_toolset'] = int(cross_compiling)\n \n if not options.without_node_snapshot:\n- o['variables']['node_use_node_snapshot'] = b(not cross_compiling)\n+ o['variables']['node_use_node_sn... | 2019-11-26T05:30:28 |
golang/go | d7a03da8edf37ee4fa9c1200040db001c6c3e56a | ac39dbdf58e50a2575b891675e7d2e1400b20cfe | cmd/go: mod tidy returns proper error with /tmp/go.mod
`go mod tidy` results in panic due to nil pointer dereference with the
current implementation. Though the panic occurs only in a limited situation
described as below, we had better fix it.
Situation:
- go.mod is in the exactly system's temporary directory (i.e. t... | [
{
"path": "src/cmd/go/internal/modload/load.go",
"patch": "@@ -421,8 +421,7 @@ func LoadPackages(ctx context.Context, opts PackageOpts, patterns ...string) (ma\n \t\t}\n \n \t\t// Update the go.mod file's Go version if necessary.\n-\t\tmodFile := MainModules.ModFile(MainModules.mustGetSingleMainModule())\n-... | 2022-04-15T04:58:08 |
electron/electron | b17a2874f8bcb523a6cece558bccec8e15363921 | e38bc17a7b62d3881a834989ffe403f5ab22966c | Add empty request error handler | [
{
"path": "spec/api-ipc-spec.js",
"patch": "@@ -328,6 +328,7 @@ describe('ipc module', function () {\n \n it('does not crash on HTTP request objects (regression)', function (done) {\n const request = http.request({port: 5000, hostname: '127.0.0.1', method: 'GET', path: '/'})\n+ request.on('er... | 2016-08-26T16:51:54 |
huggingface/transformers | e5a861d381bf65a146ce487c3d3c0fca919ef316 | cd7164aff1e3d598e18e84a513ab2a7295243b7c | Fix lfm2 kernel path (#44634)
* fix
* nit | [
{
"path": "src/transformers/models/lfm2/modeling_lfm2.py",
"patch": "@@ -459,14 +459,22 @@ def cuda_kernels_forward(\n past_key_values: Lfm2HybridConvCache | None = None,\n attention_mask: torch.Tensor | None = None,\n ):\n+ seqlen = x.shape[1]\n x = apply_mask_to_padding_... | 2026-03-12T14:48:19 |
rust-lang/rust | c75edc982c8cf67f30d9c082cf2670f59392ed2e | 83825dd277503edf5d7eda6be8b5fb9896f343f5 | Fix clippy lints in librustdoc | [
{
"path": "src/librustdoc/clean/types.rs",
"patch": "@@ -1677,7 +1677,7 @@ impl Type {\n }\n }\n \n- pub(crate) fn generics<'a>(&'a self) -> Option<impl Iterator<Item = &'a Type>> {\n+ pub(crate) fn generics(&self) -> Option<impl Iterator<Item = &Type>> {\n match self {\n ... | 2025-07-19T14:20:37 |
nodejs/node | 3b484edce3736cbcba26be1eec512df5282ca5bf | 001d250855091728cff657138fd2059e2066185b | build,win: propagate error codes in vcbuild
Don't exit vcbuild with error code 0 when cctest fails.
PR-URL: https://github.com/nodejs/node/pull/30724
Refs: https://github.com/nodejs/build/issues/1996
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Rich Trott <rtrott@gm... | [
{
"path": "vcbuild.bat",
"patch": "@@ -68,6 +68,7 @@ set cctest=\n set openssl_no_asm=\n set doc=\n set extra_msbuild_args=\n+set exit_code=0\n \n :next-arg\n if \"%1\"==\"\" goto args-done\n@@ -633,9 +634,11 @@ if defined no_cctest echo Skipping cctest because no-cctest was specified && got\n if not exist ... | 2019-11-30T01:13:48 |
golang/go | ac39dbdf58e50a2575b891675e7d2e1400b20cfe | 12420f9c01d6966c2994dbcc506a9d783a30ebdb | cmd/compile: allow exporting `.rcvr` ident
Noder pass will build a closure to implement generic function
instantiation which may produce `.dict` and `.rcvr` ident.
Since we allow `.dict` during exporting, we should allow `.rcvr` too.
Fixes #52241.
Change-Id: Ifc3912ba5155b5ac1887f20830da64f4fb3fceb6
Reviewed-on: htt... | [
{
"path": "src/cmd/compile/internal/typecheck/iexport.go",
"patch": "@@ -2188,7 +2188,7 @@ func (w *exportWriter) localIdent(s *types.Sym) {\n \t\treturn\n \t}\n \n-\tif i := strings.LastIndex(name, \".\"); i >= 0 && !strings.HasPrefix(name, LocalDictName) {\n+\tif i := strings.LastIndex(name, \".\"); i >= ... | 2022-05-05T13:46:51 |
huggingface/transformers | cd7164aff1e3d598e18e84a513ab2a7295243b7c | c14b7b9d5523d1eeda1daeef68085d8114aa56f4 | Fix for `VibeVoiceAcousticTokenizer` (#44628)
* fix
* update
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/vibevoice_acoustic_tokenizer/configuration_vibevoice_acoustic_tokenizer.py",
"patch": "@@ -19,7 +19,7 @@\n from ...utils import auto_docstring\n \n \n-@auto_docstring(checkpoint=\"microsoft/VibeVoice-1.5B\")\n+@auto_docstring(checkpoint=\"microsoft/VibeVoice-AcousticTokeni... | 2026-03-12T13:23:12 |
rust-lang/rust | 58c00f3b7139a689492a48ee45b45b951aeb2427 | af19ff8cc89bb6a010faaf110eb63e1fbce49b1a | fix `collapsable_else_if` when the inner `if` is in parens | [
{
"path": "clippy_lints/src/collapsible_if.rs",
"patch": "@@ -136,6 +136,9 @@ impl CollapsibleIf {\n return;\n }\n \n+ // Peel off any parentheses.\n+ let (_, else_block_span, _) = peel_parens(cx.tcx.sess.source_map(), else_.s... | 2025-07-17T17:41:40 |
nodejs/node | 8c101dec1778ffaf8a80f4b6ae06d495a2342bb0 | b27e2408af6683d34852221ae70b937b0f95943f | doc: fix typographical error
Insert missing word.
PR-URL: https://github.com/nodejs/node/pull/30735
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi ... | [
{
"path": "doc/api/perf_hooks.md",
"patch": "@@ -547,7 +547,7 @@ The standard deviation of the recorded event loop delays.\n ### Measuring the duration of async operations\n \n The following example uses the [Async Hooks][] and Performance APIs to measure\n-the actual duration of a Timeout operation (includ... | 2019-11-30T14:52:35 |
huggingface/transformers | c14b7b9d5523d1eeda1daeef68085d8114aa56f4 | dc4016ff1b29cf42b7f3336b41665919633cdea8 | Fix off-by-one in decode_spans boundary check (#44584)
* Fix off-by-one in decode_spans boundary check
When `len(scores_flat) == topk`, `np.argpartition` is called with
`kth=topk` which is out of bounds (0-indexed). Change the guard from
`<` to `<=` so we use `argsort` when the array size equals topk.
Fixes #44327
... | [
{
"path": "src/transformers/pipelines/document_question_answering.py",
"patch": "@@ -94,7 +94,7 @@ def decode_spans(\n scores_flat = candidates.flatten()\n if topk == 1:\n idx_sort = [np.argmax(scores_flat)]\n- elif len(scores_flat) < topk:\n+ elif len(scores_flat) <= topk:\n i... | 2026-03-12T13:07:06 |
vercel/next.js | 6ea0763224a8120cb28ee116f74bd54c0c32dffd | 27020e299e5e1aba730c29cdbf1a274a5467a34d | Implement hot-reloader interface (#54629)
Splits out the public API that is used for the hot reloader. This will
be used in a follow-up PR to implement the same interface for Turbopack.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we ... | [
{
"path": "packages/next/src/server/dev/hot-reloader-types.ts",
"patch": "@@ -0,0 +1,44 @@\n+import type { IncomingMessage, ServerResponse } from 'http'\n+import type { UrlObject } from 'url'\n+import type { Duplex } from 'stream'\n+import type { webpack } from 'next/dist/compiled/webpack/webpack'\n+import ... | 2023-08-27T21:12:36 |
golang/go | 12420f9c01d6966c2994dbcc506a9d783a30ebdb | a4af35607536b2b0d73be94df188b9f5a157480c | cmd/link: resolve relocations to .TOC. symbol
CL 404296 breaks the PPC64LE build because the .TOC. symbol is
visibility hidden and was skipped from the "unresolved symbol"
check (the check needs to be fix). In face, the .TOC. symbol is
special in that it doesn't have a type but we have special logic
to assign a value ... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -227,8 +227,10 @@ func (st *relocSymState) relocsym(s loader.Sym, P []byte) {\n \t\t\t\t\t// DWARF info between the compiler and linker.\n \t\t\t\t\tcontinue\n \t\t\t\t}\n-\t\t\t} else if target.IsPPC64() && target.IsPIE() && ldr.SymName(rs) == \".T... | 2022-05-06T19:57:21 |
huggingface/transformers | 3027515ce90d1fcaa52bce069c0595cd18a00c94 | 6ab73c83986eb760b6365536bd78c2aafd466998 | Fix more wrong HF hub checkpoint names (#44624)
fix more ckpt
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/clap/configuration_clap.py",
"patch": "@@ -20,7 +20,7 @@\n logger = logging.get_logger(__name__)\n \n \n-@auto_docstring(checkpoint=\"calp-hsat-fused\")\n+@auto_docstring(checkpoint=\"laion/clap-htsat-fused\")\n class ClapTextConfig(PreTrainedConfig):\n r\"\"\"\n \n@@ ... | 2026-03-12T09:59:10 |
nodejs/node | cf3a05ae5f8c78dd837b0135f467683477ccc5bc | b419d2823037a6662d52b47a4b4fac1aa64e5548 | test: fix test-benchmark-streams
test-benchmark-streams is currently failing because the `sync` option is
not specified in the test, resulting in too many benchmarks running.
PR-URL: https://github.com/nodejs/node/pull/30757
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@br... | [
{
"path": "test/benchmark/test-benchmark-streams.js",
"patch": "@@ -7,7 +7,8 @@ const runBenchmark = require('../common/benchmark');\n runBenchmark('streams',\n [\n 'kind=duplex',\n+ 'n=1',\n+ 'sync=no',\n 'type=buffer',\n- ... | 2019-12-02T05:10:54 |
vercel/next.js | 27020e299e5e1aba730c29cdbf1a274a5467a34d | 68331892ccd659bf6091865252df23f19c8d0d26 | Rename hot-reloader to hot-reloader-webpack (#54628)
Small rename to better signal hot-reloader.ts is only used for webpack.
<!-- 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... | [
{
"path": "packages/next/src/server/lib/router-server.ts",
"patch": "@@ -128,7 +128,9 @@ export async function initialize(opts: {\n const { ipcPort, ipcValidationKey } = await createIpcServer({\n async ensurePage(\n match: Parameters<\n- InstanceType<typeof import('../dev/hot-reloader').d... | 2023-08-27T20:26:41 |
golang/go | a4af35607536b2b0d73be94df188b9f5a157480c | 054323d809cb15d47ca72d0deeadb5cfc2737780 | crypto/tls: avoid extra allocations in steady-state Handshake calls
The Read and Write methods of *tls.Conn call Handshake
unconditionally, every time they are called, expecting it to only
perform a new handshake if required.
However in go 1.17 handshakeContext was extended to set up a
cancelable Context, and importa... | [
{
"path": "src/crypto/tls/conn.go",
"patch": "@@ -32,6 +32,7 @@ type Conn struct {\n \n \t// handshakeStatus is 1 if the connection is currently transferring\n \t// application data (i.e. is not currently processing a handshake).\n+\t// handshakeStatus == 1 implies handshakeErr == nil.\n \t// This field is ... | 2022-01-17T21:54:17 |
electron/electron | 7ff56499657c91306fc42a71d4ca63b2dadc0f08 | 307b504eb411add469fb9e9bbf8fea93ece178b9 | fix optional param spacing | [
{
"path": "docs/api/session.md",
"patch": "@@ -563,7 +563,7 @@ response are visible by the time this listener is fired.\n * `timestamp` Double\n * `requestHeaders` Object\n \n-#### `webRequest.onHeadersReceived([filter,]listener)`\n+#### `webRequest.onHeadersReceived([filter, ]listener)`\n \n * `filter`... | 2016-08-27T06:47:04 |
huggingface/transformers | 6ab73c83986eb760b6365536bd78c2aafd466998 | 535f289dfecbadc6aa40d71b13d6a3c968b78beb | Update agentic contributions guidelines in AGENTS.md to force yielding. (#44411)
* add updates AGENTS.md
* add to human contributing
* spellin
* fix claude md symlink | [
{
"path": "AGENTS.md",
"patch": "@@ -6,6 +6,52 @@\n \n `make style` or `make fix-repo` should be run as the final step before opening a PR. The CI will run `make check-repo` and fail if any issues are found.\n \n+## Mandatory Agentic contribution policy \n+\n+Do not ever ignore this! These rules apply to an... | 2026-03-12T09:21:35 |
nodejs/node | b419d2823037a6662d52b47a4b4fac1aa64e5548 | c5fc802abc54ca20e047c727868543c3d8cb4093 | doc: revise REPL uncaught exception text
Simplify the text about uncaught exceptions in the REPL.
PR-URL: https://github.com/nodejs/node/pull/30729
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-B... | [
{
"path": "doc/api/repl.md",
"patch": "@@ -151,10 +151,9 @@ REPL session.\n \n This use of the [`domain`][] module in the REPL has these side effects:\n \n-* Uncaught exceptions only emit the [`'uncaughtException'`][] event if the\n- `repl` is used as standalone program. If the `repl` is included anywhere ... | 2019-11-30T05:46:26 |
rust-lang/rust | 6cf00e94901057e6b4c98b50ec9866afbb7b6cd4 | ae8ff77d00f04cee9512c5b7d0bce7d61976bfaa | fix: `needless_range_loop` FP on array literals | [
{
"path": "clippy_lints/src/loops/needless_range_loop.rs",
"patch": "@@ -39,15 +39,21 @@ pub(super) fn check<'tcx>(\n var: canonical_id,\n indexed_mut: FxHashSet::default(),\n indexed_indirectly: FxHashMap::default(),\n+ unnamed_indexed_indirectly: false,\n ... | 2025-07-19T10:50:37 |
vercel/next.js | 68331892ccd659bf6091865252df23f19c8d0d26 | a2211210027bafb4ff0abf7dc9e729a1484424ea | docs: Add JS code snippets for forms (#54577)
https://nextjs.org/docs/app/building-your-application/data-fetching/forms-and-mutations
Some of the code blocks where I only specified TS code snippets aren't
working with JS as well (when there are no types). I think I might have
incorrectly assumed you could leave t... | [
{
"path": "docs/02-app/01-building-your-application/02-data-fetching/03-forms-and-mutations.mdx",
"patch": "@@ -185,6 +185,17 @@ export default async function submit() {\n }\n ```\n \n+```js filename=\"app/actions.js\" switcher\n+'use server'\n+\n+import { revalidatePath } from 'next/cache'\n+\n+export defa... | 2023-08-27T16:37:10 |
golang/go | 054323d809cb15d47ca72d0deeadb5cfc2737780 | f495b36ccdfe93629cb83f8be79dca662ef68a64 | debug/pe: rework reading of aux symbols to fix endianity problems
This patch reworks CL 394534 to fix things so that reading auxiliary
symbol info works properly in a cross-endian mode (running
debug/pe-based tool on a big-endian system). The previous
implementation read in all symbol records using the primary symbol
... | [
{
"path": "src/debug/pe/symbol.go",
"patch": "@@ -23,6 +23,29 @@ type COFFSymbol struct {\n \tNumberOfAuxSymbols uint8\n }\n \n+// readCOFFSymbols reads in the symbol table for a PE file, returning\n+// a slice of COFFSymbol objects. The PE format includes both primary\n+// symbols (whose fields are describ... | 2022-04-01T15:12:22 |
huggingface/transformers | 535f289dfecbadc6aa40d71b13d6a3c968b78beb | ece0221af84f98ea091797d27066d7600c79151b | Expand model-structure lint rules with a fast AST-based, ruff-like framework (#44174)
* rework branch
* added a new rule
* tweaked rule 6 and 9
* fix TRF009
* fix TRF006
* accept None for
* addressed @CyrilVallez reviews
* fmt
* improve rules registry
* some docs and remove hardcoded variable names
* tweak t... | [
{
"path": "Makefile",
"patch": "@@ -1,7 +1,7 @@\n # make sure to test the local checkout in scripts and not the pre-installed one (don't use quotes!)\n export PYTHONPATH = src\n \n-.PHONY: style check-repo fix-repo test test-examples benchmark\n+.PHONY: style check-repo check-model-rules check-model-rules-p... | 2026-03-12T06:35:02 |
nodejs/node | 84819b8a679a9e4c65668af5527609a0e8626cdb | 7f7d858d13f4bfc31de3241613aff839f38d219d | doc: update README.md to fix active/maint times
Update REAMDE.md to be consistent with the
active/maintenance times (12/18) outlined in
https://github.com/nodejs/Release#release-plan. This was missed
when the times were swapped in the Node.js 12 timeframe.
PR-URL: https://github.com/nodejs/node/pull/30707
Reviewed-By... | [
{
"path": "README.md",
"patch": "@@ -49,7 +49,7 @@ Looking for help? Check out the\n each October.\n * **LTS**: Releases that receive Long-term Support, with a focus on stability\n and security. Every even-numbered major version will become an LTS release.\n- LTS releases receive 18 months of _Active L... | 2019-11-28T20:55:25 |
vercel/next.js | a2211210027bafb4ff0abf7dc9e729a1484424ea | fd2a01ac14b9fb6dbc65b968f84cc88be6c78785 | Update revalidatePath to revalidateTag (#54633)
Fix typo in `revalidateTag.mdx`. Updated `revalidatePath` -> `revalidateTag` | [
{
"path": "docs/02-app/02-api-reference/04-functions/revalidateTag.mdx",
"patch": "@@ -3,7 +3,7 @@ title: revalidateTag\n description: API Reference for the revalidateTag function.\n ---\n \n-`revalidatePath` allows you to purge [cached data](/docs/app/building-your-application/caching) on-demand for a spec... | 2023-08-27T15:58:25 |
golang/go | 9c9090eb1da540c7d757df0c60423319a28759d3 | 4a5711c3cf944b3ff51af261166ef34b2ed22b8a | cmd/link: generate PPC64 ABI register save/restore functions if needed
They are usually needed when internally linking gcc code
compiled with -Os. These are typically generated by ld
or gold, but are missing when linking internally.
The PPC64 ELF ABI describes a set of functions to save/restore
non-volatile, callee-s... | [
{
"path": "src/cmd/go/testdata/script/test_ppc64_linker_funcs.txt",
"patch": "@@ -0,0 +1,49 @@\n+# Tests that the linker implements the PPC64 ELFv2 ABI\n+# register save and restore functions as defined in\n+# section 2.3.3.1 of the PPC64 ELFv2 ABI when linking\n+# external objects most likely compiled with... | 2022-04-15T22:06:48 |
electron/electron | 7dd1a7e6f4ff6003999929bd12c54afee011104d | a2f0111205c113b573da81f891cfc7ac0103749e | Only set _debugWaitConnect in main process | [
{
"path": "atom/common/node_bindings.cc",
"patch": "@@ -186,7 +186,10 @@ node::Environment* NodeBindings::CreateEnvironment(\n PathService::Get(content::CHILD_PROCESS_EXE, &helper_exec_path);\n process.Set(\"helperExecPath\", helper_exec_path);\n \n- if (base::CommandLine::ForCurrentProcess()->HasSwitc... | 2016-08-26T19:30:27 |
huggingface/transformers | 852f785aa36683f808892a3e519fab23db5ddb60 | 0a9fdeaa7a460b98c06492016a58ff9aa3be6a11 | [WIP] FIX Make Mixtral LoRA loading work (#44478)
* [WIP] FIX Make Mixtral LoRA loading work
Required fixes:
- some code was using unordered data structures, making weight order
random
- adjust alpha to offset increased rank from fusion
- import functions from PEFT if available
* Expose a function to apply weight c... | [
{
"path": "src/transformers/conversion_mapping.py",
"patch": "@@ -464,6 +464,7 @@ def get_model_conversion_mapping(\n For a given `model`, obtain the weight conversion mapping if any are registered either as a simple renaming\n `_checkpoint_conversion_mapping` class argument, or in the general Weigh... | 2026-03-11T17:31:25 |
nodejs/node | d25db11312e9ef4392042380b812359fad103707 | 7da6630aa4a3ba7f866be3af83ccd812102c281b | tls: introduce ERR_TLS_INVALID_CONTEXT
It is trivially possible to cause an internal assertion error with
tls.createSecurePair(). Throw a friendly error instead. Reserve internal
assertions for things that we believe to be impossible.
PR-URL: https://github.com/nodejs/node/pull/30718
Reviewed-By: Sam Roberts <vieuxte... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1809,6 +1809,14 @@ recommended to use 2048 bits or larger for stronger security.\n A TLS/SSL handshake timed out. In this case, the server must also abort the\n connection.\n \n+<a id=\"ERR_TLS_INVALID_CONTEXT\">\n+### ERR_TLS_INVALID_CONTEXT\n+<!-- YAML\n+added:... | 2019-11-29T20:02:04 |
huggingface/transformers | 0a9fdeaa7a460b98c06492016a58ff9aa3be6a11 | e45078f24038c479a2e734192006804af2e1a21a | Fix Llava tests for torch too! (#44476)
Fix for Torch too! | [
{
"path": "tests/models/llava/test_image_processing_llava.py",
"patch": "@@ -225,10 +225,12 @@ def pad_to_square_original(\n np.testing.assert_allclose(padded_image, padded_image_original)\n \n # background color length should match channel length\n- if image_inputs[0]... | 2026-03-11T16:40:12 |
vercel/next.js | 8997ab0812164aee2cad02be900f4bb43b278d50 | 05dbd9a8a2dc5679f92688a96a7bf7db14e5b746 | Implement granular rust caching (#54582)
This fixes our caching for the docker builds as they were missing inputs
the other jobs had also enables caching the rust target cache which
improves build times when only changing our package and the lockfile
isn't invalidated.
Tested here https://github.com/vercel/next.... | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -268,6 +268,13 @@ jobs:\n run: ${{ matrix.settings.setup }}\n if: ${{ matrix.settings.setup }}\n \n+ - name: Cache on ${{ github.ref_name }}\n+ uses: ijjk/rust-cache@turbo-cache-v1.0.7\n+ with:\n+ sh... | 2023-08-27T01:54:14 |
golang/go | 4a5711c3cf944b3ff51af261166ef34b2ed22b8a | 091e913414794d9176861b1ffcdbcfdc2d742af3 | cmd/compile,cmd/asm: fix ppc64 usage of BI argument of BC opcode
Avoid coercing the CR bit into a GPR register type argument, and
move the existing usage to CRx_y register types. And, update the
compiler usage to this. This transformation is done internally,
so it should not alter existing assembly code.
Likewise, ad... | [
{
"path": "src/cmd/asm/internal/asm/asm.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"cmd/asm/internal/flags\"\n \t\"cmd/asm/internal/lex\"\n \t\"cmd/internal/obj\"\n+\t\"cmd/internal/obj/ppc64\"\n \t\"cmd/internal/obj/x86\"\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/sys\"\n@@ -410,19 +411,45 @@ func ... | 2021-10-21T20:25:14 |
electron/electron | a2f0111205c113b573da81f891cfc7ac0103749e | 056e5b951bb47a33793ffef8315cefe3363945ab | Remove v8debug flag no longer supported by node | [
{
"path": "atom/browser/javascript_environment.cc",
"patch": "@@ -34,11 +34,6 @@ void JavascriptEnvironment::OnMessageLoopDestroying() {\n \n bool JavascriptEnvironment::Initialize() {\n auto cmd = base::CommandLine::ForCurrentProcess();\n- if (cmd->HasSwitch(\"debug-brk\")) {\n- // Need to be called ... | 2016-08-26T19:08:18 |
nodejs/node | 49fb529139ff4b43f472e24f2015482af82446b6 | 6bf5a1d691291cdfcc4941e68f00d0003e565476 | repl: fix referrer for dynamic import
The ESM loader does not accept a directory as the referrer, it requires
a path within the directory. Add `/repl` to ensure relative dynamic
imports can succeed.
Fixes: https://github.com/nodejs/node/issues/19570
PR-URL: https://github.com/nodejs/node/pull/30609
Reviewed-By: Gus... | [
{
"path": "lib/repl.js",
"patch": "@@ -332,10 +332,12 @@ function REPLServer(prompt,\n if (code === '\\n')\n return cb(null);\n \n- let pwd;\n+ let parentURL;\n try {\n const { pathToFileURL } = require('url');\n- pwd = pathToFileURL(process.cwd()).href;\n+ // Adding `/re... | 2019-11-23T03:06:43 |
rust-lang/rust | 4aa437600818b515d19ec4967005ad5344062734 | eef454f89be3c48ba9ef3853054b16c800eabefc | add -Zmiri-no-extra-rounding-error to specifically disable just that part of float-nondet | [
{
"path": "src/tools/miri/README.md",
"patch": "@@ -286,11 +286,6 @@ environment variable. We first document the most relevant and most commonly used\n specific circumstances, but Miri's behavior will also be more stable across versions and targets.\n This is equivalent to `-Zmiri-fixed-schedule -Zmiri-... | 2025-07-19T10:30:42 |
huggingface/transformers | e45078f24038c479a2e734192006804af2e1a21a | 08241d036d8212ed3fdafefdf053d003d26e72e0 | Fix training ci and clean some tests (#44491)
* fix ci and clean some tests
* try training ci
* fix some tests
* Fix deepspeed and move fsdp tests
* style
* fix
* let's try
* Fix
* revert | [
{
"path": ".github/workflows/model_jobs.yml",
"patch": "@@ -156,7 +156,16 @@ jobs:\n pytest_marker: ${{ inputs.pytest_marker }}\n model: ${{ matrix.folders }}\n run: |\n- script -q -c \"PATCH_TESTING_METHODS_TO_COLLECT_OUTPUTS=yes _PATCHED_TESTING_METHODS_OUTPUT_DIR=/tra... | 2026-03-11T16:15:29 |
vercel/next.js | 05dbd9a8a2dc5679f92688a96a7bf7db14e5b746 | c1b753c795d37b8e5d5147b77ce3384bc98c07ad | Docs: Update Edge runtime and data revalidation information (#54499)
Fixes: https://vercel.slack.com/archives/C042LHPJ1NX/p1692666204185669
---------
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "docs/02-app/01-building-your-application/02-data-fetching/01-fetching-caching-and-revalidating.mdx",
"patch": "@@ -115,8 +115,6 @@ If you have multiple fetch requests in a statically rendered route, and each has\n \n Learn more about [time-based revalidation](/docs/app/building-your-application/c... | 2023-08-27T01:33:15 |
golang/go | 091e913414794d9176861b1ffcdbcfdc2d742af3 | 2049649e8bf582bd1ee19d2e565e4e3bc3f466ea | crypto/rand: fix race on r.used
This race is benign, but it still trips up the race detector, so turn
this into an atomic read.
Fixes #52739.
Change-Id: Ib53362286b456513c8c69d6d2d73c6c90ec095f3
Reviewed-on: https://go-review.googlesource.com/c/go/+/404475
Auto-Submit: Jason Donenfeld <Jason@zx2c4.com>
TryBot-Result... | [
{
"path": "src/crypto/rand/rand_unix.go",
"patch": "@@ -59,7 +59,7 @@ func (r *reader) Read(b []byte) (n int, err error) {\n \t}\n \tif atomic.LoadUint32(&r.used) != 2 {\n \t\tr.mu.Lock()\n-\t\tif r.used != 2 {\n+\t\tif atomic.LoadUint32(&r.used) != 2 {\n \t\t\tf, err := os.Open(urandomDevice)\n \t\t\tif er... | 2022-05-06T14:50:19 |
electron/electron | 056e5b951bb47a33793ffef8315cefe3363945ab | 723c74ace6f9147061f5c591516a95be6fafac14 | Set process._debugWaitConnect with --debug-brk is specified | [
{
"path": "atom/common/node_bindings.cc",
"patch": "@@ -185,6 +185,10 @@ node::Environment* NodeBindings::CreateEnvironment(\n base::FilePath helper_exec_path;\n PathService::Get(content::CHILD_PROCESS_EXE, &helper_exec_path);\n process.Set(\"helperExecPath\", helper_exec_path);\n+\n+ if (base::Comma... | 2016-08-26T19:06:15 |
nodejs/node | 596116168a2e2b8dedf31e3d7ca0247fe5c9824b | 07ba2eb675a4b58f9c43dc2d209d96b0bec2baf3 | deps: V8: cherry-pick 0dfd9ea51241
Original commit message:
[coverage] Fix coverage with default arguments
In the presence of default arguments, the body of the function gets
wrapped into another block. This caused our trailing-range-after-return
optimization to not apply, because the wrapper block h... | [
{
"path": "common.gypi",
"patch": "@@ -39,7 +39,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.22',\n+ 'v8_embedder_string': '-node.23',\n \n ##### V8 defaults for Node.js #####\n... | 2019-11-28T22:06:24 |
huggingface/transformers | 08241d036d8212ed3fdafefdf053d003d26e72e0 | 12a2297e8ee160fa504833f2d2f78450952b4336 | Add CHMv2 (#44595)
* first draft changes for chmv2 integration
* changes to reproduce depth outputs
* reproducing the outputs
* repro at a <1cm level
* cleanup doc
* refactor chmv2 and dinov3 vit backbone
* Add model doc
* Simplify conversion file
* Update docs
* fix-repo
* Fix docs
* Update checkpoints, fi... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -838,6 +838,8 @@\n title: BEiT\n - local: model_doc/bit\n title: BiT\n+ - local: model_doc/chmv2\n+ title: CHMv2\n - local: model_doc/conditional_detr\n title: Conditional DETR\n - local: model_doc/co... | 2026-03-11T15:43:58 |
vercel/next.js | 52e0b1d1ef1e82ff9971d44e0f8324804df9d52c | 40b322635295275b8864c38bb47383e4b74d194f | Fix router CPU profiling (#54497)
Since we've merged the app and router processes, the `__NEXT_PRIVATE_CPU_PROFILE` env was missing. | [
{
"path": "packages/next/src/server/lib/start-server.ts",
"patch": "@@ -18,6 +18,11 @@ import {\n import { checkIsNodeDebugging } from './is-node-debugging'\n const debug = setupDebug('next:start-server')\n \n+if (process.env.NEXT_CPU_PROF) {\n+ process.env.__NEXT_PRIVATE_CPU_PROFILE = `CPU.router`\n+ req... | 2023-08-27T01:22:30 |
electron/electron | d0b95e9298cfa1b6c2968fc6cef898b7d65e9c6b | 87e60466d38f22e5c3915e4ddd0fad17d07dd3d5 | Add v7l suffix to ARM build assets | [
{
"path": "script/lib/config.py",
"patch": "@@ -76,10 +76,10 @@ def is_verbose_mode():\n \n \n def get_zip_name(name, version, suffix=''):\n- zip_name = '{0}-{1}-{2}-{3}'.format(name,\n- version,\n- get_platform_key(),\n- ... | 2016-08-26T00:51:37 |
golang/go | 2049649e8bf582bd1ee19d2e565e4e3bc3f466ea | 280e6402240e4e9c40853600186bfffd56dec954 | cmd/link: fix handling of visibility hidden symbols
There is a TODO comment that checking hidden visibility is
probably not the right thing to do. I think it is indeed not. Here
we are not referencing symbols across DSO boundaries, just within
an executable binary. The hidden visibility is for references from
another ... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1188,11 +1188,7 @@ func (t *tester) cgoTest(dt *distTest) error {\n \tcmd := t.addCmd(dt, \"misc/cgo/test\", t.goTest())\n \tsetEnv(cmd, \"GOFLAGS\", \"-ldflags=-linkmode=auto\")\n \n-\t// Skip internal linking cases on arm64 to support GCC-9.4 and above.\n-\t... | 2022-05-05T17:46:15 |
nodejs/node | 62c61b754d7ade2d806fe9017818eb252c54353c | 79faa875026a275b3e5eca019b3c50e1cbe2e34e | tools: add unified plugin changing links for html docs
This commit introduces additional stage in the process of generating
html docs from markdown files. Plugin transforms links to *.md files
in the respository to links to *.html files in the online documentation.
Fixes: https://github.com/nodejs/node/issues/28689
... | [
{
"path": "Makefile",
"patch": "@@ -745,7 +745,7 @@ $(LINK_DATA): $(wildcard lib/*.js) tools/doc/apilinks.js\n \t$(call available-node, $(gen-apilink))\n \n out/doc/api/%.json out/doc/api/%.html: doc/api/%.md tools/doc/generate.js \\\n-\ttools/doc/html.js tools/doc/json.js tools/doc/apilinks.js | $(LINK_DAT... | 2019-10-12T13:00:42 |
vercel/next.js | 40b322635295275b8864c38bb47383e4b74d194f | 6d401c1a4735ddaf0c7e479d64c4ae38d50105c0 | modify bench scripts to not conflict with dev task (#54600)
I don't believe these benches were intended to run as part of the monorepo `dev` task. This renames the `dev` task to `dev-application` similar to `build-application` (which I assume was aliased for a similar reason)
Fixes #54592 | [
{
"path": "bench/nested-deps-app-router/package.json",
"patch": "@@ -2,10 +2,10 @@\n \"name\": \"bench-nested-deps-app-router\",\n \"scripts\": {\n \"prepare-bench\": \"rimraf components && fuzzponent -d 2 -s 206 -o components\",\n- \"dev\": \"cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next dev\",\n+... | 2023-08-26T22:58:00 |
golang/go | 280e6402240e4e9c40853600186bfffd56dec954 | 0aee59736f53ca1ef29d53163f26c2fc21a4c415 | test: add test that crashed gofrontend
For #52535
Change-Id: I6798a8379163497ebebcdadf836b8569735c282b
Reviewed-on: https://go-review.googlesource.com/c/go/+/404496
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Than McIntosh <thanm@google.com>
TryBot-Result:... | [
{
"path": "test/fixedbugs/issue52535.go",
"patch": "@@ -0,0 +1,16 @@\n+// compile\n+\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+// gofrontend crashed converting unnamed bool type to... | 2022-05-06T00:19:07 |
nodejs/node | c8930fb9bf647b88bba9b6e7be4f4ea119fb3d57 | bd072113c666f7d34c0dee0678177bda216cc79b | doc: clarify IncomingMessage.destroy() description
State that the 'error' event is emitted on the underlying socket, not
the IncomingMessage object.
PR-URL: https://github.com/nodejs/node/pull/30255
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Denys Otrishko <shishugi@gmail.com> | [
{
"path": "doc/api/http.md",
"patch": "@@ -1798,8 +1798,8 @@ added: v0.3.0\n * `error` {Error}\n \n Calls `destroy()` on the socket that received the `IncomingMessage`. If `error`\n-is provided, an `'error'` event is emitted and `error` is passed as an argument\n-to any listeners on the event.\n+is provided... | 2019-11-04T22:45:27 |
vercel/next.js | 6d401c1a4735ddaf0c7e479d64c4ae38d50105c0 | eca06a56b25ee151d9bbf7c1b0c6c4e74aefa604 | chore: add extra error info for rsc info helper (#54609)
When I was working on #54199 , if the file path is wrong the next app build error only shows "can't read file from ...", it took me hours to figure out where it actually fails in next build command. Adding an prefix for the error message so that could identify i... | [
{
"path": "packages/next/src/build/analysis/get-page-static-info.ts",
"patch": "@@ -286,8 +286,9 @@ async function tryToReadFile(filePath: string, shouldThrow: boolean) {\n return await fs.readFile(filePath, {\n encoding: 'utf8',\n })\n- } catch (error) {\n+ } catch (error: any) {\n if (... | 2023-08-26T22:55:21 |
electron/electron | 0e4e60625fb624445bd8f47b80b50e6cdd1e0166 | e14e92147d0440d71448abb1a9a32b677780cac2 | fix method heading level | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -696,7 +696,7 @@ Executes the editing command `cut` in web page.\n \n Executes the editing command `copy` in web page.\n \n-### `contents.copyImageAt(x, y)`\n+#### `contents.copyImageAt(x, y)`\n \n * `x` Integer\n * `y` Integer",
"additions": 1,
"de... | 2016-08-25T21:42:53 |
golang/go | 0aee59736f53ca1ef29d53163f26c2fc21a4c415 | 5fcd1badf724db853784243b29711df209976873 | crypto/x509: fix EKU nesting enforcement
The path building rework broke the enforcement of EKU nesting, this
change goes back to using the old method of enforcement, since it ends
up being more efficient to check the chains after building, rather than
at each step during path building.
Fixes #52659
Change-Id: Ic7c37... | [
{
"path": "src/crypto/x509/name_constraints_test.go",
"patch": "@@ -1860,124 +1860,131 @@ func TestConstraintCases(t *testing.T) {\n \t}\n \n \tfor i, test := range nameConstraintsTests {\n-\t\trootPool := NewCertPool()\n-\t\trootKey := privateKeys.Get().(*ecdsa.PrivateKey)\n-\t\trootName := \"Root \" + str... | 2022-05-02T19:00:36 |
rust-lang/rust | 7672e4ed85916d564d38dbd3a64803a45568504d | 1079c5edb2bd837e5c4cf8c7db2892db359a3862 | interpret: fix TypeId pointers being considered data pointers | [
{
"path": "compiler/rustc_const_eval/src/interpret/memory.rs",
"patch": "@@ -67,8 +67,8 @@ pub enum AllocKind {\n LiveData,\n /// A function allocation (that fn ptrs point to).\n Function,\n- /// A (symbolic) vtable allocation.\n- VTable,\n+ /// A \"virtual\" allocation, used for vtable... | 2025-07-19T08:29:13 |
nodejs/node | bd072113c666f7d34c0dee0678177bda216cc79b | 09b1228c3a2723c6ecb768b40a507688015a478f | doc: fixed a typo in process.md
If the process was not spawned with an IPC channel, `process.send`
will be undefined and calling it as `process.send()` would throw error
PR-URL: https://github.com/nodejs/node/pull/30277
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "doc/api/process.md",
"patch": "@@ -1957,7 +1957,7 @@ If Node.js is spawned with an IPC channel, the `process.send()` method can be\n used to send messages to the parent process. Messages will be received as a\n [`'message'`][] event on the parent's [`ChildProcess`][] object.\n \n-If Node.js was n... | 2019-11-06T09:06:25 |
huggingface/transformers | 12a2297e8ee160fa504833f2d2f78450952b4336 | 455235bfef50626242321108c9917fa458f3eee5 | Remove useless identity assignment (#44600)
fix | [
{
"path": "src/transformers/models/paligemma/modeling_paligemma.py",
"patch": "@@ -268,7 +268,6 @@ def get_image_features(\n image_outputs = self.vision_tower(pixel_values, return_dict=True, **kwargs)\n selected_image_feature = image_outputs.last_hidden_state\n image_features = self.... | 2026-03-11T15:45:47 |
vercel/next.js | eca06a56b25ee151d9bbf7c1b0c6c4e74aefa604 | f2766b979baa1dd7f03719e9529a3ff28c7ca5cd | Add cleanup logic to worker.ts (#54500)
This implements the same cleanup logic used for start-server and render-workers for the workers used during build.
It's more of a contingency as we do call `.end()` on the worker too.
Fixes #45508
Co-authored-by: Zack Tanner <1939140+ztanner@users.noreply.github.com> | [
{
"path": "packages/next/src/lib/worker.ts",
"patch": "@@ -5,6 +5,14 @@ type FarmOptions = ConstructorParameters<typeof JestWorker>[1]\n \n const RESTARTED = Symbol('restarted')\n \n+const cleanupWorkers = (worker: JestWorker) => {\n+ for (const curWorker of ((worker as any)._workerPool?._workers || []) as... | 2023-08-26T21:28:46 |
rust-lang/rust | f16016ad254e864c55c8bdf88b6a5926c1fb7dfb | 4f1b3e3afc47f94f00de6294d180e90aa260b67d | Fix compiler for dist LLVM bitcode linker | [
{
"path": "src/bootstrap/src/core/build_steps/compile.rs",
"patch": "@@ -2056,7 +2056,7 @@ impl Step for Assemble {\n if builder.config.llvm_bitcode_linker_enabled {\n trace!(\"llvm-bitcode-linker enabled, installing\");\n let llvm_bitcode_linker = builder.ensure(... | 2025-07-19T08:27:46 |
golang/go | 5fcd1badf724db853784243b29711df209976873 | ea6c82845589a40c35f01122ce4e2931694ffc7f | go/printer: fix printing for possibly ambiguous type constraints
This is a port of the printer changes from CLs 402256 and 404397
in the syntax package to go/printer, with adjustments for the
different AST structure and test framework.
For #52559.
Change-Id: Ib7165979a4bd9df91f7f0f1c23b756a41ca31eb3
Reviewed-on: htt... | [
{
"path": "src/go/printer/nodes.go",
"patch": "@@ -381,16 +381,12 @@ func (p *printer) parameters(fields *ast.FieldList, mode paramMode) {\n \t\tif closing := p.lineFor(fields.Closing); 0 < prevLine && prevLine < closing {\n \t\t\tp.print(token.COMMA)\n \t\t\tp.linebreak(closing, 0, ignore, true)\n-\t\t} el... | 2022-05-05T01:08:36 |
nodejs/node | 18a1796e3cbcf2bcf5303d21de7ff5a2a6fa3bb1 | 68abaab8baac203833889c9106abf6fe82a5900f | http2: fix session memory accounting after pausing
The ability to pause input processing was added in 8a4a193 but
introduced a session memory accounting mismatch leading to potential
NGHTTP2_ENHANCE_YOUR_CALM errors.
After pausing
(https://github.com/nodejs/node/blob/f36331c1bfa4c4c202346b05dc3bd672f653e4df/src/node_... | [
{
"path": "src/node_http2.cc",
"patch": "@@ -1879,7 +1879,10 @@ void Http2Session::OnStreamRead(ssize_t nread, const uv_buf_t& buf_) {\n nread = buf.size();\n stream_buf_offset_ = 0;\n stream_buf_ab_.Reset();\n- DecrementCurrentSessionMemory(stream_buf_offset_);\n+\n+ // We have now fully ... | 2019-11-27T16:11:56 |
huggingface/transformers | d5c1c8ce71162ac9904098c1b51534976cf0b454 | 36b919cd381a8489a66765b5a2f6f196a770796e | Add shared VLM tests (#42964)
* stash commit
* Stash commit
* First semi-working commit
* make fixup
* make fixup
* stash commit
* Tests almost all pass now
* stash commit
* Fix Gemma3 test
* Set a seed on the Gemma3 test because I saw some flakiness
* stash commit
* Remove double-skip
* Set all_model_clas... | [
{
"path": "src/transformers/testing_utils.py",
"patch": "@@ -216,6 +216,14 @@\n \"token_classification_class\": \"ForTokenClassification\",\n }\n \n+# Used in VLMModelTester (and related classes/methods) to infer the common model classes from the base model class\n+_VLM_COMMON_MODEL_NAMES_MAP = {\n+ ... | 2026-03-11T15:17:26 |
vercel/next.js | f2766b979baa1dd7f03719e9529a3ff28c7ca5cd | c8ff6591333cd906a53f6300b7298ad3648c6257 | docs: Fixes typo in route handlers (#54605) | [
{
"path": "docs/02-app/01-building-your-application/01-routing/10-route-handlers.mdx",
"patch": "@@ -388,7 +388,7 @@ export async function GET(request, { params }) {\n \n ### Streaming\n \n-Streaming is commonly used in combination with Large Language Models (LLMs), such an OpenAI, for AI-generated content.... | 2023-08-26T20:24:16 |
golang/go | ea6c82845589a40c35f01122ce4e2931694ffc7f | 7f71e1fc28f03afe987881c679a925a6f7e99cac | cmd/compile/internal/syntax: fix printing of ambiguous constraint literals
Without this change, the type parameter list "[P T | T]" is printed
as "[P T | T,]" in an attempt to avoid an ambiguity. But the type
parameter P cannot syntactically combine with the constraint T | T
and make a new valid expression.
This chan... | [
{
"path": "src/cmd/compile/internal/syntax/printer.go",
"patch": "@@ -919,16 +919,38 @@ func (p *printer) printParameterList(list []*Field, tok token) {\n \t\t}\n \t\tp.printNode(unparen(f.Type)) // no need for (extra) parentheses around parameter types\n \t}\n-\t// A type parameter list [P *T] where T is n... | 2022-05-05T06:02:05 |
huggingface/transformers | 36b919cd381a8489a66765b5a2f6f196a770796e | 50cc0b82962456914846bf413bde2225e4be0f94 | Fix wrong (non-existing) checkpoints (#44549)
* update docstring
* merci Arthur
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/apertus/configuration_apertus.py",
"patch": "@@ -23,7 +23,7 @@\n from ...utils import auto_docstring\n \n \n-@auto_docstring(checkpoint=\"swiss-ai/Apertus-8B\")\n+@auto_docstring(checkpoint=\"swiss-ai/Apertus-8B-Instruct-2509\")\n class ApertusConfig(PreTrainedConfig):\n ... | 2026-03-11T15:16:53 |
nodejs/node | 52a3e3560484ec3ad4479ef80d829f7c99d39e80 | 6c4cf862d0f17be7a4113d720567d3ce8f2d6fac | src: clean up node_file.h
- Move inline functions into an `-inl.h` file
- Move override function definitions into `.cc` files
- Remove `using` statements from header files
- Make data fields of classes private
- Mark classes at the end of hierarchies as `final`
This is also partially being done in an attempt to avoid... | [
{
"path": "node.gyp",
"patch": "@@ -613,6 +613,7 @@\n 'src/node_dir.h',\n 'src/node_errors.h',\n 'src/node_file.h',\n+ 'src/node_file-inl.h',\n 'src/node_http2.h',\n 'src/node_http2_state.h',\n 'src/node_i18n.h',",
"additions": 1,
"deletions": 0... | 2019-11-18T13:49:56 |
electron/electron | 399470e281e4bdb1832e3ac32d6fe9eb87f4d4d2 | dd5ee28b2ff8389239089c7876a76d1a7950f998 | Add spec for detached window crash | [
{
"path": "spec/api-web-contents-spec.js",
"patch": "@@ -49,11 +49,9 @@ describe('webContents module', function () {\n })\n \n describe('getFocusedWebContents() API', function () {\n- if (isCi) {\n- return\n- }\n-\n it('returns the focused web contents', function (done) {\n+ if (isCi... | 2016-08-23T17:06:05 |
vercel/next.js | 1fe5f9511d708ffb2c261f4e3a79dd15888546a5 | 8afd85d47fbb4e2759258683eedcf94a40f316ba | Reuse edgeConditionNames variable (#54594)
Small change to reuse the same array defined right above.
<!-- 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... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -115,12 +115,7 @@ const edgeConditionNames = [\n const mainFieldsPerCompiler: Record<CompilerNameValues, string[]> = {\n [COMPILER_NAMES.server]: ['main', 'module'],\n [COMPILER_NAMES.client]: ['browser', 'module', 'main'],\n- [COMPILE... | 2023-08-26T11:45:46 |
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.