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 |
|---|---|---|---|---|---|
golang/go | 95b433eed428afbb4ab32f0f2541774e939989c7 | b2c0168893a7f27927630198cdf63911374035c3 | debug/elf: adjust version API per issue discussion
This updates the new version API for the discussion on #63952.
Note that the current tests do not have symbols with hidden versions.
Leaving that for later.
For #63952
Change-Id: I1ad4b1e485429a216ba8e5b68f7f4299d120628f
Reviewed-on: https://go-review.googlesource.... | [
{
"path": "api/go1.24.txt",
"patch": "@@ -106,16 +106,6 @@ pkg debug/elf, const VER_FLG_INFO = 4 #63952\n pkg debug/elf, const VER_FLG_INFO DynamicVersionFlag #63952\n pkg debug/elf, const VER_FLG_WEAK = 2 #63952\n pkg debug/elf, const VER_FLG_WEAK DynamicVersionFlag #63952\n-pkg debug/elf, const VersionSco... | 2024-12-17T19:31:17 |
vercel/next.js | 7e5ed3b182bdee78eca78eb77f76d2f2b072b98a | 6a91ff2cfaf15420a1396319071eaff49f92a4b1 | feat: `--rspack` flag for create next app (#79077)
<!-- 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:
## For Contributors
... | [
{
"path": "packages/create-next-app/create-app.ts",
"patch": "@@ -38,6 +38,7 @@ export async function createApp({\n empty,\n api,\n turbopack,\n+ rspack,\n disableGit,\n }: {\n appPath: string\n@@ -54,6 +55,7 @@ export async function createApp({\n empty: boolean\n api?: boolean\n turbopack:... | 2025-05-16T20:24:57 |
huggingface/transformers | 8757098be4d2386d45900b30168855996ca22810 | 22c35ca55b64af7fa08a8a30ea26d4d8dda88056 | Fix GPT2 attention scaling ignored in SDPA/FlashAttention (#44397)
* Fix GPT2 attention scaling config ignored in SDPA/FlashAttention backends
GPT2Attention.forward() did not pass the `scaling` parameter to
`attention_interface`, causing `scale_attn_weights` and
`scale_attn_by_inverse_layer_idx` config options to be ... | [
{
"path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py",
"patch": "@@ -44,27 +44,20 @@\n \n \n # Copied from transformers.models.gpt2.modeling_gpt2.eager_attention_forward\n-def eager_attention_forward(module, query, key, value, attention_mask, **kwargs):\n- attn_weights... | 2026-03-04T16:33:07 |
facebook/react | 546fe4681c52de6a333a55cedb141c87b626425e | 9377e10105b41976c77c7f664f2363cb8c41ac8a | fix[devtools/inspect]: null check memoized props before trying to call hasOwnProperty (#27057)
Simple check to avoid `TypeError`, quite rare case, but still. | [
{
"path": "packages/react-devtools-shared/src/backend/renderer.js",
"patch": "@@ -3280,7 +3280,7 @@ export function attach(\n };\n \n if (enableStyleXFeatures) {\n- if (memoizedProps.hasOwnProperty('xstyle')) {\n+ if (memoizedProps != null && memoizedProps.hasOwnProperty('xstyle')) {\n ... | 2023-07-13T13:13:19 |
electron/electron | 37d93b04824d4f0151b36edb867209b53272457f | 2fd0194e94658ed9af12a38f79222e15785287fa | fix: update normal bounds prior to minimizing (#34473) | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -165,6 +165,8 @@ class NativeWindowMac : public NativeWindow,\n \n void UpdateVibrancyRadii(bool fullscreen);\n \n+ void UpdateWindowOriginalFrame();\n+\n // Set the attribute of NSWindow while work around a bug of zoom button.\n bool HasSty... | 2022-06-09T08:48:50 |
golang/go | b2c0168893a7f27927630198cdf63911374035c3 | b9e2ffdcd2520c136c4e98f67f0c714f989d31ab | crypto/internal/fips140/aes/gcm: use aes.EncryptBlockInternal on ppc64x and s390x
Left them out of CL 636775 because I did a search by reference, which
does not span architectures.
Fixes crypto/cipher.TestFIPSServiceIndicator failure on ppc64x and s390x.
For #69536
Change-Id: I34b49705a7099066e8c3871a7a34b394a9298e... | [
{
"path": "src/crypto/internal/fips140/aes/gcm/gcm_ppc64x.go",
"patch": "@@ -51,7 +51,7 @@ func initGCM(g *GCM) {\n \t}\n \n \thle := make([]byte, gcmBlockSize)\n-\tg.cipher.Encrypt(hle, hle)\n+\taes.EncryptBlockInternal(&g.cipher, hle, hle)\n \n \t// Reverse the bytes in each 8 byte chunk\n \t// Load littl... | 2024-12-17T16:55:01 |
ollama/ollama | 35ac4eb12c35644ce8bca38dfc5d6636d2cafa16 | 3d0b1734c006798960a56acb0ea23ea57e0dd1d9 | fix keep alive
this reference to keep alive was missed in #12041 so chat has a
diffferent behaviour than generate | [
{
"path": "server/routes.go",
"patch": "@@ -1777,7 +1777,7 @@ func (s *Server) ChatHandler(c *gin.Context) {\n \t}\n \n \t// expire the runner\n-\tif len(req.Messages) == 0 && req.KeepAlive != nil && int(req.KeepAlive.Seconds()) == 0 {\n+\tif len(req.Messages) == 0 && req.KeepAlive != nil && req.KeepAlive.D... | 2025-10-01T00:12:37 |
vercel/next.js | 3a7ea6958722e3ba79fd3848bd8c26cf28db8435 | 92f4077ac00e807c5288587d4bd6e296eb9d423e | fix(turbopack): prepend a question mark in AssetIdent display (#78977)
## What?
Just update AssetIdent display, prepend "?" like url query. See printed
ident with query like below
<img width="1500" alt="image"
src="https://github.com/user-attachments/assets/bd37733f-cdd1-496e-b7f0-5c372e842d14"
/>
Co-authored-by: Nik... | [
{
"path": "turbopack/crates/turbopack-core/src/ident.rs",
"patch": "@@ -59,7 +59,7 @@ impl ValueToString for AssetIdent {\n \n let query = self.query.await?;\n if !query.is_empty() {\n- write!(s, \"{}\", &*query)?;\n+ write!(s, \"?{}\", &*query)?;\n }\n \n ... | 2025-05-16T03:20:54 |
huggingface/transformers | 22c35ca55b64af7fa08a8a30ea26d4d8dda88056 | 8c61e44d66a0b6fe7b9f11a474318145694bd442 | Add future model support for Fouroversix (#44286)
* Add fouroversix integration and docs
* Small fix
* Update quantized modules outside of FourOverSixQuantize
* Delete high-precision parameters during conversion and before weight loading
* Update year
Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.nor... | [
{
"path": "src/transformers/integrations/fouroversix.py",
"patch": "@@ -44,7 +44,7 @@ def convert(\n \n # Delete the high-precision parameters from the module after we used them to create\n # the quantized parameters\n- for parameter_name in module.parameters_to_quantize:\n+ if... | 2026-03-04T16:28:13 |
golang/go | 8790372a8d7e777d23d6b77d248318d01f4d7c4d | b057b8872d8297ec9ccbfd9d29dad51dff795846 | cmd, go: fix some typos
Change-Id: I0fd54ae5294eb4ef30cdef05adb8825f69077b14
GitHub-Last-Rev: ccfa48cbe4525dc2bd60e9ac7e2c150e480ba13f
GitHub-Pull-Request: golang/go#70823
Reviewed-on: https://go-review.googlesource.com/c/go/+/635915
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Robert Griesemer <gri@go... | [
{
"path": "src/cmd/compile/internal/types2/README.md",
"patch": "@@ -56,7 +56,7 @@ The tests are in:\n Tests are .go files annotated with `/* ERROR \"msg\" */` or `/* ERRORx \"msg\" */`\n comments (or the respective line comment form).\n For each such error comment, typechecking the respective file is expec... | 2024-12-17T12:50:44 |
facebook/react | f3d40c8c248f9369dcdfdac78a12188db7474a59 | 4762208b0f5f885ec68bf5afc989688d8e19048b | [rust] Recurse into functions in other passes
Updates eliminate_redundant_phis and constant_propagation to recurse into
function expressions. I also realized there was a bug in EliminateRedundantPhis
in which we wouldn't traverse into function expressions encountered after
finding a back edge, so i fixed that logi... | [
{
"path": "compiler/forget/crates/fixtures/tests/fixtures/function-expressions.js",
"patch": "@@ -1,5 +1,13 @@\n function Component(props) {\n+ const y = 2;\n const foo = function foo(x) {\n- return x + 1;\n+ let a = 1;\n+ let b;\n+ if (a === 1) {\n+ b = 5 + 3;\n+ } else {\n+ b =... | 2023-07-13T04:34:10 |
electron/electron | 16db5a112e3cde7d9ee8ea817f52bf2b9af7568f | f44ecb7f031bbe22289be1007093cff5057cb6cf | fix: html fullscreen transitions stacking (#32905)
* fix: html fullscreen transitions stacking
* spec: move webview test to spec-main | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3673,7 +3673,12 @@ void WebContents::EnumerateDirectory(\n \n bool WebContents::IsFullscreenForTabOrPending(\n const content::WebContents* source) {\n- return html_fullscreen_;\n+ bool transition_fs = owner_window()\n+ ... | 2022-06-07T16:59:50 |
vercel/next.js | 21e4411648cd82f91f31d08114678c37efc27fec | 733e4d6413ca65c7c03c1d0da0204c22af2c8854 | Fix dangling promise in unstable-cache (#79248)
While investigating an issue with intermittent `unstable_cache` calls
failing to set noticed we have these dangling promises which cause
"racey" behavior with setting to a cache in environments where the
function stops after the request is finished.
These have been pres... | [
{
"path": ".changeset/loose-cows-pump.md",
"patch": "@@ -0,0 +1,5 @@\n+---\n+'next': patch\n+---\n+\n+Fix dangling promise in unstable_cache",
"additions": 5,
"deletions": 0,
"language": "Markdown"
},
{
"path": "packages/next/src/server/web/spec-extension/unstable-cache.ts",
"patch":... | 2025-05-15T22:03:21 |
ollama/ollama | 3d0b1734c006798960a56acb0ea23ea57e0dd1d9 | efaee8c2d658f7f40a2f44b411ebfb25fcc198b0 | ggml: Preallocate CUDA pool memory
The GGML CUDA backend allocates additional memory for intermediate
results during calculation. This memory isn't currently allocated
during worst case graph reservation and therefore not included in
scheduling. This means that as these buffers potentially grow
with context length, we... | [
{
"path": "llama/patches/0022-ggml-No-alloc-mode.patch",
"patch": "@@ -3,78 +3,102 @@ From: Jesse Gross <jesse@ollama.com>\n Date: Wed, 23 Jul 2025 11:58:49 -0700\n Subject: [PATCH] ggml: No-alloc mode\n \n-Callers can set a backend buffer type to be no-alloc, meaning that\n+Callers can set a scheduler to b... | 2025-09-09T23:17:31 |
facebook/react | 1d5d89b8be7647b55c71dd670338a1af184bd3e4 | 8ada08f11e218f1a33da28a968bfb700c2abc40d | [js/rust] Improve constant propagation
Makes the same improvement to constant propagation in both the JS and Rust
versions. The core algorithm only populates phi variables if all operands have a
known value (no back edges) and all those values are the same: this allows us to
propagate constants in most cases and s... | [
{
"path": "compiler/forget/crates/fixtures/tests/fixtures/constant-propagation-constant-if-condition.js",
"patch": "@@ -1,17 +1,34 @@\n-function Component(props) {\n- let x = true;\n- let y;\n- if (x) {\n- y = 42;\n+function Component() {\n+ let a = 1;\n+\n+ let b;\n+ if (a === 1) {\n+ b = true;... | 2023-07-13T00:53:36 |
golang/go | 4ac8f552e95521d292cc18ccc546739d41283b31 | 236a0b4ffb79854546b9f437499092cec23a5725 | syscall, internal/syscall/unix: fix fstatat on linux/mips64
On linux/mips64, the syscall.Stat_t struct does not match the
kernel version of the struct. Functions that operate on a Stat_t
translate between it and the kernel struct.
The fstatat function was not doing this translation.
Make it do so.
Export a syscall.F... | [
{
"path": "src/internal/syscall/unix/at_fstatat.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build dragonfly || (linux && !loong64) || netbsd || (openbsd && mips64)\n+//go:build dragonfly || (linux && !(l... | 2024-12-03T20:22:49 |
electron/electron | 4ec2de659fa797a3a906c3a050cc0b3ccd491553 | 30d15715a9ce6a360c73d2e8eb9970ca17d0ad36 | chore: fix nan spec runner on macOS (#34447) | [
{
"path": "script/nan-spec-runner.js",
"patch": "@@ -18,7 +18,8 @@ const args = require('minimist')(process.argv.slice(2), {\n });\n \n async function main () {\n- const nodeDir = path.resolve(BASE, `out/${utils.getOutDir({ shouldLog: true })}/gen/node_headers`);\n+ const outDir = utils.getOutDir({ should... | 2022-06-07T10:09:08 |
huggingface/transformers | fd6bc380c8854a370fbc9f68a157895d84dce7d7 | 30c480166a95342fefdd9d727fc2a163bea7b2b1 | [vllm + v5 fix] handle TokenizersBackend fallback properly for v5 (#44255)
* update deepseek v2 for tokenizers v5
* adding remote code fix
* fix deepseek name
* handle spm conversion from proto only when overriding bad_models
* add script to compare xlni and code_search_net output of 2 tokenizers
* tiktoken model... | [
{
"path": "src/transformers/convert_slow_tokenizer.py",
"patch": "@@ -192,6 +192,7 @@ def extract(self, model_type, **kwargs) -> tuple[dict[str, int], list[tuple]]:\n AddedToken(token, normalized=False, special=special)\n for id, token, special in sorted(spm_added_tokens, key=lambda ... | 2026-03-04T15:13:23 |
vercel/next.js | 733e4d6413ca65c7c03c1d0da0204c22af2c8854 | 88c47c222c8daf325384d87c74acfb89247b8a16 | test: fix snapshots in failing tests (#79254) | [
{
"path": "test/development/acceptance-app/error-recovery.test.ts",
"patch": "@@ -1,7 +1,14 @@\n /* eslint-env jest */\n import { createSandbox } from 'development-sandbox'\n import { FileRef, nextTestSetup } from 'e2e-utils'\n-import { check } from 'next-test-utils'\n+import {\n+ assertHasRedbox,\n+ chec... | 2025-05-15T20:53:15 |
ollama/ollama | efaee8c2d658f7f40a2f44b411ebfb25fcc198b0 | 734b57da0e04d363e70ea47a3a6f372c0b9dac82 | ggml: Backport scale kernel fixes
The GGML scale kernel uses signed 32-bit ints to represent
the number of elements in the tensor. For large images,
mistral-small3.2 overflows this, triggering CUDA errors due
to negative arguments.
Currently, this can happen when the user passes a large image
to mistral-small3.2. How... | [
{
"path": "llama/patches/0026-ggml-Backport-scale-kernel-fixes.patch",
"patch": "@@ -0,0 +1,57 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Jesse Gross <jesse@ollama.com>\n+Date: Tue, 23 Sep 2025 15:41:58 -0700\n+Subject: [PATCH] ggml: Backport scale kernel fixes\n+\n+... | 2025-09-23T19:13:39 |
facebook/react | 2fb14138d415be3f36797ee2fdfd9146aa1e39a0 | e029e22a9a8a443287ac212d26bcd7b85ee82ad9 | [rust] Port EliminateRedundantPhis
This is a nearly 1:1 port of EliminateRedundantPhis to Rust, the algorithm is
identical and all differences are superficial. There are few things missing (an
invariant instead of a panic in one place, recursing into function expressions)
but the Rust version is still going to end... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -504,6 +504,7 @@ dependencies = [\n \"estree\",\n \"estree-swc\",\n \"hir\",\n+ \"hir-ssa\",\n \"insta\",\n \"miette 5.9.0\",\n ]\n@@ -644,8 +645,10 @@ version = \"0.1.0\"\n dependencies = [\n \"bumpalo\",\n \"hir\",\n+ \"indexmap 2.0.0\",\n \"mie... | 2023-07-12T05:54:49 |
golang/go | 31e50af5f3366a9fc4e91a589f91ad579b7cba56 | b47ce8b0e997f09abd6e1e5c23eb59d6e9d5be2c | crypto/rsa: revert minimum GenerateKey size to 32 bits
No point in causing breakage even with GODEBUG=rsa1024min=0.
Change-Id: I923254a8c8afaca77be551b19e3555c44ebdbb67
Reviewed-on: https://go-review.googlesource.com/c/go/+/636557
Reviewed-by: Roland Shoemaker <roland@golang.org>
Reviewed-by: David Chase <drchase@goo... | [
{
"path": "src/crypto/internal/fips140/rsa/keygen.go",
"patch": "@@ -13,9 +13,9 @@ import (\n )\n \n // GenerateKey generates a new RSA key pair of the given bit size.\n-// bits must be at least 128.\n+// bits must be at least 32.\n func GenerateKey(rand io.Reader, bits int) (*PrivateKey, error) {\n-\tif bi... | 2024-12-16T16:33:50 |
electron/electron | 882fa36940fc5846a4c72b1c73a4ccc3ac146437 | e56f626b945f11b120f36019d621f32a55307c7a | test: fix for flaky renderer crash test (#34452) | [
{
"path": "spec-main/api-web-frame-main-spec.ts",
"patch": "@@ -230,7 +230,9 @@ describe('webFrameMain module', () => {\n // Keep reference to mainFrame alive throughout crash and recovery.\n const { mainFrame } = w.webContents;\n await w.webContents.loadURL(server.url);\n+ const cras... | 2022-06-06T21:39:58 |
vercel/next.js | 88c47c222c8daf325384d87c74acfb89247b8a16 | 6258af666b1a979294ffb55bf67e8a168d3a92b5 | fix(dev-overlay): Ignore right clicks on the indicator draggable (#79120)
Without this change, right clicking on the indicator starts the drag action, which leads to janky behavior with the native browser context menu.
Only allow dragging with the primary mouse button.
I also tested this in the mobile simulator mode... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/draggable.tsx",
"patch": "@@ -186,6 +186,9 @@ export function useDrag(options: UseDragOptions) {\n }\n \n function onPointerDown(e: React.PointerEvent) {\n+ if (e.button !== 0) {\n+ return /... | 2025-05-15T20:43:50 |
huggingface/transformers | 30c480166a95342fefdd9d727fc2a163bea7b2b1 | ee4c22078ff3987cbab669f332ff022d4fa89469 | Fix CLI NameError: name 'TypeAdapter' is not defined (#44256)
* Do not evaluate type annotations in CLI serve
* Fix style
* Fix style | [
{
"path": "src/transformers/cli/serve.py",
"patch": "@@ -11,6 +11,9 @@\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 __future__ import annotations\n+\n import a... | 2026-03-04T14:10:42 |
ollama/ollama | 734b57da0e04d363e70ea47a3a6f372c0b9dac82 | 0469861d9dfdec71fe895a0d4672056dfe8af54f | ggml: Remove allocation status reporting
For each memory allocation we report the size of the (attempted)
allocation and whether it succeeded or failed. The latter status
reporting proved to be not that useful in practice as systems
such as Windows can automatically overflow from VRAM into RAM,
resultings in successfu... | [
{
"path": "llama/patches/0014-graph-memory-reporting-on-failure.patch",
"patch": "@@ -4,48 +4,38 @@ Date: Fri, 18 Apr 2025 15:58:19 -0700\n Subject: [PATCH] graph memory reporting on failure\n \n ---\n- ggml/include/ggml-alloc.h | 6 ++++++\n- ggml/include/ggml-backend.h | 6 ++++++\n- ggml/src/ggml-alloc... | 2025-09-23T00:27:03 |
facebook/react | e029e22a9a8a443287ac212d26bcd7b85ee82ad9 | c7ccc5dd30acfb29c0e95e42ade5247514a2f270 | [rust] fix lints | [
{
"path": "compiler/forget/crates/build-hir/src/build.rs",
"patch": "@@ -30,7 +30,7 @@ pub fn build<'a>(\n \n match fun.function.body {\n Some(estree::FunctionBody::BlockStatement(body)) => {\n- lower_block_statement(env, &mut builder, *body, None)?\n+ lower_block_statement... | 2023-07-12T04:01:42 |
golang/go | dd7a7ba38f36dd6abc1e14b8d0e8bf05a5383161 | 427a2401af088716bf5b394156e45fb4de54dc5a | crypto/internal/fips140/aes: mark AES-ECB as not approved
NIST SP 800-131Ar3 ipd, scheduled for publication in 2025Q1, marks
AES-ECB as disallowed for encryption, and legacy use for decryption.
There are apparently no details on how the transition is going to work,
so to avoid surprises we just mark direct use of the... | [
{
"path": "src/crypto/internal/fips140/aes/aes.go",
"patch": "@@ -94,6 +94,8 @@ func newBlockExpanded(c *blockExpanded, key []byte) {\n func (c *Block) BlockSize() int { return BlockSize }\n \n func (c *Block) Encrypt(dst, src []byte) {\n+\t// AES-ECB is not approved in FIPS 140-3 mode.\n+\tfips140.RecordNo... | 2024-12-16T18:24:20 |
vercel/next.js | 6258af666b1a979294ffb55bf67e8a168d3a92b5 | 62de494f3c28e3a6e949a434047ea3023121d239 | docs: add missing links and imports to `cacheLife` and `cacheTag` for prerender-missing-suspense error (#79247)
One of the important resources for this message is `cacheLife` and
`cacheTag`, but the links were missing, and the snippet omitted imports,
which newcomers won't know how to import unless looking up. | [
{
"path": "errors/next-prerender-missing-suspense.mdx",
"patch": "@@ -34,6 +34,9 @@ export default async function Page() {\n After:\n \n ```jsx filename=\"app/page.js\"\n+import { unstable_cacheTag as cacheTag } from 'next/cache'\n+import { unstable_cacheLife as cacheLife } from 'next/cache'\n+\n async func... | 2025-05-15T19:28:50 |
electron/electron | 4f99e3e46cc09696d58b8e0aae89f2d647a79713 | f39c1a35e5cac86c13ee65fbfdbefb32eeef4f5b | docs: fix `did-frame-navigate` example in webFrameMain docs (#34419)
docs: fix did-frame-navigate example in webFrameMain docs | [
{
"path": "docs/api/web-frame-main.md",
"patch": "@@ -16,7 +16,7 @@ win.loadURL('https://twitter.com')\n \n win.webContents.on(\n 'did-frame-navigate',\n- (event, url, isMainFrame, frameProcessId, frameRoutingId) => {\n+ (event, url, httpResponseCode, httpStatusText, isMainFrame, frameProcessId, frameRo... | 2022-06-06T05:49:14 |
ollama/ollama | 83021fcf0fe935ee5c6d29b12cc357b373ec926f | 0469861d9dfdec71fe895a0d4672056dfe8af54f | qwen3-coder: fix tool definition type rendering | [
{
"path": "model/renderers/qwen3coder.go",
"patch": "@@ -99,9 +99,7 @@ func Qwen3CoderRenderer(messages []api.Message, tools []api.Tool, _ *api.ThinkVa\n \t\t\t\t\tsb.WriteString(\"\\n<name>\" + name + \"</name>\")\n \n \t\t\t\t\tif len(prop.Type) > 0 {\n-\t\t\t\t\t\t// TODO(!!!)(drifkin): we should match t... | 2025-09-30T22:03:15 |
huggingface/transformers | 7235d44257e7e4765317d475622e2085a09c9e3b | f60c4e9423a2063fd0e313428ebbb3d5d1e6bdd6 | Add eurobert (#39455)
* feat: init EuroBert model integration
* fix: auto import
* Refactor: Update EuroBertMaskedLM & SentenceClassif classes to inherit from PreTrainModel.
* feat: Introduce EuroBertPreTrainedModel class and update model inheritance
* fix: Ruff format
* fix: Ruff format for modeling_auto.py
* f... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -544,6 +544,8 @@\n title: Ernie4_5_MoE\n - local: model_doc/esm\n title: ESM\n+ - local: model_doc/eurobert\n+ title: EuroBERT\n - local: model_doc/exaone4\n title: EXAONE-4.0\n - local: model_doc/exa... | 2026-03-04T11:43:02 |
golang/go | 427a2401af088716bf5b394156e45fb4de54dc5a | 75736cc169631dfaaa48ad46a00e1bf31d830ec8 | cmd/go/testdata/script: update test_flags for new test output
With CL 635856, an error for a package missing go files is now caught at
load time rather than at build time, so it's reported differently.
Update the test to check for the correct output unbreak the builders.
For #70820
Change-Id: I91fcac17961635b9a92782... | [
{
"path": "src/cmd/go/testdata/script/test_flags.txt",
"patch": "@@ -15,8 +15,8 @@ stdout '\\Aok\\s+example.com/x\\s+[0-9.s]+\\n\\z'\n # Even though ./x looks like a package path, the real package should be\n # the implicit '.'.\n ! go test --answer=42 ./x\n-stdout '^FAIL\\t. \\[build failed\\]'\n-stderr '^... | 2024-12-13T22:33:16 |
facebook/react | c7ccc5dd30acfb29c0e95e42ade5247514a2f270 | e9d2822e92792c0f6a96864b9cf19a86275876f6 | [rust] Initial port of EnterSSA
This is a first pass at porting EnterSSA to Rust. First pass in the sense that
it's hard to fully test it, and also in the sense that we'll likely figure out
even better ways to work w the HIR as we iterate. Oh and i didn't do recusing
into function expressions yet, since we can't e... | [
{
"path": "compiler/forget/crates/build-hir/src/build.rs",
"patch": "@@ -6,8 +6,8 @@ use estree::{\n };\n use hir::{\n ArrayElement, BlockKind, BranchTerminal, Environment, ForTerminal, Function, GotoKind,\n- Identifier, IdentifierOperand, InstrIx, InstructionKind, InstructionValue, LValue, LoadGloba... | 2023-07-12T03:38:13 |
vercel/next.js | 9832e844e0f4460e24c87f00181cb6119dd7ed78 | b15817b46cd0f0328d272481220823d529302658 | docs: Fix syntax highlighting, add missing js code blocks (#79246) | [
{
"path": "docs/01-app/01-getting-started/07-server-and-client-components.mdx",
"patch": "@@ -70,7 +70,7 @@ Use **Server Components** when you need:\n \n For example, the `<Page>` component is a Server Component that fetches data about a post, and passes it as props to the `<LikeButton>` which handles clien... | 2025-05-15T14:36:57 |
ollama/ollama | c47154c08d59c93a653a2a798885a4a29bff71ee | b04e46da3ebca69a2b1216b3943d8a463e8b4a14 | fix: correct condition for AMDGPU_TARGETS filtering logic (#12412) | [
{
"path": "CMakeLists.txt",
"patch": "@@ -98,10 +98,12 @@ check_language(HIP)\n if(CMAKE_HIP_COMPILER)\n set(HIP_PLATFORM \"amd\")\n \n- find_package(hip REQUIRED)\n if(NOT AMDGPU_TARGETS)\n+ find_package(hip REQUIRED)\n list(FILTER AMDGPU_TARGETS INCLUDE REGEX \"^gfx(900|94[012]|1... | 2025-09-26T18:38:47 |
electron/electron | 6038e42c23c238e65a8c7abdf4dbd9e953084d2f | b00c026a54da906d89f4476d122218b01b6baee9 | fix: fullscreen windows aren't resizable on macOS (#34379) | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -167,6 +167,7 @@ class NativeWindowMac : public NativeWindow,\n void UpdateVibrancyRadii(bool fullscreen);\n \n // Set the attribute of NSWindow while work around a bug of zoom button.\n+ bool HasStyleMask(NSUInteger flag) const;\n void SetS... | 2022-06-03T07:47:19 |
huggingface/transformers | f49c720f52a08ad68f9f1d299cf65e7125d2e359 | 5c1c72be5f864d10d0efe8ece0768d9ed6ee4fdd | 🚨 fix + tests dense & MoE TP all reduce (decoder only) (#43722)
* introducing test tensor parallel mixing to catch TP related error
* Remove test file for tensor parallel functionality
* Refactor dense and MoE test scripts for parallel execution and improved GPU management
- Updated `run_dense_tests.sh` and `run_m... | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -328,6 +328,15 @@ def job_name(self):\n parallelism=6,\n )\n \n+tensor_parallel_ci_job = CircleCIJob(\n+ \"tensor_parallel_ci\",\n+ additional_env={\"RUN_TENSOR_PARALLEL_TESTS\": True},\n+ docker_image=[{\"image\": \"huggingface/tran... | 2026-03-04T08:57:50 |
golang/go | 75736cc169631dfaaa48ad46a00e1bf31d830ec8 | 1218566fe5c90e2bd39693566453828e6fbb4c12 | fmt, strconv: document that exponent is always two digits
Except for %b where it is only one.
Fixes #70862
Change-Id: Ic423a799b73bfa534f4083f6544bb9cd639fef06
Reviewed-on: https://go-review.googlesource.com/c/go/+/636915
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Revie... | [
{
"path": "src/fmt/doc.go",
"patch": "@@ -50,6 +50,9 @@ Floating-point and complex constituents:\n \t%x\thexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20\n \t%X\tupper-case hexadecimal notation, e.g. -0X1.23ABCP+20\n \n+\tThe exponent is always a decimal integer.\n+\tFor format... | 2024-12-16T23:38:43 |
facebook/react | e9d2822e92792c0f6a96864b9cf19a86275876f6 | f452ed2971846dba5d6536f3752a861bba637603 | [rust] New data model for HIR
This change is motivated by starting to explore porting EnterSSA to Rust. It's a
good medium complexity pass and quickly demonstrates why a direct port of our
existing data model and algorithms won't work so well. For examples just these
first lines at the top of the transform create ... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -638,6 +638,16 @@ dependencies = [\n \"serde\",\n ]\n \n+[[package]]\n+name = \"hir-ssa\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"bumpalo\",\n+ \"hir\",\n+ \"miette 5.9.0\",\n+ \"thiserror\",\n+]\n+\n [[package]]\n name = \"iana-time-zone\"\n versi... | 2023-07-11T07:59:08 |
electron/electron | b00c026a54da906d89f4476d122218b01b6baee9 | eb26f99f6efcc10048e80f58f60f9453e2171aee | fix: render process crash handling (#34428)
* fix: crash when renderer process is reused
Could occur when a renderer crashes and the same-origin URL is loaded again
which leads to reusing the renderer process.
* test: renderer process crash recovery
* fix: handle case which leads to render frame DCHECK
* ... | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -188,13 +188,20 @@ const mojo::Remote<mojom::ElectronRenderer>& WebFrameMain::GetRendererApi() {\n }\n \n void WebFrameMain::MaybeSetupMojoConnection() {\n+ if (render_frame_disposed_) {\n+ // RFH may not be set yet if called bet... | 2022-06-03T00:23:01 |
golang/go | d92c34a3870bace34724e69ec2516d59ae432d32 | 3bd08b97921826c1b0a5fbf0789f4b49d7619977 | cmd/go: don't create test actions for incomplete packages
If a package is incomplete, don't create the actions for building and
testing it. Instead report the errors for the package's dependencies
and report a setup failed error (similar to what we'd to for a load
error when producing the test packages). This produces... | [
{
"path": "src/cmd/go/internal/load/pkg.go",
"patch": "@@ -3068,7 +3068,15 @@ func setPGOProfilePath(pkgs []*Package) {\n // CheckPackageErrors prints errors encountered loading pkgs and their\n // dependencies, then exits with a non-zero status if any errors were found.\n func CheckPackageErrors(pkgs []*Pa... | 2024-12-13T22:33:16 |
vercel/next.js | c34851a12c3954f0ce38ef45befc51b4778617fb | bc7ce5d68dbc9751aecee77ce35cadf02a007383 | Turbopack: Allow fully dynamic import() in node_modules (#79153)
## What?
Allows e.g. ```import(`${url}`)``` when in node_modules. This makes
monaco-editor work automatically when it's correctly imported in e.g. a
`useEffect`.
- [x] Apply change
- [x] Verify against local reproduction
- [x] Add test case
Fixes #72... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -357,6 +357,8 @@ pub async fn get_client_module_options_context(\n let foreign_codes_options_context = ModuleOptionsContext {\n ecmascript: EcmascriptOptionsContext {\n enable_typeof_window_inlining: None,\n+ ... | 2025-05-15T11:45:25 |
huggingface/transformers | 5c1c72be5f864d10d0efe8ece0768d9ed6ee4fdd | 4bbd76228230c3666ada045f9df9b84f57df33a6 | add support for nemotron_3 (#44390)
* add support for nemotron_3
* convert modeling file
* address comments
* optional, config backward compatible
* style
* docstring
* non gated experts
* docs
* docs
* docs
* add notes about cuda stream
* fix tests
* minor update
* move conversion back to conversion_mapp... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -706,6 +706,8 @@\n title: NanoChat\n - local: model_doc/nemotron\n title: Nemotron\n+ - local: model_doc/nemotron_h\n+ title: NemotronH\n - local: model_doc/nllb\n title: NLLB\n - local: model_doc/nll... | 2026-03-03T18:18:50 |
facebook/react | 17ed6cc9a9de2bc6993c58d8e66c3de3e23ea16d | 1abea6c49de9deabdcad863d1ab67927fbdfa790 | [rust] Custom deserialization for more precise errors
The overall goal of this workstream is to have a Rust representation of ESTree
that we can use as the input and output of the compiler. In Rust environments we
can convert between the native AST of SWC or OXC and ESTree, and when invoked
from JavaScript we can ... | [
{
"path": "compiler/forget/crates/estree-codegen/src/codegen.rs",
"patch": "@@ -33,11 +33,6 @@ impl Grammar {\n operators,\n } = self;\n \n- let enum_names: HashSet<String> = enums.keys().cloned().collect();\n-\n- let mut node_names: Vec<_> = nodes.keys().cloned().collect()... | 2023-07-08T14:00:01 |
electron/electron | 539a53786c591f0f2009ebcdb5b045ad6e13bd80 | 000c3d981ce3b5c03e478f8c92a1506625ed06ed | chore: remove redundant @available checks (#34407)
* chore: require macOS 10.13 for Chromium
* chore: fix lint | [
{
"path": "shell/browser/api/electron_api_system_preferences_mac.mm",
"patch": "@@ -423,17 +423,14 @@ AVMediaType ParseMediaType(const std::string& media_type) {\n }\n \n bool SystemPreferences::CanPromptTouchID() {\n- if (@available(macOS 10.12.2, *)) {\n- base::scoped_nsobject<LAContext> context([[LAC... | 2022-06-02T18:43:40 |
vercel/next.js | bc7ce5d68dbc9751aecee77ce35cadf02a007383 | 53bb899fc4af08c4e9d4dae2d8a1b2d631fe789c | Reland: Fix false-positive `"use cache"` misplacement error (#79222)
_Relanding #79151, now ignoring TS AST nodes when checking whether all
exported module items are async functions._
This fixes an error where we incorrectly showed the following compiler
error when using Turbopack:
```sh
Ecmascript file had an error... | [
{
"path": "crates/next-core/src/next_shared/transforms/server_actions.rs",
"patch": "@@ -40,8 +40,8 @@ pub async fn get_server_actions_transform_rule(\n Ok(ModuleRule::new(\n module_rule_match_js_no_url(enable_mdx_rs),\n vec![ModuleRuleEffect::ExtendEcmascriptTransforms {\n- p... | 2025-05-15T11:06:28 |
golang/go | 3bd08b97921826c1b0a5fbf0789f4b49d7619977 | 18b5435fc84225ca303da7a110c7e8065dc4bbda | runtime: usleep in TestWeakToStrongMarkTermination
There's a subtle bug in this test (big surprise): time.Sleep allocates,
so the time.Sleep(100*time.Millisecond) before unblocking gcMarkDone
might itself end up in gcMarkDone.
Work around this by using usleep here instead.
Fixes #70532.
Change-Id: I4c642ebb12f737cd... | [
{
"path": "src/runtime/gc_test.go",
"patch": "@@ -834,7 +834,11 @@ func TestWeakToStrongMarkTermination(t *testing.T) {\n \t\tdone <- struct{}{}\n \t}()\n \tgo func() {\n-\t\ttime.Sleep(100 * time.Millisecond)\n+\t\t// Usleep here instead of time.Sleep. time.Sleep\n+\t\t// can allocate, and if we get unluck... | 2024-12-13T23:18:59 |
huggingface/transformers | 4bbd76228230c3666ada045f9df9b84f57df33a6 | 76f9fa4109c76291e6d194267deb3f00a31d46ca | [ Dynamic weight loader] fix remote code when format matches (#44396)
* nit
* style
* test is no longer relevant, if the weights exists why rename them?
* fix
* nit | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -1128,6 +1128,9 @@ def convert_and_load_state_dict_in_model(\n renamed_key, source_pattern = rename_source_key(\n original_key, renamings, converters, prefix, meta_model_state_dict\n )\n+ if renamed_key not i... | 2026-03-03T17:53:32 |
facebook/react | 750b1e6adb4b1525d5d77de5fa46c7a969a8a36f | 0c1193ecd7a1712e0097e075fcddb7f4c4fb2a8a | [rust] Partial ES2015 support in estree codegen
Adds some parts of the ES2015 spec, such as imports and ForOfStatement. This is
enough to get a few more fixtures compiling. The last one uses JSX which I
haven't defined yet. | [
{
"path": "compiler/forget/crates/estree-codegen/src/codegen.rs",
"patch": "@@ -168,6 +168,9 @@ pub struct Field {\n \n #[serde(default)]\n pub flatten: bool,\n+\n+ #[serde(default)]\n+ pub rename: Option<String>,\n }\n \n impl Field {\n@@ -193,11 +196,7 @@ impl Field {\n \"Can... | 2023-07-08T13:59:58 |
electron/electron | 1cd07c565a87ced6a923ade76eda380367e5ce1f | f306fbc01056256864d49be4ddff882245662cdf | fix: crash in WebFrameMain mojo connection when RenderFrameHost is nullptr (#34411)
* fix: crash when RenderFrameHost is nullptr
* chore: lint fix
Co-authored-by: samuelmaddock <samuel.maddock@gmail.com> | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -193,8 +193,13 @@ void WebFrameMain::MaybeSetupMojoConnection() {\n renderer_api_.set_disconnect_handler(base::BindOnce(\n &WebFrameMain::OnRendererConnectionError, weak_factory_.GetWeakPtr()));\n }\n+\n+ // Render fra... | 2022-06-01T23:03:04 |
vercel/next.js | 53bb899fc4af08c4e9d4dae2d8a1b2d631fe789c | ce0fe2672e46d0755989dccb45968d8128932adf | [ts-next-plugin] test: add client-boundary test (#79194)
This PR added tests for Next.js TypeScript plugins, specific for client-boundary. Updated the readme and removed the legacy fixture. | [
{
"path": "test/development/typescript-plugin/README.md",
"patch": "@@ -19,8 +19,14 @@ Ensure the current comments still describe the observed behavior.\n `app/error.tsx#Error` and `app/global-error.tsx#GlobalError` have a `reset` prop\n that should be excluded from the serialization check.\n \n+### Client ... | 2025-05-15T09:39:26 |
ollama/ollama | b04e46da3ebca69a2b1216b3943d8a463e8b4a14 | 34efbbd3f02c024fc3256ae7d7799abb9cb98e8f | bugfix: restore the current runOptions if loading fails in the CLI (#12402)
There are two bugs when using `/load <model>` for a model that doesn't exist, namely:
1. it will not restore the current model settings if the current model is a thinking model; and
2. it will crash is the current model is a non-thinking m... | [
{
"path": "cmd/cmd.go",
"patch": "@@ -1118,6 +1118,51 @@ type runOptions struct {\n \tShowConnect bool\n }\n \n+func (r runOptions) Copy() runOptions {\n+\tvar messages []api.Message\n+\tif r.Messages != nil {\n+\t\tmessages = make([]api.Message, len(r.Messages))\n+\t\tcopy(messages, r.Messages)\n+\t}\n+\n... | 2025-09-26T01:30:45 |
golang/go | 18b5435fc84225ca303da7a110c7e8065dc4bbda | c1f2542c8bef27872a95efd7904afeeee36fe976 | testing: don't measure cleanup time after B.Loop
B.Loop resets the timer on the first iteration so that setup code
isn't measured, but it currently leaves the timer running after the
last iteration, meaning that cleanup code will still be measured. Fix
this by stopping the timer when B.Loop returns false to indicate t... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -366,6 +366,8 @@ func (b *B) ReportMetric(n float64, unit string) {\n func (b *B) stopOrScaleBLoop() bool {\n \ttimeElapsed := highPrecisionTimeSince(b.start)\n \tif timeElapsed >= b.benchTime.d {\n+\t\t// Stop the timer so we don't count cleanup time\n+\t\... | 2024-12-13T02:18:44 |
huggingface/transformers | 76f9fa4109c76291e6d194267deb3f00a31d46ca | 8f2a5005182a398b66cdd19d0d23ae903df4c7c6 | [timesfm2_5] fix timesfm2.5 loss (#44331)
* fix timesfm2.5 loss
* Update src/transformers/models/timesfm2_5/modular_timesfm2_5.py
Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
* fix typo
* use input_ff_layer.weight.dtype to cast
* more dtype
* fix tests
* formatting
* address review
... | [
{
"path": "src/transformers/models/timesfm2_5/modeling_timesfm2_5.py",
"patch": "@@ -106,6 +106,8 @@ def __init__(self, config, input_dims: int, hidden_dims: int, output_dims: int,\n use_bias = use_bias if use_bias is not None else config.use_bias\n \n def forward(self, x):\n+ # Align act... | 2026-03-03T17:18:57 |
electron/electron | 561be723736c6e677ebd20bbf582f797f09b8d92 | a38e5d20ff0ffa9cd2875e95755b1ce4be0ebb83 | chore: update husky to v8.0.1 (#34343)
* chore: update husky v8.0.1
* chore: remove unnecessary .husky/.gitignore
ref : https://github.com/typicode/husky/releases/tag/v7.0.0
* chore: add ^ prefix for husky version
* chore: update yarn.lock
Co-authored-by: Cheng Zhao <zcbenz@gmail.com> | [
{
"path": ".husky/.gitignore",
"patch": "@@ -1 +0,0 @@\n-_",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "package.json",
"patch": "@@ -48,7 +48,7 @@\n \"folder-hash\": \"^2.1.1\",\n \"fs-extra\": \"^9.0.1\",\n \"got\": \"^6.3.0\",\n- \"husky\": \... | 2022-06-01T17:00:48 |
vercel/next.js | 135817cafd14bcdd025272576c3f15f5f139c28e | ffea3e9366eda5727623798012d1ae78ad3e7391 | Revert "Update mappings in `launch.json` to improve debugging in VSCode (#76559)" (#79206)
This partially reverts commit 710c76bfe805c3712bd18e087199b4e764f35a7e, which is needed after having changed our pre-bundling approach in #79164. | [
{
"path": ".vscode/launch.json",
"patch": "@@ -45,10 +45,10 @@\n \"webpack://_N_E/[.]/(.*)\": \"${workspaceFolder}/${input:appDirname}/.next/server/$1\",\n \"webpack-internal:///(ssr)/./*\": \"${workspaceFolder}/${input:appDirname}/*\",\n \"webpack://(?:_N_E)?/(?:../)*src/(.*)\": \"$... | 2025-05-14T16:43:23 |
huggingface/transformers | 8f2a5005182a398b66cdd19d0d23ae903df4c7c6 | 64aad390d5903896f1291606e05e673dc52ebee6 | Fix peft conversion mappings (#44413)
fix | [
{
"path": "src/transformers/integrations/peft.py",
"patch": "@@ -226,7 +226,7 @@ def _build_peft_weight_mapping(\n new_weight_conversions.append(orig_conversion)\n continue\n \n- if orig_conversion.target_patterns == [\"mlp.experts.gate_up_proj\"]:\n+ if len(orig_conver... | 2026-03-03T17:08:37 |
golang/go | 090748d6c7973e9bb8f5efe069135c8ea0f0d89c | e39e965e0e0cce65ca977fd0da35f5bfb68dc2b8 | testing: improve B.Loop docs, use B.Loop in examples
This updates the testing documentation to frame B.Loop as the
canonical way to write benchmarks. We retain documentation on b.N
benchmarks because people will definitely continue to see them (and
write them), but it's demoted to clearly second class.
This also atte... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -78,7 +78,7 @@ type InternalBenchmark struct {\n }\n \n // B is a type passed to [Benchmark] functions to manage benchmark\n-// timing and to specify the number of iterations to run.\n+// timing and control the number of iterations.\n //\n // A benchmark en... | 2024-12-12T20:43:37 |
facebook/react | a32a2baa73ce3d42b231e59cc582930666ac1e66 | 8176f25719da6f99be829f4e1400a10f34c6bff9 | [rust] Start of error handling
Until now i've freely used `panic!`, `unwrap()`, and friends for "error
handling". This PR switches to consistently returning `Result` within the HIR
builder, using a structured error representation that exploits helpers from
`thiserror` and `miette` crates. Miette has a super graphi... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -153,6 +153,15 @@ dependencies = [\n \"rustc-demangle\",\n ]\n \n+[[package]]\n+name = \"backtrace-ext\"\n+version = \"0.2.1\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"537beee3be4a18fb023b570f80e3ae28003db9167a7... | 2023-07-08T13:59:55 |
electron/electron | a38e5d20ff0ffa9cd2875e95755b1ce4be0ebb83 | cda8f3c15cac770142025cc3818ab8f069468aa1 | ci: cache python install to better deal with download errors. (#34360)
* ci: cache python install to better deal with download errors.
* chore: use our CDN to download python2
* build: DRY up the python install steps
Co-authored-by: Samuel Attard <sattard@salesforce.com> | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -527,15 +527,6 @@ step-install-gnutar-on-mac: &step-install-gnutar-on-mac\n ln -fs /usr/local/bin/gtar /usr/local/bin/tar\n fi\n \n-step-install-python2-on-mac: &step-install-python2-on-mac\n- run:\n- name: Install python2 on macos\n- ... | 2022-06-01T16:59:26 |
vercel/next.js | ffea3e9366eda5727623798012d1ae78ad3e7391 | 0dcee14044c9e0e1d415aaae9c6995dd8e08e0c3 | turbo-tasks: Encode location information into panics (#78945)
Replaces #78796
This is the basis of the Rust side of things to report location information with panics.
To do:
- [x] Automated test
Closes PACK-4546 | [
{
"path": "crates/napi/src/lib.rs",
"patch": "@@ -68,11 +68,19 @@ static ALLOC: dhat::Alloc = dhat::Alloc;\n \n #[cfg(not(target_arch = \"wasm32\"))]\n #[napi::module_init]\n-\n fn init() {\n+ use std::panic::{set_hook, take_hook};\n+\n use tokio::runtime::Builder;\n+ use turbo_tasks::handle_panic... | 2025-05-14T16:34:06 |
ollama/ollama | 05ba4ca1f4b356df50ed6eede0e2bcdc76b31fb8 | fbd82ba5bb35c42a6b09f5bd50ff1aa0690b9626 | parsers: fix unicode handling for qwen3-coder
When trimming whitespace at the end of every chunk, we were iterating
backwards over the string byte-by-byte instead of rune-by-rune.
As an example of how this can cause corruption, suppose we have the
multi-byte character ✅ (`"\u2705"`), which is represented in utf-8 as
... | [
{
"path": "model/parsers/qwen3coder.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"strconv\"\n \t\"strings\"\n \t\"unicode\"\n+\t\"unicode/utf8\"\n \n \t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/logutil\"\n@@ -204,12 +205,21 @@ func overlap(s, delim string) int {\n }\n \n func trailin... | 2025-09-25T22:47:46 |
golang/go | 08770a5b944ba1cf4f62f075bfd94cd36a061bdb | c4f356dd863c449835248c24f6dc653323010a1c | cmd/link: make dwarf name slice index self-describing
cmd/compile/internal/dwarfgen.createComplexVar does it this way, which
has the nice property of documenting the expected prefix.
This is primarily for newtype, since defgotype checks for the prefix
immediately prior, but I changed both for consistency.
Change-Id:... | [
{
"path": "src/cmd/link/internal/ld/dwarf.go",
"patch": "@@ -520,7 +520,7 @@ func (d *dwctxt) defgotype(gotype loader.Sym) loader.Sym {\n \t\td.linkctxt.Errorf(gotype, \"dwarf: type name doesn't start with \\\"type:\\\"\")\n \t\treturn d.mustFind(\"<unspecified>\")\n \t}\n-\tname := sn[5:] // could also dec... | 2024-12-13T20:05:27 |
huggingface/transformers | 64aad390d5903896f1291606e05e673dc52ebee6 | 9894484e06b81936b30479d017e85b38313951e9 | Reduce tqdm verbosity during model loading (#44414)
fix tqdm verbosity | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -33,8 +33,9 @@\n \n from .integrations.accelerate import get_device, offload_weight\n from .integrations.tensor_parallel import ALL_PARALLEL_STYLES\n-from .utils import is_env_variable_true, logging\n+from .utils import is_env_variable_true\n ... | 2026-03-03T16:57:53 |
facebook/react | eb2c2f7c2cf2652a168c2b433d2989131c69754b | a19bbebbe36abd34efbd8f003e0f3bb55e0f1fdc | rename SuspenseList export to unstable_SuspenseList (#27061)
## Summary
as we began [discussing
yesterday](https://github.com/facebook/react/pull/27056#discussion_r1253282784),
`SuspenseList` is not actually stable yet, and should likely be exported
with the `unstable_` prefix.
the conversation yesterday bega... | [
{
"path": "fixtures/stacks/Example.js",
"patch": "@@ -38,7 +38,7 @@ function Example() {\n DisplayName,\n null,\n x(\n- React.SuspenseList,\n+ React.unstable_SuspenseList,\n null,\n x(\n NativeClass,",
"additions": 1,
"deletions": 1,
"lan... | 2023-07-06T18:09:53 |
electron/electron | 2cb53c5db1751170816959d6d89db58dc638b155 | 93b39b92b5078071f870b8e97c31e24c1974a49f | fix: zombie windows when fullscreening and closing (#34378) | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -176,6 +176,10 @@ class NativeWindowMac : public NativeWindow,\n // Handle fullscreen transitions.\n void SetFullScreenTransitionState(FullScreenTransitionState state);\n void HandlePendingFullscreenTransitions();\n+ bool HandleDeferredClose... | 2022-05-31T08:43:42 |
vercel/next.js | 0dcee14044c9e0e1d415aaae9c6995dd8e08e0c3 | cb49b483f1e2f63dcf6880765585830b48154e29 | docs: add graceful error boundary example (#77781)
This adds an example in the documentation for the errors page for a
graceful error boundary in Next.js.
<!-- 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 checkl... | [
{
"path": "docs/01-app/05-api-reference/03-file-conventions/error.mdx",
"patch": "@@ -193,6 +193,126 @@ export default function GlobalError({ error, reset }) {\n }\n ```\n \n+### Graceful error recovery with a custom error boundary\n+\n+When rendering fails on the client, it can be useful to show the last k... | 2025-05-14T15:44:07 |
ollama/ollama | fbd82ba5bb35c42a6b09f5bd50ff1aa0690b9626 | 2e742544bfc5242be4d76c6fee5082c7e41b3df2 | Grace/deepseek v3 migration (#12385)
* init deepseek model file
* temp removal of flash attention implementation
* shapes and proper, can make a pass
* query, key, value have good cosine similarity, but the max diff is a bit high
* Attention block is working! ** with eager for now, have not added the mask line
* ... | [
{
"path": "model/models/deepseek2/model.go",
"patch": "@@ -0,0 +1,324 @@\n+package deepseek2\n+\n+// uses deepseek 2 architecture but written based on deepseek 3 model\n+\n+import (\n+\t\"math\"\n+\n+\t\"github.com/ollama/ollama/fs\"\n+\t\"github.com/ollama/ollama/kvcache\"\n+\t\"github.com/ollama/ollama/ml... | 2025-09-24T22:19:47 |
golang/go | c4f356dd863c449835248c24f6dc653323010a1c | 08725f9de28726b52c2e62a37cd378d10f10c110 | crypto/ecdsa: fix s390x assembly with P-521
I had incorrectly assumed that the blocksize was always the same as the
curve field size. This is true of P-256 and P-384, but not P-521.
Fixes #70660
Fixes #70771
Change-Id: Idb6b510fcd3dd42d9b1e6cf42c1bb92e0ce8bd07
Reviewed-on: https://go-review.googlesource.com/c/go/+/6... | [
{
"path": "src/crypto/internal/fips140/ecdsa/ecdsa.go",
"patch": "@@ -21,7 +21,7 @@ import (\n \n type PrivateKey struct {\n \tpub PublicKey\n-\td []byte // bigmod.(*Nat).Bytes output (fixed length)\n+\td []byte // bigmod.(*Nat).Bytes output (same length as the curve order)\n }\n \n func (priv *PrivateK... | 2024-12-13T15:59:20 |
huggingface/transformers | 9894484e06b81936b30479d017e85b38313951e9 | 9599bfbb97a6cc009f30817a6d40ae42b5ffaa58 | docs: Add NeMo Automodel community integration docs (#44304)
* Add NeMo Automodel community integration docs
* extra comments
Signed-off-by: adil-a <adil.asif2000@hotmail.com>
* Fix formatting in NeMo Automodel docs
Fix en-dash to double-hyphen in torchrun flags, typo "instanting" →
"instantiating", doc-builder ba... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -278,12 +278,16 @@\n title: MLX\n title: Local deployment\n - sections:\n+ - local: community_integrations/nemo_automodel_pretraining\n+ title: NeMo Automodel\n - local: community_integrations/nanotron\n title: Nanotron\n ... | 2026-03-03T16:51:48 |
facebook/react | 08e51d3fd72db5f11d9a1dd35480faa5d2305f65 | d3b9948b5e26b8e28e6f079acca7e435672fa4e8 | [rust] Pretty-printer for HIR
Implements a pretty-printer for the HIR and switches the fixture tests to use
this instead of the debug format. It's much more readable now!
Note that not all types are properly printed, I only implemented the
instructions and terminals used in the example. For others we fall back to... | [
{
"path": "compiler/forget/crates/fixtures/tests/fixtures/simple.js",
"patch": "@@ -1,4 +1,4 @@\n function test() {\n- [true, false, null, 1, 3.14, \"hello world!\"];\n+ [true, false, null, 1, 3.14, ...[\"hello world!\"]];\n return 2;\n }",
"additions": 1,
"deletions": 1,
"language": "JavaSc... | 2023-07-06T00:24:47 |
electron/electron | fd88908457a986f06e310e80499e4b2775d8ba70 | 34a9268e97592afcb662f5cc6d5c1b1489549387 | fix: hide content protected windows during screen capture with `ScreenCaptureKitMac` (#34362)
fix: hide content protected windows during screen capture | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -110,3 +110,4 @@ introduce_ozoneplatform_electron_can_call_x11_property.patch\n make_gtk_getlibgtk_public.patch\n build_disable_print_content_analysis.patch\n custom_protocols_plzserviceworker.patch\n+feat_filter_out_non-shareable_windows_in_the_current_ap... | 2022-05-30T12:13:48 |
golang/go | 38e9a671d7648227f4f5b133e2e6452491cccebf | 6f7a4540b13d6d3be997276178aed96fb0e8a9c2 | syscall: on freebsd-386 only update written for certain errors
Testing on the freebsd-386 gomote seems to show that sendfile returns
a non-zero number of bytes written even when it returns EINVAL.
This confuses the caller. Change the Go code to only return non-zero
on success or EINTR or EAGAIN, which are the only cas... | [
{
"path": "src/syscall/syscall_freebsd_386.go",
"patch": "@@ -36,7 +36,13 @@ func sendfile(outfd int, infd int, offset *int64, count int) (written int, err e\n \tvar writtenOut uint64 = 0\n \t_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr((*offset)>>32), uintptr(... | 2024-12-12T22:07:13 |
huggingface/transformers | 9599bfbb97a6cc009f30817a6d40ae42b5ffaa58 | 24c5bc4b1b6186a5d95e6e7359a21e48a4e9def2 | Fix kernels security issue (#44395)
* fix security vuln
* allow other repos with trust_remote_code
* fix default
* fix
* fix test
* change name
* switch name
* name
* update message
* move test
* update doc
* switch name
* doc | [
{
"path": "docs/source/en/kernel_doc/loading_kernels.md",
"patch": "@@ -55,6 +55,19 @@ model = AutoModelForCausalLM.from_pretrained(\n )\n ```\n \n+Note that for attention kernels, anything that is not part of the `kernels-community` repository (which is trusted - we may add more trusted repositories in the... | 2026-03-03T15:28:17 |
vercel/next.js | cb49b483f1e2f63dcf6880765585830b48154e29 | b304b45e3a6e3e79338568d76e28805e77c03ec9 | Reland "Ensure mangling is disabled for dev runtime builds (#75297)" (#79201)
Reapplies #75297
Also fixes some rspack tests which didn't await assertions properly so they might have looked like they're passing | [
{
"path": "contributing/core/vscode-debugger.md",
"patch": "@@ -24,4 +24,4 @@ To see the changes you make to the Next.js codebase during development, you can\n \n When developing/debugging Next.js, you can set breakpoints anywhere in the `packages/next` source code that will stop the debugger at certain loc... | 2025-05-14T15:38:01 |
facebook/react | d3b9948b5e26b8e28e6f079acca7e435672fa4e8 | 1d2e7ee74706b57fb293089671153bac7e57ec93 | [rust] Fixture tests for parsing and lowering
Adds a new `fixtures` crate intended for running end-to-end tests of the
compiler. As we expand the compiler this will eventually match our JS fixture
setup, where we have .js files as input and produce memoized JS output.
For now, this does the following:
* Parses ... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -12,6 +12,32 @@ dependencies = [\n \"regex\",\n ]\n \n+[[package]]\n+name = \"addr2line\"\n+version = \"0.20.0\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f02522... | 2023-07-06T00:24:46 |
ollama/ollama | fd88cd7cb0966a26f41ec41bc012f2c4d725ab98 | e1979c571aff857568c9c35f5994da40568ef15c | harmony: don't sanitize built-ins
In #11910 we started sanitizing function names, but we accidentally were
modifying built-ins like `browser.open` to `browser_open`. This was
removing the special prompt rendering for built-ins, but this wasn't
immediately apparent since the models seem to be reasonably good at
remembe... | [
{
"path": "harmony/harmonyparser.go",
"patch": "@@ -463,6 +463,10 @@ func (h *HarmonyMessageHandler) HasThinkingSupport() bool {\n \n func (m *FunctionNameMap) ConvertAndAdd(userFunctionName string) string {\n \tharmonyFunctionName := m.deriveName(userFunctionName)\n+\t// built-in functions should not be re... | 2025-09-24T06:34:55 |
electron/electron | 7bc4b919dcb978426b2cb7114ced85801ec3f776 | 6cb2b9eab7e04d5b08ed0a75a78c5c6a28d4f1d0 | fix: esc not working on Windows during fullscreen (#34317)
* fix: esc not working on Windows during fullscreen
* chore: fix lint | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -98,7 +98,7 @@ fix_expose_decrementcapturercount_in_web_contents_impl.patch\n add_ui_scopedcliboardwriter_writeunsaferawdata.patch\n feat_add_data_parameter_to_processsingleton.patch\n load_v8_snapshot_in_browser_process.patch\n-fix_patch_out_permissions_c... | 2022-05-25T04:38:38 |
golang/go | 6f7a4540b13d6d3be997276178aed96fb0e8a9c2 | 14e5093ee56c7e3a807c8924fd2d425cd2b0f376 | net: fix example function name for IP.To4
Change-Id: Ia9a2c3a9f53792173cd1fb9f8e1a078fe3444945
Reviewed-on: https://go-review.googlesource.com/c/go/+/635136
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amed... | [
{
"path": "src/net/example_test.go",
"patch": "@@ -334,7 +334,7 @@ func ExampleIP_To16() {\n \t// 10.255.0.0\n }\n \n-func ExampleIP_to4() {\n+func ExampleIP_To4() {\n \tipv6 := net.IP{0xfc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}\n \tipv4 := net.IPv4(10, 255, 0, 0)\n ",
"additions": 1,
"deleti... | 2024-12-12T18:08:35 |
huggingface/transformers | 2038dc5edb2b964370128d2e4921c6d6aec3ea16 | f6bd5abb8100b91260bd835c4846f72aa60c594b | [CB] Small fixes (#44227)
Scrap timer | [
{
"path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py",
"patch": "@@ -52,9 +52,9 @@ def run_and_parse_cb_example(args: str) -> dict:\n results.append(run_and_parse_cb_example(\"--samples 100 --attn flash_attention_2\"))\n results.append(run_and_parse_cb_example(\"--samples 100 --a... | 2026-03-03T13:40:08 |
facebook/react | 2ac69bf7d952aba132cd887b09b71622a295b88f | 6c3792e8d5e79d94f0d5ee24a1c0b3262ac067fa | [rust] Passes from HIRBuilder
This is a start to porting HIRBuilder, with a largely complete implementation of
`build()`. Notably this includes all the passes which build() calls, and the
helper functions those passes call in turn:
```rust
reverse_postorder_blocks(&mut hir);
remove_unreachable_for_updates(&mu... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -113,7 +113,9 @@ dependencies = [\n name = \"build-hir\"\n version = \"0.1.0\"\n dependencies = [\n+ \"estree\",\n \"hir\",\n+ \"indexmap 2.0.0\",\n ]\n \n [[package]]",
"additions": 2,
"deletions": 0,
"language": "Unknown"
},
{
"path... | 2023-07-06T00:24:43 |
vercel/next.js | b304b45e3a6e3e79338568d76e28805e77c03ec9 | 7ddd5ef0bb85aca47548cbb9dda59cc79be22635 | bugfix (pages): assetPrefix should not cause hard nav in development (#79176)
In development when handling the page request, we are sending the
parsedUrl with the basePath stripped but not assetPrefix. As a result,
when setting an assetPrefix, the chunk would 404 which causes a hard
nav. It'd then recover and work cor... | [
{
"path": "packages/next/src/server/lib/router-server.ts",
"patch": "@@ -327,11 +327,20 @@ export async function initialize(opts: {\n if (blockCrossSite(req, res, config.allowedDevOrigins, opts.hostname)) {\n return\n }\n+\n const origUrl = req.url || '/'\n \n+ // bo... | 2025-05-14T15:07:28 |
ollama/ollama | e1979c571aff857568c9c35f5994da40568ef15c | bf78ed6ee94e593a7edae2e277a736379cbc2413 | fix: leaf alt name (#12390)
a leaf node with an alternative name gets all its alternatives names
added into the same branch rather than creating branches themselves | [
{
"path": "model/model.go",
"patch": "@@ -187,15 +187,17 @@ func populateFields(base Base, v reflect.Value, tags ...Tag) reflect.Value {\n \t\t\t\t\t\t\t\tnames = append(names, prefix+n+suffix)\n \t\t\t\t\t\t\t}\n \t\t\t\t\t\t}\n-\n-\t\t\t\t\t\tif childNames := fn(tags[1:], tags[0].prefix, tags[0].suffix); ... | 2025-09-24T00:50:53 |
electron/electron | ba573f558305a6448f67ca1db51730cdd1559f58 | df9383cb3cc8d18ce21acd9bcb520fab92813aaa | feat: add support for HIDDevice.forget() (#34210)
* feat: add support for HIDDevice.forget()
* chore: remove whitespace
* chore: use `SetGetter` to serialize the render_frame_host
Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com>
* fixup chore: use `SetGetter` to serialize the render_frame_host
... | [
{
"path": "docs/api/session.md",
"patch": "@@ -274,6 +274,19 @@ from `select-hid-device` is called. This event is intended for use when using\n a UI to ask users to pick a device so that the UI can be updated to remove the\n specified device.\n \n+#### Event: 'hid-device-revoked'\n+\n+Returns:\n+\n+* `even... | 2022-05-23T19:13:18 |
huggingface/transformers | 28d02a31386a4dfd85e2a91f86b7dfcebd44596d | 41888df59eed5379467262000a4f68493d3fbced | Support non-gated experts (#44319)
* support non-gated moe experts
* fix tp test | [
{
"path": "src/transformers/integrations/moe.py",
"patch": "@@ -118,40 +118,50 @@ def batched_mm_experts_forward(\n \n # Handle invalid expert IDs from Expert Parallelism (EP)\n # When EP is enabled, tokens assigned to experts on other devices are marked with sentinel value >= num_experts\n- vali... | 2026-03-02T19:26:36 |
golang/go | 077d51909d3d7bc2d52afd47c9be1de8ee4f0756 | fafd4477f3d19f2c11a628e6e407ecf9924309c1 | internal/poll: in SendFile treat ENOTSUP like EOPNOTSUPP
Fixes #70763
Change-Id: Ifb79b5b0529f7977df0fe1b59d224b8b31df2c9b
Reviewed-on: https://go-review.googlesource.com/c/go/+/635396
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.... | [
{
"path": "src/internal/poll/sendfile_unix.go",
"patch": "@@ -110,12 +110,20 @@ func sendFile(dstFD *FD, src int, offset *int64, size int64) (written int64, err\n \t\t\t// Retry.\n \t\tcase syscall.ENOSYS, syscall.EOPNOTSUPP, syscall.EINVAL:\n \t\t\t// ENOSYS indicates no kernel support for sendfile.\n-\t\t... | 2024-12-11T22:02:28 |
facebook/react | 6c3792e8d5e79d94f0d5ee24a1c0b3262ac067fa | 4c0122f4cf5b636f0073aab50de93115d6588591 | [rust] Initial translation of HIR and related types
This is an initial translation of HIR (minus the ReactiveFunction bits). It's
mostly a straightforward translation. A few differences:
* Instead of Effect having an Unknown variant, we type `Place.effect:
Option<Effect>`. Maybe i'll revert that but it seems righ... | [
{
"path": "compiler/forget/Cargo.lock",
"patch": "@@ -109,6 +109,13 @@ dependencies = [\n \"serde\",\n ]\n \n+[[package]]\n+name = \"build-hir\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"hir\",\n+]\n+\n [[package]]\n name = \"bumpalo\"\n version = \"3.13.0\"\n@@ -186,6 +193,12 @@ dependencies = [\n \"... | 2023-07-06T00:24:40 |
vercel/next.js | 7ddd5ef0bb85aca47548cbb9dda59cc79be22635 | 4c73369dc5846f4b564d602cb1e89ea48baed1e9 | perf(turbopack): Do not inline synthesized content for sourcemaps (#79173)
### What?
Disable `inline_sources_content` of SWC source map generator for `minify()`.
### Why?
Regardless, it's the wrong value from the user's perspective, so we cannot use it anyway.
build_sourcemap will fill the sourcemap with the cont... | [
{
"path": "turbopack/crates/turbopack-css/src/module_asset.rs",
"patch": "@@ -432,7 +432,7 @@ fn generate_minimal_source_map(filename: String, source: String) -> Result<Rope>\n }\n let sm: Arc<SourceMap> = Default::default();\n sm.new_source_file(FileName::Custom(filename).into(), source);\n- ... | 2025-05-14T14:37:33 |
ollama/ollama | 64883e3c4c0238dc70fddcc456af569d1489415d | 41efdd404828f361790c5397c55cca8aa55336ac | auth: fix problems with the ollama keypairs (#12373)
* auth: fix problems with the ollama keypairs
This change adds several fixes including:
- reading in the pubkey files correctly
- fixing the push unit test to create a keypair file in a temp directory
- not return 500 errors for normal status error | [
{
"path": "api/client.go",
"patch": "@@ -45,6 +45,12 @@ func checkError(resp *http.Response, body []byte) error {\n \t\treturn nil\n \t}\n \n+\tif resp.StatusCode == http.StatusUnauthorized {\n+\t\tauthError := AuthorizationError{StatusCode: resp.StatusCode}\n+\t\tjson.Unmarshal(body, &authError)\n+\t\tretu... | 2025-09-23T06:20:20 |
electron/electron | df9383cb3cc8d18ce21acd9bcb520fab92813aaa | 09a80ea48c53b7b16bbd798077e4550ee5ffa8f3 | chore: add a TRACE call for `crash_reporter::Start()` (#34268)
chore: add a TRACE call for crash_reporter::Start()
Initializing the crashReporter takes around 620 milliseconds on Intel
macOS. I have sent a CL to crashpad to partially fix the performance
issue in
https://chromium-review.googlesource.com/c/crashpa... | [
{
"path": "shell/browser/api/electron_api_crash_reporter.cc",
"patch": "@@ -16,6 +16,7 @@\n #include \"base/path_service.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"base/threading/thread_restrictions.h\"\n+#include \"base/trace_event/trace_event.h\"\n #include \"chrome/common/chrom... | 2022-05-23T15:38:03 |
huggingface/transformers | 41888df59eed5379467262000a4f68493d3fbced | c1838e8b48096ce467b30819cd9fd927d809337b | Fix speculative tests that are flaky with SDPA (#44340)
* Fix speculative tests that are flaky with SDPA
* Use SDPA backends instead | [
{
"path": "tests/generation/test_utils.py",
"patch": "@@ -61,6 +61,7 @@\n if is_torch_available():\n import torch\n import torch.nn.functional as F\n+ from torch.nn.attention import SDPBackend, sdpa_kernel\n \n from transformers import (\n AutoModelForCausalLM,\n@@ -3392,29 +3393,30 @... | 2026-03-02T17:18:24 |
golang/go | fafd4477f3d19f2c11a628e6e407ecf9924309c1 | 0ca521f9c1a6357578b501615f073adb2da6b527 | cmd/cgo: use full prototype for main in C code
Avoids pedantic errors from modern C compilers.
Fixes #70769
Change-Id: Ibe0d9960e998eb0346b97d7bd69eb7de0d0e6c60
Reviewed-on: https://go-review.googlesource.com/c/go/+/635095
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Mauri de Souza Meneguzzo <mauri870... | [
{
"path": "src/cmd/cgo/doc.go",
"patch": "@@ -796,7 +796,7 @@ Instead, the build process generates an object file using dynamic\n linkage to the desired libraries. The main function is provided by\n _cgo_main.c:\n \n-\tint main() { return 0; }\n+\tint main(int argc, char **argv) { return 0; }\n \tvoid cross... | 2024-12-11T04:05:06 |
vercel/next.js | 0e39e7f155f1ab894b14f32216a9054c059b29e7 | 47eda30f1ab5ff8fc97802643125b4ce19cac14e | Docs: Visual nits (#79198)
Fix missing heading and line highlighting | [
{
"path": "docs/01-app/01-getting-started/06-css.mdx",
"patch": "@@ -232,6 +232,7 @@ function ExampleDialog(props) {\n ```\n \n </PagesOnly>\n+\n ## Ordering and Merging\n \n Next.js optimizes CSS during production builds by automatically chunking (merging) stylesheets. The **order of your CSS** depends on ... | 2025-05-14T10:57:41 |
huggingface/transformers | c1838e8b48096ce467b30819cd9fd927d809337b | c4dd81800ae37cfd0e88628c56d59cc6f074d23f | [Bugfix] fix qwen3.5 no split module (#44382)
fix qwen3.5 no split module | [
{
"path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py",
"patch": "@@ -1407,7 +1407,7 @@ class Qwen3_5Model(Qwen3_5PreTrainedModel):\n # Reference: fix gemma3 grad acc #37208\n accepts_loss_kwargs = False\n config: Qwen3_5Config\n- _no_split_modules = [\"Qwen3_5TextDecoderLayer\", \"Q... | 2026-03-02T16:16:38 |
electron/electron | 887b5a7dc7ec7020310db210685f920a12c6c033 | c3fa6005db8754bafba8e65f6811d73bbc659e54 | fix: crash on navigator.serial.getPorts() (#34280)
* fix: crash on navigator.serial.getPorts()
* test: fixup BrowserWindow.setTitlebarOverlay test | [
{
"path": "shell/browser/electron_permission_manager.cc",
"patch": "@@ -335,22 +335,32 @@ bool ElectronPermissionManager::CheckDevicePermission(\n static_cast<blink::PermissionType>(\n WebContentsPermissionHelper::PermissionType::SERIAL)) {\n #if BUILDFLAG(IS_WIN)\n... | 2022-05-23T14:33:39 |
vercel/next.js | 3e3403f165d43356277d40f04db6c7ad9afb30b0 | bcd799fc688fc3b1535150e24c6057033e29bf3c | Add `rustc-ice` files to gitignore (#79167)
We are using some rustc features that routinely lead to compiler crashes which get dumped as `rustc-ice` files.
We never want to commit these. | [
{
"path": ".gitignore",
"patch": "@@ -8,6 +8,9 @@ tarballs/\n packages/**/*.tgz\n .errors/\n \n+# rust compiler crashes\n+rustc-ice-*.txt\n+\n # dependencies\n node_modules\n package-lock.json",
"additions": 3,
"deletions": 0,
"language": "Unknown"
}
] | 2025-05-13T21:42:33 |
golang/go | 0ca521f9c1a6357578b501615f073adb2da6b527 | c93477b5e563dd0ed7b45fd519762f24b7cfa7b0 | debug/elf: adjust version API per issue discussion
This updates the new version API for the discussion on #63952.
This change reveals that in fact none of the tests set the
VERSYM_HIDDEN bit. The code before this CL set the hidden flag
for symbols that appear in DynamicVersionNeed, but that is not
an accurate represe... | [
{
"path": "api/go1.24.txt",
"patch": "@@ -106,33 +106,34 @@ pkg debug/elf, const VER_FLG_INFO = 4 #63952\n pkg debug/elf, const VER_FLG_INFO DynamicVersionFlag #63952\n pkg debug/elf, const VER_FLG_WEAK = 2 #63952\n pkg debug/elf, const VER_FLG_WEAK DynamicVersionFlag #63952\n-pkg debug/elf, const VerFlagGl... | 2024-12-11T03:48:11 |
ollama/ollama | 242df70a759695dc258c00f56fa373ab5c06b8b2 | dba39b2eee48d50f6e6c4aef102c710709bea765 | parsers: fix `&`s in qwen3coder parameter values
In <https://github.com/ollama/ollama/issues/12357> we that the model
will output tool calls such as
```
<function=shell>
<parameter=command>
pwd && ls -la
</parameter>
</function>
```
We parse this using the approach of transforming into valid xml and then
using an xm... | [
{
"path": "model/parsers/qwen3coder.go",
"patch": "@@ -393,18 +393,55 @@ func parseValue(raw string, paramType api.PropertyType) any {\n \treturn raw\n }\n \n-var qwenTagRegex = regexp.MustCompile(`<(\\w+)=([^>]+)>`)\n+var (\n+\tqwenTagRegex = regexp.MustCompile(`<(\\w+)=([^>]+)>`)\n+\tqwenXMLTagRegex = ... | 2025-09-20T19:10:58 |
huggingface/transformers | c4dd81800ae37cfd0e88628c56d59cc6f074d23f | 7c4c93752add1eea3358141cc7480bdcccfdf564 | Fix mutable default arguments and resource leaks (#44287)
* Fix mutable default arguments and resource leaks
Mutable defaults (shared state across calls):
- debug_utils.py: DebugUnderflowOverflow trace_batch_nums=[] -> None
- kernel_config.py: KernelConfig kernel_mapping={} -> None
- modeling_idefics.py: freeze_model... | [
{
"path": "src/transformers/debug_utils.py",
"patch": "@@ -142,7 +142,9 @@ class DebugUnderflowOverflow:\n Whether to abort after a certain batch number has finished\n \"\"\"\n \n- def __init__(self, model, max_frames_to_save=21, trace_batch_nums=[], abort_after_batch_num=None):\n+ def... | 2026-03-02T15:17:24 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.