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
63aef2d193ddbb4fcbe8c95fe2158fbe0bc89230
f85d63609cbba3b8af769884d860799c96583a3c
test: fix arguments order in assert.strictEqual PR-URL: https://github.com/nodejs/node/pull/24591 Reviewed-By: Ron Korving <ron@ronkorving.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Masashi Hirano <shisama07@gmail.com>
[ { "path": "test/parallel/test-crypto-fips.js", "patch": "@@ -54,7 +54,7 @@ function testHelper(stream, args, expectedOutput, cmd, env) {\n assert.ok(response.includes(expectedOutput));\n } else {\n // Normal path where we expect either FIPS enabled or disabled.\n- assert.strictEqual(exp...
2018-11-24T07:05:49
golang/go
17f62c0ac3de14c3dbff77b706f86dfb7dc820c7
d106089fa6aa69cc1b547c68ca19d84f28062c71
[dev.fuzz] internal/fuzz: fix bug for -fuzzminimizetime of zero Updates golang/go#48321 Change-Id: Ib35388f17580f1244a6eae4e5879f8329b6b44ce Reviewed-on: https://go-review.googlesource.com/c/go/+/349090 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> Reviewed-by: Jay Conrod <jayco...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt", "patch": "@@ -6,18 +6,6 @@\n # We clean the fuzz cache during this test. Don't clean the user's cache.\n env GOCACHE=$WORK/gocache\n \n-# Test that fuzzminimizetime can be zero seconds\n-! go test -fuzz=FuzzMinimizerRecoverable -run=FuzzMinimize...
2021-09-10T19:25:30
huggingface/transformers
3e4d584a5b2b81e11755f47835d86bdc63e744f1
300d42a43eb3804002b841a389637ceb99a081bb
Support `typing.Literal` as type of tool parameters or return value (#39633) * support `typing.Literal` as type of tool parameters * validate the `args` of `typing.Literal` roughly * add test to get json schema for `typing.Literal` type hint * fix: add `"type"` attribute to the parsed result of `typing.Literal` * ...
[ { "path": "src/transformers/utils/chat_template_utils.py", "patch": "@@ -20,7 +20,16 @@\n from datetime import datetime\n from functools import lru_cache\n from inspect import isfunction\n-from typing import Any, Callable, Optional, Union, get_args, get_origin, get_type_hints\n+from typing import (\n+ An...
2025-07-25T17:51:28
rust-lang/rust
d7c62a037c4fd4ed087247c5b1c8780d4847c3ca
467591f99c34c810e7e229acd5089dba670aafc4
attempt to fix squash on Windows
[ { "path": "src/tools/miri/miri-script/src/commands.rs", "patch": "@@ -404,7 +404,28 @@ impl Command {\n // We want to forward the host stdin so apparently we cannot use `cmd!`.\n let mut cmd = process::Command::new(\"git\");\n cmd.arg(\"rebase\").arg(&base).arg(\"--interactive\");\n-...
2025-05-27T10:29:41
vercel/next.js
11494c30024c010523bdc7c27b772695c4c37c54
4b705a5473320a9f047683abad80793c27f3eea5
Fix usage of textDecoder to not break utf8 characters (#46564) Fix usage of textDecoder to prevent breaking utf8 characters fixes #46561 ## Bug - [x] Related issues linked using `fixes #number` // it's too hard to get a reproducible test // - Integration tests added // error links are not needed // - Errors hav...
[ { "path": "packages/next/src/server/app-render.tsx", "patch": "@@ -336,6 +336,7 @@ function useFlightResponse(\n const startScriptTag = nonce\n ? `<script nonce=${JSON.stringify(nonce)}>`\n : '<script>'\n+ const textDecoder = new TextDecoder()\n \n function read() {\n forwardReader.read().t...
2023-02-28T22:20:36
nodejs/node
895fe2f574cc09eaadb8e9157c46751d9cdf7e51
a57343c72730bc26086fa3e358581e0ade4849d0
http2: fix session[kSession] undefined issue `finishSessionDestroy` session cleanup when already done. PR-URL: https://github.com/nodejs/node/pull/24547 Fixes: https://github.com/nodejs/node/issues/24546 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ouyang...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -1989,6 +1989,7 @@ class Http2Stream extends Duplex {\n // attempt to gracefully close the session.\n const state = this[kState];\n if (this.headersSent &&\n+ this[kSession] &&\n this[kSession][kType] === NGHTTP2_SESSI...
2018-11-21T08:53:15
electron/electron
8adb65fa29e4619b4e8e87064e6d3e0cc09684b4
51bb3574055653ec43d0970c81729a7bcdb8212d
fix dereferencing null pointer
[ { "path": "brightray/browser/inspectable_web_contents_impl.cc", "patch": "@@ -248,7 +248,8 @@ void InspectableWebContentsImpl::AttachTo(const scoped_refptr<content::DevToolsA\n }\n \n void InspectableWebContentsImpl::Detach() {\n- agent_host_->DetachClient();\n+ if (agent_host_.get())\n+ agent_host_->D...
2015-06-08T15:01:07
golang/go
d106089fa6aa69cc1b547c68ca19d84f28062c71
363f2f3df99f3edd15609cc6bea2a2c6f423ce2c
[dev.fuzz] internal/fuzz: write a newline to the end of a corpus file If someone manually adds/alters a corpus file to add extra spacing or remove the final newline, the file can still be decoded. However, this change ensures that the fuzzing engine correctly writes the final newline. Fixes golang/go#48130 Change-Id...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt", "patch": "@@ -163,6 +163,9 @@ func main() {\n \t\tos.Exit(1)\n \t}\n \n+\t// Trim the newline at the end of the file\n+\tgot = bytes.TrimSpace(got)\n+\n \t// Make sure that there were exactly 100 bytes written to the corpus entry\n \tprefix := [...
2021-09-10T15:05:29
rust-lang/rust
5f3ae06db07adcd6885558aa1f33ec2711fe0651
29c3babd7c03a48b022663beb7ad39bb24bbef36
Fix some var names
[ { "path": "compiler/rustc_borrowck/src/diagnostics/region_name.rs", "patch": "@@ -606,8 +606,8 @@ impl<'tcx> MirBorrowckCtxt<'_, '_, 'tcx> {\n hir_args: &'hir hir::GenericArgs<'hir>,\n search_stack: &mut Vec<(Ty<'tcx>, &'hir hir::Ty<'hir>)>,\n ) -> Option<&'hir hir::Lifetime> {\n- ...
2025-05-24T17:41:09
vercel/next.js
b6b7933377e44137cb51a0674a79a4e8204f0c06
18dc09bf552c97646fc05d76757a103cef1bdb9e
fix: generate next-env.d.ts file during next lint command (#46249) fixes #46104 ## Bug - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) --------- ...
[ { "path": "packages/create-next-app/templates/app/ts/next-env.d.ts", "patch": "@@ -1,6 +1,5 @@\n /// <reference types=\"next\" />\n /// <reference types=\"next/image-types/global\" />\n-/// <reference types=\"next/navigation-types/navigation\" />\n \n // NOTE: This file should not be edited\n // see https:/...
2023-02-28T19:51:22
golang/go
363f2f3df99f3edd15609cc6bea2a2c6f423ce2c
b38e853d04ffc00732474e2e90ffad24f5c6a462
[dev.fuzz] testing: allow -fuzzminimizetime to be 0 Fixes golang/go#48321 Change-Id: I1547379eb7a703f7f3c4594d27833eb3587796a0 Reviewed-on: https://go-review.googlesource.com/c/go/+/349089 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Rev...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt", "patch": "@@ -6,6 +6,32 @@\n # We clean the fuzz cache during this test. Don't clean the user's cache.\n env GOCACHE=$WORK/gocache\n \n+# Test that fuzzminimizetime can be zero seconds\n+! go test -fuzz=FuzzMinimizerRecoverable -run=FuzzMinimize...
2021-09-10T17:16:32
huggingface/transformers
300d42a43eb3804002b841a389637ceb99a081bb
abaa043d60edfd0eae78b7a0474aad8e5e433bda
Add ep (#39501) * EP + updates Co-authored-by: Nouamane Tazi <NouamaneTazi@users.noreply.github.com> Co-authored-by: drbh <drbh@users.noreply.github.com> * remove unrelated change * not working yet but let's see where it goes! * update the api a bit * udpate * where I am at for now * fix ep * refactor the API ...
[ { "path": "src/transformers/distributed/__init__.py", "patch": "@@ -0,0 +1,33 @@\n+# Copyright 2025 The HuggingFace Team. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the License.\n+# You may obtain a c...
2025-07-25T17:46:17
vercel/next.js
18dc09bf552c97646fc05d76757a103cef1bdb9e
9edf2d3d1f31ae180117416fb3c62219295b88a0
fix: should not warn when image unmounts (#46567) - Fixes #40762 ---------
[ { "path": "packages/next/src/client/image.tsx", "patch": "@@ -276,7 +276,7 @@ function handleLoading(\n img['data-loaded-src'] = src\n const p = 'decode' in img ? img.decode() : Promise.resolve()\n p.catch(() => {}).then(() => {\n- if (!img.parentNode) {\n+ if (!img.parentElement || !img.isConne...
2023-02-28T19:28:55
golang/go
cf2fe5d6f12f075f265ba067869fc5f0e3b23ff0
1bf2cd1291b5287045d3efd975870897fa03ac1f
doc/asm: fix HTML markup Change-Id: I33bde4835d3b83fafd55beea483f6236c4c62840 Reviewed-on: https://go-review.googlesource.com/c/go/+/338990 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Than McIntosh <thanm@google.com>
[ { "path": "doc/asm.html", "patch": "@@ -125,8 +125,8 @@ <h3 id=\"constants\">Constants</h3>\n One is in constant evaluation.\n Constant expressions in the assembler are parsed using Go's operator\n precedence, not the C-like precedence of the original.\n-Thus <code>3&amp;1<<2</code> is 4, not 0—it parses as...
2021-08-01T16:56:25
nodejs/node
a57343c72730bc26086fa3e358581e0ade4849d0
3c4f8a15408e32d481a7f43564165db05f19b6bd
test: fix http2-binding strictEqual order Switched the order of arguments for strictEqual checks inside of test/paralell/test-http2-binding.js PR-URL: https://github.com/nodejs/node/pull/24616 Refs: https://github.com/nodejsjp/node-1/issues/1 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung ...
[ { "path": "test/parallel/test-http2-binding.js", "patch": "@@ -233,16 +233,16 @@ const defaultSettings = {\n \n for (const name of Object.keys(constants)) {\n if (name.startsWith('HTTP_STATUS_')) {\n- assert.strictEqual(expectedStatusCodes[name], constants[name],\n+ assert.strictEqual(constants[name...
2018-11-24T07:56:04
huggingface/transformers
abaa043d60edfd0eae78b7a0474aad8e5e433bda
6630c5b714048206ce51306fdcff479803f7f4c2
bad_words_ids no longer slow on mps (#39556) * fix: bad_words_ids no longer slow on mps * fix: SequenceBiasLogitsProcessor slow `_prepare_bias_variables` method * fix: re-adding a deleted comment * fix: bug in no_bad_words_logits * Apply style fixes --------- Co-authored-by: github-actions[bot] <github-actions[b...
[ { "path": "src/transformers/generation/logits_process.py", "patch": "@@ -1222,10 +1222,16 @@ def _prepare_bias_variables(self, scores: torch.FloatTensor):\n # Precompute the bias tensors to be applied. Sequences of length 1 are kept separately, as they can be applied\n # with simpler logic.\...
2025-07-25T17:45:41
golang/go
1bf2cd1291b5287045d3efd975870897fa03ac1f
5a4b9f9494bad1091f2f9cb777aed54293b647d3
debug/elf: retain original error message when getSymbols fails. The original error is currently discarded, and that makes it difficult to know what failed, in case we want to retry only certain errors. Change-Id: Id7e927ec242464249c4dfa5cda0f264adef3c898 Reviewed-on: https://go-review.googlesource.com/c/go/+/317851 R...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -494,7 +494,7 @@ func (f *File) getSymbols32(typ SectionType) ([]Symbol, []byte, error) {\n \n \tdata, err := symtabSection.Data()\n \tif err != nil {\n-\t\treturn nil, nil, errors.New(\"cannot load symbol section\")\n+\t\treturn nil, nil, fmt.Errorf(\"cannot ...
2021-05-07T00:17:59
nodejs/node
3c4f8a15408e32d481a7f43564165db05f19b6bd
7c3c70cc48a2a23fbc3a1f3c9e01d02f2ecf2dc1
test: fix the arguments order in `assert.strictEqual` PR-URL: https://github.com/nodejs/node/pull/24595 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-file-write-stream.js", "patch": "@@ -53,10 +53,10 @@ file\n console.error('drain!', callbacks.drain);\n callbacks.drain++;\n if (callbacks.drain === -1) {\n- assert.strictEqual(EXPECTED, fs.readFileSync(fn, 'utf8'));\n+ assert.strictEqual(fs.readFileSync(f...
2018-11-24T07:12:36
vercel/next.js
9edf2d3d1f31ae180117416fb3c62219295b88a0
d49c700d0ddf2e75dc4fc1d297ce3a3bc0a36bf1
Fix CSS imports not included in entries with a custom extension (#46571) `entryName` will contain the extension if it's not a normal JS entry, this causes CSS being missing in pages with a custom extension in app dir (e.g. MDX). Here we add a `.replace(/\.[^\\/.]+$/, '')` to the entry name. Fixes NEXT-709 ## Bug - ...
[ { "path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts", "patch": "@@ -374,7 +374,12 @@ export class FlightManifestPlugin {\n if (entryName?.startsWith('app/')) {\n // The `key` here should be the absolute file path but without extension.\n // We need to rep...
2023-02-28T18:53:48
huggingface/transformers
6630c5b714048206ce51306fdcff479803f7f4c2
ed9a96bc6d55f412e82e59bdde7bf6b845fc096b
Add xlstm model (#39665) * Add xLSTM cleanly with optimizations. * Fix style. * Fix modeling test. * Make xLSTM package optional. * Fix: Update torch version check. * Fix: Bad variable naming in test. * Fix: Import structure cleaning with Ruff. * Fix: Update docstrings. * Fix: Mitigate unused config attr tests...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -697,6 +697,8 @@\n title: XLM-V\n - local: model_doc/xlnet\n title: XLNet\n+ - local: model_doc/xlstm\n+ title: xLSTM\n - local: model_doc/yoso\n title: YOSO\n - local: model_doc/zamba", "addition...
2025-07-25T17:39:17
golang/go
5a4b9f9494bad1091f2f9cb777aed54293b647d3
025308fe084264538f49924b3f52d8d6b6359658
time: reference -tags=timetzdata in testing panic This will spare anyone who hits it having to search for the workaround. Change-Id: Iff0d449212f2675ac78e30ae5ffc8efb4d924088 Reviewed-on: https://go-review.googlesource.com/c/go/+/334611 Trust: Josh Bleecher Snyder <josharian@gmail.com> Run-TryBot: Josh Bleecher Snyde...
[ { "path": "src/time/internal_test.go", "patch": "@@ -12,7 +12,7 @@ func init() {\n func initTestingZone() {\n \tz, err := loadLocation(\"America/Los_Angeles\", zoneSources[len(zoneSources)-1:])\n \tif err != nil {\n-\t\tpanic(\"cannot load America/Los_Angeles for testing: \" + err.Error())\n+\t\tpanic(\"can...
2021-07-14T20:21:11
nodejs/node
7c3c70cc48a2a23fbc3a1f3c9e01d02f2ecf2dc1
70e2f9db13e6e7fd845f5329b76782906a50ce02
doc: fix duplicate "this" and "the" on http2.md PR-URL: https://github.com/nodejs/node/pull/24611 Reviewed-By: Ron Korving <ron@ronkorving.nl> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Denys Otrishk...
[ { "path": "doc/api/http2.md", "patch": "@@ -125,7 +125,7 @@ Every `Http2Session` instance is associated with exactly one [`net.Socket`][] or\n [`tls.TLSSocket`][] when it is created. When either the `Socket` or the\n `Http2Session` are destroyed, both will be destroyed.\n \n-Because the of the specific seri...
2018-11-24T07:25:49
vercel/next.js
d49c700d0ddf2e75dc4fc1d297ce3a3bc0a36bf1
d0ba8003dca5991b41ee043e5fa14d78b1ee263f
Fix shared entries/invalidators module scope (#46533) This ensures we don't keep `entries` and `invalidator` in module scope directly and nest it under a key specific to each compilation so multiple `next` instances in the same process don't override one and another. ## Bug - [x] Related issues linked using `...
[ { "path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts", "patch": "@@ -11,7 +11,7 @@ import path from 'path'\n import { sources } from 'next/dist/compiled/webpack/webpack'\n import {\n getInvalidator,\n- entries,\n+ getEntries,\n EntryTypes,\n } from '../../../server/dev/on-d...
2023-02-28T18:17:28
huggingface/transformers
d913b39ef391895834e422afe7bd4d31a9196a0d
a26f0fabb8654131157a763ac6e742fc424cf8db
fix: HWIO to OIHW (#39200) * fix: HWIO to OIHW * Bug in attention type * Conversion script docstring * style --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> Co-authored-by: Arthur <arthur.zucker@gmail.com>
[ { "path": "src/transformers/models/gemma3n/configuration_gemma3n.py", "patch": "@@ -271,7 +271,7 @@ def __init__(\n \n if layer_types is None:\n self.layer_types = [\n- \"full_attention\" if i % 5 == 0 else \"sliding_attention\" for i in range(self.num_hidden_layers)\n+ ...
2025-07-25T17:23:15
electron/electron
2ba119f3958cdf61fc8774121c530f922dd9daeb
15255944b634c32127992af2bb445d9f6ae41c7e
fix memory leak
[ { "path": "brightray/browser/net_log.cc", "patch": "@@ -51,7 +51,8 @@ NetLog::NetLog(net::URLRequestContext* context)\n << \"for net logging\";\n } else {\n std::string json;\n- base::JSONWriter::Write(GetConstants(), &json);\n+ scoped_ptr<base::Value> constants(GetConstants());\n...
2015-06-08T14:26:48
golang/go
025308fe084264538f49924b3f52d8d6b6359658
5a94a90d84cc65a04ab44737baa406023e9b2001
testing: increase alternation precedence Updates handling of go test flags -run and -bench to give alternation precendence over the / delimiter. Currently, `A/B|C/D` is effectively `A/(B|C)/D` - with this change, it changes to effectively `(A/B)|(C/D)`. Fixes #39904 Change-Id: Iebe5efd8d91c72eed6351bd63b4689b0fcb0ed...
[ { "path": "src/testing/match.go", "patch": "@@ -14,34 +14,45 @@ import (\n \n // matcher sanitizes, uniques, and filters names of subtests and subbenchmarks.\n type matcher struct {\n-\tfilter []string\n+\tfilter filterMatch\n \tmatchFunc func(pat, str string) (bool, error)\n \n \tmu sync.Mutex\...
2021-08-20T23:57:45
huggingface/transformers
a26f0fabb8654131157a763ac6e742fc424cf8db
69cff312f5c8026fea13029bb45b139385a88b4c
Fix auto_docstring crashing when dependencies are missing (#39564) * add try except to not crash auto_docstring when some dependency are missing * safeguard None value in placeholder dict
[ { "path": "src/transformers/utils/auto_docstring.py", "patch": "@@ -1154,7 +1154,7 @@ def get_placeholders_dict(placeholders: list, model_name: str) -> dict:\n if place_holder_value is not None:\n if isinstance(place_holder_value, (list, tuple)):\n place_holde...
2025-07-25T17:19:23
nodejs/node
70e2f9db13e6e7fd845f5329b76782906a50ce02
9fe02af79425ae455e888ce2b99f86448d0053e6
deps: cherry-pick 88f8fe1 from upstream V8 Original commit message: Fix collection iterator preview with deleted entries We used to assume that we know the remaining entries returned by the iterator based on the current index. However, that is not accurate, since entries skipped by the current index ...
[ { "path": "common.gypi", "patch": "@@ -31,7 +31,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.12',\n+ 'v8_embedder_string': '-node.13',\n \n # Enable disassembler for `--print-co...
2018-11-20T07:59:38
vercel/next.js
d0ba8003dca5991b41ee043e5fa14d78b1ee263f
0c0318e75bd3ba3917b576dbe904389245c63949
Fix viewport typing and refactor constants (#46569) ## Bug x-ref: https://github.com/vercel/next.js/discussions/46542 Closes NEXT-686 - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/bl...
[ { "path": "packages/next/src/lib/metadata/constants.ts", "patch": "@@ -0,0 +1,14 @@\n+import type { Viewport } from './types/extra-types'\n+import type { Icons } from './types/metadata-types'\n+\n+export const ViewPortKeys: { [k in keyof Viewport]: string } = {\n+ width: 'width',\n+ height: 'height',\n+ ...
2023-02-28T17:40:48
golang/go
5a94a90d84cc65a04ab44737baa406023e9b2001
da1aa650536b188c4dce287003a6f46b0dc4bdd5
cmd/compile/internal/types2: better error message for invalid array decls Fixes #43527. Change-Id: I988a4d49f2f54b4b1741688fb52a55bf313d39e1 Reviewed-on: https://go-review.googlesource.com/c/go/+/348731 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
[ { "path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue43527.go2", "patch": "@@ -0,0 +1,16 @@\n+// Copyright 2021 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package p\n+\n+const L = 10\n+\n...
2021-09-09T05:08:14
vercel/next.js
0c0318e75bd3ba3917b576dbe904389245c63949
886dc9f30f5387743b6bc4a0432222fae202c854
Wrong function name (#46546) The function name was written incorrectly. Property 'rewrites' does not exist on type NextResponse. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.j...
[ { "path": "errors/middleware-parse-user-agent.md", "patch": "@@ -29,6 +29,6 @@ export function middleware(request: NextRequest) {\n const viewport = device.type === 'mobile' ? 'mobile' : 'desktop'\n \n request.nextUrl.searchParams.set('viewport', viewport)\n- return NextResponse.rewrites(request.nextUr...
2023-02-28T11:46:50
huggingface/transformers
69cff312f5c8026fea13029bb45b139385a88b4c
a98bbc294ceadec160c7e2b7ec57054e2e49ea54
Add support for DeepseekAI's DeepseekVL (#36248) * upload initial code * update deepseek-vl adaptor * update hierarchy of vision model classes * udpate aligner model * add text model * Added Image Processor * Added Image Processor * Added Image Processor * apply masks * remove projection; add aligner * remov...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -725,6 +725,10 @@\n title: DAB-DETR\n - local: model_doc/deepseek_v2\n title: DeepSeek-V2\n+ - local: model_doc/deepseek_vl\n+ title: DeepseekVL\n+ - local: model_doc/deepseek_vl_hybrid\n+ title: DeepseekVLHy...
2025-07-25T17:18:50
nodejs/node
ce890a0d900f3847730b07022973c7a0a7c1779a
e0893f03c3e41c32eba29390a866d722fbb1dd7f
doc: mark napi_add_finalizer experimental This was missed when the function was added. As it is experimental in the code it should also be experimental in the docs. Fixes: https://github.com/nodejs/node/issues/24509 PR-URL: https://github.com/nodejs/node/pull/24572 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>...
[ { "path": "doc/api/n-api.md", "patch": "@@ -3799,6 +3799,9 @@ callback was associated with the wrapping, it will no longer be called when the\n JavaScript object becomes garbage-collected.\n \n ### napi_add_finalizer\n+\n+> Stability: 1 - Experimental\n+\n <!-- YAML\n added: v8.0.0\n napiVersion: 1", "a...
2018-11-22T18:47:40
electron/electron
cefe540ec04c8608e8c9a7d75fe2b237569264e8
8363a39a568b66b5c91657a84fad1a3ed40b44ba
mac: Build dump_syms Crashpad doesn't ship dump_syms, we have to build to from breakpad. Related: #1822
[ { "path": "atom.gyp", "patch": "@@ -45,6 +45,7 @@\n 'dependencies': [\n '<(project_name)_framework',\n '<(project_name)_helper',\n+ 'vendor/breakpad/breakpad.gyp:dump_syms',\n ],\n 'xcode_settings': {\n 'ATOM_BUNDLE_ID': 'com.<(com...
2015-06-08T05:47:08
golang/go
da1aa650536b188c4dce287003a6f46b0dc4bdd5
96ab854ab03f6a21c676c2a7aa9c4ad933892a42
cmd/compile/internal/syntax: correct follow token for type parameter lists When parsing a type parameter declaration, parts of the code still expected a ) as closing token. Use the correct follow token ) or ] depending on parameter list kind. Also, consistently use tokstring (not tok.String()) for user-facing (error)...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -276,7 +276,9 @@ func (p *parser) syntaxErrorAt(pos Pos, msg string) {\n }\n \n // tokstring returns the English word for selected punctuation tokens\n-// for more readable error messages.\n+// for more readable error messages. Use tokstrin...
2021-09-09T22:43:19
huggingface/transformers
a98bbc294ceadec160c7e2b7ec57054e2e49ea54
45c7bfb1571160d2c06b880073a5c73e6bfa3677
Add missing flag for CacheLayer (#39678) * fix * Update cache_utils.py
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -73,6 +73,8 @@ class DynamicLayer(CacheLayerMixin):\n See `CacheLayerMixin` for details on common methods that are implemented by all cache layers.\n \"\"\"\n \n+ is_sliding = False\n+\n def update(\n self,\n key_states...
2025-07-25T17:12:13
electron/electron
57ef6adbbdb2806ca31525231639124796099aba
5ae9c633ca7317c419ac0f7ba4990d0d6d386ffa
win: Fix runing clipboard spec
[ { "path": "spec/api-clipboard-spec.coffee", "patch": "@@ -25,8 +25,10 @@ describe 'clipboard module', ->\n markup =\n if process.platform is 'darwin'\n '<meta charset=\\'utf-8\\'><string>Hi</string>'\n- else\n+ else if process.platform is 'linux'\n '<meta http...
2015-06-08T05:22:53
vercel/next.js
7a9047a730d52e145ab547bdec25ae26eeeb9d73
619c76c0f983a3880fcec065c933ef1ef3b21633
Added bcrypt to the serverComponentsExternalPackages auto-optOut list (#46532) fixes #46493 ## 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) ## Feat...
[ { "path": "packages/next/src/lib/server-external-packages.json", "patch": "@@ -4,6 +4,7 @@\n \"@sentry/node\",\n \"autoprefixer\",\n \"aws-crt\",\n+ \"bcrypt\",\n \"cypress\",\n \"eslint\",\n \"express\",", "additions": 1, "deletions": 0, "language": "JSON" } ]
2023-02-28T10:53:37
nodejs/node
4270c13426fb8d86f1068735006b95bb614e9f38
c90b51427503fe409f38da18a4966926cbe62564
test: fix test case in test-child-process-fork-dgram.js PR-URL: https://github.com/nodejs/node/pull/24459 Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "test/parallel/test-child-process-fork-dgram.js", "patch": "@@ -70,7 +70,7 @@ if (process.argv[2] === 'child') {\n child.on('message', (msg) => {\n if (msg === 'gotMessage') {\n childGotMessage = true;\n- } else if (msg = 'handlReceived') {\n+ } else if (msg === 'handle...
2018-11-20T14:49:51
golang/go
b38e853d04ffc00732474e2e90ffad24f5c6a462
213d9f9a3893eeed1fe1fe5e9e216da33f4d75c4
[dev.fuzz] testing: move corpus from testdata/corpus to testdata/fuzz Fixes golang/go#48128 Change-Id: I04deb17226ff5d5dfcbe408fe089f400d4d3836f Reviewed-on: https://go-review.googlesource.com/c/go/+/349053 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Go Bot <gob...
[ { "path": "src/cmd/go/testdata/script/test_fuzz.txt", "patch": "@@ -445,20 +445,20 @@ func FuzzWrongType(f *testing.F) {\n f.Fuzz(func(t *testing.T, b []byte) {})\n }\n \n--- corpustesting/testdata/corpus/FuzzFail/1 --\n+-- corpustesting/testdata/fuzz/FuzzFail/1 --\n go test fuzz v1\n []byte(\"12345\")\...
2021-09-10T14:00:00
electron/electron
5ae9c633ca7317c419ac0f7ba4990d0d6d386ffa
13c1b078f98ba79164540b33e6a7407298b15fa7
Fix building on Windows, close #1896
[ { "path": "atom/browser/common_web_contents_delegate.cc", "patch": "@@ -11,6 +11,7 @@\n #include \"atom/browser/native_window.h\"\n #include \"atom/browser/ui/file_dialog.h\"\n #include \"atom/browser/web_dialog_helper.h\"\n+#include \"base/files/file_util.h\"\n #include \"chrome/browser/ui/browser_dialogs....
2015-06-08T05:19:56
nodejs/node
d45e303ac67c027bbad709f465e479ac789302a7
f85b43537d6dff4004081fcc81f8aa771efbe1e5
n-api: handle reference delete before finalize Crashes were reported during finalization due to the memory for a reference being deleted and the finalizer running after the deletion. This change ensures the deletion of the memory for the reference only occurs after the finalizer has run. Fixes: https://github.com/no...
[ { "path": "src/js_native_api_v8.cc", "patch": "@@ -227,8 +227,29 @@ class Reference : private Finalizer {\n finalize_hint);\n }\n \n+ // Delete is called in 2 ways. Either from the finalizer or\n+ // from one of Unwrap or napi_delete_reference.\n+ //\n+ // When it is called from Unwrap or napi_d...
2018-11-16T21:42:31
golang/go
96ab854ab03f6a21c676c2a7aa9c4ad933892a42
90c5660616d7f006ca62adfec49310bf40e3b354
cmd/compile/internal: better AST line highlight in ssa.html We tend to set div class with the line number in HTML AST nodes. So that the AST nodes can be highlighted with corresponding source and ssa ir. The pure AST text dump is created first. And then it is parsed and written to the HTML file. CL 275785 changed th...
[ { "path": "src/cmd/compile/internal/ir/fmt.go", "patch": "@@ -1147,6 +1147,7 @@ func dumpNodeHeader(w io.Writer, n Node) {\n \t\t\t}\n \t\t\t// TODO(mdempsky): Print line pragma details too.\n \t\t\tfile := filepath.Base(pos.Filename())\n+\t\t\t// Note: this output will be parsed by ssa/html.go:(*HTMLWriter...
2021-09-01T05:48:48
vercel/next.js
619c76c0f983a3880fcec065c933ef1ef3b21633
5ff005f7b54e02fea030af417790f218a19c6428
Fix infinite invalidations loop in app dir (#46526)Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> This fixes a case where depending on the timings of compilers being done could cause an infinite invalidation loop. **Before** https://user-images.githubusercontent.com/22380829/2...
[ { "path": "packages/next/src/server/dev/on-demand-entry-handler.ts", "patch": "@@ -215,18 +215,18 @@ class Invalidator {\n continue\n }\n \n- this.multiCompiler.compilers[COMPILER_INDEXES[key]].watching?.invalidate()\n this.building.add(key)\n+ this.multiCompiler.compilers[COMP...
2023-02-28T10:07:29
electron/electron
b6a5e927e0b23bc5538af503d1cfa49a8d2f84ee
13c1b078f98ba79164540b33e6a7407298b15fa7
:memo: Fix english errors and language
[ { "path": "docs/api/dialog.md", "patch": "@@ -1,7 +1,7 @@\n # dialog\n \n The `dialog` module provides APIs to show native system dialogs, so web\n-applications can get the same user experience with native applications.\n+applications can deliver the same user experience as native applications.\n \n An exam...
2015-06-07T19:32:54
golang/go
90c5660616d7f006ca62adfec49310bf40e3b354
c69f5c0d7632381dfc6dc78f0af4f54e7673176d
embed: guarantee the returned file of FS.Open implements io.Seeker Fixes golang/go#45745 Change-Id: Ib49a9605a38074f544a5d28116862e191cea8c0f Reviewed-on: https://go-review.googlesource.com/c/go/+/313352 Run-TryBot: Hajime Hoshi <hajimehoshi@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance T...
[ { "path": "src/embed/embed.go", "patch": "@@ -291,6 +291,8 @@ func (f FS) readDir(dir string) []file {\n }\n \n // Open opens the named file for reading and returns it as an fs.File.\n+//\n+// The returned file implements io.Seeker when the file is not a directory.\n func (f FS) Open(name string) (fs.File, ...
2021-04-26T13:32:21
vercel/next.js
5ff005f7b54e02fea030af417790f218a19c6428
767e9216f7a377d4ec929fcdf064e6bb535f041d
Refactor route types to include rewrites and redirects (#46327) This PR refactors the implementation of `Route<T>` to be more compact (2/3 fewer union types), and adds support for static rewrites and redirects. Check the updated test for more details. In the future I plan to continue to refactor this by extract s...
[ { "path": "packages/next/src/build/build-context.ts", "patch": "@@ -1,11 +1,11 @@\n-import { LoadedEnvFiles } from '@next/env'\n-import { Ora } from 'next/dist/compiled/ora'\n-import { Rewrite } from '../lib/load-custom-routes'\n-import { __ApiPreviewProps } from '../server/api-utils'\n-import { NextConfigC...
2023-02-28T09:18:47
golang/go
b32209d22d0418594bd60af152b0f2c90c677941
1a708bcf1d17171056a42ec1597ca8848c854d2a
cmd/compile: fix test case for unified IR (fix build) For #48301. Change-Id: Ie5f57dcce86773c06c5140abf13a6cfff79eb323 Reviewed-on: https://go-review.googlesource.com/c/go/+/348743 Trust: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Griesemer <gri@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>...
[ { "path": "test/fixedbugs/issue48301.go", "patch": "@@ -9,5 +9,5 @@\n package p\n \n func _() {\n-\ttype T = T // ERROR \"T uses T\"\n+\ttype T = T // ERROR \"T uses T|invalid recursive type T\"\n }", "additions": 1, "deletions": 1, "language": "Go" } ]
2021-09-09T22:55:05
vercel/next.js
767e9216f7a377d4ec929fcdf064e6bb535f041d
3609bdbffe8e0aefc1c8f1bc944370f2a33db418
fix(error-overlay): hide "Learn more" when up-to-date (#46488) When the installed `latest` or `canary` of `next` matches the last published version, we should hide the link that points to the error message/explanation. [Slack thread](https://vercel.slack.com/archives/C04CAN8CGCE/p1677370692392969) Fixes NEXT-...
[ { "path": "packages/next/src/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.tsx", "patch": "@@ -49,13 +49,15 @@ export function VersionStalenessInfo(props: VersionInfo) {\n >\n {text}\n </small>{' '}\n- <a\n- target=\"_blank\...
2023-02-28T09:15:57
electron/electron
161dc45ec8f4316e2d13b9d8b38ee06ea94c6f49
13c1b078f98ba79164540b33e6a7407298b15fa7
:memo: Fix english errors and clarify docs
[ { "path": "docs/api/global-shortcut.md", "patch": "@@ -1,8 +1,8 @@\n # global-shortcut\n \n The `global-shortcut` module can register/unregister a global keyboard shortcut\n-in operating system, so that you can custom the operations for various shortcuts.\n-Note that it is global, even the app does not get ...
2015-06-07T01:46:51
huggingface/transformers
45c7bfb1571160d2c06b880073a5c73e6bfa3677
2670da66ce08a21654b9700212355d9763d3c503
Add evolla rebase main (#36232) * add evolla * adding protein encoder part * add initial processing test * save processor * add docstring * add evolla processor * add two test * change vision to protein * change resampler to sequence_compressor * change vision to protein * initial update for llama * add ini...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -975,6 +975,8 @@\n title: Donut\n - local: model_doc/emu3\n title: Emu3\n+ - local: model_doc/evolla\n+ title: Evolla\n - local: model_doc/flava\n title: FLAVA\n - local: model_doc/gemma3", "addit...
2025-07-25T17:11:57
golang/go
1a708bcf1d17171056a42ec1597ca8848c854d2a
426ff3746fb2ebb777e32572b6eda5e19263ace9
cmd/compile: don't crash while reporting invalid alias cycle Add a missing nil check in the formatting code for expression nodes. Matches the nil checks in the same code. Fixes #48301. Change-Id: Ia9bfd3535254a94996ee190b544d95e15433d252 Reviewed-on: https://go-review.googlesource.com/c/go/+/348740 Trust: Robert Gri...
[ { "path": "src/cmd/compile/internal/ir/fmt.go", "patch": "@@ -559,7 +559,7 @@ func exprFmt(n Node, s fmt.State, prec int) {\n \t}\n \n \tnprec := OpPrec[n.Op()]\n-\tif n.Op() == OTYPE && n.Type().IsPtr() {\n+\tif n.Op() == OTYPE && n.Type() != nil && n.Type().IsPtr() {\n \t\tnprec = OpPrec[ODEREF]\n \t}\n "...
2021-09-09T21:42:42
vercel/next.js
7e2d931ffa6a32c8963d426a491813a196991090
77283326e12521e6b1eb817255dc8466c9faf5d2
Update Middleware Routing (vercel/turbo#3930) This accomplishes 2 things: - Moves the creation of the edge info onto the Next.js side - Extracts the middleware's `export const config = {}`, so that we can know what matchers are needed before invoking the edge function definition. After this, an update to the Next.js ...
[ { "path": "packages/next-swc/crates/next-core/js/src/entry/edge-bootstrap.ts", "patch": "@@ -1,3 +1,4 @@\n+declare const NAME: string;\n declare const PAGE: string;\n \n import { adapter, enhanceGlobals } from \"next/dist/server/web/adapter\";\n@@ -15,7 +16,7 @@ if (typeof handler !== \"function\") {\n \n /...
2023-02-28T02:09:54
electron/electron
29827fa66bf6d611b1a95f4e97e45b655e13c230
13c1b078f98ba79164540b33e6a7407298b15fa7
:memo: Fix english errors
[ { "path": "docs/api/process.md", "patch": "@@ -1,6 +1,6 @@\n # Process object\n \n-The `process` object in Electron has following differences between the one in\n+The `process` object in Electron has the following differences from the one in\n upstream node:\n \n * `process.type` String - Process's type, ca...
2015-06-07T01:42:21
huggingface/transformers
2670da66ce08a21654b9700212355d9763d3c503
4b125e29939e3425947f319aa9e4924ad74d619e
update expected outputs for whisper after #38778 (#39304) * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/whisper/test_modeling_whisper.py", "patch": "@@ -2886,14 +2886,14 @@ def test_whisper_longform_multi_batch_hard(self):\n def test_whisper_longform_multi_batch_hard_prev_cond(self):\n # fmt: off\n EXPECTED_TEXT = [\n- \" Folks, if you watch the show, you...
2025-07-25T16:48:10
golang/go
426ff3746fb2ebb777e32572b6eda5e19263ace9
73483df406af39e6c244fd2fb90b41c4cfecd51e
cmd/cgo, runtime/cgo: avoid GCC/clang conversion warnings Add explicit conversions to avoid warnings from -Wsign-conversion and -Wshorten-64-to-32. Also avoid runtime errors from -fsanitize=undefined. Fixes #48121 Change-Id: I29dc8d976884fc42826392c10f1e1759bb1a3989 Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1458,10 +1458,10 @@ const gccProlog = `\n (have a negative array count) and an inscrutable error will come\n out of the compiler and hopefully mention \"name\".\n */\n-#define __cgo_compile_assert_eq(x, y, name) typedef char name[(x-y)*(x-y)*-2+1];\n+#define...
2021-09-09T21:04:43
nodejs/node
23f5fd5f17f3c5e08ddc818559eb258dbf09e90a
790fae59a36db6a4a981a28f7c8210eb67e7947f
deps: add s390 asm rules for OpenSSL-1.1.0 This is a floating patch against OpenSSL-1.1.0 to generate asm files with Makefile rules and it is to be submitted to the upstream. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell <jasnell@gmail.c...
[ { "path": "deps/openssl/openssl/crypto/aes/build.info", "patch": "@@ -45,6 +45,9 @@ INCLUDE[aes-armv4.o]=..\n GENERATE[bsaes-armv7.S]=asm/bsaes-armv7.pl $(PERLASM_SCHEME)\n INCLUDE[bsaes-armv7.o]=..\n \n+GENERATE[aes-s390x.S]=asm/aes-s390x.pl $(PERLASM_SCHEME)\n+INCLUDE[aes-s390x.o]=..\n+\n BEGINRAW[Makefil...
2018-03-07T14:52:52
electron/electron
9a0a10e76679f55e5197a41c15ecce665bc3a865
13c1b078f98ba79164540b33e6a7407298b15fa7
Fixed example with correct capturePage api.
[ { "path": "docs/api/remote.md", "patch": "@@ -97,7 +97,8 @@ returns a `Buffer` by calling the passed callback:\n ```javascript\n var remote = require('remote');\n var fs = require('fs');\n-remote.getCurrentWindow().capturePage(function(buf) {\n+remote.getCurrentWindow().capturePage(function(image) {\n+ var...
2015-06-06T11:20:47
huggingface/transformers
4b125e29939e3425947f319aa9e4924ad74d619e
4f17bf0572fbeb380db0b4e95c54b28e7b4bc52b
fix `kyutai` tests (#39416) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> Co-authored-by: eustlb <94853470+eustlb@users.noreply.github.com>
[ { "path": "tests/models/kyutai_speech_to_text/test_modeling_kyutai_speech_to_text.py", "patch": "@@ -777,4 +777,11 @@ def test_generation_batched(self):\n ])\n # fmt: on\n \n- torch.testing.assert_close(out.cpu(), EXPECTED_TOKENS)\n+ # See https://github.com/huggingface/transfo...
2025-07-25T16:42:04
rust-lang/rust
89c21f7c1af83cfbd862e08e716026f1c357a316
d76fe154029e03aeb64af721beafdcef856d576a
Remove out-of-date `noop_*` names. `mut_visit.rs` has a single function with a `noop_` prefix: `noop_filter_map_expr`. This commit renames as `walk_filter_map_expr` which is consistent with other functions in this file. The commit also removes out-of-date comments that refer to `noop_*` methods.
[ { "path": "compiler/rustc_ast/src/mut_visit.rs", "patch": "@@ -40,12 +40,6 @@ pub trait MutVisitor: Sized {\n // fn flat_map_t(&mut self, t: T) -> SmallVec<[T; 1]>; // rare\n // fn filter_map_t(&mut self, t: T) -> Option<T>; // rarest\n //\n- // Any additions to this trait shou...
2025-05-19T22:47:29
vercel/next.js
8102125fd20db9afc4f366d1bd710eeed68967ef
5ec3b8c45c7ef4c78f10a2f2a7e7e42d7632ae67
Update Middleware Routing (vercel/turbo#3930) This accomplishes 2 things: - Moves the creation of the edge info onto the Next.js side - Extracts the middleware's `export const config = {}`, so that we can know what matchers are needed before invoking the edge function definition. After this, an update to the Next.js ...
[ { "path": "crates/next-core/js/src/entry/edge-bootstrap.ts", "patch": "@@ -1,3 +1,4 @@\n+declare const NAME: string;\n declare const PAGE: string;\n \n import { adapter, enhanceGlobals } from \"next/dist/server/web/adapter\";\n@@ -15,7 +16,7 @@ if (typeof handler !== \"function\") {\n \n // @ts-ignore\n glo...
2023-02-28T02:09:54
nodejs/node
33a25b29a4d654f5c2a5c74725862bccb2fcccfb
91748dd89c652939d52f38b94afe9eae4eb8fd5d
net,dgram: add ipv6Only option for net and dgram For TCP servers, the dual-stack support is enable by default, i.e. binding host "::" will also make "0.0.0.0" bound. This commit add ipv6Only option in `net.Server.listen()` and `dgram.createSocket()` methods which allows to disable dual-stack support. Support for clust...
[ { "path": "doc/api/dgram.md", "patch": "@@ -601,6 +601,9 @@ changes:\n pr-url: https://github.com/nodejs/node/pull/13623\n description: The `recvBufferSize` and `sendBufferSize` options are\n supported now.\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/2...
2018-10-21T07:59:38
golang/go
73483df406af39e6c244fd2fb90b41c4cfecd51e
e1c3f2158fe3129fb44cc92423cfa41e7b6d472c
cmd/compile/internal/syntax: better error message for missing type constraint For #43527. Change-Id: I8c706e68572286d5675383eb2dfd75b5618b646b Reviewed-on: https://go-review.googlesource.com/c/go/+/348730 Trust: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Griesemer <gri@golang.org> TryBot-Result: Go Bot <gob...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -1908,8 +1908,9 @@ func (p *parser) paramList(name *Name, close token, requireNames bool) (list []*\n \t\tdefer p.trace(\"paramList\")()\n \t}\n \n-\tvar named int // number of parameters that have an explicit name and type/bound\n-\tp.list...
2021-09-09T04:30:01
huggingface/transformers
4f17bf0572fbeb380db0b4e95c54b28e7b4bc52b
ddb0546d145c2f944d94444ec8327571908c280b
Fixes the BC (#39636) * fix * update * Update src/transformers/utils/generic.py Co-authored-by: Benjamin Bossan <BenjaminBossan@users.noreply.github.com> * fixup * fixes * fix more models * fix fix fix * add embedding to more models * update * update * fix --------- Co-authored-by: Benjamin Bossan <Benjam...
[ { "path": "src/transformers/utils/generic.py", "patch": "@@ -1032,6 +1032,8 @@ def wrapper(self, *args, **kwargs):\n def make_capture_wrapper(module, orig_forward, key, index):\n @wraps(orig_forward)\n def wrapped_forward(*args, **kwargs):\n+ if key == \"hidden...
2025-07-25T16:41:21
rust-lang/rust
3fff727e87099b6cc4daca13f5fd0adf439ad4e7
d76fe154029e03aeb64af721beafdcef856d576a
Use more detailed spans in dyn compat errors within bodies
[ { "path": "compiler/rustc_hir_analysis/src/collect.rs", "patch": "@@ -31,7 +31,7 @@ use rustc_hir::def_id::{DefId, LocalDefId};\n use rustc_hir::intravisit::{self, InferKind, Visitor, VisitorExt, walk_generics};\n use rustc_hir::{self as hir, GenericParamKind, HirId, Node, PreciseCapturingArgKind};\n use ru...
2025-05-26T10:38:02
electron/electron
cd1c331112360ded924830bcc07ab54ccaff9207
4da7578daba66c82c945ecaeb5f485d6fe8fd156
Fix coffeelint error.
[ { "path": "atom/common/api/lib/crash-reporter.coffee", "patch": "@@ -55,8 +55,7 @@ class CrashReporter\n path.join tmpdir, \"#{@productName} Crashes\"\n else\n path.join tmpdir, \"#{@productName} Crashes\", 'uploads.log'\n- console.log log;\n- binding._getUploadedReports(log)\n+ ...
2015-06-06T09:59:20
vercel/next.js
82f4fd3e8c792c8c2f304091c0c6c9aa90cd9cad
9ad1f321b7902542acd2be041fb2f15f023a0ed9
Update router filter to be less sensitive (#46515) This skips including dynamic redirects in the client router filter as it causes extra unexpected hard navigations. x-ref: [slack thread](https://vercel.slack.com/archives/C04MEB9L9RQ/p1677521159911179?thread_ts=1677255545.574209&cid=C04MEB9L9RQ) ## Bug - [ ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -132,7 +132,7 @@ import { webpackBuild } from './webpack-build'\n import { NextBuildContext } from './build-context'\n import { normalizePathSep } from '../shared/lib/page-path/normalize-path-sep'\n import { isAppRouteRoute } from '../lib/is-app-rou...
2023-02-28T01:07:26
golang/go
e1c3f2158fe3129fb44cc92423cfa41e7b6d472c
c981874a5a87605b446b3a56abba9907d17e8493
time: propagate "," separator for fractional seconds into Format In CL 300996 that fixed issue #6189, we made Parse recognize "," as a separator for fractional seconds. However, we didn't modify Format to propagate the separator verbatim from Parse. Without this change, we break prior functionality that relied on a co...
[ { "path": "src/time/format.go", "patch": "@@ -146,10 +146,11 @@ const (\n \tstdFracSecond0 // \".0\", \".00\", ... , trailing zeros included\n \tstdFracSecond9 // \".9\", \".99\", ..., trailing zeros omitted\n \n-\tstdNeedDate = 1 << 8 ...
2021-08-28T21:21:17
huggingface/transformers
ddb0546d145c2f944d94444ec8327571908c280b
a91653561eb0028f25636916531e541d30dd162b
Delete bad rebasing functions (#39672) * remove outdated stuff * remove comment * use register * remove finally clause (to allow further check if fallback to sdpa) * general exception * add wrapper * revert check * typo
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2094,8 +2094,6 @@ class PreTrainedModel(nn.Module, EmbeddingAccessMixin, ModuleUtilsMixin, PushToH\n _supports_attention_backend = False\n _can_record_outputs = None\n \n- # This attribute sets the default parameter to be\n-\n @pro...
2025-07-25T16:28:09
nodejs/node
282e533636337ecbbb301d9c44686d19cc1c7465
0fad875b3785123cc382f13c60df471985e403e5
test: using arrow functions - Using arrow functions in test-tls-client-resume.js - Fixed error, Expected parentheses around arrow function argument arrow-parens PR-URL: https://github.com/nodejs/node/pull/24436 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail...
[ { "path": "test/parallel/test-tls-client-resume.js", "patch": "@@ -38,7 +38,7 @@ const options = {\n };\n \n // create server\n-const server = tls.Server(options, common.mustCall(function(socket) {\n+const server = tls.Server(options, common.mustCall((socket) => {\n socket.end('Goodbye');\n }, 2));\n \n@@...
2018-11-20T23:44:49
rust-lang/rust
e0d4cf38f49991c7c39ad563e32ddf840e8e4cd9
d76fe154029e03aeb64af721beafdcef856d576a
further dedup `WalkItemKind` for `mut_visit` and `visit` also some drive-by fixes.
[ { "path": "compiler/rustc_ast/src/mut_visit.rs", "patch": "@@ -1041,78 +1041,6 @@ pub fn walk_item_kind<K: WalkItemKind>(\n kind.walk(span, id, visibility, ctxt, vis)\n }\n \n-impl WalkItemKind for AssocItemKind {\n- type Ctxt = AssocCtxt;\n- fn walk<V: MutVisitor>(\n- &mut self,\n- ...
2025-05-27T06:54:02
electron/electron
33f65ba98152c9ec8366f4a324f5f2f740de068f
10223577008510eececdc30b6b9f8f025a7b5c36
fix crash on quit
[ { "path": "brightray/browser/net_log.cc", "patch": "@@ -13,6 +13,25 @@\n #include \"net/log/net_log_util.h\"\n #include \"net/url_request/url_request_context.h\"\n \n+namespace {\n+\n+base::Value* GetConstants() {\n+ scoped_ptr<base::DictionaryValue> constants = net::GetNetConstants();\n+\n+ // Adding cli...
2015-06-06T09:03:07
vercel/next.js
9ad1f321b7902542acd2be041fb2f15f023a0ed9
aa614635d6520cc9dac3cc91f145446d1317611f
Add interactive-widget optional property to Viewport type (#46506) ## Feature - [x] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [x] [e2e](https://github.com/vercel/next.js/b...
[ { "path": "packages/next/src/lib/metadata/resolve-metadata.test.ts", "patch": "@@ -169,4 +169,42 @@ describe('accumulateMetadata', () => {\n })\n })\n })\n+\n+ describe('viewport', () => {\n+ it('should support string viewport', async () => {\n+ const metadataItems: MetadataItems = [\n+...
2023-02-27T23:12:56
huggingface/transformers
a91653561eb0028f25636916531e541d30dd162b
5d0ba3e479839f3a385799cecc3cf42b4e970797
[`Ernie 4.5`] Post merge adaptations (#39664) * ernie 4.5 fixes * Apply style fixes * fix --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
[ { "path": "docs/source/en/model_doc/ernie4_5.md", "patch": "@@ -31,7 +31,7 @@ The Ernie 4.5 model was released in the [Ernie 4.5 Model Family](https://ernie.b\n This family of models contains multiple different architectures and model sizes. This model in specific targets the base text\n model without mixtu...
2025-07-25T15:36:18
golang/go
c981874a5a87605b446b3a56abba9907d17e8493
2c4f389c0298a37f1f3c000ad8b87e65d46c757f
cmd/compile: fix implement for closure in a global assignment If closure in a global assignment and has a method receiver. We should assign receiver as a global variable, not a local variable. Fixes #48225 Change-Id: I8f65dd6e8baf66a5eff24028d28ad0a594091add Reviewed-on: https://go-review.googlesource.com/c/go/+/348...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -396,13 +396,19 @@ func (g *irgen) buildClosure(outer *ir.Func, x ir.Node) ir.Node {\n \tif rcvrValue != nil {\n \t\trcvrVar = ir.NewNameAt(pos, typecheck.LookupNum(\".rcvr\", g.dnum))\n \t\tg.dnum++\n-\t\trcvrVar.Class = ir.PAUTO\n \t\ttyp...
2021-09-09T13:51:43
nodejs/node
1d3e40d9aa33af925baafd7e284aa6577ded794e
7cc3b1eac56d6a5759a298666ad11436396fdf0c
build: fix Python detection when depot_tools are in PATH in Windows PR-URL: https://github.com/nodejs/node/pull/22539 Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "tools/msvs/find_python.cmd", "patch": "@@ -2,7 +2,7 @@\n echo Looking for Python 2.x\n SETLOCAL\n :: If python.exe is in %Path%, just validate\n-FOR /F \"delims=\" %%a IN ('where python 2^> NUL') DO (\n+FOR /F \"delims=\" %%a IN ('where python.exe 2^> NUL') DO (\n SET need_path=0\n SET p=%%~d...
2018-08-26T20:24:22
electron/electron
13c1b078f98ba79164540b33e6a7407298b15fa7
cd7b3dd2919c2dcb91a225cee82119101f4b5b75
Fix refreshing test window
[ { "path": "spec/api-crash-reporter-spec.coffee", "patch": "@@ -39,8 +39,12 @@ describe 'crash-reporter module', ->\n res.end('abc-123-def')\n server.close()\n done()\n- server.listen 0, '127.0.0.1', ->\n+ # Server port is generated randomly for the first run, it will be reused\...
2015-06-05T11:48:58
rust-lang/rust
7fae5efa4d7ff80a2755ecb878692eb79b40fb04
d76fe154029e03aeb64af721beafdcef856d576a
Fix CI for unrolled builds on the `try-perf` branch That branch is essentially the same as the `try` branch, it also needs S3 permissions. Long term, we should move rollup unrolling from rustc-perf to bors, so that we can have only a single try branch.
[ { "path": ".github/workflows/ci.yml", "patch": "@@ -79,9 +79,8 @@ jobs:\n # This also ensures that PR CI (which doesn't get write access to S3) works, as it cannot\n # access the environment.\n #\n- # We only enable the environment for the rust-lang/rust repository, so that rust-lang-ci/rust\...
2025-05-27T06:44:51
vercel/next.js
aa614635d6520cc9dac3cc91f145446d1317611f
d3e576dba314191c7549d9d2ca57e1db47daf171
Update fetch cache key (#46513 x-ref: [slack thread](https://vercel.slack.com/archives/C042LHPJ1NX/p1677461963151879?thread_ts=1677360662.652689&cid=C042LHPJ1NX) ## Bug - [x] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributin...
[ { "path": "packages/next/src/server/lib/incremental-cache/index.ts", "patch": "@@ -57,6 +57,7 @@ export class IncrementalCache {\n prerenderManifest: PrerenderManifest\n requestHeaders: Record<string, undefined | string | string[]>\n minimalMode?: boolean\n+ fetchCacheKeyPrefix?: string\n \n constr...
2023-02-27T22:14:14
golang/go
2c4f389c0298a37f1f3c000ad8b87e65d46c757f
fb84e99eb76615f63fc2d6bc93c244a84d6e9c22
cmd/link: enable internal linker in more cases for ppc64le The internal linker is capable of linking the ppc64le linux race detector and approved cgo packages. Likewise, ppc64/linux and ppc64/aix do not support the race detector. Thus, extra code to enforce external linking when using the race detector on ppc64/ppc64...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -984,11 +984,6 @@ func (t *tester) internalLink() bool {\n \t\t// linkmode=internal fails on dragonfly since errno is a TLS relocation.\n \t\treturn false\n \t}\n-\tif gohostarch == \"ppc64le\" {\n-\t\t// linkmode=internal fails on ppc64le because cmd/link does...
2021-03-23T21:17:00
nodejs/node
9d4b2141062a0671a3c2a2e3408742c36f0fb513
16a2b5c7a694593bd39eb2d143da03f20070f2ce
deps: update llhttp to 1.0.1 Fix callback error reporting PR-URL: https://github.com/nodejs/node/pull/24508 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "deps/llhttp/include/llhttp.h", "patch": "@@ -3,7 +3,7 @@\n \n #define LLHTTP_VERSION_MAJOR 1\n #define LLHTTP_VERSION_MINOR 0\n-#define LLHTTP_VERSION_PATCH 0\n+#define LLHTTP_VERSION_PATCH 1\n \n #ifndef INCLUDE_LLHTTP_ITSELF_H_\n #define INCLUDE_LLHTTP_ITSELF_H_", "additions": 1, "delet...
2018-11-20T03:21:04
electron/electron
c821a06e2f001db8726777b01a8ee5656d7067e9
129159c895bac9b35f1524d7f21b16dce57a7d26
Implement crash-reporter.getUploadedReports API. Also redefine the getLastCrashReport API implementation using getUploadedReports API.
[ { "path": "atom/common/api/lib/crash-reporter.coffee", "patch": "@@ -41,23 +41,23 @@ class CrashReporter\n start()\n \n getLastCrashReport: ->\n- if process.platform is 'darwin'\n- reports = binding._getUploadedReports()\n- return if reports.length > 0 then reports[0] else null\n+ re...
2015-06-05T10:50:52
huggingface/transformers
850bdeaa95a945088e049f162ec8aef45d48db50
17f02102c5c9d3dd8f83db92efafc71fad291090
Fix ModernBERT Decoder model (#39671) fix
[ { "path": "src/transformers/models/modernbert_decoder/modeling_modernbert_decoder.py", "patch": "@@ -217,7 +217,7 @@ def forward(\n \n @auto_docstring\n class ModernBertDecoderPreTrainedModel(ModernBertPreTrainedModel):\n- config_class: ModernBertDecoderConfig\n+ config: ModernBertDecoderConfig\n ...
2025-07-25T15:20:12
rust-lang/rust
7baa85d16b05bcb6bc173471f5e6b8263057bed5
2e9c2cec04b71f753da1e8a00bcdb7c930868cad
Fix inference of `AsyncFnX` return type
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/chalk_db.rs", "patch": "@@ -259,7 +259,7 @@ impl chalk_solve::RustIrDatabase<Interner> for ChalkContext<'_> {\n }\n fn well_known_trait_id(\n &self,\n- well_known_trait: rust_ir::WellKnownTrait,\n+ well_known_trait: WellKnown...
2025-05-27T03:44:34
golang/go
b9e1a24581b6282ee930a50bbe498d24ef77f486
f9271e4f853eacded38fd6d626948e035cfd608c
cmd/compile: fix case where init info of OAS node is dropped When an OAS node is converted to an OSELRECV2 node in tcSelect(), the possible DCL node in the Init field was being dropped, since a completely new node was being created and the Init field was not set. I don't expect n.Init() to be set for the ORECV case, b...
[ { "path": "src/cmd/compile/internal/noder/transform.go", "patch": "@@ -554,6 +554,7 @@ func transformSelect(sel *ir.SelectStmt) {\n \t\t\t\t}\n \t\t\t\tselrecv.Def = def\n \t\t\t\tselrecv.SetTypecheck(1)\n+\t\t\t\tselrecv.SetInit(n.Init())\n \t\t\t\tncase.Comm = selrecv\n \t\t\t}\n \t\t\tswitch n.Op() {", ...
2021-09-08T15:41:54
vercel/next.js
d3e576dba314191c7549d9d2ca57e1db47daf171
474b115e6d903394d58a51eef97ffa4f2ae2ce70
fix: codemod should preserve type only import (#46512) This PR is similar to PR #46460, but applies the patch to all our codemods.
[ { "path": "packages/next-codemod/transforms/__testfixtures__/built-in-next-font/page.input.tsx", "patch": "@@ -1,5 +1,8 @@\n+// @ts-nocheck\n+/* eslint-disable */\n import { Oswald } from \"@next/font/google\";\n import localFont1 from \"@next/font/local\";\n+import type { AdjustFontFallback } from \"@next/...
2023-02-27T21:36:26
rust-lang/rust
30721b0e909d7451a37bbb4ae371e1c909a0cbaf
231e8cb34e6a2c549ffd1f0c69ff2521b0ccc3e9
Add stubs for environment variables; document some of the important ones This uses a very hacky regex that will probably miss some variables. But having some docs seems better than none at all. This uses a very hacky regex that will probably miss some variables. But having some docs seems better than none at all. In...
[ { "path": "src/doc/unstable-book/src/compiler-environment-variables/COLORTERM.md", "patch": "@@ -0,0 +1,5 @@\n+# `COLORTERM`\n+\n+This environment variable is used by [`-Zterminal-urls`] to detect if URLs are supported by the terminal emulator.\n+\n+[`-Zterminal-urls`]: ../compiler-flags/terminal-urls.html"...
2025-05-27T00:10:17
nodejs/node
69cc58d0ab8af1bb8328e685e967860cfb25474d
8dd8b8fad9689f31673866f1b77c50098dd2c855
stream: correctly pause and resume after once('readable') Fixes: https://github.com/nodejs/node/issues/24281 PR-URL: https://github.com/nodejs/node/pull/24366 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
[ { "path": "lib/_stream_readable.js", "patch": "@@ -114,6 +114,7 @@ function ReadableState(options, stream, isDuplex) {\n this.emittedReadable = false;\n this.readableListening = false;\n this.resumeScheduled = false;\n+ this.paused = true;\n \n // Should close be emitted on destroy. Defaults to tru...
2018-11-14T16:23:28
huggingface/transformers
17f02102c5c9d3dd8f83db92efafc71fad291090
f90de364c2484c7c325bbe05befdcf487bd75b63
🚨[Fast Image Processor] Force Fast Image Processor for Qwen2_VL/2_5_VL + Refactor (#39591) * init * Force qwen2VL image proc to fast * refactor qwen2 vl fast * fix copies * Update after PR review and update tests to use return_tensors="pt" * fix processor tests * add BC for min pixels/max pixels
[ { "path": "src/transformers/models/auto/image_processing_auto.py", "patch": "@@ -49,6 +49,9 @@\n logger = logging.get_logger(__name__)\n \n \n+FORCE_FAST_IMAGE_PROCESSOR = [\"Qwen2VLImageProcessor\"]\n+\n+\n if TYPE_CHECKING:\n # This significantly improves completion suggestion performance when\n #...
2025-07-25T15:11:28
electron/electron
9ab9b392d6ce22fcba7fbf2f0bcf4418ef08080a
44ba4e87aa2fe4ff02d42a7ef5bdf773b6113af9
Fix crash when quitting
[ { "path": "brightray/browser/inspectable_web_contents_impl.cc", "patch": "@@ -499,8 +499,6 @@ void InspectableWebContentsImpl::WebContentsDestroyed() {\n frontend_loaded_ = false;\n Observe(nullptr);\n Detach();\n- agent_host_ = nullptr;\n- embedder_message_dispatcher_ = nullptr;\n \n for (const a...
2015-06-05T04:34:54
golang/go
7c648e2acb31363ea128b754503343cf2c82ba6f
5abfd2379b2e7319d3f08f496c12acdb50e1065a
[dev.fuzz] internal/fuzz: avoid incorrect bytes modification during minimization During minimization, the "canonical inputs" (vals) are updated as viable minimized values are found. Previously, these bytes could be changed later during minimization. This patch updates the minimization code to revert the bytes back whe...
[ { "path": "src/internal/fuzz/minimize.go", "patch": "@@ -19,6 +19,14 @@ func isMinimizable(t reflect.Type) bool {\n }\n \n func minimizeBytes(v []byte, try func(interface{}) bool, shouldStop func() bool) {\n+\ttmp := make([]byte, len(v))\n+\t// If minimization was successful at any point during minimizeByte...
2021-09-09T15:02:30
vercel/next.js
474b115e6d903394d58a51eef97ffa4f2ae2ce70
792c26d87dca92b7770c9d82787ee3155dbade2b
Remove baseUrl from create-next-app ts/jsconfig.json (#46458) Fixes #46288 Makes TypeScript behavior match runtime by no longer allowing files to be imported absolutely relative to project root without using a relative path or a path alias. This changes behavior introduced in https://github.com/vercel/next.js/pu...
[ { "path": "packages/create-next-app/templates/app/js/jsconfig.json", "patch": "@@ -1,6 +1,5 @@\n {\n \"compilerOptions\": {\n- \"baseUrl\": \".\",\n \"paths\": {\n \"@/*\": [\"./*\"]\n }", "additions": 0, "deletions": 1, "language": "JSON" }, { "path": "packages/create...
2023-02-27T20:16:04
huggingface/transformers
3b3f9c0c46ea2dd1de519cc428e6f27dd2ef4b97
2a82cf06ad0aeadb53441ce7e80720b4b2302123
fix(voxtral): correct typo in apply_transcription_request (#39572) * fix(voxtral): correct typo in apply_transcription_request * temporary wrapper: apply_transcrition_request * Update processing_voxtral.py * style: sort imports in processing_voxtral.py * docs(voxtral): fix typo in voxtral.md * make style * doc u...
[ { "path": "docs/source/en/model_doc/voxtral.md", "patch": "@@ -37,7 +37,11 @@ Voxtral builds on Ministral-3B by adding audio processing capabilities:\n \n ## Usage\n \n-Let's first load the model!\n+### Audio Instruct Mode\n+\n+The model supports audio-text instructions, including multi-turn and multi-audio...
2025-07-25T12:09:44
nodejs/node
399bb3c95af821350774c18f469ab700387f38e1
79a49f14563d9a07853ae53f5482c75c572dae7a
doc: add NODE_DEBUG_NATIVE to API docs This commit adds the missing environment variable NODE_DEBUG_NATIVE to the CLI API docs. PR-URL: https://github.com/nodejs/node/pull/24383 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>...
[ { "path": "doc/api/cli.md", "patch": "@@ -539,6 +539,10 @@ added: v0.1.32\n \n `','`-separated list of core modules that should print debug information.\n \n+### `NODE_DEBUG_NATIVE=module[,…]`\n+\n+`','`-separated list of core C++ modules that should print debug information.\n+\n ### `NODE_DISABLE_COLORS=1`...
2018-11-15T21:40:06
vercel/next.js
792c26d87dca92b7770c9d82787ee3155dbade2b
9376a5afb22add0dd3c7b300c31b98916f1a9eb4
Fix(typedRoutes): fixed 'next' imports on TS < 5.0 (#46507) <!-- 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/next/src/build/webpack/plugins/next-types-plugin.ts", "patch": "@@ -141,8 +141,8 @@ function createRouteDefinitions() {\n })\n \n return `declare module 'next' {\n- export { default } from 'next/types/index.d.ts'\n- export * from 'next/types/index.d.ts'\n+ export { default } from ...
2023-02-27T19:49:52
golang/go
a53e3d5f885ca7a0df1cd6cf65faa5b63a802dce
19457a58e565ff5b480c3806fe02fbc7ccdf32f0
net: deprecate (net.Error).Temporary Fixes #45729. Change-Id: I819dd0cc79fc23baac46cafd78bb80f5133c992b Reviewed-on: https://go-review.googlesource.com/c/go/+/340261 Trust: Damien Neil <dneil@google.com> Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Damien Neil <dneil@google.com> TryBot-Result: Go Bot <gobot...
[ { "path": "src/net/net.go", "patch": "@@ -396,8 +396,12 @@ type Listener interface {\n // An Error represents a network error.\n type Error interface {\n \terror\n-\tTimeout() bool // Is the error a timeout?\n-\tTemporary() bool // Is the error temporary?\n+\tTimeout() bool // Is the error a timeout?\n+\n...
2021-08-06T17:33:08
huggingface/transformers
2a82cf06ad0aeadb53441ce7e80720b4b2302123
e3760501b0f0ce6be6fe31f0dab15d0e5d2c5260
make fixup (#39661)
[ { "path": "src/transformers/modeling_flash_attention_utils.py", "patch": "@@ -393,7 +393,9 @@ def _flash_attention_forward(\n query_states, key_states, value_states = fa_peft_integration_check(\n query_states, key_states, value_states, target_dtype\n )\n- use_mask = position_ids is not No...
2025-07-25T11:27:45
nodejs/node
79a49f14563d9a07853ae53f5482c75c572dae7a
aa089bf23ba3d1ef89b815bf8c8c0f8c554cdba0
doc: add missing env variables to man page This commit adds the missing environment variables NODE_DEBUG_NATIVE, NODE_PRESERVE_SYMLINKS, NODE_TLS_REJECT_UNAUTHORIZED, NODE_V8_COVERAGE, and UV_THREADPOOL_SIZE to the man page. PR-URL: https://github.com/nodejs/node/pull/24383 Reviewed-By: Anna Henningsen <anna@addaleax...
[ { "path": "doc/node.1", "patch": "@@ -283,6 +283,9 @@ Print node's version.\n .It Ev NODE_DEBUG Ar modules...\n Comma-separated list of core modules that should print debug information.\n .\n+.It Ev NODE_DEBUG_NATIVE Ar modules...\n+Comma-separated list of C++ core modules that should print debug informatio...
2018-11-15T21:33:23
huggingface/transformers
e3760501b0f0ce6be6fe31f0dab15d0e5d2c5260
91f591f7bcad6ef4027b5244cab0eb505a491671
[docs] fix ko cache docs (#39644) fix ko docs
[ { "path": "docs/source/ko/internal/generation_utils.md", "patch": "@@ -342,60 +342,92 @@ generation_output[:2]\n \n ## 캐시 (Caches) [[transformers.Cache]]\n \n-[[autodoc]] Cache\n+[[autodoc]] CacheLayerMixin\n - update\n+ - get_seq_length\n+ - get_mask_sizes\n+ - get_max_cache_shape\n+ - rese...
2025-07-25T09:06:03
electron/electron
66b3972fbce15747c4b4a455b21b1f9f29c486d1
129159c895bac9b35f1524d7f21b16dce57a7d26
Fix typo
[ { "path": "atom/browser/default_app/main.js", "patch": "@@ -124,7 +124,7 @@ app.once('ready', function() {\n click: function() {\n var focusedWindow = BrowserWindow.getFocusedWindow();\n if (focusedWindow)\n- mainWindow.restart();\n+ focu...
2015-06-05T02:02:42