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 |
|---|---|---|---|---|---|
vercel/next.js | b00fd379723e06eaa725d4e0c8cbe92eb7f8fe57 | 471e80f27b9f7840926c2243952cd3000caa87f3 | Fix invalid source maps from terser-webpack-plugin (#45423)
This fixes a regression in our source map generating which got lost in
the big diff from the `src` folder restructure in
https://github.com/vercel/next.js/pull/44405
These invalid source maps broken plugins that attempted to leverage them
like `@sentry/... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1,3 +1,4 @@\n+import '../lib/setup-exception-listeners'\n import type { webpack } from 'next/dist/compiled/webpack/webpack'\n import { loadEnvConfig } from '@next/env'\n import chalk from 'next/dist/compiled/chalk'",
"additions": 1,
"deleti... | 2023-01-31T01:31:33 |
huggingface/transformers | 56a7cf5546b2a172ec4d96ad212c188d31492696 | 380e6ea4065afc4f639d7b1bed990e18020b7270 | fix: Add method to get image features in PaliGemmaForConditionalGeneration (#38730)
* fix: Add method to retrieve image features in PaliGemmaForConditionalGeneration
* feat: Add get_image_features method to multiple models for image feature extraction
* fix: reformat the files with ruff.
* feat: Add methods for pac... | [
{
"path": "src/transformers/models/aria/modeling_aria.py",
"patch": "@@ -1225,6 +1225,18 @@ def set_decoder(self, decoder):\n def get_decoder(self):\n return self.model\n \n+ def get_image_features(\n+ self,\n+ pixel_values: torch.FloatTensor,\n+ pixel_mask: Optional[torc... | 2025-06-11T10:26:31 |
golang/go | f264879f74efc8b9a9bcf4e04df0f8f5affa11a9 | c96833e5badedb025761de6a74ed5f9c848059de | cmd/go/internal/modload: fix an apparent typo in the AutoRoot comment
Updates #40276
Change-Id: Ic192d51f9f0306e5c206c550ef02f6d4495d0851
Reviewed-on: https://go-review.googlesource.com/c/go/+/332569
Trust: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Jay Conrod <jayconrod@google.com> | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -71,7 +71,7 @@ type Root int\n const (\n \t// AutoRoot is the default for most commands. modload.Init will look for\n \t// a go.mod file in the current directory or any parent. If none is found,\n-\t// modules may be disabled (GO111MODULE=on) or ... | 2021-07-02T18:00:49 |
nodejs/node | 054481633a3a6feba53213b8a5335ccfa421de0e | a8526cb5a46df0cd8052ca1a13cab78e0e0c6a4b | doc: fix code snippets in tls.md
Replace `server.close()` which don't exist in code snippets.
PR-URL: https://github.com/nodejs/node/pull/23239
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Denys Otrishko <shishugi@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemo... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -918,9 +918,12 @@ The `callback` function, if specified, will be added as a listener for the\n \n `tls.connect()` returns a [`tls.TLSSocket`][] object.\n \n-The following implements a simple \"echo server\" example:\n+Here is an example of a client of echo server as ... | 2018-10-03T08:24:29 |
vercel/next.js | 471e80f27b9f7840926c2243952cd3000caa87f3 | 41e2613aca1614dd74c4d7a318ad18bb18b036ac | Check message type before formatting server error (#45406)
Make sure it's an error with a message before formatting.
## 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/... | [
{
"path": "packages/next/src/lib/format-server-error.ts",
"patch": "@@ -21,6 +21,8 @@ function setMessage(error: Error, message: string): void {\n }\n \n export function formatServerError(error: Error): void {\n+ if (typeof error?.message !== 'string') return\n+\n if (\n error.message.includes(\n ... | 2023-01-30T21:15:41 |
electron/electron | a9b1b567fb68b351af460a255008334605bdb60b | a0034521da8f8c45fb4570edb6d38630aa59ed31 | Fix capturePage API, closes #847 | [
{
"path": "atom/browser/native_window.cc",
"patch": "@@ -50,11 +50,15 @@\n #include \"ipc/ipc_message_macros.h\"\n #include \"native_mate/dictionary.h\"\n #include \"ui/gfx/codec/png_codec.h\"\n+#include \"ui/gfx/geometry/size_conversions.h\"\n #include \"ui/gfx/point.h\"\n #include \"ui/gfx/rect.h\"\n+#inc... | 2014-11-24T05:44:45 |
huggingface/transformers | 380e6ea4065afc4f639d7b1bed990e18020b7270 | f1849eab220cd7b7b49c821cc10fcb7ae0cdc385 | [llava] fix integration tests with Siglip (#38732)
fix llava siglip test | [
{
"path": "tests/models/llava/test_modeling_llava.py",
"patch": "@@ -557,10 +557,6 @@ def test_generation_siglip_backbone(self):\n model = LlavaForConditionalGeneration.from_pretrained(model_id, torch_dtype=\"float16\", device_map=torch_device)\n processor = AutoProcessor.from_pretrained(mod... | 2025-06-11T08:09:16 |
golang/go | c65ca97a452f872516a7e9462cd27ac17d913747 | 501725032cb8e0fd5ef75b50f949dda09ce4b441 | [dev.typeparams] cmd/compile: fix windows longtest builder
CL 332469 broke the Windows longtest builders, because it changed the
names assigned to autotmp variables that end up in export data.
The naming of autotmps doesn't actually matter, so instead we can just
hack iexport to write out "$autotmp" as a magic marker... | [
{
"path": "src/cmd/compile/internal/typecheck/iexport.go",
"patch": "@@ -2116,8 +2116,15 @@ func (w *exportWriter) localIdent(s *types.Sym) {\n \t\treturn\n \t}\n \n-\t// TODO(mdempsky): Fix autotmp hack.\n-\tif i := strings.LastIndex(name, \".\"); i >= 0 && !strings.HasPrefix(name, \".autotmp_\") && !strin... | 2021-07-07T11:03:24 |
nodejs/node | 2cf6a9483978c987351c5469d89bba6c37f95535 | e1d4b0a6467d6ee47eebf223c773946d38427d74 | tools: apply linting to first commit in PRs
Use Travis-CI to check the formatting of the first commit in a pull
request. This will hopefully reduce formatting errors and nits about
them in pull requests.
PR-URL: https://github.com/nodejs/node/pull/22452
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Trivik... | [
{
"path": ".travis.yml",
"patch": "@@ -12,6 +12,8 @@ matrix:\n - NODE=$(which node)\n script:\n - make lint\n+ # Lint the first commit in the PR.\n+ - git log HEAD ^$TRAVIS_BRANCH --pretty=format:'%h' --no-merges | tail -1 | xargs npx core-validate-commit --no-validate-me... | 2018-08-22T02:15:14 |
electron/electron | dfcad75a270842ef64dff409a902248355bffec7 | a0034521da8f8c45fb4570edb6d38630aa59ed31 | Fix typo in method | [
{
"path": "atom/renderer/lib/web-view.coffee",
"patch": "@@ -545,7 +545,7 @@ registerWebViewElement = ->\n \"isWaitingForResponse\"\n \"stop\"\n \"reload\"\n- \"reloadIngoringCache\"\n+ \"reloadIgnoringCache\"\n \"canGoBack\"\n \"canGoForward\"\n \"canGoToOffset\"",
"additi... | 2014-11-23T05:26:09 |
huggingface/transformers | f1849eab220cd7b7b49c821cc10fcb7ae0cdc385 | aa798b7ac9ff5018b3578eb927dc438671ab6a3e | Fixed a multiple-devices issue in SmolVLM model (#38736)
Fixed a multiple-devices issue in SmolVLMModel (#38557)
* Fixed a multiple-devices issue in SmolVLMModel
* Changed the modular to reflect changes | [
{
"path": "src/transformers/models/smolvlm/modeling_smolvlm.py",
"patch": "@@ -750,7 +750,7 @@ def forward(\n if pixel_values is not None and image_hidden_states is not None:\n raise ValueError(\"You cannot specify both pixel_values and image_hidden_states at the same time\")\n e... | 2025-06-11T08:08:01 |
vercel/next.js | d3a9f5a54aa9ad4638dbc96f165eb922ac48f529 | 9e290f9f15744c19e9e2581c995404ca5255b77b | Fix trailing slash redirect applying for data request (#45417)
This ensures we don't apply the trailing slash redirect for `_next/data`
requests as it can cause props to fail to resolve on client transition.
This also fixes `missing` fields not being applied correctly for
`headers` and `redirects` as the field wasn... | [
{
"path": "packages/next/src/lib/load-custom-routes.ts",
"patch": "@@ -668,6 +668,13 @@ export default async function loadCustomRoutes(\n permanent: true,\n locale: config.i18n ? false : undefined,\n internal: true,\n+ // don't run this redirect for _next/data requests... | 2023-01-30T20:10:30 |
golang/go | b614c05a151ffc45b8eb5725c9df399aca20663d | b4844c9f54eb6a559d8dc9333cf5b1e66dab8167 | [dev.typeparams] cmd/compile: add built-in name/type "comparable".
This allows exporting comparable type bounds, and importing back into
types2 for typechecking.
Fixes typeparam/mdempsky/8.go
Change-Id: I3ee12433df2ed68ac6ef4cad24be9fcdfaaca4e3
Reviewed-on: https://go-review.googlesource.com/c/go/+/333129
Run-TryBot... | [
{
"path": "src/cmd/compile/internal/importer/support.go",
"patch": "@@ -101,6 +101,8 @@ var predeclared = []types2.Type{\n \n \t// error\n \ttypes2.Universe.Lookup(\"error\").Type(),\n+\t// comparable\n+\ttypes2.Universe.Lookup(\"comparable\").Type(),\n \n \t// untyped types\n \ttypes2.Typ[types2.UntypedBoo... | 2021-07-06T03:58:56 |
electron/electron | 6af9dfc915c643e9ca18dac0afe980aab1f2f5bf | cff6b91d468217c0f88776129aae775d0eab2b90 | add shebang. fixes #4 | [
{
"path": "npm/install.js",
"patch": "@@ -22,6 +22,12 @@ var paths = {\n win32: path.join(__dirname, './dist/atom.exe')\n }\n \n+var shebang = {\n+ darwin: '#!/bin/bash\\n',\n+ linux: '#!/bin/bash\\n',\n+ win32: ''\n+}\n+\n var argv = {\n darwin: '\"$@\"',\n linux: '\"$@\"',\n@@ -33,7 +39,7 @@ if (... | 2014-11-22T19:29:44 |
vercel/next.js | 9e290f9f15744c19e9e2581c995404ca5255b77b | 72baaebb929374ebca774bf7dc3257c4e2c5f03c | Enable more hydration error overlay tests (#45404)
## 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)
## Feature
- [ ] Implements an existing featur... | [
{
"path": "test/development/acceptance-app/hydration-error.test.ts",
"patch": "@@ -15,7 +15,7 @@ createNextDescribe(\n skipStart: true,\n },\n ({ next }) => {\n- it('should show correct hydration errror when client and server render different text', async () => {\n+ it('should show correct hyd... | 2023-01-30T18:50:54 |
nodejs/node | 26af72899417525dd32372d63c07ee5aa1ab6c5c | 6f7fd7f9bc743f7244f820a1b7be1e01562c96fd | dns: deprecate passing falsy hostname to dns.lookup
We can `dns.lookup` a falsy `hostname` like `dns.lookup(false)`
for the reason of backwards compatibility long before(see #13119
for detail). This behavior is undocumented and seems useless in
real world apps.
We could also make invalid `hostname` throw in the futur... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -2214,6 +2214,22 @@ the `_handle` property of the `Cipher`, `Decipher`, `DiffieHellman`,\n Using the `_handle` property to access the native object is deprecated because\n improper use of the native object can lead to crashing the application.\n \n+<a id=\"D... | 2018-09-30T10:17:36 |
huggingface/transformers | cb4c56ce0dfa1350267ed28e57760986a58a9ba4 | 8ff22e9d3b0d14a4ae18890fbabe5ffc2d9a037b | Fix typo in Language Modeling example scripts and update TPU type (#38652)
* Fix typo that prevents the examples to be run correctly
* return .TPU in accelerator.distributedtype comparison | [
{
"path": "examples/pytorch/language-modeling/run_fim.py",
"patch": "@@ -521,7 +521,7 @@ def main():\n \n # Get the factor by which the embedding layer should be padded based on the device\n pad_factor = 1\n- if torch.cuda.is_availble():\n+ if torch.cuda.is_available():\n pad_factor = ... | 2025-06-10T13:43:35 |
golang/go | c96833e5badedb025761de6a74ed5f9c848059de | 912f0750472dd4f674b69ca1616bfaf377af1805 | doc: remove stale comment about arm64 port
Fixes #47079.
Change-Id: I8a671e3fdc13083e44e8d89064a5e7621e53bc4c
Reviewed-on: https://go-review.googlesource.com/c/go/+/333075
Trust: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
Run-TryBot: Michael Knyszek <mknyszek@google.com>
TryBot-... | [
{
"path": "doc/asm.html",
"patch": "@@ -827,10 +827,6 @@ <h3 id=\"arm\">ARM</h3>\n \n <h3 id=\"arm64\">ARM64</h3>\n \n-<p>\n-The ARM64 port is in an experimental state.\n-</p>\n-\n <p>\n <code>R18</code> is the \"platform register\", reserved on the Apple platform.\n To prevent accidental misuse, the regist... | 2021-07-07T14:58:36 |
rust-lang/rust | 13178c75cea866d3a84a570b9ae984508c2127db | b10555674f355aca2bfe974e50a0b9ab48eb1d87 | Async drop fix for async_drop_in_place<T> layout calculated for unspecified T | [
{
"path": "compiler/rustc_middle/src/ty/mod.rs",
"patch": "@@ -1924,6 +1924,9 @@ impl<'tcx> TyCtxt<'tcx> {\n def_id: DefId,\n args: GenericArgsRef<'tcx>,\n ) -> Option<&'tcx CoroutineLayout<'tcx>> {\n+ if args[0].has_placeholders() || args[0].has_non_region_param() {\n+ ... | 2025-05-10T19:21:56 |
electron/electron | bed09839d5fce3bb35fd17445ae413799a90c1df | 8951572366b0f767566e0df8b688dbc76306eb3a | Remove debugging print, closes #841 | [
{
"path": "atom/app/atom_main_delegate.cc",
"patch": "@@ -89,10 +89,6 @@ void AtomMainDelegate::PreSandboxStartup() {\n command_line->AppendSwitch(\"atom-shell-switches-end\");\n }\n \n-void AtomMainDelegate::ProcessExiting(const std::string& process_type) {\n- LOG(ERROR) << \"ProcessExiting: \" << proce... | 2014-11-21T08:39:16 |
nodejs/node | 5af1ac6b01b03907a007263f12ff846161df422e | a4ffa0cb948d813ad77998c1d5c60a8e5dc52959 | build: cleanup in .gitignore
* explicitly unignore files that we track.
The following are not created anymore (only as subdirs of v8/gypfiles)
/deps/v8/src/debug/obj
deps/v8/src/Debug/
deps/v8/src/Release/
deps/v8/src/inspector/Debug/
deps/v8/src/inspector/Release/
PR-URL: https://github.com/nodejs/node/pull/23180
R... | [
{
"path": ".gitignore",
"patch": "@@ -15,6 +15,7 @@\n !.mailmap\n !.nycrc\n !.travis.yml\n+!.eslintrc.yaml\n \n core\n vgcore.*\n@@ -38,14 +39,15 @@ icu_config.gypi\n .eslintcache\n node_trace.*.log\n coverage/\n+!**/node_modules/**/coverage\n \n /out\n \n # various stuff that VC++ produces/uses\n Debug/\n ... | 2018-09-29T19:31:04 |
vercel/next.js | 72baaebb929374ebca774bf7dc3257c4e2c5f03c | c7deecfd2988bd88769918388ff82f38494e3fb5 | Move error recovery test to new file (#45407) | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -53,372 +53,6 @@ for (const variant of ['default', 'turbo']) {\n await cleanup()\n })\n \n- test('logbox: can recover from a syntax error without losing state', async () => {\n- const { session, cleanup } ... | 2023-01-30T17:00:08 |
huggingface/transformers | 8ff22e9d3b0d14a4ae18890fbabe5ffc2d9a037b | 8340e8746e7d27cce05253ec0f2845aeb0313884 | [add-new-model-like] Robust search & proper outer '),' in tokenizer mapping (#38703)
* [add-new-model-like] Robust search & proper outer '),' in tokenizer mapping
* code-style: arrange the importation in add_new_model_like.py
* Apply style fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@us... | [
{
"path": "src/transformers/commands/add_new_model_like.py",
"patch": "@@ -12,6 +12,7 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+# 1. Standard library\n import difflib\n import json\n import os\n@@ -28,7 +29,12 @@\n \n from ..models imp... | 2025-06-10T12:25:12 |
electron/electron | 8951572366b0f767566e0df8b688dbc76306eb3a | 8a73d91ea1a4383b34a634e07a04cc1058b4e31b | win: Fix crash when calling app.setName | [
{
"path": "atom/browser/browser_win.cc",
"patch": "@@ -118,8 +118,8 @@ void Browser::SetUserTasks(const std::vector<UserTask>& tasks) {\n }\n \n void Browser::SetAppUserModelID(const std::string& name) {\n- app_user_model_id_ = base::UTF8ToUTF16(\n- base::StringPrintf(\"atom-shell.app.%s\", name));\n+... | 2014-11-21T08:38:54 |
vercel/next.js | c9d214fbe805dd037152356e98cf599d0437dc54 | 2cacb8eb876d18f2d38e41388968087f9468cf3d | Allow controlling depth of Vc debugging (vercel/turbo#3512)
Adds a mechanism for controlling the depth of `Vc` debugging, to avoid
printing out huge structs when we're only interested in some superficial
overview of it.
This will only affect `Vc`s: if a `Vc` contains a non-`Vc`, very deep
struct, the struct will... | [
{
"path": "crates/turbo-tasks-build/src/lib.rs",
"patch": "@@ -397,23 +397,27 @@ impl<'a> RegisterContext<'a> {\n \n /// Declares the default derive of the `ValueDebug` trait.\n fn register_debug_impl(&mut self, ident: &Ident, dbg_ty: DebugType) -> std::fmt::Result {\n- let fn_ident = Ident::... | 2023-01-30T10:20:04 |
nodejs/node | a4ffa0cb948d813ad77998c1d5c60a8e5dc52959 | 3d2124505eae95b72158a14c8f99373ca3e94e5a | tools: fix ICU shrinker and docs
- tools: path to ICU datafile moved
- docs: configure is now configure.py
Fixes: https://github.com/nodejs/node/issues/23245
PR-URL: https://github.com/nodejs/node/pull/23266
Reviewed-By: Refael Ackermann <refack@gmail.com> | [
{
"path": "tools/icu/README.md",
"patch": "@@ -92,7 +92,7 @@ make clean\n tools/license-builder.sh\n ```\n \n-- Now, fix the default URL for the `full-icu` build in `/configure`, in\n+- Now, fix the default URL for the `full-icu` build in `/configure.py`, in\n the `configure_intl()` function. It should matc... | 2018-10-03T20:39:14 |
huggingface/transformers | 8340e8746e7d27cce05253ec0f2845aeb0313884 | 8257734b5f4e9c15211cb885e6cb86440f5cedc5 | Use OSError (#38712)
Signed-off-by: cyy <cyyever@outlook.com> | [
{
"path": "src/transformers/generation/configuration_utils.py",
"patch": "@@ -1049,13 +1049,13 @@ def from_pretrained(\n _commit_hash=commit_hash,\n )\n commit_hash = extract_commit_hash(resolved_config_file, commit_hash)\n- except EnvironmentEr... | 2025-06-10T12:13:49 |
rust-lang/rust | f111416e43a36a1ee062a2194eae37c39d0f0be1 | cfe88fa8318ecf6aa2947a6314c0dcdc830e7de0 | Fixed a recursive inling bug, added a test for it | [
{
"path": "src/attributes.rs",
"patch": "@@ -6,21 +6,68 @@ use rustc_attr_parsing::InlineAttr;\n use rustc_attr_parsing::InstructionSetAttr;\n #[cfg(feature = \"master\")]\n use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;\n+use rustc_middle::mir::TerminatorKind;\n use rustc_middle::ty;\n \n ... | 2025-05-09T14:41:46 |
huggingface/transformers | 8257734b5f4e9c15211cb885e6cb86440f5cedc5 | 71f73859423f12888dcd460ae4ff1fcbb73d5625 | Fix `llava` tests (#38722)
* update
* fix 1
* fix 2
* fix 3
* fix 4
* fix 5
* fix 6
* fix 7
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/llava/test_modeling_llava.py",
"patch": "@@ -29,6 +29,7 @@\n is_vision_available,\n )\n from transformers.testing_utils import (\n+ Expectations,\n cleanup,\n require_bitsandbytes,\n require_torch,\n@@ -362,7 +363,14 @@ def test_small_model_integration_test_llama_s... | 2025-06-10T11:53:17 |
vercel/next.js | c7deecfd2988bd88769918388ff82f38494e3fb5 | b0d951bccddbd4b3c5828d3e0da590b8b307c5d3 | Fix flakey app metadata test (#45391)
We shouldn't use an arbitrary timeout here.
x-ref:
https://github.com/vercel/next.js/actions/runs/4038320521/jobs/6942258801 | [
{
"path": "test/e2e/app-dir/metadata/metadata.test.ts",
"patch": "@@ -275,19 +275,19 @@ createNextDescribe(\n await browser\n .elementByCss('#to-basic')\n .click()\n- .waitForElementByCss('#basic', 2000)\n+ .waitForElementByCss('#basic')\n \n ... | 2023-01-30T04:57:23 |
nodejs/node | cbc3ef64ceaf95ec1d0d1535211ce3a6945407e1 | d0fc382c4b18a7021d0a93194bc4b304ed6f7d6f | process: allow reading from stdout/stderr sockets
Allow reading from stdio streams that are conventionally
associated with process output, since this is only convention.
This involves disabling the oddness around closing stdio
streams. Its purpose is to prevent the file descriptors
0 through 2 from being closed, sinc... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1545,18 +1545,6 @@ An attempt was made to operate on an already closed socket.\n \n A call was made and the UDP subsystem was not running.\n \n-<a id=\"ERR_STDERR_CLOSE\"></a>\n-### ERR_STDERR_CLOSE\n-\n-An attempt was made to close the `process.stderr` stream. B... | 2018-09-24T09:51:14 |
rust-lang/rust | 9ed53b85b7ebb52badbc8676e40725a55331c214 | f60807dfeee8be4725a04bf08b712ef8db719579 | Fix ICE in `missing_const_for_fn`
The `mir_drops_elaborated_and_const_checked` query result has been
stolen already and cannot be borrowed again. Use the `optimized_mir`
query result instead. | [
{
"path": "clippy_lints/src/missing_const_for_fn.rs",
"patch": "@@ -155,9 +155,9 @@ impl<'tcx> LateLintPass<'tcx> for MissingConstForFn {\n return;\n }\n \n- let mir = cx.tcx.mir_drops_elaborated_and_const_checked(def_id);\n+ let mir = cx.tcx.optimized_mir(def_id);\n \n- ... | 2025-05-10T19:53:56 |
huggingface/transformers | 71f73859423f12888dcd460ae4ff1fcbb73d5625 | 04cdf8324485ae7cf88f447560d76e17ab98d287 | Logging message for ``` is_bitsandbytes_available() ``` (#38528)
* bnb import log
* bnb import log
* log mesage change
* moved error issue in qunatizer_bnb_4_bit.py
* ruff
* arg added for bnb check
* required changes
---------
Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> | [
{
"path": "src/transformers/quantizers/quantizer_bnb_4bit.py",
"patch": "@@ -72,10 +72,23 @@ def validate_environment(self, *args, **kwargs):\n raise ImportError(\n f\"Using `bitsandbytes` 4-bit quantization requires Accelerate: `pip install 'accelerate>={ACCELERATE_MIN_VERSION}'... | 2025-06-10T10:15:01 |
vercel/next.js | b0d951bccddbd4b3c5828d3e0da590b8b307c5d3 | 87e0c3d6eecee17686f58693a04fa11624bfc6db | Fix nested example setup with create-next-app (#45390)
Noticed in https://github.com/vercel/next.js/pull/45387 we aren't
properly setting up nested examples due to not stripping to the right
level so this ensures we handle that case properly. | [
{
"path": "packages/create-next-app/helpers/examples.ts",
"patch": "@@ -123,7 +123,7 @@ export async function downloadAndExtractExample(root: string, name: string) {\n await tar.x({\n file: tempFile,\n cwd: root,\n- strip: 3,\n+ strip: 2 + name.split('/').length,\n filter: (p) => p.inclu... | 2023-01-29T19:54:28 |
nodejs/node | 17a0cd2bab405bbaaf890aa52043b273d61db3d8 | 92fa0fcdb76e2b6cb0040eede97fe3c167c31897 | Revert "tools,gyp: don't force build actions with multiple outputs"
This reverts commit 5d8373a498a50b1387464391402ef22636439303.
Fixes: https://github.com/nodejs/node/issues/23255
PR-URL: https://github.com/nodejs/node/pull/23257
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Colin Ihrig <cji... | [
{
"path": "tools/gyp/pylib/gyp/generator/make.py",
"patch": "@@ -1758,10 +1758,8 @@ def WriteMakeRule(self, outputs, inputs, actions=None, comment=None,\n self.WriteLn('%s: %s' % (' '.join(outputs), intermediate))\n self.WriteLn('\\t%s' % '@:')\n self.WriteLn('%s: %s' % ('.INTERMEDIATE', i... | 2018-10-04T06:49:24 |
rust-lang/rust | 448b7afb32e4fd55af8c0592227b16fcc5b64308 | b10555674f355aca2bfe974e50a0b9ab48eb1d87 | Fix download of GCC from CI on non-nightly channels | [
{
"path": "src/bootstrap/src/core/download.rs",
"patch": "@@ -852,7 +852,8 @@ download-rustc = false\n t!(fs::create_dir_all(&gcc_cache));\n }\n let base = &self.stage0_metadata.config.artifacts_server;\n- let filename = format!(\"gcc-nightly-{}.tar.xz\", self.build.triple... | 2025-05-10T19:39:08 |
electron/electron | 651dabf47e8a7ccbd8ff9a479c284bb6bac50dcb | af728427282ecd1673df658e817553737106520e | Fix displaying context menu for devtools | [
{
"path": "atom/renderer/lib/init.coffee",
"patch": "@@ -37,9 +37,11 @@ for arg in process.argv\n if location.protocol is 'chrome-devtools:'\n # Override some inspector APIs.\n require path.join(__dirname, 'inspector')\n+ nodeIntegration = 'true'\n else if location.protocol is 'chrome-extension:'\n #... | 2014-11-16T14:34:29 |
huggingface/transformers | 04cdf8324485ae7cf88f447560d76e17ab98d287 | afdb821318e06e670c7238a9059e7e031065e319 | Update some tests for torch 2.7.1 (#38701)
* fix 1
* fix 2
* fix 3
* fix 4
* fp16
* break
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/chameleon/test_modeling_chameleon.py",
"patch": "@@ -463,11 +463,11 @@ def test_model_7b_batched(self):\n 'What constellation is this image showing?The image shows the constellation of Orion.The image shows the constellation of Orion.The image shows the constellat... | 2025-06-10T09:46:52 |
vercel/next.js | 1df93002a340bf22eee98c09c6d66c6dfa15858c | b8b13af109af145fdd2ca0bc01ecf0e2fbb11e5d | Revert "Fix release stats" (#45164)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> | [
{
"path": ".github/actions/next-stats-action/src/constants.js",
"patch": "@@ -1,12 +1,11 @@\n const path = require('path')\n const os = require('os')\n+const fs = require('fs')\n \n const benchTitle = 'Page Load Tests'\n-const workDir = path.join(os.tmpdir(), 'next-stats')\n-const mainRepoName = 'main-repo'... | 2023-01-29T00:15:05 |
rust-lang/rust | 838e742ea49648d63461b41ea330a9a1ed086c02 | b10555674f355aca2bfe974e50a0b9ab48eb1d87 | rustdoc: Fix links in trait impl docs | [
{
"path": "src/librustdoc/html/static/js/main.js",
"patch": "@@ -1179,8 +1179,10 @@ function preLoadCss(cssUrl) {\n \n onEachLazy(document.querySelectorAll(\".toggle > summary:not(.hideme)\"), el => {\n // @ts-expect-error\n+ // Clicking on the summary's contents should not collapse it,\n... | 2025-05-09T18:28:51 |
electron/electron | 0398316192db5bff18fa02a94d4c13635eae18c9 | b428b2eb99493f2cbed4dad4e6e9dc1d9db16575 | views: Fix "visible" not working in menu bar, closes #825 | [
{
"path": "atom/browser/ui/views/menu_delegate.cc",
"patch": "@@ -90,6 +90,10 @@ bool MenuDelegate::IsCommandEnabled(int id) const {\n return delegate()->IsCommandEnabled(id);\n }\n \n+bool MenuDelegate::IsCommandVisible(int id) const {\n+ return delegate()->IsCommandVisible(id);\n+}\n+\n bool MenuDelega... | 2014-11-16T08:01:33 |
huggingface/transformers | afdb821318e06e670c7238a9059e7e031065e319 | 81799d8b556b3c810ed314187674bc439c0582b4 | Fix smart resize (#38706)
* Fix smart_resize bug
* Add smart_resize test
* Remove unnecessary error checking
* Fix smart_resize tests
---------
Co-authored-by: Richard Dong <rdong@rdong.c.groq-143208.internal> | [
{
"path": "src/transformers/models/emu3/image_processing_emu3.py",
"patch": "@@ -81,18 +81,16 @@ def smart_resize(\n 3. The aspect ratio of the image is maintained as closely as possible.\n \n \"\"\"\n- if height < factor or width < factor:\n- raise ValueError(f\"height:{height} or width:{... | 2025-06-10T08:59:22 |
nodejs/node | 92fa0fcdb76e2b6cb0040eede97fe3c167c31897 | c0c58d5660aeea93c492877894f66dd55771be2e | src: name EmbededderGraph edges and use class names for nodes
This patch:
- Refactors the `MemoryRetainer` API so that the impementer no longer
calls `TrackThis()` that sets the size of node on the top of the
stack, which may be hard to understand. Instead now they implements
`SelfSize()` to provide their self ... | [
{
"path": "lib/internal/test/heap.js",
"patch": "@@ -36,8 +36,8 @@ function createJSHeapDump() {\n const fromNode = nodes[fromNodeIndex];\n const edge = {\n type,\n- toNode,\n- fromNode,\n+ to: toNode,\n+ from: fromNode,\n name: typeof name_or_index === 'string' ? nam... | 2018-09-23T21:52:09 |
vercel/next.js | b8b13af109af145fdd2ca0bc01ecf0e2fbb11e5d | 3421b482c2ff5934b751d292ce4efc2ed4b89c5f | Refactor TS plugin code structure (#45375)
This PR mainly refactors the TS plugin structure and moves things over the typescript/ folder under server/. I created a rules/ folder to separate different kinds of insights, current it covers:
- Intellisense for entries on the server layer:
- Hide autocompletions for disa... | [
{
"path": "packages/next/src/server/next-typescript.ts",
"patch": "@@ -1,888 +1 @@\n-/**\n- * This is a TypeScript language service plugin for Next.js app directory,\n- * it provides the following features:\n- *\n- * - Warns about disallowed React APIs in server components.\n- * - Warns about disallowed lay... | 2023-01-28T22:44:42 |
huggingface/transformers | 81799d8b556b3c810ed314187674bc439c0582b4 | e55983e2b90e10f5f82d5ebbd5a6735f002dbebb | Standardize ByT5 model card format (#38699)
* Standardize ByT5 model card format
* Apply review feedback from @stevhliu
* Fix Notes formatting and wording
* Fix `aya_vision` test (#38674)
* fix 1: load_in_4bit=True,
* fix 2: decorateor
* fixfix 2: breakpoint
* fixfix 3: update
* fixfix 4: fast
* fixfix 5: con... | [
{
"path": "docs/source/en/model_doc/byt5.md",
"patch": "@@ -13,150 +13,128 @@ specific language governing permissions and limitations under the License.\n rendered properly in your Markdown viewer.\n \n -->\n-\n-# ByT5\n-\n-<div class=\"flex flex-wrap space-x-1\">\n-<img alt=\"PyTorch\" src=\"https://img.sh... | 2025-06-09T22:02:50 |
electron/electron | c99b20206cda0b32cd2d935ee5119d7874c79744 | d97155d7b0a81dfa7059e97c51b20c3a6ff42083 | Misc copy fixups | [
{
"path": "docs/development/build-instructions-windows.md",
"patch": "@@ -69,7 +69,7 @@ the `VS2012 Command Prompt` console to execute the build scripts.\n \n ### Assertion failed: ((handle))->activecnt >= 0\n \n-When building under cygwin, you could see `bootstrap.py` failed with following\n+If building un... | 2014-11-15T03:15:11 |
nodejs/node | 1f7b6a6cc916a8bab942e579ed930e9e2d66c4e0 | a5c27091cc4db6b2d9cc49de3ef9ed06dddcd5f2 | test: terminate cluster worker in infinite loop
Verify that worker.process.kill() can terminate a cluster worker
stuck in an infinite loop.
PR-URL: https://github.com/nodejs/node/pull/23165
Fixes: https://github.com/nodejs/node/issues/22703
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Sakthipriyan Vai... | [
{
"path": "test/parallel/test-cluster-kill-infinite-loop.js",
"patch": "@@ -0,0 +1,21 @@\n+'use strict';\n+const common = require('../common');\n+const cluster = require('cluster');\n+const assert = require('assert');\n+\n+if (cluster.isMaster) {\n+ const worker = cluster.fork();\n+\n+ worker.on('online',... | 2018-10-04T00:58:40 |
golang/go | 287c5e8066396e953254d7980a80ec082edf11bd | 743f03eeb0bdcb596b46fae51d23c0fcf0db0474 | cmd/compile: fix stack growing algorithm
The current stack growing implementation looks not right.
Specially, the line runtime/stack.go#L1068 never gets executed,
which causes many unnecessary copystack calls.
This PR is trying to correct the implementation.
As I'm not familiar with the code, the fix is just a guess.... | [
{
"path": "src/runtime/stack.go",
"patch": "@@ -1064,7 +1064,9 @@ func newstack() {\n \t// recheck the bounds on return.)\n \tif f := findfunc(gp.sched.pc); f.valid() {\n \t\tmax := uintptr(funcMaxSPDelta(f))\n-\t\tfor newsize-gp.sched.sp < max+_StackGuard {\n+\t\tneeded := max + _StackGuard\n+\t\tused := g... | 2021-07-02T08:01:20 |
vercel/next.js | aa0fb570933e885f2ddac3421f871d7a8849ac35 | 9a5695c72b9a3aa334c161d4aec659d7feebd1f5 | Fix infinite loop caused by error page rendering (vercel/turbo#3525)
The new error paths introduced in vercel/turbo#3448 both write their outputs to
`.next/server/pages/`, which conflicts with:
- The main pages source
- Each other
The infinite loop is very fun:
1. We need a `NodeJsPoolVc` to render pages
2. To... | [
{
"path": "packages/next-swc/crates/next-core/src/page_source.rs",
"patch": "@@ -241,7 +241,7 @@ pub async fn create_page_source(\n server_runtime_entries,\n fallback_page,\n server_root,\n- output_path,\n+ output_path.join(\"force_not_found\"),\n SpecificityVc:... | 2023-01-28T20:04:07 |
huggingface/transformers | e55983e2b90e10f5f82d5ebbd5a6735f002dbebb | b61c47f5a555219bc6e29789263ea39d754109f4 | Fix `aya_vision` test (#38674)
* fix 1: load_in_4bit=True,
* fix 2: decorateor
* fixfix 2: breakpoint
* fixfix 3: update
* fixfix 4: fast
* fixfix 5: cond
* fixfix 5: cond
* fixfix 6: cuda 8
* ruff
* breakpoint
* dtype
* a10
* a10
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/aya_vision/test_modeling_aya_vision.py",
"patch": "@@ -27,6 +27,7 @@\n from transformers.testing_utils import (\n Expectations,\n cleanup,\n+ get_device_properties,\n require_deterministic_for_xpu,\n require_read_token,\n require_torch,\n@@ -330,19 +331,39 @@ d... | 2025-06-09T20:18:52 |
electron/electron | 7943f7f7eb5bfebfbaf55bc03c269fba347f7968 | 869e086a4186c7f8ac770eb3ef3a2f8eeb7b2ff9 | linux: Link necessary libraries
This fixes linking problem on some systems, see #500. | [
{
"path": "atom.gyp",
"patch": "@@ -587,10 +587,10 @@\n '-rpath \\$$ORIGIN',\n # Make native module dynamic loading work.\n '-rdynamic',\n- '<!@(pkg-config --libs-only-L --libs-only-other dbus-1)',\n+ '<!@(pkg-config --libs-only-L --libs-on... | 2014-11-15T02:15:25 |
nodejs/node | a5c27091cc4db6b2d9cc49de3ef9ed06dddcd5f2 | 1fd99b4ac7f73f46017b459d9a8b99fcb37bcf93 | doc: specify cluster worker.kill() caveat
worker.kill() relies on a graceful disconnect, which might not
always be possible. This commit calls this out in the docs, and
specifies worker.process.kill() as a non-graceful alternative.
PR-URL: https://github.com/nodejs/node/pull/23165
Fixes: https://github.com/nodejs/nod... | [
{
"path": "doc/api/cluster.md",
"patch": "@@ -394,6 +394,11 @@ This function will kill the worker. In the master, it does this by disconnecting\n the `worker.process`, and once disconnected, killing with `signal`. In the\n worker, it does it by disconnecting the channel, and then exiting with code `0`.\n \n... | 2018-09-29T16:22:15 |
golang/go | 6125d0c4265067cdb67af1340bf689975dd128f4 | 03761ede028d811dd7d7cf8a2690d4bfa2771d85 | cmd/dist: correct comment: SysProcAttri -> SysProcAttr
Fixes #46982
Change-Id: I07a18507b7aad828714b187f296fa7268f32b1c4
GitHub-Last-Rev: f498febffdae0bc93ae1794d1ee62b2ef3ecf1bb
GitHub-Pull-Request: golang/go#46983
Reviewed-on: https://go-review.googlesource.com/c/go/+/331869
Reviewed-by: Tobias Klauser <tobias.klau... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -781,7 +781,7 @@ func (t *tester) registerTests() {\n \t\t\tt.registerTest(\"testasan\", \"../misc/cgo/testasan\", \"go\", \"run\", \".\")\n \t\t}\n \t\tif goos == \"linux\" && goarch != \"ppc64le\" {\n-\t\t\t// because syscall.SysProcAttri struct used in misc/... | 2021-07-02T05:41:10 |
huggingface/transformers | b61c47f5a555219bc6e29789263ea39d754109f4 | e594e75f1bc8a01349284e0d86b49b5278f127ce | Created model card for xlm-roberta-xl (#38597)
* Created model card for xlm-roberta-xl
* Update XLM-RoBERTa-XL model card with improved descriptions and usage examples
* Minor option labeling fix
* Added MaskedLM version of XLM RoBERTa XL to model card
* Added quantization example for XLM RoBERTa XL model card
* ... | [
{
"path": "docs/source/en/model_doc/xlm-roberta-xl.md",
"patch": "@@ -14,37 +14,113 @@ rendered properly in your Markdown viewer.\n \n -->\n \n+<div style=\"float: right;\">\n+ <div class=\"flex flex-wrap space-x-1\">\n+ <img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=... | 2025-06-09T20:00:38 |
vercel/next.js | b46885570f619b57657f9cd4dd4e44cc867eeaad | c54880b87c4e50391a9dcfaf722554316878230b | Fix infinite loop caused by error page rendering (vercel/turbo#3525)
The new error paths introduced in vercel/turbo#3448 both write their outputs to
`.next/server/pages/`, which conflicts with:
- The main pages source
- Each other
The infinite loop is very fun:
1. We need a `NodeJsPoolVc` to render pages
2. To... | [
{
"path": "crates/next-core/src/page_source.rs",
"patch": "@@ -241,7 +241,7 @@ pub async fn create_page_source(\n server_runtime_entries,\n fallback_page,\n server_root,\n- output_path,\n+ output_path.join(\"force_not_found\"),\n SpecificityVc::exact(),\n ... | 2023-01-28T20:04:07 |
nodejs/node | 1fd99b4ac7f73f46017b459d9a8b99fcb37bcf93 | f01adb54542f49af1dc64b36bb9aae17846f6400 | src: clean up zlib write code
Split the existing `Write()` method into one that takes care
of translating the arguments from JS to C++, and a non-static
method for the actual write operations, as well as some minor
stylistic drive-by fixes.
PR-URL: https://github.com/nodejs/node/pull/23183
Reviewed-By: James M Snell ... | [
{
"path": "src/node_zlib.cc",
"patch": "@@ -138,24 +138,15 @@ class ZCtx : public AsyncWrap, public ThreadPoolWork {\n // write(flush, in, in_off, in_len, out, out_off, out_len)\n template <bool async>\n static void Write(const FunctionCallbackInfo<Value>& args) {\n+ Environment* env = Environment:... | 2018-09-30T17:41:57 |
electron/electron | 02b2459db6ce6a311a9e30a8bf3d914a25a80246 | 1ade8dcee7ee35ce1ba31f127e33780bbfbcb178 | Add <webview>.getId, fixes #818 | [
{
"path": "atom/renderer/lib/web-view.coffee",
"patch": "@@ -556,11 +556,12 @@ registerWebViewElement = ->\n \"isCrashed\"\n \"setUserAgent\"\n \"executeJavaScript\"\n- \"insertCSS\",\n- \"openDevTools\",\n- \"closeDevTools\",\n- \"isDevToolsOpened\",\n+ \"insertCSS\"\n+ \"open... | 2014-11-14T08:34:14 |
huggingface/transformers | b9faf2f93085e3cf2c65184a69d1d9e502f95786 | 11dca07a1090fa0e2d4a1eecb0ec6e3a37d6b390 | Fix TypeError: 'NoneType' object is not iterable for esm (#38667) (#38668)
Add post_init() calls to EsmForMaskedLM, EsmForTokenClassification and EsmForSequenceClassification. | [
{
"path": "src/transformers/models/esm/modeling_esm.py",
"patch": "@@ -1023,6 +1023,8 @@ def __init__(self, config):\n \n self.init_weights()\n \n+ self.post_init()\n+\n def get_output_embeddings(self):\n return self.lm_head.decoder\n \n@@ -1127,6 +1129,8 @@ def __init__(self, con... | 2025-06-09T15:23:20 |
golang/go | 838079beef0f4bfd1dfc3077ed469fced5cb32ae | 9ba294e15bf09636ce3069ad577d8411c9730504 | [dev.typeparams] cmd/internal/dwarf: remove putInlinedFunc's callersym param
This parameter is only used for debugging, and all of putInlinedFunc's
callers were actually passing the callee symbol instead.
Change-Id: I964825a514cc42a1b0bcbce4ef11a1a47084d882
Reviewed-on: https://go-review.googlesource.com/c/go/+/33237... | [
{
"path": "src/cmd/internal/dwarf/dwarf.go",
"patch": "@@ -1266,7 +1266,7 @@ func PutAbstractFunc(ctxt Context, s *FnState) error {\n // its corresponding 'abstract' DIE (containing location-independent\n // attributes such as name, type, etc). Inlined subroutine DIEs can\n // have other inlined subroutine ... | 2021-07-01T18:44:43 |
vercel/next.js | 83d6a437f249e277a38c0d4f24f14c7f40a68f03 | 27017925161c2abd63764c3615266e9a2bacd79f | Add shared mutable type in router-reducer (#45369)
<!--
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 that you're making:
-->
Preparation ... | [
{
"path": "packages/next/src/client/components/router-reducer/router-reducer-types.ts",
"patch": "@@ -8,6 +8,14 @@ export const ACTION_RESTORE = 'restore'\n export const ACTION_SERVER_PATCH = 'server-patch'\n export const ACTION_PREFETCH = 'prefetch'\n \n+export interface Mutable {\n+ mpaNavigation?: boole... | 2023-01-28T19:36:14 |
rust-lang/rust | a82a32980ebee5531abaa4bf1eb8643fdf0da71b | eb6749c02efff855b4b906f4227577d36c514ec4 | fix broken links | [
{
"path": "src/doc/rustc-dev-guide/src/ty-fold.md",
"patch": "@@ -7,17 +7,17 @@ Binders can wrap an arbitrary Rust type `T`, not just a `Ty`.\n So, how do we implement the `instantiate` methods on the `Early/Binder` types?\n \n The answer is a couple of traits:\n-[`TypeFoldable`](https://doc.rust-lang.org/n... | 2025-05-10T10:43:59 |
huggingface/transformers | 11dca07a1090fa0e2d4a1eecb0ec6e3a37d6b390 | b31d462c61b19cd00a08d1cc85cecfe5f59cdde3 | Fix retrieve function signature and remove faiss requirement (#38624)
Signed-off-by: Fiona Waters <fiwaters6@gmail.com> | [
{
"path": "src/transformers/models/rag/retrieval_rag.py",
"patch": "@@ -104,6 +104,7 @@ class LegacyIndex(Index):\n PASSAGE_FILENAME = \"psgs_w100.tsv.pkl\"\n \n def __init__(self, vector_size, index_path):\n+ requires_backends(self, [\"faiss\"])\n self.index_id_to_db_id = []\n ... | 2025-06-09T15:17:33 |
nodejs/node | 9800fd7aaa7226fff3f21edd7f77f563b9a69753 | 51f0060765a400c77553c29936baaf044b85c29b | build,deps: refactor and fix v8.gyp
* Make inspector.gypi and v8_external_snapshot.gypi includible targets.
* Make `v8_dump_build_config` an action
* Better separate `js2c` and `natives_blob`
* process action outputs as sources
* trigger v8.gyp:postmortem-metadata from v8.gyp
PR-URL: https://github.com/nodejs/node/pu... | [
{
"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.2',\n+ 'v8_embedder_string': '-node.3',\n \n # Enable disassembler for `--print-code... | 2018-09-30T17:39:54 |
golang/go | ef8ae82b37657ab788f490bd757ad1b5592b952f | 770899f7e11e32ee8500fc033a0aad369a6a5f7b | cmd/compile: fix bug in dwarf-gen var location generation
This patch fixes a bug in the SSA back end's DWARF generation code
that determines variable locations / lifetimes.
The code in question was written to handle sequences of initial
pseudo-ops (zero width instructions such as OpPhi, OpArg, etc) in a
basic block, ... | [
{
"path": "src/cmd/compile/internal/ssa/debug.go",
"patch": "@@ -1115,8 +1115,14 @@ func (state *debugState) buildLocationLists(blockLocs []*BlockDebug) {\n \t\t\tcontinue\n \t\t}\n \n+\t\tmustBeFirst := func(v *Value) bool {\n+\t\t\treturn v.Op == OpPhi || v.Op.isLoweredGetClosurePtr() ||\n+\t\t\t\tv.Op ==... | 2021-07-01T15:22:02 |
vercel/next.js | 4972f2308eefcf896a8c1b3d77c82b67be1875f6 | 67468f98c41b4fe603127ec04c51a2333606b079 | Add support for --experimental-app-only (#45352)
<!--
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 that you're making:
-->
Allows you to ... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -260,7 +260,8 @@ export default async function build(\n reactProductionProfiling = false,\n debugOutput = false,\n runLint = true,\n- noMangling = false\n+ noMangling = false,\n+ appDirOnly = false\n ): Promise<void> {\n try {\n const... | 2023-01-28T18:48:32 |
huggingface/transformers | b31d462c61b19cd00a08d1cc85cecfe5f59cdde3 | 282d6684dc0a611e97dff464aa9fa9e4adaed092 | Fix some models import (#38694)
Fix models import | [
{
"path": "src/transformers/models/__init__.py",
"patch": "@@ -80,6 +80,7 @@\n from .deberta import *\n from .deberta_v2 import *\n from .decision_transformer import *\n+ from .deepseek_v3 import *\n from .deformable_detr import *\n from .deit import *\n from .deprecated import *\... | 2025-06-09T15:09:24 |
electron/electron | e1e1c173feb8f754f804daf7005440bb3f8f812f | 5ee805e451d083d96f44f7a7c4811e546973db66 | win: Fix default path for native dialogs | [
{
"path": "atom/browser/ui/file_dialog_win.cc",
"patch": "@@ -105,7 +105,7 @@ class FileDialog {\n NULL,\n IID_PPV_ARGS(&folder_item));\n if (SUCCEEDED(hr))\n- GetPtr()->SetDefaultFolder(folder_item);\n+ ... | 2014-11-13T19:33:25 |
nodejs/node | 51f0060765a400c77553c29936baaf044b85c29b | 69a422bba7810a6f34b2783bbd8ed5b7da86d008 | src: use default parameters for `UVException()`
PR-URL: https://github.com/nodejs/node/pull/23176
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <... | [
{
"path": "src/exceptions.cc",
"patch": "@@ -84,15 +84,6 @@ static Local<String> StringFromPath(Isolate* isolate, const char* path) {\n }\n \n \n-Local<Value> UVException(Isolate* isolate,\n- int errorno,\n- const char* syscall,\n- cons... | 2018-09-30T16:18:14 |
golang/go | 9ba294e15bf09636ce3069ad577d8411c9730504 | 0e0b80cb56ba3bd2128417d9368b4e74b1e45d95 | [dev.typeparams] cmd/compile: fix getDictionarySym for methods references, write out sub-dictionaries
For method references (only), selectorExpr() now computes n.Selection,
which is the generic method that is selected. This allows us to compute
as needed the proper sub-dictionary for method reference. Also cleans up
s... | [
{
"path": "src/cmd/compile/internal/noder/expr.go",
"patch": "@@ -206,6 +206,30 @@ func (g *irgen) selectorExpr(pos src.XPos, typ types2.Type, expr *syntax.Selecto\n \t\t// only be fully transformed once it has an instantiated type.\n \t\tn := ir.NewSelectorExpr(pos, ir.OXDOT, x, typecheck.Lookup(expr.Sel.V... | 2021-06-30T22:38:56 |
vercel/next.js | 67468f98c41b4fe603127ec04c51a2333606b079 | b4c80c92cb9fee17af2d53722f1458235f93a1e4 | Add support for tsconfig 'nodenext' | 'node16' (#44177)
## ESM: support module option for tsconfig.json
- fixes #37525
- fixes #41961
With [TypeScript 4.7 providing ECMAScript Module Support](https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-js), we can now set t... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -882,6 +882,9 @@ export default async function getBaseWebpackConfig(\n extensions: isNodeServer\n ? ['.js', '.mjs', '.tsx', '.ts', '.jsx', '.json', '.wasm']\n : ['.mjs', '.js', '.tsx', '.ts', '.jsx', '.json', '.wasm'],\n+ ... | 2023-01-28T16:17:40 |
huggingface/transformers | 282d6684dc0a611e97dff464aa9fa9e4adaed092 | 19224c3642705c5b6988c9f5f4251f83323d05ae | Fix attention mask expansion when converting to executorch (#38637) | [
{
"path": "src/transformers/modeling_attn_mask_utils.py",
"patch": "@@ -193,7 +193,7 @@ def _expand_mask(mask: torch.Tensor, dtype: torch.dtype, tgt_len: Optional[int]\n \n expanded_mask = mask[:, None, None, :].expand(bsz, 1, tgt_len, src_len).to(dtype)\n \n- inverted_mask = 1.0 - expanded_m... | 2025-06-09T15:00:55 |
electron/electron | e9636bb87bcc2b31428d55da4237b4c2dfce2a1d | 246a14593042df9b86853530c457112b65670de4 | Fix CPP formatting | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -237,7 +237,7 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents,\n }\n #endif\n \n- if(has_frame_) {\n+ if (has_frame_) {\n window_->set_frame_type(views::Widget::FrameType::FRAME_TYPE_FORCE_NATIVE);\n window_... | 2014-11-12T06:11:25 |
nodejs/node | f2172012f30e7de48cea54b4dbbbbaa1195d9a02 | c3aaaa70b8203cb1c1a52cc72c6fa005dcce9c44 | doc: fix confusing language about microtask queue
PR-URL: https://github.com/nodejs/node/pull/23197
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridge... | [
{
"path": "doc/api/globals.md",
"patch": "@@ -123,8 +123,8 @@ The `queueMicrotask()` method queues a microtask to invoke `callback`. If\n be emitted.\n \n In general, `queueMicrotask` is the idiomatic choice over `process.nextTick()`.\n-`process.nextTick()` will always run before microtasks, and so unexpect... | 2018-09-25T16:46:18 |
golang/go | 835d86a17ebf32a3cb081f66119c74363dbd8825 | eb437ba92cbb08a86ae064cbd7376c4a8e80485b | cmd/go: use path.Dir instead of filepath.Dir for package paths in 'go mod vendor'
copyMetadata walk-up to parent directory until the pkg become modPath.
But pkg should be slash-separated paths. It have to use path.Dir instead of
filepath.Dir.
Fixes #46867
Change-Id: I44cf1429fe52379a7415b94cc30ae3275cc430e8
Reviewed... | [
{
"path": "src/cmd/go/internal/modcmd/vendor.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"io\"\n \t\"io/fs\"\n \t\"os\"\n+\t\"path\"\n \t\"path/filepath\"\n \t\"sort\"\n \t\"strings\"\n@@ -299,7 +300,7 @@ func copyMetadata(modPath, pkg, dst, src string, copiedFiles map[string]bool) {\n \t\tif modPath == ... | 2021-06-22T16:02:33 |
vercel/next.js | b4c80c92cb9fee17af2d53722f1458235f93a1e4 | b8a1892e0039ca308d371df7b9cde1698998930d | Move reducers to separate file per action (#45336)
<!--
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 that you're making:
-->
More cleanin... | [
{
"path": "packages/next/src/client/components/router-reducer/reducers/navigate-reducer.ts",
"patch": "@@ -0,0 +1,321 @@\n+import { CacheStates } from '../../../../shared/lib/app-router-context'\n+import type { FlightSegmentPath } from '../../../../server/app-render'\n+import { fetchServerResponse } from '.... | 2023-01-28T13:58:44 |
huggingface/transformers | 19224c3642705c5b6988c9f5f4251f83323d05ae | 237ff80387ef453b1bb341c0b5d6cbcb5e60758d | fix: "check out" as verb (#38678)
"check out" as verb | [
{
"path": "docs/source/en/internal/import_utils.md",
"patch": "@@ -38,7 +38,7 @@ However, no method can be called on that object:\n ```python\n >>> DetrImageProcessorFast.from_pretrained()\n ImportError: \n-DetrImageProcessorFast requires the Torchvision library but it was not found in your environment. Che... | 2025-06-09T14:07:31 |
nodejs/node | c3aaaa70b8203cb1c1a52cc72c6fa005dcce9c44 | ac54469cc6ba1cbaf84d526d10b0394436af79b0 | src: deprecate `UVException()` without `Isolate*`
This method, like all other methods which use `Isolate::GetCurrent()`,
should be avoided.
This was probably overlooked in 75adde07f9a2de7f38a.
PR-URL: https://github.com/nodejs/node/pull/23175
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Colin Ihrig <cj... | [
{
"path": "src/node.h",
"patch": "@@ -139,7 +139,8 @@ NODE_DEPRECATED(\"Use ErrnoException(isolate, ...)\",\n path);\n })\n \n-inline v8::Local<v8::Value> UVException(int errorno,\n+NODE_DEPRECATED(\"Use UVException(isolate, ...)\",\n+ inline v8::Local<v8::Value> UVExc... | 2018-09-30T16:08:30 |
golang/go | 1cd505c353e4656ba28fd8de8708e8c8e6c21cbf | 706c580ee1db800353752629882209ef6509a0b4 | [dev.typeparams] cmd/compile/internal/types2: "comparable" must not be visible before Go 1.18
While at it, clean up the setup of comparable in universe.go.
Fixes #46090
Change-Id: I9655b3e137a03763d677d9a2a730c5570ccff6dc
Reviewed-on: https://go-review.googlesource.com/c/go/+/331517
Trust: Robert Griesemer <gri@gola... | [
{
"path": "src/cmd/compile/internal/types2/testdata/fixedbugs/issue46090.go2",
"patch": "@@ -0,0 +1,9 @@\n+// Copyright 2020 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+// The predeclared type comparabl... | 2021-06-29T02:41:29 |
vercel/next.js | b8a1892e0039ca308d371df7b9cde1698998930d | 05e51ac14de0b6b469c507357bc2048a374d6fad | Enable file nesting for unit test files in vscode (#45329)
<!--
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 that you're making:
-->
Adds... | [
{
"path": ".vscode/settings.json",
"patch": "@@ -50,5 +50,12 @@\n ],\n \n // Disable TypeScript surveys.\n- \"typescript.surveys.enabled\": false\n+ \"typescript.surveys.enabled\": false,\n+\n+ // Enable file nesting for unit test files.\n+ \"explorer.fileNesting.enabled\": true,\n+ \"explorer.file... | 2023-01-28T13:56:56 |
huggingface/transformers | 237ff80387ef453b1bb341c0b5d6cbcb5e60758d | d7b87b415a5dd4a3152051e1a0abd098a02c5bfa | Fixed modeling_auto.py MODEL_FOR_MASK_GENERATION_MAPPING_NAMES variable (#38664)
fix: grouped the two MODEL_FOR_MASK_GENERATION_MAPPING_NAMES variables | [
{
"path": "src/transformers/models/auto/modeling_auto.py",
"patch": "@@ -1529,11 +1529,6 @@\n MODEL_FOR_MASK_GENERATION_MAPPING_NAMES = OrderedDict(\n [\n (\"sam\", \"SamModel\"),\n- ]\n-)\n-\n-MODEL_FOR_MASK_GENERATION_MAPPING_NAMES = OrderedDict(\n- [\n (\"sam_hq\", \"SamHQModel\... | 2025-06-09T13:40:46 |
electron/electron | fbd74c0e2debbddd667709e029dc29afe7a66cd1 | 993c52dcd56c1d5a2a806ed4ea166e11de366c45 | Various fixes of #801 | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -289,11 +289,10 @@ bool WebContents::IsAlive() const {\n void WebContents::LoadURL(const GURL& url, const mate::Dictionary& options) {\n content::NavigationController::LoadURLParams params(url);\n \n- base::string16 http_referrer;\n-\n- ... | 2014-11-12T02:28:50 |
golang/go | 9d65578b83f0d52f0d2f526212dd3b4ee1a5f031 | 4711bf30e5fec4cf290964785871deba5955c29a | cmd/compile: fix typos in document
Correct "a2Spill" to "a3Spill"
Change-Id: I6ac4c45973dfaeb16d3a90d835589b6af1aefe1d
Reviewed-on: https://go-review.googlesource.com/c/go/+/331850
Trust: fannie zhang <Fannie.Zhang@arm.com>
Reviewed-by: Cherry Mui <cherryyz@google.com> | [
{
"path": "src/cmd/compile/abi-internal.md",
"patch": "@@ -233,7 +233,7 @@ stack frame is laid out in the following sequence:\n r1.x uintptr\n r1.y [2]uintptr\n a1Spill uint8\n- a2Spill uint8\n+ a3Spill uint8\n _ [6]uint8 // alignment padding\n \n In the stack frame, only ... | 2021-06-30T02:51:54 |
huggingface/transformers | d7b87b415a5dd4a3152051e1a0abd098a02c5bfa | 10627c1a0f6877ce6715b9537afe7fafb2a89edd | Fix qwen2-audio chat template audio placeholder insertion (#38640)
* fix qwen2-audio template
Signed-off-by: Isotr0py <2037008807@qq.com>
* add message['type'] back
Signed-off-by: Isotr0py <2037008807@qq.com>
---------
Signed-off-by: Isotr0py <2037008807@qq.com> | [
{
"path": "src/transformers/models/qwen2_audio/processing_qwen2_audio.py",
"patch": "@@ -248,7 +248,7 @@ def default_chat_template(self):\n \"{{ message['content'] }}<|im_end|>\\n\"\n \"{% else %}\"\n \"{% for content in message['content'] %}\"\n- ... | 2025-06-09T09:56:42 |
vercel/next.js | 05e51ac14de0b6b469c507357bc2048a374d6fad | be86fcf6d5d826f5bda192cad0ef846648dee5b1 | Move reducer types into separate file (#45333)
<!--
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 that you're making:
-->
Part of the larg... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -14,14 +14,14 @@ import type {\n } from '../../shared/lib/app-router-context'\n import type { FlightRouterState, FlightData } from '../../server/app-render'\n import type { ErrorComponent } from './error-boundary'\n+import { reduce... | 2023-01-28T10:45:12 |
nodejs/node | df6a1306e8ed9fa50c8aa44bc037d2a34f61bfc8 | 9577946bedbe610bbe16782783ab2fca407425c6 | doc: remove GA tracking
The Google Analytics tracking wasn't wholly uncontroversial and hasn't
been used in practice. Remove it.
PR-URL: https://github.com/nodejs/node/pull/23083
Fixes: https://github.com/nodejs/node/issues/22652
Refs: https://github.com/nodejs/node/pull/6601
Reviewed-By: Richard Lau <riclau@uk.ibm.c... | [
{
"path": "Makefile",
"patch": "@@ -597,11 +597,6 @@ test-v8 test-v8-intl test-v8-benchmarks test-v8-all:\n \t\t\"$ git clone https://github.com/nodejs/node.git\"\n endif\n \n-# Google Analytics ID used for tracking API docs page views, empty\n-# DOCS_ANALYTICS means no tracking scripts will be included in ... | 2018-09-25T14:46:03 |
rust-lang/rust | 4cb9f0309d6e85e6d4bef42321b06ad299e3ef27 | dcecb99176edf2eec51613730937d21cdd5c8f6e | Make the assertion in `Ident::new` debug-only.
This fixes a perf regression introduced in #140252. | [
{
"path": "compiler/rustc_span/src/symbol.rs",
"patch": "@@ -2352,7 +2352,7 @@ impl Ident {\n #[inline]\n /// Constructs a new identifier from a symbol and a span.\n pub fn new(name: Symbol, span: Span) -> Ident {\n- assert_ne!(name, kw::Empty);\n+ debug_assert_ne!(name, kw::Empty)... | 2025-05-09T23:39:04 |
huggingface/transformers | 10627c1a0f6877ce6715b9537afe7fafb2a89edd | ebeec13609b537f9c760292354118c9d1d63f5a0 | Use torch 2.7.1 on daily CI (#38620)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -1,4 +1,4 @@\n-FROM nvidia/cuda:12.1.0-cudnn8-devel-ubuntu22.04\n+FROM nvidia/cuda:12.6.0-cudnn-devel-ubuntu22.04\n LABEL maintainer=\"Hugging Face\"\n \n ARG DEBIAN_FRONTEND=noninteractive\n@@ -9,9 +9,9 @@ SHELL [\"sh\", \"-lc\"]\n # T... | 2025-06-08T12:37:45 |
vercel/next.js | bcd63af2c9ecf909722466f43eccca6fad581325 | 6e73650833102f8385bf62169a5db6f971bfcb2d | Fix fetch stack test on deploy | [
{
"path": "test/e2e/fetch-failures-have-good-stack-traces-in-edge-runtime/fetch-failures-have-good-stack-traces-in-edge-runtime.test.ts",
"patch": "@@ -12,10 +12,12 @@ createNextDescribe(\n 'fetch failures have good stack traces in edge runtime',\n {\n files: __dirname,\n+ // don't have access to... | 2023-01-28T02:23:27 |
nodejs/node | 9577946bedbe610bbe16782783ab2fca407425c6 | cc31d8b2d4d439955ba25dfdc83c8445ce0c850d | test: add process.stdin.end() TTY regression test
PR-URL: https://github.com/nodejs/node/pull/23051
Fixes: https://github.com/nodejs/node/issues/22814
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Lu... | [
{
"path": "test/pseudo-tty/test-tty-stdin-call-end.js",
"patch": "@@ -0,0 +1,8 @@\n+'use strict';\n+\n+require('../common');\n+\n+// This tests verifies that process.stdin.end() does not\n+// crash the process with ENOTCONN\n+\n+process.stdin.end();",
"additions": 8,
"deletions": 0,
"language": ... | 2018-09-17T11:21:47 |
electron/electron | 747698fe9b5589222e9beeea04bcb25c6d089b3d | e6830e9ac84ff669a1d5ba9b17bd872c77ca8353 | Fix code style formatting
- Fix code style formatting to be <= 80 lines
- Add default parameter for urlOptions to loadUrl, reload and
reloadIgnoringCache functions to be compatible with old API. | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -289,10 +289,11 @@ bool WebContents::IsAlive() const {\n void WebContents::LoadURL(const GURL& url, const mate::Dictionary& options) {\n content::NavigationController::LoadURLParams params(url);\n \n- base::string16 http_referrer_;\n+ b... | 2014-11-11T18:33:15 |
huggingface/transformers | ebeec13609b537f9c760292354118c9d1d63f5a0 | 3fb7e7bc012f4ae4b2271780660d01ab035871cb | Fix `InternVL` integration test (#38612)
* fix
* fix
* fix OOM
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/internvl/test_modeling_internvl.py",
"patch": "@@ -284,6 +284,7 @@ class InternVLQwen2IntegrationTest(unittest.TestCase):\n def setUp(self):\n self.small_model_checkpoint = \"OpenGVLab/InternVL3-1B-hf\"\n self.medium_model_checkpoint = \"OpenGVLab/InternVL3-2B-hf\... | 2025-06-07T06:30:47 |
golang/go | ed56ea73e8aa60269bbb3d33af9e7614e6b3babf | c080d0323bce56e25622a51dffecf756758c95a1 | path/filepath: deflake TestEvalSymlinksAboveRoot on darwin
On darwin, under load, it appears that the system occasionally
deletes the temp dir mid-test. Don't fail the test when that happens.
It would be nice to fix this in a deeper way.
See golang.org/cl/332009 for some discussion.
In the meantime, this will at lea... | [
{
"path": "src/path/filepath/path_test.go",
"patch": "@@ -1469,11 +1469,16 @@ func TestEvalSymlinksAboveRoot(t *testing.T) {\n \t// Try different numbers of \"..\".\n \tfor _, i := range []int{c, c + 1, c + 2} {\n \t\tcheck := strings.Join([]string{evalTmpDir, strings.Join(dd[:i], string(os.PathSeparator)),... | 2021-06-30T16:44:30 |
vercel/next.js | 6bcb06c19dc33052a48436c620a646c7f6a6d708 | 23353771d752dc72768626f7ebdd52112168819f | Limit the static paths worker number during development (#45344)
As per my testing, this saves about 150~210 MB memory for the dev server
as I have an 8-core CPU.
## Bug
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see
[`contributi... | [
{
"path": "packages/next/src/server/dev/next-dev-server.ts",
"patch": "@@ -126,7 +126,9 @@ export default class DevServer extends Server {\n require.resolve('./static-paths-worker'),\n {\n maxRetries: 1,\n- numWorkers: this.nextConfig.experimental.cpus,\n+ // For dev server... | 2023-01-28T01:28:41 |
rust-lang/rust | 2c5f64d55aef4a2e64350e73243ee5a92ec3a2ea | 10980be12eb166a9f87f2ca241d78cf6d4f97bd7 | RELEASES.md: fix unbalanced and unneeded `}` | [
{
"path": "RELEASES.md",
"patch": "@@ -6,7 +6,7 @@ Version 1.87.0 (2025-05-15)\n Language\n --------\n - [Stabilize `asm_goto` feature](https://github.com/rust-lang/rust/pull/133870)\n-- [Allow parsing open beginning ranges (`..EXPR`) after unary operators `!`, `-`, and `*`}](https://github.com/rust-lang/ru... | 2025-05-09T23:28:26 |
huggingface/transformers | 3fb7e7bc012f4ae4b2271780660d01ab035871cb | dc76eff12b4fc19149edf44b23bc6b8050c5e566 | Skip torchscript tests for 2 models (#38643)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/canine/test_modeling_canine.py",
"patch": "@@ -241,6 +241,14 @@ def setUp(self):\n # we set has_text_modality to False as the config has no vocab_size attribute\n self.config_tester = ConfigTester(self, config_class=CanineConfig, has_text_modality=False, hidden_size=3... | 2025-06-06T18:17:37 |
nodejs/node | e8121d52db76393f428cab6214cc9ce91d09d99d | 2f36cb41251719b0d53940d386ab15fe016c58d5 | http2: set nghttp2_option_set_no_closed_streams
PR-URL: https://github.com/nodejs/node/pull/23134
Fixes: https://github.com/nodejs/node/issues/23116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_http2.cc",
"patch": "@@ -98,6 +98,10 @@ Http2Scope::~Http2Scope() {\n Http2Options::Http2Options(Environment* env, nghttp2_session_type type) {\n nghttp2_option_new(&options_);\n \n+ // Make sure closed connections aren't kept around, taking up memory.\n+ // Note that this breaks the... | 2018-09-27T21:28:50 |
electron/electron | e0dae4054ac49046eb6afbb3cd334efcbb9e5305 | 070d26e68e3e6ba69f4bd3b44152ef3b4bf4776f | Fix code style to be <= 80 lines | [
{
"path": "atom/browser/native_window_views.cc",
"patch": "@@ -229,8 +229,10 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents,\n \n #if defined(OS_WIN)\n if (!has_frame_) {\n- // set Window style so that we get a minimize and maximize animation when frameless\n- DWORD frame... | 2014-11-11T18:09:54 |
golang/go | f0206e3df2f134cb1a13402aefbb6caeec4fc126 | 1ff43d1b179eb96a34b9007e10d78e2278643f3f | [dev.typeparams] cmd/compile/internal/types2: move embedding positions from Checker to Interface
This change moves the position information to the place where it
is actually used. It also simplifies getting rid of it after use.
In the process, fixed a latent bug: Before this CL, embedded types
were sorted, but the co... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -82,12 +82,11 @@ type Checker struct {\n \tconf *Config\n \tpkg *Package\n \t*Info\n-\tversion version // accepted language version\n-\tnextID uint64 // unique Id for type parameters (first valid Id... | 2021-06-29T00:21:26 |
vercel/next.js | 23353771d752dc72768626f7ebdd52112168819f | 1404eedf79f91b64d47fdcde3bf89dcf7cb2e6ca | Fix next-server trace including dev server dependencies (#45359)
This ensures we aren't including the `dev-server` dependencies in the
`next-server` tracing.
x-ref:
https://dev.azure.com/nextjs/next.js/_build/results?buildId=46884&view=logs&jobId=14d0eb3f-bc66-5450-3353-28256327ad6c
x-ref:
https://dev.azure.com... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1950,6 +1950,7 @@ export default async function build(\n '**/next/dist/compiled/webpack/(bundle4|bundle5).js',\n '**/node_modules/webpack5/**/*',\n '**/next/dist/server/lib/squoosh/**/*.wasm',\n+ ... | 2023-01-28T01:25:44 |
rust-lang/rust | 10980be12eb166a9f87f2ca241d78cf6d4f97bd7 | dcecb99176edf2eec51613730937d21cdd5c8f6e | RELEASES.md: fix nonsensical ~ operator
There is no `~` unary prefix operator, and it definitely shouldn't be in the release notes for a feature whose introducing PR doesn't test for it (because it doesn't exist). | [
{
"path": "RELEASES.md",
"patch": "@@ -6,7 +6,7 @@ Version 1.87.0 (2025-05-15)\n Language\n --------\n - [Stabilize `asm_goto` feature](https://github.com/rust-lang/rust/pull/133870)\n-- [Allow parsing open beginning ranges (`..EXPR`) after unary operators `!`, `~`, `-`, and `*`}](https://github.com/rust-la... | 2025-05-09T23:26:22 |
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.