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
huggingface/transformers
f12b50a09220260697f62400a921c6e596246c0a
41771ce4a10e5e99e8ece88918d6307dc0cca286
custom tok init fix (#43591) * custom tok init fix * test * pin rev * ruff * ruff2
[ { "path": "src/transformers/tokenization_python.py", "patch": "@@ -415,6 +415,9 @@ def __init__(self, **kwargs):\n \n self.tokens_trie = Trie()\n \n+ # Initialize total_vocab_size early to avoid issues if get_vocab() is called early (custom tokenizers)\n+ self.total_vocab_size = 0\n+\n...
2026-02-02T17:00:07
nodejs/node
4d798e1b1bbbbbf0a45fb478e153621fc37bb242
9fb8b8d0f71e7576759e2b9ebf6f64403a336a13
bootstrap: provide usable error on missing internal module Due to how bootstrap/loaders.js itself is loaded and invoked, stacktraces from it are munged and no longer point back to the error source. That resulted in the following unhelpful error if an internal module was missing or misnamed: ``` internal/bootstrap/lo...
[ { "path": "lib/internal/bootstrap/loaders.js", "patch": "@@ -186,6 +186,9 @@ function nativeModuleRequire(id) {\n }\n \n const mod = NativeModule.map.get(id);\n+ // Can't load the internal errors module from here, have to use a raw error.\n+ // eslint-disable-next-line no-restricted-syntax\n+ if (!mo...
2019-09-17T19:45:23
golang/go
2ea9376266b71e8a0752b8b3663bbf5b9ed48c4d
109a18dce7ef8ecb2aa60cef25362ebd05661ea0
go/types, types2: better error message for invalid type parameter term The spec says "In a union, a term cannot be a type parameter,...", but it's really the type in a term that cannot be a type parameter. (Also, for the spec's purposes, a single term is still a union.) This CL changes the current error message from:...
[ { "path": "src/cmd/compile/internal/types2/testdata/examples/constraints.go", "patch": "@@ -44,9 +44,9 @@ type (\n type (\n \t_[T interface{ *T } ] struct{} // ok\n \t_[T interface{ int | *T } ] struct{} // ok\n-\t_[T interface{ T /* ERROR cannot embed a type parameter */ } ] struct{}\n-\t_[T interf...
2022-03-30T19:19:24
vercel/next.js
436408272e093ffe1f1b62ddb179a1863ea2f7de
5f161761a9e4a154f30954ec0fcda1bc1e634ed1
docs: fix codeblock for redirect (#53120) Just needs a language 👍
[ { "path": "docs/02-app/02-api-reference/04-functions/redirect.mdx", "patch": "@@ -11,7 +11,7 @@ If you need to redirect to a 404, use the [`notFound` function](/docs/app/api-re\n \n The `redirect` function accepts two arguments:\n \n-```\n+```js\n redirect(path, type)\n ```\n ", "additions": 1, "del...
2023-07-24T16:48:15
huggingface/transformers
41771ce4a10e5e99e8ece88918d6307dc0cca286
559af4457ccf43aaa0dcd5313248a14e8db6430b
More export friendly rewrites and skipping the failing ones (#43436) * more dynamo best practices * skip models that fail torch export * fix repo * fix * avoid len * Apply suggestion from @IlyasMoutawwakil * fix export for all mamba ssms * fix time series models * less flaky tests * pass pe audio * final fi...
[ { "path": "src/transformers/models/bamba/modeling_bamba.py", "patch": "@@ -41,7 +41,7 @@\n from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel\n from ...processing_utils import Unpack\n-from ...utils import Tran...
2026-02-02T16:56:09
electron/electron
3c7c584444873221521a3154571630bfdd62f0e6
52350b5e35a871247c24ff31ed2720690683cf6f
🐛 Don't load 'repl' unless needed Git bisect revealed that process.stdout failed to initiate (and was replaced with a write stream that does nothing) when the 'repl' module was loaded. This commit moves `require('repl')` so that it is only loaded when the --interactive flag is present. Fixes #5051
[ { "path": "default_app/main.js", "patch": "@@ -3,7 +3,6 @@ const {app, dialog, shell, Menu} = require('electron')\n const fs = require('fs')\n const Module = require('module')\n const path = require('path')\n-const repl = require('repl')\n const url = require('url')\n \n // Parse command line options.\n@@ -...
2016-06-19T07:34:48
nodejs/node
2daf883a18951b4cf48216f60859ceda9dec9873
a0c6cf8eb1bbe4b964b8267341e894a8fafeab51
http: throw if 'host' agent header is not a string value If the 'host' agent header is an array or other non-string value, throw. PR-URL: https://github.com/nodejs/node/pull/29568 Fixes: https://github.com/nodejs/node/issues/29408 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gma...
[ { "path": "lib/_http_agent.js", "patch": "@@ -27,7 +27,11 @@ const net = require('net');\n const EventEmitter = require('events');\n const debug = require('internal/util/debuglog').debuglog('http');\n const { async_id_symbol } = require('internal/async_hooks').symbols;\n-\n+const {\n+ codes: {\n+ ERR_IN...
2019-09-12T07:22:05
golang/go
109a18dce7ef8ecb2aa60cef25362ebd05661ea0
a9d13a9c230bafba64469f126202315ba4d24eea
debug/elf: check for negative shoff and phoff fields No test because we could add an infinite number of tests of bogus data. For #47653 Fixes #52035 Change-Id: Iec7e2fe23f2dd1cf14bad2475422f243f51028f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/396880 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot:...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -325,6 +325,13 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\tshstrndx = int(hdr.Shstrndx)\n \t}\n \n+\tif shoff < 0 {\n+\t\treturn nil, &FormatError{0, \"invalid shoff\", shoff}\n+\t}\n+\tif phoff < 0 {\n+\t\treturn nil, &FormatError{0, \"invalid phoff...
2022-03-31T01:47:11
vercel/next.js
2cd0c8abc79532ab462c5de08a8dbc048471d9eb
c8eb7f3de08334764a0d6f71f390b9aba37e6ccb
Add app, error, and document entrypoints (#53013) ### What adds endpoints for `_app` `_error` and `_document` for pages Co-authored-by: Tobias Koppers <1365881+sokra@users.noreply.github.com>
[ { "path": "packages/next-swc/crates/napi/src/next_api/project.rs", "patch": "@@ -207,6 +207,9 @@ impl NapiMiddleware {\n struct NapiEntrypoints {\n pub routes: Vec<NapiRoute>,\n pub middleware: Option<NapiMiddleware>,\n+ pub pages_document_endpoint: External<ExternalEndpoint>,\n+ pub pages_app...
2023-07-24T08:57:48
rust-lang/rust
e6a8a133bfae61fd03cfd2d65ed3673c10997846
4b506ca0e1821e71fd8a6c7434dc02b5bd432a34
Fix display of `use<>` syntax
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/display.rs", "patch": "@@ -2328,6 +2328,7 @@ impl HirDisplayWithExpressionStore for TypeBound {\n store[*path].hir_fmt(f, store)\n }\n TypeBound::Use(args) => {\n+ write!(f, \"use<\")?;\n ...
2025-07-10T21:08:24
nodejs/node
0a0b2b7f5e35108844982a5ecb6fd2c83ddbc3c7
2f497a67ad8797e89944d484b2e156fc1d6652f3
doc: add missing complete property to http2 docs PR-URL: https://github.com/nodejs/node/pull/29571 Fixes: https://github.com/nodejs/node/issues/28622 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/http2.md", "patch": "@@ -2683,6 +2683,16 @@ added: v8.4.0\n The request authority pseudo header field. It can also be accessed via\n `req.headers[':authority']`.\n \n+#### request.complete\n+<!-- YAML\n+added: v12.10.0\n+-->\n+\n+* {boolean}\n+\n+The `request.complete` property will be `t...
2019-09-16T16:02:23
electron/electron
3d010a8988ef23b98c4653891645c57d11fe2d80
52350b5e35a871247c24ff31ed2720690683cf6f
fixes transformed webview size
[ { "path": "lib/renderer/web-view/web-view.js", "patch": "@@ -166,6 +166,12 @@ var WebViewImpl = (function () {\n resizeEvent = new Event('resize', {\n bubbles: true\n })\n+\n+ // Using client size values, because when a webview is transformed `newSize`\n+ // is incorrect\n+ newSize.wi...
2016-06-18T22:41:42
golang/go
a9d13a9c230bafba64469f126202315ba4d24eea
821420d6bbc53d4cd8b3f9a903fccd0c6432eb6f
cmd/link: read crt2.o for windows internal-linking CGO For Windows internal linking with CGO, when using more modern LLVM-based compilers, we may need to read in the object file "crt2.o" so as to have a definition of "atexit" (for example when linking the runtime/cgo test), and we also need to allow for the possibilit...
[ { "path": "src/cmd/link/internal/ld/ar.go", "patch": "@@ -38,6 +38,8 @@ import (\n \t\"internal/buildcfg\"\n \t\"io\"\n \t\"os\"\n+\t\"path/filepath\"\n+\t\"strings\"\n )\n \n const (\n@@ -65,6 +67,9 @@ type ArHdr struct {\n // define them. This is used for the compiler support library\n // libgcc.a.\n func...
2022-02-03T13:23:10
vercel/next.js
85676da42cc7bb79ee15e9b1188e921cc8756f18
caeaa74dda7d6adac27d355c02d60fba712bdef8
chore(docs): Extend the options for custom server init (#52851) ## For Contributors ### Improving Documentation While working with a custom server, I noticed that [the list of available options within the codebase](https://github.com/vercel/next.js/blob/canary/packages/next/src/server/base-server.ts#L138-L180) was ...
[ { "path": "docs/03-pages/01-building-your-application/06-configuring/10-custom-server.mdx", "patch": "@@ -88,10 +88,16 @@ const app = next({})\n \n The above `next` import is a function that receives an object with the following options:\n \n-- `dev`: `Boolean` - Whether or not to launch Next.js in dev mode...
2023-07-23T17:25:07
nodejs/node
2f497a67ad8797e89944d484b2e156fc1d6652f3
3f3ad38c878e2acdd36f724542c9aecd8b4474e9
repl: fix bug in fs module autocompletion PR-URL: https://github.com/nodejs/node/pull/29555 Fixes: https://github.com/nodejs/node/issues/29424 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
[ { "path": "lib/repl.js", "patch": "@@ -1193,7 +1193,7 @@ function complete(line, callback) {\n d.name.startsWith(baseName))\n .map((d) => d.name);\n completionGroups.push(filteredValue);\n- completeOn = filePath;\n+ completeOn = baseName;\n } catch {}\n }\...
2019-09-16T09:08:18
golang/go
2b8178c14d8f71a3f022653c2e779e92eea9cdec
a80070e0cf0b65d619b6669a789d27746a5b2126
text/template: remove newline special casing in documentation Updates #29770 Fixes #51872 Change-Id: Icee660c8cc6c69a79ad11e818dd8ab40a344e800 Reviewed-on: https://go-review.googlesource.com/c/go/+/394676 Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Trust: Daniel Martí <mvdan@mvdan.cc> Trust: Ian Lance Taylor <iant@gol...
[ { "path": "src/text/template/doc.go", "patch": "@@ -18,7 +18,6 @@ structure as execution proceeds.\n The input text for a template is UTF-8-encoded text in any format.\n \"Actions\"--data evaluations or control structures--are delimited by\n \"{{\" and \"}}\"; all text outside actions is copied to the outpu...
2022-03-22T20:53:10
rust-lang/rust
e30313cc6b140e0a7f88e85bf9ec9440bfb4c82e
19c1c709054ea1964d942259c5c33ad6489cd1e0
fix `legacy_numeric_constants` suggestion when call is wrapped in parens
[ { "path": "clippy_lints/src/legacy_numeric_constants.rs", "patch": "@@ -122,17 +122,17 @@ impl<'tcx> LateLintPass<'tcx> for LegacyNumericConstants {\n \"usage of a legacy numeric constant\",\n )\n // `<integer>::xxx_value` check\n- } else if let QPath::TypeRelative...
2025-06-18T00:21:44
vercel/next.js
caeaa74dda7d6adac27d355c02d60fba712bdef8
e4871f6927b4e066088bd680c528e64e49869524
docs: fix typo in `08-parallel-routes.mdx` (#53069) ### What? Fix a typo in `08-parallel-routes.mdx` by adding a whitespace. ### Why? <img width="783" alt="스크린샷 2023-07-23 오후 4 11 22" src="https://github.com/vercel/next.js/assets/8033896/0bb92fc5-5a6f-4461-895a-a956abf52a9d"> ### How?
[ { "path": "docs/02-app/01-building-your-application/01-routing/08-parallel-routes.mdx", "patch": "@@ -165,7 +165,7 @@ Parallel Routing can be used to render modals.\n height=\"687\"\n />\n \n-The `@authModal` slot renders a`<Modal>` component that can be shown by navigating to a matching route, for exampl...
2023-07-23T17:01:38
huggingface/transformers
559af4457ccf43aaa0dcd5313248a14e8db6430b
0294359061c39dfa9f7e64d8eacf4fd7fb173aab
Cast byte_count to int in caching_allocator_warmup for MPS compatibility (#43608) Fix: Cast byte_count to int in caching_allocator_warmup for MPS compatibility
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4728,7 +4728,7 @@ def caching_allocator_warmup(model: PreTrainedModel, expanded_device_map: dict,\n ) - torch_accelerator_module.memory_allocated(index)\n byte_count = int(max(0, byte_count - unused_memory))\n # We...
2026-02-02T16:55:50
golang/go
a80070e0cf0b65d619b6669a789d27746a5b2126
cc46cac3bc59c35e22e17471d70e28fd3705d4da
math/big: call norm when returning success from Rat SetString After CL 24430, reflect.DeepEqual no longer returns true when comparing a *Rat built with (*Rat).SetString("0") with one built with (*Rat).SetInt64(0). These should be equivalent, but because (*Rat).SetString does not call norm() when returning the zero val...
[ { "path": "src/math/big/ratconv.go", "patch": "@@ -113,7 +113,7 @@ func (z *Rat) SetString(s string) (*Rat, bool) {\n \n \t// special-case 0 (see also issue #16176)\n \tif len(z.a.abs) == 0 {\n-\t\treturn z, true\n+\t\treturn z.norm(), true\n \t}\n \t// len(z.a.abs) > 0\n ", "additions": 1, "deletio...
2021-11-16T18:36:15
nodejs/node
90b5cdb9e4462fe7d826cc4804cd91431db1682e
80cc6f52f5a0618477117f87bff5e209711236de
doc: add leap second behavior notes for napi methods napi_create_date and napi_get_date_value ignore leap seconds as per ECMAScript spec that follows POSIX spec for time, comments added to the documentation where added fo clarify it. PR-URL: https://github.com/nodejs/node/pull/29569 Fixes: https://github.com/nodejs/n...
[ { "path": "doc/api/n-api.md", "patch": "@@ -1775,6 +1775,9 @@ napi_status napi_create_date(napi_env env,\n \n Returns `napi_ok` if the API succeeded.\n \n+This API does not observe leap seconds; they are ignored, as\n+ECMAScript aligns with POSIX time specification.\n+\n This API allocates a JavaScript `Dat...
2019-09-15T18:19:07
electron/electron
a8a6f6f85650b2ce207d07df7687afb717215d23
785ae8daefe86b0581fd87feef0b2007d653a38f
:apple: Fix context menus selecting first item by default.
[ { "path": "atom/browser/api/atom_api_menu_mac.h", "patch": "@@ -19,7 +19,7 @@ class MenuMac : public Menu {\n protected:\n explicit MenuMac(v8::Isolate* isolate);\n \n- void PopupAt(Window* window, int x, int y, int positioning_item = 0) override;\n+ void PopupAt(Window* window, int x, int y, int posit...
2016-06-17T18:02:01
vercel/next.js
1494283a741b3002480637758a21fa0abc9c23a5
a0ea5f2d792e395e6f1bf241fa3a1dd5de13f338
fix: Add `Next-Url` to http vary in consideration of intercept routes. (#52746) ### Why We calculate the “next url” depending on the router state and the previous router state so that when you navigate to a route, the proxy matches with that header and returns you the intercepted route if matching ### What - Fixes ...
[ { "path": "packages/next/src/client/components/app-router-headers.ts", "patch": "@@ -7,7 +7,7 @@ export const NEXT_URL = 'Next-Url' as const\n export const FETCH_CACHE_HEADER = 'x-vercel-sc-headers' as const\n export const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n export const RSC_VARY_HEADER ...
2023-07-22T21:38:23
huggingface/transformers
0294359061c39dfa9f7e64d8eacf4fd7fb173aab
07aed9d72889218ef2323dc7f02e4bfdf8b94677
[Docs] Complete missing Llama4 configuration docs (#43460) * [Docs]: Complete missing docs for Llama4Config * fix: Apply ruff formatting again * [Docs] Fix type hints (moe_layers list, floats) and style * [Docs] Updated docstring to describe the functional impact of certain parameters instead of raw definition ---...
[ { "path": "src/transformers/models/llama4/configuration_llama4.py", "patch": "@@ -56,15 +56,22 @@ class Llama4VisionConfig(PreTrainedConfig):\n The size (resolution) of each patch.\n norm_eps (`float`, *optional*, defaults to 1e-05):\n The epsilon used by the layer normalizat...
2026-02-02T16:52:40
golang/go
cc46cac3bc59c35e22e17471d70e28fd3705d4da
90b29e186576d2682c024b0f0b90c6ad98e824d7
strings: limits allocation size for SplitN So that `strings.SplitN("", "T", int(144115188075855872))` does not panic. Change-Id: Iea00417e61780bcaf0fee02fa2b18026d89bc545 GitHub-Last-Rev: d1f45b44a8011ddb27c71e1bc9983b62b5d3d771 GitHub-Pull-Request: golang/go#51755 Reviewed-on: https://go-review.googlesource.com/c/go...
[ { "path": "src/strings/strings.go", "patch": "@@ -244,6 +244,9 @@ func genSplit(s, sep string, sepSave, n int) []string {\n \t\tn = Count(s, sep) + 1\n \t}\n \n+\tif n > len(s)+1 {\n+\t\tn = len(s) + 1\n+\t}\n \ta := make([]string, n)\n \tn--\n \ti := 0", "additions": 3, "deletions": 0, "languag...
2022-03-20T21:34:42
nodejs/node
3adec437917005650ea9e77fdf1460ee1d2f4a89
49cf67efd66a94a93f4c91be6c39125e7f896ee7
test: fix flaky test-inspector-connect-main-thread Using `console.log()` likely interferes with the functionality of the test, which also checks the interaction between inspector and `console.log()` as part of the test. Using `process._rawDebug()` solves that issue. Refs: https://github.com/nodejs/node/pull/28870 Ref...
[ { "path": "test/parallel/test-inspector-connect-main-thread.js", "patch": "@@ -27,10 +27,10 @@ async function post(session, method, params) {\n session.post(method, params, (error, success) => {\n messagesSent.push(method);\n if (error) {\n- console.log(`Message ${method} produced an ...
2019-09-17T11:50:04
huggingface/transformers
07aed9d72889218ef2323dc7f02e4bfdf8b94677
751cff7c2cf564e551f6a779970a0ee285f90cdf
Fix t5 failures (#43374) * set eos_token_id in GenerationConfig * fix expectation * pop wo from dtype_plan when for bfloat16 * fix another expectation (same for amd & nvidia) * last one * fix repo-consistency * fix * override post_init() instead of __init__() * use _keep_in_fp32_modules in from_pretrained() wh...
[ { "path": "src/transformers/integrations/executorch.py", "patch": "@@ -879,6 +879,7 @@ def __init__(\n \"batch_size\": batch_size,\n \"max_cache_len\": max_cache_length,\n },\n+ eos_token_id=model.generation_config.eos_token_id,\n )\n se...
2026-02-02T16:43:54
vercel/next.js
a0ea5f2d792e395e6f1bf241fa3a1dd5de13f338
7843204938aee886c381a3871983bfb8f803664e
Fix formData code snippet in route handler docs (#52532) ### Why? The code snippet in the Route handler `formData` documentation ```ts import { NextResponse } from 'next/server' export async function POST(request: Request) { const formData = await request.formData() return NextResponse.json({ formData }) } `...
[ { "path": "docs/02-app/01-building-your-application/01-routing/10-router-handlers.mdx", "patch": "@@ -553,7 +553,9 @@ import { NextResponse } from 'next/server'\n \n export async function POST(request: Request) {\n const formData = await request.formData()\n- return NextResponse.json({ formData })\n+ co...
2023-07-22T21:15:12
nodejs/node
49cf67efd66a94a93f4c91be6c39125e7f896ee7
e2dcbf1c3231513c38151d729f180a54ea902da9
doc: update experimental loader hooks example code It fix 2 issues in provided Loader hooks examples: 1. Original ``new URL(`${process.cwd()}/`, 'file://');`` is not cross-platform, it gives wrong URL on windows 2. Based on `CHECK` in ModuleWrap::Resolve (node 12.9.1, https://github.com/nodejs/node/blob/v12.9.1/src/mo...
[ { "path": "doc/api/esm.md", "patch": "@@ -573,8 +573,14 @@ The resolve hook returns the resolved file URL and module format for a\n given module specifier and parent file URL:\n \n ```js\n-const baseURL = new URL(`${process.cwd()}/`, 'file://');\n-\n+import { URL, pathToFileURL } from 'url';\n+const baseURL...
2019-08-30T03:09:08
electron/electron
bf6133d61f35cf040e5ea4227b88434c2f74bd2b
66fe1e48e8e465948ed96ca2f5c4250930c3f54b
:memo: Fix minor text issues.
[ { "path": "docs/api/tray.md", "patch": "@@ -197,8 +197,8 @@ Displays a tray balloon.\n * `x` Integer\n * `y` Integer\n \n-Popups the context menu of tray icon. When `menu` is passed, the `menu` will\n-showed instead of the tray's context menu.\n+Pops up the context menu of the tray icon. When `menu` is ...
2016-06-17T15:45:12
golang/go
81f1cc52abb0b004d8cd1b130ea293026419acac
0a6ddcc4f03b5a89bf2eadee1fe284faf0e20be2
html/template: make FuncMap a type alias of text/template.FuncMap In preparation to make html/template and text/template use a single generics package, this change make FuncMap a type alias of text/template.FuncMap. Fixes #46121 Change-Id: I5e94cc8fdf4fe029ff223992b5cdfe79f9c098ab Reviewed-on: https://go-review.goog...
[ { "path": "api/except.txt", "patch": "@@ -505,3 +505,5 @@ pkg unicode, const Version = \"6.3.0\"\n pkg unicode, const Version = \"7.0.0\"\n pkg unicode, const Version = \"8.0.0\"\n pkg unicode, const Version = \"9.0.0\"\n+pkg html/template, method (*Template) Funcs(FuncMap) *Template\n+pkg html/template, ty...
2022-03-05T11:48:27
vercel/next.js
bc9d69dea45d6ae6545165b9c2651082927124bb
04e46cbf40924b380c3f613c878519280d7d1c24
chore(ci): always run validate-docs-links action (#53022) We should unconditionally run this action so we can mark it as "required". It only takes about 13 seconds for each PR so it shouldn't put too much additional load on our CI infra. <img width="811" alt="image" src="https://github.com/vercel/next.js/assets/2298...
[ { "path": ".github/workflows/validate-docs-links.yml", "patch": "@@ -1,9 +1,7 @@\n name: 'Validate Doc Links'\n on:\n pull_request:\n- paths:\n- - 'docs/**.mdx'\n- - 'errors/*.mdx'\n+ types: [opened, synchronize]\n \n jobs:\n link-check:", "additions": 1, "deletions": 3, "lan...
2023-07-22T05:41:53
huggingface/transformers
751cff7c2cf564e551f6a779970a0ee285f90cdf
645db400b69e66867f0c011c0ab900042fc0ac6d
Add EoMT with DINOv3 backbone (#41212) * Add EoMT DINOv3 model * Add EoMT-DINOv3 conversion script * Refine EoMT-DINOv3 conversion to support timm backbones * Fix DINOv3 conversion key mapping * Add debug trace for EoMT-DINOv3 verification * Fix EoMT-DINOv3 verification mapping * Remove script * Fix attention m...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -827,6 +827,8 @@\n title: EfficientNet\n - local: model_doc/eomt\n title: EoMT\n+ - local: model_doc/eomt_dinov3\n+ title: EoMT-DINOv3\n - local: model_doc/focalnet\n title: FocalNet\n - local: model_...
2026-02-02T16:09:04
nodejs/node
3d841fe20d732111094c3f62febd5a6b8b483b91
70abb4ffe40c8526c5415c02c20b7b3a3cdbacd2
inspector: new API - Session.connectToMainThread This API is designed to enable worker threads use Inspector protocol on main thread (and other workers through NodeWorker domain). Note that worker can cause dead lock by suspending itself. I will work on a new API that will allow workers to be hidden from the inspecto...
[ { "path": "doc/api/errors.md", "patch": "@@ -1215,6 +1215,12 @@ The `inspector` module is not available for use.\n While using the `inspector` module, an attempt was made to use the inspector\n before it was connected.\n \n+<a id=\"ERR_INSPECTOR_NOT_WORKER\"></a>\n+### ERR_INSPECTOR_NOT_WORKER\n+\n+An API w...
2019-07-26T17:40:54
golang/go
0a6ddcc4f03b5a89bf2eadee1fe284faf0e20be2
077573018027c30e5f422d50f0b96e1733ac6001
go/types, types2: no "imported but not used" error for unimported packages If a package could not be imported for whatever reason, the type checker creates fake package with which it continues for more tolerant type checking. Do not report an "imported but not used" error in that case. Clarify a few comments along t...
[ { "path": "src/cmd/compile/internal/types2/resolver.go", "patch": "@@ -179,8 +179,9 @@ func (check *Checker) importPackage(pos syntax.Pos, path, dir string) *Package {\n \t// package should be complete or marked fake, but be cautious\n \tif imp.complete || imp.fake {\n \t\tcheck.impMap[key] = imp\n-\t\t// O...
2022-03-30T22:09:13
vercel/next.js
26a57af38938625110ea5ca49428cfb871db2508
e4b6c4e0b03a4659de4e0229447c00bcf0d4a9b5
chore(docs): fix broken link (#53021) This link is failing CI as seen here: https://github.com/vercel/next.js/actions/runs/5623454975/job/15238167610 ``` Error: The action could not create a Github comment because it is initiated from a forked repo. View the action logs for a list of broken links. This PR introduce...
[ { "path": "docs/02-app/01-building-your-application/01-routing/03-linking-and-navigating.mdx", "patch": "@@ -4,7 +4,7 @@ description: Learn how navigation works in Next.js, and how to use the Link Comp\n related:\n description: Learn more about statically typed links with TypeScript.\n links:\n- - ap...
2023-07-21T18:28:24
huggingface/transformers
fb22e73f322d38ec2ccd9d5c76f9c27aab288b45
010b9f1e64ea29bf071da2437809b6147cde5e26
[loading] Fix forced upcasting to fp32 (#43683) * start * fix * add strict tests * small fixes * stricter * fix * fix * small typo * improve signature
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -40,7 +40,7 @@\n \n if TYPE_CHECKING:\n from .integrations.tensor_parallel import TensorParallelLayer\n- from .modeling_utils import PreTrainedModel\n+ from .modeling_utils import LoadStateDictConfig, PreTrainedModel\n from .quan...
2026-02-02T15:39:37
nodejs/node
e095e645e52f14e135e80f0f910c812ca767ff31
233cdb64a95eaabce922d773f3e312565e18a9d4
src: print exceptions from PromiseRejectCallback Previously, leaving the exception lying around would leave the JS engine in an invalid state, as it was not expecting exceptions to be thrown from the C++ `PromiseRejectCallback`, and lead to hard crashes under some conditions (e.g. with coverage enabled). PR-URL: http...
[ { "path": "src/node_task_queue.cc", "patch": "@@ -10,6 +10,7 @@\n \n namespace node {\n \n+using errors::TryCatchScope;\n using v8::Array;\n using v8::Context;\n using v8::Function;\n@@ -111,8 +112,17 @@ void PromiseRejectCallback(PromiseRejectMessage message) {\n }\n \n Local<Value> args[] = { type, pr...
2019-09-09T21:43:21
golang/go
077573018027c30e5f422d50f0b96e1733ac6001
3b7fce24cda8b9b245bae94aee9fafea87926c50
cmd/compile/internal/syntax: better errors for syntax errors in lists For syntax errors in various (syntactic) lists, instead of reporting a set of "expected" tokens (which may be incomplete), provide context and mention "possibly missing" tokens. The result is a friendlier and more accurate error message. Fixes #492...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -472,7 +472,7 @@ func isEmptyFuncDecl(dcl Decl) bool {\n //\n // list = [ f { sep f } [sep] ] close .\n //\n-func (p *parser) list(sep, close token, f func() bool) Pos {\n+func (p *parser) list(context string, sep, close token, f func() boo...
2022-03-30T20:23:37
huggingface/transformers
010b9f1e64ea29bf071da2437809b6147cde5e26
0fa2c2f06f91129b89462e0136c0a25618e1a31b
Fix FP8Expert for Qwen (#43670) fix FP8Expert for Qwen Signed-off-by: yiliu30 <yi4.liu@intel.com>
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -625,7 +625,7 @@ def __init__(self, config, block_size, dtype=torch.float8_e4m3fn):\n from ..activations import ACT2FN\n \n self.block_size = block_size\n- self.num_experts = config.num_local_experts\n+ ...
2026-02-02T15:18:04
vercel/next.js
1fefb4a8d201369b19e97df077cab1946d344d33
732219e9df4923ac847256751f73c72f3f88de0b
Reland "Refine the not-found rendering process for app router" (#52985) Reland #52790 Reverts vercel/next.js#52977 was failed due to failed job [vercel/next.js/actions/runs/5616458194/job/15220295829](https://github.com/vercel/next.js/actions/runs/5616458194/job/15220295829) Should be fine to resolve with htt...
[ { "path": "packages/next-swc/crates/next-core/js/src/dev/hot-reloader.tsx", "patch": "@@ -5,22 +5,12 @@ import { useRouter, usePathname } from 'next/dist/client/components/navigation'\n import { useEffect } from 'react'\n import { subscribeToUpdate } from '@vercel/turbopack-ecmascript-runtime/dev/client/hmr...
2023-07-21T17:09:30
nodejs/node
233cdb64a95eaabce922d773f3e312565e18a9d4
30e919a3cfd663ec3f1d971dcdb9970ff8a4779e
build: allow clang 10+ in configure.py Detected on NetBSD/amd64. Fixes: https://github.com/nodejs/node/issues/29536 PR-URL: https://github.com/nodejs/node/pull/29541 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewe...
[ { "path": "configure.py", "patch": "@@ -724,7 +724,7 @@ def get_nasm_version(asm):\n \n def get_llvm_version(cc):\n return get_version_helper(\n- cc, r\"(^(?:FreeBSD )?clang version|based on LLVM) ([3-9]\\.[0-9]+)\")\n+ cc, r\"(^(?:FreeBSD )?clang version|based on LLVM) ([0-9]+\\.[0-9]+)\")\n \n def...
2019-09-13T01:42:24
golang/go
1ac16586421070cdc76c62b5dfd5e74a4b47fca8
ca1e509552cab36072016de44234f30072b9e703
cmd/go: remove arbitrary sleep in TestScript/test_chatty_parallel_success_sleepy (Also rename it to no longer describe itself in terms of sleeping.) This test previously relied on the scheduler to wake up a goroutine to write the "--- PASS: TestFast" line within 100ms of TestFast actually finishing. On some platforms...
[ { "path": "src/cmd/go/testdata/script/test_chatty_parallel_success_run.txt", "patch": "@@ -0,0 +1,41 @@\n+# Run parallel chatty tests. Assert on CONT lines. This test makes sure that\n+# multiple parallel outputs have the appropriate CONT lines between them.\n+go test -parallel 3 chatty_parallel -v\n+\n+std...
2022-02-16T15:01:20
huggingface/transformers
0fa2c2f06f91129b89462e0136c0a25618e1a31b
e5c8b0d14a8d9822d684b92072b93c4c3422b0cb
Simplify loading structure (#43589) * start a bit more more better better better fix use set fix default doc fix doc fix * fix tests * fix * rename * small fix * colors
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -20,7 +20,7 @@\n import re\n from abc import abstractmethod\n from collections import defaultdict\n-from collections.abc import Callable, MutableMapping, MutableSet\n+from collections.abc import Callable\n from concurrent.futures import Future...
2026-02-02T13:28:39
vercel/next.js
bb5fced30aeea4f9ba77cb22d4d505e7c71d3a98
3e34b9f2d2f583fc96e831f73a280d813136c47b
Changed package manager for install-native.mjs to pnpm (#52971) fixes #52970 Yarn 3 has removed the "--force" flag. This can cause issues with building the Next.js repository if Yarn 3 is activated on a development machine (specifically the postinstall script "install-native.mjs"). Using pnpm as the package manager...
[ { "path": "scripts/install-native.mjs", "patch": "@@ -56,7 +56,9 @@ import fs from 'fs-extra'\n path.join(tmpdir, 'package.json'),\n JSON.stringify(pkgJson)\n )\n- let { stdout } = await execa('yarn', ['--force'], { cwd: tmpdir })\n+ let { stdout } = await execa('pnpm', ['install', '--...
2023-07-21T16:55:20
electron/electron
52525ef6bc2a4a06df621f645a5cf1a229ce8204
64ae5cf5a1d30158a79c386abe3bf3f5f0dcdc82
Add failing spec for icon progress crash
[ { "path": "spec/api-browser-window-spec.js", "patch": "@@ -337,6 +337,17 @@ describe('browser-window module', function () {\n })\n })\n \n+ describe('BrowserWindow.setProgressBar(progress)', function () {\n+ it('sets the progress', function () {\n+ assert.doesNotThrow(function () {\n+ ...
2016-06-16T21:57:07
nodejs/node
7c9ee6dd88cc2908a3db70eba9c15eddd1112c50
3675f402ab1114675c5be7950d38b7e168ba5771
util: add encodeInto to TextEncoder Add function encodeInto to TextEncoder, and add MessageChannel to the encodeInto.any.js test. Fixes: https://github.com/nodejs/node/issues/28851 Fixes: https://github.com/nodejs/node/issues/26904 Refs: https://github.com/nodejs/node/pull/28862 Co-authored-by: AtticusYang <yyongtai@...
[ { "path": "doc/api/util.md", "patch": "@@ -1076,6 +1076,24 @@ The `TextEncoder` class is also available on the global object.\n UTF-8 encodes the `input` string and returns a `Uint8Array` containing the\n encoded bytes.\n \n+### textEncoder.encodeInto(src, dest)\n+\n+* `src` {string} The text to encode.\n+*...
2019-09-10T23:13:01
huggingface/transformers
5ccea2304ec48c814038cfcdd57e1373d95b0cf8
8fce0a18de037689384bc4b21da5107127eda539
Make sure hub errors are surfaced in `PreTrainedTokenizerBase` (#43675) In `PreTrainedTokenizerBase.from_pretrained` this commit 73a13f8 had a dry try/except that was hiding possible hub issues.
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -1613,29 +1613,26 @@ def from_pretrained(\n # Check for versioned tokenizer files\n if \"tokenizer_file\" in vocab_files:\n fast_tokenizer_file = FULL_TOKENIZER_FILE\n- try:\n- ...
2026-02-02T12:40:46
golang/go
ca1e509552cab36072016de44234f30072b9e703
83e9a97f62af41e65e37e096a4ed71f6a59d183e
cmd/dist: delete special case for release branches without VERSION findgoversion has some logic from before the go1 release that only has effect when on a release branch without a VERSION file. Starting with release-branch.go1 and the go1 tag a decade ago, release branch have always had a VERSION file checked in. (Th...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -316,34 +316,6 @@ func chomp(s string) string {\n \treturn strings.TrimRight(s, \" \\t\\r\\n\")\n }\n \n-func branchtag(branch string) (tag string, precise bool) {\n-\tlog := run(goroot, CheckExit, \"git\", \"log\", \"--decorate=full\", \"--format=format:%d\",...
2022-03-19T00:15:15
vercel/next.js
3866386a2941fa8a6a25a91d04c33d3d4a9ca6df
e0a3e87d00aed218e1c59d16c4d23cee0db39713
chore: improve turbopack test snapshots and error recovery (vercel/turbo#5574) ### Description Issue snapshots now get saved as human-readable text instead of the `.dbg()` output Execution eval errors get handled properly
[ { "path": "crates/turbopack-test-utils/Cargo.toml", "patch": "@@ -10,14 +10,16 @@ autobenches = false\n bench = false\n \n [dependencies]\n-anyhow = \"1.0.47\"\n+anyhow = { workspace = true }\n once_cell = { workspace = true }\n+regex = { workspace = true, features = [\"pattern\"] }\n serde = { workspace = ...
2023-07-21T16:33:13
huggingface/transformers
8fce0a18de037689384bc4b21da5107127eda539
e4b22baa9b14560dc37657bd0109563a9bf3a4e3
Fix `FP8Expert` for DeepSeek R1 (#43616) * use moe_intermediate_size for ds Signed-off-by: yiliu30 <yi4.liu@intel.com> * format Signed-off-by: yiliu30 <yi4.liu@intel.com> --------- Signed-off-by: yiliu30 <yi4.liu@intel.com> Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -627,7 +627,9 @@ def __init__(self, config, block_size, dtype=torch.float8_e4m3fn):\n self.block_size = block_size\n self.num_experts = config.num_local_experts\n self.hidden_dim = config.hidden_size\n- ...
2026-02-02T11:55:15
nodejs/node
3675f402ab1114675c5be7950d38b7e168ba5771
b64446648b61085715908b2769bbdfee7b2c84e4
crypto: fix OpenSSL return code handling PR-URL: https://github.com/nodejs/node/pull/29489 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_crypto.cc", "patch": "@@ -5218,15 +5218,16 @@ bool PublicKeyCipher::Cipher(Environment* env,\n return false;\n \n if (digest != nullptr) {\n- if (!EVP_PKEY_CTX_set_rsa_oaep_md(ctx.get(), digest))\n+ if (EVP_PKEY_CTX_set_rsa_oaep_md(ctx.get(), digest) <= 0)\n return fals...
2019-09-08T17:19:35
rust-lang/rust
a11ee5614c052d6339c56c2673780468c96dbc16
df53b3dc04950d980bd28ec4b04f48cd0cd01237
fix: Include frontmatter in -Zunpretty output In the implementation (#140035), this was left as an open question for the tracking issue (#136889). My assumption is that this should be carried over. Thankfully, either way, `-Zunpretty` is unstable and we can always change it even if we stabilize frontmatter.
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state.rs", "patch": "@@ -120,7 +120,7 @@ fn gather_comments(sm: &SourceMap, path: FileName, src: String) -> Vec<Comment>\n pos += shebang_len;\n }\n \n- for token in rustc_lexer::tokenize(&text[pos..], rustc_lexer::FrontmatterAllowed::No) {\n+ ...
2025-07-09T20:35:52
golang/go
83e9a97f62af41e65e37e096a4ed71f6a59d183e
a7e76b8e809ccbd1ceef207a83f8303edb707867
crypto/x509/internal/macos: return errors when CFRef might be NULL Updates #51759 Change-Id: Ib73fa5ec62d90c7e595150217b048158789f1afd Reviewed-on: https://go-review.googlesource.com/c/go/+/394674 Run-TryBot: Filippo Valsorda <filippo@golang.org> Trust: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gopher...
[ { "path": "src/crypto/x509/internal/macos/corefoundation.go", "patch": "@@ -37,9 +37,12 @@ func CFDataToSlice(data CFRef) []byte {\n }\n \n // CFStringToString returns a Go string representation of the passed\n-// in CFString.\n+// in CFString, or an empty string if it's invalid.\n func CFStringToString(ref...
2022-03-22T17:35:11
huggingface/transformers
4cd791d6eeaf4fa4cc49c74d572b281c0e291762
b9f0074f800e4ee71bb55b1caf77d97054285e09
[`HunYuan`] Fix RoPE init (#43411) fix
[ { "path": "src/transformers/models/hunyuan_v1_dense/modeling_hunyuan_v1_dense.py", "patch": "@@ -26,6 +26,7 @@\n \n from transformers.cache_utils import Cache\n \n+from ... import initialization as init\n from ...activations import ACT2FN\n from ...cache_utils import DynamicCache\n from ...generation import...
2026-02-02T11:17:27
vercel/next.js
e0a3e87d00aed218e1c59d16c4d23cee0db39713
36e15a81fb65981f2a7dcc2f8cfa566134b6533d
Refactoring module references (vercel/turbo#5572) ### Description Split `AssetReference` `ResolveResult` into Module and Source variants simplify ResolveResult get rid of some temporary type fixup methods graph references are now typed either Source, Module or OutputAsset instead of only Asset in general n...
[ { "path": "crates/turbopack-cli-utils/src/runtime_entry.rs", "patch": "@@ -5,7 +5,7 @@ use turbopack_core::{\n chunk::{EvaluatableAsset, EvaluatableAssetExt, EvaluatableAssets},\n context::AssetContext,\n issue::{IssueSeverity, OptionIssueSource},\n- module::{convert_asset_to_module, Module},...
2023-07-21T10:04:24
golang/go
a7e76b8e809ccbd1ceef207a83f8303edb707867
bf408e741c2827a45c8576dda4126fc4135ef247
cmd/compile/internal/syntax: remove code dealing with multiple method names When parsing method declarations in an interface, the parser has for historic reasons gracefully handled a list of method names with a single (common) signature, and then reported an error. For example interface { m1, ...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -1725,20 +1725,6 @@ func (p *parser) methodDecl() *Field {\n \tf.pos = p.pos()\n \tname := p.name()\n \n-\t// accept potential name list but complain\n-\t// TODO(gri) We probably don't need this special check anymore.\n-\t// Nobod...
2022-03-30T02:38:00
huggingface/transformers
aeb728ab5c3ddfddefd8a198978983871a406ef9
5772c7333f4db6510611a3a11d043bdd1eae03d3
[`Sam`] Fixup training flags (#43567) * fixup flags * style * fix tests * fix
[ { "path": "tests/models/edgetam/test_modeling_edgetam.py", "patch": "@@ -148,7 +148,7 @@ def __init__(\n fpn_hidden_size=32,\n memory_encoder_hidden_size=32,\n batch_size=2,\n- is_training=False,\n+ is_training=True,\n ):\n self.parent = parent\n sel...
2026-02-02T11:12:18
nodejs/node
fa6839ecaafc6f499106678fc5118cba9ca06df7
f62e7a93881e150efe5ac8c9e771611a128dc61c
tools: fix iculslocs to support ICU 65.1 The ICU alias table format changed in https://unicode-org.atlassian.net/browse/ICU-20627 Because of this, iculslocs.cc needs to handle URES_TABLE format contents in the res_index.txt file. PR-URL: https://github.com/nodejs/node/pull/29523 Reviewed-By: Ben Noordhuis <info@bnoo...
[ { "path": "tools/icu/iculslocs.cc", "patch": "@@ -209,7 +209,8 @@ int dumpAllButInstalledLocales(int lev,\n } else {\n printIndent(bf, lev);\n fprintf(bf, \"%s\", key);\n- switch (ures_getType(t.getAlias())) {\n+ const UResType type = ures_getType(t.getAlias());\n+ switch (typ...
2019-09-10T21:18:17
electron/electron
2094b3946083f027059d6be996fb3f4c864af8b1
64ae5cf5a1d30158a79c386abe3bf3f5f0dcdc82
set the title for hidden and hidden-inset windows so they show up in the window menu list fixes #6088
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -800,11 +800,10 @@ - (void)drawRect:(NSRect)dirtyRect {\n void NativeWindowMac::SetTitle(const std::string& title) {\n title_ = title;\n \n- // We don't want the title to show in transparent or frameless window.\n- if (transparent() || !has_fra...
2016-06-16T20:12:53
vercel/next.js
e88777267a239283e34a1d53351adb0fe956d10f
728fd7572a99003a30a6360a79cea70e58d1f18c
update Turbopack (#52986) * https://github.com/vercel/turbo/pull/5567 <!-- Alex Kirszenberg - Remove unnecessary ValueDebugFormat item, hide Vc field --> * https://github.com/vercel/turbo/pull/5576 <!-- Alex Kirszenberg - Extract shared HMR utils to their own modules/crates --> * https://github.com/vercel/turbo/pu...
[ { "path": "Cargo.lock", "patch": "@@ -412,7 +412,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230719.2#229a2a46925bf3d7a9b8c5e006e1d8975db19d9b\"\n+source = \"git+https://github.com/vercel/turbo.git?ta...
2023-07-21T08:34:35
huggingface/transformers
063b456914661d7625b32c0b6f156ba836dae1db
d5eab539adc06e9ad556986bda887e1e5c3f1cf1
[DeepSpeed] properly handle MoE weight conversion (#43524) * properly handle MoE weight conversion * fix style * Non-expert keys bug fix * remove dead code
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -348,6 +348,7 @@ def _apply_weight_conversions_to_state_dict(model, state_dict, weight_mapping):\n # Iterate over sorted keys and pop from state_dict to free memory immediately\n conversion_mapping = {}\n key_rename_cache = {} ...
2026-02-02T09:48:22
nodejs/node
b354d12599ea9e2b29e6b26dedae82b9b474d424
03eec137a2114092503de04c2c3291af00a50a4e
src: modified RealEnvStore methods to use libuv functions Modified RealEnvStore::Get, Set, Query and Delete methods to use libuv methods environment variables operations instead of using os specific logic and switches. Fixes: https://github.com/nodejs/node/issues/27211 Refs: http://docs.libuv.org/en/v1.x/misc.html P...
[ { "path": "src/env.h", "patch": "@@ -610,8 +610,8 @@ class KVStore {\n KVStore(KVStore&&) = delete;\n KVStore& operator=(KVStore&&) = delete;\n \n- virtual v8::Local<v8::String> Get(v8::Isolate* isolate,\n- v8::Local<v8::String> key) const = 0;\n+ virtual v8::MaybeLo...
2019-04-19T12:33:18
huggingface/transformers
d5eab539adc06e9ad556986bda887e1e5c3f1cf1
4da99340864e2ed8d92d15b9f93fe1534044284a
Tie zamba weights correctly (#43623) * i guess this is what was meant to happen? * it should lock in cirlce from what it seems * zamba also needs a fix * erm? * more layers to test but it fails with new error. I need to eat and try later * model tied weights even with `tie_word_embeddings=False`, not anymore
[ { "path": "src/transformers/models/zamba/modeling_zamba.py", "patch": "@@ -844,7 +844,7 @@ def __init__(self, config: ZambaConfig):\n layers.append(ZambaHybridLayer(ZambaAttentionDecoderLayer(config), linear, mamba))\n if self._tied_weights_keys is None:\n ...
2026-02-02T09:17:35
golang/go
717056da1a0086c5d1d1b27231a385f77ebc61d7
c05c0ca8cfba2c9b78e92e71907c3a1ee344aa23
cmd/compile/internal/syntax: use .go suffix for test files (cleanup) - Use .go suffix for test files as go fmt doesn't descend into testdata directories. - Move test files from testdata/go2 into testdata directory. - Delete some test files that contained type-checker ERROR markers that were ignored by the TestParseG...
[ { "path": "src/cmd/compile/internal/syntax/error_test.go", "patch": "@@ -129,7 +129,7 @@ func testSyntaxErrors(t *testing.T, filename string) {\n \tdefer f.Close()\n \n \tvar mode Mode\n-\tif strings.HasSuffix(filename, \".go2\") {\n+\tif !strings.HasSuffix(filename, \".go117\") {\n \t\tmode = AllowGenerics...
2022-03-29T23:58:49
vercel/next.js
205d3845d1684bb9c8202106b91ad2e55483a39f
f57eecde5e173d89b614936517cc798e95f1ad0f
Move Pages API rendering into bundle (#52149) Moves the rendering for Pages API routes into the bundle. This also implements the `routeModule` interface for both Pages and Pages API routes in the Turbopack output. This also fixes a bug where the order of the imports for `Document` and `App` were reversed in the Turbop...
[ { "path": "packages/next-swc/crates/next-build/src/next_pages/page_entries.rs", "patch": "@@ -1,4 +1,8 @@\n+use std::io::Write;\n+\n use anyhow::{bail, Result};\n+use indexmap::indexmap;\n+use indoc::writedoc;\n use next_core::{\n create_page_loader_entry_module, get_asset_path_from_pathname,\n mode...
2023-07-21T05:51:37
nodejs/node
03eec137a2114092503de04c2c3291af00a50a4e
484c24fd4e3de3c43dacaec4f709736527e449ca
build: re-run configure on node_version.h change Fixes: https://github.com/nodejs/node/issues/29509 PR-URL: https://github.com/nodejs/node/pull/29510 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ben Noordhuis <info@bnoordh...
[ { "path": "Makefile", "patch": "@@ -146,7 +146,9 @@ out/Makefile: config.gypi common.gypi node.gyp \\\n \ttools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp\n \t$(PYTHON) tools/gyp_node.py -f make\n \n-config.gypi: configure configure.py\n+# node_version.h is listed because the N-API version is taken...
2019-09-09T20:10:25
huggingface/transformers
78bb85146c59258a0710c8d08311d98d52303c38
8c403da7ae37d20314d00d940d96c4a27fc98a29
Fix `process_bad_commit_report.py`: avoid items to appear in `null` author in the report (#43662) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "utils/process_bad_commit_report.py", "patch": "@@ -105,7 +105,8 @@\n for failed_test in failed_tests:\n author = failed_test[\"author\"]\n \n- if author not in team_members:\n+ # If author is not a team member, and the PR is already merged...
2026-01-31T21:45:59
electron/electron
b349c381fa16f497b5ddd7d4f7e53a903a282aae
97dd71d79e67a4a5769f65cfa44def05ba16127d
:art: Fix typo: 'arugments'
[ { "path": "lib/browser/api/auto-updater/squirrel-update-win.js", "patch": "@@ -28,7 +28,7 @@ var spawnUpdate = function (args, detached, callback) {\n // Process spawned, different args: Return with error\n // No process spawned: Spawn new process\n if (spawnedProcess && !isSame...
2016-06-16T17:41:45
golang/go
83327b4ae41cf1ef17fb4df4dc395cf17efc6375
2d34af0fd6c6cb214c3a5a8f11ef95854667dd92
go/types: clarify that contexts do not guarantee deduplication Documentation around the use of types.Context is unclear about whether contexts guarantee deduplication of identical instances. Add explicit disclaimers that this is not the case. Fixes golang/go#51680 Change-Id: I6651587315d3cbf9e8d70a69d3e2ec5cedd00da5...
[ { "path": "src/cmd/compile/internal/types2/context.go", "patch": "@@ -12,11 +12,12 @@ import (\n \t\"sync\"\n )\n \n-// An Context is an opaque type checking context. It may be used to share\n+// A Context is an opaque type checking context. It may be used to share\n // identical type instances across type-...
2022-03-29T22:30:06
huggingface/transformers
8c403da7ae37d20314d00d940d96c4a27fc98a29
172216339fcac65e049d011a06ff46c962a7d002
Fix `KeyError` in `check_bad_commit.py` (#43655) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "utils/check_bad_commit.py", "patch": "@@ -279,7 +279,7 @@ def get_commit_info(commit, pr_number=None):\n \n # TODO: make this script able to deal with both `single-gpu` and `multi-gpu` via a new argument.\n reports[model].pop(\"multi-gpu\", None)\n- failed_tests...
2026-01-31T18:50:57
vercel/next.js
e609e023ca0b5a31ab086630b8fbc1aae9f74b00
55eebefbabbeba5e5ee2b49a5a1850bb994ae23b
Fix build side-effects from third-parties package (#52969) We shouldn't be generating src files during the build script as these can break publishing.
[ { "path": "packages/third-parties/package.json", "patch": "@@ -12,8 +12,7 @@\n ],\n \"license\": \"MIT\",\n \"scripts\": {\n- \"build\": \"rm -rf dist && tsc -d -p tsconfig.json && node scripts/update-third-parties\",\n- \"prepublishOnly\": \"cd ../../ && turbo run build\",\n+ \"manual-build\...
2023-07-20T22:10:57
nodejs/node
484c24fd4e3de3c43dacaec4f709736527e449ca
a33aa9293436e512a566524ac428e999dc9ca1f9
tools: python3 compat for inspector code generator The code generator takes a dict and turns it into a namedtuple. The dict contains the key "async", which is a keyword in python 3.7, and rejected by the namedtuple constructor. Rename it to "async_" to avoid the clash. Fixes: https://github.com/nodejs/node/issues/293...
[ { "path": "tools/inspector_protocol/code_generator.py", "patch": "@@ -41,6 +41,9 @@ def json_object_hook(object_dict):\n items = [(k, os.path.join(output_base, v) if k == \"path\" else v) for (k, v) in object_dict.items()]\n items = [(k, os.path.join(output_base, v) if k == \"output\...
2019-08-27T10:16:31
huggingface/transformers
172216339fcac65e049d011a06ff46c962a7d002
2ff1d4f0eced8037c1cf5bfb8ff9a40ce241cbcf
[Benchmark] Minor fix for benchmark: kernel is not correctly called (#43428) * benchmark-v2: minor fix for benchmark-v2, kernel is not correctly called Signed-off-by: Wang, Yi <yi.a.wang@intel.com> * update Signed-off-by: Wang, Yi <yi.a.wang@intel.com> * update format Signed-off-by: Wang, Yi <yi.a.wang@intel.com>...
[ { "path": "benchmark_v2/framework/benchmark_config.py", "patch": "@@ -40,13 +40,15 @@ def is_fa2_or_kernel_available() -> bool:\n try:\n from kernels import get_kernel\n \n- get_kernel(\"kernels-community/flash-attn\")\n+ # TODO: Pass the 'version' kwarg to specify the binary versi...
2026-01-31T13:48:54
vercel/next.js
55eebefbabbeba5e5ee2b49a5a1850bb994ae23b
cb24c555a639189740bd1c6f981fcc075152020a
app-router: prefetching tweaks (#52949) This PR tries to address some feedback around prefetching, like in #49607, where they were some warnings because we were over prefetching. The tweaks in this PR: - if there are no loading boundary below, we don't prefetch the full page anymore. I made that change a while ago bu...
[ { "path": "packages/next/src/client/components/promise-queue.test.ts", "patch": "@@ -0,0 +1,41 @@\n+import { PromiseQueue } from './promise-queue'\n+\n+describe('PromiseQueue', () => {\n+ it('should limit the number of concurrent promises', async () => {\n+ const queue = new PromiseQueue(2)\n+ const ...
2023-07-20T21:46:38
golang/go
2d34af0fd6c6cb214c3a5a8f11ef95854667dd92
f5a42cd4b482a595a710129a25ffb5facc655569
cmd/compile/internal/walk: fix wrong soleComponent implementation CL 367755 added soleComponent for handling 1-byte type interface conversion. This implementation must be kept in sync with Type.SoleComponent, but it does not. When seeing a blank field in struct, we must continue looking at the field type to find sole ...
[ { "path": "src/cmd/compile/internal/walk/convert.go", "patch": "@@ -411,7 +411,7 @@ func soleComponent(init *ir.Nodes, n ir.Node) ir.Node {\n \t\t\t\t// Treat blank fields as the zero value as the Go language requires.\n \t\t\t\tn = typecheck.Temp(n.Type().Field(0).Type)\n \t\t\t\tappendWalkStmt(init, ir.Ne...
2022-03-30T01:55:22
huggingface/transformers
2ff1d4f0eced8037c1cf5bfb8ff9a40ce241cbcf
5a67f0a7aca8c18de6235e80e47fd00a9ecf9d58
Add explicit commit info to PR comment CI feedback (#43635) * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/check_failed_tests.yml", "patch": "@@ -177,6 +177,7 @@ jobs:\n env:\n job: ${{ inputs.job }}\n run_idx: ${{ matrix.run_idx }}\n+ pr_number: ${{ inputs.pr_number }}\n run: python3 utils/check_bad_commit.py --start_commit \"$START_SHA\"...
2026-01-31T11:33:49
nodejs/node
df0e2e3625d1f72e8b04e05ffa13997a51e9f0d7
62e8cc5e61a36ebe1bd913983a452961aa1c9946
deps: upgrade to libuv 1.32.0 Notable changes: - `uv_tcp_close_reset()` has been added. - `uv_udp_set_source_membership()` has been added. - A double free in `uv_free_cpu_info()` on OpenBSD has been fixed. - Defined, but empty environment variables can now be read on Windows. - Several improvements to the cmake b...
[ { "path": "deps/uv/AUTHORS", "patch": "@@ -396,3 +396,10 @@ Nan Xiao <nan@chinadtrace.org>\n Ben Davies <kaiepi@outlook.com>\n Nhan Khong <knhana7@gmail.com>\n Crunkle <justcrunkle@hotmail.co.uk>\n+Tomas Krizek <tomas.krizek@nic.cz>\n+Konstantin Podsvirov <konstantin@podsvirov.pro>\n+seny <arseny.vakhrushev...
2019-09-09T17:08:37
rust-lang/rust
503612e92fa768cdef191c9cfb5c7108381f6e58
fb6de82523a613a63f55fceeae1ef09d66c84d03
Fix rustc testsuite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -60,6 +60,7 @@ rm tests/ui/asm/x86_64/goto.rs # inline asm labels not supported\n rm tests/ui/simd/simd-bitmask-notpow2.rs # non-pow-of-2 simd vector sizes\n rm -r tests/run-make/embed-source-dwarf # embedding sources in debuginfo\n rm -r tests/run-make/...
2025-07-10T13:12:51
golang/go
63169c8bdf3e7ac5006c8976b0631b281eb49394
8fefeabb358395fb3e592e9403339552880e0872
cmd/link: zero elf addr for debug sections The Addr should be zero if SHF_ALLOC is not set. Update #51939 Change-Id: I030f6243d05efabe6b9ebf558e9c0201f7922d23 Reviewed-on: https://go-review.googlesource.com/c/go/+/395919 Trust: mzh <mzh@golangcn.org> Run-TryBot: mzh <mzh@golangcn.org> TryBot-Result: Gopher Robot <go...
[ { "path": "src/cmd/link/elf_test.go", "patch": "@@ -469,3 +469,31 @@ func TestPIESize(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+func TestIssue51939(t *testing.T) {\n+\ttestenv.MustHaveGoBuild(t)\n+\tt.Parallel()\n+\ttd := t.TempDir()\n+\tgoFile := filepath.Join(td, \"issue51939.go\")\n+\tif err := os.WriteFil...
2022-03-26T06:44:09
vercel/next.js
cb24c555a639189740bd1c6f981fcc075152020a
7a0297c2d4e7d745e3d6040f0b45bab5c9166c3a
Refine the not-found rendering process for app router (#52790) ### What This PR changes the flow of not-found rendering process. ### Why `not-found.js` was rendered in two ways before: * 1 is SSR rendering the not-found as 404 * 2 is triggering the error on RSC rendering then the error will be preserved i...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -54,7 +54,6 @@ import { isBot } from '../../shared/lib/router/utils/is-bot'\n import { addBasePath } from '../add-base-path'\n import { AppRouterAnnouncer } from './app-router-announcer'\n import { RedirectBoundary } from './redire...
2023-07-20T21:12:06
huggingface/transformers
94848a1328d151b1accb182bd5ab32d73d0ce0bc
16eca6b5d2067975e1ecb7a3283cda6593100fae
[docs] serving (#42853) * split serving docs * update * split * fix links
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -116,16 +116,18 @@\n title: Writing a chat template\n title: Chat with models\n - sections:\n- - local: serving\n- title: Serving LLMs, VLMs, and other chat-based models\n- - local: jan\n- title: Jan\n- - local: cursor\n+ ...
2026-01-30T17:45:21
nodejs/node
62e8cc5e61a36ebe1bd913983a452961aa1c9946
902c9fac194d06aec5fd5307a6712c39a6da18a7
test: unmark test-worker-prof as flaky This has no longer been flaky since V8 7.5. Refs: https://bugs.chromium.org/p/v8/issues/detail?id=9333 Fixes: https://github.com/nodejs/node/issues/26401 PR-URL: https://github.com/nodejs/node/pull/29511 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat ...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -9,8 +9,6 @@ prefix parallel\n test-fs-stat-bigint: PASS,FLAKY\n # https://github.com/nodejs/node/issues/23207\n test-net-connect-options-port: PASS,FLAKY\n-# https://github.com/nodejs/node/issues/26401\n-test-worker-prof: SKIP\n \n [$system==win32]\n ...
2019-09-09T20:31:30
rust-lang/rust
81a6f189408b71b452a9804818f2cd50d2ed9108
f838cbc06de60819faff3413f374706b74824ca2
added error for invalid char cast
[ { "path": "compiler/rustc_lint/messages.ftl", "patch": "@@ -440,6 +440,7 @@ lint_invalid_asm_label_named = avoid using named labels in inline assembly\n .help = only local labels of the form `<number>:` should be used in inline asm\n .note = see the asm section of Rust By Example <https://doc.rust-l...
2025-07-09T10:24:28
golang/go
7cb1ae3e8e4bc4d80d711b5180705af556c95843
3d7ca9f7c06e52546f12d8d7c96df3712e09b4c1
go/types, types2: better error message for some invalid receiver errors (cleanup) Use the 1.17 compiler error message together with the receiver base type. Also, simplify and flatten the receive testing logic for clarity. Change-Id: I71e58f261900dd7a85d2eb89a310c36b68d1b0b0 Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/compile/internal/types2/signature.go", "patch": "@@ -199,62 +199,48 @@ func (check *Checker) funcType(sig *Signature, recvPar *syntax.Field, tparams []\n \t\t// Delay validation of receiver type as it may cause premature expansion\n \t\t// of types the receiver type is dependent on (see i...
2022-03-28T23:22:22
vercel/next.js
7a0297c2d4e7d745e3d6040f0b45bab5c9166c3a
a96a9b07910ecce7c491c5dc957faf5f6468c929
Change "publically" to "publicly" in the routing docs (#52966) ### What and why? The word "publicly" should be spelled consistently across the documentation. It is spelled currently as "publically" in a few places. ### How? Fixed the spelling!
[ { "path": "docs/02-app/01-building-your-application/01-routing/12-colocation.mdx", "patch": "@@ -24,20 +24,20 @@ In the `app` directory, [nested folder hierarchy](/docs/app/building-your-applic\n \n Each folder represents a route segment that is mapped to a corresponding segment in a URL path.\n \n-However,...
2023-07-20T20:47:42
nodejs/node
9a436d19f3cd541f92e3c1c26a0ec020a10960fa
be926c7e21ddf0e24e26b7a74aabda66e91a9da5
worker: mark as stable This feature is not expected to receive breaking changes to its API and is used in real-world applications. As discussed at the last collaborator summit (Berlin May 2019), the `worker_threads` module can be considered stable once our Web Messaging implementation is compatible with Web Platform ...
[ { "path": "doc/api/worker_threads.md", "patch": "@@ -2,7 +2,7 @@\n \n <!--introduced_in=v10.5.0-->\n \n-> Stability: 1 - Experimental\n+> Stability: 2 - Stable\n \n The `worker_threads` module enables the use of threads that execute JavaScript\n in parallel. To access it:", "additions": 1, "deletion...
2019-09-09T20:34:30
huggingface/transformers
255c62a18ab9bc923693ebea9d7924f23bb6d365
11b9b0f5b52f82b42ff075ccbe2afffa85ecff8d
Allow Attention and Experts to be used as standalone modules (#43622) * default * fix all * fix * add warning * strict check * fix * add test * fix * improve test
[ { "path": "examples/modular-transformers/modeling_dummy_bert.py", "patch": "@@ -169,9 +169,9 @@ def forward(\n {\"cache_position\": cache_position},\n )\n \n- attention_interface: Callable = eager_attention_forward\n- if self.config._attn_implementation != \"eager\"...
2026-01-30T16:35:30
golang/go
dac0220841a44815584c83d26e9f9a45f5560f6d
a4a0f9b1481e9be4361eb9c4998eca08e2eedb0a
runtime: avoid potential hang in TestGdbAutotmpTypes If a GC related task preempts between hitting the main.main breakpoint and stepping, the test program may halt forever waiting on a GC operation. This happens if gdb is configured to halt other threads while executing a step. Configure gdb to continue running all t...
[ { "path": "src/runtime/runtime-gdb_test.go", "patch": "@@ -500,6 +500,10 @@ func TestGdbAutotmpTypes(t *testing.T) {\n \targs := []string{\"-nx\", \"-batch\",\n \t\t\"-iex\", \"add-auto-load-safe-path \" + filepath.Join(testenv.GOROOT(t), \"src\", \"runtime\"),\n \t\t\"-ex\", \"set startup-with-shell off\",...
2021-12-09T22:09:24
vercel/next.js
a96a9b07910ecce7c491c5dc957faf5f6468c929
2b497413087c56dedb3e04f77ea0deebb5d12d0b
Fix client reference manifest for interception routes (#52961) We have the logic to group the client compiler's entry names to make sure we generate one single manifest file for the page. This is complicated and requires a special step to "group" the entry names because a page can depend on a bunch of files from every...
[ { "path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts", "patch": "@@ -96,6 +96,33 @@ function getAppPathRequiredChunks(chunkGroup: webpack.ChunkGroup) {\n .filter(nonNullable)\n }\n \n+// Normalize the entry names to their \"group names\" so a page can easily track\n+// all the ma...
2023-07-20T20:06:44
electron/electron
bb10551d23a2a41e9d6a96c04d755dc2630870b0
9267004b535f78470ecb029e4455d650aa4567e1
Work around a compiler bug that crashes on Windows
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -266,13 +266,22 @@ WebContents::WebContents(v8::Isolate* isolate,\n WebContents::WebContents(v8::Isolate* isolate,\n const mate::Dictionary& options)\n : embedder_(nullptr),\n+ type_(BROWSER_WINDOW),\n ...
2016-06-16T01:54:28
nodejs/node
d7c5ffc7a423f0df3f289cbc815510e050282d43
b34f05ecf2014a6a51c455e1bee06586ec81ff83
test: improve test-worker-message-port-message-before-close Replace a wrong comment with a correct assertion and await all async operations inside the async function. PR-URL: https://github.com/nodejs/node/pull/29483 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-worker-message-port-message-before-close.js", "patch": "@@ -28,11 +28,11 @@ async function test() {\n for (let i = 0; i < 10000; i++) {\n const { port1, port2 } = new MessageChannel();\n worker.postMessage({ port: port2 }, [ port2 ]);\n- await once(port1, 'message'...
2019-09-07T19:48:43
huggingface/transformers
11b9b0f5b52f82b42ff075ccbe2afffa85ecff8d
4bb0a8691b0b78ba9e7602a3e94f5371abe5c441
Don't modify `tied_weight_keys` in-place (#43619) * fix * these mmodels modify in-place, add a test * fix repo * tiny comment
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1314,9 +1314,11 @@ def __init__(self, config: PreTrainedConfig, *inputs, **kwargs):\n self.warnings_issued = {}\n # Overwrite the class attribute to make it an instance attribute, so models like\n # `InstructBlipForConditi...
2026-01-30T15:46:01
golang/go
f71daa6fe6eecab08ad47f9dbd584bc11691116a
9038c244983e66294781f83e30239623a08672f5
go/types, types2: better error message for blank interface method name (cleanup) Use the 1.17 compiler error message. Change-Id: Ic62de5bfc9681674069934afc590f5840729f8e2 Reviewed-on: https://go-review.googlesource.com/c/go/+/396297 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google...
[ { "path": "src/cmd/compile/internal/types2/interface.go", "patch": "@@ -132,11 +132,7 @@ func (check *Checker) interfaceType(ityp *Interface, iface *syntax.InterfaceType\n \t\t// We have a method with name f.Name.\n \t\tname := f.Name.Value\n \t\tif name == \"_\" {\n-\t\t\tif check.conf.CompilerErrorMessage...
2022-03-28T22:42:30
vercel/next.js
2b497413087c56dedb3e04f77ea0deebb5d12d0b
66f0983cb881f9c2f52127eec67c4d140eda67b5
examples: export `force-dynamic` from all dynamic routes (#52916) ### What? Stop `with-supabase` template from throwing errors on build ### Why? Dynamic Routes now fail the build, rather than console.logging an error ### How? Export the following from any routes that use the `cookies` function ``` export const d...
[ { "path": "examples/with-supabase/app/_examples/protected-route/page.tsx", "patch": "@@ -8,6 +8,8 @@ import { cookies } from 'next/headers'\n import Image from 'next/image'\n import { redirect } from 'next/navigation'\n \n+export const dynamic = 'force-dynamic'\n+\n export default async function ProtectedRo...
2023-07-20T13:33:43
electron/electron
17a4b61d54814c70c04266185edfe5d8e4c2973c
9267004b535f78470ecb029e4455d650aa4567e1
fix spell error
[ { "path": "docs/tutorial/desktop-environment-integration.md", "patch": "@@ -221,7 +221,7 @@ win.setThumbarButtons([\n {\n tooltip: 'button1',\n icon: path.join(__dirname, 'button1.png'),\n- click() { console.log('button2 clicked'); }\n+ click() { console.log('button1 clicked'); }\n },\n ...
2016-06-16T01:32:58
huggingface/transformers
4bb0a8691b0b78ba9e7602a3e94f5371abe5c441
de4958ebaba3673d98e931fd9471643ece2fb0ff
[`Rope`] Revert #43410 and make inheritance implicit again (#43620) * fix * fix
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -27,6 +27,7 @@\n from .dynamic_module_utils import custom_object_save\n from .generation.configuration_utils import GenerationConfig\n from .modeling_gguf_pytorch_utils import load_gguf_checkpoint\n+from .modeling_rope_utils import RotaryEmbe...
2026-01-30T15:43:32
nodejs/node
821799024e4305b56bb52e784cd2705cf7c436a5
695e8195176730078dba4d8c8c1ba4acf236d651
test: disable core dumps before running crash test The test spawns a subprocess with the `--abort-on-uncaught-exception` flag and expects it to terminate with a SIGABRT signal. On systems where core dumps are enabled, that actually generates an unnecessary core dump. Set `ulimit -c 0` before spawning the subprocess. ...
[ { "path": "test/async-hooks/test-callback-error.js", "patch": "@@ -1,7 +1,7 @@\n 'use strict';\n const common = require('../common');\n const assert = require('assert');\n-const { spawnSync, fork } = require('child_process');\n+const { spawnSync } = require('child_process');\n const async_hooks = require('a...
2019-09-06T21:25:36
golang/go
9038c244983e66294781f83e30239623a08672f5
a2baae6851a157d662dff7cc508659f66249698a
go/types, types2: better index-out-of-bounds error message (cleanup) Use the 1.17 compiler error message, sans "array" prefix. Change-Id: I0e70781c5ff02dca30a2004ab4d0ea82b0849eae Reviewed-on: https://go-review.googlesource.com/c/go/+/396296 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindl...
[ { "path": "src/cmd/compile/internal/types2/index.go", "patch": "@@ -368,11 +368,7 @@ func (check *Checker) index(index syntax.Expr, max int64) (typ Type, val int64)\n \tv, ok := constant.Int64Val(x.val)\n \tassert(ok)\n \tif max >= 0 && v >= max {\n-\t\tif check.conf.CompilerErrorMessages {\n-\t\t\tcheck.er...
2022-03-28T22:30:37
huggingface/transformers
de4958ebaba3673d98e931fd9471643ece2fb0ff
eaab9f2fdedf450de24d46e2e2bb63f12e373349
[vllm compat] Separate renaming from conversion ops (#43621) * switch mapping to test poc * fix * more * fix * comment * oupsi
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -85,13 +85,13 @@ def _build_checkpoint_conversion_mapping():\n ),\n ],\n \"mixtral\": [\n- WeightRenaming(\".block_sparse_moe.gate\", \".mlp.gate\"),\n+ WeightRenaming(\".block_sparse_moe.\", \...
2026-01-30T15:37:22