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
ollama/ollama
96e36c0d90b1da23304658a2ba90784b4a1c822d
6f8ddbb26b829949d2f925755507dbb8f3f01de5
mlxrunner: share KV cache across conversations with common prefixes Enable multiple conversations to reuse cached computations when they share token prefixes (e.g. the same system prompt). A prefix trie tracks shared regions so switching between conversations only recomputes tokens that diverge. Inactive conversation ...
[ { "path": "x/mlxrunner/cache.go", "patch": "@@ -1,19 +1,40 @@\n+// cache.go manages a shared KV cache across conversations using a compressed\n+// prefix trie. Each trie node stores a token sequence (edge) and optional\n+// per-layer snapshots that can be paged in/out of the live MLX cache arrays.\n+//\n+//...
2026-03-05T23:45:36
huggingface/transformers
676559d5022b74aaa0cee1cee0842b7f27c5320e
09a0bbb21ac50eae76bec1c600ff711f135a4f91
:rotating_light: [`LightGlue`] Remove remote code execution (#45122) * fix * style
[ { "path": "src/transformers/models/lightglue/configuration_lightglue.py", "patch": "@@ -40,8 +40,6 @@ class LightGlueConfig(PreTrainedConfig):\n The confidence threshold used to prune points\n filter_threshold (`float`, *optional*, defaults to 0.1):\n The confidence threshold used to fil...
2026-03-31T11:59:41
golang/go
26ba61dfad46f24a2a3138a40f738ecd22536edf
19d0b3e81f4a072615f92fd6821c8ed2cee27c9f
go/types, types2: remove most remaining references to coreType in builtin.go For now, use commonUnder (formerly called sharedUnder) and update error messages and comments. We can provide better error messages in individual cases eventually. Kepp using coreType for make built-in for now because it must accept differen...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -377,7 +377,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \n \tcase _Copy:\n \t\t// copy(x, y []T) int\n-\t\tdst, _ := coreType(x.typ).(*Slice)\n+\t\tdst, _ := commonUnder(check, x.typ, nil).(*Sli...
2025-02-26T23:14:30
facebook/react
6b3834a45b585e4340734139841ae81dc1b1a75d
6a7f3aa858b3a8670d6a4861e30f248b335e55bd
Guard against unmounted components when accessing public instances on Fabric (#27687) ## Summary This fixes an error in `getPublicInstanceFromInstanceHandle` where we throw an error when trying to access the public instance from the fiber of an unmounted component. This shouldn't throw but return `null` instead....
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -278,13 +278,21 @@ function getPublicTextInstance(\n export function getPublicInstanceFromInternalInstanceHandle(\n internalInstanceHandle: InternalInstanceHandle,\n ): null | PublicInstance | PublicTextInstance {\n+ c...
2023-11-10T15:49:07
ollama/ollama
6f8ddbb26b829949d2f925755507dbb8f3f01de5
b5e78884148828672fa122fdcbfae6a4d578108e
mlxrunner: fix Slice(0, 0) returning full dimension instead of empty Slice used cmp.Or to resolve a zero stop value to the dimension size, intended to support open-ended slices like a[i:]. This made Slice(0, 0) indistinguishable from Slice(), so any slice with a zero stop would silently include the entire dimension in...
[ { "path": "x/mlxrunner/mlx/slice.go", "patch": "@@ -4,10 +4,14 @@ package mlx\n import \"C\"\n \n import (\n-\t\"cmp\"\n+\t\"math\"\n \t\"unsafe\"\n )\n \n+// End is a sentinel value meaning \"to the end of the dimension\",\n+// equivalent to an omitted stop in Python (e.g. a[i:]).\n+const End = math.MaxInt...
2026-03-18T21:10:08
vercel/next.js
d49c6a40348cbfa6dea1d4ec3daaac25e7a3551d
32613645e5b1df27b1bcc9c8c0799ee278a03af8
overwrite redirect SSG meta.status to 200 for RSC requests (#80391) For a static route that simply returns a `redirect`: ``` export default function Page() { redirect("/about"); } ``` the SSG generates a `.meta` file for the route at build time, that looks like: ``` { "status": 307, "headers": { "location": ...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -83,6 +83,7 @@ export const __next_app__ = {\n }\n \n import * as entryBase from '../../server/app-render/entry-base' with { 'turbopack-transition': 'next-server-utility' }\n+import { RedirectStatusCode } from '../../client/components/r...
2025-06-19T23:39:00
huggingface/transformers
09a0bbb21ac50eae76bec1c600ff711f135a4f91
4f2871932477e23190406004383da557a270d9a0
Fix stupid test fetcher (#45140) * comment * fix(tests_fetcher): skip files with docstring/comment-only changes in get_diff Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Revert "comment" This reverts commit fd58eac8dcca82df04f36217187d0c6c061290a3. * test(tests_fetcher): add test for docstring-only ...
[ { "path": "tests/repo_utils/test_tests_fetcher.py", "patch": "@@ -39,6 +39,7 @@\n diff_is_docstring_only,\n extract_imports,\n get_all_tests,\n+ get_diff,\n get_module_dependencies,\n get_repo_utils_tests,\n get_tree_starting_at,\n@@ -313,6 +314,23 @@ def test_diff_is_docstring_on...
2026-03-31T10:58:18
golang/go
4b1ac7bbfe3e8e4872b1a4651c527ea8be4a045f
f48b53f0f62c94fac8d835c8e1b48fab5b842bd3
go/types, types2: remove references to core type in append Writing explicit code for this case turned out to be simpler and easier to reason about then relying on a helper functions (except for typeset). While at it, make append error messages more consistent. For #70128. Change-Id: I3dc79774249929de5061b4301ab2506...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -82,41 +82,61 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \n \tswitch id {\n \tcase _Append:\n-\t\t// append(s S, x ...T) S, where T is the element type of S\n-\t\t// spec: \"The variadic function...
2025-02-26T17:57:31
facebook/react
0e352ea01c0209b6c5e23f0e857af4e01c783024
78c71bc545bf5c0fdeedc023b69fafe05d988067
[Fizz] Fix for failing id overwrites for postpone (#27684) When we postpone during a render we inject a new segment synchronously which we postpone. That gets assigned an ID so we can refer to it immediately in the postponed state. When we do that, the parent segment may complete later even though it's also sync...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzStaticBrowser-test.js", "patch": "@@ -1495,4 +1495,51 @@ describe('ReactDOMFizzStaticBrowser', () => {\n 'hello',\n ]);\n });\n+\n+ // @gate enablePostpone\n+ it('can render a deep list of single components where one postpones', async () ...
2023-11-10T03:52:31
ollama/ollama
5759c2d2d20bc3193e4520f4a6af42545dbbc104
42b1c2642b7b3d4de543c68f9d78b1efb0a254e3
launch: fix openclaw not picking up newly selected model (#14943) Sessions with a stale model field were not updated when the primary changed, so the old model continued to be used.
[ { "path": "cmd/launch/openclaw.go", "patch": "@@ -609,6 +609,8 @@ func clearSessionModelOverride(primary string) {\n \t\tif override, _ := sess[\"modelOverride\"].(string); override != \"\" && override != primary {\n \t\t\tdelete(sess, \"modelOverride\")\n \t\t\tdelete(sess, \"providerOverride\")\n+\t\t}\n+...
2026-03-18T20:20:10
vercel/next.js
1141e677aed5c21f98b9629190335407a823abfd
d4fcf46d938339206fb567ffca4258b5132c8b09
test: improve action test reliability (#80587) ## Summary This PR improves test reliability for the app-dir actions test suite by addressing race conditions and modernizing file system operations. ## Changes ### Test Improvements - **Fixed race conditions** in revalidation tests by ensuring proper sequencing of...
[ { "path": "test/e2e/app-dir/actions/app-action.test.ts", "patch": "@@ -8,10 +8,10 @@ import {\n getRedboxSource,\n } from 'next-test-utils'\n import type { Request, Response } from 'playwright'\n-import fs from 'fs-extra'\n-import nodeFs from 'fs'\n-import { join } from 'path'\n+import fs from 'node:fs/pr...
2025-06-19T18:50:02
electron/electron
9b8b8f5880c29b9ae0b112433e7a51c51b501c2b
32288ac9c588fe8c3b814338aaf5df7fddbce276
fix: move report_raw_headers to TrustedParams (#36725) * fix: move report_raw_headers to TrustedParams * Update electron_api_url_loader.cc * missed a copy constructor
[ { "path": "patches/chromium/feat_expose_raw_response_headers_from_urlloader.patch", "patch": "@@ -17,69 +17,78 @@ headers, moving forward we should find a way in upstream to provide\n access to these headers for loader clients created on the browser process.\n \n diff --git a/services/network/public/cpp/res...
2023-01-05T09:36:14
huggingface/transformers
4f2871932477e23190406004383da557a270d9a0
6b28829743dec03c01ccf3e8b5d9dbc40054974e
[CB] Add warmup feature (#45112) * comment about regional compile * Warmup feature * Add compile to not skip warmup * fixes * Added info about warmup * style * Added comparison helper in the CB overall bm * Update example * Smarter warmup * Bounds on warmup * Style and done * done done * CI reroll
[ { "path": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py", "patch": "@@ -1,3 +1,5 @@\n+import argparse\n+import json\n import re\n import subprocess\n from pathlib import Path\n@@ -8,10 +10,11 @@\n SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_batchin...
2026-03-31T07:29:06
golang/go
f48b53f0f62c94fac8d835c8e1b48fab5b842bd3
0312e31ed197b3bf1434e8dbb283f0d2374d7457
testing: fix testing.B.Loop doc on loop condition As mentioned by https://github.com/golang/go/issues/61515#issuecomment-2656656554, the documentation should be relaxed. Change-Id: I9f18301e1a4e4d9a72c9fa0b1132b1ba3cc57b03 Reviewed-on: https://go-review.googlesource.com/c/go/+/651435 LUCI-TryBot-Result: Go LUCI <gola...
[ { "path": "src/testing/benchmark.go", "patch": "@@ -426,9 +426,9 @@ func (b *B) loopSlowPath() bool {\n // The compiler never optimizes away calls to functions within the body of a\n // \"for b.Loop() { ... }\" loop. This prevents surprises that can otherwise occur\n // if the compiler determines that the r...
2025-02-21T16:23:36
ollama/ollama
727d69ddf39ef80ecebb76e417ccbc0b83861498
f622b0c5fc0afa46f0275b1a38adf072de3c0424
tui: fix signin on headless Linux systems (#14627) Defensively handle environments without a display server to ensure signin remains usable on headless VMs and SSH sessions. - Skip calling xdg-open when neither DISPLAY nor WAYLAND_DISPLAY is set, preventing silent failures or unexpected browser handlers - Render the ...
[ { "path": "cmd/launch/models.go", "patch": "@@ -92,6 +92,10 @@ func OpenBrowser(url string) {\n \tcase \"darwin\":\n \t\t_ = exec.Command(\"open\", url).Start()\n \tcase \"linux\":\n+\t\t// Skip on headless systems where no display server is available\n+\t\tif os.Getenv(\"DISPLAY\") == \"\" && os.Getenv(\"W...
2026-03-18T18:11:17
facebook/react
c47c306a7a23d3c796b148d303764e2832da480c
7bdd7cc2d8aca24ea46474ee8a5a5e300109332e
refactor[ci/build]: preserve header format in artifacts (#27671) In order to make Haste work with React's artifacts, It is important to keep headers in this format: ``` /** * ... ... * ... */ ``` For optimization purposes, Closure compiler will actually modify these headers by removing * prefixes, which is...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -470,11 +470,10 @@ function getPlugins(\n // I'm going to port \"art\" to ES modules to avoid this problem.\n // Please don't enable this for anything else!\n isUMDBundle && entry === 'react-art' && commonjs(),\n- // License and haste ...
2023-11-09T16:00:21
huggingface/transformers
66958ae60e221e39356576031d6eb893d4228c2c
8213e0d920d52cb00dcade16b6d1f6e952ac0a8c
Fix tests for `janus` model (#44739) * fix `padding_side` bug for janus model Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * fix bug for `_prepare_config_headdim` Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update code Signed-off-by: ...
[ { "path": "src/transformers/models/janus/processing_janus.py", "patch": "@@ -45,7 +45,7 @@ class JanusTextKwargs(TextKwargs, total=False):\n class JanusProcessorKwargs(ProcessingKwargs, total=False):\n text_kwargs: JanusTextKwargs\n _defaults = {\n- \"text_kwargs\": {\"padding\": False, \"gen...
2026-03-31T06:46:00
vercel/next.js
d4fcf46d938339206fb567ffca4258b5132c8b09
fc9939938d96fb7221ff25954e62218e0cd83ddc
fix: mark the shared cache controls as external so it's memory is shared (#80588) This PR refactors the default cache handler and shared cache controls to be marked as external modules, improving build optimization and module boundaries. ### Changes - **Marked shared cache controls as external**: Renamed `shared-cac...
[ { "path": "packages/next/src/build/webpack/loaders/next-edge-app-route-loader/index.ts", "patch": "@@ -37,7 +37,7 @@ const EdgeAppRouteLoader: webpack.LoaderDefinitionFunction<EdgeAppRouteLoaderQue\n \n if (!cacheHandlers.default) {\n cacheHandlers.default = require.resolve(\n- '../../../.....
2025-06-19T18:49:35
electron/electron
32288ac9c588fe8c3b814338aaf5df7fddbce276
42cda4a893e5c502ffe4bd1eb0f086709b586bd3
fix: focus rings with multiple buttons in `showMessageBox` (#36772) fix: focus rings with multiple buttons in messageBox
[ { "path": "shell/browser/ui/message_box_mac.mm", "patch": "@@ -71,9 +71,6 @@\n int button_count = static_cast<int>([ns_buttons count]);\n \n if (settings.default_id >= 0 && settings.default_id < button_count) {\n- // Highlight the button at default_id\n- [[ns_buttons objectAtIndex:settings.default...
2023-01-05T08:56:38
golang/go
0312e31ed197b3bf1434e8dbb283f0d2374d7457
bda9f85e5cb57d64e9ff8ef39f0d5222c5ceeea0
net: fix parsing of interfaces on plan9 without associated devices Fixes #72060 Updates #39908 Change-Id: I7d5bda1654753acebc8aa9937d010b41c5722b36 Reviewed-on: https://go-review.googlesource.com/c/go/+/654055 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco...
[ { "path": "src/net/interface_plan9.go", "patch": "@@ -57,6 +57,17 @@ func readInterface(i int) (*Interface, error) {\n \t}\n \n \tfields := getFields(line)\n+\n+\t// If the interface has no device file then we see two spaces between \"device\" and\n+\t// \"maxtu\" and and getFields treats the two spaces as ...
2025-03-02T04:34:45
ollama/ollama
d727aacd04e531db9fe2a797b31c032d626b69ef
fa69b833cd1323b2d96b80da9e38cadc7e8fe97a
mlx: quantized embeddings, fast SwiGLU, and runtime fixes (#14884) Add QuantizedEmbedding and EmbeddingLayer interface so models can use quantized embedding weights and expose tied output projections. This change updates gemma3, glm4_moe_lite, llama, qwen3, and qwen3_5 to use the new interface.
[ { "path": "x/mlxrunner/mlx/ops_extra.go", "patch": "@@ -310,6 +310,12 @@ func Log(a *Array) *Array {\n \treturn out\n }\n \n+func Logaddexp(a, b *Array) *Array {\n+\tout := New(\"LOGADDEXP\")\n+\tC.mlx_logaddexp(&out.ctx, a.ctx, b.ctx, DefaultStream().ctx)\n+\treturn out\n+}\n+\n func SoftmaxAxis(a *Array, ...
2026-03-17T18:21:38
facebook/react
69eb9ccccc93d0ac4bf63e64c515e544c6dbff16
f92a058ca5ebde1566d70f85cfd40d7fb5cfc38b
[snap] Add option to set panicThreshold
[ { "path": "compiler/packages/fixture-test-utils/src/compiler-utils.ts", "patch": "@@ -7,7 +7,10 @@\n \n import assert from \"assert\";\n import type { runReactForgetBabelPlugin as RunReactForgetBabelPlugin } from \"babel-plugin-react-forget/src/Babel/RunReactForgetBabelPlugin\";\n-import { CompilationMode }...
2023-11-09T12:00:34
huggingface/transformers
8213e0d920d52cb00dcade16b6d1f6e952ac0a8c
a9c6700a5078e8a9276656a0d0b82b32958624b7
CB improvements for serving (#45063) * merge * update * fix * style * simpler * style * review ! * style * batch output * style * type
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -12,11 +12,12 @@\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+import asynci...
2026-03-30T18:34:18
vercel/next.js
fc9939938d96fb7221ff25954e62218e0cd83ddc
a362b340f23798663ce17db49c051ca48ddc91ca
fix: server actions should fetch from the router canonicalUrl (#80690) A test related to navigation + server action handling was frequently flaking in CI ([x-ref](https://github.com/vercel/next.js/actions/runs/15746992788/job/44386768835#step:34:2634)). When simulating a 20x browser slowdown, it's fairly easy to repro...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/server-action-reducer.ts", "patch": "@@ -87,7 +87,7 @@ async function fetchServerAction(\n \n const body = await encodeReply(usedArgs, { temporaryReferences })\n \n- const res = await fetch('', {\n+ const res = await fetch(state.cano...
2025-06-19T17:25:18
electron/electron
42cda4a893e5c502ffe4bd1eb0f086709b586bd3
700f43c90c714fbf0b91458288b88bc18eed7cb0
fix: rename WebSwapCGLLayer to WebSwapCGLLayerChromium (#35961) * fix: rename WebSwapCGLLayer to WebSwapCGLLayerChromium * undo changes to patches/config.json Co-authored-by: Jeremy Rose <jeremya@chromium.org>
[ { "path": "patches/angle/.patches", "patch": "@@ -0,0 +1 @@\n+fix_rename_webswapcgllayer_to_webswapcgllayerchromium.patch", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "patches/angle/fix_rename_webswapcgllayer_to_webswapcgllayerchromium.patch", "patch": "@@ -0,...
2023-01-05T06:49:08
golang/go
68949049742f737ac4d54f48b1291f3b73d1b4f6
64feded8afd7280f533e09138efa31b6772e34ce
cmd/go/internal/modindex: clean modroot and pkgdir for openIndexPackage GetPackage is sometimes called with a modroot or pkgdir that ends with a path separator, and sometimes without. Clean them before passing them to openIndexPackage to deduplicate calls to mcache.Do and action entry files. This shouldn't affect #71...
[ { "path": "src/cmd/go/internal/modindex/read.go", "patch": "@@ -146,6 +146,8 @@ func GetPackage(modroot, pkgdir string) (*IndexPackage, error) {\n \tif strings.Contains(filepath.ToSlash(pkgdir), \"internal/fips140/v\") {\n \t\treturn nil, errFIPS140\n \t}\n+\tmodroot = filepath.Clean(modroot)\n+\tpkgdir = f...
2025-02-25T17:51:04
ollama/ollama
bcf6d55b54b9792083e785b5cfaf6ad8eb9f8dca
810d4f9c22319491cd3ac360afed6d2cae6be99a
launch: fix web search, add web fetch, and enable both for local (#14886)
[ { "path": "cmd/launch/openclaw.go", "patch": "@@ -14,6 +14,8 @@ import (\n \t\"strings\"\n \t\"time\"\n \n+\t\"golang.org/x/mod/semver\"\n+\n \t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/cmd/internal/fileutil\"\n \t\"github.com/ollama/ollama/envconfig\"\n@@ -90,10 +92,8 @@ func (c *Open...
2026-03-16T23:26:19
facebook/react
746890329452cbec8685eb3466847c5f17d9dc77
7508dcd5cc245e376860d65402972e418199264d
[Static][Fizz] bootstrap scripts should only emit once (#27674) I introduced a bug in a recent change to how bootstrap scripts are handled. Rather than clearing out the bootstrap script state from ResumableState on completion of the prerender I did it during the flushing phase which comes later after the postponed ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -690,6 +690,13 @@ export function resetResumableState(\n resumableState.moduleScriptResources = {};\n }\n \n+export function completeResumableState(resumableState: ResumableState): void {\n+ // This function is called ...
2023-11-09T01:51:47
vercel/next.js
e4c838c1d07dea560ae7f00f96e58ec18e602d5e
75b7fe201f73a1fb3b962b07aa0baac4d57f6029
Add `--debug-prerender` option for `next build` (#80667) When running `next build --debug-prerender`, we will set a few experimental flags that ensure the following: - No minification is applied to server code. - `experimental.serverMinification = false`, or - `experimental.turbopackMinify = false` - Sou...
[ { "path": "packages/next/src/bin/next.ts", "patch": "@@ -124,7 +124,10 @@ program\n )}`\n )\n .option('-d, --debug', 'Enables a more verbose build output.')\n-\n+ .option(\n+ '--debug-prerender',\n+ 'Enables debug mode for prerendering. Not for production use!'\n+ )\n .option('--no-lint', ...
2025-06-19T15:13:03
huggingface/transformers
a9c6700a5078e8a9276656a0d0b82b32958624b7
b7074b1e069dab83d5892f596bf47997692b795d
Add Music Flamingo (#43538) * Music flamingo * Fix pos embeddings * Method arg docstrings * Add tests & docs * Fix AF3 dtype bug * Fix the MF performance issue * Fix pos embeddings * Fix embeddings & format * Remove external deps * Update processor token names * Cleanup * Simplify RotaryEmbedding to lang-on...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1256,6 +1256,8 @@\n title: mllama\n - local: model_doc/mm-grounding-dino\n title: MM Grounding DINO\n+ - local: model_doc/musicflamingo\n+ title: MusicFlamingo\n - local: model_doc/nougat\n title: Nougat\n...
2026-03-30T18:04:21
golang/go
1dafccaaf324547c92fbba40e343d9a142f106b4
6e8d7a113cc0f2cf59e0f67f86476cb003881a68
runtime: increase timeout in TestSpuriousWakeupsNeverHangSemasleep This change tries increasing the timeout in TestSpuriousWakeupsNeverHangSemasleep. I'm not entirely sure of the mechanism, but GODEBUG=gcstoptheworld=2 and GODEBUG=gccheckmark=1 can cause this test to fail at it's regular timeout. It does not seem to i...
[ { "path": "src/runtime/semasleep_test.go", "patch": "@@ -72,14 +72,6 @@ func TestSpuriousWakeupsNeverHangSemasleep(t *testing.T) {\n \t\tclose(doneCh)\n \t}()\n \n-\t// Wait for an arbitrary timeout longer than one second. The subprocess itself\n-\t// attempts to sleep for one second, but if the machine run...
2025-02-26T23:11:29
ollama/ollama
810d4f9c22319491cd3ac360afed6d2cae6be99a
856c047a6cad0cff20cc0e1995f92826a7280dba
runner: fix swallowed error in allocModel graph reservation In allocModel(), the first call to reserveWorstCaseGraph(true) had its error silently discarded — `return nil` was used instead of `return err`. This meant that if the prompt-sized graph reservation failed (e.g. due to insufficient memory), the error was swa...
[ { "path": "runner/ollamarunner/runner.go", "patch": "@@ -1231,7 +1231,7 @@ func (s *Server) allocModel(\n \n \terr = s.reserveWorstCaseGraph(true)\n \tif err != nil {\n-\t\treturn nil\n+\t\treturn err\n \t}\n \n \treturn s.reserveWorstCaseGraph(false)", "additions": 1, "deletions": 1, "language"...
2026-03-14T02:35:40
electron/electron
6cb5f5a1eb68c3013a2d62392b4289c70b2ce668
20cff642821cf9dc57b55fef4414fa0b010d329f
docs: update incorrect grammar (#36780) #### Description of Change The first sentence within the documentation "[Important: signing your code](https://www.electronjs.org/docs/latest/tutorial/tutorial-packaging#important-signing-your-code)" is grammatically incorrect. > In order to distribute desktop applications...
[ { "path": "docs/tutorial/tutorial-5-packaging.md", "patch": "@@ -127,8 +127,7 @@ documentation.\n \n ## Important: signing your code\n \n-In order to distribute desktop applications to end users, we _highly recommended_ for you\n-to **code sign** your Electron app. Code signing is an important part of shipp...
2023-01-04T13:52:29
vercel/next.js
73202480cf04533407304050cd17baa606de6153
e25792b54997020cd389cd6f38d73ffd9ad47c3c
Prevent typescript errors in IDE for newly generated tests (part 2) (#80664) Follow-up to #78247. This prevents the following error when first opening the generated test file in the IDE: ``` Cannot find module 'e2e-utils' or its corresponding type declarations. ``` We're adding the patterns `**/*.test.ts` and `**/*....
[ { "path": "turbo/generators/config.ts", "patch": "@@ -94,6 +94,11 @@ export default function generator(plop: NodePlopAPI): void {\n type: 'add',\n templateFile: path.join(cnaTemplatePath, 'tsconfig.json'),\n path: path.join(targetPath, name, 'tsconfig.json'),\n+ transf...
2025-06-19T10:34:33
facebook/react
88b00dec4778ffa230cceca81af3328f49e1efd9
52d542ad6d410008c495084f511247f43387055f
Update stack diffing algorithm in describeNativeComponentFrame (#27132) ## Summary There's a bug with the existing stack comparison algorithm in `describeNativeComponentFrame` — specifically how it attempts to find a common root frame between the control and sample stacks. This PR attempts to fix that bug by inj...
[ { "path": "packages/shared/ReactComponentStackFrame.js", "patch": "@@ -60,6 +60,17 @@ if (__DEV__) {\n componentFrameCache = new PossiblyWeakMap<Function, string>();\n }\n \n+/**\n+ * Leverages native browser/VM stack frames to get proper details (e.g.\n+ * filename, line + col number) for a single compon...
2023-11-08T16:45:31
huggingface/transformers
813c7c6b2e84b963a1f14bd28a36ee68986ef2d9
62a8e1287c24e01581a03f0cf05a4c02322fbcb6
Fix few issues in Qwen_3_Omni_Moe (#44848) * Fix Qwen3OmniMoeConfig has no attribute initializer_range * Fix passing of args * Fix no_split_modules * fix * fix and improve * format * fix modular * fix modular * comment --------- Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com> Co-autho...
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -688,7 +688,14 @@ def _maybe_initialize_input_ids_for_generation(\n break\n \n if \"inputs_embeds\" in model_kwargs:\n- return torch.ones((batch_size, 0), dtype=torch.long, device=self.device)\n+ ret...
2026-03-30T16:42:59
golang/go
d31c805535f3fde95646ee4d87636aaaea66847b
01351209225d609f8012e2406550211137716727
net/http: reject newlines in chunk-size lines Unlike request headers, where we are allowed to leniently accept a bare LF in place of a CRLF, chunked bodies must always use CRLF line terminators. We were already enforcing this for chunk-data lines; do so for chunk-size lines as well. Also reject bare CRs anywhere other...
[ { "path": "src/net/http/internal/chunked.go", "patch": "@@ -164,21 +164,34 @@ func readChunkLine(b *bufio.Reader) ([]byte, error) {\n \t\t}\n \t\treturn nil, err\n \t}\n+\n+\t// RFC 9112 permits parsers to accept a bare \\n as a line ending in headers,\n+\t// but not in chunked encoding lines. See https://w...
2025-02-26T21:40:00
electron/electron
28cfaccb1d1a84c4d278ed82d5d80bfb2ad6c06c
c4a93390dda6bed5f52f901fb1d4ff1eb0662d8f
docs: update code highlights in tutorial (#36691) docs: fix code highlighting in preload tutorial The highlighted lines in the code snippets were unaligned, which could cause a newcomer unneeded confusion on what lines need to be changed.
[ { "path": "docs/tutorial/tutorial-3-preload.md", "patch": "@@ -81,7 +81,7 @@ contextBridge.exposeInMainWorld('versions', {\n To attach this script to your renderer process, pass its path to the\n `webPreferences.preload` option in the BrowserWindow constructor:\n \n-```js {8-10} title=\"main.js\"\n+```js {2...
2023-01-02T10:14:34
ollama/ollama
79c1e93c005ebeccb31b8482da9d71a446af9b5f
f8b657c9670a4319930e8d7e5444460df91a7b5d
bench: improve benchmarking tool (#14240) New features: - Warmup phase to eliminate cold-start outliers - time-to-first-token measured in each epoch - VRAM/memory tracking to identify CPU spillover - Controlled prompt length - Defaults to 6 epochs and 200 tokens max Benchstat fixes: - ns/request instead of ns/op — no...
[ { "path": "cmd/bench/README.md", "patch": "@@ -1,27 +1,31 @@\n Ollama Benchmark Tool\n ---------------------\n \n-A Go-based command-line tool for benchmarking Ollama models with configurable parameters and multiple output formats.\n+A Go-based command-line tool for benchmarking Ollama models with configura...
2026-03-15T18:47:31
vercel/next.js
e25792b54997020cd389cd6f38d73ffd9ad47c3c
2ffdaafbe962fe1a6e5b5011dd5fea6be48cd497
fix(turbopack): Fix static immutability analysis (#80646) ### What? Do not mark functions with `(&self)` receiver as imuutable. ### Why? `&self` is `self: Vc<Self>` with `self.await?` --------- Co-authored-by: Luke Sandberg <lukesandberg@users.noreply.github.com>
[ { "path": "turbopack/crates/turbo-tasks-macros/src/function_macro.rs", "patch": "@@ -67,7 +67,7 @@ pub fn function(args: TokenStream, input: TokenStream) -> TokenStream {\n filter_trait_call_args: None, // not a trait method\n local,\n invalidator,\n- immutable: sig.asyncness....
2025-06-19T05:17:15
huggingface/transformers
62a8e1287c24e01581a03f0cf05a4c02322fbcb6
02063e683595e4a3e7f4e5be2fee17cab129e4bb
Fix PP test_ocr_queries (#45123) test_ocr_queries value fix
[ { "path": "tests/models/pp_chart2table/test_processing_pp_chart2table.py", "patch": "@@ -40,7 +40,7 @@ def test_ocr_queries(self):\n add_generation_prompt=True,\n )\n inputs = processor(images=image_input, text=inputs, return_tensors=\"pt\")\n- self.assertEqual(inputs[\"in...
2026-03-30T16:10:24
golang/go
01351209225d609f8012e2406550211137716727
2b737073587cb8f82d41fa96fdec9e56a5bac8ba
cmd/go: update c document Fixes: #11875 Change-Id: I0ea2c3e94d7d1647c2aaa3d488ac3c1f5fb6cb18 GitHub-Last-Rev: 7512b33f055aa225d365d6c949a53778834e8dcd GitHub-Pull-Request: golang/go#71966 Reviewed-on: https://go-review.googlesource.com/c/go/+/652675 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2255,7 +2255,9 @@\n // interfacing between languages. For information on SWIG see\n // https://swig.org/. When running go build, any file with a .swig\n // extension will be passed to SWIG. Any file with a .swigcxx extension\n-// will be passed to SWIG with t...
2025-02-27T00:43:12
facebook/react
52d542ad6d410008c495084f511247f43387055f
2c8a139a593e0294c3a6953d74b451bd05fdcfca
Enable enableUnifiedSyncLane (#27646) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, please make sure...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -151,7 +151,7 @@ export const enableUseRefAccessWarning = false;\n // Enables time slicing for updates that aren't wrapped in startTransition.\n export const forceConcurrentByDefaultForTesting = false;\n \n-export const enableUnifiedSyncLane = _...
2023-11-08T00:45:33
huggingface/transformers
02063e683595e4a3e7f4e5be2fee17cab129e4bb
2da00a3cec88fac160d481406e7961cf59472894
Fix TypeError in rope validation when ignore_keys is a list (#45069) `_check_received_keys` performs `received_keys -= ignore_keys` where `received_keys` is a `set`. When model configs are loaded from JSON (e.g. via huggingface_hub dataclass validation), sets get deserialized as lists since JSON has no set type, causi...
[ { "path": "src/transformers/modeling_rope_utils.py", "patch": "@@ -916,7 +916,7 @@ def _check_received_keys(\n \n # Some models need to store model-specific keys, and we don't want to throw warning at them\n if ignore_keys is not None:\n- received_keys -= ignore_keys\n+ ...
2026-03-30T11:26:37
vercel/next.js
6e1372ecc6eb535af28ff37888ab62c02df08cb5
b2f9fa455b0683571e06dad49424f3052d626125
fix: Add Chrome-ligthouse to htmlLimitedBots (#80656) Co-authored-by: Jiachi Liu <inbox@huozhi.im>
[ { "path": "packages/next/src/shared/lib/router/utils/html-bots.ts", "patch": "@@ -1,4 +1,4 @@\n // This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n // due to how they parse the DOM. For example, they might explicitly check for metadata in the `head...
2025-06-18T17:03:47
facebook/react
2c8a139a593e0294c3a6953d74b451bd05fdcfca
2983249dd2bb1a295f27939e36ab0de9e4bfab76
Generate sourcemaps for production build artifacts (#26446) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull req...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -11,6 +11,7 @@ const stripBanner = require('rollup-plugin-strip-banner');\n const chalk = require('chalk');\n const resolve = require('@rollup/plugin-node-resolve').nodeResolve;\n const fs = require('fs');\n+const path = require('path');\n const argv = requi...
2023-11-07T18:59:27
golang/go
f8f08bfd7c3894b4ea8481065ddd5609aa21d6a6
872496da2bbda59ef598e8c16f0ebfa41c98a462
math/big: improve scan test and benchmark Add a few more test cases for scanning (integer conversion), which were helpful in debugging some upcoming changes. BenchmarkScan currently times converting the value 10**N represented in base B back into []Word form. When B = 10, the text is 1 followed by many zeros, which c...
[ { "path": "src/math/big/intconv_test.go", "patch": "@@ -7,6 +7,7 @@ package big\n import (\n \t\"bytes\"\n \t\"fmt\"\n+\t\"math/rand/v2\"\n \t\"testing\"\n )\n \n@@ -389,12 +390,14 @@ func TestFormat(t *testing.T) {\n \t}\n }\n \n-var scanTests = []struct {\n+type scanTest struct {\n \tinput string\n \t...
2025-01-18T15:20:13
electron/electron
8f23b1527b1d1055d675d04e7b3ee669947ccbd4
8c837fda4f2d68d8568889cd68da801f833c862c
fix: use chrome headers in net.request for everything except cookie (#36666)
[ { "path": "lib/browser/api/net.ts", "patch": "@@ -56,31 +56,14 @@ class IncomingMessage extends Readable {\n \n get headers () {\n const filteredHeaders: Record<string, string | string[]> = {};\n- const { rawHeaders } = this._responseHead;\n- rawHeaders.forEach(header => {\n- const keyLower...
2022-12-21T22:53:29
vercel/next.js
b2f9fa455b0683571e06dad49424f3052d626125
f3d6af95255239b903826c10a587b4e747500571
Fix: Rules of Hooks violation in AppRouter (#80623) There's some sketchy logic in AppRouter that (intentionally) violates the rules of hooks by reading an externally mutable condition. The rationalization is that it's OK to do this if the result is to infinitely suspend the component. However, the mechanism used to i...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import React, {\n- use,\n useEffect,\n useMemo,\n startTransition,\n@@ -329,7 +328,10 @@ function Router({\n // TODO-APP: Should we listen to navigateerror here to catch failed\n // n...
2025-06-18T17:00:57
golang/go
2e71ae33ca3339cc2f7554ec6a8a39c5938f1001
c55c1cbd04ca42c70adadc86e1f48f3678be10cc
runtime/cgo: avoid errors from -Wdeclaration-after-statement CL 652181 accidentally missed this iPhone only code. For #71961 Change-Id: I567f8bb38958907442e69494da330d5199d11f54 Reviewed-on: https://go-review.googlesource.com/c/go/+/653135 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor...
[ { "path": "src/runtime/cgo/gcc_darwin_arm64.c", "patch": "@@ -76,19 +76,27 @@ threadentry(void *v)\n static void\n init_working_dir()\n {\n-\tCFBundleRef bundle = CFBundleGetMainBundle();\n+\tCFBundleRef bundle;\n+\tCFURLRef url_ref;\n+\tCFStringRef url_str_ref;\n+\tchar buf[MAXPATHLEN];\n+\tBoolean res;\n+...
2025-02-26T22:02:14
facebook/react
c897260cffb6a237d5ad707a6043f68ddf9ab014
ce2bc58a9f6f3b0bfc8c738a0d8e2a5f3a332ff5
refactor[react-devtools-shared]: minor parsing improvements and modifications (#27661) Had these stashed for some time, it includes: - Some refactoring to remove unnecessary `FlowFixMe`s and type castings via `any`. - Optimized version of parsing component names. We encode string names to utf8 and then pass it ser...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -439,7 +439,6 @@ export function getInternalReactConstants(version: string): {\n return 'Cache';\n case ClassComponent:\n case IncompleteClassComponent:\n- return getDisplayName(resolvedType);\n ...
2023-11-07T16:39:34
huggingface/transformers
2da00a3cec88fac160d481406e7961cf59472894
2dbee5af1c91acf55cf81ce68417875279ab0675
[Bugfix] Remove incorrect torchvision requirement from PIL backend image processors (#45045) * [Bugfix] Remove incorrect torchvision requirement from PIL backend image processors PR #45029 added @requires(backends=("vision", "torch", "torchvision")) to 67 PIL backend image_processing_pil_*.py files. This causes PIL b...
[ { "path": "src/transformers/image_processing_backends.py", "patch": "@@ -529,7 +529,7 @@ def resize(\n self,\n image: np.ndarray,\n size: SizeDict,\n- resample: Union[\"PILImageResampling\", \"tvF.InterpolationMode\", int] | None = None,\n+ resample: \"PILImageResamplin...
2026-03-30T07:25:49
electron/electron
8c837fda4f2d68d8568889cd68da801f833c862c
5fd7a43970c2bdfa1017a4b23098aec3dafbf513
docs: Fix incorrect highlight in an example snippet (#36700) Fix incorrect highlight in an example snippet At the moment, the "Communicating between processes" `main.js` snippet highlights the line containing `})` when the relevant line is `ipcMain.handle('ping', () => 'pong')`.
[ { "path": "docs/tutorial/tutorial-3-preload.md", "patch": "@@ -202,7 +202,7 @@ Then, set up your `handle` listener in the main process. We do this _before_\n loading the HTML file so that the handler is guaranteed to be ready before\n you send out the `invoke` call from the renderer.\n \n-```js {1,11} title...
2022-12-20T18:06:25
ollama/ollama
3980c0217d27e05a441808a446e7ee5ea7e04256
870599f5da26977bf5a8e04bd5221f12d5af9907
server: decompress zstd request bodies in cloud passthrough middleware (#14827) When a zstd-compressed request (e.g. from Codex CLI) hits /v1/responses with a cloud model the request failed. Fix by decompressing zstd bodies before model extraction, so cloud models are detected and proxied directly without the writer ...
[ { "path": "middleware/openai.go", "patch": "@@ -18,6 +18,9 @@ import (\n \t\"github.com/ollama/ollama/openai\"\n )\n \n+// maxDecompressedBodySize limits the size of a decompressed request body\n+const maxDecompressedBodySize = 20 << 20\n+\n type BaseWriter struct {\n \tgin.ResponseWriter\n }\n@@ -512,7 +51...
2026-03-13T22:06:47
golang/go
c55c1cbd04ca42c70adadc86e1f48f3678be10cc
9cceaf87361d0b797dd23ec7467d9adb62910fc9
net: return proper error from Context Sadly err was a named parameter so this did not cause compile error. Fixes #71974 Change-Id: I10cf29ae14c52d48a793c9a6cb01b01d79b1b356 GitHub-Last-Rev: 4dc0e6670a9265612b8ec26dbc378219b25156b4 GitHub-Pull-Request: golang/go#71976 Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/net/lookup_plan9.go", "patch": "@@ -65,7 +65,7 @@ func query(ctx context.Context, filename, query string, bufSize int) (addrs []st\n \tcase r := <-ch:\n \t\treturn r.addrs, r.err\n \tcase <-ctx.Done():\n-\t\treturn nil, mapErr(err)\n+\t\treturn nil, mapErr(ctx.Err())\n \t}\n }\n ", "addit...
2025-02-26T16:31:58
facebook/react
956c1ee7e22dfd401f3e9dfa3d38989c6c74d670
ab0f6985852219ec5e708b694f5da44e96c3c4c7
Repro for bug with incorrectly using context variables when name overlaps
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.repro-uninitialized-value-kind-with-function-expression-params.expect.md", "patch": "@@ -0,0 +1,24 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // This `x` uses a context variable:\n+ const...
2023-11-02T00:42:14
vercel/next.js
693619fddb64f684ba4167736d92087c3037e63a
bc6dd8f1fc43a95c9f2f843d023c48ce79bbc382
Docs: Update code snippets in linking and navigating guide (#80652) This PR updates code snippets in linking and navigating guide in docs. It also replaces wrong file name in one of the snippets.
[ { "path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx", "patch": "@@ -60,7 +60,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {\n }\n ```\n \n-```jsx filename=\"app/blog/page.js\" switcher\n+```jsx filename=\"app/layout.js\" switcher\n import Link from 'ne...
2025-06-18T11:42:42
huggingface/transformers
ecdf95c66c88e08f5e2aaadeb7a7c03739565aa8
12b6b57cac0397db0afda56f3ab0101729bc5f0f
fix: add identity reverse_op to dequantize ops for save_pretrained (#44983) fix: add identity reverse_op to dequantize operations for save_pretrained Dequantize operations (Mxfp4Dequantize, Fp8Dequantize, MetalDequantize) raise NotImplementedError on reverse_op, causing save_pretrained to fail for models loaded with ...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -101,6 +101,17 @@ def reverse_op(self) -> ConversionOps:\n raise NotImplementedError\n \n \n+class _IdentityOp(ConversionOps):\n+ \"\"\"Pass-through reverse op for dequantize operations.\n+\n+ Dequantized weights are already in t...
2026-03-27T17:09:03
electron/electron
9e7fbc7021d8d716c43782249a552e55289c35db
f72e6551f093e7f9f02531c6a69f390521463bf8
fix: blend node and blink code generation policy when both are loaded (#36567)
[ { "path": "patches/chromium/.patches", "patch": "@@ -123,4 +123,5 @@ build_only_use_the_mas_build_config_in_the_required_components.patch\n fix_tray_icon_gone_on_lock_screen.patch\n chore_introduce_blocking_api_for_electron.patch\n chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n+expose_v8ini...
2022-12-14T18:05:34
ollama/ollama
abf8e8e9c81c00270876c250ad886dfc4a20c8b2
f3f31a81924a7b3a1b3ad37a1294a22c8d1d192e
middleware: handle non-JSON error responses gracefully (#14828) writeError in both OpenAI and Anthropic middleware writers would return a raw json.SyntaxError when the error payload wasn't valid JSON (e.g. "invalid character 'e' looking for beginning of value"). Fall back to using the raw bytes as the error message in...
[ { "path": "middleware/anthropic.go", "patch": "@@ -34,12 +34,13 @@ func (w *AnthropicWriter) writeError(data []byte) (int, error) {\n \t\tError string `json:\"error\"`\n \t}\n \tif err := json.Unmarshal(data, &errData); err != nil {\n-\t\treturn 0, err\n+\t\t// If the error response isn't valid JSON, use th...
2026-03-13T21:50:49
golang/go
9cceaf87361d0b797dd23ec7467d9adb62910fc9
983e30bd3b78ca77a5028a94323c6da363358648
cmd/link: require cgo for -linkmode=external test For #71416 Fixes #71957 Change-Id: I2180dada34d9dd2d3f5b0aaf8525951fd2e86a27 Reviewed-on: https://go-review.googlesource.com/c/go/+/652277 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Quim Muntal <quimmuntal@gmail.com> LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/cmd/link/internal/ld/macho_test.go", "patch": "@@ -40,10 +40,11 @@ func TestMachoSectionsReadOnly(t *testing.T) {\n \t\t\twantSecsRO: []string{\"__nl_symbol_ptr\", \"__rodata\", \"__itablink\", \"__typelink\", \"__gosymtab\", \"__gopclntab\"},\n \t\t},\n \t\t{\n-\t\t\tname: \"link...
2025-02-26T05:44:25
vercel/next.js
bc6dd8f1fc43a95c9f2f843d023c48ce79bbc382
77c9bd8d16c4995b12568d9e7ffc5a528aa0b485
Respond with `404` for unknown server actions (#80613) When a server action is sent from an older deployment and skew protection is not enabled or implemented, we intended to return a `404` response. However, this behavior was never properly tested and was accidentally broken in #48626 when `actionAsyncStorage` was a...
[ { "path": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -50,7 +50,6 @@ import { RedirectStatusCode } from '../../client/components/redirect-status-code\n import { synchronizeMutableCookies } from '../async-storage/request-store'\n import type { TemporaryReferenceSet } from 'react-ser...
2025-06-18T09:23:02
facebook/react
127b5df7ca491bafe42f370374b7a4b1a7a688a6
6f2fe1e7e97a18992c9aefe86d9f2242535f65cb
[be] Group fbt fixtures in directory
[ { "path": "compiler/packages/sprout/src/SproutTodoFilter.ts", "patch": "@@ -82,7 +82,7 @@ const skipFilter = new Set([\n \"escape-analysis-not-switch-test\",\n \"expression-with-assignment-dynamic\",\n \"extend-scopes-if\",\n- \"fbt-params\",\n+ \"fbt/fbt-params\",\n \"for-empty-update-with-contin...
2023-11-10T19:21:07
huggingface/transformers
12b6b57cac0397db0afda56f3ab0101729bc5f0f
d65c2b138a3d27a3321f7bbced0efc9bfb5a9688
Fix when RoPE params are in kwargs (#45049) * fix * convert only if non-empty key
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -263,6 +263,12 @@ def __post_init__(self, **kwargs):\n # BC for rotary embeddings. We will pop out legacy keys from kwargs and rename to new format\n if hasattr(self, \"rope_parameters\"):\n kwargs = self.convert_r...
2026-03-27T16:15:27
ollama/ollama
f3f31a81924a7b3a1b3ad37a1294a22c8d1d192e
9e7ba835da03a99c7b471dfae4b35cd7ef797957
anthropic: close thinking block before tool_use when no text in between (#14825) Root cause: StreamConverter.Process() only incremented contentIndex when closing a thinking block if text content was present. When a model emitted thinking followed directly by a tool_use block (no text in between), thinkingDone was neve...
[ { "path": "anthropic/anthropic.go", "patch": "@@ -852,6 +852,19 @@ func (c *StreamConverter) Process(r api.ChatResponse) []StreamEvent {\n \t\t\tcontinue\n \t\t}\n \n+\t\t// Close thinking block if still open (thinking → tool_use without text in between)\n+\t\tif c.thinkingStarted && !c.thinkingDone {\n+\t\...
2026-03-13T20:12:05
electron/electron
f72e6551f093e7f9f02531c6a69f390521463bf8
ab890fb8c3883ca60af514546245bf6a000686f1
fix: use the process cache to reduce the memory for asar file (#36600) * fix: use the process cache to reduce the memory for asar file * Update shell/common/api/electron_api_asar.cc Co-authored-by: webster.xu <webster.xu@ringcentral.com> Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
[ { "path": "shell/common/api/electron_api_asar.cc", "patch": "@@ -39,7 +39,7 @@ class Archive : public node::ObjectWrap {\n Archive& operator=(const Archive&) = delete;\n \n protected:\n- explicit Archive(std::unique_ptr<asar::Archive> archive)\n+ explicit Archive(std::shared_ptr<asar::Archive> archive)...
2022-12-14T17:37:28
golang/go
ee0d03fab6e38dc3f8d10032e7c30c68ac7ec066
1421b982dca738daf47fe11aec9b56050798d739
sync: don't keep func alive after OnceFunc panics This moves the f = nil assignment to the defer statement, so that in case the functions panics, the f func is not referenced anymore. Change-Id: I3e53b90a10f21741e26602270822c8a75679f163 GitHub-Last-Rev: bda01100c6d48d1b0ca3e1baefef4d592cca1fee GitHub-Pull-Request: go...
[ { "path": "src/sync/oncefunc.go", "patch": "@@ -21,6 +21,7 @@ func OnceFunc(f func()) func() {\n \treturn func() {\n \t\td.once.Do(func() {\n \t\t\tdefer func() {\n+\t\t\t\td.f = nil // Do not keep f alive after invoking it.\n \t\t\t\td.p = recover()\n \t\t\t\tif !d.valid {\n \t\t\t\t\t// Re-panic immediate...
2025-02-25T20:07:12
vercel/next.js
77c9bd8d16c4995b12568d9e7ffc5a528aa0b485
36c4dd475d1a6857e379151915b5bba0f1def208
Avoid timeout error when transformed params are passed to `"use cache"` (#80463) With #79743, we're now providing a filled Resume Data Cache (RDC) when prerendering optional fallback shells for routes that have some params defined in `generateStaticParams`. This allows us to treat a cache miss in the RDC as an indica...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -194,7 +194,6 @@ import {\n trackPendingImport,\n trackPendingModules,\n } from './module-loading/track-module-loading.external'\n-import { isUseCacheTimeoutError } from '../use-cache/use-cache-errors'\n \n export type GetDynam...
2025-06-18T08:34:24
huggingface/transformers
d65c2b138a3d27a3321f7bbced0efc9bfb5a9688
ca6acc78492f93bdd588f178fdcc22cfe678497e
chore: update update_metdata.yml (#45054) fix(security): remediate workflow vulnerability in .github/workflows/update_metdata.yml Co-authored-by: hf-security-analysis[bot] <265538906+hf-security-analysis[bot]@users.noreply.github.com>
[ { "path": ".github/workflows/update_metdata.yml", "patch": "@@ -23,5 +23,7 @@ jobs:\n pip install .[torch]\n \n - name: Update metadata\n+ env:\n+ HF_TOKEN: ${{ secrets.LYSANDRE_HF_TOKEN }}\n run: |\n- python utils/update_metadata.py --token ${{ secrets.LYSAN...
2026-03-27T15:51:05
facebook/react
6f2fe1e7e97a18992c9aefe86d9f2242535f65cb
82ed13b8b421faf0c5b24c73442f3d5ed6a9e458
Fix FBT whitespace handling (again (again)) Nice find, @mofeiZ! I really tried to thoroughly test all the examples I could think of for FBT whitespace but i missed the newline case. Initially Mofei found [this code potentially related to whitespace handling](https://github.com/facebook/fbt/blob/main/packages/babel...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1902,10 +1902,6 @@ function lowerExpression(\n const expr = exprPath as NodePath<t.JSXElement>;\n const opening = expr.get(\"openingElement\");\n const tag = lowerJsxElementName(builder, opening.get(...
2023-11-10T18:21:10
ollama/ollama
bb867c6fdbc4739751f0fc6d8fd2ade20684041d
81f4506a61674ef3c30ed3eeeefa74c1dc8080ac
launch: fix headless --yes integration flow and policy scoping (#14815)
[ { "path": "cmd/launch/command_test.go", "patch": "@@ -160,6 +160,27 @@ func TestLaunchCmdTUICallback(t *testing.T) {\n \t\t}\n \t})\n \n+\tt.Run(\"--yes flag without integration returns error\", func(t *testing.T) {\n+\t\ttuiCalled := false\n+\t\tmockTUI := func(cmd *cobra.Command) {\n+\t\t\ttuiCalled = tru...
2026-03-13T18:45:36
electron/electron
ab890fb8c3883ca60af514546245bf6a000686f1
425f1ffa987434d87348868696658af7412fc2bb
fix: strip branded binaries (#36641) When creating branded release builds and using scripts/strip-binaries.py on Linux, the final artifacts end up unstripped due to the static set of binaries considered for stripping. With this patch the name of the electron binary is taken from the BRANDING.json `project_name` ke...
[ { "path": "script/add-debug-link.py", "patch": "@@ -4,11 +4,11 @@\n import os\n import sys\n \n-from lib.config import LINUX_BINARIES, PLATFORM\n-from lib.util import execute, get_out_dir\n+from lib.config import PLATFORM\n+from lib.util import execute, get_linux_binaries, get_out_dir\n \n def add_debug_lin...
2022-12-13T22:01:20
golang/go
1421b982dca738daf47fe11aec9b56050798d739
76c70282538bf4cccd6f98b5b26df7f5a7f2cebd
runtime: document that cleanups can run concurrently with each other Fixes #71825. Change-Id: I25af19eb72d75f13cf661fc47ee5717782785326 Reviewed-on: https://go-review.googlesource.com/c/go/+/650696 Reviewed-by: Carlos Amedee <carlos@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -30,8 +30,10 @@ import (\n // unreachable at the same time, their cleanups all become eligible to run\n // and can run in any order. This is true even if the objects form a cycle.\n //\n-// A single goroutine runs all cleanup calls for a program, sequentiall...
2025-02-19T17:28:45
vercel/next.js
e663cf5db4e5c9e3d73ab1925efe922b91ecd51c
0c454dbfff0b41d8be92e09929453fd9a4581061
Add test cases without `generateStaticParams` to `fallback-shells` suite (#80462) Copy&pasting some of the existing test cases for `with-cached-io/with-static-params/with-suspense` to `with-cached-io/without-static-params`. We expect the same results. We do not copy `with-cached-io/with-static-params/without-suspense...
[ { "path": "test/e2e/app-dir/fallback-shells/app/with-cached-io/with-static-params/layout.jsx", "patch": "@@ -9,6 +9,7 @@ export default async function Layout({ children }) {\n <div id=\"root-layout\">\n Root Layout: {new Date().toISOString()} ({getSentinelValue()})\n </div>\n+ ...
2025-06-18T06:38:24
huggingface/transformers
ca6acc78492f93bdd588f178fdcc22cfe678497e
b0bba2d832f3cfd94b339a407f2b3e5b90ce3499
[`FA`] Fix BC support for a few versions + add deprecation cycle (#45061) * fix * style * move to init as well
[ { "path": "src/transformers/utils/__init__.py", "patch": "@@ -134,6 +134,7 @@\n is_flash_attn_3_available,\n is_flash_attn_4_available,\n is_flash_attn_greater_or_equal,\n+ is_flash_attn_greater_or_equal_2_10,\n is_flute_available,\n is_fouroversix_available,\n is_fp_quant_availab...
2026-03-27T15:30:33
facebook/react
e35df45eaf0ffb79cb9b1c738bafc972f3aaeb9d
cdf39e79563d65b5376b846532fe455d347a779e
Test component name access in gated setup Jesse flagged this as a potential bug internally but this looks correct to me. Adding a test case so that we don't regress in the future.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/gating-access-function-name-in-component.expect.md", "patch": "@@ -0,0 +1,47 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+function Component() {\n+ const name = Component.name;\n+ return <div>{name}</div>;\n+}\n+\...
2023-11-09T10:30:54
ollama/ollama
a6b27d776b57a50b31028e591fc78de4e967a104
539741199e2db2485fd0f590f1ec35158a4ec663
ci: fix missing windows zip file (#14807) Use 7z compression (better compression rate) if found in path. That alone isn't sufficient to get us under 2G, so MLX is now split out as a discrete download. Fix CI so it will fail if artifacts fail to upload.
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -583,11 +583,19 @@ jobs:\n for payload in dist/*.txt dist/*.zip dist/*.tgz dist/*.tar.zst dist/*.exe dist/*.dmg dist/*.ps1 dist/*.sh ; do\n echo \"Uploading $payload\"\n gh release upload ${GITHUB_REF_NAME} $payload -...
2026-03-12T23:14:00
electron/electron
1432f9bb657489cabc33cd73ad4508e5782dc093
6a798b1c5846f43834eacf57b1651191318bf54e
chore: reland “fix ambiguous reference gcc compile error” (#36544) This is a reland of #35714. The broken code got reintroduced in #35310 due to a mismerge.
[ { "path": "shell/browser/serial/electron_serial_delegate.h", "patch": "@@ -45,9 +45,9 @@ class ElectronSerialDelegate : public content::SerialDelegate,\n device::mojom::SerialPortManager* GetPortManager(\n content::RenderFrameHost* frame) override;\n void AddObserver(content::RenderFrameHost* fram...
2022-12-13T18:55:08
huggingface/transformers
b0bba2d832f3cfd94b339a407f2b3e5b90ce3499
44686173b26bb174f3c7eb6e59f08a338d1adf54
fix(testing): Fix Parakeet, Evolla, Pi0, and Phi-3 test failures on main CI (#45004) * fix: Guard sdpa flash test and fix phi3/pi0 tests * fix: Narrow scope by adding it to the skip list * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/phi3/test_modeling_phi3.py", "patch": "@@ -139,11 +139,11 @@ def test_phi3_mini_4k_instruct_generation(self):\n ]\n inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors=\"pt\")\n \n- outputs = model.generate(inputs, max_ne...
2026-03-27T15:06:08
golang/go
76c70282538bf4cccd6f98b5b26df7f5a7f2cebd
194696f1d1f6e5609f96d0fb0192595e7e0f5b90
runtime/cgo: avoid errors from -Wdeclaration-after-statement It's used by the SWIG CI build, at least, and it's an easy fix. Fixes #71961 Change-Id: Id21071a5aef216b35ecf0e9cd3e05d08972d92fe Reviewed-on: https://go-review.googlesource.com/c/go/+/652181 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Micha...
[ { "path": "src/runtime/cgo/cgo.go", "patch": "@@ -25,7 +25,8 @@ package cgo\n \n // Use -fno-stack-protector to avoid problems locating the\n // proper support functions. See issues #52919, #54313, #58385.\n-#cgo CFLAGS: -Wall -Werror -fno-stack-protector\n+// Use -Wdeclaration-after-statement because some ...
2025-02-26T05:35:32
vercel/next.js
0c454dbfff0b41d8be92e09929453fd9a4581061
e1b9236983fd3e80cc6a43de3d30a7db67dc4b91
feat: rspack use swc to warn for edge runtime (#80485) Rspack's decision to avoid parser hooks, I propose discussing alternative approaches to implement code analysis in middleware plugins. A alternative code analysis approach. During the `finishModules` phase, implement a custom warnForEdgeRuntime method via N-API t...
[ { "path": "crates/napi/src/rspack.rs", "patch": "@@ -1,4 +1,4 @@\n-use std::{fs, path::PathBuf, sync::Arc};\n+use std::{cell::RefCell, fs, path::PathBuf, sync::Arc};\n \n use napi::bindgen_prelude::*;\n use swc_core::{\n@@ -7,18 +7,20 @@ use swc_core::{\n try_with_handler,\n },\n common::{\n...
2025-06-18T00:19:07
facebook/react
6c327b0f3ed7be5c39f36730b9b1e885ced4561c
59ddf537ed2b4672ce3ca3f330c360d05e5c9e9e
[repro] Repro for fbt preserve whitespace bug Current sprout output (if you remove the line in `SproutTodoFilter`): ``` Failures: FAIL: bug-fbt-preserve-whitespace Difference in forget and non-forget results. Expected result: { "kind": "ok", "value": "Before text hello world", "logs": [] } Found: ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-fbt-preserve-whitespace.expect.md", "patch": "@@ -0,0 +1,65 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from \"fbt\";\n+/**\n+ * TODO: remove this from SproutTodoFilter when fixed.\n+ */\n+\n+function Component({...
2023-11-09T23:55:06
ollama/ollama
539741199e2db2485fd0f590f1ec35158a4ec663
8f45236d09332949aa91774dc9eb46caf2abbbc1
mlx: perf improvements (#14768) * mlx: perf improvements Fix nn.go to call mlx_fast_layer_norm instead of manually implementing (mean, subtract, variance, rsqrt, multiply, add — 6 ops) Fix llama.go, gemma3.go to remove RepeatKV to tile K/V tensors to match the Q head count, since scaled_dot_product_attention nativel...
[ { "path": "x/imagegen/nn/nn_test.go", "patch": "@@ -303,7 +303,7 @@ func BenchmarkLinearSmall(b *testing.B) {\n \tmlx.Eval(x)\n \n \tb.ResetTimer()\n-\tfor i := 0; i < b.N; i++ {\n+\tfor range b.N {\n \t\tout := linear.Forward(x)\n \t\tmlx.Eval(out)\n \t}\n@@ -320,7 +320,7 @@ func BenchmarkLinearLarge(b *te...
2026-03-12T19:01:28
huggingface/transformers
ce4a791c5277840c4c1d74eed03431b674869da5
cc4ef19bb88ce7c49607a98fc8214b5c8bdb5342
Fix llama4 bnb mode (#44588) * check float before using normal op Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix llama4 weight Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * add bnb quant skip module for llama4 Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * revert bnb integration Signed-of...
[ { "path": "src/transformers/integrations/bitsandbytes.py", "patch": "@@ -181,7 +181,7 @@ def replace_with_bnb_linear(\n continue\n new_module = None\n with torch.device(\"meta\"):\n- if isinstance(module, (nn.Linear, Conv1D)):\n+ if isinstance(module, Conv1D...
2026-03-27T14:05:40
golang/go
194696f1d1f6e5609f96d0fb0192595e7e0f5b90
8b8bff7bb29210db868306cd07a03fb15e247b2f
reflect: let Value.Seq return the iteration value correct type Fixes #71905 Change-Id: I50a418f8552e071c6e5011af5b9accc7d41548d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/651855 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceac...
[ { "path": "src/reflect/iter.go", "patch": "@@ -4,15 +4,24 @@\n \n package reflect\n \n-import \"iter\"\n+import (\n+\t\"iter\"\n+)\n \n func rangeNum[T int8 | int16 | int32 | int64 | int |\n \tuint8 | uint16 | uint32 | uint64 | uint |\n-\tuintptr, N int64 | uint64](v N) iter.Seq[Value] {\n+\tuintptr, N int6...
2025-02-23T03:06:17
vercel/next.js
22ac035b3524b760d20c26660c622e0a9b7edb33
b82ada30b265ac29ce8f00834d38ea6f0b9747d5
Normalize filepaths when parsing patterns from js values (#80511) ## Normalize Windows file paths in pattern construction When interpreting js_values as `Pattern` objects for interpretation, normalize windows file endings away. Also enable debug_assertions in unit tests. ### Why? Enabling debug assertions on CI wil...
[ { "path": "Cargo.toml", "patch": "@@ -241,6 +241,12 @@ opt-level = 3\n [profile.release.package.serde]\n opt-level = 3\n \n+# Use a custom profile for CI where many tests are performance sensitive but we still want the additional validation of debug-assertions\n+[profile.release-with-assertions]\n+inherits ...
2025-06-17T23:00:08
facebook/react
59ddf537ed2b4672ce3ca3f330c360d05e5c9e9e
372696c541015163c77a131f02f77a4591e023a4
[tests][fixtures] Enable sprout on basic existing fbt tests --- Output: ``` $ yarn sprout:build && yarn sprout --verbose ... PASS fbt-call-complex-param-value ok <div>Hello, Sathya!</div> PASS fbt-call ok <div>2 items</div> PASS fbt-template-string-same-scope ok <div>{"children":"for 3 experien...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/fbt-call-complex-param-value.expect.md", "patch": "@@ -3,30 +3,37 @@\n \n ```javascript\n import fbt from \"fbt\";\n+import { identity } from \"shared-runtime\";\n \n function Component(props) {\n const text = fbt(\n- ...
2023-11-09T23:55:05
electron/electron
8acf6039e78725918af5797fad6fc4f7cf1e177c
2a26cef577dbf6cf3bf52959a86af311e2b56b96
chore: bump chromium to 110.0.5451.0 (main) (#36394) * chore: bump chromium in DEPS to 110.0.5425.0 * chore: bump chromium in DEPS to 110.0.5427.0 * chore: bump chromium in DEPS to 110.0.5429.0 * chore: bump chromium in DEPS to 110.0.5431.0 * chore: update patches/chromium/picture-in-picture.patch to fix u...
[ { "path": "BUILD.gn", "patch": "@@ -746,7 +746,7 @@ source_set(\"electron_lib\") {\n \"//components/update_client:update_client\",\n \"//components/zoom\",\n \"//extensions/browser\",\n- \"//extensions/browser:core_api_provider\",\n+ \"//extensions/browser/api:api_provider\",\n ...
2022-12-05T22:59:19
ollama/ollama
c222735c02a3fda18cdbd05ccae2d5dc1a290b42
87d21c7fc053da5b0b37898af89c932e404692ea
mlx: only log load errors when MLX is needed (#14764) This suppresses irrelevant/noisy errors in the GGML runner.
[ { "path": "x/mlxrunner/mlx/dynamic.go", "patch": "@@ -16,9 +16,14 @@ import (\n )\n \n var initError error\n+var initLoadError string\n \n // CheckInit returns any error that occurred during MLX dynamic library initialization.\n+// When initialization failed, detailed load errors are logged to help diagnose...
2026-03-11T17:31:31
golang/go
8b8bff7bb29210db868306cd07a03fb15e247b2f
4c75671871af56fa68076ee3741780e52726ec82
cmd/compile: don't pull constant offsets out of pointer arithmetic This could lead to manufacturing a pointer that points outside its original allocation. Bug was introduced in CL 629858. Fixes #71932 Change-Id: Ia86ab0b65ce5f80a8e0f4f4c81babd07c5904f8d Reviewed-on: https://go-review.googlesource.com/c/go/+/652078 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -1149,10 +1149,12 @@\n (SUB a l:(MNEGW x y)) && v.Type.Size() <= 4 && l.Uses==1 && clobber(l) => (MADDW a x y)\n \n // madd/msub can't take constant arguments, so do a bit of reordering if a non-constant is available.\n-(ADD a p:(ADDcon...
2025-02-24T21:07:29
huggingface/transformers
cc4ef19bb88ce7c49607a98fc8214b5c8bdb5342
9cd278715c5154597a44110d6e0c114a7e90d6f5
Fix failing `SmolLM3IntegrationTest` (#45048) Fix failing SmolLM3IntegrationTest
[ { "path": "tests/models/smollm3/test_modeling_smollm3.py", "patch": "@@ -100,14 +100,14 @@ def test_model_3b_logits(self):\n \n @slow\n def test_model_3b_generation(self):\n- EXPECTED_TEXT_COMPLETION = \"\"\"Gravity is the force that pulls objects toward the center of the Earth. It is a force...
2026-03-27T14:03:26
facebook/react
372696c541015163c77a131f02f77a4591e023a4
b25c14feb133ffad247cf5cb8358ecaebd75d962
[sprout] Add support for fbt Fbt + typescript [seems](https://github.com/facebook/fbt/issues/49) [to be](https://github.com/facebook/sfbt/issues/72) a non-blessed workflow. We do want to allow for both flow and typescript tests, so I followed some instructions [from a guide](https://dev.to/retyui/how-to-add-suppo...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/tsconfig.json", "patch": "@@ -16,7 +16,10 @@\n \"paths\": {\n // Editor integration for sprout shared runtime files\n \"shared-runtime\": [\"../../../../sprout/src/shared-runtime.ts\"]\n- }\n+ },\n+ \"verb...
2023-11-09T23:55:05
vercel/next.js
3e27abf43350cfcb10ba6839e7749dd80a628139
55261c9f968ede7fbeb49dece7dce1884d8df4f3
[devtools] fork next-logo (#80457) Following up on https://github.com/vercel/next.js/pull/80456, fork the next-logo as well as it is coupled with the indicator. Looking at the current [next-logo.tsx](https://github.com/vercel/next.js/blob/1d2c31d5907fb5d9c4ed0bfbf73b2430f27c48a7/packages/next/src/next-devtools/dev-ov...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.tsx", "patch": "@@ -2,9 +2,9 @@ import type { CSSProperties } from 'react'\n import type { OverlayState, OverlayDispatch } from '../../shared'\n import type { DevToolsScale } from '../errors/dev-tools-ind...
2025-06-17T16:35:04
electron/electron
993d0337a78bd361a3ce89364e811eb4a25c434f
b90a5baa6dc7f745bf8779dd79d51229a3f8593d
docs: fix broken links (#36519) * docs: fix broken links * docs: change link to navigator.getUserMedia Co-authored-by: Jeremy Rose <nornagon@nornagon.net> * docs: fix link in examples.md Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
[ { "path": "docs/api/app.md", "patch": "@@ -1509,7 +1509,6 @@ dock on macOS.\n \n A `boolean` property that returns `true` if the app is packaged, `false` otherwise. For many apps, this property can be used to distinguish development and production environments.\n \n-[dock-menu]:https://developer.apple.com/...
2022-12-05T18:18:57
ollama/ollama
87d21c7fc053da5b0b37898af89c932e404692ea
54e05172a03c79c9f59539a6c572d904a2f2cf66
MLX: harden for init failures (#14777) The CLI now links to the lazy-load MLX code, but that still happens in init functions. On internal MLX errors, the CLI exits before it has a chance to start. This change re-wires the MLX error handling so it doesn't exit by default. The MLX based runners currently expect exits...
[ { "path": "x/imagegen/cmd/engine/main.go", "patch": "@@ -79,6 +79,10 @@ func main() {\n \t\tlog.Fatalf(\"MLX initialization failed: %v\", mlx.GetMLXInitError())\n \t}\n \n+\t// Restore strict error handling now that we know MLX is working.\n+\t// During init(), a safe handler prevented exit(-1) on GPU error...
2026-03-11T05:52:23
golang/go
011da163f475b38ad70c9c652df6dc8dc2ba5168
1b1c6b838e678cbc9d93a78324fb5de873cd4487
cmd/compile/internal/test: fix noopt builder The function argument passed to hash function escaped to heap when optimization is disabled, causing the builder failed. To fix this, skip the test on noopt builder. Updates #71943 Fixes #71965 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-noopt Change-Id: I3a9ec...
[ { "path": "src/cmd/compile/internal/test/issue71943_test.go", "patch": "@@ -6,6 +6,7 @@ package test\n \n import (\n \t\"crypto/sha256\"\n+\t\"internal/testenv\"\n \t\"runtime\"\n \t\"testing\"\n )\n@@ -15,6 +16,7 @@ func Verify(token, salt string) [32]byte {\n }\n \n func TestIssue71943(t *testing.T) {\n+\...
2025-02-26T14:04:04
huggingface/transformers
9cd278715c5154597a44110d6e0c114a7e90d6f5
689f52ce6bb1dc83c19e24422dd90ec04636c8b5
fix tests/quantization/fp_quant_integration/test_fp_quant.py::FPQuant… (#44644) * fix tests/quantization/fp_quant_integration/test_fp_quant.py::FPQuantMXFP4PseudoquantTest::test_quantized_model fail in xpu Signed-off-by: Wang, Yi <yi.a.wang@intel.com> * updated Signed-off-by: Wang, Yi <yi.a.wang@intel.com> -------...
[ { "path": "src/transformers/integrations/fp_quant.py", "patch": "@@ -50,7 +50,8 @@ def convert(\n \n # Let pre-forward handle the quantization and set None where necessary\n # This operation will quantize the weights internally\n- with torch.cuda.device(value.device):\n+ torch_...
2026-03-27T13:56:47
vercel/next.js
55261c9f968ede7fbeb49dece7dce1884d8df4f3
ecd1abeb8dbdbed9798d27eea195e7a5f5ea1c34
[devtools] fork devtools-indicator (#80456) Unlike the menu popover (legacy), the panel UI can be decoupled from the indicator and communicate with the dispatcher. We don't need those refs, animation, etc. anymore, so removed them as well. Also, it feels good to move out of the `errors/` directory as it's no longer c...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.stories.tsx", "patch": "@@ -0,0 +1,69 @@\n+import type { Meta, StoryObj } from '@storybook/react'\n+import type { OverlayState } from '../../shared'\n+\n+import { DevToolsIndicator } from './devtools-indi...
2025-06-17T16:32:41
electron/electron
b90a5baa6dc7f745bf8779dd79d51229a3f8593d
909ee0ed6bbdf57ebaeda027b67a3a44185f6f7d
fix: new WebAssembly API support in Node.js (#36420)
[ { "path": "script/node-disabled-tests.json", "patch": "@@ -121,7 +121,6 @@\n \"parallel/test-trace-events-v8\",\n \"parallel/test-trace-events-vm\",\n \"parallel/test-trace-events-worker-metadata\",\n- \"parallel/test-wasm-web-api\",\n \"parallel/test-webcrypto-derivebits-cfrg\",\n \"parallel/tes...
2022-12-05T17:07:49
ollama/ollama
8c4d5d6c2f9aa849742333deb35e510e5e6fd665
bc72b140161d542c6ed0e30d4c812a1038537adc
cloud_proxy: send ollama client version (#14769) This was previously included in the user agent, and we've made use of it in the past to hotpatch bugs server-side for particular Ollama versions.
[ { "path": "server/cloud_proxy.go", "patch": "@@ -20,13 +20,15 @@ import (\n \t\"github.com/ollama/ollama/auth\"\n \t\"github.com/ollama/ollama/envconfig\"\n \tinternalcloud \"github.com/ollama/ollama/internal/cloud\"\n+\t\"github.com/ollama/ollama/version\"\n )\n \n const (\n-\tdefaultCloudProxyBaseURL ...
2026-03-10T22:53:25