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
9376a5afb22add0dd3c7b300c31b98916f1a9eb4
04547e81637f7f17017f67d2e235639d48551aa1
Add image generation test to app route (#46449) ~~Currently blocked by #46448.~~ Closes https://github.com/vercel/satori/issues/410. ## Bug - [ ] Related issues linked using `fixes #number` - [x] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/ver...
[ { "path": "test/e2e/og-api/app/app/og/route.js", "patch": "@@ -0,0 +1,10 @@\n+import { ImageResponse } from '@vercel/og'\n+\n+export async function GET() {\n+ return new ImageResponse(<div>hi</div>, {\n+ width: 1200,\n+ height: 630,\n+ })\n+}\n+\n+export const runtime = 'edge'", "additions": 10,...
2023-02-27T18:29:09
nodejs/node
2a7432dadec08bbe7063d84f1aa4a6396807305c
2742f3869a540b01ed51ca91075af9215c13bd54
readline: add support for async iteration Co-authored-by: Ivan Filenko <ivan.filenko@protonmail.com> Fixes: https://github.com/nodejs/node/issues/18603 Refs: https://github.com/nodejs/node/pull/18904 PR-URL: https://github.com/nodejs/node/pull/23916 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: G...
[ { "path": "doc/api/readline.md", "patch": "@@ -309,6 +309,43 @@ rl.write(null, { ctrl: true, name: 'u' });\n The `rl.write()` method will write the data to the `readline` `Interface`'s\n `input` *as if it were provided by the user*.\n \n+### rl\\[Symbol.asyncIterator\\]()\n+<!-- YAML\n+added: REPLACEME\n+--...
2018-10-27T00:53:04
huggingface/transformers
4600c27c4f3ba6afd394da78045f0553e18ef934
c392d47c9b40a9866663ea3bed97904cec27658b
Fix: explicit not none check for tensors in flash attention (#39639) fix: explicit not none check for tensors
[ { "path": "src/transformers/modeling_flash_attention_utils.py", "patch": "@@ -398,7 +398,7 @@ 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-25T08:09:14
vercel/next.js
04547e81637f7f17017f67d2e235639d48551aa1
16d7ffdd11f04f459194f19c55d3d452e38021b9
Add theme color media support for metadata (#46502) x-ref: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color Resolves NEXT-525 ## Feature - [x] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [x]...
[ { "path": "packages/next/src/lib/metadata/generate/basic.tsx", "patch": "@@ -26,7 +26,16 @@ export function BasicMetadata({ metadata }: { metadata: ResolvedMetadata }) {\n <Meta name=\"generator\" content={metadata.generator} />\n <Meta name=\"keywords\" content={metadata.keywords?.join(',')} />...
2023-02-27T18:22:05
nodejs/node
566a694bbc67219d8765921c9b7d494b8a18a50c
7ba83e893e44179abf339c042653334ed71a3f19
http2: replace unreachable error with assertion "That particular `emit('error', ...)` is largely defensively coded and should not ever actually happen." Sounds like an assertion rather than an error event. The code in question has no test coverage because it is believed to be unreachable. Fixes: https://github.com/no...
[ { "path": "lib/internal/http2/compat.js", "patch": "@@ -1,5 +1,6 @@\n 'use strict';\n \n+const assert = require('assert');\n const Stream = require('stream');\n const Readable = Stream.Readable;\n const binding = internalBinding('http2');\n@@ -331,15 +332,12 @@ class Http2ServerRequest extends Readable {\n ...
2018-11-16T23:51:07
rust-lang/rust
0830ce036f92673fa54a06cc4eacb47426850d33
c56efaedfa0a28d842365c6c98a11af591eab1a5
assert we never incorrectly canonicalize envs
[ { "path": "compiler/rustc_next_trait_solver/src/canonicalizer.rs", "patch": "@@ -574,6 +574,13 @@ impl<D: SolverDelegate<Interner = I>, I: Interner> TypeFolder<I> for Canonicaliz\n }\n \n fn fold_clauses(&mut self, c: I::Clauses) -> I::Clauses {\n+ match self.canonicalize_mode {\n+ ...
2025-05-26T11:00:29
huggingface/transformers
c392d47c9b40a9866663ea3bed97904cec27658b
565c035a2eb610de9a208ee598c47c75cd21fc70
[attention] fix test for packed padfree masking (#39582) * fix most tests * skip a few more tests * address comments * fix chameleon tests * forgot to uncomment * qwen has its own tests with images, rename it as well
[ { "path": "src/transformers/models/bark/modeling_bark.py", "patch": "@@ -408,69 +408,31 @@ def get_input_embeddings(self):\n def set_input_embeddings(self, new_embeddings):\n self.input_embeds_layer = new_embeddings\n \n- def prepare_inputs_for_generation(self, input_ids, past_key_values=None...
2025-07-25T07:44:52
vercel/next.js
77283326e12521e6b1eb817255dc8466c9faf5d2
819d46a606cecddfe3489c89e32380af75f7f90e
Snapshot issues in next-dev-tests (vercel/turbo#3774) This: * Adds issue snapshot support to next-dev-tests. This will allow us to assert that certain issues are raised in tests that require next-dev. * Extracts common snapshot code into a new crates, `turbopack-test-utils`, which is shared between snapshot tests ...
[ { "path": "packages/next-swc/crates/next-core/src/next_config.rs", "patch": "@@ -8,7 +8,7 @@ use turbo_tasks::{\n CompletionVc, Value,\n };\n use turbo_tasks_env::EnvMapVc;\n-use turbo_tasks_fs::json::parse_json_rope_with_source_context;\n+use turbo_tasks_fs::{json::parse_json_rope_with_source_context, ...
2023-02-27T18:04:06
electron/electron
44660825920ac38994ed4be438acc22f02b17f2b
a8256a62e0db0503cd5db17510687415fb8d2d06
Revert "Update libchromiumcontent, fix #1786" This reverts commit 1314b7c7e56ebf69182b6df6f82534b2a45c3000.
[ { "path": "script/lib/config.py", "patch": "@@ -7,7 +7,7 @@\n \n \n BASE_URL = 'http://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '893b48a10ef1813abdaf8de3540e2e7203475105'\n+LIBCHROMIUMCONTENT_COMMIT = '5ccddd5f3968a7f63eaa888e6a8ba319ea8cd3b7'\n \n PLATFORM = {...
2015-06-04T13:15:29
rust-lang/rust
c6c2fde737e5d6730cc7135afd841a0afed6096e
8917ff602446372e45abed7ab3a58dc879638b1c
Minor macro docs fixes
[ { "path": "library/core/src/macros/mod.rs", "patch": "@@ -1519,8 +1519,9 @@ pub(crate) mod builtin {\n ($file:expr $(,)?) => {{ /* compiler built-in */ }};\n }\n \n- /// the derivative of a given function in the forward mode of differentiation.\n- /// It may only be applied to a function.\...
2025-05-26T19:47:42
nodejs/node
64cabc60e7c3f8d49f00f4ab5e021eec1e8df606
2c2e6ec38d1f033676e462aa5ac0cc24efb7b4ef
build: remove sudo:false from .travis.yml sudo:false is being removed by Travis CI. Travis CI recommends removing the configuration. Fixes: https://github.com/nodejs/node/issues/24510 PR-URL: https://github.com/nodejs/node/pull/24511 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@...
[ { "path": ".travis.yml", "patch": "@@ -1,5 +1,4 @@\n language: cpp\n-sudo: false\n cache: ccache\n os: linux\n matrix:", "additions": 0, "deletions": 1, "language": "YAML" } ]
2018-11-20T06:38:38
huggingface/transformers
565c035a2eb610de9a208ee598c47c75cd21fc70
5a81d7e0b388fb2b86fc1279cdc07d9dc7e84b4c
Add owlv2 fast processor (#39041) * add owlv2 fast image processor * add Owlv2ImageProcessorFast to Owlv2Processor image_processor_class * add Owlv2ImageProcessorFast to Owlv2Processor image_processor_class * change references to owlVit to owlv2 in docstrings for post process methods * change type hints from List,...
[ { "path": "docs/source/en/model_doc/owlv2.md", "patch": "@@ -106,6 +106,13 @@ Usage of OWLv2 is identical to [OWL-ViT](owlvit) with a new, updated image proce\n - post_process_object_detection\n - post_process_image_guided_detection\n \n+## Owlv2ImageProcessorFast\n+\n+[[autodoc]] Owlv2ImageProcesso...
2025-07-25T02:40:11
electron/electron
894cc642766b0514ff49c6570429d8059d1f785a
239ddea0ceaa50daefb6d39088ac52418850530a
Link with gmodule-2.0, fix atom/electron#1809
[ { "path": "brightray/brightray.gyp", "patch": "@@ -1,7 +1,7 @@\n {\n 'variables': {\n # The libraries brightray will be compiled to.\n- 'linux_system_libraries': 'gtk+-2.0 libnotify dbus-1 x11 xrandr xext gconf-2.0'\n+ 'linux_system_libraries': 'gtk+-2.0 libnotify dbus-1 x11 xrandr xext gconf-2....
2015-06-04T06:41:16
vercel/next.js
5ec3b8c45c7ef4c78f10a2f2a7e7e42d7632ae67
3eb2b4ae05978d69c642c9ea13f19d3b7ffca355
Snapshot issues in next-dev-tests (vercel/turbo#3774) This: * Adds issue snapshot support to next-dev-tests. This will allow us to assert that certain issues are raised in tests that require next-dev. * Extracts common snapshot code into a new crates, `turbopack-test-utils`, which is shared between snapshot tests ...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -8,7 +8,7 @@ use turbo_tasks::{\n CompletionVc, Value,\n };\n use turbo_tasks_env::EnvMapVc;\n-use turbo_tasks_fs::json::parse_json_rope_with_source_context;\n+use turbo_tasks_fs::{json::parse_json_rope_with_source_context, FileSystemPathVc};...
2023-02-27T18:04:06
golang/go
19457a58e565ff5b480c3806fe02fbc7ccdf32f0
a295b3cec80b048048bf51a0462764dc337ca6ef
cmd/compile: stenciled conversions might be NOPs A generic conversion might be required for when converting T->interface{}. When stenciled with T=interface{}, then that conversion doesn't need to do anything. Fixes #48276 Change-Id: Ife65d01c99fbd0895cb7eec79df9e93e752b1fa5 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -1177,6 +1177,12 @@ func (subst *subster) node(n ir.Node) ir.Node {\n \n \t\tcase ir.OCONVIFACE:\n \t\t\tx := x.(*ir.ConvExpr)\n+\t\t\tif m.Type().IsEmptyInterface() && m.(*ir.ConvExpr).X.Type().IsEmptyInterface() {\n+\t\t\t\t// Was T->inte...
2021-09-09T15:09:57
rust-lang/rust
6a8663ae2602f3fdaf49a8f116b8a78ea3325f65
9c0bcb514f49cd1e6a30affb2fe4cfca060129a2
Update mdbook to 0.4.51 This fixes a silly regression introduced in 0.4.50 that broke the search hotkey (https://github.com/rust-lang/rust/pull/141457). Changelog: https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-0451
[ { "path": "src/tools/rustbook/Cargo.lock", "patch": "@@ -885,9 +885,9 @@ dependencies = [\n \n [[package]]\n name = \"mdbook\"\n-version = \"0.4.50\"\n+version = \"0.4.51\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f72bc08f096e1fb15cfc382babe218317c2897d2040f967c4db...
2025-05-26T19:01:43
huggingface/transformers
12b612830dc76a3a91d3fe1486b1bcb77b6ac4c4
947a37e8f5bc50bc0e9a77c0d16b038adcb056d0
[efficientloftr] fix model_id in tests (#39621) fix: wrong EfficientLoFTR model id in tests
[ { "path": "tests/models/efficientloftr/test_modeling_efficientloftr.py", "patch": "@@ -273,7 +273,7 @@ def check_attention_output(inputs_dict, config, model_class):\n \n @slow\n def test_model_from_pretrained(self):\n- from_pretrained_ids = [\"stevenbucaille/efficientloftr\"]\n+ from_p...
2025-07-24T09:41:06
nodejs/node
b32c5f04084a20e0db950a0b74b7b69d776e5e3f
771585fcf5b1fe0940ed99d5f0c738ae80194b16
doc: update 11.0.0 changelog with missing commit PR-URL: https://github.com/nodejs/node/pull/24404 Fixes: https://github.com/nodejs/node/issues/23846 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
[ { "path": "doc/changelogs/CHANGELOG_V11.md", "patch": "@@ -498,6 +498,7 @@\n * [[`42bded83e8`](https://github.com/nodejs/node/commit/42bded83e8)] - **(SEMVER-MAJOR)** **fs**: throw ERR\\_INVALID\\_ARG\\_VALUE when buffer being written is empty (AdityaSrivast) [#21262](https://github.com/nodejs/node/pull/212...
2018-11-16T22:33:01
vercel/next.js
16d7ffdd11f04f459194f19c55d3d452e38021b9
69fe4eee39747861bc7bc306ac5ab1a2e5786596
Fix SWC's auto_cjs handling (#46448) Closes #43732. We currently detect if a module is CJS by look through all string tokens to see if any contains `"__esModule"`. That causes `console.log('__esModule')` being detected as CJS accidentally. This PR changes to detect these cases: - `module.exports` - `exports.__esModul...
[ { "path": "packages/next-swc/crates/core/src/auto_cjs/mod.rs", "patch": "@@ -20,7 +20,10 @@ impl Visit for CjsFinder {\n fn visit_member_expr(&mut self, e: &MemberExpr) {\n if let Expr::Ident(obj) = &*e.obj {\n if let MemberProp::Ident(prop) = &e.prop {\n- if &*obj.sym...
2023-02-27T16:56:05
golang/go
a295b3cec80b048048bf51a0462764dc337ca6ef
66f0d35f7145ca8d4e45b04292f44831d6610b3b
test: re-enable AsmCheck tests for types2-based frontends run.go has logic for being able to run tests with various -G flags, but not all test types (in particular, "asmcheck" tests) support configuring non-default -G levels. The intention was that these tests would continue running in the default mode (at the time -G...
[ { "path": "test/run.go", "patch": "@@ -780,11 +780,13 @@ func (t *test) run() {\n \t\t\t}\n \n \t\tdefault:\n-\t\t\t// we don't know how to add -G for this test yet\n-\t\t\tif *verbose {\n-\t\t\t\tfmt.Printf(\"excl\\t%s\\n\", t.goFileName())\n+\t\t\tif t.glevel != CompilerDefaultGLevel {\n+\t\t\t\t// we don...
2021-09-08T21:03:53
huggingface/transformers
ec8a09a5feef4a1c925375f01b6fa02af4512f4b
c5a80dd6c459d7e6b0a8c31182a248de9a6c2d57
Feature/standardize opt model card (#39568) * docs: Standardize OPT model card with enhanced details * Remove incorrect link from OPT model card * Address review feedback on OPT model card * Update opt.md --------- Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com>
[ { "path": "docs/source/en/model_doc/opt.md", "patch": "@@ -1,194 +1,101 @@\n-<!--Copyright 2022 The HuggingFace Team. All rights reserved.\n-\n-Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with\n-the License. You may obtain a copy of the Li...
2025-07-23T17:57:48
nodejs/node
692b09ffbe5155a2bc6cf8826ec57b624d1a0773
67b67ad05025a8beeb99d60a99354bbb50d8d14a
doc: add filehandle.write(string[, position[, encoding]]) Add missing docs for filehandle.write(string[, position[, encoding]]) In the fs.promises API. Fixes: https://github.com/nodejs/node/issues/20406 PR-URL: https://github.com/nodejs/node/pull/23224 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com...
[ { "path": "doc/api/fs.md", "patch": "@@ -3968,6 +3968,37 @@ On Linux, positional writes do not work when the file is opened in append mode.\n The kernel ignores the position argument and always appends the data to\n the end of the file.\n \n+#### filehandle.write(string[, position[, encoding]])\n+<!-- YAML\...
2018-11-13T16:28:07
vercel/next.js
819d46a606cecddfe3489c89e32380af75f7f90e
c568a97ad6d496c92758a9475deb8bda9be77216
Automatic babel-loader followup (vercel/turbo#3944) This: * Addresses feedback from https://github.com/vercel/turbo/pull/3862 * Exempts VirtualAssets from webpack loaders. This addresses a bug where next-hydrate.tsx could not be read. * Adds `ModuleRuleCondition::ResourceIsVirtualAsset` to filter these -------...
[ { "path": "packages/next-swc/crates/next-core/src/babel.rs", "patch": "@@ -3,7 +3,7 @@ use turbo_tasks::{\n primitives::{BoolVc, StringVc},\n Value,\n };\n-use turbo_tasks_fs::FileSystemPathVc;\n+use turbo_tasks_fs::{FileSystemEntryType, FileSystemPathVc};\n use turbopack::{\n module_options::We...
2023-02-27T16:14:24
golang/go
d2a77f1c76dcc960d8548fa47ec29fcb1b2e5833
9e1eea6f8b0d0266c481df5bc3c808defeaa6f44
go/types: handle recursive type parameter constraints This is a port of CL 348090 to go/types. Notably, unlike in types2, declareTypeParams was previously setting the default constraint to the empty interface, not nil, because this was missed in CL 335034 (no changes were made to declareTypeParams). This CL fixes this...
[ { "path": "src/go/types/decl.go", "patch": "@@ -615,7 +615,7 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *ast.TypeSpec, def *Named) {\n \tif tdecl.TypeParams != nil {\n \t\tcheck.openScope(tdecl, \"type parameters\")\n \t\tdefer check.closeScope()\n-\t\tnamed.tparams = check.collectTypeParams(tde...
2021-09-08T22:27:31
huggingface/transformers
c5a80dd6c459d7e6b0a8c31182a248de9a6c2d57
7a4e2e7868272af012a5418660ae97257505264f
🔴 Fix EnCodec internals and integration tests (#39431) * EnCodec fixes and update integration tests. * Apply padding mask when normalize is False. * Update comment of copied function. * Fix padding mask within modeling. * Revert padding function. * Simplify handling of padding_mask. * Address variable codebook ...
[ { "path": "docs/source/en/model_doc/encodec.md", "patch": "@@ -47,7 +47,8 @@ Here is a quick example of how to encode and decode an audio using this model:\n >>> inputs = processor(raw_audio=audio_sample, sampling_rate=processor.sampling_rate, return_tensors=\"pt\")\n \n >>> encoder_outputs = model.encode(i...
2025-07-23T17:39:27
electron/electron
da83ba6c06153827a3e1f7849db3a00d2a168ea6
3c186946eb6d32faf21de513b0b95e224c055e36
Fix dialog.showSaveDialog doesn't show the non-exist file name on Linux.
[ { "path": "atom/browser/ui/file_dialog_gtk.cc", "patch": "@@ -93,12 +93,15 @@ class FileChooserDialog {\n gtk_window_set_modal(GTK_WINDOW(dialog_), TRUE);\n \n if (!default_path.empty()) {\n- if (base::DirectoryExists(default_path))\n+ if (base::DirectoryExists(default_path)) {\n g...
2015-06-04T02:08:16
nodejs/node
67b67ad05025a8beeb99d60a99354bbb50d8d14a
e25e8b6886d390441b9c7c1c6349ac6dcdd3ba25
test: add typeerror test for EC crypto keygen PR-URL: https://github.com/nodejs/node/pull/24400 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/parallel/test-crypto-keygen.js", "patch": "@@ -625,6 +625,22 @@ function convertDERToPEM(label, der) {\n message: 'Invalid ECDH curve name'\n });\n \n+ // Test error type when curve is not a string\n+ for (const namedCurve of [true, {}, [], 123]) {\n+ common.expectsError(() => {\n...
2018-11-16T19:30:05
vercel/next.js
3eb2b4ae05978d69c642c9ea13f19d3b7ffca355
7c2139397936fc498d1937bcb029ab9e808c8cec
Automatic babel-loader followup (vercel/turbo#3944) This: * Addresses feedback from https://github.com/vercel/turbo/pull/3862 * Exempts VirtualAssets from webpack loaders. This addresses a bug where next-hydrate.tsx could not be read. * Adds `ModuleRuleCondition::ResourceIsVirtualAsset` to filter these -------...
[ { "path": "crates/next-core/src/babel.rs", "patch": "@@ -3,7 +3,7 @@ use turbo_tasks::{\n primitives::{BoolVc, StringVc},\n Value,\n };\n-use turbo_tasks_fs::FileSystemPathVc;\n+use turbo_tasks_fs::{FileSystemEntryType, FileSystemPathVc};\n use turbopack::{\n module_options::WebpackLoadersOption...
2023-02-27T16:14:24
golang/go
9e1eea6f8b0d0266c481df5bc3c808defeaa6f44
b86e8dd0f3a27bc9577690523c9feeb25593bec7
go/types: detect constraint type inference cycles This is a port of CL 347300 to go/types. The test was adjusted to match the differing error positioning in go/types: errors are placed on the ast.CallExpr.Fun, rather than the Lparen. Change-Id: I3dee5d7d75bae18817cc1f04ab0d357d3a6a8198 Reviewed-on: https://go-review....
[ { "path": "src/go/types/infer.go", "patch": "@@ -8,6 +8,7 @@\n package types\n \n import (\n+\t\"fmt\"\n \t\"go/token\"\n \t\"strings\"\n )\n@@ -404,6 +405,34 @@ func (check *Checker) inferB(tparams []*TypeParam, targs []Type, report bool) (t\n \t\t}\n \t}\n \n+\t// The data structure of each (provided or i...
2021-09-08T22:16:36
huggingface/transformers
7a4e2e7868272af012a5418660ae97257505264f
596a75f6e99f4e5f8848e7936219ac864378d45a
Fix DAC integration tests and checkpoint conversion. (#39313) * Fix DAC (slow) integration tests. * Fix DAC conversion. * Address comments * Sync with main, uncomment nn.utils.parametrizations.weight_norm. * Update DAC integration tests with expected outputs. * Added info about encoder/decoder error and longer de...
[ { "path": "src/transformers/models/dac/convert_dac_checkpoint.py", "patch": "@@ -16,6 +16,7 @@\n import fnmatch\n import re\n \n+import numpy as np\n import torch\n import torch.nn as nn\n \n@@ -240,6 +241,7 @@ def convert_checkpoint(\n config.upsampling_ratios = metadata[\"decoder_rates\"]\n config...
2025-07-23T17:21:26
electron/electron
95a8f3fc7063c3221dbd2430330cbfea5ae076d4
34cd1435b47877686398b9acf52cbcabfcc439f2
Fix changing src would calling loadUrl for twice
[ { "path": "atom/renderer/lib/web-view/web-view-attributes.coffee", "patch": "@@ -28,7 +28,7 @@ class WebViewAttribute\n # Changes the attribute's value without triggering its mutation handler.\n setValueIgnoreMutation: (value) ->\n @ignoreMutation = true\n- @webViewImpl.webviewNode.setAttribute(@...
2015-06-03T06:33:22
nodejs/node
a365bb9cb100514efc3f57f7fac03d0679f73ff5
5f25dd1e2eaa73ffb0a51e6d5b5150bcd5d0447e
benchmark: pre-generate data set for URL benchmarks This patch: - Introduces `common.bakeUrlData` which can be used to pre-generate the data set for the URL benchmarks to loop through instead of looping over a constant. - Add the option to use WPT data in benchmarks for better diversity in the input - Add the o...
[ { "path": "benchmark/common.js", "patch": "@@ -254,3 +254,95 @@ exports.binding = function(bindingName) {\n return process.binding(bindingName);\n }\n };\n+\n+const urls = {\n+ long: 'http://nodejs.org:89/docs/latest/api/foo/bar/qua/13949281/0f28b/' +\n+ '/5d49/b3020/url.html#test?payload1=tru...
2018-11-11T08:44:19
vercel/next.js
69fe4eee39747861bc7bc306ac5ab1a2e5786596
ce234fb9ad1513f365bb4cea734b5cbf38416f7b
Refactor style loader code (#46490) Should fix the vanilla-extract issue in #46374. ## 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 - [...
[ { "path": "packages/next/src/build/webpack/config/blocks/css/index.ts", "patch": "@@ -271,15 +271,21 @@ export const css = curry(async function css(\n issuerLayer: APP_LAYER_RULE,\n use: [\n require.resolve('../../../loaders/next-flight-css-loader'),\n- ...
2023-02-27T14:29:42
huggingface/transformers
a0e5a7d34be27928fbc059bdcd03581ecb39cf57
ea56eb6bed8a66502e95520a8c6819b0523556e1
Transformers serve VLM (#39454) * Add support for VLMs in Transformers Serve * Raushan comments * Update src/transformers/commands/serving.py Co-authored-by: Sergio Paniego Blanco <sergiopaniegoblanco@gmail.com> * Quick fix * CPU -> Auto * Update src/transformers/commands/serving.py Co-authored-by: Joao Gante <...
[ { "path": "src/transformers/commands/serving.py", "patch": "@@ -11,22 +11,34 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n-\n+import base64\n import copy\n+import da...
2025-07-23T15:03:18
golang/go
b86e8dd0f3a27bc9577690523c9feeb25593bec7
c84f3a4004076b0e3dcef0a17573d85eb90ef5fc
test/typeparam: fix issue48094b test build CL 347529 broke the longtest builders due to missing -G=3 flag when compiling the added test. Change-Id: I73007801dd6871a8cf3554e957d247f5f56fd641 Reviewed-on: https://go-review.googlesource.com/c/go/+/348330 Trust: Tobias Klauser <tobias.klauser@gmail.com> Trust: Cuong Manh...
[ { "path": "test/typeparam/issue48094b.go", "patch": "@@ -1,4 +1,4 @@\n-// compiledir\n+// compiledir -G=3\n \n // Copyright 2021 The Go Authors. All rights reserved.\n // Use of this source code is governed by a BSD-style", "additions": 1, "deletions": 1, "language": "Go" } ]
2021-09-09T08:10:54
electron/electron
94382cbaa27c7130a832989ac19dd60c0a143697
981908c33629b2224fb432be0a83e3fb3ee3f0ae
Fix cpplint error.
[ { "path": "atom/common/api/atom_api_crash_reporter.cc", "patch": "@@ -11,6 +11,8 @@\n \n #include \"atom/common/node_includes.h\"\n \n+using crash_reporter::CrashReporter;\n+\n namespace mate {\n \n template<>\n@@ -32,10 +34,9 @@ struct Converter<std::map<std::string, std::string> > {\n };\n \n template<>\n...
2015-06-03T03:31:34
nodejs/node
c03c6e920f03a6be69612a46355dad36c948c5b4
43273262e5f07a80cecf2cef6ac89ca1719821fb
test: fix arguments order in napi test_exception PR-URL: https://github.com/nodejs/node/pull/24413 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Col...
[ { "path": "test/addons-napi/test_exception/test.js", "patch": "@@ -26,7 +26,7 @@ const test_exception = (function() {\n \n // Test that the native side successfully captures the exception\n let returnedError = test_exception.returnException(throwTheError);\n- assert.strictEqual(theError, returnedError)...
2018-11-17T11:16:20
vercel/next.js
ce234fb9ad1513f365bb4cea734b5cbf38416f7b
86c81d296847c89783a62e5c931bcf86fcd18ca5
Add error for styled-jsx in Server Component (#46482) Add specific error for the `styled-jsx` import that's implicitly added to the file when using `<style jsx>`. Before ![image](https://user-images.githubusercontent.com/25056922/221547281-7b25a979-ee03-4d29-97c8-a038b9ebb214.png) After ![image](https://u...
[ { "path": "packages/next/src/build/webpack/plugins/wellknown-errors-plugin/parseNextInvalidImportError.ts", "patch": "@@ -35,14 +35,21 @@ export function getNextInvalidImportError(\n \n let invalidImportMessage = ''\n if (firstExternalModule) {\n- let formattedExternalFile =\n- firstExte...
2023-02-27T14:04:34
huggingface/transformers
ea56eb6bed8a66502e95520a8c6819b0523556e1
0fe03afeb82e1a435a75704d1f434c47e49a0bbb
Fix important models CI (#39576) * relax test boundaries and fix from config * eager is always supported.
[ { "path": "tests/causal_lm_tester.py", "patch": "@@ -451,5 +451,4 @@ def test_flash_attn_2_equivalence(self):\n \n logits = outputs.hidden_states[-1]\n logits_fa = outputs_fa.hidden_states[-1]\n-\n- assert torch.allclose(logits_fa, logits, atol=2e-3)\n+ ...
2025-07-23T14:24:29
golang/go
376a079762bf8db387510d50ed718ec1259d1b7c
6edc57983a39b3cb911ea88b75a7ad39664383ec
cmd/compile: fix unified IR panic when expanding nested inline function When reading body of inlining function, which has another inlined function in the body, the reader still add this inlined function to todoBodies, which it shouldn't because the inlined function was read already. To fix this, introduce new flag to...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -927,6 +927,11 @@ var bodyReader = map[*ir.Func]pkgReaderIndex{}\n // constructed.\n var todoBodies []*ir.Func\n \n+// todoBodiesDone signals that we constructed all function in todoBodies.\n+// This is necessary to prevent reader.addBody ad...
2021-09-03T03:49:32
electron/electron
981908c33629b2224fb432be0a83e3fb3ee3f0ae
4457edb1d31e7e211778b28a8167f01accd7e0fd
Add missing crashpad submodule.
[ { "path": "vendor/crashpad", "patch": "@@ -0,0 +1 @@\n+Subproject commit e6a0d433b0ee399eecce2bef671794771052ffdb", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2015-06-03T03:13:20
huggingface/transformers
0fe03afeb82e1a435a75704d1f434c47e49a0bbb
82603b6cc284dbdf2b7a7cf070feb6a2c3bb53cf
Fix typos and grammar issues in documentation and code (#39598) - Fix Cyrillic 'Р' to Latin 'P' in Portuguese language link (README.md) - Fix 'meanginful' to 'meaningful' in training documentation - Fix duplicate 'Cohere' reference in modular transformers documentation - Fix duplicate 'the the' in trainer and chat com...
[ { "path": "README.md", "patch": "@@ -44,7 +44,7 @@ limitations under the License.\n <a href=\"https://github.com/huggingface/transformers/blob/main/i18n/README_ja.md\">日本語</a> |\n <a href=\"https://github.com/huggingface/transformers/blob/main/i18n/README_hd.md\">हिन्दी</a> |\n <a hr...
2025-07-23T12:43:11
nodejs/node
eb42c1eb4f2502433a22c49ede9e657fb6cd86e0
7778c035a0a3f9bbb988eb0298a026d80f423e03
repl: handle buffered string logic on finish Looks like `clearBufferedCommand` will be called on almost all flows. Hence history was broken. PR-URL: https://github.com/nodejs/node/pull/24389 Fixes: https://github.com/nodejs/node/issues/24385 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpie...
[ { "path": "lib/readline.js", "patch": "@@ -348,9 +348,9 @@ Interface.prototype.undoHistory = function() {\n \n // If it's a multiline code, then add history\n // accordingly.\n-Interface.prototype.multilineHistory = function() {\n- // check if we got a multiline code\n- if (this.multiline !== '' && this.t...
2018-11-18T03:37:48
vercel/next.js
86c81d296847c89783a62e5c931bcf86fcd18ca5
bd9ad97c8e2f996a41ef6d69fd0445a837339bad
Add @latest to next/font codemod warning (#46486) Add `@latest` to codemod command in the `@next/font` warning. Otherwise you won't get the latest if it's already in cache, and `built-in-next-font` wouldn't be included in an older version. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration te...
[ { "path": "packages/next/src/cli/next-dev.ts", "patch": "@@ -202,7 +202,7 @@ const nextDev: CliCommand = async (argv) => {\n Log.warn(\n 'Your project has `@next/font` installed as a dependency, please use the built-in `next/font` instead. ' +\n 'The `@next/font` package will be remo...
2023-02-27T12:40:03
electron/electron
4457edb1d31e7e211778b28a8167f01accd7e0fd
2396b51cb6e21d2e5fcb41cb05b425e1adf35402
Implement crash-reporter.getLastLastCrashReport API on OS X.
[ { "path": "atom/common/api/atom_api_crash_reporter.cc", "patch": "@@ -31,17 +31,42 @@ struct Converter<std::map<std::string, std::string> > {\n }\n };\n \n+template<>\n+struct Converter<std::vector<crash_reporter::CrashReporter::UploadReportResult> > {\n+ static v8::Local<v8::Value> ToV8(v8::Isolate* iso...
2015-06-03T01:47:42
huggingface/transformers
10c990f7e290816221fbcc05ed2e01a66587bdbe
e7e6efcbbdaaddae9ac732240659dff8fcdce397
enable triton backend on awq xpu (#39443) * enable triton backend on awq xpu Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix format Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * Update src/transformers/quantizers/quantizer_awq.py Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.g...
[ { "path": "src/transformers/quantizers/quantizer_awq.py", "patch": "@@ -52,8 +52,12 @@ def validate_environment(self, device_map, **kwargs):\n if not is_accelerate_available():\n raise ImportError(\"Loading an AWQ quantized model requires accelerate (`pip install accelerate`)\")\n \n- ...
2025-07-23T12:10:38
vercel/next.js
bd9ad97c8e2f996a41ef6d69fd0445a837339bad
36664910cc38853ab5294d7cada755bd1a76d254
Fix next/font/google config not being used (#46484) Make sure both `@next/font/google` and `next/font/google` works when setting subsets in `next.config.js`. Fixes NEXT-668 ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contrib...
[ { "path": "packages/next/src/build/webpack/config/blocks/css/index.ts", "patch": "@@ -188,7 +188,9 @@ export const css = curry(async function css(\n )\n const googleLoaderOptions =\n ctx.experimental?.fontLoaders?.find(\n- (loaderConfig) => loaderConfig.loader === '@next/font/google'\n+ (l...
2023-02-27T12:18:19
nodejs/node
7778c035a0a3f9bbb988eb0298a026d80f423e03
092ab7a1d39d97a3e93f8ed46d80d8ad783b2f9c
src: use STL containers instead of v8 values for static module data Instead of putting the source code and the cache in v8::Objects, put them in per-process std::maps. This has the following benefits: - It's slightly lighter in weight compared to storing things on the v8 heap. Also it may be slightly faster since t...
[ { "path": "lib/internal/bootstrap/cache.js", "patch": "@@ -9,11 +9,12 @@ const {\n NativeModule\n } = require('internal/bootstrap/loaders');\n const {\n- source,\n+ getSource,\n compileCodeCache\n } = internalBinding('native_module');\n const { hasTracing } = process.binding('config');\n \n+const sour...
2018-11-14T14:38:12
huggingface/transformers
e7e6efcbbdaaddae9ac732240659dff8fcdce397
a62f65a989b10bf1130e098bb62f16a5b3994ee8
[idefics3] fix for vLLM (#39470) * fix idefics3 for vllm tests * fix copies
[ { "path": "src/transformers/models/idefics3/image_processing_idefics3.py", "patch": "@@ -870,6 +870,7 @@ def get_number_of_image_patches(self, height: int, width: int, images_kwargs=Non\n max_image_size = images_kwargs.get(\"max_image_size\", None) or self.max_image_size\n size = images_kwar...
2025-07-23T12:00:43
electron/electron
2025b60968090b14569f78c83ddf46de3c64546e
a9a5765544b3fd2430e4c7e2f1715dda3731dd2c
Make devtools work when web security is enabled These changes bring our copy of devtools_ui.cc in line with https://chromium.googlesource.com/chromium/src.git/+/43.0.2357.92/chrome/browser/ui/webui/devtools_ui.cc Without these changes, opening the devtools prints errors like: [0602/165604:ERROR:CONSOLE(0)] "Refu...
[ { "path": "brightray/browser/devtools_ui.cc", "patch": "@@ -42,11 +42,12 @@ std::string GetMimeTypeForPath(const std::string& path) {\n return \"image/png\";\n } else if (EndsWith(filename, \".gif\", false)) {\n return \"image/gif\";\n+ } else if (EndsWith(filename, \".svg\", false)) {\n+ retu...
2015-06-02T20:54:15
vercel/next.js
36664910cc38853ab5294d7cada755bd1a76d254
714720ffa9d6659c1bc67d1ed53628b8ac81f167
Fix typo from next-font (#46468 <!-- 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: --> Abbreviation for weight was ...
[ { "path": "packages/font/src/google/utils.ts", "patch": "@@ -164,14 +164,14 @@ export function getUrl(\n // Variants are all combinations of weight and style, each variant will result in a separate font file\n const variants: Array<[string, string][]> = []\n if (axes.wght) {\n- for (const wgth of a...
2023-02-27T11:21:01
nodejs/node
092ab7a1d39d97a3e93f8ed46d80d8ad783b2f9c
a3d9168293b6646a3f183ad9d27d6f969b88576f
test: fix the arguments order in `assert.strictEqual` PR-URL: https://github.com/nodejs/node/pull/24416 Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By...
[ { "path": "test/pummel/test-http-many-keep-alive-connections.js", "patch": "@@ -64,6 +64,6 @@ server.listen(common.PORT, function connect() {\n });\n \n process.on('exit', function() {\n- assert.strictEqual(expected, responses);\n- assert.strictEqual(expected, requests);\n+ assert.strictEqual(responses, ...
2018-11-17T11:28:38
rust-lang/rust
816fa0a9234f8e369542d949db74258e43ea10b9
32a3744efc15f5bb3024cefbb2641fe238f319f2
changelog: [manual_flatten]: fix with nested Some or Ok pattern
[ { "path": "clippy_lints/src/loops/manual_flatten.rs", "patch": "@@ -3,7 +3,7 @@ use super::utils::make_iterator_snippet;\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::msrvs::{self, Msrv};\n use clippy_utils::visitors::is_local_used;\n-use clippy_utils::{higher, path_to_local_id, p...
2025-05-19T08:59:30
golang/go
2481f6e367a56207b6c873180e0db9bc4f2b6365
d62866ef793872779c9011161e51b9c805fcb73d
cmd/compile: fix wrong instantiated type for embedded receiver In case of embedded field, if the receiver was fully instantiated, we must use its instantiated type, instead of passing the type params of the base receiver. Fixes #47797 Fixes #48253 Change-Id: I97613e7e669a72605137e82406f7bf5fbb629378 Reviewed-on: htt...
[ { "path": "src/cmd/compile/internal/noder/expr.go", "patch": "@@ -360,12 +360,10 @@ func (g *irgen) selectorExpr(pos src.XPos, typ types2.Type, expr *syntax.Selecto\n \t\t\t\tn.(*ir.SelectorExpr).Selection.Nname = method\n \t\t\t\ttyped(method.Type(), n)\n \n-\t\t\t\t// selinfo.Targs() are the types used to...
2021-09-08T18:11:26
huggingface/transformers
a62f65a989b10bf1130e098bb62f16a5b3994ee8
623ab01039930c173a22832540773873ecaa00c2
fix moe routing_weights (#39581) * fix moe routing_weights * fix ernie4_5_moe routing_weights * fix integration test --------- Co-authored-by: llbdyiu66 <llbdyiu66@users.noreply.github.com> Co-authored-by: Vasqu <antonprogamer@gmail.com> Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
[ { "path": "src/transformers/models/ernie4_5_moe/modeling_ernie4_5_moe.py", "patch": "@@ -339,12 +339,9 @@ def forward(\n # router_logits: (batch * sequence_length, n_experts)\n router_logits = self.gate(hidden_states.float())\n \n- # NOTE: we are using the original code ba...
2025-07-23T11:20:23
electron/electron
2396b51cb6e21d2e5fcb41cb05b425e1adf35402
317406f26d9e079e3ca02846816a13d3ca4fba10
Switch to use crashpad repo under atom org.
[ { "path": ".gitmodules", "patch": "@@ -13,3 +13,6 @@\n [submodule \"vendor/native_mate\"]\n \tpath = vendor/native_mate\n \turl = https://github.com/zcbenz/native-mate.git\n+[submodule \"vendor/crashpad\"]\n+\tpath = vendor/crashpad\n+\turl = https://github.com/atom/crashpad.git", "additions": 3, "d...
2015-06-02T03:46:20
vercel/next.js
714720ffa9d6659c1bc67d1ed53628b8ac81f167
ddccab7536e8efd8d52ba9fc34124a6d2dcf267e
dynamic = "error" violations should be shown in error overlay (#45893 dynamic = "error" should throw in dev mode, currently, it just gets ignored. It doesn't throw a nice custom error, but at least it isn't silently ignored anymore. Build behavior stays the same.
[ { "path": "packages/next/src/client/components/static-generation-async-storage.ts", "patch": "@@ -10,6 +10,7 @@ export interface StaticGenerationStore {\n forceDynamic?: boolean\n revalidate?: boolean | number\n forceStatic?: boolean\n+ dynamicShouldError?: boolean\n pendingRevalidates?: Promise<an...
2023-02-27T11:20:23
nodejs/node
b4af0c49eaa2f479476f021c5ff8dbd7a05fe38b
3cac82f55e9aed946200d0b64d5d224715249e44
test: fix the arguments order in `assert.strictEqual` PR-URL: https://github.com/nodejs/node/pull/24431 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: O...
[ { "path": "test/parallel/test-buffer-alloc.js", "patch": "@@ -312,7 +312,7 @@ assert.strictEqual((Buffer.from('Man')).toString('base64'), 'TWFu');\n 'dWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZ' +\n 'GdlLCBleGNlZWRzIHRoZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhc...
2018-11-17T12:39:30
huggingface/transformers
623ab01039930c173a22832540773873ecaa00c2
eb1a007f7f0bcff45b0b6d43759c583246946f91
FP-Quant support (#38696) * quartet * quartet qat -> quartet * format * bf16 backward * interfaces * forward_method * quartet -> fp_quant * style * List -> list * list typing * fixed format and annotations * test_fp_quant * docstrings and default dtypes * better docstring and removed noop checks * docs ...
[ { "path": "docker/transformers-quantization-latest-gpu/Dockerfile", "patch": "@@ -78,6 +78,9 @@ RUN git clone https://github.com/NetEase-FuXi/EETQ.git && cd EETQ/ && git submod\n # RUN python3 -m pip install --no-cache-dir flute-kernel==0.4.1\n # RUN python3 -m pip install --no-cache-dir git+https://github....
2025-07-23T09:41:10
golang/go
9cbc76bdf90752e21a2b3f05944552e1373ab433
42563f89d7093ab22e1ac42351e66c4d03e0c80e
cmd/internal/obj/arm64: add checks for incorrect use of REGTMP register The current assembler uses REGTMP as a temporary destination register, when optimizing one instruction into a multi-instruction sequence. But in some cases, when the source register is REGTMP, this behavior is incorrect. For example: ADD $0x123...
[ { "path": "src/cmd/asm/internal/asm/testdata/arm64error.s", "patch": "@@ -406,21 +406,28 @@ TEXT errors(SB),$0\n \tVBIF\tV0.D2, V1.D2, V2.D2 // ERROR \"invalid arrangement\"\n \tVUADDW\tV9.B8, V12.H8, V14.B8 // ERROR \"invalid arrangement\"\n \tVUADDW2...
2021-08-24T04:46:54
electron/electron
317406f26d9e079e3ca02846816a13d3ca4fba10
51d5ef9d862390607b6376e2abc7f78f1b000873
Update crashpad implementation after code review.
[ { "path": "atom/common/crash_reporter/crash_reporter_mac.h", "patch": "@@ -9,9 +9,16 @@\n \n #include \"atom/common/crash_reporter/crash_reporter.h\"\n #include \"base/compiler_specific.h\"\n+#include \"base/memory/scoped_ptr.h\"\n+#include \"base/strings/string_piece.h\"\n+#include \"vendor/crashpad/client...
2015-06-02T03:41:47
vercel/next.js
ddccab7536e8efd8d52ba9fc34124a6d2dcf267e
54266bb590e935bca6213a268155bf2bf8de1b50
Remove incorrect comment (#46467)Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> This was leftover from copying ReadonlyHeaders it seems. <!-- 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 ...
[ { "path": "packages/next/src/client/components/navigation.ts", "patch": "@@ -35,7 +35,6 @@ export class ReadonlyURLSearchParams {\n toString: URLSearchParams['toString']\n \n constructor(urlSearchParams: URLSearchParams) {\n- // Since `new Headers` uses `this.append()` to fill the headers object Read...
2023-02-27T11:18:51
rust-lang/rust
0497f31122e0c5908bf68d83f3e8ba5b559ae3d6
b5eb9893f42a469d330046089539f908d4728384
rustc book: fix erratic sentence by making it more simple
[ { "path": "src/doc/rustc/src/check-cfg/cargo-specifics.md", "patch": "@@ -9,8 +9,8 @@ rustc, not Cargo.\n -->\n \n This document is intended to summarize the principal ways Cargo interacts with\n-the `unexpected_cfgs` lint and `--check-cfg` flag. It is not intended to provide\n-individual details, for that ...
2025-05-26T15:55:03
nodejs/node
dafd76ca8fa96fc48d9d7c0058a1e3cc9fab1e9b
738e076556f68bf9bca36f447d8a7cc64769b48e
test: assertion equality fix In test-net-write-callback.js, when process exits, we check callback count against the expected value. The assertion is written with the expected value first and actual value second, but that is the opposite of the documented argument order. Reverse them to be consistent with documentation...
[ { "path": "test/pummel/test-net-write-callbacks.js", "patch": "@@ -67,5 +67,5 @@ server.listen(common.PORT, function() {\n });\n \n process.on('exit', function() {\n- assert.strictEqual(N, cbcount);\n+ assert.strictEqual(cbcount, N);\n });", "additions": 1, "deletions": 1, "language": "JavaScr...
2018-11-17T11:53:28
golang/go
bff39cf6cb5bbe1575fdd95682c991ef35e97289
b61e1ed863886743598c6f816b0740f3768b50f6
cmd/compile: add automated rewrite cycle detection A common bug during development is to introduce rewrite rule cycles. This is annoying because it takes a while to notice that make.bash is a bit too slow this time, and to remember why. And then you have to manually arrange to debug. Make this all easier by automatin...
[ { "path": "src/cmd/compile/internal/ssa/html.go", "patch": "@@ -1221,7 +1221,7 @@ func (p htmlFuncPrinter) startBlock(b *Block, reachable bool) {\n \t}\n }\n \n-func (p htmlFuncPrinter) endBlock(b *Block) {\n+func (p htmlFuncPrinter) endBlock(b *Block, reachable bool) {\n \tif len(b.Values) > 0 { // end lis...
2021-09-05T02:29:08
huggingface/transformers
eb1a007f7f0bcff45b0b6d43759c583246946f91
b357cbb19d6cbdd9df03f4ab914b37188bdd53ce
Rename `supports_static_cache` to `can_compile_fullgraph` (#39505) * update all * Apply suggestions from code review Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com> * apply suggestions * fix copies --------- Co-authored-by: Joao Gante <joaofranciscocardosogante@gmail.com>
[ { "path": "examples/modular-transformers/modeling_my_new_model2.py", "patch": "@@ -294,7 +294,7 @@ class MyNewModel2PreTrainedModel(PreTrainedModel):\n _supports_flex_attn = True\n _supports_cache_class = True\n _supports_quantized_cache = True\n- _supports_static_cache = True\n+ _can_comp...
2025-07-23T09:35:18
vercel/next.js
54266bb590e935bca6213a268155bf2bf8de1b50
586ae4e880f7b2cebe536a0d1380d3bccd462fd5
[next/codemod]: Preserve type-only imports when using `next-image-to-legacy-image` (#46460 <!-- 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(...
[ { "path": "packages/next-codemod/transforms/__testfixtures__/next-image-to-legacy-image/dynamic.input.tsx", "patch": "@@ -1,3 +1,5 @@\n+// @ts-nocheck\n+/* eslint-disable */\n export async function Home() {\n const Image = await import(\"next/image\");\n const Named = await import(\"next/image\");\n@@ -...
2023-02-27T11:06:48
nodejs/node
97309030effe5d01f1f99197b1f581f4e4d36091
9801eb9e3a6b36d50319e4938a702f8bcfb701f9
doc: update crypto examples to not use deprecated api Updated Cipher and Decipher examples to not use deprecated `crypto.createCipher` and `crypto.createDecipher` in examples and instead use `createCipheriv` and `createDecipheriv`. Fixes: https://github.com/nodejs/node/issues/24046 PR-URL: https://github.com/nodejs/...
[ { "path": "doc/api/crypto.md", "patch": "@@ -185,7 +185,18 @@ Example: Using `Cipher` objects as streams:\n \n ```js\n const crypto = require('crypto');\n-const cipher = crypto.createCipher('aes192', 'a password');\n+\n+const algorithm = 'aes-192-cbc';\n+const password = 'Password used to generate key';\n+/...
2018-11-05T15:25:47
golang/go
f4f137a1434725f652f924a57a5ae51c9a477d03
e9674e553ce941c1c0558892852d299a35fa2178
[dev.fuzz] internal/fuzz: only reconstruct inputs when needed on RPC return If the fuzz RPC finds no error and no new coverage, there's no point in reconstructing the last value. If the minimize RPC does not succeed in minimizing, either because the error can't be reproduced, or new coverage can't be reproduced, or a...
[ { "path": "src/internal/fuzz/worker.go", "patch": "@@ -775,7 +775,9 @@ func (ws *workerServer) minimize(ctx context.Context, args minimizeArgs) (resp m\n \t// to shared memory after completing minimization. If the worker terminates\n \t// unexpectedly before then, the coordinator will use the original input...
2021-09-02T21:57:43
rust-lang/rust
8e581e31a2191392461210f3f7a168910da5bf49
40bead02a528980645dda94a63b16526f9d2ffc3
add lint infallible_try_from Looks for `TryFrom` implementations with uninhabited error types and suggests to implement `From` instead.
[ { "path": "CHANGELOG.md", "patch": "@@ -5862,6 +5862,7 @@ Released 2018-09-13\n [`ineffective_open_options`]: https://rust-lang.github.io/rust-clippy/master/index.html#ineffective_open_options\n [`inefficient_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#inefficient_to_string\n [`in...
2025-05-15T08:08:47
electron/electron
b97c22d4d768b557f6c601e7ef89b4bb9ab6a41a
fe631e6eeb61437523b631063249c4b1c8da9744
win: Load pdf.dll with abosolute path, fix #1826
[ { "path": "chromium_src/chrome/utility/printing_handler_win.cc", "patch": "@@ -31,8 +31,11 @@ class PdfFunctions {\n render_pdf_to_dc_func_(NULL) {}\n \n bool Init() {\n- base::FilePath pdf_module_path(FILE_PATH_LITERAL(\"pdf.dll\"));\n- pdf_lib_.Reset(base::LoadNativeLibrary(pdf_...
2015-06-01T04:53:43
huggingface/transformers
019b74977d7469af3a86d3f5bbbb02ffe62af94d
5dba4bc7b2c1ef517ed44bba76bb70b59001c737
Generic task-specific base classes (#39584) * first shot * Update modeling_layers.py * fix mro order * finalize llama * all modular and copied from from llama * fix
[ { "path": "src/transformers/modeling_layers.py", "patch": "@@ -11,12 +11,23 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n-\n+from abc import ABC\n from functools imp...
2025-07-23T08:49:47
nodejs/node
9801eb9e3a6b36d50319e4938a702f8bcfb701f9
69ccbd28dfa39b8d98d028f2f4b1da505460cadb
test: fix actual parameter order for 'assert.strictEqual' PR-URL: https://github.com/nodejs/node/pull/24428 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-B...
[ { "path": "test/pummel/test-net-throttle.js", "patch": "@@ -58,7 +58,7 @@ server.listen(common.PORT, function() {\n console.log('pause');\n const x = chars_recved;\n setTimeout(function() {\n- assert.strictEqual(x, chars_recved);\n+ assert.strictEqual(chars_recved, x);\n ...
2018-11-17T11:37:09
golang/go
e9674e553ce941c1c0558892852d299a35fa2178
9c56a64673d2f458e28c603f95b4efb5d39beef2
[dev.fuzz] internal/fuzz: fix panic when marshaling data The coordinator needs to marshal data that was provided via f.Add. However, it was also attempting to marshal data that was in testdata, which was not needed, and was causing a panic. This change fixes this. Fixes golang/go#48228 Change-Id: I1256c5a287b5a09d2f...
[ { "path": "src/cmd/go/testdata/script/test_fuzz.txt", "patch": "@@ -160,6 +160,21 @@ stdout ok\n ! stdout FAIL\n ! stdout 'fatal here'\n \n+# Test pass with testdata and f.Add seed corpus\n+go test -run FuzzPassString corpustesting/fuzz_testdata_corpus_test.go\n+stdout ok\n+! stdout FAIL\n+\n+# Fuzzing pass...
2021-09-08T18:06:52
vercel/next.js
9d30f43aca5bc7c2bda91f3cb6f88aa0de8d46f3
f3ef4e99b0e3b6278256059ccbabd2d97d19b313
Updates cms-sanity example to use Sanity v3 (#45662 ## Bug - [x] 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) Fixes issues reported, for instance here:...
[ { "path": "examples/cms-sanity/README.md", "patch": "@@ -37,18 +37,17 @@ You'll get:\n # Configuration\n \n - [Step 1. Set up the environment](#step-1-set-up-the-environment)\n-- [Step 2. Configure CORS for localhost](#step-2-configure-cors-for-localhost)\n-- [Step 3. Run Next.js locally in development mode...
2023-02-27T10:58:43
rust-lang/rust
6ec41a79501cb29ef45f62b123cf097cec9eb3dd
b5eb9893f42a469d330046089539f908d4728384
ci: fix llvm test coverage
[ { "path": "src/ci/github-actions/jobs.yml", "patch": "@@ -332,7 +332,7 @@ auto:\n env:\n RUST_BACKTRACE: 1\n IMAGE: x86_64-gnu-llvm-20\n- DOCKER_SCRIPT: stage_2_test_set1.sh\n+ DOCKER_SCRIPT: stage_2_test_set2.sh\n <<: *job-linux-4c\n \n # Skip tests that run in x86_64-gnu-ll...
2025-05-26T14:52:24
electron/electron
1314b7c7e56ebf69182b6df6f82534b2a45c3000
c026863d4894d86918ee73029d6c9cff296c3e28
Update libchromiumcontent, fix #1786
[ { "path": "script/lib/config.py", "patch": "@@ -7,7 +7,7 @@\n \n \n BASE_URL = 'http://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'\n-LIBCHROMIUMCONTENT_COMMIT = '5ccddd5f3968a7f63eaa888e6a8ba319ea8cd3b7'\n+LIBCHROMIUMCONTENT_COMMIT = '893b48a10ef1813abdaf8de3540e2e7203475105'\n \n PLATFORM = {...
2015-06-01T04:19:56
huggingface/transformers
5dba4bc7b2c1ef517ed44bba76bb70b59001c737
d9b35c635eb16e837a7b563c519c5231d4e09265
Fix DynamicCache and simplify Cache classes a bit (#39590) * fix * use kwargs * simplify * Update cache_utils.py * Update cache_utils.py * Update test_cache_utils.py * fix * style
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -4,6 +4,7 @@\n import inspect\n import json\n import os\n+from abc import ABC, abstractmethod\n from collections.abc import Iterable\n from dataclasses import dataclass\n from typing import Any, Callable, Optional, Union\n@@ -24,34 +25,30 @@\n logger...
2025-07-23T08:13:45
nodejs/node
413fcada8fb8289ec81010fe66a975e046d15ece
ea655191d3df2b5ae62a66e5071cd151b1919c92
stream: do not use crypto.DEFAULT_ENCODING in lazy_transform.js The default encoding can be retrieved via `require('internal/crypto/util').getDefaultEncoding` instead of the deprecated crypto.DEFAULT_ENCODING which triggers a warning. Background: The require chain goes like this: ``` internal/streams/lazy_transform...
[ { "path": "lib/internal/streams/lazy_transform.js", "patch": "@@ -5,7 +5,10 @@\n \n const stream = require('stream');\n const util = require('util');\n-const crypto = require('crypto');\n+\n+const {\n+ getDefaultEncoding\n+} = require('internal/crypto/util');\n \n module.exports = LazyTransform;\n \n@@ -22...
2018-11-16T16:18:55
golang/go
65f0d24f73fa5386bf921393cbd26bb8f9cead03
37c9552e065fb4331d8cba84c12392806f1ecbbe
cmd/go: print offending -mod value in workspace mode Workspace mode only allows -mod to be set to 'readonly'. When returning the error for other values of -mod, specify the the value in the error so it's easier to see what's going on when the go command is invoked through another tool. For #45713, #48186 Change-Id: ...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -976,9 +976,9 @@ func requirementsFromModFiles(ctx context.Context, modFiles []*modfile.File) *Re\n func setDefaultBuildMod() {\n \tif cfg.BuildModExplicit {\n \t\tif inWorkspaceMode() && cfg.BuildMod != \"readonly\" {\n-\t\t\tbase.Fatalf(\"go: -...
2021-09-03T22:11:00
vercel/next.js
65ce86877988e2e4440d617809fc41135baadfba
c0dd8be82f980d573f5bf1face02f46ce104ed4a
chore: Loss of precision due to Date now amplification (#46344) Loss of precision due to `Date.now()*1000*1000` (used to record HMR time) has exceeded the safety integer MAX_SAFE_INTEGER. ![image](https://user-images.githubusercontent.com/45198715/221096707-ceaa8fad-1432-428d-8bad-cc83b452127f.png) ## Bug - [ ] ...
[ { "path": "packages/next/src/server/dev/hot-reloader.ts", "patch": "@@ -334,8 +334,8 @@ export default class HotReloader {\n case 'client-hmr-latency': {\n traceChild = {\n name: payload.event,\n- startTime: BigInt(payload.startTime * 1000 * 1000),\n-...
2023-02-27T09:29:57
electron/electron
c026863d4894d86918ee73029d6c9cff296c3e28
02bdace366f38271b5c186412f42810ecb06e99e
Print real error messages even if it looks like an invalid app
[ { "path": "atom/browser/default_app/main.js", "patch": "@@ -53,7 +53,7 @@ if (option.file && !option.webdriver) {\n } catch(e) {\n if (e.code == 'MODULE_NOT_FOUND') {\n app.focus();\n- dialog.showErrorBox('Error opening app', 'The app provided is not a valid electron app, please read the do...
2015-05-29T06:53:32
huggingface/transformers
d9b35c635eb16e837a7b563c519c5231d4e09265
6e9972962fbc80d218234bfbd8c9b2843ef02b2b
Mask2former & Maskformer Fast Image Processor (#35685) * add maskformerfast * test * revert do_reduce_labels and add testing * make style & fix-copies * add mask2former and make fix-copies TO DO: add test for mask2former * make fix-copies * fill docstring * enable mask2former fast processor * python utils/cus...
[ { "path": "docs/source/en/model_doc/mask2former.md", "patch": "@@ -77,4 +77,12 @@ The resource should ideally demonstrate something new instead of duplicating an\n - encode_inputs\n - post_process_semantic_segmentation\n - post_process_instance_segmentation\n+ - post_process_panoptic_segmenta...
2025-07-23T02:47:47
nodejs/node
34eccb2a1b1f4d7e8ddf7c0bc6f6d61ec530381f
d964d276dbd41dd383f9463ab238b4ef69920b36
doc: fix missing PR id of 23329 PR-URL: https://github.com/nodejs/node/pull/24458 Refs: https://github.com/nodejs/node/pull/23329 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gma...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -2298,7 +2298,7 @@ Please use `Server.prototype.setSecureContext()` instead.\n <!-- YAML\n changes:\n - version: REPLACEME\n- pr-url: https://github.com/nodejs/node/pull/REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/23329\n description...
2018-11-17T16:58:23
golang/go
c8d4fe2adc556317f75c2ebad195568ad5ff9644
d419f9c6124557e0bf08e00d7848e3e518ac4cbd
go/types: temporarily pin the Checker to Interface during checking While type checking expressions involving interface types, it is possible that their type set is used before delayed actions are processed. As a result, computeInterfaceTypeSet is called with a nil checker, and errors in the interface type definition r...
[ { "path": "src/go/types/interface.go", "patch": "@@ -14,6 +14,7 @@ import (\n \n // An Interface represents an interface type.\n type Interface struct {\n+\tcheck *Checker // for error reporting; nil once type set is computed\n \tobj *TypeName // type name object defining this interface; or...
2021-09-08T13:58:44
vercel/next.js
c0dd8be82f980d573f5bf1face02f46ce104ed4a
b7b81b2033ece51dff9643a925d45519f7c81202
Fix(typedRoutes): export createServer from 'next/types/index.d.ts' (#46462) This is a follow-up PR of #46378, which overlooked one thing - I forgot to export `createServer` from `next/types/index.d.ts` in `declare module 'next'`. I've also reformatted that part as well, so that it matches Next's coding style. ## B...
[ { "path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts", "patch": "@@ -134,38 +134,36 @@ function createRouteDefinitions() {\n let routeTypes = ''\n \n edgeRouteTypes.forEach((route) => {\n- routeTypes += ` | ${route}\\n`\n+ routeTypes += ` | ${route}\\n `\n })\n nodeRouteTy...
2023-02-27T08:22:20
electron/electron
51d5ef9d862390607b6376e2abc7f78f1b000873
16fb8470096222ceee7ebd9aaf09536ca0c6a15b
:memo: crash-reporter note on OS X.
[ { "path": "docs/api/crash-reporter.md", "patch": "@@ -27,6 +27,10 @@ crashReporter.start({\n * Only string properties are send correctly.\n * Nested objects are not supported.\n \n+**Note:** On OS X, electron uses a new `crashpad` client, which is different\n+with the `breakpad` on Windows and Linux...
2015-05-30T02:03:59
huggingface/transformers
6e9972962fbc80d218234bfbd8c9b2843ef02b2b
c6d0500d15b9eedc33e9131a6bec6db56282b875
🎯 Trackio integration (#38814) * First attempt * fix * fix * Enhance TrackioCallback to log GPU memory usage and allocation * Enhance Trackio integration in callbacks and training arguments documentation * re order * remove unused lines * fix torch optional
[ { "path": "docs/source/en/main_classes/callback.md", "patch": "@@ -33,6 +33,7 @@ By default, `TrainingArguments.report_to` is set to `\"all\"`, so a [`Trainer`] wi\n it's the second one).\n - [`~integrations.TensorBoardCallback`] if tensorboard is accessible (either through PyTorch >= 1.4\n or tensorboa...
2025-07-22T21:50:20
golang/go
a1a6540bf1c38c2c8ad7fced983d2e3206ab1d2b
409434d62364cb362f0f17d0c7769dc680b2da99
go/types: implement deduplication of instances using the Environment Implement deduplication of type instances via the Environment by recording a map of unique IDs for *Named types. This avoids an issue with the existing type hash, where qualified names alone were not sufficient to differentiate two *Named types that ...
[ { "path": "src/go/types/check.go", "patch": "@@ -89,7 +89,7 @@ type Checker struct {\n \tnextID uint64 // unique Id for type parameters (first valid Id is 1)\n \tobjMap map[Object]*declInfo // maps package-level objects and (non-interface) methods to declaration info\n \timpMap map[impo...
2021-09-02T22:39:58
vercel/next.js
b7b81b2033ece51dff9643a925d45519f7c81202
ff4e06afd180de9f4e61242e2349c9bf59e99c24
fixed spelling mistake (#46446) ## Documentation / Examples - [x] Make sure the linting passes by running `pnpm build && pnpm lint` - [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md) Closes https://github....
[ { "path": "packages/next/src/lib/metadata/types/metadata-interface.ts", "patch": "@@ -219,11 +219,11 @@ interface Metadata extends DeprecatedMetadataFields {\n * \"https://example.com/icon.png\"\n * <link rel=\"icon\" href=\"https://example.com/icon.png\" />\n *\n- * { icon: \"https://example.com...
2023-02-26T21:12:35
electron/electron
16fb8470096222ceee7ebd9aaf09536ca0c6a15b
cd8ceec62e5c127fd378ba97da2d41031923b18d
Add script to setup crashpad repository. Crashpad use `gclient` to maintain its third_party libraries. This patch switches `gclient` instead of `git submodule` to align crashpad way.
[ { "path": ".gitignore", "patch": "@@ -6,6 +6,7 @@\n /vendor/brightray/vendor/download/\n /vendor/python_26/\n /vendor/npm/\n+/vendor/.gclient\n node_modules/\n *.xcodeproj\n *.swp", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": ".gitmodules", "patch": "@@ -13,6 +...
2015-05-30T01:40:07
golang/go
409434d62364cb362f0f17d0c7769dc680b2da99
054710ce46d5613db8e861eff49cd9cb3e3d0589
cmd/go/internal/modload: scan dependencies of root paths when raising version limits in editRequirements Fixes #47979 Change-Id: I1d9d854cda1378e20c70e6c6789b77e42e467ca7 Reviewed-on: https://go-review.googlesource.com/c/go/+/347290 Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google...
[ { "path": "src/cmd/go/internal/modload/edit.go", "patch": "@@ -192,8 +192,8 @@ func limiterForEdit(ctx context.Context, rs *Requirements, tryUpgrade, mustSelec\n \n // raiseLimitsForUpgrades increases the module versions in maxVersions to the\n // versions that would be needed to allow each of the modules i...
2021-09-02T15:23:20
vercel/next.js
adefdd2aaaf9e0c05b616e5db2657858888df488
d9776ccc174be970fbb899214ec754601ecbbdbe
chore: show large data warning once per page on prod (#46323) <!-- 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/pages/_document.tsx", "patch": "@@ -41,6 +41,9 @@ type HeadHTMLProps = React.DetailedHTMLProps<\n \n type HeadProps = OriginProps & HeadHTMLProps\n \n+/** Set of pages that have triggered a large data warning on production mode. */\n+const largePageDataWarnings = new Set<string>...
2023-02-25T20:29:59
rust-lang/rust
0ea12c3c5fd218671ae42a99757a332fba8597cc
95a2212587f1b8500af1ac630322b0cb2e030c61
cfg_version: pull out dedicated syntax test from feature gate test The feature gate test was dual-purposing causing feature gate errors to distract from syntax exercises.
[ { "path": "tests/ui/cfg/cfg-version/syntax.rs", "patch": "@@ -0,0 +1,152 @@\n+//! Check `#[cfg(version(..))]` parsing.\n+\n+#![feature(cfg_version)]\n+\n+// Overall grammar\n+// ===============\n+//\n+// `#[cfg(version(..))]` accepts only the `version(VERSION_STRING_LITERAL)` predicate form, where\n+// only...
2025-05-25T16:04:20
electron/electron
cd8ceec62e5c127fd378ba97da2d41031923b18d
98a9d8a9e327195857cf9030b7ff5b017f7d6371
Send all crash reports to collection server. Crashpad client only send reports once per hour. It's different with breakpad. With this behavior, the other reports generated within an hour will be totally skipped, which causes the crash api test only run once with an hour. This patch unrestricts this time limit.
[ { "path": "atom/common/crash_reporter/crash_reporter_mac.mm", "patch": "@@ -64,10 +64,12 @@ void SetCrashKeyValue(const base::StringPiece& key,\n framework_bundle_path.Append(\"Resources\").Append(\"crashpad_handler\");\n \n crashpad::CrashpadClient crashpad_client;\n+ // Send all crash...
2015-05-30T00:47:52
huggingface/transformers
c6d0500d15b9eedc33e9131a6bec6db56282b875
4884b6bf41f26eb4f894214dc3ae34f80dbed9dd
[WIP] Add OneformerFastImageProcessor (#38343) * [WIP] OneformerFastImageProcessor * update init * Fully working oneformer image processor fast * change Nearest to Neares exact interpolation where needed * fix doc --------- Co-authored-by: yonigozlan <yoni.gozlan@huggingface.co> Co-authored-by: Yoni Gozlan <7453...
[ { "path": "docs/source/en/model_doc/oneformer.md", "patch": "@@ -38,7 +38,7 @@ This model was contributed by [Jitesh Jain](https://huggingface.co/praeclarumjj3\n \n ## Usage tips\n \n-- OneFormer requires two inputs during inference: *image* and *task token*. \n+- OneFormer requires two inputs during infe...
2025-07-22T20:41:39
golang/go
73a062c3e765aa953a84b128aa765a607b2df083
9581d891ab8c88bbf9e5b5142926fbca653551e6
cmd/compile/internal/types2: handle recursive type parameter constraints Check type constraints after the respective type parameter list has been associated with a parameterized type so that recursive type parameter constraints "see" a parameterized type. Fixes #45550. Fixes #47796. Change-Id: Iac74610ca017a78013820...
[ { "path": "src/cmd/compile/internal/types2/decl.go", "patch": "@@ -567,7 +567,7 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *Named\n \tif tdecl.TParamList != nil {\n \t\tcheck.openScope(tdecl, \"type parameters\")\n \t\tdefer check.closeScope()\n-\t\tnamed.tparams = check.co...
2021-09-07T20:58:49
vercel/next.js
d9776ccc174be970fbb899214ec754601ecbbdbe
624232d064a2b7f0389746ca7c6b6944433bf566
Fix duplicate link type asset generation (#46421) Addresses https://github.com/vercel/next.js/pull/46378#discussion_r1117924580. During development we collect pages directly from the dev server's watcher, which tracks pages from both node and edge runtimes. Hence here we can ignore the edge server when generating the ...
[ { "path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts", "patch": "@@ -122,24 +122,22 @@ async function collectNamedSlots(layoutPath: string) {\n return slots\n }\n \n-let edgeRouteTypes = new Set<string>()\n-let nodeRouteTypes = new Set<string>()\n+const edgeRouteTypes: string[] = []\n+c...
2023-02-25T19:47:00
nodejs/node
051e083ca44a0facbd49f89c857cde6f2f60342f
282c5cfc27532c750654be7154c3df11a7347416
test: fixed the arguments order in `assert.strictEqual` PR-URL: https://github.com/nodejs/node/pull/24414 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
[ { "path": "test/internet/test-dns.js", "patch": "@@ -693,7 +693,7 @@ req.oncomplete = function(err, domains) {\n process.on('exit', function() {\n console.log(`${completed} tests completed`);\n assert.strictEqual(running, false);\n- assert.strictEqual(expected, completed);\n+ assert.strictEqual(comple...
2018-11-17T11:24:37
huggingface/transformers
4884b6bf41f26eb4f894214dc3ae34f80dbed9dd
075a65657a26fdf4409c1a7df3a37b4a692b51ca
Fix link in "Inference server backends" doc (#39589) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "docs/source/en/transformers_as_backend.md", "patch": "@@ -40,7 +40,7 @@ vllm serve meta-llama/Llama-3.2-1B \\\n --model-impl transformers\n ```\n \n-Refer to the [vLLM docs](https://docs.vllm.ai/en/latest/models/transformers_backend.html) for more usage examples and tips on using a Transforme...
2025-07-22T16:44:08