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 |
|---|---|---|---|---|---|
nodejs/node | e3c4b670a4c365c01dc4a3719c72bde734e0d6b4 | ca9e24e8b43b89dc705227a4ed29172c2a95f57f | src: workaround MSVC compiler bug
PR-URL: https://github.com/nodejs/node/pull/25596
Fixes: https://github.com/nodejs/node/issues/25593
Refs: https://developercommunity.visualstudio.com/content/problem/432157/dynamic-initializers-out-of-order.html
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
Reviewed-By: A... | [
{
"path": "src/node_options.cc",
"patch": "@@ -107,6 +107,20 @@ void EnvironmentOptions::CheckOptions(std::vector<std::string>* errors) {\n \n namespace options_parser {\n \n+// Explicitly access the singelton instances in their dependancy order.\n+// This was moved here to workaround a compiler bug.\n+// R... | 2018-12-18T14:55:56 |
golang/go | 7b554575e46d1df9b68f71e051c8133aaf953fb7 | f686f6a963cdfa66b6087993663f53a10272d262 | cmd/compile: factor out code to remove phi argument
CL 358117 fixed a bug that Phi's argument wasn't updated correctly after
removing a predecessor of Block. This CL factor out the code that
updates phi argument into a Block's method, so it's easier to use,
maintain and hopefully prevent that kind of bug in the future... | [
{
"path": "src/cmd/compile/internal/ssa/block.go",
"patch": "@@ -279,7 +279,8 @@ func (b *Block) AddEdgeTo(c *Block) {\n \n // removePred removes the ith input edge from b.\n // It is the responsibility of the caller to remove\n-// the corresponding successor edge.\n+// the corresponding successor edge, and... | 2021-10-24T06:46:54 |
rust-lang/rust | cc8042902119267066017d8b5ba63552a990f46d | 188c40126dbda835e80238ea70eaef7d09e3e167 | fix tests | [
{
"path": "library/alloc/src/vec/mod.rs",
"patch": "@@ -747,6 +747,7 @@ impl<T> Vec<T> {\n /// Basic usage:\n ///\n /// ```\n+ /// #![feature(vec_peek_mut)]\n /// let mut vec = Vec::new();\n /// assert!(vec.peek_mut().is_none());\n ///",
"additions": 1,
"deletions": 0,
... | 2025-06-06T17:07:24 |
electron/electron | a3e9ff67b0f3697892d009f87fb5d3adc6916e27 | ae776b523c94091f10c159fb8ae3c4233aae3388 | Fix a wrong check in emitting 'activate-with-no-open-windows' event. | [
{
"path": "atom/browser/api/lib/app.coffee",
"patch": "@@ -45,7 +45,7 @@ app.getHomeDir = -> @getPath 'home'\n app.getDataPath = -> @getPath 'userData'\n app.setDataPath = (path) -> @setPath 'userData', path\n app.resolveProxy = -> @defaultSession.resolveProxy.apply @defaultSession, arguments\n-app.on 'acti... | 2015-09-16T00:36:01 |
huggingface/transformers | 37103d6f22cd25c9eba7297ae79ed8c47a852e54 | 4f542052b95555728cbc8630fb41486e46c21cfa | Fix invalid typing (#40612)
Signed-off-by: cyy <cyyever@outlook.com> | [
{
"path": "src/transformers/modeling_flax_pytorch_utils.py",
"patch": "@@ -86,7 +86,7 @@ def rename_key_and_reshape_tensor(\n pt_tensor: np.ndarray,\n random_flax_state_dict: dict[str, jnp.ndarray],\n model_prefix: str,\n-) -> (tuple[str], np.ndarray):\n+) -> tuple[tuple[str], np.ndarray]:\n ... | 2025-09-02T13:10:22 |
nodejs/node | 973c223429279286b8441f20807a770920d58bcb | d9066bef2ca1c5cfddab771266b821186cda3f56 | report: fix typo in error message
PR-URL: https://github.com/nodejs/node/pull/25782
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/process/report.js",
"patch": "@@ -120,7 +120,7 @@ exports.setup = function() {\n if (err == null) {\n return nr.getReport(new ERR_SYNTHETIC().stack);\n } else if (typeof err !== 'object') {\n- throw new ERR_INVALID_ARG_TYPE('err', 'Objct', err);\n+ t... | 2019-01-29T01:23:52 |
vercel/next.js | 461617bc704a3dac6a19dcd0145f6fd0c4091a67 | 7c44cf0a3b28fccc84b9ea81e968f4930971f2d7 | docs(image): Update browser bugs section for Safari 16.4 release (#47577)
### What?
Safari 16.4, released today, fixed a known browser bug [around lazy-loading images](https://webkit.org/blog/13966/webkit-features-in-safari-16-4/#:~:text=Now%20in%20Safari%2016.4%2C%20a%20gray%20line%20no%20longer%20appears%20to%20m... | [
{
"path": "docs/api-reference/next/image.md",
"patch": "@@ -41,7 +41,7 @@ This `next/image` component uses browser native [lazy loading](https://caniuse.c\n \n ## Known Browser Bugs\n \n-- [Safari 15+](https://bugs.webkit.org/show_bug.cgi?id=243601) displays a gray border while loading. Possible solutions:\... | 2023-03-28T00:02:27 |
golang/go | f686f6a963cdfa66b6087993663f53a10272d262 | 8dbf3e9393400d72d313e5616c88873e07692c70 | cmd/compile: remove Value.RemoveArg
It's only used in two places:
- The one in regalloc.go can be replaced with v.resetArgs()
- The one in rewrite.go can be open coded
and can cause wrong usage like the bug that CL 358117 fixed.
Change-Id: I125baf237db159d056fe4b1c73072331eea4d06a
Reviewed-on: https://go-review.g... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1840,7 +1840,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\tif s.f.pass.debug > regDebug {\n \t\t\t\t\tfmt.Printf(\"delete copied value %s\\n\", c.LongString())\n \t\t\t\t}\n-\t\t\t\tc.RemoveArg(0)\n+\t\t\t\tc.resetArgs()\n \t\t... | 2021-10-24T18:02:12 |
huggingface/transformers | 97266dfd500941ce95ac3b59778103e4d0c59663 | 91be12bdc6d312a2d7a44174971f025c4023a91f | Fix flaky `JambaModelTest.test_load_balancing_loss` (#40617)
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/jamba/test_modeling_jamba.py",
"patch": "@@ -24,6 +24,7 @@\n DeviceProperties,\n Expectations,\n get_device_properties,\n+ is_flaky,\n require_bitsandbytes,\n require_flash_attn,\n require_torch,\n@@ -104,10 +105,10 @@ def __init__(\n use_labels=Tru... | 2025-09-02T11:58:16 |
electron/electron | 6615787775436aa6a3c01e6bf5b1497d6b37f1ef | cf6008a05e693edbdad2840e2f48c3980f127861 | Update node, fixes #2786 | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit fdb584a0b42e89885f74ed68f279318b0fbff37f\n+Subproject commit 4098d45fbb822370c19d2fe7b88162759db4eb96",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-09-15T07:19:43 |
nodejs/node | 4b6e4c1eb110e0be671ec5972bf280d2bf3892d8 | 16362cb86801724dcc86f85fb51e550d482ee30d | http: make timeout event work with agent timeout
The `'timeout'` event is currently not emitted on the `ClientRequest`
instance when the socket timeout expires if only the `timeout` option
of the agent is set. This happens because, under these circumstances,
`listenSocketTimeout()` is not called.
This commit fixes th... | [
{
"path": "lib/_http_client.js",
"patch": "@@ -653,7 +653,10 @@ function tickOnSocket(req, socket) {\n socket.on('end', socketOnEnd);\n socket.on('close', socketCloseListener);\n \n- if (req.timeout !== undefined) {\n+ if (\n+ req.timeout !== undefined ||\n+ (req.agent && req.agent.options && re... | 2019-01-14T08:14:13 |
vercel/next.js | 54a08ebe7711e54a60ee2ba09d5f7054b3690f43 | 4a2df3c3752aeddc50fd5ab053440eccf71ae50b | Fix instrumentation not being called on edge in some cases (#47495)
- Modified tests to catch issue with instrumentation not being invoked
for edge api calls
- Add tests for middleware
- Add instrumentation into middleware bundle
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your P... | [
{
"path": "packages/next/src/build/webpack/plugins/middleware-plugin.ts",
"patch": "@@ -127,10 +127,10 @@ function getEntryFiles(\n )\n \n files.push(`server/${NEXT_FONT_MANIFEST}.js`)\n+ }\n \n- if (NextBuildContext!.hasInstrumentationHook) {\n- files.push(`server/edge-${INSTRUMENTATION_HO... | 2023-03-27T20:54:43 |
golang/go | 8dbf3e9393400d72d313e5616c88873e07692c70 | 16318df4a225928c2f24874f6fcd11c3e13a112e | cmd/compile: fix fuse pass to do CFG surgery correctly
removePred and removeArg do different things. removePred moves the last
predecessor to index k, whereas removeArg slides all the args k or
greater down by 1 index.
Kind of unfortunate different behavior in things named similarly.
Fixes #49122
Change-Id: I9ae409... | [
{
"path": "src/cmd/compile/internal/ssa/fuse_branchredirect.go",
"patch": "@@ -78,7 +78,11 @@ func fuseBranchRedirect(f *Func) bool {\n \t\t\t\t\tif v.Op != OpPhi {\n \t\t\t\t\t\tcontinue\n \t\t\t\t\t}\n-\t\t\t\t\tv.RemoveArg(k)\n+\t\t\t\t\tn := len(v.Args)\n+\t\t\t\t\tv.Args[k].Uses--\n+\t\t\t\t\tv.Args[k]... | 2021-10-23T17:16:41 |
huggingface/transformers | 91be12bdc6d312a2d7a44174971f025c4023a91f | bbd8085b0b774ad4f7a7c3dc6663b9b5009427f1 | Avoid `too many request` caused by `AutoModelTest::test_dynamic_saving_from_local_repo` (#40614)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/auto/test_modeling_auto.py",
"patch": "@@ -13,6 +13,9 @@\n # limitations under the License.\n \n import copy\n+import os\n+import os.path\n+import shutil\n import sys\n import tempfile\n import unittest\n@@ -39,6 +42,7 @@\n sys.path.append(str(Path(__file__).parent.parent.parent.pare... | 2025-09-02T10:08:52 |
nodejs/node | 16362cb86801724dcc86f85fb51e550d482ee30d | 0dfd5a55d665ec3d9a37e57e542cf0123574fa5b | src: make `StreamPipe::Unpipe()` more resilient
Clean up `StreamPipe::Unpipe()` to be more resilient against
unexpected exceptions, in particular while executing its
`MakeCallback()` line (which can fail in the presence of
termination exceptions), and clean up the getter/setter part
of the code to match that pattern a... | [
{
"path": "src/stream_pipe.cc",
"patch": "@@ -4,6 +4,7 @@\n \n using v8::Context;\n using v8::External;\n+using v8::Function;\n using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::Local;\n@@ -77,30 +78,35 @@ void StreamPipe::Unpipe() {\n Context::Scope context_scope(env->context())... | 2019-01-25T23:13:01 |
vercel/next.js | 4a2df3c3752aeddc50fd5ab053440eccf71ae50b | a0c2703245d2edfe9642d469611b273c8942c6f3 | Fix fetch cache config and fetch revalidates (#47573)
This ensures we properly honor config and fetch based revalidate on the
same page in fetch cache.
Fixes:
https://github.com/vercel/next.js/actions/runs/4529647521/jobs/7978177827 | [
{
"path": "packages/next/src/server/lib/incremental-cache/fetch-cache.ts",
"patch": "@@ -119,11 +119,11 @@ export default class FetchCache implements CacheHandler {\n \n data = {\n value: cached,\n- // if it's already stale set it to a year in the future\n+ // if it's alr... | 2023-03-27T20:08:23 |
huggingface/transformers | bbd8085b0b774ad4f7a7c3dc6663b9b5009427f1 | b2b1c30b1b483d95be444a3e67f983468e4aba24 | Fix processor chat template (#40613)
fix tests | [
{
"path": "src/transformers/processing_utils.py",
"patch": "@@ -1572,6 +1572,7 @@ def apply_chat_template(\n batch_images, batch_videos = [], []\n batch_audios = []\n for conversation in conversations:\n+ images, videos = [], []\n for messag... | 2025-09-02T08:59:48 |
golang/go | b0f7eb6c0dee68c91d622cc5fcba1074626753b3 | 85d2751d2ea38b10127df0b27d04b1a26f54bcfa | cmd/go: update test script for reformatted error message (fix long builds)
TBR=iant
Change-Id: Ic72af52e5ff8d28f8102c07b03e4930df61445ca
Reviewed-on: https://go-review.googlesource.com/c/go/+/358115
Trust: Robert Griesemer <gri@golang.org>
Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Run-TryBot: Robert Griesemer ... | [
{
"path": "src/cmd/go/testdata/script/mod_vendor_goversion.txt",
"patch": "@@ -26,7 +26,7 @@ go mod vendor\n \n ! grep 1.17 vendor/modules.txt\n ! go build example.net/need117\n-stderr '^vendor[/\\\\]example\\.net[/\\\\]need117[/\\\\]need117.go:5:1[89]: .*conversion of slices to array pointers only supporte... | 2021-10-22T23:57:58 |
electron/electron | f1787d747afbfcc9e6c416b298d7bf32a366241d | eced01eb9d2dc77546692f2878c582f569aa485f | The crash-reporter test is not reliable on CI machine | [
{
"path": "spec/api-crash-reporter-spec.coffee",
"patch": "@@ -18,6 +18,10 @@ describe 'crash-reporter module', ->\n # It is not working on 64bit Windows.\n return if process.platform is 'win32' and process.arch is 'x64'\n \n+ # The crash-reporter test is not reliable on CI machine.\n+ isCI = remote.p... | 2015-09-15T06:43:11 |
nodejs/node | 43bba407175d87a7a9fab0cd5683840eca0307c3 | 6ab0d56a5997a5e45b5cf2fd25015bbf20d042a7 | doc: remove outdated COLLABORATOR_GUIDE sentence about breaking changes
The TSC has delegated authority over LTS and Current branches to the
Release WG. Remove the bullet point about TSC having authority to
determine that a breaking change is necessary on LTS and Current release
branches. Retaining that authority woul... | [
{
"path": "COLLABORATOR_GUIDE.md",
"patch": "@@ -282,7 +282,6 @@ providing a Public API in such cases.\n * Resolving critical security issues.\n * Fixing a critical bug (e.g. fixing a memory leak) requires a breaking\n change.\n- * There is TSC consensus that the change is required.\n * If a breaki... | 2019-01-29T01:03:14 |
rust-lang/rust | ac980cace8038f3fa3be1953092e92bede52a5bb | df8102fe5f24f28a918660b0cd918d7331c3896e | Make obligation cause code suggestions verbose
```
error[E0277]: `()` is not a future
--> $DIR/unnecessary-await.rs:28:10
|
LL | e!().await;
| ^^^^^ `()` is not a future
|
= help: the trait `Future` is not implemented for `()`
= note: () must be a future or must implement `IntoFuture` to ... | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs",
"patch": "@@ -1411,7 +1411,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n }\n }\n \n- err.span_suggestion(\n+ err.span_suggestion_verbose(\n obligation.cause.span.shrink_to_lo()... | 2025-06-04T21:39:29 |
vercel/next.js | f5292511e32332189cf95382a5a7e6d53dae7e24 | 669b7df60527ae7869606eea4c429a8f9a516877 | fix(turbo-binding): disable custom alloc default features (vercel/turbo#4355)
### Description
Enabling default will merge into all of next-swc for the unsupported
platforms. | [
{
"path": "crates/turbo-binding/Cargo.toml",
"patch": "@@ -155,7 +155,7 @@ auto-hash-map = { optional = true, workspace = true }\n swc-ast-explorer = { optional = true, workspace = true }\n \n node-file-trace = { optional = true, workspace = true }\n-turbo-malloc = { optional = true, workspace = true }\n+tu... | 2023-03-27T20:04:21 |
huggingface/transformers | b2b1c30b1b483d95be444a3e67f983468e4aba24 | 8a091cc07c9808196e3154ab8bd6252d919f929b | fix: continuous batching in `transformers serve` (#40479)
* fix: continuous batching in `transformers serve`
* fix: short circuit inner gen loop when prepare_next_batch prepared nothing
* docs: add comment explaining FastAPI lifespan
* test: add CB serving tests
* refactor: remove gen cfg max new tokens override b... | [
{
"path": "src/transformers/commands/serving.py",
"patch": "@@ -25,13 +25,15 @@\n import time\n from argparse import ArgumentParser, Namespace\n from collections.abc import Generator, Iterable\n+from contextlib import asynccontextmanager\n from dataclasses import dataclass, field\n from io import BytesIO\n ... | 2025-09-02T08:45:05 |
golang/go | 85d2751d2ea38b10127df0b27d04b1a26f54bcfa | 6c200017bf0ad9987453d5c265e5a3063ad72dc5 | cmd/compile: prevent compiling closures more than once
Since CL 282892, functions are always compiled before closures. To do
that, when walking the closure, it is added to its outer function queue
for scheduling compilation later. Thus, a closure may be added to queue
more than once, causing the ICE dues to being comp... | [
{
"path": "src/cmd/compile/internal/walk/closure.go",
"patch": "@@ -107,7 +107,16 @@ func walkClosure(clo *ir.ClosureExpr, init *ir.Nodes) ir.Node {\n \t// The closure is not trivial or directly called, so it's going to stay a closure.\n \tir.ClosureDebugRuntimeCheck(clo)\n \tclofn.SetNeedctxt(true)\n-\tir.... | 2021-10-22T10:05:35 |
rust-lang/rust | 24dcfaf71ffe08a0b5acfcc5b5b4d2419e79b847 | df8102fe5f24f28a918660b0cd918d7331c3896e | Make cast suggestions verbose
```
error[E0604]: only `u8` can be cast as `char`, not `u32`
--> $DIR/E0604.rs:2:5
|
LL | 1u32 as char;
| ^^^^^^^^^^^^ invalid cast
|
help: try `char::from_u32` instead
|
LL - 1u32 as char;
LL + char::from_u32(1u32);
|
```
```
error[E0620]: cast to unsize... | [
{
"path": "compiler/rustc_hir_typeck/src/cast.rs",
"patch": "@@ -380,16 +380,14 @@ impl<'a, 'tcx> CastCheck<'tcx> {\n err.span_label(self.span, \"invalid cast\");\n if self.expr_ty.is_numeric() {\n if self.expr_ty == fcx.tcx.types.u32 {\n- ... | 2025-06-06T19:39:48 |
nodejs/node | dc1d331403feb3b9d1ca1a2bd306ca7428414ed8 | 4d193008d781522f6d34534d1199fa5ef5a1fff7 | process: simplify report uncaught exception logic
This commit combines two if statements into a single if
statement. Another if statement is replaced with a ternary.
PR-URL: https://github.com/nodejs/node/pull/25744
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Ru... | [
{
"path": "lib/internal/process/execution.js",
"patch": "@@ -105,19 +105,14 @@ function createFatalException() {\n if (er == null || er.domain == null) {\n try {\n const report = internalBinding('report');\n- if (report != null) {\n- if (require('internal/options').getOptio... | 2019-01-27T21:03:14 |
huggingface/transformers | 514b3e81b77ab823d755eb4e3a34b78d1c067454 | b3655507bb76370137fd4e84591ed9a6f41becc2 | Multiple fixes to FA tests in AMD (#40498)
* Expectations for gemma3
* Fixes for Qwen2_5_VL tests
* Added expectation but underlying pb is still there
* Better handling of mrope section for Qwen2_5_vl
* Fixes for FA2 tests and reformat batch test for Qwen2_5_Omni
* Fix multi-device error in qwen2_5_omni
* Styel ... | [
{
"path": "src/transformers/models/qwen2_5_omni/modeling_qwen2_5_omni.py",
"patch": "@@ -3959,13 +3959,11 @@ def generate(\n dim=1,\n )\n \n- eos_embedding = thinker_embed_tokens(\n- torch.tensor([[self.talker.text_eos_token]], dtype=torch.long, device=input_ids.device)... | 2025-09-01T18:49:50 |
vercel/next.js | 669b7df60527ae7869606eea4c429a8f9a516877 | 6b34bff1dcfe3e3240993da02a08f3555b1045c8 | fix nested dynamic imports (vercel/turbo#4349)
### Description
In the case when nesting `import()` where the second `import()`
references an already available module, it tries to access an
non-existing chunk loader module.
After this change it will generate `Promise.resolve().then(() =>
__turbopack_import__("...")` ... | [
{
"path": "crates/turbopack-core/src/chunk/mod.rs",
"patch": "@@ -413,6 +413,7 @@ pub struct ChunkContentResult<I> {\n pub chunks: Vec<ChunkVc>,\n pub async_chunk_groups: Vec<ChunkGroupVc>,\n pub external_asset_references: Vec<AssetReferenceVc>,\n+ pub availability_info: AvailabilityInfo,\n }... | 2023-03-27T19:10:02 |
golang/go | 5d414d180bfb631d3835f819f7f524ec271f11eb | 76dd01f45786757a08f1e070245d174cd64559be | cmd/compile/internal/types2: more detailed error messages for generic conversions
- slightly refactor convertibleTo and convertibleToImpl
- provide ability to return a conversion failure cause
- add detailed cause for generic conversions
For #47150.
Change-Id: Ie97d89be0234414ef4df22a6920e18acc944a102
Reviewed-on: h... | [
{
"path": "src/cmd/compile/internal/types2/api.go",
"patch": "@@ -438,7 +438,7 @@ func AssignableTo(V, T Type) bool {\n // ConvertibleTo reports whether a value of type V is convertible to a value of type T.\n func ConvertibleTo(V, T Type) bool {\n \tx := operand{mode: value, typ: V}\n-\treturn x.convertibl... | 2021-10-20T01:09:30 |
huggingface/transformers | 4da03d7f57707bd6800518ce4f56e834f153377b | abf5900a763bd63827a241ace52a97a6e0851e01 | Reduce more test data fetch (#40595)
* example
* fix
* fix
* add to fetch script
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/aria/test_processing_aria.py",
"patch": "@@ -25,7 +25,7 @@\n from transformers.testing_utils import require_torch, require_vision\n from transformers.utils import is_vision_available\n \n-from ...test_processing_common import ProcessorTesterMixin\n+from ...test_processing_common impo... | 2025-09-01T16:07:18 |
nodejs/node | 4d193008d781522f6d34534d1199fa5ef5a1fff7 | 3dca9e0a577992c07052da21fde976d305880cdb | tools: refloat Node.js patches to cpplint.py
* Preserve 3 node-core checks
* Preserve patch to `FileInfo.RepositoryName`
* Remove TAP to logfile (unused)
PR-URL: https://github.com/nodejs/node/pull/25771
Fixes: https://github.com/nodejs/node/issues/25760
Refs: https://github.com/cpplint/cpplint/blob/3d8f6f876dd6e3918... | [
{
"path": "tools/cpplint.py",
"patch": "@@ -122,7 +122,7 @@ def GetNonHeaderExtensions():\n likely to be false positives.\n \n quiet\n- Supress output other than linting errors, such as information about\n+ Suppress output other than linting errors, such as information about\n whic... | 2019-01-28T23:34:46 |
vercel/next.js | a0c2703245d2edfe9642d469611b273c8942c6f3 | b28cd21ee57bfd9c2f7e775310e42b1ec9dd1eab | Handle unknown platform triples in next-swc (#47570)
Adding OpenBSD and NetBSD platforms
Fixes: #44058
Probably needs more review I tried compiling the codebase as instructed
with pnpm
[here](https://github.com/dante-robinson/next.js/blob/canary/contributing/core/developing.md),
but turbo (a dependency of pnp... | [
{
"path": "packages/next/src/build/swc/index.ts",
"patch": "@@ -14,7 +14,7 @@ const nextVersion = process.env.__NEXT_VERSION as string\n \n const ArchName = arch()\n const PlatformName = platform()\n-const triples = platformArchTriples[PlatformName][ArchName] || []\n+const triples = platformArchTriples[Plat... | 2023-03-27T18:39:53 |
electron/electron | 311a5456ec90290bda110ea2ec6f14081f6c8157 | 3cf34fe40fd9e7c122f41801c373dcbe7c1c7014 | Make crash-reporter spec more reliable | [
{
"path": "spec/api-crash-reporter-spec.coffee",
"patch": "@@ -19,8 +19,9 @@ describe 'crash-reporter module', ->\n return if process.platform is 'win32' and process.arch is 'x64'\n \n it 'should send minidump when renderer crashes', (done) ->\n- @timeout 60000\n+ @timeout 120000\n server = ht... | 2015-09-15T05:18:01 |
golang/go | ff8115d1a1b3bcaadfea10f6913e9fe083013799 | 9ff91b90988945c7bbe85fdef4a16d5f1af6b2c2 | internal/poll: fix a few function names on comments
Change-Id: I5b1dfeeb0ae5ac32667633151ef83bcf4654c43f
Reviewed-on: https://go-review.googlesource.com/c/go/+/357957
Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
Trust: Tobias Klauser <tobias.klauser@gmail.c... | [
{
"path": "src/internal/poll/fd_unix.go",
"patch": "@@ -230,7 +230,7 @@ func (fd *FD) ReadFrom(p []byte) (int, syscall.Sockaddr, error) {\n \t}\n }\n \n-// ReadFrom wraps the recvfrom network call for IPv4.\n+// ReadFromInet4 wraps the recvfrom network call for IPv4.\n func (fd *FD) ReadFromInet4(p []byte, ... | 2021-10-22T07:29:41 |
nodejs/node | 3dca9e0a577992c07052da21fde976d305880cdb | de2bdfbc6f13062741529922e4f32d2ab210105e | tools: bump cpplint.py to 3d8f6f876d
PR-URL: https://github.com/nodejs/node/pull/25771
Fixes: https://github.com/nodejs/node/issues/25760
Refs: https://github.com/cpplint/cpplint/blob/3d8f6f876dd6e3918e5641483298dbc82e65f358/cpplint.py
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Ben... | [
{
"path": "tools/cpplint.py",
"patch": "@@ -45,7 +45,6 @@\n import copy\n import getopt\n import glob\n-import logging\n import itertools\n import math # for log\n import os\n@@ -56,10 +55,6 @@\n import unicodedata\n import xml.etree.ElementTree\n \n-try:\n- xrange\n-except NameError:\n- xrange = range\n... | 2019-01-28T18:58:13 |
vercel/next.js | b28cd21ee57bfd9c2f7e775310e42b1ec9dd1eab | e3875d74214480454ee9df6af57f4abbd7fbf7b9 | Improve client boundary source type detection (#47532)Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Currently in a client boundary file, we only explicitly export
individual fields in ESM (`export foo`) when the source type is
`module`. However in most of the time SWC gives the `aut... | [
{
"path": "packages/next-swc/crates/core/src/react_server_components.rs",
"patch": "@@ -4,6 +4,7 @@ use std::path::PathBuf;\n use regex::Regex;\n use serde::Deserialize;\n \n+use crate::auto_cjs::contains_cjs;\n use next_binding::swc::core::{\n common::{\n comments::{Comment, CommentKind, Commen... | 2023-03-27T17:16:23 |
huggingface/transformers | abf5900a763bd63827a241ace52a97a6e0851e01 | 3beac9c65985c2d60b368afa92aa399fbf7b4644 | [`Tests`] Fixup duplicated mrope logic (#40592)
cleanup duplicated logic | [
{
"path": "tests/test_modeling_common.py",
"patch": "@@ -4792,15 +4792,6 @@ def update_config_headdim(config, requested_dim):\n head_dim = head_dim if head_dim is not None else config.hidden_size // config.num_attention_heads\n config.hidden_size *= max(requested_dim // head_... | 2025-09-01T15:22:34 |
golang/go | 9ff91b90988945c7bbe85fdef4a16d5f1af6b2c2 | 23e57e59556f42d6935b65be63b59a8b0fc0e6ad | cmd/compile: only look for struct type when crawling inline body
CL 356254 fixed crawling of embeddable types during inline. However, we
are too agressive, since when we call markEmbed for every type seen
during inlining function body. That leads to false positive that for a
non-embedded type, its unexported methods a... | [
{
"path": "src/cmd/compile/internal/typecheck/crawler.go",
"patch": "@@ -217,7 +217,13 @@ func (p *crawler) markInlBody(n *ir.Name) {\n \t\t\t\t//\n \t\t\t\t// We generate the wrapper for \"struct{ t }\".M, and inline call\n \t\t\t\t// to \"struct{ t }\".M, which makes \"t.M\" reachable.\n-\t\t\t\tp.markEmb... | 2021-10-21T07:31:40 |
nodejs/node | 756b0acce0be643a11872be1b5e36b98e739113b | 15b0ab1651e316538537a5dfb8be92827fc97daa | src: fix indentation in a few node_http2 enums
PR-URL: https://github.com/nodejs/node/pull/25761
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@ad... | [
{
"path": "src/node_http2.h",
"patch": "@@ -236,11 +236,11 @@ struct nghttp2_header : public MemoryRetainer {\n V(PROXY_CONNECTION, \"proxy-connection\")\n \n enum http_known_headers {\n-HTTP_KNOWN_HEADER_MIN,\n+ HTTP_KNOWN_HEADER_MIN,\n #define V(name, value) HTTP_HEADER_##name,\n-HTTP_KNOWN_HEADERS(V)\... | 2019-01-28T12:37:13 |
electron/electron | 97857aa152e12ed5f2044edf53b23ed6992c2b0d | fe2219a635b49424d8163417b4d40dbab878cbd0 | Update brightray for DevToolsFocused fix | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 1cfc13fec13a36f3682ee702c32dc2cf22363143\n+Subproject commit 1c12c82323769f677c0c487c910575f1f487637d",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-09-15T03:26:55 |
vercel/next.js | e3875d74214480454ee9df6af57f4abbd7fbf7b9 | 4c2ad81ea7d5ff51a8d91aa31e4dca3514067555 | next/font/local support for Turbopack (#47369)
Fixes WEB-249
Depends on vercel/turbo#4288
This implements support for `next/font/local` for Turbopack. It:
* Removes the compile-time feature restricting access to `next/font/local`
* Implements `NextFontLocalReplacerVc` and `NextFontLocalCssModuleReplacerVc`, similar... | [
{
"path": "packages/next-swc/crates/next-build/Cargo.toml",
"patch": "@@ -7,7 +7,6 @@ edition = \"2021\"\n autobenches = false\n \n [features]\n-next-font-local = [\"next-core/next-font-local\"]\n native-tls = [\"next-core/native-tls\"]\n rustls-tls = [\"next-core/rustls-tls\"]\n custom_allocator = [\"turbo... | 2023-03-27T16:30:25 |
golang/go | 23e57e59556f42d6935b65be63b59a8b0fc0e6ad | 3beab0cd71e9e4fedba13d762ed35db04851f1be | reflect: make Value.Pointer panic on bad notinheap pointers
Same as CL 350153 did for Value.Elem to panic on bad notinheap pointers.
While at it, also add more tests for notinheap deref.
Change-Id: Id7d9d12ad8467de5926b6a7e8f9d659fea5fedb5
Reviewed-on: https://go-review.googlesource.com/c/go/+/357630
Trust: Cuong Man... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -7721,6 +7721,8 @@ func TestNotInHeapDeref(t *testing.T) {\n \n \tv = ValueOf((*nih)(unsafe.Pointer(new(int))))\n \tshouldPanic(\"reflect: reflect.Value.Elem on an invalid notinheap pointer\", func() { v.Elem() })\n+\tshouldPanic(\"reflect: reflect.Value.Poi... | 2021-10-21T16:35:05 |
huggingface/transformers | 3beac9c65985c2d60b368afa92aa399fbf7b4644 | 21e708c8fd3e75d72c9e042998a006cbaf8e20f2 | Fix quite a lot of FA tests (#40548)
* fix_rope_change
* fix
* do it dynamically
* style
* simplify a lot
* better fix
* fix
* fix
* fix
* fix
* style
* fix | [
{
"path": "src/transformers/models/bark/modeling_bark.py",
"patch": "@@ -387,7 +387,6 @@ def __init__(self, config):\n self.drop = nn.Dropout(config.dropout)\n \n self.layers = nn.ModuleList([BarkBlock(config, is_causal=True, layer_idx=i) for i in range(config.num_layers)])\n- self._u... | 2025-09-01T14:42:50 |
rust-lang/rust | e4c4c4c677f00a35aef0cfbe5e5ab3b30eafda4c | dff8ee5b01b7251937860da41afd55958c13456a | Fix review comments | [
{
"path": "Cargo.lock",
"patch": "@@ -3640,6 +3640,7 @@ dependencies = [\n \"rustc_macros\",\n \"rustc_serialize\",\n \"rustc_span\",\n+ \"smallvec\",\n \"tracing\",\n \"unic-langid\",\n ]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "compiler/rustc_error_mes... | 2025-06-06T14:20:48 |
nodejs/node | 15b0ab1651e316538537a5dfb8be92827fc97daa | 006aa632c6734d6a6a03863d9ace2761cbc38104 | src: add debug check for inspector uv_async_t
Add a check to make sure start_io_thread_async is not
accidentally re-used or used when uninitialized.
(This is a bit of an odd check imo, but it helped me figure
out a real issue and it might do so again, so… why not?)
PR-URL: https://github.com/nodejs/node/pull/25777
Re... | [
{
"path": "src/inspector_agent.cc",
"patch": "@@ -51,6 +51,9 @@ using v8_inspector::V8InspectorClient;\n \n static uv_sem_t start_io_thread_semaphore;\n static uv_async_t start_io_thread_async;\n+// This is just an additional check to make sure start_io_thread_async\n+// is not accidentally re-used or used ... | 2019-01-28T22:53:39 |
electron/electron | c99ec368b398aee52f580afb3f9e8900c9e06273 | dc59b4fa06e3bfce212e0b427e296e14d2b228cf | Update quick-start.md for zh-CN
Fixed some typo. | [
{
"path": "docs-translations/zh-CN/tutorial/quick-start.md",
"patch": "@@ -11,16 +11,16 @@ Electron 可以让你使用纯 JavaScript 调用丰富的原生 APIs 来创造\n ## 渲染进程\n 由于 Electron 使用 Chromium 来展示页面,所以 Chromium 的多进程结构也被充分利用。每个 Electron 的页面都在运行着自己的进程,这样的进程我们称之为**渲染进程**。\n \n-在一般浏览器中,网页通常会在沙盒环境下运行,并且不允许访问原生资源。然后,Electron 用户拥有在网页中... | 2015-09-15T03:15:11 |
vercel/next.js | 1cea1c22bc15ef89587d4bd3ac0eca7bb9722c4a | 2eee4aad953a5c43b69ee04cc27a42c98bc234ae | Remove unneeded waiting in otel tests (#47431)
- wip
- remove waiting for otel before tests
- remove useless timeout in test
fix NEXT-815 ([link](https://linear.app/vercel/issue/NEXT-815)) | [
{
"path": "packages/next/src/server/dev/next-dev-server.ts",
"patch": "@@ -99,6 +99,7 @@ import { logAppDirError } from './log-app-dir-error'\n import { createClientRouterFilter } from '../../lib/create-client-router-filter'\n import { IncrementalCache } from '../lib/incremental-cache'\n import LRUCache fro... | 2023-03-27T10:50:06 |
golang/go | 5a3d0f5a6361a2a1ccba19ad8d8da8b4367ea2c9 | b8da7e4c4c9e97b3d1ebfb07506acdd61277b988 | cmd/internal/obj/ppc64: rework argument classifications
This introduces a number of new classifications which will make it
easier to generate functions to assemble the new instructions of
ISA 3.1, and potentially earlier versions.
No code generation changes should occur as a result of these. These
allow finer control... | [
{
"path": "src/cmd/internal/obj/ppc64/a.out.go",
"patch": "@@ -350,41 +350,64 @@ const (\n )\n \n const (\n-\tC_NONE = iota\n-\tC_REG\n-\tC_FREG\n-\tC_VREG\n-\tC_VSREG\n-\tC_CREG\n-\tC_SPR /* special processor register */\n-\tC_ZCON\n-\tC_SCON /* 16 bit signed */\n-\tC_UCON /* 32 bit signed, low 16 bits... | 2021-08-09T16:17:08 |
rust-lang/rust | 2a5225a369e87ebaac3d34583603479064e2623d | d00435f223dc3a88d8c5f472b10ba948b7959cc6 | rustc_lexer: typo fix + small cleanups | [
{
"path": "compiler/rustc_lexer/src/cursor.rs",
"patch": "@@ -68,7 +68,7 @@ impl<'a> Cursor<'a> {\n \n /// Peeks the third symbol from the input stream without consuming it.\n pub fn third(&self) -> char {\n- // `.next()` optimizes better than `.nth(1)`\n+ // `.next()` optimizes better... | 2025-06-06T13:06:59 |
nodejs/node | 006aa632c6734d6a6a03863d9ace2761cbc38104 | 6f217e7ce5f1a0db1b3d31a23efa6a2af8acfecb | src: add handle scope to `OnFatalError()`
For the report generation, we use `Environment::GetCurrent(isolate)`
which uses `isolate->GetCurrentContext()` under the hood, thus
allocates a handle. Without a `HandleScope`, this is invalid.
This might not strictly be allowed inside of `OnFatalError()`,
but it won’t make a... | [
{
"path": "src/node_errors.cc",
"patch": "@@ -319,6 +319,7 @@ void OnFatalError(const char* location, const char* message) {\n }\n #ifdef NODE_REPORT\n Isolate* isolate = Isolate::GetCurrent();\n+ HandleScope handle_scope(isolate);\n Environment* env = Environment::GetCurrent(isolate);\n if (env !=... | 2019-01-28T22:15:37 |
electron/electron | 9652ed6508fa2cb048783f75e1c997461f9aa59b | 40d93ce55aa0e478b639b0b07e42de1328930ae4 | More fixes after code review. | [
{
"path": "atom/browser/api/atom_api_app.cc",
"patch": "@@ -167,12 +167,8 @@ void App::OnOpenURL(const std::string& url) {\n Emit(\"open-url\", url);\n }\n \n-void App::OnActivateWithNoOpenWindows() {\n- Emit(\"activate-with-no-open-windows\");\n-}\n-\n-void App::OnActivate(bool hasVisibleWindows) {\n- ... | 2015-09-15T02:05:53 |
vercel/next.js | 688d8253da8586d3b6251aff42535245834c4456 | 53bcdea01c963ecfb0746bd70ab73ba114aa32e8 | refactor(relay): Use transform from `swc/plugins` repository (#47441)
Previously `next-swc` had relay transform inline, but it makes
maintenance harder. So this PR patches next-swc to use relay plugin from
`swc-project/plugins` repository.
Closes WEB-782
Fixes #47239
fix NEXT-883 ([link](https://linear.app/ve... | [
{
"path": "docs/advanced-features/compiler.md",
"patch": "@@ -118,6 +118,7 @@ module.exports = {\n src: './',\n artifactDirectory: './__generated__',\n language: 'typescript',\n+ eagerEsModules: false;\n },\n },\n }",
"additions": 1,
"deletions": 0,
"language": "Mark... | 2023-03-27T07:34:09 |
golang/go | b8da7e4c4c9e97b3d1ebfb07506acdd61277b988 | f99e40aac023d818e8c2594e5b8c075786087132 | cmd/compile: fix inlining of labeled for loops
There is already a mechanism using inlgen to rename labels insided
inlined functions so that they are unique and don't clash with loops in
the outer function. This is used for OLABEL and OGOTO. Now that we are
doing inlining of OFOR loops, we need to do this translation f... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -1223,7 +1223,7 @@ func (subst *inlsubst) node(n ir.Node) ir.Node {\n \t\t\t// Don't do special substitutions if inside a closure\n \t\t\tbreak\n \t\t}\n-\t\t// Since we don't handle bodies with closures,\n+\t\t// Because of the above test for... | 2021-10-20T20:56:15 |
rust-lang/rust | 46a936a353d1418d572669d6aa3f63ccb0f99bea | d00435f223dc3a88d8c5f472b10ba948b7959cc6 | bootstrap: fix tracing imports | [
{
"path": "src/bootstrap/src/core/config/config.rs",
"patch": "@@ -28,8 +28,6 @@ use build_helper::git::{GitConfig, PathFreshness, check_path_modifications, outp\n use serde::Deserialize;\n #[cfg(feature = \"tracing\")]\n use tracing::{instrument, span};\n-#[cfg(feature = \"tracing\")]\n-use tracing::{instr... | 2025-06-06T12:49:55 |
vercel/next.js | 257872e49c110405344bff7114727f19f4fac1e5 | d34ba2b0ff802b3e252958fcc47279bf8fcd2492 | Rename app-render/index.tsx to app-render/app-render.tsx (#47285)
Ensures `app-render` shows the right file given that there's also a
`app-renderer.tsx` in turbopack.
<!-- 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 fol... | [
{
"path": "packages/next-swc/crates/next-core/js/src/entry/app-renderer.tsx",
"patch": "@@ -31,7 +31,7 @@ import type { RenderOpts } from \"next/dist/server/app-render/types\";\n import \"next/dist/server/node-polyfill-fetch\";\n import \"next/dist/server/node-polyfill-web-streams\";\n import \"@vercel/turb... | 2023-03-27T05:47:27 |
golang/go | 6508fdad9d83d6792314639c9819a15894728682 | 8151b56c5d1de8f654a6e6789a0e607b55845c1e | runtime: formalize and fix gcPercent synchronization
Currently gcController.gcPercent is read non-atomically by
gcControllerState.revise and gcTrigger.test, but these users may
execute concurrently with an update to gcPercent.
Although revise's results are best-effort, reading it directly in this
way is, generally sp... | [
{
"path": "src/runtime/mgc.go",
"patch": "@@ -545,7 +545,7 @@ func (t gcTrigger) test() bool {\n \t\t// own write.\n \t\treturn gcController.heapLive >= gcController.trigger\n \tcase gcTriggerTime:\n-\t\tif gcController.gcPercent < 0 {\n+\t\tif atomic.Loadint32(&gcController.gcPercent) < 0 {\n \t\t\treturn ... | 2021-04-08T21:07:02 |
huggingface/transformers | 21e708c8fd3e75d72c9e042998a006cbaf8e20f2 | c99d43e6ece3984b58801f7c8ecaf27601118f7a | Fix for missing default values in encoder decoder (#40517)
* Added default_value for is_updated and type check
* Forgot one
* Repo consistency | [
{
"path": "examples/modular-transformers/modeling_dummy_bert.py",
"patch": "@@ -136,6 +136,7 @@ def forward(\n 1, 2\n )\n \n+ is_updated = False\n is_cross_attention = encoder_hidden_states is not None\n if past_key_values is not None:\n if isinstance(p... | 2025-09-01T14:11:23 |
golang/go | 02a36668aa13c3182d29da678764c8f4f5a9499b | 6ec9a1da2d48fdc94093feb0ea3465129e11fc24 | runtime: fix typo of pushBackAll
Fixes: #49081
Change-Id: Ie6742f1e7a60c2d92ce1283bcfaa3eac521440a1
Reviewed-on: https://go-review.googlesource.com/c/go/+/357629
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Trust: Daniel Martí <mvdan@mvdan.cc>
Trust: Cherry Mui <cherryyz@google.com> | [
{
"path": "src/runtime/proc.go",
"patch": "@@ -6123,7 +6123,7 @@ func (q *gQueue) pushBack(gp *g) {\n \tq.tail.set(gp)\n }\n \n-// pushBackAll adds all Gs in l2 to the tail of q. After this q2 must\n+// pushBackAll adds all Gs in q2 to the tail of q. After this q2 must\n // not be used.\n func (q *gQueue) p... | 2021-10-21T15:34:33 |
huggingface/transformers | c99d43e6ece3984b58801f7c8ecaf27601118f7a | 3c3dac3c12e931dcf5923be4fcb7916634acae71 | Fix `siglip` flaky `test_eager_matches_sdpa_inference` (#40584)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/siglip/test_modeling_siglip.py",
"patch": "@@ -25,7 +25,6 @@\n \n from transformers import SiglipConfig, SiglipTextConfig, SiglipVisionConfig\n from transformers.testing_utils import (\n- is_flaky,\n require_flash_attn,\n require_torch,\n require_torch_gpu,\n@@ -97,13 ... | 2025-09-01T13:17:25 |
vercel/next.js | 3ad55721d1ec0d1711a1a6ce6bb2011a564bd673 | 73491e16c33b783e376f5cbc6d21e673a5d09686 | Remove incorrect entries for pnpm debug log (#47241)
**Reasons for making this change:**
- it is contained within `node_modules/`, which is already ignored
- the previous versions, which were not in `node_modules/`, did not have
a period at the beginning of the filename
Links to documentation supporting these ... | [
{
"path": "examples/active-class-name/.gitignore",
"patch": "@@ -23,7 +23,6 @@\n npm-debug.log*\n yarn-debug.log*\n yarn-error.log*\n-.pnpm-debug.log*\n \n # local env files\n .env*.local",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "examples/active-class-name/nex... | 2023-03-27T05:26:05 |
electron/electron | af5262630a300a19f34b0f3b84d26a6a590f8c09 | b80aab3cf2cd682ae96c2f6b7aff68e082d6e0de | docs: Fix role hideothers, unhide typo | [
{
"path": "docs/api/menu.md",
"patch": "@@ -170,11 +170,11 @@ if (process.platform == 'darwin') {\n {\n label: 'Hide Others',\n accelerator: 'Command+Shift+H',\n- role: 'hideothers:'\n+ role: 'hideothers'\n },\n {\n label: 'Show All',\n- role: '... | 2015-09-11T12:26:48 |
rust-lang/rust | b28590847209d93a42fed462cb007a5461e95baa | d00435f223dc3a88d8c5f472b10ba948b7959cc6 | fix typo | [
{
"path": "compiler/rustc_middle/src/ty/typeck_results.rs",
"patch": "@@ -199,7 +199,7 @@ pub struct TypeckResults<'tcx> {\n \n /// Tracks the rvalue scoping rules which defines finer scoping for rvalue expressions\n /// by applying extended parameter rules.\n- /// Details may be find in `rustc_h... | 2025-06-06T11:15:46 |
huggingface/transformers | 3c3dac3c12e931dcf5923be4fcb7916634acae71 | 2b71c5b7a6e59c8e81084565df19f1257d554f18 | Add Copilot instructions (#40432)
* Add copilot-instructions.md
* Fix typo
* Update .github/copilot-instructions.md
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
---------
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> | [
{
"path": ".github/copilot-instructions.md",
"patch": "@@ -0,0 +1,39 @@\n+# copilot-instructions.md Guide for Hugging Face Transformers\n+\n+This copilot-instructions.md file provides guidance for code agents working with this codebase.\n+\n+## Core Project Structure\n+\n+- `/src/transformers`: This contain... | 2025-09-01T13:09:54 |
golang/go | 6ec9a1da2d48fdc94093feb0ea3465129e11fc24 | 8b0bea993d452ef7861642a9c04bae213246ded1 | internal/bytealg: fix Separator length check for Index/ppc64le
Modified condition in the ASM implementation of indexbody to
determine if separator length crosses 16 bytes to BGT from BGE
to avoid incorrectly crossing a page.
Also fixed IndexString to invoke indexbodyp9 when on the POWER9
platform
Change-Id: I0602a79... | [
{
"path": "src/internal/bytealg/index_ppc64x.s",
"patch": "@@ -85,7 +85,7 @@ TEXT ·IndexString<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40\n \tMOVBZ internal∕cpu·PPC64+const_offsetPPC64HasPOWER9(SB), R7\n \tCMP R7, $1\n \tBNE power8\n-\tBR indexbody<>(SB)\n+\tBR indexbodyp9<>(SB)\n \n #endif\n power8:\... | 2021-10-19T09:11:46 |
vercel/next.js | 73491e16c33b783e376f5cbc6d21e673a5d09686 | 5262594cd7b3ba0daa06572ba578061d705181b6 | test(test-utils): correct --turbo error overlay lookup (#46901)
### Fixing a bug
Minor fix for https://github.com/vercel/next.js/pull/46589, forgot to
wrap in evaluate in result fail to ask to browser to lookup overlay in
--turbo tests.
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "test/lib/next-test-utils.js",
"patch": "@@ -682,13 +682,15 @@ export async function getRedboxHeader(browser) {\n return retry(\n () => {\n if (shouldRunTurboDevTest()) {\n- const portal = [].slice\n- .call(document.querySelectorAll('nextjs-portal'))\n- .find((... | 2023-03-27T04:30:16 |
nodejs/node | 5aa89d616f8b30e5ea73bd9f0f12bf13ef184e5a | 80a18cac8bc5acaac0ece301cff21066d0464499 | lib: refactor ERR_SYNTHETIC
- Tidy up description in docs.
- Remove a second definition in the docs.
- Remove unused string input parameter.
- Remove duplicate "JavaScript Callstack" in error messages.
PR-URL: https://github.com/nodejs/node/pull/25749
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1692,8 +1692,8 @@ length.\n <a id=\"ERR_SYNTHETIC\"></a>\n #### ERR_SYNTHETIC\n \n-An artificial error object used to capture call stack when diagnostic report\n-is produced.\n+An artificial error object used to capture the call stack for diagnostic\n+reports.\n ... | 2019-01-28T00:08:35 |
huggingface/transformers | 2b71c5b7a6e59c8e81084565df19f1257d554f18 | 8e0b2c8baf880c007514eb0712201d604433d614 | Fix inexistent imports (#40580)
Signed-off-by: cyy <cyyever@outlook.com> | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -585,7 +585,6 @@\n from .cache_utils import HQQQuantizedCache as HQQQuantizedCache\n from .cache_utils import HQQQuantizedLayer as HQQQuantizedLayer\n from .cache_utils import HybridCache as HybridCache\n- from .cache_utils import MambaCa... | 2025-09-01T13:05:00 |
golang/go | fca46d0b36c10250713ec0f4c9bf13d626f358d1 | 73652af80d9f33de946fc3a91c6900a81247df18 | go/types: print assignment operation for invalid operation errors
This is port of CL 357229 for types2 to go/types.
Change-Id: I35ed6b784969210a00ea5b36238df7d6b7fa18bc
Reviewed-on: https://go-review.googlesource.com/c/go/+/357230
Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Run-TryBot: Cuong Manh Le <cuong.manhl... | [
{
"path": "src/go/types/expr.go",
"patch": "@@ -1000,7 +1000,11 @@ func (check *Checker) binary(x *operand, e ast.Expr, lhs, rhs ast.Expr, op token\n \t\t\tif e != nil {\n \t\t\t\tposn = e\n \t\t\t}\n-\t\t\tcheck.invalidOp(posn, _MismatchedTypes, \"%s (mismatched types %s and %s)\", e, x.typ, y.typ)\n+\t\t\... | 2021-10-20T05:31:53 |
vercel/next.js | 5262594cd7b3ba0daa06572ba578061d705181b6 | 83c2a3f09c214989a602c6271415b42a1de16cd3 | Add note about req to circular-structure error doc (#47162)
Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com> | [
{
"path": "errors/circular-structure.md",
"patch": "@@ -9,3 +9,5 @@ However, the result returned from `getInitialProps` can't be serialized when it\n #### Possible Ways to Fix It\n \n Circular structures are not supported, so the way to fix this error is removing the circular structure from the object that ... | 2023-03-27T03:44:31 |
nodejs/node | 80a18cac8bc5acaac0ece301cff21066d0464499 | c64b1aef07dd1f036f1e940a2b104db63406cafc | inspector, trace_events: make sure messages are sent on a main thread
Fixes: https://github.com/nodejs/node/issues/23185
PR-URL: https://github.com/nodejs/node/pull/24814
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/inspector/main_thread_interface.cc",
"patch": "@@ -316,15 +316,21 @@ void MainThreadInterface::RemoveObject(int id) {\n }\n \n Deletable* MainThreadInterface::GetObject(int id) {\n- auto iterator = managed_objects_.find(id);\n+ Deletable* pointer = GetObjectIfExists(id);\n // This would m... | 2018-12-03T21:25:30 |
huggingface/transformers | 8e0b2c8baf880c007514eb0712201d604433d614 | a543095c9967ddd3dd0915ffa19df412a4788a44 | Skip `TvpImageProcessingTest::test_slow_fast_equivalence` (#40593)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/tvp/test_image_processing_tvp.py",
"patch": "@@ -19,7 +19,7 @@\n import numpy as np\n \n from transformers.image_transforms import PaddingMode\n-from transformers.testing_utils import is_flaky, require_torch, require_vision\n+from transformers.testing_utils import require_torch, requ... | 2025-09-01T13:03:34 |
rust-lang/rust | 5930e54ce5e7dc0bab156917ec6045b4643d5633 | 6bb0c97409cbfac7ec6f49f9aec3d35a5ae35122 | fix typo | [
{
"path": "clippy_lints/src/functions/mod.rs",
"patch": "@@ -303,7 +303,7 @@ declare_clippy_lint! {\n /// to the name of the method, when there is a field's whose name matches that of the method.\n ///\n /// ### Why is this bad?\n- /// It is most likely that such a method is a bug caused by ... | 2025-06-06T10:28:44 |
electron/electron | c3664463ab1a4c29fe41ea3e1be0ee90630bd9d3 | c6395c21974da55b174bf8ce51909cab75073cbc | Update as upstream, fix typos | [
{
"path": "README-ko.md",
"patch": "@@ -49,6 +49,10 @@ Electron을 빌드 하는 방법과 프로젝트에 기여하는 방법도 문\n \n ## 커뮤니티\n \n-[Atom 포럼내의 `electron` 카테고리](http://discuss.atom.io/category/electron)와 Freenode `#atom-shell` 채팅 채널에서 활발하게 토론이 이어지고 있습니다.\n+다음 링크를 통해 커뮤니티에 질문을 올리거나 토론을 나누실 수 있습니다:\n+\n+- Atom 포럼의 [`electron`](http... | 2015-09-11T02:56:36 |
golang/go | 4e565f7372494c9c46e33a35e84f0fe4fc7d2774 | 27a1454ee09b1923ddcf0cdc5e17b4dd7de8ea2a | cmd/compile: fix crawling of embeddable types during inline
In CL 327872, there's a fix for crawling of embeddable types directly
reached by the user, so all of its methods need to be re-exported. But
we missed the cased when an un-exported type may be reachable by
embedding in exported type. Example:
type t struct ... | [
{
"path": "src/cmd/compile/internal/typecheck/crawler.go",
"patch": "@@ -195,18 +195,35 @@ func (p *crawler) markInlBody(n *ir.Name) {\n \tvar doFlood func(n ir.Node)\n \tdoFlood = func(n ir.Node) {\n \t\tt := n.Type()\n-\t\tif t != nil && (t.HasTParam() || t.IsFullyInstantiated()) {\n-\t\t\t// Ensure that ... | 2021-10-18T07:31:48 |
vercel/next.js | 83c2a3f09c214989a602c6271415b42a1de16cd3 | 29d7a265df53e2c73bd11ae3c7103dc953504bf2 | Integrating capsize latest (#47428)
Integrating capsize latest
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
... | [
{
"path": "packages/font/src/google/get-fallback-font-override-metrics.ts",
"patch": "@@ -13,9 +13,7 @@ import * as Log from 'next/dist/build/output/log'\n export function getFallbackFontOverrideMetrics(fontFamily: string) {\n try {\n const { ascent, descent, lineGap, fallbackFont, sizeAdjust } =\n- ... | 2023-03-27T03:29:28 |
nodejs/node | 7fa5157497389cbc90766680f85921b8aa458c9d | 94ebf3f0a733902477674d6cc945ad052755bb28 | module: do not use `process.exit()`
Inside workers, using stdio is always asynchronous, so using
`process.exit()` always interrupts sending of messages to the
parent thread, including error messages presented over stdio.
Do not use `process.exit()` and instead trigger a “real”
uncaught exception.
PR-URL: https://git... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -60,14 +60,12 @@ module.exports = Module;\n let asyncESM;\n let ModuleJob;\n let createDynamicModule;\n-let decorateErrorStack;\n \n function lazyLoadESM() {\n asyncESM = require('internal/process/esm_loader');\n ModuleJob = require('internal/... | 2019-01-28T15:20:40 |
electron/electron | 31775aa0493ad4d1edf7596dd94fd7d2e0b80572 | 9ca85a78598c27459c86a1013c037e78f7c91d13 | Fix harder | [
{
"path": "docs/tutorial/using-native-node-modules.md",
"patch": "@@ -31,7 +31,7 @@ which handles the manual steps of downloading headers and building native module\n npm install --save-dev electron-rebuild\n \n # Every time you run npm install, run this\n-npm run electron-rebuild\n+node ./node_modules/.bin... | 2015-09-10T18:00:43 |
huggingface/transformers | a543095c9967ddd3dd0915ffa19df412a4788a44 | 8564e210ca02f88892e04ded0c8321bb44e4398d | Fix typos (#40585)
Signed-off-by: cyy <cyyever@outlook.com> | [
{
"path": "examples/metrics-monitoring/README.md",
"patch": "@@ -13,7 +13,7 @@ cd examples/metrics-monitoring\n docker compose up\n ```\n \n-Then, in your srcipt running CB, you will need to create a MeterProvider and TracerProvider as follows:\n+Then, in your script running CB, you will need to create a Me... | 2025-09-01T12:58:23 |
golang/go | d9421cec00a5e171699b00966bebc85a36593bf2 | b091189762980836527c4aa50e3693632aea5144 | net/http/internal: return unexpected EOF on incomplete chunk read
Fixes #48861
Change-Id: I3f55bfbdc4f2cf5b33d1ab2d76e01335bb497c6f
GitHub-Last-Rev: 0ecd790b87ddd31d0cf08e8f2726f918a2edd1fb
GitHub-Pull-Request: golang/go#48903
Reviewed-on: https://go-review.googlesource.com/c/go/+/355029
Trust: Damien Neil <dneil@goo... | [
{
"path": "src/net/http/internal/chunked.go",
"patch": "@@ -81,6 +81,11 @@ func (cr *chunkedReader) Read(b []uint8) (n int, err error) {\n \t\t\t\t\tcr.err = errors.New(\"malformed chunked encoding\")\n \t\t\t\t\tbreak\n \t\t\t\t}\n+\t\t\t} else {\n+\t\t\t\tif cr.err == io.EOF {\n+\t\t\t\t\tcr.err = io.ErrU... | 2021-10-16T02:19:20 |
vercel/next.js | 29d7a265df53e2c73bd11ae3c7103dc953504bf2 | 956c562886e64c3e05705924655bc4ca4889a3a7 | Add warning when deopting page into client rendering entirely (#47531)
### What?
Adds a warning when `useSearchParams` deopts the entire page to
client-side rendering.
When there is no Suspense boundary the entire page becomes client-side
rendered, you can learn more about that here:
https://beta.nextjs.org/d... | [
{
"path": "errors/deopted-into-client-rendering.md",
"patch": "@@ -0,0 +1,64 @@\n+# Entire page deopted into client-side rendering\n+\n+#### Why This Error Occurred\n+\n+During static rendering the entire page was deopted into client-side rendering by `useSearchParams` as there was no [Suspense boundary](ht... | 2023-03-27T02:52:30 |
nodejs/node | 8919169bb718a53a0c4496dcf2cd9674f8a79b0b | 86a49ce2d8870e37089e3450addb05737ae01d70 | worker: export workerData to ESM workers
Fixes: https://github.com/nodejs/node/issues/25765
PR-URL: https://github.com/nodejs/node/pull/25768
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Jeremiah Senkpiel <f... | [
{
"path": "lib/worker_threads.js",
"patch": "@@ -17,5 +17,6 @@ module.exports = {\n MessageChannel,\n threadId,\n Worker,\n- parentPort: null\n+ parentPort: null,\n+ workerData: null,\n };",
"additions": 2,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "test/fixtures/wor... | 2019-01-28T14:29:48 |
electron/electron | 9ca85a78598c27459c86a1013c037e78f7c91d13 | b861a174ca57ea3d88f468b98a3d946721a0b396 | Fix electron-rebuild instructions for Win32 | [
{
"path": "docs/tutorial/using-native-node-modules.md",
"patch": "@@ -31,7 +31,7 @@ which handles the manual steps of downloading headers and building native module\n npm install --save-dev electron-rebuild\n \n # Every time you run npm install, run this\n-./node_modules/.bin/electron-rebuild\n+npm run elec... | 2015-09-10T17:57:08 |
huggingface/transformers | 8564e210ca02f88892e04ded0c8321bb44e4398d | 564be6d8950ae781c1b0e93435a4fe7d80e59fc9 | 🚨 Remove Constrained Beam Search decoding strategy (#40518)
* Squashed remove-constrastive-search
* sweeep ready for tests
* testing...
* whoops
* ops
* tests fix
* tests green, changed handling of deprecated methods
* tests gone after green
* restore and deprecate beam obkects
* restore and deprecate constr... | [
{
"path": "docs/source/ar/notebooks.md",
"patch": "@@ -39,7 +39,6 @@\n | [كيفية ضبط نموذج بدقة على التلخيص](https://github.com/huggingface/notebooks/blob/main/examples/summarization.ipynb)| يوضح كيفية معالجة البيانات مسبقًا وضبط نموذج مُدرَّب مسبقًا بدقة على XSUM. | [ binary(x *operand, e syntax.Expr, lhs, rhs syntax.Expr, op\n \t\t// only report an error if we have valid types\n \t\t// (otherwise we had an error reported elsewhere already)\n \t\tif x.typ != Typ[In... | 2021-10-20T02:55:26 |
vercel/next.js | 956c562886e64c3e05705924655bc4ca4889a3a7 | c748b16555163819f41e2c79aaffc760cb45d4f5 | Add ownership of build folder to Web Tooling team (#47508)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For ... | [
{
"path": ".github/CODEOWNERS",
"patch": "@@ -13,12 +13,11 @@\n /*.md @vercel/next-js @leerob\n /packages/create-next-app/ @vercel/next-js\n \n-# SWC Build & Telemetry (@padmaia)\n+# Tooling & Telemetry\n \n-/packages/next/build/ ... | 2023-03-27T02:19:02 |
nodejs/node | 6967f91368cbb9cad3877ee59874cc83ccef4653 | feebdc5bc5a44779069a2269f4d3f15d4e36a277 | process: split execution into main scripts
This patch splits the execution mode selection from the environment
setup in `lib/internal/bootstrap/node.js`, and split the entry point
of different execution mode into main scripts under
`lib/internal/main`:
- `check_syntax.js`: used when `-c`/`--check` which only checks t... | [
{
"path": "lib/internal/bootstrap/cache.js",
"patch": "@@ -13,33 +13,32 @@ const { hasTracing, hasInspector } = process.binding('config');\n \n // Modules with source code compiled in js2c that\n // cannot be compiled with the code cache.\n-const cannotUseCache = [\n+const cannotBeRequired = [\n 'sys', /... | 2019-01-15T15:12:21 |
rust-lang/rust | e90b3fb51f2e5c5c7e65480b1a456b71249a24da | d2c0de2b0e8cd60b810297af05b1886478529f9e | fix: Record macro calls for fields in `ChildBySource` impls | [
{
"path": "src/tools/rust-analyzer/crates/hir/src/semantics/child_by_source.rs",
"patch": "@@ -191,6 +191,8 @@ impl ChildBySource for VariantId {\n Either::Right(source) => res[keys::RECORD_FIELD].insert(AstPtr::new(&source), id),\n }\n }\n+ let (_, sm) = db.varian... | 2025-06-06T04:13:15 |
golang/go | 4cc6a919077f27d9255536d6539118e65c1650a2 | 2be5b846650aa4674a4eca7c11f303673b69a35a | cmd/compile/internal/types2: implement generic conversions
Fixes #47150.
Change-Id: I7531ca5917d4e52ca0b9211d6f2114495b19ba09
Reviewed-on: https://go-review.googlesource.com/c/go/+/356010
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com> | [
{
"path": "src/cmd/compile/internal/types2/conversions.go",
"patch": "@@ -89,6 +89,39 @@ func (x *operand) convertibleTo(check *Checker, T Type) bool {\n \t\treturn true\n \t}\n \n+\t// TODO(gri) consider passing under(x.typ), under(T) into convertibleToImpl (optimization)\n+\tVp, _ := under(x.typ).(*TypePa... | 2021-10-14T17:04:10 |
huggingface/transformers | 564be6d8950ae781c1b0e93435a4fe7d80e59fc9 | 3bccb02616a232cf97e4ebfd879c82a7ac0ec0df | Support batch size > 1 image-text inference (#36682)
* update make nested image list
* fix make flat list of images
* update type anno
* fix image_processing_smolvlm
* use first image
* add verbose comment
* fix images
* rollback
* fix ut
* Update image_processing_smolvlm.py
* Update image_processing_idefics... | [
{
"path": "src/transformers/image_utils.py",
"patch": "@@ -233,7 +233,7 @@ def make_flat_list_of_images(\n if (\n isinstance(images, (list, tuple))\n and all(isinstance(images_i, (list, tuple)) for images_i in images)\n- and all(is_valid_list_of_images(images_i) for images_i in im... | 2025-09-01T12:26:07 |
vercel/next.js | c748b16555163819f41e2c79aaffc760cb45d4f5 | 9510dd1eb4b6fcf9bf96140ed9620be619f3a103 | Feat(next-types-plugin): added support for Route Handlers (#47185)
Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Co... | [
{
"path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts",
"patch": "@@ -1,17 +1,19 @@\n import type { Rewrite, Redirect } from '../../../lib/load-custom-routes'\n import type { Token } from 'next/dist/compiled/path-to-regexp'\n \n-import path from 'path'\n-import { promises as fs } from 'fs'... | 2023-03-26T23:34:54 |
electron/electron | 143453b603fd1378341d7ebcc198b00398fb1d25 | d4cbf7cadbed1f0dcd01c40ca07639799901b1a6 | Update native-mate to fix the behavior of Dictionary::Get | [
{
"path": "vendor/native_mate",
"patch": "@@ -1 +1 @@\n-Subproject commit 8ca005eb41591f583ebab804945311903f866ad6\n+Subproject commit b7387da0854b20d376fdae0d93a01f83d080668d",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-09-10T07:58:10 |
nodejs/node | b8977045f209c0de2d4d0333d098acd1823ded63 | 8e6667f4d5e29f67a3c423935ac852967d7cad78 | test: refactor test-http-client-timeout-option-with-agent
* Switch from Date.now() to process.hrtime.bigint().
* Move start time recording to before the request is created, not after.
Fixes: https://github.com/nodejs/node/issues/25746
PR-URL: https://github.com/nodejs/node/pull/25752
Reviewed-By: Gus Caplan <me@gus.... | [
{
"path": "test/parallel/test-http-client-timeout-option-with-agent.js",
"patch": "@@ -30,8 +30,8 @@ server.listen(0, options.host, () => {\n \n function doRequest() {\n options.port = server.address().port;\n+ const start = process.hrtime.bigint();\n const req = http.request(options);\n- const start ... | 2019-01-28T00:16:57 |
rust-lang/rust | 0713466a2e7ce9a162de32f920700d81f2882eae | d2c0de2b0e8cd60b810297af05b1886478529f9e | Always include quickfixes for diagnostics, even when diagnostics are disabled | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/config.rs",
"patch": "@@ -1597,6 +1597,16 @@ impl Config {\n term_search_borrowck: self.assist_termSearch_borrowcheck(source_root).to_owned(),\n }\n }\n+\n+ pub fn diagnostic_fixes(&self, source_root: Option<SourceRootId>... | 2025-06-06T00:52:32 |
vercel/next.js | 826fb36680958c8d4de6d07326f6d7722e8853b6 | 836539d083601a505925bdddf65228084cc81bca | fix-(Examples) Updated link tags in Auth0 example code. (#47518)
Updated The link Tags for example on Auth0.
Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com> | [
{
"path": "examples/auth0/components/header.tsx",
"patch": "@@ -11,31 +11,25 @@ const Header = ({ user, loading }: HeaderProps) => {\n <nav>\n <ul>\n <li>\n- <Link href=\"/\" legacyBehavior>\n- <a>Home</a>\n- </Link>\n+ <Link href=\"/\">H... | 2023-03-25T18:03:59 |
huggingface/transformers | 3bccb02616a232cf97e4ebfd879c82a7ac0ec0df | 90953d5bc1c8a44d7df37c137485464174e61251 | 🚨 Remove Group Beam Search decoding strategy (#40495)
* Squashed remove-constrastive-search
* testing that tests pass using hub
* fix
* aaand remove tests after all green!! | [
{
"path": "docs/source/en/generation_strategies.md",
"patch": "@@ -225,28 +225,6 @@ outputs = model.generate(**inputs, assistant_model=assistant_model, tokenizer=to\n tokenizer.batch_decode(outputs, skip_special_tokens=True)\n ['Alice and Bob are sitting in a bar. Alice is drinking a beer and Bob is drinkin... | 2025-09-01T11:42:48 |
electron/electron | 69769f9319cdad4ea07e76b1cfde7c3f73b4db39 | f807a8f1e715ca7879d55277494a7e47c1399630 | Resetting debug changes | [
{
"path": "atom/app/atom_main.cc",
"patch": "@@ -90,12 +90,9 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd, int) {\n if (env->GetVar(\"OS\", &os) && os != \"cygwin\") {\n AttachConsole(ATTACH_PARENT_PROCESS);\n \n- FILE* dontcare, *out, *err;\n- out = fopen(\"out.txt\", \"... | 2015-09-10T00:23:12 |
nodejs/node | 8e6667f4d5e29f67a3c423935ac852967d7cad78 | 2c18d973a58fa782e0b2028221ef886596ee2050 | src: pass along errors from i18n converter instantiation
PR-URL: https://github.com/nodejs/node/pull/25734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "src/node_i18n.cc",
"patch": "@@ -171,6 +171,11 @@ class ConverterObject : public BaseObject, Converter {\n Environment* env = Environment::GetCurrent(args);\n HandleScope scope(env->isolate());\n \n+ Local<ObjectTemplate> t = ObjectTemplate::New(env->isolate());\n+ t->SetInternalFie... | 2019-01-27T13:23:19 |
vercel/next.js | 836539d083601a505925bdddf65228084cc81bca | 6ec94141f514b93af3eef44b8b31961d820a8543 | Docs typo (#47528)
fix: typo | [
{
"path": "docs/advanced-features/static-html-export.md",
"patch": "@@ -68,7 +68,7 @@ const nextConfig = {\n module.exports = nextConfig\n ```\n \n-This will change links so that `href=\"/about\"` will instead be `herf=\"/about/\"`. It will also change the output so that `out/about.html` will instead emit `... | 2023-03-25T16:46:17 |
huggingface/transformers | 90953d5bc1c8a44d7df37c137485464174e61251 | 2537ed44779772613957cac42ba20b36b41c22f3 | Fix custom generate relative imports (#40480) | [
{
"path": "src/transformers/dynamic_module_utils.py",
"patch": "@@ -428,10 +428,10 @@ def get_cached_module_file(\n importlib.invalidate_caches()\n # Make sure we also have every file with relative\n for module_needed in modules_needed:\n- if not (submodule_path / f\"{... | 2025-09-01T11:38:56 |
golang/go | 9fa85518ff84420af644b1dd82ff311a39cd99c1 | 1b24c9e42e527b93a39b6a6b16c20672dd2d9a03 | cmd/compile: substitute "". prefix with package in more import locations
The "" stand-in for the current package needs to be substituted
in more places when importing, because of generics.
""..dict.conv4["".MyString]
when imported in main and then exported, this becomes
a..dict.conv4["".MyString]
and then the link... | [
{
"path": "src/cmd/compile/internal/typecheck/iimport.go",
"patch": "@@ -176,7 +176,7 @@ func ReadImports(pkg *types.Pkg, data string) {\n \t\t}\n \n \t\tfor nSyms := ird.uint64(); nSyms > 0; nSyms-- {\n-\t\t\ts := pkg.Lookup(p.stringAt(ird.uint64()))\n+\t\t\ts := pkg.Lookup(p.nameAt(ird.uint64()))\n \t\t\t... | 2021-10-18T19:19:07 |
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.