repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | 24bcd3b21e71cbc8d5eb7507271297478af6b4b2 | 9ab53b0e4b49c2d2e8e6a67ed0d63d19825eaa6c | provide default error message | [
{
"path": "atom/browser/api/atom_api_protocol.cc",
"patch": "@@ -106,7 +106,8 @@ class CustomProtocolRequestJob : public AdapterRequestJob {\n GetWeakPtr(), path));\n return;\n } else if (name == \"RequestErrorJob\") {\n- int error;\n+ // Default value net:... | 2015-05-11T04:54:44 |
vercel/next.js | 16e2fd6dc330f49b88828e811ca7ea9a13651fd8 | b24d72917d04fd42c22bba37f6db59fd566ee483 | Update Edge Runtime docs page (#46239)
<!--
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:
-->
This PR updates the E... | [
{
"path": ".github/workflows/build_test_deploy.yml",
"patch": "@@ -90,7 +90,6 @@ jobs:\n if: ${{ steps.docs-change.outputs.DOCS_CHANGE == 'nope' }}\n \n - run: pnpm run build\n- if: ${{ steps.docs-change.outputs.DOCS_CHANGE == 'nope' }}\n \n - id: check-release\n run: |",
... | 2023-02-23T04:40:21 |
golang/go | 2872496ba528d658b68a9e66f46b2b722368a3bb | 0bfd6fcea6b7cefe200718dc3b318e1d13ee03ab | cmd/compile/internal/types2: systematic detection of missing instantiation
When type-checking expressions, detection of uninstantiated generic
functions and types was somewhat ad-hoc.
Add an extra parameter "allowGenerics" to rawExpr. If not set, the
result operand cannot be generic.
The only place where rawExpr is ... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -763,7 +763,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\tvar t operand\n \t\tx1 := x\n \t\tfor _, arg := range call.ArgList {\n-\t\t\tcheck.rawExpr(x1, arg, nil) // permit trace for types, e.... | 2021-09-01T00:43:18 |
nodejs/node | 19e5e78e9c65605eba43b8c506a8069f6f6d5ff9 | b5420c9577be1f07da8c6ca8b46bb38195ba2529 | build: lint commit message in separate Travis job
Move the first commit message linting to a separate Travis job. Run the
script in bash debug mode to capture any issues communicating with the
GitHub API (e.g. network issues, rate limits).
PR-URL: https://github.com/nodejs/node/pull/24254
Reviewed-By: Rich Trott <rtr... | [
{
"path": ".travis.yml",
"patch": "@@ -4,17 +4,21 @@ cache: ccache\n os: linux\n matrix:\n include:\n+ - name: \"First commit message adheres to guidelines at <a href=\\\"https://goo.gl/p2fr5Q\\\">https://goo.gl/p2fr5Q</a>\"\n+ if: type = pull_request\n+ language: node_js\n+ node_js: \"n... | 2018-11-08T18:27:39 |
electron/electron | 9ab53b0e4b49c2d2e8e6a67ed0d63d19825eaa6c | e5380fd67141d274292fc2a0914700147d7a0ba2 | protocol: adding error job to log error with custom protocols | [
{
"path": "atom/browser/api/atom_api_protocol.cc",
"patch": "@@ -105,6 +105,14 @@ class CustomProtocolRequestJob : public AdapterRequestJob {\n base::Bind(&AdapterRequestJob::CreateFileJobAndStart,\n GetWeakPtr(), path));\n return;\n+ } else if (name == \"Requ... | 2015-05-07T07:42:35 |
vercel/next.js | b24d72917d04fd42c22bba37f6db59fd566ee483 | 7c5aa66a929b6e35e84acd90176ffa2a00f8b8d6 | Code refactoring for loader rules (#46277
These loader rule changes should speed up compilation a bit as regexp
matches should be way faster than function calls with loop and
`includes` inside (`isResourceInPackages` is expensive), especially when
the project is large.
## Bug
- [ ] Related issues linked using... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -63,7 +63,8 @@ import { FontLoaderManifestPlugin } from './webpack/plugins/font-loader-manifest\n import { getSupportedBrowsers } from './utils'\n import { METADATA_IMAGE_RESOURCE_QUERY } from './webpack/loaders/metadata/discover'\n \n-cons... | 2023-02-23T03:32:16 |
huggingface/transformers | 7fd60047c8fac34d15cfd9044737dce536afe576 | 60b5471da3c3d59b8695b9969817267179120add | fix: ImageTextToTextPipeline handles user-defined generation_config (#39374)
fix: ImageTextToTextPipeline handles user-defined generation_config passed to the pipeline
Co-authored-by: Raushan Turganbay <raushan@huggingface.co> | [
{
"path": "src/transformers/pipelines/image_text_to_text.py",
"patch": "@@ -422,6 +422,11 @@ def _forward(self, model_inputs, generate_kwargs=None):\n input_ids = (\n model_inputs[\"input_ids\"] if \"input_ids\" in model_inputs else model_inputs[\"decoder_input_ids\"]\n ) # for ... | 2025-07-17T13:23:29 |
golang/go | f0668e7c8cc2f26e16afa31dd43be774b1db65a5 | 37f5885f29068d869e161c4ee8ee17c3e1195cc8 | [dev.fuzz] cmd/go: stream output when fuzzing
Previously, 'go test' streamed output when there were no package
arguments or when benchmarking. This CL expands that to include
fuzzing to ensure that coordinator progress messages are printed.
This change tweaks tests and output a little bit: the output is
slightly diff... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -1206,10 +1206,10 @@ func (c *runCache) builderRunTest(b *work.Builder, ctx context.Context, a *work.\n \t}\n \n \tvar buf bytes.Buffer\n-\tif len(pkgArgs) == 0 || (testBench != \"\") {\n+\tif len(pkgArgs) == 0 || testBench != \"\" || testFuzz != \"... | 2021-08-24T22:58:03 |
nodejs/node | 1e0005eac91a9f1a14089d13109f0628ea29fa09 | d4654d89be0c20f8ca1e153d074a236348618b00 | test: replacing fixture directory with temp
PR-URL: https://github.com/nodejs/node/pull/24077
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-fs-error-messages.js",
"patch": "@@ -26,15 +26,22 @@ const fixtures = require('../common/fixtures');\n const tmpdir = require('../common/tmpdir');\n const assert = require('assert');\n const fs = require('fs');\n+const path = require('path');\n \n tmpdir.refresh();\n \n-const n... | 2018-11-04T12:40:56 |
vercel/next.js | ff05d9b7b51cb803d75ba75bf22209db12babafd | 001e6cab52237a286d310262eac53ab32f44ca39 | Skip pre-rendering the default param when no params are provided (#46265)
Closes #45850.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see
[`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md)
#... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1434,24 +1434,41 @@ export default async function build(\n ssgPageRoutes = workerResult.prerenderRoutes\n isSsg = true\n }\n- if (\n- ... | 2023-02-22T22:59:19 |
huggingface/transformers | 60b5471da3c3d59b8695b9969817267179120add | fc700c2a26af9e1b27162d408e8edfa2903c715f | Enable some ruff checks for performance and readability (#39383)
* Fix inefficient sequence tests
Signed-off-by: cyy <cyyever@outlook.com>
* Enable PERF102
Signed-off-by: cyy <cyyever@outlook.com>
* Enable PLC1802
Signed-off-by: cyy <cyyever@outlook.com>
* Enable PLC0208
Signed-off-by: cyy <cyyever@outlook.com>... | [
{
"path": "examples/pytorch/3d_parallel_checks.py",
"patch": "@@ -754,9 +754,9 @@ def get_parameters(model: nn.Module) -> Iterable[torch.Tensor]:\n Returns:\n Iterable[torch.Tensor]: An iterator over all parameters in the model\n \"\"\"\n- for name, module in model._modules.items():\n+ ... | 2025-07-17T13:21:59 |
golang/go | 711e1c8224f033ec1d95cdf84465b57b052e8948 | 592ee433f5378e4b08f1fd8860be61b9bf20ca19 | cmd/compile: fix irgen mis-handling invalid function declaration
In -G=3 mode, irgen use its own generated IR, which is mis-handling of
bodyless function and declared function with //go:noescape pragma.
Fix this by adopting the same logic in noder.funcDecl, which minor
change in linkname detection.
Fixes #48097
Cha... | [
{
"path": "src/cmd/compile/internal/noder/decl.go",
"patch": "@@ -113,6 +113,10 @@ func (g *irgen) funcDecl(out *ir.Nodes, decl *syntax.FuncDecl) {\n \t\t}\n \t}\n \n+\tif decl.Body != nil && fn.Pragma&ir.Noescape != 0 {\n+\t\tbase.ErrorfAt(fn.Pos(), \"can only use //go:noescape with external func implement... | 2021-09-01T03:13:41 |
nodejs/node | d3f02d0da3d574b91a15d3ace10e76014b7574fc | fb6c6692a8d2e7e4d86a742216151a6e5e15739b | stream: make `.destroy()` interact better with write queue
Make sure that it is safe to call the callback for `_write()`
even in the presence of `.destroy()` calls during that write.
In particular, letting the write queue continue processing would
previously have thrown an exception, because processing writes
after c... | [
{
"path": "lib/_stream_writable.js",
"patch": "@@ -461,7 +461,7 @@ function onwrite(stream, er) {\n onwriteError(stream, state, sync, er, cb);\n else {\n // Check if we're actually ready to finish, but don't emit yet\n- var finished = needFinish(state);\n+ var finished = needFinish(state) ||... | 2018-11-03T16:48:47 |
huggingface/transformers | fc700c2a26af9e1b27162d408e8edfa2903c715f | 54680d75c9ed32ca7d7b0266d0563dcdd6fd40e3 | Fix convert_and_export_with_cache failures for GPU models (#38976)
* Add the `device` option for `generate()`
* Add device for default tensors to avoid tensor mismatch
* [test] Enable test_static_cache_exportability for torch_device
* infer device from the prompt_token_ids
* Add device for generated tensor
* [Tes... | [
{
"path": "src/transformers/integrations/executorch.py",
"patch": "@@ -107,9 +107,23 @@ def export(\n strict(`Optional[bool]`):\n Flag to instruct `torch.export` to use `torchdynamo`.\n \"\"\"\n+ if hasattr(self.model, \"base_model_prefix\"):\n+ base = g... | 2025-07-17T13:12:32 |
vercel/next.js | 3d73366ad92cd51cba641ca42be5b22c958e7f2c | d38035ccf1c9b8ad6e842ff81c57fad4306a5cae | update turbopack (#46253
# Features
* https://github.com/vercel/turbo/pull/3897
* https://github.com/vercel/turbo/pull/3670
# Bug Fixes
* https://github.com/vercel/turbo/pull/3894
* https://github.com/vercel/turbo/pull/3910
* https://github.com/vercel/turbo/pull/3895
* https://github.com/vercel/turbo/pull... | [
{
"path": "packages/next-swc/Cargo.lock",
"patch": "@@ -126,7 +126,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230221.3#8fcf5d1123df0e00e381d13c8fc2e2b3e33131a8\"\n+source = \"git+https://github.com/v... | 2023-02-22T18:43:50 |
golang/go | 8f397bc1183b1094f8d0c702668b1e2b43dc8797 | 5670ff4ae593019c33b8095a6341deb657be34d7 | cmd/internal/obj/ppc64: improve long conditional branch fixup
Improve the code which fixes up conditional branches which exceed the
range of a single instruction by inserting one extra jump when
possible instead of two.
Change-Id: Ib0eb5b0f47f7d0e0ccd55471307a5f73fbda88a9
Reviewed-on: https://go-review.googlesource.c... | [
{
"path": "src/cmd/internal/obj/ppc64/a.out.go",
"patch": "@@ -329,18 +329,13 @@ const (\n \tBI_OVF = 3\n )\n \n-// Values for the BO field. Add the branch type to\n-// the likely bits, if a likely setting is known.\n-// If branch likely or unlikely is not known, don't set it.\n-// e.g. branch on cr+likely... | 2021-03-09T22:55:18 |
nodejs/node | 53d424a3289d7dcd5b7671ac112810b3a51a3df1 | 936ac681b2f5cf58cd2f1069ccc1720c7981e00e | test: fix uses of deprecated assert.fail with multiple args
PR-URL: https://github.com/nodejs/node/pull/23673
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Refael Ackermann <refack@gmail.com> | [
{
"path": "test/async-hooks/init-hooks.js",
"patch": "@@ -120,8 +120,7 @@ class ActivityCollector {\n }\n if (violations.length) {\n console.error(violations.join('\\n\\n') + '\\n');\n- assert.fail(violations.length, 0,\n- `${violations.length} failed sanity checks`);\n+ ... | 2018-10-15T17:32:30 |
huggingface/transformers | 54680d75c9ed32ca7d7b0266d0563dcdd6fd40e3 | 322400af58794ace3b3f97ecf927570b8c464bfc | Update `GemmaIntegrationTest::test_model_2b_bf16_dola` (#39362)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/gemma/test_modeling_gemma.py",
"patch": "@@ -492,7 +492,7 @@ def test_model_2b_bf16_dola(self):\n ],\n (\"cuda\", 8): [\n \"Hello I am doing an experiment and need to get the mass of a block. The only tool I have is a scale\",\n- ... | 2025-07-17T13:06:23 |
electron/electron | d9c90be1def608e9a39de8aea26802392de46e2b | be06a3d562b2564838978e0c61999219a483c9c8 | Update China mirrors url
fixes #1497 | [
{
"path": "README.md",
"patch": "@@ -31,7 +31,7 @@ npm install electron-prebuilt --save-dev\n \n ### Mirrors\n \n-- [China](https://npm.taobao.org/mirrors/atom-shell)\n+- [China](https://npm.taobao.org/mirrors/electron)\n \n ## Documentation\n ",
"additions": 1,
"deletions": 1,
"language": "Mark... | 2015-05-10T08:15:12 |
vercel/next.js | d38035ccf1c9b8ad6e842ff81c57fad4306a5cae | ab123c1e7c3b28274dc6756a95e979f0b7d3c9d6 | Make build error urls clickable (#46251)
Makes urls in build errors clickable by turning them into `<a>`. Reuses the `<HotlinkedText />` component in build errors that previously only was used in runtime errors. Also fixes an error that made the links break if they had `\n` before or after the url.
Fixes NEXT-586
#... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/internal/components/Terminal/Terminal.tsx",
"patch": "@@ -1,5 +1,6 @@\n import Anser from 'next/dist/compiled/anser'\n import * as React from 'react'\n+import { HotlinkedText } from '../hot-linked-text'\n import { EditorLink } from './EditorLi... | 2023-02-22T18:35:38 |
nodejs/node | 0f8d7a684f1a4885f14b5b5e1c5f675e2738712c | ef907bb4d99d1b445a1c78f602112206a01ddbfe | test: add coverage for systemerror set name
PR-URL: https://github.com/nodejs/node/pull/24200
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-errors-systemerror.js",
"patch": "@@ -111,3 +111,25 @@ const { ERR_TEST } = codes;\n assert.strictEqual(err.path, 'path');\n assert.strictEqual(err.dest, 'path');\n }\n+\n+{\n+ const ctx = {\n+ code: 'ERR_TEST',\n+ message: 'Error occurred',\n+ syscall: 'syscall_t... | 2018-11-06T17:46:28 |
huggingface/transformers | 322400af58794ace3b3f97ecf927570b8c464bfc | 43f07018cff3c305e9d3a3782e3a95100800be4c | fix a comment typo in utils.py (#39459) | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -1539,7 +1539,7 @@ def _validate_assistant(self, assistant_model, tokenizer, assistant_tokenizer):\n else:\n if tokenizer is None or assistant_tokenizer is None:\n raise ValueError(\n- f\"Th... | 2025-07-17T13:06:04 |
electron/electron | ed023a560eb12732f7372f396c18de97203bf908 | be06a3d562b2564838978e0c61999219a483c9c8 | Fix wording in docs/api/remote.md | [
{
"path": "docs/api/remote.md",
"patch": "@@ -49,7 +49,7 @@ Primary value types like strings and numbers, however, are sent by copy.\n \n ## Passing callbacks to the main process\n \n-Some APIs in the main process accept callbacks, and it would be attempting to\n+Some APIs in the main process accept callbac... | 2015-05-10T05:54:37 |
golang/go | 5670ff4ae593019c33b8095a6341deb657be34d7 | 717f337d1d68299ca55a96e9fbb5168e8f7788f4 | cmd/compile: fix conversions from TypeParam to interface
If the TypeParam has all the methods of an interface, allow conversions from TypeParam to interface
Fixes #47708
Change-Id: I40a82a31f6ea9354130dbe3bcfc83537094bf12c
Reviewed-on: https://go-review.googlesource.com/c/go/+/342509
Reviewed-by: Dan Scales <danscal... | [
{
"path": "src/cmd/compile/internal/typecheck/subr.go",
"patch": "@@ -740,9 +740,16 @@ func implements(t, iface *types.Type, m, samename **types.Field, ptr *int) bool\n \n \tif t.IsInterface() || t.IsTypeParam() {\n \t\tif t.IsTypeParam() {\n-\t\t\t// A typeparam satisfies an interface if its type bound\n-\... | 2021-08-16T14:25:47 |
vercel/next.js | 3a30fc8850ab5081c656e2fc07638df1fc0bcf62 | b2a414f376c9a68e22adcff0982966c96f580169 | Support NeedData responses in SourceMap/SourceMapTrace ContentSources (vercel/turbo#3907)
This implements a new `ContentSourceProcessor` trait and
`WrappedContentSource` struct that allows our `ContentSource`s to
register some processor to transform the eventual `ContentSourceContent`
that an inner `ContentSource` ... | [
{
"path": "packages/next-swc/crates/next-core/src/next_image/mod.rs",
"patch": "@@ -5,8 +5,8 @@ use turbo_tasks::{primitives::StringVc, Value};\n use turbopack_core::introspect::{Introspectable, IntrospectableVc};\n use turbopack_dev_server::source::{\n query::QueryValue, ContentSource, ContentSourceCon... | 2023-02-22T16:48:46 |
huggingface/transformers | 565dd0bad74a46d85c41e2d870f803d9e7a1a94e | 26fed50460a8843399b58a23143a9e3f8a6f5aca | Fix tests due to breaking change in accelerate (#39451)
* update values
* fix | [
{
"path": "tests/trainer/test_trainer.py",
"patch": "@@ -3394,7 +3394,7 @@ def test_auto_batch_size_with_deepspeed(self):\n )\n trainer = Trainer(model, args, train_dataset=train_dataset, callbacks=[MockCudaOOMCallback()])\n trainer.train()\n- self.assertEqual(trainer._train_b... | 2025-07-17T12:51:50 |
rust-lang/rust | 0524773b5d9f2460b706b83c275bb5b5c28e358c | 1029572c192cd3bff1a15e0411871ed33b2bdf94 | fix: `unit_arg` suggests wrongly for `Default::default` | [
{
"path": "clippy_lints/src/default.rs",
"patch": "@@ -1,10 +1,9 @@\n use clippy_utils::diagnostics::{span_lint_and_note, span_lint_and_sugg};\n use clippy_utils::source::snippet_with_context;\n use clippy_utils::ty::{has_drop, is_copy};\n-use clippy_utils::{contains_name, get_parent_expr, in_automatically_... | 2025-05-24T06:31:52 |
nodejs/node | ef907bb4d99d1b445a1c78f602112206a01ddbfe | 85f7af77eeae1a3b15a1958102450c4fc9e06df8 | test: fix order of arguments in assert.strictEqual
PR-URL: https://github.com/nodejs/node/pull/24145
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-buffer-indexof.js",
"patch": "@@ -505,20 +505,20 @@ assert.strictEqual(buf_bc.lastIndexOf(Buffer.from('你好'), 7), -1);\n \n // Test lastIndexOf on a longer buffer:\n const bufferString = Buffer.from('a man a plan a canal panama');\n-assert.strictEqual(15, bufferString.lastIndexO... | 2018-11-06T14:51:20 |
electron/electron | 15ae6b8d36982d0c6f69193dd23ae2eb011f5c35 | 853ce0bbd7db0516147f2b1b2482fe557d0d18d4 | fix lint errors and add documentation | [
{
"path": "atom/app/atom_content_client.cc",
"patch": "@@ -10,41 +10,37 @@\n #include \"atom/common/chrome_version.h\"\n #include \"atom/common/options_switches.h\"\n #include \"base/command_line.h\"\n-#include \"base/strings/string_split.h\"\n-#include \"base/strings/string_util.h\"\n #include \"content/pu... | 2015-05-10T04:55:19 |
golang/go | 5a687eeaf186dd109e53860db15f8465b0456fc0 | faf9c7d8fe9885a8d96de389f16bc4fdadb067a2 | cmd/asm,cmd/internal/obj/riscv: add more error tests for riscv64 assembly
Add more error tests for riscv64 assembly. Also avoid a panic when one of
these error conditions is hit.
Change-Id: If5d913894facbd67f7d014eab745da77c8c66ab0
Reviewed-on: https://go-review.googlesource.com/c/go/+/344228
Trust: Joel Sing <joel@s... | [
{
"path": "src/cmd/asm/internal/asm/testdata/riscv64error.s",
"patch": "@@ -3,6 +3,14 @@\n // license that can be found in the LICENSE file.\n \n TEXT errors(SB),$0\n+\tMOV\t$errors(SB), (X5)\t\t// ERROR \"unsupported addr MOV\"\n+\tMOV\t$8(SP), (X5)\t\t\t// ERROR \"unsupported addr MOV\"\n+\tMOVB\t$8(SP), ... | 2021-08-21T08:40:20 |
vercel/next.js | 71880ff67fdde84c316e5685992e0efd022693a8 | c7f5e95dccff1dbbca89d0e9610f4dfb3b104ebb | Support NeedData responses in SourceMap/SourceMapTrace ContentSources (vercel/turbo#3907)
This implements a new `ContentSourceProcessor` trait and
`WrappedContentSource` struct that allows our `ContentSource`s to
register some processor to transform the eventual `ContentSourceContent`
that an inner `ContentSource` ... | [
{
"path": "crates/next-core/src/next_image/mod.rs",
"patch": "@@ -5,8 +5,8 @@ use turbo_tasks::{primitives::StringVc, Value};\n use turbopack_core::introspect::{Introspectable, IntrospectableVc};\n use turbopack_dev_server::source::{\n query::QueryValue, ContentSource, ContentSourceContent, ContentSourc... | 2023-02-22T16:48:46 |
huggingface/transformers | 26fed50460a8843399b58a23143a9e3f8a6f5aca | cdfe6164b32d52f5d2125a29f0762e18ec5ac708 | fix max_length calculating using cu_seq_lens (#39341) | [
{
"path": "src/transformers/modeling_flash_attention_utils.py",
"patch": "@@ -350,7 +350,9 @@ def _prepare_flash_attention_from_position_ids(query, key, value, position_ids):\n # This is a limitation of flash attention API, as the function `flash_attn_varlen_func`\n # requires `max_length_q`, `max_l... | 2025-07-17T08:54:23 |
nodejs/node | 85f7af77eeae1a3b15a1958102450c4fc9e06df8 | 71a4cb7d460abb50ef6816917dfc290c4312f00f | doc: fix code examples in stream.md
* Replace `console.error()` with `console.log()`.
* Fix case and punctuation in logged output.
PR-URL: https://github.com/nodejs/node/pull/24112
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -291,7 +291,7 @@ for (let i = 0; i < 100; i++) {\n }\n writer.end('This is the end\\n');\n writer.on('finish', () => {\n- console.error('All writes are now complete.');\n+ console.log('All writes are now complete.');\n });\n ```\n \n@@ -309,7 +309,7 @@ a readabl... | 2018-11-05T22:40:22 |
electron/electron | ae8ac97f32873e2a468f707253c4f15102917ff6 | 9d54092f41189606189a44856dc748e0cb1d45d1 | Upgrade brightray, fixes #1318 | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 32ba91f830a12f6f37017797b9b65d55037ad29d\n+Subproject commit 58df63ecb63e38d1951e38f392fb4354aed6de96",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-05-07T11:44:06 |
golang/go | 2dd7b770defc869edfcf610b9471fc4f580c3eb2 | 62ba72b35321bd76de18aa8874b021ee02ab8a4e | cmd/compile: fix missing case for shape double-check function
Missing case types.TUNSAFEPTR in parameterizedBy().
Also realized there was the same missing case in the type substituter
(*Tsubster).Typ().
Fixes #48103
Change-Id: If71f1a6ef80932f0e2120d4c18b39a30189fd8fe
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/cmd/compile/internal/noder/stencil.go",
"patch": "@@ -1917,7 +1917,7 @@ func parameterizedBy1(t *types.Type, params []*types.Type, visited map[*types.Ty\n \n \tcase types.TINT, types.TINT8, types.TINT16, types.TINT32, types.TINT64,\n \t\ttypes.TUINT, types.TUINT8, types.TUINT16, types.TUINT32... | 2021-09-01T02:06:46 |
vercel/next.js | 22e3bacbf0347ca14b8bd8071ee2ab4af6b1a939 | 3d6c32933b267702115b742ed173c4b29f053954 | fix: allow HMR to recover from hydration errors (vercel/turbo#3805)
We now store react errors in the error overlay (hydration errors) and if
the error overlay receives the "build ok" message after that it will
hard reload the page to recover | [
{
"path": "packages/next-swc/crates/next-core/js/src/overlay/internal/ReactDevOverlay.tsx",
"patch": "@@ -32,6 +32,8 @@ type OverlayState = {\n errors: SupportedErrorEvent[];\n \n refreshState: RefreshState;\n+\n+ reactError: Error | null;\n };\n \n function pushErrorFilterDuplicates(\n@@ -50,6 +52,13 ... | 2023-02-22T16:30:35 |
huggingface/transformers | cdfe6164b32d52f5d2125a29f0762e18ec5ac708 | b85ed49e0a5f1bd9fd887f497d055b22b9319a12 | fix(pipelines): QA pipeline returns fewer than top_k results in batch mode (#39193)
* fixing the bug
* Try a simpler approach
* make fixup
---------
Co-authored-by: Matt <rocketknight1@gmail.com> | [
{
"path": "src/transformers/pipelines/question_answering.py",
"patch": "@@ -556,8 +556,18 @@ def postprocess(\n output[\"attention_mask\"].numpy() if output.get(\"attention_mask\", None) is not None else None\n )\n \n+ pre_topk = (\n+ top_k * 2 + 10 if a... | 2025-07-17T08:24:30 |
nodejs/node | 71a4cb7d460abb50ef6816917dfc290c4312f00f | f8c3e258fdaf2961425455e09a19c7dd3ed3fa05 | tracing: fix static destruction order issue
Sometimes, the `parallel/test-tracing-no-crash` would not work as
expected, at least on Windows, because there is a static destruction
race between tearing down the `NodeTraceWriter` instance and the
per-process options struct. If the per-process options were destroyed
befor... | [
{
"path": "src/tracing/node_trace_writer.h",
"patch": "@@ -61,7 +61,7 @@ class NodeTraceWriter : public AsyncTraceWriter {\n int highest_request_id_completed_ = 0;\n int total_traces_ = 0;\n int file_num_ = 0;\n- const std::string& log_file_pattern_;\n+ std::string log_file_pattern_;\n std::ostrin... | 2018-11-06T10:21:43 |
electron/electron | 2b82e523bf1c522e5498b5abe7063299f495b334 | 9d54092f41189606189a44856dc748e0cb1d45d1 | Fix a potential out-of-bound issue in Accelerator. | [
{
"path": "atom/browser/ui/accelerator_util.cc",
"patch": "@@ -175,7 +175,7 @@ bool StringToAccelerator(const std::string& description,\n } else if (tokens[i].size() > 1 && tokens[i][0] == 'f') {\n // F1 - F24.\n int n;\n- if (base::StringToInt(tokens[i].c_str() + 1, &n)) {\n+ if (... | 2015-05-07T07:46:38 |
golang/go | 62ba72b35321bd76de18aa8874b021ee02ab8a4e | f4e24599dd2fe81690c6dacceec1d9336bf24c60 | cmd/compile: fix method expression lookup during import
CL 309831 fixed importing of method expressions, by re-using the same
code already have for ODOTMETH. But that code does not work with
embedded field.
To fix this, we need to calculate all methods of the receiver base type
of method expression, before looking up... | [
{
"path": "src/cmd/compile/internal/typecheck/iimport.go",
"patch": "@@ -1408,12 +1408,14 @@ func (r *importReader) node() ir.Node {\n \t\t\t\t}\n \t\t\tcase ir.ODOT, ir.ODOTPTR, ir.ODOTINTER:\n \t\t\t\tn.Selection = r.exoticField()\n-\t\t\tcase ir.ODOTMETH, ir.OMETHVALUE, ir.OMETHEXPR:\n+\t\t\tcase ir.OMET... | 2021-08-31T17:18:13 |
huggingface/transformers | b85ed49e0a5f1bd9fd887f497d055b22b9319a12 | 787a0128a92926c615b29abfa8dec40087c1d875 | Corrections to PR #38642 and enhancements to Wav2Vec2Processor __call__ and pad docstrings (#38822)
* Correcting PR #38642. The PR removed references to the deprecated method "as_target_processor()" in the
__call__ and pad method docstrings, which is correct, but also removed all references to PreTrainedTokenizer,
wh... | [
{
"path": "src/transformers/models/wav2vec2/processing_wav2vec2.py",
"patch": "@@ -81,10 +81,19 @@ def __call__(\n **kwargs: Unpack[Wav2Vec2ProcessorKwargs],\n ):\n \"\"\"\n- This method forwards all its arguments to Wav2Vec2FeatureExtractor's\n- [`~Wav2Vec2FeatureExtractor... | 2025-07-16T21:13:07 |
vercel/next.js | 8d8cdfcf486a18d3ea8442733ec53a34a313b64b | daff2d324ddb04e5eaf65aaff731ed7bb2218438 | fix: allow HMR to recover from hydration errors (vercel/turbo#3805)
We now store react errors in the error overlay (hydration errors) and if
the error overlay receives the "build ok" message after that it will
hard reload the page to recover | [
{
"path": "crates/next-core/js/src/overlay/internal/ReactDevOverlay.tsx",
"patch": "@@ -32,6 +32,8 @@ type OverlayState = {\n errors: SupportedErrorEvent[];\n \n refreshState: RefreshState;\n+\n+ reactError: Error | null;\n };\n \n function pushErrorFilterDuplicates(\n@@ -50,6 +52,13 @@ function pushEr... | 2023-02-22T16:30:35 |
nodejs/node | d58a0c628591a318b4692355f4a08140e17d61df | a67e0a6fd21d09c3bca2c6211109e5be980b0b9d | test: fix NewFromUtf8 compiler warning
Currently there are a number of compiler warnings like the following:
../binding.cc:6:41:
warning: 'NewFromUtf8' is deprecated:
Use maybe version [-Wdeprecated-declarations]
args.GetReturnValue().Set(v8::String::NewFromUtf8(isolate, "world"));
... | [
{
"path": "doc/api/addons.md",
"patch": "@@ -63,13 +63,15 @@ namespace demo {\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n+using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n \n void Method(const FunctionCallbackInfo<Value>& args) {\n Isolat... | 2018-11-07T06:50:51 |
electron/electron | dbe969b5c53d12622e752adbd4ba8be17de36f71 | 9737ba3e3767bb130011403f9ad3dc8a4742febb | Fix indentation | [
{
"path": "brightray/browser/url_request_context_getter.cc",
"patch": "@@ -198,13 +198,13 @@ net::URLRequestContext* URLRequestContextGetter::GetURLRequestContext() {\n schemes.push_back(std::string(\"negotiate\"));\n \n auto auth_handler_factory =\n- net::HttpAuthHandlerRegistryFactory::Create... | 2015-05-06T05:28:00 |
golang/go | 1a9807906df1d1cb9955dfda387b92e03375c0f0 | 5cd1b847dc6e2d70e503fb44e27d0ece261ebfff | go/types: more systematic error handling in typeWriter
This is a port of CL 346009 to go/types. An unnecessary break statement
was removed from both the port and types2.
Change-Id: I2cc1328a61100d4b01a2d26ac7bac9044440d579
Reviewed-on: https://go-review.googlesource.com/c/go/+/346558
Trust: Robert Findley <rfindley@g... | [
{
"path": "src/cmd/compile/internal/types2/typestring.go",
"patch": "@@ -212,7 +212,6 @@ func (w *typeWriter) typ(typ Type) {\n \t\t\ts = \"<-chan \"\n \t\tdefault:\n \t\t\tw.error(\"unknown channel direction\")\n-\t\t\tbreak\n \t\t}\n \t\tw.string(s)\n \t\tif parens {",
"additions": 0,
"deletions":... | 2021-08-31T22:20:49 |
huggingface/transformers | e68ebb695f9d1d990462397e284e79d8729aafea | 35a416c4005ec65c73291d87bc478adedf70e251 | fix cached file error when repo type is dataset (#36909)
* fix cached file
* Update hub.py | [
{
"path": "src/transformers/utils/hub.py",
"patch": "@@ -134,10 +134,16 @@ def is_offline_mode():\n \n \n def _get_cache_file_to_return(\n- path_or_repo_id: str, full_filename: str, cache_dir: Union[str, Path, None] = None, revision: Optional[str] = None\n+ path_or_repo_id: str,\n+ full_filename: s... | 2025-07-16T16:02:26 |
vercel/next.js | aac3ecb2abf764cf392c9da1f9e0b52ea9af3f41 | bd8cf3a4b7bd4183e6894da6d2c498e5d7c62f41 | Fix precompiled of react scheduler (#46250)
x-ref: https://github.com/vercel/next.js/actions/runs/4244147380/jobs/7377907489 | [
{
"path": "packages/next/src/compiled/scheduler/index.js",
"patch": "@@ -1,21 +1,19 @@\n-(()=>{\"use strict\";var e={221:(e,n)=>{\n-/**\n- * @license React\n+(()=>{\"use strict\";var e={853:(e,n)=>{\n+/** @license React v0.20.2\n * scheduler.development.js\n *\n * Copyright (c) Facebook, Inc. and its aff... | 2023-02-22T15:59:49 |
nodejs/node | a67e0a6fd21d09c3bca2c6211109e5be980b0b9d | 850cb5492df5a04d24a8ec2638814807e04bbbec | test: change arguments order in strictEqual
Fix actual/expected ordering in test-net-eaddrinuse.
PR-URL: https://github.com/nodejs/node/pull/24156
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikr... | [
{
"path": "test/parallel/test-net-eaddrinuse.js",
"patch": "@@ -30,7 +30,7 @@ const server2 = net.createServer(function(socket) {\n });\n server1.listen(0, function() {\n server2.on('error', function(error) {\n- assert.strictEqual(true, error.message.includes('EADDRINUSE'));\n+ assert.strictEqual(er... | 2018-11-06T15:22:40 |
huggingface/transformers | 35a416c4005ec65c73291d87bc478adedf70e251 | 2c58705dc23ce869e82b1a6ca225ad718916e8d5 | Fix indentation bug in SmolVLM image processor causing KeyError (#39452)
Fix indentation bug in Idefics3 image processor
- Fix KeyError when do_image_splitting=False
- Move split_images_grouped assignment inside loop
- Ensures all image shapes are stored, not just the last one
- This fixes the bug in both Idefics3 an... | [
{
"path": "src/transformers/models/idefics3/image_processing_idefics3_fast.py",
"patch": "@@ -441,7 +441,7 @@ def _preprocess(\n size=SizeDict(height=max_image_size[\"longest_edge\"], width=max_image_size[\"longest_edge\"]),\n interpolation=interpolation,\n ... | 2025-07-16T15:59:28 |
golang/go | 5cd1b847dc6e2d70e503fb44e27d0ece261ebfff | 0df6df17e12d4cf8c2ed7c68ce8841a18f739f63 | go/types: eliminate typeHashing global variable
This is a port of CL 345929 to go/types. It is also a step toward making
instantiation concurrency-safe.
Also fix some whitespace in instantiate.go.
Updates #47910
Change-Id: Icdeb227cb83eee15da6db90daab294c8c55db601
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/go/types/instantiate.go",
"patch": "@@ -121,8 +121,8 @@ func (check *Checker) instance(pos token.Pos, typ Type, targs []Type) Type {\n \tcase *Named:\n \t\th := typeHash(t, targs)\n \t\tif check != nil {\n-\t\t\t// typ may already have been instantiated with identical type arguments. In\n-\t\... | 2021-08-31T22:15:53 |
vercel/next.js | 4072955eba9ad7844011d1e9597b02943b2f5e44 | 65ecd9c3e26852730b93bf1cc7e3a1a4af936286 | feat: add OTEL instrumentation for next-server + OTEL example (#46198)
fixes NEXT-479
## content
This PR adds a `getTracer` API to Next.js that uses the `otel/api` under
the hood to provide Next.js level instrumentation through Open
Telemetry.
This also adds an example `with-opentelemetry` to demonstrate ho... | [
{
"path": "examples/with-opentelemetry/.gitignore",
"patch": "@@ -0,0 +1,36 @@\n+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n+\n+# dependencies\n+/node_modules\n+/.pnp\n+.pnp.js\n+\n+# testing\n+/coverage\n+\n+# next.js\n+/.next/\n+/out/\n+\n+# production\n+/build\... | 2023-02-22T15:08:22 |
huggingface/transformers | 2c58705dc23ce869e82b1a6ca225ad718916e8d5 | 26be7f717e12241df3d575d825bfa51026da9be8 | Updated Megatron conversion script for gpt2 checkpoints (#38969)
* update script to support new megatron gpt format
* fixed quality failures
---------
Co-authored-by: Luke Friedrichs <LckyLke> | [
{
"path": "src/transformers/models/megatron_gpt2/convert_megatron_gpt2_checkpoint.py",
"patch": "@@ -148,14 +148,17 @@ def convert_megatron_checkpoint(args, input_state_dict, config):\n transformer = lm[\"transformer\"] if \"transformer\" in lm.keys() else lm[\"encoder\"]\n \n # The regex to extract... | 2025-07-16T15:54:29 |
nodejs/node | 3833d69936ada7e1e1a68dc73dd31d31423fbbaf | 6727f1c787c721747122a14941cf67fa4a574d45 | doc: fix some inconsistent use of hostname
host names are DNS names, host addresses are IP addresses, and `host`
arguments and options can be either.
PR-URL: https://github.com/nodejs/node/pull/24199
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "doc/api/async_hooks.md",
"patch": "@@ -296,7 +296,7 @@ of propagating what resource is responsible for the new resource's existence.\n been initialized. This can contain useful information that can vary based on\n the value of `type`. For instance, for the `GETADDRINFOREQWRAP` resource type,\n `r... | 2018-11-06T17:58:42 |
golang/go | 5e9ba0b1bd62f1c4196173806aa69b567006056c | 580987cd5884c21dc2411244e6c9f6fbf6f963a1 | go/types: implement TypeList.String (debugging support)
This is a port of CL 345471 to go/types.
Change-Id: Icad5fb8b3b4375182f420a51c80607b88696561e
Reviewed-on: https://go-review.googlesource.com/c/go/+/346552
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
Reviewed-by: ... | [
{
"path": "src/go/types/instantiate.go",
"patch": "@@ -69,7 +69,7 @@ func Instantiate(env *Environment, typ Type, targs []Type, validate bool) (Type,\n func (check *Checker) instantiate(pos token.Pos, typ Type, targs []Type, posList []token.Pos) (res Type) {\n \tassert(check != nil)\n \tif trace {\n-\t\tche... | 2021-08-31T21:04:10 |
vercel/next.js | 65ecd9c3e26852730b93bf1cc7e3a1a4af936286 | e09feabea3d67fad94123c9fd34b094345b5d9b0 | Fix missing metadataBase for static tw,og image resolving (#46243)
Replacement for #46156
Closes NEXT-587
* `metadataBase` will always need to be provided for twitter image and
opengraph image
* Fixing the metadataBase isn't picked up by static og/twitter images
## Bug
- [x] Related issues linked using `fi... | [
{
"path": "packages/next/src/lib/metadata/resolve-metadata.ts",
"patch": "@@ -52,7 +52,7 @@ function mergeStaticMetadata(\n card: 'summary_large_image',\n images: twitter,\n },\n- null\n+ metadata.metadataBase\n )\n metadata.twitter = { ...metadata.twitter, ...resolve... | 2023-02-22T13:21:52 |
huggingface/transformers | 26be7f717e12241df3d575d825bfa51026da9be8 | 0a88751940a3c2c61ddd8e1dcca21fe9b3106f00 | [`CI`] Fix partially red CI (#39448)
fix | [
{
"path": "tests/models/git/test_modeling_git.py",
"patch": "@@ -347,8 +347,7 @@ def _test_beam_search_generate(self, config, input_ids, input_mask, pixel_values\n num_return_sequences=2,\n )\n \n- self.parent.assertEqual(generated_ids.shape[0], self.batch_size * 2)\n- self... | 2025-07-16T13:53:43 |
electron/electron | 298d3a0144b740a40fc27af5fae931659c238845 | ff87592722e6a508d55871cfc88ab2e7d08a2a10 | Fix compilation error on OS X. | [
{
"path": "atom/app/atom_main_delegate.cc",
"patch": "@@ -10,11 +10,11 @@\n #include \"atom/browser/atom_browser_client.h\"\n #include \"atom/common/google_api_key.h\"\n #include \"atom/renderer/atom_renderer_client.h\"\n+#include \"atom/utility/atom_content_utility_client.h\"\n #include \"base/command_line... | 2015-05-04T12:58:48 |
nodejs/node | 6727f1c787c721747122a14941cf67fa4a574d45 | 87d0aa8686be2f22af55227ff573f9b933436fd2 | test: fix the arguments order in `assert.strictEqual`
This change was initiated from the NodeConfEU session.
PR-URL: https://github.com/nodejs/node/pull/24227
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "test/parallel/test-fs-link.js",
"patch": "@@ -15,7 +15,7 @@ fs.writeFileSync(srcPath, 'hello world');\n function callback(err) {\n assert.ifError(err);\n const dstContent = fs.readFileSync(dstPath, 'utf8');\n- assert.strictEqual('hello world', dstContent);\n+ assert.strictEqual(dstContent, ... | 2018-11-07T15:21:37 |
golang/go | 1f83a8c16cf1e9141e081759fb0f6c6f2acb5fdc | bb0b511738713c7a8cc4c194e037a7ea852751ca | cmd/compile: use the zero value for results of impossible indexing
type A [0]int
var a A
x := a[i]
Use the zero value for x instead of the "impossible" value. That lets
us at least compile code like this with -B, even though it can't
possibly run correctly.
Fixes #48092
Change-Id: Idad5cfab49e05f375c069b05addceed68... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -3014,7 +3014,8 @@ func (s *state) expr(n ir.Node) *ssa.Value {\n \t\t\t\t\tz := s.constInt(types.Types[types.TINT], 0)\n \t\t\t\t\ts.boundsCheck(z, z, ssa.BoundsIndex, false)\n \t\t\t\t\t// The return value won't be live, return junk.\n-\t\t\... | 2021-08-31T21:09:41 |
huggingface/transformers | 0a88751940a3c2c61ddd8e1dcca21fe9b3106f00 | ba506f87db36ce916c59ace15cb77d9cdd662c53 | Fixes #39204: add fallback if get_base_model missing (#39226)
* Fixes #39204: add fallback if get_base_model missing
* Inline try_get_base_model logic as suggested in PR review
* Apply style fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -631,7 +631,12 @@ def __init__(\n unwrapped_model = self.accelerator.unwrap_model(model)\n # We also unwrap peft model\n if _is_peft_model(unwrapped_model):\n- unwrapped_model = unwrapped_model.get_base_model()\n+ ... | 2025-07-16T13:51:30 |
vercel/next.js | 36aca516dbcd362bac837b6bad1e6341748c47e7 | f87dc8e6e9f37314140c6115e16786853831143a | Include chunk path in WithClientChunks (vercel/turbo#3910)
`WithClientChunksChunkItem` currently only includes paths to chunks' references, but not chunks themselves.
Fixes WEB-621. | [
{
"path": "packages/next-swc/crates/next-core/src/next_client_component/with_client_chunks.rs",
"patch": "@@ -1,5 +1,5 @@\n use anyhow::Result;\n-use serde_json::Value;\n+use indoc::formatdoc;\n use turbo_tasks::{primitives::StringVc, ValueToString, ValueToStringVc};\n use turbo_tasks_fs::FileSystemPathVc;\... | 2023-02-22T12:39:54 |
electron/electron | a04222f398269e94221dc7c2b8f71ccb3c0c3b88 | 0d4d2080ca61c76350019db0770f5a9a2887c41b | spec: Fix error when refreshing | [
{
"path": "spec/api-browser-window-spec.coffee",
"patch": "@@ -227,6 +227,7 @@ describe 'browser-window module', ->\n \n describe 'dom-ready event', ->\n it 'emits when document is loaded', (done) ->\n+ ipc = remote.require 'ipc'\n server = http.createServer (req, res) ->\n action =... | 2015-05-04T04:51:28 |
nodejs/node | 87d0aa8686be2f22af55227ff573f9b933436fd2 | aba0c945eb7b6f6ea31318171fcb0d7bb5921a33 | test: fix the arguments order in `assert.strictEqual`
This change was initiated from the NodeConfEU session.
PR-URL: https://github.com/nodejs/node/pull/24226
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "test/parallel/test-fs-read-stream-fd-leak.js",
"patch": "@@ -37,8 +37,8 @@ function testLeak(endFn, callback) {\n }\n \n assert.strictEqual(\n- 0,\n openCount,\n+ 0,\n `no leaked file descriptors using ${endFn}() (got ${openCount})`\n );\n ",
"additions": 1,
... | 2018-11-07T15:14:13 |
golang/go | bb0b511738713c7a8cc4c194e037a7ea852751ca | 7637345b6ea00faf6c453a5f8128d8b548ee0a2c | cmd/compile: use right line number for conversion expression
Use the position of the actual conversion operation instead of base.Pos.
Fixes #47880
Change-Id: I56adc134e09cb7fd625adc0a847c1a6b3e254b1a
Reviewed-on: https://go-review.googlesource.com/c/go/+/345095
Trust: Keith Randall <khr@golang.org>
Run-TryBot: Keith... | [
{
"path": "src/cmd/compile/internal/walk/convert.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"cmd/compile/internal/ssagen\"\n \t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n+\t\"cmd/internal/src\"\n \t\"cmd/internal/sys\"\n )\n \n@@ -58,7 +59,7 @@ func walkConvInterface(n *ir.Co... | 2021-08-25T20:03:30 |
huggingface/transformers | 9f1ac6f1859a650f8491af864d36f88107279bdf | a7ca5b5d67d8627ab40d57874889715fc083d844 | Remove something that should have never been there (#38254)
* what the hell
* update
* style
* style
* typing
* fix init issue
* fix granite moe hybrid as well | [
{
"path": "src/transformers/models/bamba/modeling_bamba.py",
"patch": "@@ -24,15 +24,14 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-from typing import Callable, Optional, TypedDict, Union\n+from typing import Any, Callable, Optional, Typ... | 2025-07-16T13:22:44 |
vercel/next.js | a834c20301c9ca7efc3f9846be1896d5f3660987 | 14103861de16dbf29e1b9954317c07b25c4fc893 | Include chunk path in WithClientChunks (vercel/turbo#3910)
`WithClientChunksChunkItem` currently only includes paths to chunks' references, but not chunks themselves.
Fixes WEB-621. | [
{
"path": "crates/next-core/src/next_client_component/with_client_chunks.rs",
"patch": "@@ -1,5 +1,5 @@\n use anyhow::Result;\n-use serde_json::Value;\n+use indoc::formatdoc;\n use turbo_tasks::{primitives::StringVc, ValueToString, ValueToStringVc};\n use turbo_tasks_fs::FileSystemPathVc;\n use turbopack::e... | 2023-02-22T12:39:54 |
nodejs/node | aba0c945eb7b6f6ea31318171fcb0d7bb5921a33 | 26725820434c4b2d6529839459ae31fad8047a8b | test: fix order in assert.strictEqual to actual, expected
PR-URL: https://github.com/nodejs/node/pull/24184
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> | [
{
"path": "test/addons-napi/test_make_callback/test.js",
"patch": "@@ -14,7 +14,7 @@ function myMultiArgFunc(arg1, arg2, arg3) {\n }\n \n assert.strictEqual(makeCallback(process, common.mustCall(function() {\n- assert.strictEqual(0, arguments.length);\n+ assert.strictEqual(arguments.length, 0);\n assert... | 2018-11-06T16:06:28 |
golang/go | 7637345b6ea00faf6c453a5f8128d8b548ee0a2c | 78d0f8c870f9bc6e2f6dde22d3191e33be8d0c8f | go/internal/typeparams: remove typeparams.{Get,Set} (cleanup)
These helper functions are no longer necessary, now that type parameters
are enabled; we can access type parameters directly.
When considering the existence or non-existence of type parameters, we
can either check whether node.TParams != nil, or whether
no... | [
{
"path": "src/go/internal/typeparams/typeparams.go",
"patch": "@@ -5,7 +5,6 @@\n package typeparams\n \n import (\n-\t\"fmt\"\n \t\"go/ast\"\n \t\"go/token\"\n )\n@@ -54,25 +53,3 @@ func UnpackIndexExpr(n ast.Node) *IndexExpr {\n \t}\n \treturn nil\n }\n-\n-func Get(n ast.Node) *ast.FieldList {\n-\tswitch ... | 2021-08-31T20:24:00 |
huggingface/transformers | a7ca5b5d67d8627ab40d57874889715fc083d844 | 71818f570bb5346b2431ea9fae580ca3ee359390 | Fix processor tests (#39450)
fix | [
{
"path": "src/transformers/models/qwen2_5_omni/processing_qwen2_5_omni.py",
"patch": "@@ -332,8 +332,11 @@ def decode(self, *args, **kwargs):\n return self.tokenizer.decode(*args, **kwargs)\n \n def apply_chat_template(self, conversations, chat_template=None, **kwargs):\n+ is_batched = F... | 2025-07-16T13:01:35 |
vercel/next.js | e09feabea3d67fad94123c9fd34b094345b5d9b0 | 1567f42c2e2a61420425348e4aba2338d166abb3 | Fix API route matched as page on Windows in dev (#46238)
Use `path.join` to build the path instead of a template string. This ensures the format is correct on all platforms. Currently it incorrectly matches API routes as pages due to forward slashes in `/api/` being added to the end, which doesn't work on Windows.
Th... | [
{
"path": "packages/next/src/server/future/route-matcher-providers/dev/dev-pages-route-matcher-provider.ts",
"patch": "@@ -58,7 +58,7 @@ export class DevPagesRouteMatcherProvider extends FileCacheRouteMatcherProvider<\n // so we need to include the pages directory.\n \n // TODO: could path separator... | 2023-02-22T11:20:37 |
rust-lang/rust | 8bf515330fb68ba10a54e9087a2b5629a968e766 | 163cb4ea3f0ae3bc7921cc259a08a7bf92e73ee6 | std: abort the process on failure to allocate a TLS key
The panic machinery uses TLS, so panicking if no TLS keys are left can lead to infinite recursion (see https://github.com/rust-lang/rust/issues/140798#issuecomment-2872307377). Rather than having separate logic for the panic count and the thread name, just always... | [
{
"path": "library/std/src/sys/thread_local/key/unix.rs",
"patch": "@@ -25,7 +25,9 @@ pub type Key = libc::pthread_key_t;\n #[inline]\n pub fn create(dtor: Option<unsafe extern \"C\" fn(*mut u8)>) -> Key {\n let mut key = 0;\n- assert_eq!(unsafe { libc::pthread_key_create(&mut key, mem::transmute(dto... | 2025-05-23T16:00:09 |
huggingface/transformers | 71818f570bb5346b2431ea9fae580ca3ee359390 | cc24b0378e6062895a03a077860be28d290c1d07 | [Bugfix] [Quantization] Remove unused init arg (#39324)
remove unused arg from ct config init
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com> | [
{
"path": "src/transformers/utils/quantization_config.py",
"patch": "@@ -1342,7 +1342,6 @@ def __init__(\n \"kv_cache_scheme\": kv_cache_scheme,\n \"global_compression_ratio\": global_compression_ratio,\n \"ignore\": ignore,\n- \... | 2025-07-16T12:57:42 |
nodejs/node | 26725820434c4b2d6529839459ae31fad8047a8b | 3b4159c8ed85b6b531b7df09378d67168574d731 | test: fix arguments order in assert.strictEqual
In the test test/parallel/test-http-client-upload.js test the
actual and expected arguments in assert.strictEqual() calls
were in the wrong order. Switched them around so the returned
value by the function is the first argument and the literal
value is the second argumen... | [
{
"path": "test/parallel/test-http-client-upload.js",
"patch": "@@ -25,7 +25,7 @@ const assert = require('assert');\n const http = require('http');\n \n const server = http.createServer(common.mustCall(function(req, res) {\n- assert.strictEqual('POST', req.method);\n+ assert.strictEqual(req.method, 'POST'... | 2018-11-06T14:33:38 |
golang/go | 78d0f8c870f9bc6e2f6dde22d3191e33be8d0c8f | ae2b2dc01ac5a7e8ef3f5a78d65a7a85b2324118 | go/types: fix type set printing and add a test
This is a port of CL 344873 to go/types.
Change-Id: Iad41d6de166214178adf2123ac05023895f5208b
Reviewed-on: https://go-review.googlesource.com/c/go/+/346435
Trust: Robert Findley <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
Reviewed-by: Robert Gr... | [
{
"path": "src/go/types/typeset.go",
"patch": "@@ -75,26 +75,24 @@ func (s *_TypeSet) String() string {\n \tvar buf bytes.Buffer\n \tbuf.WriteByte('{')\n \tif s.comparable {\n-\t\tbuf.WriteString(\" comparable\")\n+\t\tbuf.WriteString(\"comparable\")\n \t\tif hasMethods || hasTerms {\n-\t\t\tbuf.WriteByte('... | 2021-08-31T18:57:53 |
vercel/next.js | 2c68f241555fd5656eb0c4a785e8e0da767a8bea | 1dc769421842679cf74b15a0c940f776142cc529 | Don't enable dev watcher when turbopack is used (#46231)
Ensures the dev server watcher is not booted when turbopack is used.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/bl... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -323,7 +323,8 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n forceReload?: boolean\n }): void\n \n- protected readonly matchers: RouteMatcherManager\n+ // TODO-APP(@wyattjoh): Make protected again... | 2023-02-22T09:32:48 |
nodejs/node | 624a242b05397fdacc1e79007de223cd0331f6e8 | 3ffc84a46de9cf623ac680bff72445e372935376 | test: simplify regression test for SEGV
Test was introduced in 08a5b442e4 as a regression test, and has evolved
since then. Simplify the test so that it doesn't rely on an undocumented
argument to tls.createSecureCredentials().
See: https://github.com/nodejs/node-v0.x-archive/issues/6690
Confirmation that this rewor... | [
{
"path": "test/parallel/test-crypto.js",
"patch": "@@ -38,19 +38,19 @@ const tls = require('tls');\n const fixtures = require('../common/fixtures');\n \n // Test Certificates\n-const caPem = fixtures.readSync('test_ca.pem', 'ascii');\n-const certPem = fixtures.readSync('test_cert.pem', 'ascii');\n const ce... | 2018-11-08T00:18:03 |
golang/go | b93581e47d358da9fc2d08032cd73797c2cb28a5 | aed59d172ad532bd2eedcf78ba97fdd113d2dccd | go/types: add error reporting for 1.18 syntax if GoVersion is below 1.18
This is a port of CL 344871 to go/types. Unlike the compiler, go/parser
is already always producing 1.18 syntax, so the effect of this CL is to
add some additional errors when Config.GoVersion is below 1.18.
This is a non-trivial port, both due ... | [
{
"path": "src/go/types/call.go",
"patch": "@@ -17,6 +17,10 @@ import (\n // funcInst type-checks a function instantiation inst and returns the result in x.\n // The operand x must be the evaluation of inst.X and its type must be a signature.\n func (check *Checker) funcInst(x *operand, ix *typeparams.Index... | 2021-08-31T18:41:29 |
vercel/next.js | aa7cc31b6cda027ab2c50385e713d16f5ff76c65 | d548318b2824b8c2598cb3553d7a39cba83331b8 | Fix app-dir vary test in deploy mode (#46224
x-ref:
https://github.com/vercel/next.js/actions/runs/4238645116/jobs/7366078010 | [
{
"path": "test/e2e/app-dir/app/index.test.ts",
"patch": "@@ -115,7 +115,9 @@ createNextDescribe(\n },\n })\n expect(res.headers.get('vary')).toBe(\n- 'RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding'\n+ isNextDeploy\n+ ? 'RSC, Next-Router-State-... | 2023-02-22T02:51:57 |
electron/electron | abe63ebd84ce72de6d03b96a62629fd076e58e8c | 4608f5e9cd4508db48a5df51b23401f79b0d4147 | docs: fix typo | [
{
"path": "docs/tutorial/desktop-environment-integration.md",
"patch": "@@ -165,7 +165,7 @@ To set the progress bar for a Window, you can use the\n \n ```javascript\n var window = new BrowserWindow({...});\n-window.setProgresssBar(0.5);\n+window.setProgressBar(0.5);\n ```\n \n ## Represented file of window ... | 2015-05-03T23:21:07 |
huggingface/transformers | cc24b0378e6062895a03a077860be28d290c1d07 | 4b258454a7f2fd446b95f51bea7bf303d8313cd1 | Better typing for model.config (#39132)
* Apply to all models config annotation
* Update modular to preserve order
* Apply modular
* fix define docstring
* fix dinov2 consistency (docs<->modular)
* fix InstructBlipVideoForConditionalGeneration docs<->modular consistency
* fixup
* remove duplicate code
* Delete... | [
{
"path": "src/transformers/generation/watermarking.py",
"patch": "@@ -375,7 +375,7 @@ class BayesianDetectorModel(PreTrainedModel):\n configuration. Check out the [`~PreTrainedModel.from_pretrained`] method to load the model weights.\n \"\"\"\n \n- config_class = BayesianDetectorConfig\n... | 2025-07-16T12:50:35 |
rust-lang/rust | a467516c2208474ec21b0ea139c45f7d41cbad7e | 163cb4ea3f0ae3bc7921cc259a08a7bf92e73ee6 | std: fix aliasing bug in UNIX process implementation
`CStringArray` contained both `CString`s and their pointers. Unfortunately, since `CString` uses `Box`, moving the `CString`s into the `Vec` can (under stacked borrows) invalidate the pointer to the string, meaning the resulting `Vec<*const c_char>` was, from an ops... | [
{
"path": "library/std/src/sys/process/unix/common.rs",
"patch": "@@ -1,8 +1,10 @@\n #[cfg(all(test, not(target_os = \"emscripten\")))]\n mod tests;\n \n-use libc::{EXIT_FAILURE, EXIT_SUCCESS, c_char, c_int, gid_t, pid_t, uid_t};\n+use libc::{EXIT_FAILURE, EXIT_SUCCESS, c_int, gid_t, pid_t, uid_t};\n \n+pub... | 2025-03-24T17:12:21 |
nodejs/node | 3ffc84a46de9cf623ac680bff72445e372935376 | 08bd8233be1360a4cfa85ccfe9e54a4c67a9e14b | test: fix assert argument order
PR-URL: https://github.com/nodejs/node/pull/24160
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-child-process-stdio.js",
"patch": "@@ -60,8 +60,8 @@ const { spawn } = require('child_process');\n }));\n \n child.on('close', common.mustCall(function() {\n- assert.strictEqual(true, output.length > 1);\n- assert.strictEqual('\\n', output[output.length - 1]);\n+ a... | 2018-11-06T15:40:01 |
golang/go | 37f5885f29068d869e161c4ee8ee17c3e1195cc8 | 18c288ef8b8a3e7d2c02d3bb4c06e9f7c006b9da | [dev.fuzz] internal/fuzz: fail minimization on non-reproducible crash
workerServer.minimize now returns a response with Success = false when
the fuzz function run with the original input does not produce an
error. This may indicate flakiness.
The coordinator still records a crash, but it will use the unminimized
inpu... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt",
"patch": "@@ -24,7 +24,7 @@ rm testdata\n ! go test -fuzz=FuzzMinimizerNonrecoverable -run=FuzzMinimizerNonrecoverable -fuzztime=10000x minimizer_test.go\n ! stdout '^ok'\n stdout 'found a crash, minimizing'\n-stdout 'fuzzing process terminated ... | 2021-08-16T23:48:27 |
vercel/next.js | 0b563e86de118b180a89ec25b557a2b3722e2ce4 | b8837ad636ea298b101853aa8fba0bf8abe8a0ef | fix: image optimization content-type (#46219)
Upstream images can have any arbitrary `content-type` header so this PR
normalizes the value before checking it. | [
{
"path": "packages/next/src/server/image-optimizer.ts",
"patch": "@@ -573,25 +573,29 @@ export async function imageOptimizer(\n }\n }\n \n- if (upstreamType === SVG && !nextConfig.images.dangerouslyAllowSVG) {\n- console.error(\n- `The requested resource \"${href}\" has type \"${upstreamType... | 2023-02-22T02:00:14 |
huggingface/transformers | 4b258454a7f2fd446b95f51bea7bf303d8313cd1 | de5ca373acefc3c5cfc99aa697e7a073f7a2de23 | Fix typo in generation configuration for Janus model weight conversion (#39432)
* Fix typo in generation configuration for Janus model weight conversion
* Fix typo
* Update Janus model generation configuration
* Update Janus model to use generation_kwargs | [
{
"path": "src/transformers/models/janus/convert_janus_weights_to_hf.py",
"patch": "@@ -407,9 +407,12 @@ def convert_model(\n with init_empty_weights():\n model = JanusForConditionalGeneration(config)\n \n+ model.generation_config._from_model_config = False\n model.generation_config.tempe... | 2025-07-16T12:28:02 |
electron/electron | e2ec50173f6483eae7290b9e482409569da32bea | 4608f5e9cd4508db48a5df51b23401f79b0d4147 | Log errors in preload script instead of rethrowing
At some point, unhandled errors in preload scripts stopped being logged
to console, meaning that preload scripts were very difficult to debug.
Instead, print the error to console (which is what we wanted to have
happen anyways) | [
{
"path": "atom/renderer/lib/init.coffee",
"patch": "@@ -103,5 +103,8 @@ if preloadScript\n try\n require preloadScript\n catch error\n- throw error unless error.code is 'MODULE_NOT_FOUND'\n- console.error \"Unable to load preload script #{preloadScript}\"\n+ if error.code is 'MODULE_NOT_FO... | 2015-05-01T23:10:45 |
nodejs/node | 426ca0837a41501e5477cd381ec562349e010a3f | 1698fc96af2d58dce414cd22b7d9898f30efde3e | doc: clarify allowed encoding parameter types
This fixes the incorrect enumerations of their possible values, which
weren't up to date with the values actually supported. Also renamed
two arguments that used "format" when they meant "encoding".
PR-URL: https://github.com/nodejs/node/pull/24230
Reviewed-By: Tobias Nie... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -72,7 +72,7 @@ console.log(challenge.toString('utf8'));\n added: v9.0.0\n -->\n * `spkac` {string | Buffer | TypedArray | DataView}\n-* `encoding` {string}\n+* `encoding` {string} The [encoding][] of the `spkac` string.\n * Returns: {Buffer} The public key compone... | 2018-11-07T20:27:47 |
golang/go | 18c288ef8b8a3e7d2c02d3bb4c06e9f7c006b9da | 03b8d403dc620050cf5a5ded9be6c89bcd388a70 | [dev.fuzz] internal/fuzz: ensure crash is written if minimization interrupted
If any error occurs when minimizing a crash, for example, the user
presses ^C because minimization is taking too long, the coordinator
will now write the unminimized crash to testdata.
Change-Id: I0c754125781eb184846e496c728e0505a28639d9
Re... | [
{
"path": "src/internal/fuzz/fuzz.go",
"patch": "@@ -133,6 +133,27 @@ func CoordinateFuzzing(ctx context.Context, opts CoordinateFuzzingOpts) (err err\n \t\tinputC = nil\n \t}\n \n+\t// Ensure that any crash we find is written to the corpus, even if an error\n+\t// or interruption occurs while minimizing it... | 2021-08-16T23:16:51 |
huggingface/transformers | de5ca373acefc3c5cfc99aa697e7a073f7a2de23 | c8524aeb07f370195733f610760236d22e88cb61 | Responses API in `transformers serve` (#39155)
* Scaffolding
* Explicit content
* Naïve Responses API streaming implementation
* Cleanup
* Responses API (to be merged into #39155) (#39338)
* Scaffolding
* Explicit content
* Naïve Responses API streaming implementation
* Cleanup
* use openai
* validate reques... | [
{
"path": "docs/source/en/serving.md",
"patch": "@@ -71,7 +71,7 @@ vllm serve Qwen/Qwen2.5-1.5B-Instruct \\\n > This section is experimental and subject to change in future versions\n \n <!-- TODO: LLMs -> models, after we add audio/image input/output support -->\n-You can serve LLMs supported by `transform... | 2025-07-16T12:16:16 |
vercel/next.js | b8837ad636ea298b101853aa8fba0bf8abe8a0ef | 44c5886cf66d2ce78424e1531b87a08c3e12a5f0 | fix file name in next/font unresolved import error (#46187)
Use the actual file name in the overlay when a local font can't be resolved.
Before

After
: string {\n+ ... | 2023-02-22T01:48:56 |
electron/electron | 5fa7ae7d727e2e988fb0dc4c24c416a483783398 | c54eca8dff3fb7a3be4b440434119efda7d40efb | Fixing typo in desktop-environment-integration.md
Missing comma in the 'setUserTasks' as well as a typo in the description under "User tasks (Windows)" | [
{
"path": "docs/tutorial/desktop-environment-integration.md",
"patch": "@@ -118,8 +118,8 @@ app.setUserTasks([\n arguments: '--new-window',\n iconPath: process.execPath,\n iconIndex: 0,\n- title: 'New Window'\n- description: 'Create a new winodw',\n+ title: 'New Window',\n+ descripti... | 2015-04-30T19:40:30 |
nodejs/node | 1698fc96af2d58dce414cd22b7d9898f30efde3e | 5e1bf058f4906c0a49c34c6a1353d0b34784c80a | benchmark: support more options in startup benchmark
1. Add options to benchmark the startup performance of a node
"instance" after running a script. By default there are two options:
`test/fixtures/semicolon` which is basically an empty file,
and `benchmark/fixtures/require-cachable` which require all
the cac... | [
{
"path": "benchmark/fixtures/require-cachable.js",
"patch": "@@ -0,0 +1,13 @@\n+'use strict';\n+\n+const list = require('internal/bootstrap/cache');\n+const {\n+ isMainThread\n+} = require('worker_threads');\n+\n+for (const key of list.cachableBuiltins) {\n+ if (!isMainThread && key === 'trace_events') {... | 2018-11-06T20:28:50 |
golang/go | 891470fbf767a09ac2b00cc58dbaf9ee2a67b09e | 46121306d3ceb97a8bb2acb328d68426ad3aa805 | cmd/compile: fix handling of Defn field during stenciling
When the Defn field of a name node is not an ONAME (for a closure
variable), then it points to a body node of the same function/closure.
Therefore, we should not attempt to substitute it at the time we are
substituting the local variables. Instead, we remember ... | [
{
"path": "src/cmd/compile/internal/ir/name.go",
"patch": "@@ -51,6 +51,8 @@ type Name struct {\n \t// For a local variable (not param) or extern, the initializing assignment (OAS or OAS2).\n \t// For a closure var, the ONAME node of the outer captured variable.\n \t// For the case-local variables of a type... | 2021-08-13T01:39:24 |
vercel/next.js | 5160aa72a9876efc4bcb813b91f94b31a6bc6aae | 1ccb9afe55187d3ae003c56625397fde0b069de3 | Fix route.js trailingSlash handling (#46185)
<!--
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:
-->
Fixes NEXT-598
... | [
{
"path": "packages/next/src/build/webpack/loaders/next-edge-app-route-loader/handle.ts",
"patch": "@@ -6,6 +6,7 @@ import { AppRouteRouteHandler } from '../../../../server/future/route-handlers/a\n import { RouteKind } from '../../../../server/future/route-kind'\n import { AppRouteRouteMatcher } from '../.... | 2023-02-22T01:19:56 |
electron/electron | c54eca8dff3fb7a3be4b440434119efda7d40efb | 72f5381c31a807d7d1f87130c02eb90aad9a614d | Update node to fix #1472 | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit a7e75da3cae48cf6e55fa7c9f13d689f11021795\n+Subproject commit e5aaa1ad33b3479dbb29df797beca5873e7490dc",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-04-30T09:07:20 |
nodejs/node | 5e1bf058f4906c0a49c34c6a1353d0b34784c80a | 457cde3167ec474aa57948a2b1fa58e9c4a55f4c | url: make the context non-enumerable
At the moment we expose the context as a normal property on the
prototype chain of URL or take them from the base URL
which makes them enumerable and considered
by assert libraries even though the context carries path-dependent
information that do not affect the equivalence of thes... | [
{
"path": "lib/internal/url.js",
"patch": "@@ -245,7 +245,14 @@ function onParseError(flags, input) {\n // Reused by URL constructor and URL#href setter.\n function parse(url, input, base) {\n const base_context = base ? base[context] : undefined;\n- url[context] = new URLContext();\n+ // In the URL#hre... | 2018-11-07T07:58:51 |
rust-lang/rust | 46606a3f81d67f16b738b3dff74aba5070c7890e | 52bf0cf795dfecc8b929ebb1c1e2545c3f41d4c9 | Dont walk into unsafe binders when emiting error for non-structural type match | [
{
"path": "compiler/rustc_mir_build/src/thir/pattern/const_to_pat.rs",
"patch": "@@ -382,6 +382,9 @@ fn extend_type_not_partial_eq<'tcx>(\n fn visit_ty(&mut self, ty: Ty<'tcx>) -> Self::Result {\n match ty.kind() {\n ty::Dynamic(..) => return ControlFlow::Break(()),\n+ ... | 2025-05-23T09:43:21 |
huggingface/transformers | c8524aeb07f370195733f610760236d22e88cb61 | 6cb43defd084586df707fb85f6ab72bc800212ad | [cache] make all classes cache compatible finally (#38635)
* dump
* push other models
* fix simple greedy generation
* xmod
* add fmst and clean up some mentions of old cache format
* gpt-bigcode now follows standards
* delete tuple cache reference in generation
* fix some models
* fix some models
* fix mamba... | [
{
"path": "docs/source/en/cache_explanation.md",
"patch": "@@ -141,7 +141,7 @@ The legacy format is essentially the same data structure but organized different\n - The tensors have the same shape `[batch_size, num_heads, seq_len, head_dim]`.\n - The format is less flexible and doesn't support features like ... | 2025-07-16T12:00:17 |
vercel/next.js | 16aa8e9b7e5c46a31c49ef8d1adc0e7352b1392c | 3615ede70327981933d951aa15917902b152e285 | fix: CNA issues when using `@/` in custom import alias (#46184)
unrelated changes:
- add missing await
- fix TYPO in test comment
This issue was caused by the fact that we have been replacing `@/` ->
`[importAlias]` even in tsconfig.json itself.
fixes #45884 | [
{
"path": "packages/create-next-app/templates/index.ts",
"patch": "@@ -88,6 +88,8 @@ export const installTemplate = async ({\n const writeSema = new Sema(8, { capacity: files.length })\n await Promise.all(\n files.map(async (file) => {\n+ // We don't want to modify compiler options in [... | 2023-02-22T00:45:32 |
electron/electron | 129cdb768064ec0803f73da5d02aaad712ffe06f | 8d3404d26c502a0d9107346d7455480cdb49279b | spec,win: Fix page-favicon-updated event spec | [
{
"path": "spec/webview-spec.coffee",
"patch": "@@ -169,7 +169,12 @@ describe '<webview> tag', ->\n it 'emits when favicon urls are received', (done) ->\n webview.addEventListener 'page-favicon-updated', (e) ->\n assert.equal e.favicons.length, 2\n- assert.equal e.favicons[0], 'file... | 2015-04-29T09:31:56 |
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.