repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | ee6f3ba55e6a78a75c2ba993edf591bc293207eb | 25beeb9acc8409c1ab16f5aa6f3504b72f4bac48 | chore(turbopack): Remove `Lightningcss` prefix for CSS types (#80067)
### What?
Remove redundant prefixes in some types.
### Why?
Our only CSS processor is `lightningcss` at the moment. | [
{
"path": "turbopack/crates/turbopack-css/src/process.rs",
"patch": "@@ -497,13 +497,13 @@ struct CssValidator {\n \n #[derive(Debug, PartialEq, Eq)]\n enum CssError {\n- LightningCssSelectorInModuleNotPure { selector: String },\n+ CssSelectorInModuleNotPure { selector: String },\n }\n \n impl CssErro... | 2025-06-02T19:31:23 |
golang/go | ee6e0a5ed6a11f79f40ca58ca5337ec5bad16ebb | 721f5ca4edc8073b777bd71df6801b237d72c332 | internal/routebsd: fix typo in sockAddrLen identifer name
For #70528.
Change-Id: I0db75cb998aeb299676384fe59bf241db18ebc5c
Reviewed-on: https://go-review.googlesource.com/c/go/+/646975
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Dmitri Shuralyov <dmit... | [
{
"path": "src/internal/routebsd/address.go",
"patch": "@@ -133,7 +133,7 @@ func parseInetAddr(af int, b []byte) (Addr, error) {\n \t\t}\n \t\tvar ip [ipv6Len]byte\n \t\tsockAddrLen := int(b[0])\n-\t\tif sockaddrLen != 0 {\n+\t\tif sockAddrLen != 0 {\n \t\t\tn := off6 + ipv6Len\n \t\t\tif sockAddrLen < n {\... | 2025-02-05T18:52:56 |
ollama/ollama | b95693056c62a3acaa172f555e3bdb2b438684e3 | c34fc64688396bb9f2e17a2a89251a63f58ee4f7 | feat: llama.cpp bump (17f7f4) for SSM performance improvements (#13408)
* feat: Bump llama.cpp to the latest master (17f7f4b)
This brings in significant improvements to prefill performance for all
models using the SSM_CONV and SSM_SCAN ops (granite4, jamba, falcon-h,
nemotron-h, Qwen3 Next) on Apple Metal.
See https... | [
{
"path": "Makefile.sync",
"patch": "@@ -1,6 +1,6 @@\n UPSTREAM=https://github.com/ggml-org/llama.cpp.git\n WORKDIR=llama/vendor\n-FETCH_HEAD=7f8ef50cce40e3e7e4526a3696cb45658190e69a\n+FETCH_HEAD=17f7f4baad8b3a716ee139da7bb56ae984e8c0fa\n \n .PHONY: help\n help:",
"additions": 1,
"deletions": 1,
... | 2025-12-10T20:59:27 |
facebook/react | 1b1dcb8a40d002edcbca483b1f9caa78087a878f | a3743b2e444d2198972b190a9d97c3edcf370414 | feat[devtools/extension]: show disclaimer when page doesnt run react and refactor react polling logic (#27373)
Changes:
1. Refactored react polling logic, now each `.eval()` call is wrapped in
Promise, so we can chain them properly.
2. When user has browser DevTools opened and React DevTools panels were
mounted, u... | [
{
"path": "packages/react-devtools-extensions/panel.html",
"patch": "@@ -22,11 +22,44 @@\n right: 0;\n bottom: 0;\n }\n+ .no-react-disclaimer {\n+ margin: 16px;\n+ font-family: Courier, monospace, serif;\n+ font-si... | 2023-09-20T12:30:50 |
huggingface/transformers | a7e73cdf6f9ffe65e5eeb4949379dcc00cadd209 | bfe00b41ebdb66b92ca40a8c81778dae3acdaccf | Disable async loading when quantizing on the fly (#44576)
* better logic
* fix
* better now
* Apply repo consistency fixes
* Apply suggestion from @Cyrilvallez
Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co>
* fix
* Apply repo consistency fixes
---------
Co-authored-by: github-actions[bot] <github-... | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -791,7 +791,10 @@ def _materialize_copy(tensor: torch.Tensor, device=None, dtype=None) -> torch.Te\n \n \n def spawn_materialize(\n- thread_pool: ThreadPoolExecutor | None, tensor: torch.Tensor, device=None, dtype=None\n+ thread_pool: Th... | 2026-03-16T16:30:29 |
electron/electron | 8128fa6d8586048d6fff2a40c710c8d6c279b640 | 3eb593dfde9c90bc17e669aa5532841097005c77 | build: fix missing patch config dir error (#35451) | [
{
"path": "script/export_all_patches.py",
"patch": "@@ -2,13 +2,15 @@\n \n import argparse\n import json\n+import os\n \n from lib import git\n \n \n def export_patches(dirs, dry_run):\n for patch_dir, repo in dirs.items():\n- git.export_patches(repo=repo, out_dir=patch_dir, dry_run=dry_run)\n+ if o... | 2022-08-25T16:39:16 |
vercel/next.js | 81209c4428b23a03d42208ccf26b051176994a1e | abc320aabf6b668621232074700ec034cb3efae2 | Fix defunct ESLint overrides (#80053)
The patterns in ESLint's `overrides[].files` isn't exactly like the globs you're used to e.g. `"packages/**/*.tsx?"` does not work as expected. Need to explode that into `"packages/**/*.ts", "packages/**/*.tsx"`.
Other changes are a consequence of applying the rules that were p... | [
{
"path": ".eslintrc.json",
"patch": "@@ -126,7 +126,7 @@\n }\n },\n {\n- \"files\": [\"packages/**/*.tsx?\"],\n+ \"files\": [\"packages/**/*.ts\", \"packages/**/*.tsx\"],\n \"rules\": {\n \"jsdoc/no-types\": \"error\",\n \"jsdoc/no-undefined-types\": \"error\""... | 2025-06-02T17:38:18 |
golang/go | a7cbea833276454597c583751629a3e11cfa9232 | f6ea0621d2e7e7386d7f58241fb34bc78e39ebcc | cmd/go: skip bzr tests if 'bzr help' has non-zero exit code
It appears to be quite easy to end up with a broken 'bzr' installation.
For example, if bzr was installed via a system-wide package manager and
intends to work with a system-wide Python installation, it may break if
another 'python3' binary is added to PATH.
... | [
{
"path": "src/cmd/go/internal/vcweb/script.go",
"patch": "@@ -32,6 +32,17 @@ import (\n func newScriptEngine() *script.Engine {\n \tconds := script.DefaultConds()\n \n+\tadd := func(name string, cond script.Cond) {\n+\t\tif _, ok := conds[name]; ok {\n+\t\t\tpanic(fmt.Sprintf(\"condition %q is already regi... | 2025-02-05T00:54:25 |
facebook/react | 36f979d9d46ffab8b7b77a9f57dd82928041e7e1 | 2fa04d128e47abb27645a90873b08369e82c9ee7 | [patch] Repro and fix for duplicate import statements | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Imports.ts",
"patch": "@@ -109,7 +109,12 @@ export function updateExistingReactImportDeclaration(\n let didInsertUseMemoCache = false;\n program.traverse({\n ImportDeclaration(importDeclPath) {\n- if (isNonNamespacedImportOfR... | 2023-09-19T22:34:14 |
electron/electron | 3eb593dfde9c90bc17e669aa5532841097005c77 | 3de78442127f7a75c2b49c09bccb0277900be28a | test: fix some broken globs for spec-main (#35439) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1060,7 +1060,7 @@ steps-tests: &steps-tests\n export LLVM_SYMBOLIZER_PATH=$PWD/third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer\n export MOCHA_TIMEOUT=180000\n echo \"Piping output to ASAN_SYMBOLIZE ($ASAN_SYM... | 2022-08-25T16:36:08 |
huggingface/transformers | bfe00b41ebdb66b92ca40a8c81778dae3acdaccf | f842abaca95a7dbf3fc6e16122e7409109bc1431 | Bump torchao >=0.15 and fix quantization CI (#44604)
* Fix
* update expected
* fix fp_quant
* fix metal
* fix mxfp4
* fix
* fix bnb
* style
* bump torchao to 0.15.0 min to have safetensor support by default
* style
* fix torchao tests
* Fix !
* style
* update docs
* update dockerfile
* build quant docke... | [
{
"path": "docker/transformers-quantization-latest-gpu/Dockerfile",
"patch": "@@ -78,6 +78,7 @@ RUN python3 -m pip uninstall -y flash-attn\n RUN cd transformers && python3 setup.py develop\n \n # Add fouroversix for quantization testing\n+RUN python3 -m pip install --no-cache-dir --upgrade setuptools wheel\... | 2026-03-16T16:01:38 |
ollama/ollama | bbbb6b2a013b3fb27ddd7d7132a9dd6026f3e7ad | 76f88caf437c3f48b68ff6df649e283f7370b27b | app/ui: fix model capabilities not updating after download completion (#13179) | [
{
"path": "app/ui/app/src/hooks/useChats.ts",
"patch": "@@ -7,6 +7,7 @@ import { createQueryBatcher } from \"./useQueryBatcher\";\n import { useRefetchModels } from \"./useModels\";\n import { useStreamingContext } from \"@/contexts/StreamingContext\";\n import { useSettings } from \"./useSettings\";\n+impo... | 2025-12-10T19:40:02 |
golang/go | f6ea0621d2e7e7386d7f58241fb34bc78e39ebcc | b7c9cdd53cb39934f74b1cdbe08ad1f9e4a12e78 | internal/routebsd: fix parsing network address of length zero
This applies CL 646555 from the net repository to this copy.
For #70528
Change-Id: Ib7e23accfa3f278392e7bdca6f8544b8f1395e7e
Reviewed-on: https://go-review.googlesource.com/c/go/+/646676
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Ian Lance T... | [
{
"path": "src/internal/routebsd/address.go",
"patch": "@@ -102,44 +102,52 @@ func (a *InetAddr) Family() int {\n // parseInetAddr parses b as an internet address for IPv4 or IPv6.\n func parseInetAddr(af int, b []byte) (Addr, error) {\n \tconst (\n-\t\toff4 = 4 // offset of in_addr\n-\t\toff6 = 8 // offset... | 2025-02-04T23:11:42 |
vercel/next.js | fb0ce72dc89ddd597ce8927a6b041b3f1a16e7f7 | cabf31b2a7205c019592259c9ef11a73d2624e79 | [turbopack] Simplify the definition of AssetIdent (#79805)
Replace the `ResolvedVc<RcStr>` uses inside of `AssetIdent` with `RcStr` directly
## Why
This simplifies construction and usage and provides more reasonably equality semantics. In principle, storing `ResolvedVc` would enable finer grained invalidations. e.... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -37,7 +37,7 @@ use next_core::{\n };\n use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n-use turbo_rcstr::RcStr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n Completion, FxIndexSet, NonLocalValue, ResolvedVc, TryJoinIterEx... | 2025-06-02T15:50:59 |
facebook/react | 2807d781a08db8e9873687fccc25c0f12b4fb3d4 | 925c66a6472a61e7174dabf6c697a9a320ebc170 | [Fizz] Reuse rootSegmentID as the SuspenseBoundaryID (#27387)
Originally the intension was to have React assign an ID to a user
rendered DOM node inside a `fallback` while it was loading. If there
already were an explicit `id` defined on the DOM element we would reuse
that one instead. That's why this was a DOM Con... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -123,7 +123,7 @@ export type RenderState = {\n // These can be recreated from resumable state.\n placeholderPrefix: PrecomputedChunk,\n segmentPrefix: PrecomputedChunk,\n- boundaryPrefix: string,\n+ boundaryPrefix... | 2023-09-18T15:56:47 |
electron/electron | a3a9463024f26c26f82f2e62d73d357e5ce8af59 | 70d6cbfb44f9b5c1cba6a6365d1e08ca58010206 | fix: fullscreen crashing with `roundedCorners: false` (#35421) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -246,7 +246,8 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.\n * `trafficLightPosition` [Point](structures/point.md) (optional) _macOS_ -\n Set a custom position for the traffic light buttons in frameless windows... | 2022-08-25T11:39:01 |
huggingface/transformers | f842abaca95a7dbf3fc6e16122e7409109bc1431 | 39f751a538ca67932cab53e6eb5763243674ae2c | Fix tensor indexing crash in serve generate_response KV cache continuation (#44735)
The `generate_response` method indexes `inputs` as a dict
(`inputs["input_ids"]`) but `inputs` is already the raw `input_ids`
tensor at that point. This causes a TypeError on the second request
in a conversation session when KV cache r... | [
{
"path": "src/transformers/cli/serve.py",
"patch": "@@ -1328,7 +1328,7 @@ def generate_response(self, req: dict) -> Generator[str, None, None]:\n last_kv_cache = None\n if self.is_continuation(req) and not must_discard_cache:\n seq_len = self.last_kv_cache.get_seq_length()\n- ... | 2026-03-16T15:22:27 |
ollama/ollama | d475d1f081e5455dcfdf9e958619223565b9bf52 | d2f334c1f7822efe3470f41720dc121e5b19e891 | fix: qwen2.5vl metal argsort | [
{
"path": "llama/patches/0013-add-argsort-and-cuda-copy-for-i32.patch",
"patch": "@@ -4,12 +4,12 @@ Date: Thu, 1 May 2025 13:45:12 -0700\n Subject: [PATCH] add argsort and cuda copy for i32\n \n ---\n- ggml/src/ggml-cpu/ops.cpp | 43 ++++++++++\n- ggml/src/ggml-cuda/argsort.cu | 122 ++++++... | 2025-12-08T21:17:03 |
golang/go | b7c9cdd53cb39934f74b1cdbe08ad1f9e4a12e78 | bcfa00cbd259a8653547b227f8207ab43bf7d5c8 | cmd/compile: establish limits of bool to uint8 conversions
Improves bound check elimination for:
func arrayLargeEnough(b bool, a [2]int64) int64 {
c := byte(0)
if b {
c = 1
}
// this bound check gets elided
return a[c]
}
We also detect never true branches like:
func cCanOnlyBe0or1(b boo... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -1653,6 +1653,10 @@ func initLimit(v *Value) limit {\n \tcase OpCtz8, OpBitLen8:\n \t\tlim = lim.unsignedMax(8)\n \n+\t// bool to uint8 conversion\n+\tcase OpCvtBoolToUint8:\n+\t\tlim = lim.unsignedMax(1)\n+\n \t// length operations\n \tcase Op... | 2025-01-14T21:13:29 |
vercel/next.js | f3cabc91c3ad5b98643a7644bc63ac64bb2ba6aa | d1fa7cfca009e2dcd2448ab30a229cd7574d7422 | Turbopack Build: Fix next-font test (#80049)
## What?
When importing `_app` from another entrypoint it causes the font files imported to be included in _app. This is an edge case so changing the test as it doesn't check for that. Creating a separate issue to dig into this further later. | [
{
"path": "test/e2e/next-font/app/pages/with-fonts.js",
"patch": "@@ -1,5 +1,6 @@\n import CompWithFonts from '../components/CompWithFonts'\n-import { openSans } from './_app'\n+import { Open_Sans } from 'next/font/google'\n+const openSans = Open_Sans({ variable: '--open-sans', subsets: ['latin'] })\n \n ex... | 2025-06-02T14:32:22 |
electron/electron | 22ff2b6b933a52f7cfa85556aa8aaea7544b9d3f | 7e8607fd7a3dac522fce600a3e5fd03bda64efff | fix: Node.js `atob` input validation (#35415)
fix: Node.js atob input validation | [
{
"path": "patches/node/.patches",
"patch": "@@ -47,3 +47,4 @@ support_v8_sandboxed_pointers.patch\n build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch\n build_ensure_native_module_compilation_fails_if_not_using_a_new.patch\n fix_override_createjob_in_node_platform.patch\n+buffer_fix_atob... | 2022-08-25T06:55:07 |
facebook/react | 925c66a6472a61e7174dabf6c697a9a320ebc170 | df061b396644bb7c27ea76bb27ae09784ce6444b | [Fizz] Client render the nearest child or parent suspense boundary if replay errors or is aborted (#27386)
Based on #27385.
When we error or abort during replay, that doesn't actually error the
component that errored because that has already rendered. The error only
affects any child that is not yet completed. Th... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -6355,16 +6355,479 @@ describe('ReactDOMFizzServer', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Loading...</div>);\n \n- const b = new Stream.PassThrough();\n- b.setEncoding('utf8');\n- b.... | 2023-09-18T15:25:56 |
ollama/ollama | e082d60a2406d54cc8c13d7e408f08818e7939d1 | 5dae738067414d235ee386abd690faf1a8da9ff4 | truncation: fixed runner truncation logic + removed server truncation (#12839)
This PR consolidates all embedding prompt-length checking, truncation, and prompt token counting into the runner to ensure a single source of truth. | [
{
"path": "integration/embed_test.go",
"patch": "@@ -4,7 +4,9 @@ package integration\n \n import (\n \t\"context\"\n+\t\"errors\"\n \t\"math\"\n+\t\"strings\"\n \t\"testing\"\n \t\"time\"\n \n@@ -204,8 +206,8 @@ func TestAllMiniLMEmbed(t *testing.T) {\n \t\tt.Fatalf(\"expected %v, got %v (similarity: %f)\",... | 2025-12-08T19:20:28 |
golang/go | be2b809e5b888ed0ee636f1e07340640ffd88842 | a1ea78c470d3136b7aed42a4d8b94497563f98ea | os: fix race condition in readdir by atomically initializing dirinfo
This change ensures that dirinfo in the File struct is initialized atomically,
avoiding redundant allocations when multiple goroutines access it concurrently.
Instead of creating separate buffers, we now use CompareAndSwap to guarantee
thread-safe in... | [
{
"path": "src/os/dir_plan9.go",
"patch": "@@ -11,12 +11,19 @@ import (\n )\n \n func (file *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEntry, infos []FileInfo, err error) {\n-\t// If this file has no dirinfo, create one.\n-\td := file.dirinfo.Load()\n-\tif d == nil {\n-\t\td = new... | 2025-02-03T05:56:31 |
vercel/next.js | 7a57ca7b617eb316082fac20f893c96688cb985a | e2173f136085128aab109b4aade46c261b194f63 | chore: Use same function references in useReportWebVitals examples (#79963)
Closes: https://linear.app/vercel/issue/DOC-4726/docs-usereportwebvitals
FIxes: #79940
---------
Co-authored-by: Lee Robinson <lee@leerob.com> | [
{
"path": "docs/01-app/05-api-reference/04-functions/use-report-web-vitals.mdx",
"patch": "@@ -7,15 +7,19 @@ description: API Reference for the useReportWebVitals function.\n \n The `useReportWebVitals` hook allows you to report [Core Web Vitals](https://web.dev/vitals/), and can be used in combination with... | 2025-06-02T14:00:45 |
electron/electron | 7e8607fd7a3dac522fce600a3e5fd03bda64efff | 6f77e638046e2950e55eb1fad017bd9d7917a96c | ci: fix appveyor x64 tests (#35406)
* ci: fix appveyor x64 tests
* extract builtins-pgo to correct directory
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "appveyor.yml",
"patch": "@@ -190,6 +190,7 @@ for:\n - python %LOCAL_GOMA_DIR%\\goma_ctl.py stat\n - python3 electron/build/profile_toolchain.py --output-json=out/Default/windows_toolchain_profile.json\n - 7z a node_headers.zip out\\Default\\gen\\node_headers\n+ - 7z a builtins-pgo.... | 2022-08-25T01:11:44 |
facebook/react | 1879fbe644105de155eda887bfae733a5f5a80ca | bde7875f20b795ef97fec7778946ef245d4a84a9 | Option to not memoize non-aliased function parameters
This has been nagging at me for a _long_ time: we unnecessarily memoize function
callbacks passed to things like Array.prototype.map, even though we know these
functions can't escape. This PR fixes this as follows:
* Adds a `noAlias?: boolean` flag to builtin ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts",
"patch": "@@ -109,6 +109,15 @@ export type EnvironmentConfig = Partial<{\n */\n enableFunctionCallSignatureOptimizations: boolean;\n \n+ /**\n+ * Enable optimizations based on the `noAlias` flag of method signatures. Whe... | 2023-09-15T23:18:03 |
ollama/ollama | 0c787231741eaa2e6d5b145e8565a62364a852b3 | 5a41d69b2ab7d133a27e4f6d5666982c73a5b5ad | readme: fix broken Swollama link in community integrations (#13370) | [
{
"path": "README.md",
"patch": "@@ -555,7 +555,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Parakeet](https://github.com/parakeet-nest/parakeet) is a GoLang library, made to simplify the development of small generative AI applications with Ollama.\n - [Haverscript](https://github... | 2025-12-08T05:49:52 |
vercel/next.js | 9748d9da173d31689a609ccfb9266a6522ae00f7 | 1f0e536addb61a65ee432eaaf812d78903dfa919 | docs: Reference to statically imported images (#80048)
Closes:
https://linear.app/vercel/issue/DOC-4730/docs-nextimage-local-images-broken-snippet
Fixes: #80023
Made the static image imports, into a sub section of local images, and
referenced how their width/height is auto calculated.
-
https://github.com/vercel/nex... | [
{
"path": "docs/01-app/01-getting-started/04-images.mdx",
"patch": "@@ -58,6 +58,41 @@ export default function Page() {\n <Image\n src=\"/profile.png\"\n alt=\"Picture of the author\"\n+ width={500}\n+ height={500}\n+ />\n+ )\n+}\n+```\n+\n+```jsx filename=\"app/page.js\" switc... | 2025-06-02T13:56:39 |
golang/go | 0825475599d40c786c19c3449e22d2db66754456 | 5cb5437b6daee8971be0bd393535e263333ef311 | cmd/compile: do not treat OpLocalAddr as load in DSE
Fixes #70409
Fixes #47107
Change-Id: I82a66c46f6b76c68e156b5d937273b0316975d44
Reviewed-on: https://go-review.googlesource.com/c/go/+/629016
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@go... | [
{
"path": "src/cmd/compile/internal/ssa/deadstore.go",
"patch": "@@ -52,9 +52,8 @@ func dse(f *Func) {\n \t\t\t\tif v.Op == OpLocalAddr {\n \t\t\t\t\tif _, ok := localAddrs[v.Aux]; !ok {\n \t\t\t\t\t\tlocalAddrs[v.Aux] = v\n-\t\t\t\t\t} else {\n-\t\t\t\t\t\tcontinue\n \t\t\t\t\t}\n+\t\t\t\t\tcontinue\n \t\t... | 2024-11-18T09:34:20 |
huggingface/transformers | 39f751a538ca67932cab53e6eb5763243674ae2c | 96f807a33b75ef2533e52473709e9f5d3b192867 | :rotating_light: Validate config attributes (#41250)
* initial commit
* just push for now
* maybe not do it for all models, lets see how many models fail now
* update
* lets see what esle fails now
* nit
* style
* delete rope validation
* bart
* make style
* provate rope valid for now, hub complains
* more ... | [
{
"path": "examples/modular-transformers/modeling_new_task_model.py",
"patch": "@@ -336,7 +336,7 @@ def forward(\n output_hidden_states = (\n output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states\n )\n- return_dict = return_dict if ... | 2026-03-16T13:39:29 |
electron/electron | 6f77e638046e2950e55eb1fad017bd9d7917a96c | 07c3e62d68f3eea396a43070d7f365d3d85de257 | ci: fixup doc-only-change on Windows (#35431) | [
{
"path": "appveyor.yml",
"patch": "@@ -64,11 +64,11 @@ for:\n build_script:\n - ps: |\n node script/yarn.js install --frozen-lockfile\n- $result = node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER --prBranch=$env:APPVEYOR_REPO_BRANCH\n- Write-Output $... | 2022-08-24T21:39:56 |
facebook/react | e5e71dfd59ab8629235dd5ad5bd5164c171471c1 | 35fb6e05e133f261392997de5ec89dba44f99c2e | Memoize fbt children in same scope
Fixes another special-case rule of fbt that i wasn't aware of: apparently
`<fbt:param>` elements don't have to appear as direct children of `<fbt>`, they
can be nested, and in this case they must appear as direct children of the fbt
and not via an identifier indirection. This PR ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -55,7 +55,11 @@ import {\n } from \"../ReactiveScopes\";\n import { eliminateRedundantPhi, enterSSA, leaveSSA } from \"../SSA\";\n import { inferTypes } from \"../TypeInference\";\n-import { logHIRFunction, logR... | 2023-09-15T17:31:55 |
ollama/ollama | 31b8c6a214dbfd7f1c711869572301ef7bf41b58 | 9191dfaf05eaccda149cff937fb180bdb87ee5d1 | fix(api): correct Content-Type header for /api/chat and /api/generate when using cloud models (#13279)
---------
Co-authored-by: Pogosyan Sos <sos_pogosyan@MacBook-Pro-Sos.local>
Co-authored-by: Patrick Devine <patrick@infrahq.com> | [
{
"path": "server/routes.go",
"patch": "@@ -262,6 +262,12 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\tslog.Warn(\"embedded messages in the model not supported with '/api/generate'; try '/api/chat' instead\")\n \t\t}\n \n+\t\tcontentType := \"application/x-ndjson\"\n+\t\tif req.Stream != ni... | 2025-12-05T05:33:07 |
vercel/next.js | fe72addb2324a3c4e7211a7925444d4fc585068f | aefa6f152619c45b6288452d329aa7511a459004 | Fix watchmode for `taskr` tasks (#80020) | [
{
"path": "packages/next/taskfile.js",
"patch": "@@ -2835,11 +2835,21 @@ export async function build(task, opts) {\n }\n \n export async function generate_types(task, opts) {\n- await execa(\n+ const watchmode = opts.dev\n+ const typesPromise = execa(\n 'pnpm',\n- ['run', 'types', ...(opts.dev ? [... | 2025-05-31T22:43:53 |
golang/go | 5cb5437b6daee8971be0bd393535e263333ef311 | 7472b4c324970895b1d44f39c284d72c40d4b621 | cmd/go/internal/vcsweb/vcstest: skip bzr test if deps not found
The linux-arm64 trybots are consistently failing with
vcstest_test.go:155: 2025/01/30 21:50:41 hello.txt:
> handle bzr
> env BZR_EMAIL='Russ Cox <rsc@google.com>'
> env EMAIL='Russ Cox <rsc@google.com>'
> bzr init-repo... | [
{
"path": "src/cmd/go/internal/vcweb/vcstest/vcstest_test.go",
"patch": "@@ -158,6 +158,13 @@ func TestScripts(t *testing.T) {\n \t\t\t\tif notInstalled := (vcweb.ServerNotInstalledError{}); errors.As(err, ¬Installed) || errors.Is(err, exec.ErrNotFound) {\n \t\t\t\t\tt.Skip(err)\n \t\t\t\t}\n+\n+\t\t\t\t... | 2025-02-04T19:56:38 |
huggingface/transformers | 96f807a33b75ef2533e52473709e9f5d3b192867 | 30adbf3f5bad10416f40ec1831bc27fefe875464 | [MistralCommonBackend] Upgrade mistral-common to v1.10.0 (#44656)
* [MistralCommonBackend] Support reasoning_effort and image_sizes.
* Update mistral-common
* Fix dependency
* Move reasoning_effort argument and add doc
---------
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> | [
{
"path": "setup.py",
"patch": "@@ -93,7 +93,7 @@\n \"kenlm\",\n \"kernels>=0.10.2,<0.11\",\n \"librosa\",\n- \"mistral-common[image]>=1.8.8\",\n+ \"mistral-common[image]>=1.10.0\",\n \"nltk<=3.8.1\",\n \"num2words\",\n \"numpy>=1.17\",\n@@ -185,8 +185,7 @@ def deps_list(*pkgs)... | 2026-03-16T12:45:32 |
facebook/react | 00e9888fb80719150363b3d011c53b890a4647af | c70e87f53501f329b25c4e78e2eafc0aab270292 | [ez][patch] Remove calls to NodePath.hasNode
---
Recent commits added calls to `NodePath.hasNode`, which does not exist in babel
v7.1.6 (internal). Forget is failing with this error.
```js
TypeError: handlerPath.hasNode is not a function
at lowerStatement (.../babel-plugin-react-forget/HIR/BuildHIR.js:924:58... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -15,7 +15,7 @@ import {\n ErrorSeverity,\n } from \"../CompilerError\";\n import { Err, Ok, Result } from \"../Utils/Result\";\n-import { assertExhaustive } from \"../Utils/utils\";\n+import { assertExhaustive, hasNo... | 2023-09-15T12:55:33 |
electron/electron | 07c3e62d68f3eea396a43070d7f365d3d85de257 | e1459f4d50e4ee0ee9b4e8fb0bba032b8499bf97 | build: fix export patches to work when source directory does not exist (#35432) | [
{
"path": "script/lib/git.py",
"patch": "@@ -238,6 +238,11 @@ def to_utf8(patch):\n \n \n def export_patches(repo, out_dir, patch_range=None, dry_run=False):\n+ if not os.path.exists(repo):\n+ sys.stderr.write(\n+ \"Skipping patches in {} because it does not exist.\\n\".format(repo)\n+ )\n+ r... | 2022-08-24T21:37:11 |
vercel/next.js | aefa6f152619c45b6288452d329aa7511a459004 | 08ea8de29488c1295b94abede526fc50f6b49300 | Turbopack Build: Fix underscore path tests (#79778)
## What?
Implements handling for `%5F` to `_` conversion to handle pathnames in
App Router that want to bypass the underscore ignore folder.
Implementing this was a bit of a hassle not on the Turbopack side but
there's an additional layer of route handling before t... | [
{
"path": ".vscode/launch.json",
"patch": "@@ -55,9 +55,7 @@\n },\n \"env\": {\n // Enable the following environment variables to use turbopack instead of webpack:\n- // \"TURBOPACK\": \"1\",\n- // \"TURBOPACK_DEV\": \"1\",\n- // \"TURBOPACK_BUILD\": \"1\",\n+ ... | 2025-05-31T09:40:35 |
golang/go | ef7f09149b4af54839e191841ddbfaff8640a484 | b07b20fbb591ac77158e1089299ce5acad71ffde | cmd/compile: prefer hv2 <= 127 over hv2 < 128
This is shorter to encode on AMD64/x86. Shrinks a few functions and doesn't
seem to cause any regressions. No size impact on other archs.
Covers a bit more than CL 639935.
compilecmp linux/amd64:
unicode/utf8
unicode/utf8.RuneCountInString changed
unicode/utf8.RuneCount... | [
{
"path": "src/cmd/compile/internal/walk/range.go",
"patch": "@@ -342,7 +342,10 @@ func walkRange(nrange *ir.RangeStmt) ir.Node {\n \n \t\t// if hv2 < utf8.RuneSelf\n \t\tnif := ir.NewIfStmt(base.Pos, nil, nil, nil)\n-\t\tnif.Cond = ir.NewBinaryExpr(base.Pos, ir.OLT, hv2, ir.NewInt(base.Pos, utf8.RuneSelf))... | 2025-01-13T20:35:04 |
huggingface/transformers | 30adbf3f5bad10416f40ec1831bc27fefe875464 | 66dd6a3225c34e14fdf5bed65ee10c097eef6ec5 | Fix `mlcd` auto config/model/mapping issues (#44730)
* min. fix for mlcd auto config
* min. fix for mlcd auto modeling
* comment
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/auto/configuration_auto.py",
"patch": "@@ -288,7 +288,8 @@\n (\"mistral\", \"MistralConfig\"),\n (\"mistral3\", \"Mistral3Config\"),\n (\"mixtral\", \"MixtralConfig\"),\n- (\"mlcd\", \"MLCDVisionConfig\"),\n+ (\"mlcd\", \"MLCDVisionCon... | 2026-03-16T12:06:17 |
facebook/react | 88b1a069c04631009cf64e3ff18cc8f463626f38 | f993f0c2a55e3fb106844c4d68362cef876d1156 | Add examples for phi type inference
Adds test cases that would demonstrate different output if we were to update
InferTypes to infer the types of phi identifiers when their operands have the
same type. We currently do infer such types, but attach them to phi.type instead
of phi.id.type, so the type doesn't effect ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/phi-type-inference-array-push.expect.md",
"patch": "@@ -0,0 +1,76 @@\n+\n+## Input\n+\n+```javascript\n+// @debug\n+function Component(props) {\n+ const x = {};\n+ let y;\n+ if (props.cond) {\n+ y = [props.value];\n... | 2023-09-14T18:56:09 |
electron/electron | 3ce35f224efa3a6e9bfc9b642816961b8691491b | 0ff6508f5bffd84829749c97c7346fc2fc776563 | fix: add restore event for minimized maximization (#35342) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -413,6 +413,8 @@ void NativeWindowViews::HandleSizeEvent(WPARAM w_param, LPARAM l_param) {\n // multiple times for one resize because of the SetWindowPlacement call.\n if (w_param == SIZE_MAXIMIZED &&\n last_window_stat... | 2022-08-23T01:32:42 |
huggingface/transformers | 66dd6a3225c34e14fdf5bed65ee10c097eef6ec5 | 0832773d6302beb3b2f0b0dda54fc51e4687ad39 | Fix bug and add XPU Expectations for qwen2 and jamba tests (#44733)
* add XPU Expectations for qwen2 and jamba tests
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update
Signed-off-b... | [
{
"path": "src/transformers/modeling_flash_attention_utils.py",
"patch": "@@ -171,8 +171,10 @@ def _lazy_imports(\n else:\n from .integrations.hub_kernels import load_and_register_attn_kernel\n \n+ # Map standard attention names to hub kernel repos\n+ kernel_repo = ... | 2026-03-16T11:40:57 |
vercel/next.js | b7b546e0710666247e4bb56f216a8c32bbafbdf9 | 70e5e6caf0a81211bc044d434c680e5e3a46553d | fix: update rspack production build output snapshot (#79766)
update build output snapshots in following test cases for Rspack.
-
test/e2e/app-dir/use-cache-segment-configs/use-cache-segment-configs.test.ts
-
test/e2e/app-dir/use-cache-unknown-cache-kind/use-cache-unknown-cache-kind.test.ts
-
test/e2e/app-dir/use-cach... | [
{
"path": "test/e2e/app-dir/use-cache-segment-configs/use-cache-segment-configs.test.ts",
"patch": "@@ -2,6 +2,8 @@ import { nextTestSetup } from 'e2e-utils'\n import { assertHasRedbox } from 'next-test-utils'\n import stripAnsi from 'strip-ansi'\n \n+const isRspack = !!process.env.NEXT_RSPACK\n+\n describe... | 2025-05-30T23:55:06 |
golang/go | ad7b46ee4ac1cee5095d64b01e8cf7fcda8bee5e | d96fd2e758d79a60f2c3df46e9b15e9ad084a5cb | go/parser, go/types, syntax, types2: report invalid uses of ... by parsers
Check correct use of ...'s in parameter lists in parsers.
This allows the type checkers to assume correct ASTs with
respect to ... use.
Adjust some error messages: if a ... is used in a result
parameter list, the error is now more accurate.
E... | [
{
"path": "src/cmd/compile/internal/syntax/parser.go",
"patch": "@@ -650,7 +650,7 @@ func (p *parser) typeDecl(group *Group) Decl {\n \t\t\t\t// d.Name \"[\" pname ...\n \t\t\t\t// d.Name \"[\" pname ptype ...\n \t\t\t\t// d.Name \"[\" pname ptype \",\" ...\n-\t\t\t\td.TParamList = p.paramList(pname, ptype,... | 2024-11-25T21:08:34 |
facebook/react | f993f0c2a55e3fb106844c4d68362cef876d1156 | b2230f62a38350f19cf02b4ee4b7f42e43610b9a | [pipeline] panicOnBailout -> panicThreshold; remove isDev logging
---
Changed `panicOnBailout: boolean` to `panicThreshold`, which has the following
options. Note that `ALL_ERRORS` corresponds to `panicOnBailout = true` and
`CRITICAL_ERRORS` corresponds to `panicOnBailout = false`. `NONE` is a new
option.
```j... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts",
"patch": "@@ -25,6 +25,19 @@ export type InstrumentForgetOptions = {\n instrumentFn: ExternalFunction;\n };\n \n+export type PanicThresholdOptions =\n+ // Any errors will panic the compiler by throwing an exception, which ... | 2023-09-14T19:00:43 |
electron/electron | 33325e3608bdc4f45798817643ff9c94279656d6 | 221bb513265128e004a0469f3b2b1c89387ba56f | fix: undefined details.requestingUrl from session.setPermissionCheckHandler (#35281)
fix: undefined details.requestingUrl from setPermissionCheckHandler | [
{
"path": "shell/browser/electron_permission_manager.cc",
"patch": "@@ -339,9 +339,16 @@ blink::mojom::PermissionStatus\n ElectronPermissionManager::GetPermissionStatusForCurrentDocument(\n blink::PermissionType permission,\n content::RenderFrameHost* render_frame_host) {\n- return GetPermissionSta... | 2022-08-23T01:25:57 |
ollama/ollama | 0cf7794b16fab8d4561bc5f6379f6d48bd59e101 | 854d40edc5c5894014a9aea28fcca7b7aeba83bb | ggml update to b7108 (#12992)
* Revert "vulkan: temporary cary of vulkan fixes (#12971)"
This reverts commit 3a9e8e9fd42f32711b8aeea355e3ed5e155d49b2.
* ggml update to b7087
* fix argsort on metal
* update to b7108
* fix bakllava regression
This model lacks the metadata for the projector type.
* update to b7209... | [
{
"path": "Makefile.sync",
"patch": "@@ -1,6 +1,6 @@\n UPSTREAM=https://github.com/ggml-org/llama.cpp.git\n WORKDIR=llama/vendor\n-FETCH_HEAD=3cfa9c3f125763305b4226bc032f1954f08990dc\n+FETCH_HEAD=7f8ef50cce40e3e7e4526a3696cb45658190e69a\n \n .PHONY: help\n help:",
"additions": 1,
"deletions": 1,
... | 2025-12-04T03:43:29 |
vercel/next.js | 0084361f4ba8b4298aa77afe9eff652d1830c352 | 1f39908c976ef500148de93e6f39a111e080bf65 | [turbopack] Fix URL fragment and query handling in Turbopack (#79993)
Fix URL fragment and query handling in Turbopack
## What?
This PR improves how URL fragments and query strings are handled in Turbopack by:
1. Standardizing the representation of fragments and queries in `AssetIdent`
2. Ensuring fragments and quer... | [
{
"path": "crates/next-api/src/server_actions.rs",
"patch": "@@ -213,7 +213,7 @@ pub async fn to_rsc_context(\n // module.\n let source = FileSource::new_with_query(\n client_module.ident().path().root().join(entry_path.into()),\n- Vc::cell(entry_query.into()),\n+ entry_query.i... | 2025-05-30T18:09:35 |
huggingface/transformers | 0832773d6302beb3b2f0b0dda54fc51e4687ad39 | f074011f5c7a50d2ff038973a527923d46db6905 | Add model lerobot PI0 to transformers (#44160)
* let it be, as one said
* smaller ish inference
* some stuff
* update
* fixes
* style
* fixes
* notation
* improve testing a bit
* fi xtests
* fixes and not obvious changes
* revert the last commit on capture outputs and save while it works
* make it a proper... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1260,6 +1260,8 @@\n title: PerceptionLM\n - local: model_doc/phi4_multimodal\n title: Phi4 Multimodal\n+ - local: model_doc/pi0\n+ title: PI0\n - local: model_doc/pix2struct\n title: Pix2Struct\n - l... | 2026-03-16T10:16:52 |
facebook/react | 54c2f2a3469e296fba025cf444d0639c7bf8f39a | caa716d50bdeef3a1ac5e3e0cfcc14f4d91f2028 | fix[devtools/extension]: unregister dynamically injected content scripts instead of filtering (#27369)
Same as https://github.com/facebook/react/pull/26765.
Related bug report -
https://bugs.chromium.org/p/chromium/issues/detail?id=1393762.
This was changed in https://github.com/facebook/react/pull/27215, when I
... | [
{
"path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js",
"patch": "@@ -11,7 +11,7 @@ const contentScriptsToInject = IS_FIREFOX\n js: ['build/proxy.js'],\n matches: ['<all_urls>'],\n persistAcrossSessions: true,\n- runAt: 'document_idle'... | 2023-09-14T14:21:28 |
electron/electron | 9b2b1998b8386aa324ed617ed2cc23df742eb767 | fc2e6bd0ed86c9e1f26fcf5f973f508474e469ea | fix: ensure chrome colors are initialized (#35034)
* fix: ensure chrome colors are initialized
* build: fix linking on windows
* build: fix linking on windows
* build: add needed files to chromium_src/BUILD
Co-authored-by: VerteDinde <keeleymhammond@gmail.com> | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -55,6 +55,14 @@ static_library(\"chrome\") {\n \"//chrome/browser/process_singleton.h\",\n \"//chrome/browser/process_singleton_internal.cc\",\n \"//chrome/browser/process_singleton_internal.h\",\n+ \"//chrome/browser/themes/browser_theme_pack.c... | 2022-08-22T14:38:45 |
golang/go | 530c829270bef744b3acae7891a0635874af3fd4 | 4160ebf28f69a738203571bba6abab6ec0913080 | syscall: use consistent message for ESTALE on Linux
For some reason the ESTALE error message differed on Linux systems.
On Linux strerror normally returns "Stale file handle" for ESTALE,
except possibly in the en_GB locale. The mkerrors.sh script sets
LC_ALL=C, so it should always produces "stale file handle".
However... | [
{
"path": "src/syscall/zerrors_linux_386.go",
"patch": "@@ -1467,7 +1467,7 @@ var errors = [...]string{\n \t113: \"no route to host\",\n \t114: \"operation already in progress\",\n \t115: \"operation now in progress\",\n-\t116: \"stale NFS file handle\",\n+\t116: \"stale file handle\",\n \t117: \"structure ... | 2025-01-17T17:59:50 |
ollama/ollama | 84a2cedf187c7a30eb4a9ae0392e901001029e36 | 3f3083673496adcc0429ff213dabb0c4fcbe21a2 | app: relay thinking false to server (#13319)
This fixes a bug where disabling thinking on deepseek-v3.1 did not stop the model from thinking.
When thinking is not defined it should not be sent to the server since this will cause error responses in some cases where the model does not support thinking. However if it is... | [
{
"path": "app/ui/app/src/api.ts",
"patch": "@@ -204,12 +204,10 @@ export async function* sendMessage(\n data: uint8ArrayToBase64(att.data),\n }));\n \n- // Only send think parameter when actually requesting thinking\n- // Don't send false as it causes issues with some providers\n+ // Send think pa... | 2025-12-03T23:06:55 |
huggingface/transformers | 3491f116a0ec4def708c2fbc141ea08df16ba29b | 1af62a6046ae574b719f0418fdd1d5895080d72e | Idefics3 without cache fix (#44607)
* fix: Remove cache_position kwargs everywhere in idefics3
Branch: Idefics3WithoutCacheFix
AI-usage: none
Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
* fix: Only purge pixel model inputs for subsequent turns if using cache
This was the root of the incorrect results without ca... | [
{
"path": "src/transformers/models/idefics2/modeling_idefics2.py",
"patch": "@@ -1117,6 +1117,7 @@ def prepare_inputs_for_generation(\n image_hidden_states=None,\n logits_to_keep=None,\n is_first_iteration=False,\n+ use_cache=False,\n **kwargs,\n ):\n # Ove... | 2026-03-16T09:20:00 |
electron/electron | 19baea4bc2be42ac0568bacab9e7365bb3f8ce26 | 9b787d30f489fca0552bdb1f134b7b6097c7dff6 | chore: update process singleton patch (#35376)
* chore: update process singleton patch
* fix: windows compilation error
* chore: remove outdated comment in patch | [
{
"path": "patches/chromium/feat_add_data_parameter_to_processsingleton.patch",
"patch": "@@ -13,7 +13,7 @@ app.requestSingleInstanceLock API so that users can pass in a JSON\n object for the second instance to send to the first instance.\n \n diff --git a/chrome/browser/process_singleton.h b/chrome/browser... | 2022-08-19T22:45:58 |
golang/go | 4160ebf28f69a738203571bba6abab6ec0913080 | dcebb675b3fa0fd8d3056323a9f7f857ce4a2105 | net: permit Interface with no Name
On darwin the utun interface sometimes has no name.
Fixes #71064
Change-Id: Iec51641880515f8bd3f97bd892c26f68fd588fa3
Reviewed-on: https://go-review.googlesource.com/c/go/+/641855
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit:... | [
{
"path": "src/internal/routebsd/interface_classic.go",
"patch": "@@ -20,9 +20,7 @@ func (w *wireFormat) parseInterfaceMessage(b []byte) (Message, error) {\n \t\treturn nil, errInvalidMessage\n \t}\n \tattrs := uint(nativeEndian.Uint32(b[4:8]))\n-\tif attrs&syscall.RTA_IFP == 0 {\n-\t\treturn nil, nil\n-\t}... | 2025-01-09T21:04:51 |
facebook/react | a6e4791b11816374d015eb4531a82e6cf209c7f2 | 95c9554bc72813b0ee2b028774bb7cf0482887ba | [Fizz] Fix root segment IDs (#27371)
Typically we assign IDs lazily when flushing to minimize the ids we have
to assign and we try to maximize inlining.
When we prerender we could always flush into a buffer before returning
but that's not actually what we do right now. We complete rendering
before returning but ... | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -176,6 +176,7 @@ type ReplaySuspenseBoundary = [\n string | number /* key */,\n Array<ResumableNode> /* children */,\n SuspenseBoundaryID /* id */,\n+ number /* rootSegmentID */,\n ];\n \n type ReplayNode =\n@@ -1957,6 +1958,7 @@ ... | 2023-09-14T03:18:03 |
ollama/ollama | 3f3083673496adcc0429ff213dabb0c4fcbe21a2 | cc9555aff0f220748dc761a4302cfaea7c62c9fe | CUDA: filter devices on secondary discovery (#13317)
We now do a deeper probe of CUDA devices to verify the library version has
the correct compute capability coverage for the device. Due to ROCm also
interpreting the CUDA env var to filter AMD devices, we try to avoid setting
it which leads to problems in mixed vend... | [
{
"path": "discover/runner.go",
"patch": "@@ -147,7 +147,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\twg.Add(1)\n \t\t\tgo func(i int) {\n \t\t\t\tdefer wg.Done()\n-\t\t\t\textraEnvs := ml.GetVisibleDevicesEnv(devices[i : i+1])\n+\t\t\t\textraEnvs := ml.GetVi... | 2025-12-03T20:58:16 |
huggingface/transformers | d64a6d67d8c004a25570db4df5689e06caea6af7 | a609966c06bbfb803d80019b6a5213a8f92d6cf5 | Fix transformers serve's 422 unprocessable entity (#44620)
* Revert "Fix CLI NameError: name 'TypeAdapter' is not defined (#44256)"
This reverts commit 30c480166a95342fefdd9d727fc2a163bea7b2b1.
* Hints should not rely on optional dependencies | [
{
"path": "src/transformers/cli/serve.py",
"patch": "@@ -11,9 +11,6 @@\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-16T00:02:01 |
electron/electron | 9b787d30f489fca0552bdb1f134b7b6097c7dff6 | 748a739291c22574e05a149c131ef43fb25c7495 | ci: use AppVeyor workflows (#35377)
* ci: use AppVeyor workflows
* fixup for skipping test on pr jobs | [
{
"path": "appveyor.yml",
"patch": "@@ -34,212 +34,278 @@ environment:\n MOCHA_REPORTER: mocha-multi-reporters\n MOCHA_MULTI_REPORTERS: mocha-appveyor-reporter, tap\n GOMA_FALLBACK_ON_AUTH_FAILURE: true\n-build_script:\n- - ps: >-\n- if(($env:APPVEYOR_PULL_REQUEST_HEAD_REPO_NAME -split \"/\")[0]... | 2022-08-19T17:10:16 |
facebook/react | 95c9554bc72813b0ee2b028774bb7cf0482887ba | 612b2b6601abb844248c384d1e288bb824b180b7 | useFormState: Compare action signatures when reusing form state (#27370)
During an MPA form submission, useFormState should only reuse the form
state if same action is passed both times. (We also compare the key
paths.)
We compare the identity of the inner closure function, disregarding the
value of the bound ar... | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -9,6 +9,7 @@\n \n import type {\n Thenable,\n+ PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n ReactCustomFormAction,\n@@ -489,6 +490,69 @@ export function encodeFormAction(\n };\n }\n \n+function isSignatur... | 2023-09-14T00:46:22 |
golang/go | 439d39a719da12c213aeb69a09c5aaef83d9df67 | 82337de9f2157a132257b2e2fe5ae8f1ad57ff20 | all: replace reflect.Value.Type.Kind with reflect.Value.Kind
Fixes #46107
Change-Id: I170f3cacda652752cd740e04b565a616a0e43fd1
Reviewed-on: https://go-review.googlesource.com/c/go/+/632635
Reviewed-by: Rob Pike <r@golang.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Commit-Queue: Ian Lance Taylor <iant@google.co... | [
{
"path": "src/cmd/fix/cftype.go",
"patch": "@@ -67,14 +67,14 @@ func typefix(f *ast.File, badType func(string) bool) bool {\n \t\t\t\treturn\n \t\t\t}\n \t\t\tv := reflect.ValueOf(n)\n-\t\t\tif v.Type().Kind() != reflect.Pointer {\n+\t\t\tif v.Kind() != reflect.Pointer {\n \t\t\t\treturn\n \t\t\t}\n \t\t\t... | 2024-12-01T20:06:26 |
ollama/ollama | 5317202c38437867bc6c9ed21ffc5c949ab6794c | d771043e88a847efae1557bee56ca14db9d8a940 | llm: Don't always evict models on CPU-only systems
Model eviction happens when we have at least one other model
loaded and are unable to load all layers into VRAM. However, on
CPU-only systems we can never load layers into VRAM, so this
constantly triggered eviction.
Fixes #13227 | [
{
"path": "llm/server.go",
"patch": "@@ -874,7 +874,7 @@ func (s *llmServer) createLayout(systemInfo ml.SystemInfo, systemGPUs []ml.Devic\n \t\t}}\n \t}\n \tgpuLayers, layers := s.buildLayout(systemGPUs, memory, requireFull, backoff)\n-\terr := s.verifyLayout(systemInfo, memory, requireFull, gpuLayers, laye... | 2025-11-25T22:51:02 |
huggingface/transformers | a609966c06bbfb803d80019b6a5213a8f92d6cf5 | c0fe6164d0d74e021aab9bfa0342a0f59ff59b16 | Fix missing / incorrect `config` class in some model class definitions (#44715)
* fix 1
* fix 2
* style
* modular
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/blip_2/modeling_blip_2.py",
"patch": "@@ -877,6 +877,8 @@ def forward(\n \"\"\"\n )\n class Blip2QFormerModel(Blip2PreTrainedModel):\n+ config: Blip2QFormerConfig\n+\n _supports_attention_backend = False # adds position on attn weights before last matmul\n ... | 2026-03-15T11:19:49 |
golang/go | 82337de9f2157a132257b2e2fe5ae8f1ad57ff20 | 77f5ecef3a4f30644eadb922a8ba5deb76fa8e07 | test/issue71226: add cast to avoid clang error
Change-Id: I2d8ecb7b5f48943697d454d09947fdb1817809d0
Reviewed-on: https://go-review.googlesource.com/c/go/+/646295
TryBot-Bypass: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by... | [
{
"path": "test/fixedbugs/issue71226.go",
"patch": "@@ -14,7 +14,7 @@ package main\n #include <stdio.h>\n \n static void CFn(_GoString_ gostr) {\n-\tprintf(\"%.*s\\n\", _GoStringLen(gostr), _GoStringPtr(gostr));\n+\tprintf(\"%.*s\\n\", (int)(_GoStringLen(gostr)), _GoStringPtr(gostr));\n }\n */\n import \"C\... | 2025-02-03T17:50:38 |
ollama/ollama | d3e0a0dee462df407c7c950db8f832c700ac8199 | 554172759ca56cbf2690fea50fbaa11fe2bfcd48 | model: ministral w/ llama4 scaling (#13292)
This change:
* fixes rope scaling in the mistral converter
* updates ministral to include llama4 scaling
* includes a new ministral parser for parsing reasoning and tool calling
---------
Co-authored-by: jmorganca <jmorganca@gmail.com> | [
{
"path": ".golangci.yaml",
"patch": "@@ -11,7 +11,6 @@ linters:\n - errorlint\n - exptostd\n - gocheckcompilerdirectives\n- - gocritic\n - govet\n - ineffassign\n - intrange",
"additions": 0,
"deletions": 1,
"language": "YAML"
},
{
"path": "cmd/cmd.go",
"p... | 2025-12-02T07:20:14 |
huggingface/transformers | c368e139aade3ee7cdfa29387f3249168a912e5c | 18e377ba957d38b76b6212a697785dd6b2077078 | [`FA`] Fix fa detection (#44703)
* fix fa2 and fa4 detection
* should be there as well
* also adapt fa3 to same pattern | [
{
"path": "src/transformers/modeling_flash_attention_utils.py",
"patch": "@@ -74,7 +74,7 @@ def is_flash_attn_available():\n \"flash_attn_version\": 2,\n \"general_availability_check\": is_flash_attn_2_available,\n \"pkg_availability_check\": lambda *args, **kwargs: importlib.util.fi... | 2026-03-14T17:17:39 |
vercel/next.js | 1d11db3cbafc1dd54ce57976e4e85f868679f706 | 48e53d7dbd9216f44c0965e6ed1f334cc9adb41a | Turbopack: more deterministic manifest order (#79977)
Fix non-deterministic next font manifest order:
 | [
{
"path": "crates/next-core/src/emit.rs",
"patch": "@@ -1,8 +1,7 @@\n use anyhow::Result;\n-use rustc_hash::FxHashSet;\n use tracing::Instrument;\n use turbo_tasks::{\n- ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc,\n+ FxIndexSet, ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc,\n graph::{A... | 2025-05-30T15:26:18 |
facebook/react | 612b2b6601abb844248c384d1e288bb824b180b7 | e5205658f40ad181279857dbb66e36b8ebcd8c0e | useFormState: Reuse state from previous form submission (#27321)
If a Server Action is passed to useFormState, the action may be
submitted before it has hydrated. This will trigger a full page
(MPA-style) navigation. We can transfer the form state to the next page
by comparing the key path of the hook instance.
... | [
{
"path": "fixtures/flight/server/global.js",
"patch": "@@ -138,11 +138,15 @@ app.all('/', async function (req, res, next) {\n // For HTML, we're a \"client\" emulator that runs the client code,\n // so we start by consuming the RSC payload. This needs a module\n // map that reverse engine... | 2023-09-13T22:30:40 |
ollama/ollama | 5b6a8e6001f17fdf1929cce462493e4254e747e9 | 467bbc0dd5a048c0b37aa3c811d073e95ab15406 | api/client: handle non-json streaming errors (#13007)
While processing the response stream during a chat or generation if an error is occurred it is parsed and returned to the user. The issue with the existing code is that this assumed the response would be valid JSON, which is not a safe assumption and caused cryptic... | [
{
"path": "api/client.go",
"patch": "@@ -226,7 +226,14 @@ func (c *Client) stream(ctx context.Context, method, path string, data any, fn f\n \n \t\tbts := scanner.Bytes()\n \t\tif err := json.Unmarshal(bts, &errorResponse); err != nil {\n-\t\t\treturn fmt.Errorf(\"unmarshal: %w\", err)\n+\t\t\tif response.S... | 2025-12-01T23:10:16 |
huggingface/transformers | 18e377ba957d38b76b6212a697785dd6b2077078 | 6133195dcb027feb7502379acd13750e167eb6c5 | Fix `set_encoder` (#44698)
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2222,7 +2222,7 @@ def set_encoder(self, encoder, modality: str | None = None):\n # NOTE: new models need to use existing names for layers if possible, so this list doesn't grow infinitely\n if modality in [\"image\", \"video\"]:\n... | 2026-03-14T13:31:27 |
vercel/next.js | 9ff3f848a611b973f2a42db60f37f638fc61b223 | baa71a549076e88f2e45281148a6fefb21375cd5 | Turbopack: only keep old database version if not on CI (#79964)
<!-- 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 ... | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -222,6 +222,8 @@ pub struct NapiTurboEngineOptions {\n pub memory_limit: Option<f64>,\n /// Track dependencies between tasks. If false, any change during build will error.\n pub dependency_tracking: Option<bool>,\n+ /// Whether the... | 2025-05-30T12:13:35 |
golang/go | 3caf5bd09e84f77cc5e0394819d57a1beca87fcb | 3a81ebea0de65aa877f46afb80575ec67b7d9170 | text/scanner: add required ScanComments in example
Fixes #71133
Change-Id: I11f792bf4cb275e7bc3585cd92a4b327a3b6e368
Reviewed-on: https://go-review.googlesource.com/c/go/+/646036
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/text/scanner/scanner.go",
"patch": "@@ -50,7 +50,7 @@ func (pos Position) String() string {\n // to configure a [Scanner] such that it only recognizes (Go) identifiers,\n // integers, and skips comments, set the Scanner's Mode field to:\n //\n-//\tScanIdents | ScanInts | SkipComments\n+//\tSc... | 2025-02-01T16:42:22 |
facebook/react | 69be472c11231056d297a7b73dd0b121905606d3 | d07921eeda62613bfcf52ecdb66322db26393567 | Fix: Initialize childIndex in Task constructor (#27367)
This field was not being initialized. Although the property is part of
the Flow type, the type error wasn't caught because the constructor
itself is not covered by Flow, which is unfortunate. (I assume this is
related to the dev-only componentStack property.) | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -578,6 +578,7 @@ function createTask(\n context,\n treeContext,\n thenableState,\n+ childIndex: -1,\n }: any);\n if (__DEV__) {\n task.componentStack = null;",
"additions": 1,
"deletions": 0,
"language"... | 2023-09-13T02:17:03 |
ollama/ollama | 467bbc0dd5a048c0b37aa3c811d073e95ab15406 | 6d9f9323c5eb477ba4664a544a790a50817b10f6 | jetpack: require exact match or skip cuda_jetpack* (#13288)
The cuda_jetpack libs will enumerate discrete GPUs on SBSA systems
which leads to runtime failures of missing kernels. This fix
requires an exact match to enable jetpacks instead of relying on
enumeration to filter out supported libraries. | [
{
"path": "discover/runner.go",
"patch": "@@ -98,6 +98,9 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\t\t\tcontinue\n \t\t\t\t} else if jetpack != \"\" && filepath.Base(dir) != \"cuda_\"+jetpack {\n \t\t\t\t\tcontinue\n+\t\t\t\t} else if jetpack == \"\" && strin... | 2025-12-01T20:48:16 |
electron/electron | 1d6885c781b446987c53325d68f4ef13baeaa42a | 97b353a30a0e92a169fb0557ddff641fa0332d7c | fix: don't bypass redirect checks (#35357) | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -1487,9 +1487,6 @@ bool ElectronBrowserClient::WillCreateURLLoaderFactory(\n std::move(proxied_receiver), std::move(target_factory_remote),\n std::move(header_client_receiver), type);\n \n- if (bypass_redirect_checks)\n- *byp... | 2022-08-18T00:04:47 |
huggingface/transformers | 6133195dcb027feb7502379acd13750e167eb6c5 | 74e685ee64516fb63492f5b2d3037c2e8ddfba53 | [docs] cb config (#44675)
* fix
* fix | [
{
"path": "src/transformers/generation/configuration_utils.py",
"patch": "@@ -1549,20 +1549,38 @@ class ContinuousBatchingConfig:\n Class that holds arguments relative to continuous batching, when using continuous batching through the\n `generate_batch` method or the `continuous_batching_context_man... | 2026-03-13T23:02:20 |
golang/go | 1118da25148d20f0fc275dd7ce7a08bd4ac4bdf2 | e57769d5ad251a26d7676cd7a63e5332b26a35f0 | text/template improved comparison error addresses issue #71421
Addresses issue #71421, improves the error message given for comparison. Previous error message did not specify the types causing conflict, just said incompatible types, new error message specifies the two types causing the issue.
Change-Id: I9d940ab7573c... | [
{
"path": "src/text/template/funcs.go",
"patch": "@@ -409,7 +409,6 @@ func not(arg reflect.Value) bool {\n \n var (\n \terrBadComparisonType = errors.New(\"invalid type for comparison\")\n-\terrBadComparison = errors.New(\"incompatible types for comparison\")\n \terrNoComparison = errors.New(\"miss... | 2025-01-31T20:57:20 |
facebook/react | bbc8530ed7a67859583a7c990ac51cd39c7746e5 | 2eed1328478e8c923fcb4e6abf5efbd9e1233402 | [Float] Refactor public interface and internal HostDispatcher implementation (#27361)
When Float was first developed the internal implementation and external
interface were the same. This is problematic for a few reasons. One, the
public interface is typed but it is also untrusted and we should not
assume that it i... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -17,7 +17,10 @@ import type {\n StringDecoder,\n } from './ReactFlightClientConfig';\n \n-import type {HintModel} from 'react-server/src/ReactFlightServerConfig';\n+import type {\n+ HintCode,\n+ HintModel,\n+} from 'react-server/sr... | 2023-09-12T15:09:10 |
ollama/ollama | 0c2489605d22e1d5bba91228534336d6fa140aa0 | 8b1b89a984d47a15aac6914b2d48abbc7213f51c | docs: fix output formatting in faq.mdx (#13231)
There were a few Markdown typos in one FAQ answer. It now renders as a proper ascii table. | [
{
"path": "docs/faq.mdx",
"patch": "@@ -57,8 +57,13 @@ ollama ps\n ```\n \n <Info>\n- **Output**: ``` NAME ID SIZE PROCESSOR UNTIL llama3:70b bcfb190ca3a7 42 GB\n- 100% GPU 4 minutes from now ```\n+\n+**Output**:\n+\n+```\n+NAME ID SIZE PROCESSOR UNTIL\n+llama3:70b bcfb190ca3a7 42... | 2025-11-29T00:19:21 |
electron/electron | 43182bf030d7de6fab5b6976f073eb125c2ebe12 | 8e4a168a136f8948d019350a089a8a2878509c6a | fix: promise support with webFrameMain.executeJavaScript (#35292)
* fix: promise support with webFrameMain.executeJavaScript
* chore: reject when result is an error | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -11,8 +11,9 @@\n \n #include \"base/logging.h\"\n #include \"base/no_destructor.h\"\n-#include \"content/browser/renderer_host/frame_tree_node.h\" // nogncheck\n+#include \"content/browser/renderer_host/render_frame_host_impl.h\" /... | 2022-08-17T04:08:13 |
vercel/next.js | b5b2a6c14b7914bb48b026c2ba95c083aa2faa05 | 323ec0aea74ec517710fde4e12eb50ef8c8d2357 | Fix incorrect route param (#79795)
In the example under the "Generated Metadata" section of the page, the
route is defined as `/app/blog/[slug]/page.tsx`, but the Props type uses
`id` instead of `slug`. This fixes the mismatch to reflect the actual
dynamic route segment
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "docs/01-app/01-getting-started/13-metadata-and-og-images.mdx",
"patch": "@@ -72,7 +72,7 @@ You can use [`generateMetadata`](/docs/app/api-reference/functions/generate-meta\n import type { Metadata, ResolvingMetadata } from 'next'\n \n type Props = {\n- params: Promise<{ id: string }>\n+ params:... | 2025-05-30T11:02:41 |
huggingface/transformers | 74e685ee64516fb63492f5b2d3037c2e8ddfba53 | 65db6fc07c776406f7b4afe1ee5ecdbeb7202af7 | Fix more model tester missing `parent` issue (#44685)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/pp_lcnet/test_modeling_pp_lcnet.py",
"patch": "@@ -52,6 +52,7 @@\n class PPLCNetModelTester:\n def __init__(\n self,\n+ parent,\n batch_size=3,\n image_size=128,\n num_channels=3,\n@@ -68,6 +69,7 @@ def __init__(\n out_indices=[2, 3,... | 2026-03-13T20:57:43 |
facebook/react | 2eed1328478e8c923fcb4e6abf5efbd9e1233402 | bb1d8d166799eb97892be6c7826179270ba283d0 | refactor[devtools/extension]: more stable element updates polling to avoid timed out errors (#27357)
Some context:
- When user selects an element in tree inspector, we display current
state of the component. In order to display really current state, we
start polling the backend to get available updates for the elem... | [
{
"path": "packages/react-devtools-extensions/src/background/index.js",
"patch": "@@ -83,7 +83,7 @@ chrome.runtime.onConnect.addListener(port => {\n }\n \n if (isNumeric(port.name)) {\n- // Extension port doesn't have tab id specified, because its sender is the extension.\n+ // DevTools page port ... | 2023-09-12T14:05:39 |
golang/go | f7b8dd9033663944e3b563afaeb55dace4c060fc | 9896da303a74c7af02f711fbb49ac08e4ef3590b | io/fs: add ReadLinkFS interface
Added implementations for *io/fs.subFS, os.DirFS, and testing/fstest.MapFS.
Amended testing/fstest.TestFS to check behavior.
Addressed TODOs in archive/tar and os.CopyFS around symbolic links.
I am deliberately not changing archive/zip in this CL,
since it currently does not resolve s... | [
{
"path": "api/next/49580.txt",
"patch": "@@ -0,0 +1,8 @@\n+pkg io/fs, func Lstat(FS, string) (FileInfo, error) #49580\n+pkg io/fs, func ReadLink(FS, string) (string, error) #49580\n+pkg io/fs, type ReadLinkFS interface { Lstat, Open, ReadLink } #49580\n+pkg io/fs, type ReadLinkFS interface, Lstat(string) (... | 2024-07-16T17:21:30 |
ollama/ollama | dba62ff3a572af4af845711c2091b70606b06af4 | d70e93552696a5a1aaa5fd8b56d3f6e8b165f8c0 | discovery: fix cuda overlap case (#13176)
Recent refactoring introduced a regression for filtering cuda overlap to favor newest supported version. | [
{
"path": "discover/runner.go",
"patch": "@@ -125,10 +125,20 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\tsupportedMu := sync.Mutex{}\n \t\tsupported := make(map[string]map[string]map[string]int) // [Library][libDir][ID] = pre-deletion devices index\n \t\tfor i :... | 2025-11-20T20:15:37 |
electron/electron | 947f1b0abf8ce61612f48cf13e7861b58f22594a | db7c92fd574f9880cc4ce579972f5220ebb3186e | fix: Frameless window shows frame while opening (#35189)
* fix: Frameless window shows frame while opening
* Clarify comments
* Inline setter
* Edit comment | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -116,3 +116,4 @@ chore_add_electron_deps_to_gitignores.patch\n chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\n add_maximized_parameter_to_linuxui_getwindowframeprovider.patch\n add_electron_deps_to_license_credits_file.patch\n+feat_... | 2022-08-16T21:22:47 |
vercel/next.js | 323ec0aea74ec517710fde4e12eb50ef8c8d2357 | 0b5196f4d9bdd70789db4b4cf5723a3040ab4c0c | docs: fix incorrect usage of Promise in page params example (#79804)
The documentation incorrectly used `params: Promise<{ slug: string }>`
in an example and attempted to use `await` in a non-async function.
This commit updates the example to reflect the correct usage:
- `params` should be a synchronous object: `{ s... | [
{
"path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx",
"patch": "@@ -214,7 +214,7 @@ If you were to combine the two layouts above, the root layout (`app/layout.js`)\n To create a dynamic segment, wrap the segment (folder) name in square brackets: `[segmentName]`. For example, in the `app/blog/... | 2025-05-30T11:01:49 |
huggingface/transformers | 65db6fc07c776406f7b4afe1ee5ecdbeb7202af7 | 39f1c8d5d294779dbd13248b0986e510c477c529 | :rotating_light: [`FA4`] Initial support (#42435)
* initial implementation
* CB support
* change how we call item on max_seq_len_q/k
* fix
* tests
* fix fa2 clash
* unify the fa dispatch
* fix
* modernbert...
* oops
* parity test
* style
* nit
* fixup imports for fa4
* enable attention sinks, fixup logit... | [
{
"path": ".github/workflows/self-scheduled-flash-attn-caller.yml",
"patch": "@@ -56,5 +56,5 @@ jobs:\n runner_type: \"a10\"\n report_repo_id: hf-internal-testing/transformers_flash_attn_ci\n commit_sha: ${{ github.sha }}\n- pytest_marker: \"flash_attn_test or flash_attn_3_test\"\n+ ... | 2026-03-13T19:19:37 |
golang/go | 6adf54a3ebca857ae529b78c03945750731042ed | bf351677c4c134f15d28cf5352964838609de129 | cmd/cgo: declare _GoString{Len,Ptr} in _cgo_export.h
Fixes #71226
Change-Id: I91c46a4310a9c7a9fcd1e3a131ca16e46949edb3
Reviewed-on: https://go-review.googlesource.com/c/go/+/642235
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/cmd/cgo/out.go",
"patch": "@@ -1938,6 +1938,8 @@ const builtinExportProlog = `\n \n #ifndef GO_CGO_GOSTRING_TYPEDEF\n typedef struct { const char *p; ptrdiff_t n; } _GoString_;\n+extern size_t _GoStringLen(_GoString_ s);\n+extern const char *_GoStringPtr(_GoString_ s);\n #endif\n \n #endif",
... | 2025-01-11T00:35:24 |
ollama/ollama | 53985b3c4d94f22517e4090696a5b8ecd06caedb | b6e02cbbd280114ffcdffd5f7d4d26aee281d3d6 | kvcache: Use SetRows to store cache data
We currently copy data into the KV cache in contiguous buffers using
ggml_cpy(). ggml_set_rows() was introduced to allow scatter operation
so that contiguous buffers are no longer required. The direct primary
benefit of this is that we no longer need to perform defragmentation.... | [
{
"path": "kvcache/causal.go",
"patch": "@@ -3,7 +3,6 @@ package kvcache\n import (\n \t\"errors\"\n \t\"fmt\"\n-\t\"log/slog\"\n \t\"math\"\n \t\"slices\"\n \n@@ -40,18 +39,18 @@ type Causal struct {\n \n \t// ** current forward pass **\n \n-\t// the active layer for Get and Put\n-\tcurLayer int\n-\n-\t// ... | 2025-08-18T17:45:58 |
vercel/next.js | a0993d90c280690e83a2a1bc7c292e1187429fe8 | 22bf07a4e093d967c6dc3f857ab45964095ae12e | fix: Revert bugfix for conflicting assets (#79941)
### What?
Revert https://github.com/vercel/next.js/pull/78011
### Why?
Because it caused a regression like
https://github.com/vercel/next.js/issues/79938
### How?
Closes https://github.com/vercel/next.js/issues/79938 | [
{
"path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts",
"patch": "@@ -223,7 +223,7 @@ export class ClientReferenceManifestPlugin {\n }\n \n apply(compiler: webpack.Compiler) {\n- compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => {\n+ compiler.hooks.compilation... | 2025-05-30T01:49:04 |
huggingface/transformers | 064f0e97c69ca2ac865be78ddff5ce73c54ab071 | 80572efa0501a0881d23ceb508e19464a6c24288 | [CB] [Bug] Fix crashes when running without cuda (#44673)
* Fix CUDA being mandatory
* Add a test for the feature
* Better test and run on CPU
* Add back slow and better name | [
{
"path": "src/transformers/generation/continuous_batching/continuous_api.py",
"patch": "@@ -17,7 +17,7 @@\n import threading\n from abc import abstractmethod\n from collections.abc import Generator\n-from contextlib import contextmanager\n+from contextlib import contextmanager, nullcontext\n from math impo... | 2026-03-13T17:44:37 |
golang/go | bf351677c4c134f15d28cf5352964838609de129 | 9d6af4082b4ee0dc912a5cd108581f6eefd778a5 | cmd/cgo: add C declaration parameter unused attribute
Fixes #71225
Change-Id: I3e60fdf632f2aa0e63b24225f13e4ace49906925
Reviewed-on: https://go-review.googlesource.com/c/go/+/642196
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
... | [
{
"path": "src/cmd/cgo/out.go",
"patch": "@@ -1094,7 +1094,7 @@ func (p *Package) writeExports(fgo2, fm, fgcc, fgcch io.Writer) {\n \t\t// This unpacks the argument struct above and calls the Go function.\n \t\tfmt.Fprintf(fgo2, \"func _cgoexp%s_%s(a *%s) {\\n\", cPrefix, exp.ExpName, gotype)\n \n-\t\tfmt.F... | 2025-01-11T00:22:20 |
ollama/ollama | 485da9fd358eb17ba0a659a554f44be6c72efd2e | 0796d79d19345bc3724bd08108a96b669b0f1841 | win: exit instead of abort (#13138)
Calling abort on windows triggers the C++ runtime to attempt a debugger
attach, which causes the crashed runners to hang instead of exit, leading
to a timeout instead of a fast failure during discovery. | [
{
"path": "llama/patches/0036-win-exit-instead-of-abort.patch",
"patch": "@@ -0,0 +1,28 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Daniel Hiltgen <daniel@ollama.com>\n+Date: Tue, 18 Nov 2025 09:58:23 -0800\n+Subject: [PATCH] win: exit instead of abort\n+\n+---\n+ ggm... | 2025-11-19T00:33:33 |
electron/electron | db7c92fd574f9880cc4ce579972f5220ebb3186e | e87c4015fe85034f83a053c6682639a88d396ac3 | test: drop now-empty remote runner (#35343)
* test: drop the now-empty remote runner from CI
* move fixtures to spec-main
* remove remote runner
* fix stuff
* remove global-paths hack
* move ts-smoke to spec/
* fix test after merge
* rename spec-main to spec
* no need to ignore spec/node_module... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1060,18 +1060,15 @@ steps-tests: &steps-tests\n export MOCHA_TIMEOUT=180000\n echo \"Piping output to ASAN_SYMBOLIZE ($ASAN_SYMBOLIZE)\"\n (cd electron && node script/yarn test --runners=main --trace-uncaught --enable-l... | 2022-08-16T19:23:13 |
vercel/next.js | f639f2a9a7c544e33933b289913a004f86e5fbf8 | f2b0f9d26e963c9fed070a53515c5a4024fea1e6 | [release-new] fix: slack notification only if is a publish workflow (#79933)
The Slack notification workflow didn't have if condition, so it was
notified on every `build_and_deploy` job.
x-ref: [slack
thread](https://vercel.slack.com/archives/C0668R2391V/p1748475689878939) | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -606,6 +606,7 @@ jobs:\n # New release process\n - name: Publish to NPM\n id: changesets\n+ # TODO: Change to IS_RELEASE condition when new release becomes stable.\n if: ${{ env.__NEW_RELEASE == 'true' }}\n ... | 2025-05-29T19:27:43 |
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.