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
electron/electron
c2cb97ea298412143e34027fac2c28fd031e169a
e8ae0571b88079b030228f8c8b67aabaa36af50a
fix: on-screen-keyboard hides on input blurred in webview (#35921) Co-authored-by: Kyrylo Hrechykhin <khrechykhin@microsoft.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -122,3 +122,4 @@ fix_return_v8_value_from_localframe_requestexecutescript.patch\n create_browser_v8_snapshot_file_name_fuse.patch\n feat_ensure_mas_builds_of_the_same_application_can_use_safestorage.patch\n cherry-pick-c83640db21b5.patch\n+fix_on-screen-ke...
2022-10-11T17:21:41
huggingface/transformers
a269c990e8571d9b9f8adfc1add9472eec3f252d
d4f88c206295338b545a602ac2c2ab26cad82faf
Bump kernels version dependency to avoid crashes (#44887) * bump * fix * add max version --------- Co-authored-by: vasqu <antonprogamer@gmail.com>
[ { "path": "setup.py", "patch": "@@ -91,7 +91,7 @@\n \"jinja2>=3.1.0\",\n \"jmespath>=1.0.1\",\n \"kenlm\",\n- \"kernels>=0.10.2,<0.11\",\n+ \"kernels>=0.12.0,<0.13\",\n \"librosa\",\n \"mistral-common[image]>=1.10.0\",\n \"nltk<=3.8.1\",", "additions": 1, "deletions": 1...
2026-03-20T18:49:41
ollama/ollama
465d124183e5a57cbd9a301b91c2bb633d353935
d310e56fa38568199a603b61f2fe46fe79e113bd
cmd: fix opencode config (#13894)
[ { "path": "cmd/config/opencode.go", "patch": "@@ -105,17 +105,26 @@ func (o *OpenCode) Edit(modelList []string) error {\n \n \tfor name, cfg := range models {\n \t\tif cfgMap, ok := cfg.(map[string]any); ok {\n-\t\t\tif displayName, ok := cfgMap[\"name\"].(string); ok {\n-\t\t\t\tif strings.HasSuffix(displa...
2026-01-25T02:42:56
facebook/react
9617d39eca1fbac58afe73a23580d781ea20211d
601e5c38505ebc0ee099d8666b2f7a8b03159ac4
[Fizz] Add proper assertion for stream fix (#27543) In https://github.com/facebook/react/pull/27541 I added tests to assert that the write after close bug was fixed. However the Node implementation has an abort behavior preventing reproduction of the original issue and the Browser build does not use AsyncLocalStora...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServerBrowser-test.js", "patch": "@@ -15,15 +15,13 @@ global.ReadableStream =\n global.TextEncoder = require('util').TextEncoder;\n \n let React;\n-let ReactDOM;\n let ReactDOMFizzServer;\n let Suspense;\n \n describe('ReactDOMFizzServerBrowser', () =>...
2023-10-18T19:01:09
golang/go
a8487dadeb6057418ee29b3ec8d2f1af0c91a42e
954e2c0b062d21f4914f04f0eb1aa7c5197ee92c
cmd/go: use runtime.AddCleanup instead of runtime.SetFinalizer Replace the usage of runtime.SetFinalizer with runtime.AddCleanup. This changes a test and how when the Go command panics when a file is left locked. Updates #70907 Change-Id: I8d8c56d16486728f9bd4b910b81796ae506bda74 Reviewed-on: https://go-review.googl...
[ { "path": "src/cmd/go/internal/base/limit.go", "patch": "@@ -52,7 +52,7 @@ func AcquireNet() (release func(), err error) {\n \t}\n \n \tchecker := new(netTokenChecker)\n-\truntime.SetFinalizer(checker, (*netTokenChecker).panicUnreleased)\n+\tcleanup := runtime.AddCleanup(checker, func(_ int) { panic(\"inter...
2025-01-06T18:15:51
electron/electron
b3fd5eb2585aabb9182d6941c6da3f688fa3f5bb
9006f0e0c5a8cd529dabc0de822e9098e574c799
fix: drag and drop should copy on macOS (#35963)
[ { "path": "shell/browser/ui/drag_util_mac.mm", "patch": "@@ -20,7 +20,8 @@ @implementation DragDownloadItemSource\n \n - (NSDragOperation)draggingSession:(NSDraggingSession*)session\n sourceOperationMaskForDraggingContext:(NSDraggingContext)context {\n- return NSDragOperationEvery;\n+ return context =...
2022-10-11T16:19:59
huggingface/transformers
d4f88c206295338b545a602ac2c2ab26cad82faf
e87125508b9dad4a52894b131a53d4e93f4507ae
[Model] Add SLANeXt Model Support (#43707) * add SLANeXt models * refine codes * refine codes * refine models * refine codes * refine codes * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * lets commit this first * img processor and tests * more fixup * fix in...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1314,6 +1314,8 @@\n title: SigLIP\n - local: model_doc/siglip2\n title: SigLIP2\n+ - local: model_doc/slanext\n+ title: SLANeXt\n - local: model_doc/smollm3\n title: SmolLM3\n - local: model_doc/smol...
2026-03-20T17:11:02
ollama/ollama
a1ca428c90e6a0d8e5a94be7806f3319ab2cc680
16750865d11ecce48d45bb152c2793753b8781e6
glm4moelite: fix attention scale calculation (#13893) Use the original key dimension (qkNopeHeadDim + qkRopeHeadDim = 256) for the attention scale instead of the MLA absorbed dimension (kvLoraRank + qkRopeHeadDim = 576). MLA absorption is a mathematically equivalent reorganization of the attention computation - it sh...
[ { "path": "model/models/glm4moelite/model.go", "patch": "@@ -223,12 +223,7 @@ func New(c fs.Config) (model.Model, error) {\n \n \tkeyLength := int(c.Uint(\"attention.key_length\"))\n \tvalueLength := int(c.Uint(\"attention.value_length\"))\n-\tkvLoraRank := int(c.Uint(\"attention.kv_lora_rank\"))\n-\tqkRope...
2026-01-25T01:48:09
facebook/react
601e5c38505ebc0ee099d8666b2f7a8b03159ac4
20c91b65341fd404185fc778c6844ac29ab815d5
[Fizz][Float] Do not write after closing the stream (#27541) Float methods can hang on to a reference to a Request after the request is closed due to AsyncLocalStorage. If a Float method is called at this point we do not want to attempt to flush anything. This change updates the closing logic to also call `stopFlow...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -3650,6 +3650,46 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // https://github.com/facebook/react/issues/27540\n+ // This test is not actually asserting much because there is possibly a bug in the cl...
2023-10-18T17:05:18
electron/electron
7493062555b9eb4e6cc47d628a4831c121192f1f
e02de74ff26465104d899761ad4bc869c8341186
test: add tests for valid electron module names (#35931) * test: add tests for valid electron module names https://github.com/electron/electron/pull/35915 landed without any tests, so this change adds some. This also documents why these variations exist. Signed-off-by: Darshan Sen <raisinten@gmail.com> * fi...
[ { "path": "lib/common/reset-search-paths.ts", "patch": "@@ -52,6 +52,13 @@ if (process.type === 'renderer') {\n }\n \n const originalResolveFilename = Module._resolveFilename;\n+\n+// 'electron/main', 'electron/renderer' and 'electron/common' are module aliases\n+// of the 'electron' module for TypeScript p...
2022-10-11T06:59:23
golang/go
baeab452d1a00c139a5096b796d7b1780ad80f1d
371ee1469cf30ecdbc8d1b55cf307a310ff3d630
testing: panic in AllocsPerRun if parallel tests are running If other tests are running, AllocsPerRun's result will be inherently flaky. Saw this with CL 630136 and #70327. Proposed in #70464. Fixes #70464. Change-Id: I190afdf26bc31299f6e5e8665b4fb420ffd554ee Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "src/testing/allocs.go", "patch": "@@ -18,6 +18,9 @@ import (\n // AllocsPerRun sets GOMAXPROCS to 1 during its measurement and will restore\n // it before returning.\n func AllocsPerRun(runs int, f func()) (avg float64) {\n+\tif parallelStart.Load() != parallelStop.Load() {\n+\t\tpanic(\"testing:...
2024-11-20T16:01:27
vercel/next.js
352b80d70225180229a19037910714718e544d5b
6794df96dfcec256748d9a477dfb751d0aba1f5d
[turbopack] Replace uses of `Value<Pattern>` with just `Pattern` (#80134) Replace uses of `Value<Pattern>` in the resolve crate with `Pattern` This required a manual implementation of `TaskInput` which ended up being trivial since there are no captured `Vcs`. However, the `derive` macro failed because it is a recurs...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -39,7 +39,7 @@ use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- Completion, FxIndexSet, NonLocalValue, ResolvedVc, TryJoinIterExt, Value, ValueToString, Vc,\n+ Completion, FxI...
2025-06-06T14:04:11
huggingface/transformers
e87125508b9dad4a52894b131a53d4e93f4507ae
20a233bdc5c0fae8fa116184f105adf498d44ba2
Fix core dumped when `NemotronH` is torch compiled (#44854) * fix * fix * fix * Update src/transformers/models/nemotron_h/modular_nemotron_h.py Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co> * correct fix * much better fix * type hint --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github...
[ { "path": "src/transformers/models/nemotron_h/modeling_nemotron_h.py", "patch": "@@ -20,7 +20,6 @@\n # limitations under the License.\n \n \n-import contextlib\n import math\n from collections.abc import Callable\n from typing import Any\n@@ -222,6 +221,9 @@ def segment_sum(input_tensor):\n return tenso...
2026-03-20T14:29:13
ollama/ollama
0209c268bbc82f9001c8a35bcd7b7f4cf20a2263
912d98434664b8a49ba6d0ffc42b0d0e5b435546
llama: fix CUDA MMA errors in release build (#13874)
[ { "path": "llama/patches/0032-ggml-enable-MLA-flash-attention-for-GLM-4.7-flash.patch", "patch": "@@ -17,21 +17,22 @@ CUDA changes:\n - Add tile configs for (576, 512, 4) and (576, 512, 8)\n - Add MMA config cases for ncols 4\n - Add template instances for ncols2=4\n+- Fix nbatch_fa values in nvidia_fp32 co...
2026-01-24T04:10:04
facebook/react
20c91b65341fd404185fc778c6844ac29ab815d5
e3748a0bde80dd1f097fd8000702aba9fca454ef
React DevTools 4.28.4 -> 4.28.5 (#27538) Changes: * fix[devtools/useMemoCache]: add stub for useMemoCache in ReactDebugHook ([hoxyq](https://github.com/hoxyq) in [#27472](https://github.com/facebook/react/pull/27472)) * useDeferredValue should skip initialValue if it suspends ([acdlite](https://github.com/acdlite...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.4\",\n+ \"version\": \"4.28.5\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-10-18T13:08:23
electron/electron
ebb866e63d90fc44168f2b9c97ea2378d4c17831
ef00a2a1dade1e76be39d77e236d2926ddcc9a80
fix: override `content::ContentMainDelegate::CreateContentClient()` (#35932)
[ { "path": "shell/app/electron_main_delegate.cc", "patch": "@@ -317,9 +317,6 @@ absl::optional<int> ElectronMainDelegate::BasicStartupComplete() {\n ::switches::kDisableGpuMemoryBufferCompositorResources);\n #endif\n \n- content_client_ = std::make_unique<ElectronContentClient>();\n- SetContentClient...
2022-10-10T14:48:44
vercel/next.js
b89463ac2ff9738515bda8e66a441f35eb095d5a
c2621a14eff1044f3840409dfdef39cf58dea79e
Prerender with streaming metadata during revalidation (#80245) During the export phase of `next build` we're hard-coding `serveStreamingMetadata` to `true`, so we need to do the same during revalidation. Otherwise we're checking the user agent to decide if we should serve streaming metadata. This fixes a hydration e...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -233,16 +233,6 @@ export async function handler(\n const botType = getBotType(userAgent)\n const isHtmlBot = isHtmlBotRequest(req)\n const shouldWaitOnAllReady = isHtmlBot && isRoutePPREnabled\n- let serveStreamingMetadata = shou...
2025-06-06T13:30:52
ollama/ollama
912d98434664b8a49ba6d0ffc42b0d0e5b435546
aae6ecbaffb1909018f3d9e289166c50a2eaffc5
llama: fix fattn-tile shared memory overflow on sm_50/52 (#13872) Use nthreads=128 for ncols=4 configurations in flash attention tile kernel to reduce shared memory usage below 48KB limit on Maxwell architectures (sm_50/52). With nthreads=256 and ncols=4, np=2 which caused shared memory to exceed 48KB. With nthreads=...
[ { "path": "llama/patches/0032-ggml-enable-MLA-flash-attention-for-GLM-4.7-flash.patch", "patch": "@@ -17,7 +17,6 @@ CUDA changes:\n - Add tile configs for (576, 512, 4) and (576, 512, 8)\n - Add MMA config cases for ncols 4\n - Add template instances for ncols2=4\n-- Fix nbatch_fa values in nvidia_fp32 conf...
2026-01-24T03:22:32
facebook/react
a4195750779dbd9a13e1615fbbd493bf2c5768ca
75c1bd7ee7e4a87a4dd0f560e157c57957ef823b
fix[devtools/useMemoCache]: add stub for useMemoCache in ReactDebugHook (#27472) Currently, we have this error in our logs of the internal version of React DevTools: ``` TypeError: Cannot read properties of undefined (reading 'memoCache') at Proxy.useMemoCache (chrome-extension://dnjnjgbfilfphmojnmhliehogmojhc...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -48,19 +48,9 @@ type Dispatch<A> = A => void;\n \n let primitiveStackCache: null | Map<string, Array<any>> = null;\n \n-type MemoCache = {\n- data: Array<Array<any>>,\n- index: number,\n-};\n-\n-type FunctionComponentUpdateQueue =...
2023-10-17T17:39:10
huggingface/transformers
20a233bdc5c0fae8fa116184f105adf498d44ba2
81128509a539bd6146c7b1baccecf090d71b5350
Fix several based models' pipeline parallel support (#44699) * Fix Qwen2-VL based models' pipeline parallel support Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * Fix other models too Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * Fix docs modular Signed-off-b...
[ { "path": "src/transformers/models/afmoe/modeling_afmoe.py", "patch": "@@ -423,7 +423,6 @@ def __init__(self, config: AfmoeConfig, layer_idx: int):\n self.layer_idx = layer_idx\n \n self.self_attn = AfmoeAttention(config=config, layer_idx=layer_idx)\n- self.attention_type = config.lay...
2026-03-20T13:43:07
golang/go
89c2f282dc84a9b3842dca375a4635305c86ad9b
43b7e670401401b2e7536b4931df8b29a25994c7
cmd/compile: move []byte->string map key optimization to ssa If we call slicebytetostring immediately (with no intervening writes) before calling map access or delete functions with the resulting string as the key, then we can just use the ptr/len of the slicebytetostring argument as the key. This avoids an allocation...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2795,3 +2795,22 @@\n \t&& isDirectIface(itab)\n \t&& clobber(v)\n \t=> (MakeResult (EqPtr x y) mem)\n+\n+// If we use the result of slicebytetostring in a map lookup operation,\n+// then we don't need to actually do the []byte->strin...
2025-01-06T23:28:22
electron/electron
1fe21ff712a336ead8564b0d2f6a2b91238d7e7c
a072f06168711bd0abc289ca3df0bd139c4f7fed
fix: expose the built-in electron module via the ESM loader (#35930)
[ { "path": "patches/node/.patches", "patch": "@@ -51,3 +51,4 @@ fixup_for_error_declaration_shadows_a_local_variable.patch\n fixup_for_wc_98-compat-extra-semi.patch\n drop_deserializerequest_move_constructor_for_c_20_compat.patch\n fix_parallel_test-v8-stats.patch\n+fix_expose_the_built-in_electron_module_vi...
2022-10-10T10:02:30
vercel/next.js
4272eb0aedc9ce2e6b744bf3e682332ca3824a26
ae96d7bee6811a0bc1aa074f278a506fa6b1a4fd
Turbopack: fix export collection (#80203) This was slightly broken, as I noticed while debugging scope hoisting
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs", "patch": "@@ -3,7 +3,7 @@ use std::{collections::BTreeMap, fmt::Display};\n use once_cell::sync::Lazy;\n use rustc_hash::{FxHashMap, FxHashSet};\n use swc_core::{\n- common::{BytePos, Span, Spanned, comments::Comments, source_map:...
2025-06-06T07:53:25
facebook/react
9abf6fa31cd7ff4c6e54de75950620e203c59ebf
67cc9ba8789335b9da0838a446137c1be62adbcd
feat[react-devtools-extensions/logging]: initialize session id on the client for logging (#27517) This code is executed once React DevTools panels are mounted, basically when user opens browser's DevTools. Based on this fact, session in this case is defined by browser's DevTools session, while they are open. A sess...
[ { "path": "packages/react-devtools-shared/src/registerDevToolsEventLogger.js", "patch": "@@ -12,7 +12,8 @@ import type {LoggerEvent} from 'react-devtools-shared/src/Logger';\n import {registerEventLogger} from 'react-devtools-shared/src/Logger';\n import {enableLogger} from 'react-devtools-feature-flags';\n...
2023-10-17T14:23:53
ollama/ollama
64737330a4684a052a67a208bc97cdbf21c54011
2eda97f1c336a2db2cbe7556fbc96b965705240e
Re-apply "model: add MLA absorption for glm4moelite" with fix (#13870) The nvidia_fp32 config for (576, 512) head sizes had nbatch_fa=32, which caused zero-sized arrays when computing array dimensions: nbatch_fa / (np * warp_size) = 32 / (2 * 32) = 0 This resulted in CUDA compilation failures on CUDA 12 (Windows an...
[ { "path": "convert/convert_glm4moelite.go", "patch": "@@ -6,6 +6,10 @@ import (\n \t\"log/slog\"\n \t\"regexp\"\n \t\"strconv\"\n+\t\"strings\"\n+\n+\t\"github.com/pdevine/tensor\"\n+\t\"github.com/pdevine/tensor/native\"\n \n \t\"github.com/ollama/ollama/fs/ggml\"\n )\n@@ -69,6 +73,9 @@ func (p *glm4MoeLit...
2026-01-24T02:40:28
huggingface/transformers
81128509a539bd6146c7b1baccecf090d71b5350
82db888e29753c891a246933b60518191d83d835
fix(testing): Fix PaliGemma 2 and PaddleOCR-VL test failures on main (#44765) * fix: Fix PaliGemma 2 and PaddleOCR-VL test failures on main * nit: Fix ci/circleci: check_code_quality
[ { "path": "tests/models/paddleocr_vl/test_modeling_paddleocr_vl.py", "patch": "@@ -184,6 +184,24 @@ def setUp(self):\n def test_config(self):\n self.config_tester.run_common_tests()\n \n+ @unittest.skip(\n+ reason=\"embed_tokens is ~80% of test model size, exceeding the 70% GPU budget ...
2026-03-20T13:33:51
golang/go
43b7e670401401b2e7536b4931df8b29a25994c7
eab8e987c067ca91ad4ed79b384d8a33494bbf39
cmd/compile: lower x*z + y to FMA if FMA enabled There is a generic opcode for FMA, but we don't use it in rewrite rules. This is maybe because some archs, like WASM and MIPS don't have a late lowering rule for it. Fixes #71204 Intel Alder Lake 12600k (GOAMD64=v3): math: name old time/op new ti...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -202,7 +202,7 @@ func getgFromTLS(s *ssagen.State, r int16) {\n \n func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \tswitch v.Op {\n-\tcase ssa.OpAMD64VFMADD231SD:\n+\tcase ssa.OpAMD64VFMADD231SD, ssa.OpAMD64VFMADD231SS:\n \t\tp := s.Prog(v...
2025-02-02T22:42:43
electron/electron
8bfbb251cc76a722cd9a1c298ca4e2d15f47cd33
3f4c4a4470d7eb089f53f947bd40f3eac4cc6c3f
fix: add missing #include "base/cxx17_backports.h" (#35945)
[ { "path": "shell/browser/ui/autofill_popup.cc", "patch": "@@ -6,6 +6,7 @@\n #include <memory>\n #include <vector>\n \n+#include \"base/cxx17_backports.h\"\n #include \"base/feature_list.h\"\n #include \"base/i18n/rtl.h\"\n #include \"components/autofill/core/common/autofill_features.h\"", "additions": 1...
2022-10-10T10:00:56
vercel/next.js
ae96d7bee6811a0bc1aa074f278a506fa6b1a4fd
f75598fe43e20c4778aff3ee264fc22d133d59c5
[turbopack] Remove Value::new wrapper for ServerContextType parameters (#80133) Remove Value::new wrapper for ServerContextType parameters ### Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as true and is_transient a...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -237,7 +237,7 @@ impl AppProject {\n Ok(get_server_module_options_context(\n self.project().project_path(),\n self.project().execution_context(),\n- Value::new(self.rsc_ty().owned().await?),\n+ self.rs...
2025-06-06T00:44:15
golang/go
a7e331e67105f1a8cc0236b7f3b1e6a3570dda27
ca4649747a0057ea59c34c4126ab3eed6086dd88
cmd/compile: implement signed loads from read-only memory In addition to unsigned loads which already exist. This helps code that does switches on strings to constant-fold the switch away when the string being switched on is constant. Fixes #71699 Change-Id: If3051af0f7255d2a573da6f96b153a987a7f159d Reviewed-on: ht...
[ { "path": "src/cmd/compile/internal/ssa/_gen/386.rules", "patch": "@@ -940,3 +940,5 @@\n (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])\n (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder))])\n ...
2025-02-13T16:04:03
facebook/react
84da8994bd55f4a908fe0ca8446d1bb4d09adee2
4fc392e6280fcf0459cc950ee750e109f3701766
Test cases for reactive (control) dependencies Adds test cases for all the cases of control dependencies that I can think of. We don't currently handle control dependencies correctly in any of these cases. There's also another test case which demonstrates why reactive dependency inference needs to be fixpoint, ev...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug.reactive-control-dependency-do-while-test.expect.md", "patch": "@@ -0,0 +1,64 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ let x;\n+ let i = 0;\n+ do {\n+ if (i > 10) {\n+ x = 10;\n+...
2023-10-17T08:48:23
huggingface/transformers
82db888e29753c891a246933b60518191d83d835
7cd9b985e0698d4f625a18be0125231b6b930390
Fix dtype guessing from state dict (#44883) * fix * style * preshot fp4 as well
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -259,7 +259,8 @@ def get_state_dict_dtype(state_dict):\n Returns the first found floating dtype in `state_dict` if there is one, otherwise returns the first dtype.\n \"\"\"\n for t in state_dict.values():\n- if t.is_floating_poi...
2026-03-20T13:12:31
ollama/ollama
66831dcf701913b2ebc2d659e3624131944bf86d
1044b0419a5e9f2508e3268ce3af8d83292d62fb
x/imagegen: fix image editing support (#13866) - Fix panic in ollama show for image gen models (safe type assertion) - Add vision capability for Flux2KleinPipeline models at create time - Flatten transparent PNG images onto white background for better results
[ { "path": "cmd/cmd.go", "patch": "@@ -1019,8 +1019,10 @@ func showInfo(resp *api.ShowResponse, verbose bool, w io.Writer) error {\n \t\t}\n \n \t\tif resp.ModelInfo != nil {\n-\t\t\tarch := resp.ModelInfo[\"general.architecture\"].(string)\n-\t\t\trows = append(rows, []string{\"\", \"architecture\", arch})\...
2026-01-23T23:37:17
electron/electron
e31c96a5647a497e966582479167d57fb8a9ea0c
faafcc7f873f535a3637e54635f262f237071059
fix: only override valid electron module names (#35915) Fixes #33014
[ { "path": "lib/common/reset-search-paths.ts", "patch": "@@ -52,8 +52,9 @@ if (process.type === 'renderer') {\n }\n \n const originalResolveFilename = Module._resolveFilename;\n+const electronModuleNames = new Set(['electron', 'electron/main', 'electron/renderer', 'electron/common']);\n Module._resolveFilena...
2022-10-06T10:14:03
vercel/next.js
cc6163aa266dd1a0bea7f6abc733247144d22fa7
222f7f5b1e42e6107c39895e639e04d53d49da8d
[turbopack] Remove Value::new wrapper for Availabilityinfo parameters (#80132) Remove Value::new wrapper for Availabilityinfo parameters ### Why? The Value<> type is confusing and error prone, lets destroy it! As discussed over slack, turbo_tasks::Value type always implements is_resolved as true and is_transient as ...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1256,7 +1256,7 @@ impl AppEndpoint {\n *client_references,\n *module_graphs.full,\n *client_chunking_context,\n- Value::new(client_shared_availability_info),\n+ client_shared_availability_info,\n ...
2025-06-05T22:49:33
facebook/react
640994f49b5cfb09eb65632b155570ba1c90878f
f5d1ff0a3c84b004bc8f7dd04d9e490b5b85b160
[playground] Only log error to console when clicked
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -16,7 +16,7 @@ import MonacoEditor, { DiffEditor } from \"@monaco-editor/react\";\n import { type CompilerError } from \"babel-plugin-react-forget\";\n import prettier from \"prettier\";\n import prettierParserBabel from \"prett...
2023-10-16T14:54:33
golang/go
ca4649747a0057ea59c34c4126ab3eed6086dd88
769274bf14f318f186ae1f89fd0fccb18241aaee
runtime: fix usleep on s390x/linux The timespec argument takes the remainder in nanoseconds, not microseconds. Convert the remaining time to nsec. Fixes #71714 Change-Id: I36cbbe3a088830c5e3afcc9516ef42e96ee21268 Reviewed-on: https://go-review.googlesource.com/c/go/+/648915 TryBot-Result: Gopher Robot <gobot@golang....
[ { "path": "src/runtime/sys_linux_s390x.s", "patch": "@@ -112,9 +112,10 @@ TEXT runtime·usleep(SB),NOSPLIT,$16-4\n \tMOVW\t$1000000, R3\n \tDIVD\tR3, R2\n \tMOVD\tR2, 8(R15)\n-\tMOVW\t$1000, R3\n-\tMULLD\tR2, R3\n+\tMULLD\tR2, R3\t\t// Convert sec to usec and subtract\n \tSUB\tR3, R4\n+\tMOVW\t$1000, R3\n+\t...
2025-02-12T14:45:34
ollama/ollama
771d9280ec36ab72b8465aa405d71772e3f1721b
862bc0a3bf1612d69e4799e3b66fc77addb3bc16
cmd: ollama config fix droid model name configuration (#13856)
[ { "path": "cmd/config/droid.go", "patch": "@@ -7,14 +7,23 @@ import (\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"slices\"\n-\t\"strings\"\n )\n \n // Droid implements Runner and Editor for Droid integration\n type Droid struct{}\n \n-// droidModelEntry represents a custom model entry in Droid's settings.js...
2026-01-23T19:44:22
huggingface/transformers
b7164eca8675e5223cf73fb430a6aaf6ceafc9cc
1229e90d46532f334f3c679006bee34ed502c123
Fix VL model rope_deltas batch size mismatch in online RL training (#44873) * Fix Qwen3.5 rope_deltas persistence causing crash in online RL training * Extend * Extend
[ { "path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py", "patch": "@@ -1383,8 +1383,11 @@ def compute_3d_position_ids(\n mm_token_type_ids=mm_token_type_ids,\n )\n self.rope_deltas = rope_deltas\n- # Use pre-calculated rope-deltas to inf...
2026-03-20T11:51:22
electron/electron
a6b6816beca9433a21e76c5dcd877de8bbf02598
f916ce2c494cfc8ec15b9df4d188611999e662c0
build: clean up patch linting errors (#35917)
[ { "path": "script/lint.js", "patch": "@@ -181,41 +181,56 @@ const LINTERS = [{\n const patchesConfig = path.resolve(patchesDir, 'config.json');\n // If the config does not exist, that's a problem\n if (!fs.existsSync(patchesConfig)) {\n+ console.error(`Patches config file: \"${patchesConfig...
2022-10-05T17:34:53
vercel/next.js
222f7f5b1e42e6107c39895e639e04d53d49da8d
0d2e80554afca371c5c74c74bac6066c0e108331
[test] fix flaky test of basepath navigation (#80213)
[ { "path": "test/e2e/app-dir/app-basepath/index.test.ts", "patch": "@@ -12,7 +12,12 @@ describe('app dir - basepath', () => {\n \n it('should successfully hard navigate from pages -> app', async () => {\n const browser = await next.browser('/base/pages-path')\n- await browser.elementByCss('#to-anoth...
2025-06-05T21:02:20
facebook/react
67cc9ba8789335b9da0838a446137c1be62adbcd
18a9dd1c60fdb711982f32ce5d91acfe8f158fe1
Fix: error messages (#27523) <!-- 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 the foll...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMAttribute-test.js", "patch": "@@ -106,7 +106,7 @@ describe('ReactDOM unknown attribute', () => {\n expect(test).toThrowError(new TypeError('prod message')),\n ).toErrorDev(\n 'Warning: The provided `unknown` attribute is an unsupporte...
2023-10-16T14:05:42
golang/go
769274bf14f318f186ae1f89fd0fccb18241aaee
aa8d4df9d9b8659abc7bdc1485c11db515ed1479
cmd/go: do not apply kill timeout to go test with -bench The testing package already does this. go test should do the same thing. Fixes: #69181 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest,gotip-windows-amd64-longtest Change-Id: I942bd09c5832b48d498a2eb1f1500e1d294d0a2c Reviewed-on: https://go-revie...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -802,9 +802,9 @@ func runTest(ctx context.Context, cmd *base.Command, args []string) {\n \t// to that timeout plus one minute. This is a backup alarm in case\n \t// the test wedges with a goroutine spinning and its background\n \t// timer does not g...
2025-02-10T21:06:02
huggingface/transformers
1229e90d46532f334f3c679006bee34ed502c123
cef283004847f44c2c07e48670ba524b7cb2ac24
Fix `layer_types` type hint for `AFMoE` and `Llama4` (#44874) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/models/afmoe/configuration_afmoe.py", "patch": "@@ -87,7 +87,7 @@ class AfmoeConfig(PreTrainedConfig):\n output_router_logits: bool = False\n global_attn_every_n_layers: int | None = 4\n sliding_window: int | None = 1024\n- layer_types: list | None = None\n+ lay...
2026-03-20T11:50:31
electron/electron
ff0517be3e00b7a1a80fb56bd97d12c26d620f7f
d8e037e42670e74775d13128c8add3db40d72914
docs: update bluetooth fiddle example event name to trigger correct event (#35894) * Fix event type spelling for bluetooth fiddle example * docs: Fix event type spelling for bluetooth documentation fiddle example
[ { "path": "docs/fiddles/features/web-bluetooth/preload.js", "patch": "@@ -2,5 +2,5 @@ const { contextBridge, ipcRenderer } = require('electron')\n \n contextBridge.exposeInMainWorld('electronAPI', {\n bluetoothPairingRequest: (callback) => ipcRenderer.on('bluetooth-pairing-request', callback),\n- bluetoo...
2022-10-04T19:31:02
vercel/next.js
9305b89a89e7f629d2cbc6e1f4c14d329850a7e2
6de962e4638be010b0647c0b07c9effec8698999
fix(turbopack): Next.js package not found panics in Turbopack (#79572) ## Warn when multiple lockfiles are found and use highest level lockfile ### What? This PR enhances the lockfile detection logic to identify multiple lockfiles in a project hierarchy and use the highest level one as the tracing root. ### Why? Whe...
[ { "path": "packages/next/src/lib/find-root.ts", "patch": "@@ -1,5 +1,6 @@\n import { dirname } from 'path'\n import findUp from 'next/dist/compiled/find-up'\n+import * as Log from '../build/output/log'\n \n export function findRootLockFile(cwd: string) {\n return findUp.sync(\n@@ -18,5 +19,29 @@ export fu...
2025-06-05T15:54:56
facebook/react
1b4ba7489978247fc955a99f01537f6fc79ffd97
bb778528d1ca22b44dad832f0258aaa4c0e6d4a4
refactor: align ReactNativeViewConfigRegistry flow typing (#27514) <!-- 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 p...
[ { "path": "scripts/flow/react-native-host-hooks.js", "patch": "@@ -134,7 +134,6 @@ declare module 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface'\n declare export var ReactNativeViewConfigRegistry: {\n customBubblingEventTypes: Object,\n customDirectEventTypes: Object,\n- even...
2023-10-13T09:33:55
golang/go
aa8d4df9d9b8659abc7bdc1485c11db515ed1479
e4b12eb8af28d3f505a5487b76dbfd4b1a37c0da
go/types: propagate *ast.LabeledStmt in blockBranches properly Fixes #70974 Change-Id: I330c0ae53dcbcdb173ab514ee94f2ca53944df09 GitHub-Last-Rev: 7c2b740da6d6e94ac8787f04ad8942f3776ac56c GitHub-Pull-Request: golang/go#70976 Reviewed-on: https://go-review.googlesource.com/c/go/+/638257 Reviewed-by: Michael Knyszek <mk...
[ { "path": "src/cmd/compile/internal/types2/labels.go", "patch": "@@ -112,8 +112,8 @@ func (check *Checker) blockBranches(all *Scope, parent *block, lstmt *syntax.Lab\n \t\treturn varDeclPos.IsKnown() && slices.Contains(badJumps, jmp)\n \t}\n \n-\tvar stmtBranches func(syntax.Stmt)\n-\tstmtBranches = func(s ...
2024-12-24T07:23:13
huggingface/transformers
cef283004847f44c2c07e48670ba524b7cb2ac24
f5e573080ae0838799c1f9a0ba28be8431120b56
Align lfm2 cache to other mamba caches (#44866) * align to other mambas * oupsi * fix
[ { "path": "src/transformers/models/lfm2/modeling_lfm2.py", "patch": "@@ -179,8 +179,10 @@ def __init__(\n self.max_batch_size = max_batch_size\n self.layer_types = config.layer_types\n self.first_attention_layer = self.layer_types.index(\"full_attention\")\n+ self.last_conv_la...
2026-03-20T10:50:26
electron/electron
2cda1443fce4dbb39393dffc3636d1214ab13f86
12eade752d38093f9b6abdc6a0b82f64176c4618
fix: ensure mas builds of the same application can use safestorage (#35864) feat: ensure mas builds of the same application can use safestorage This change ensures that MAS builds of applications with an equivilant darwin build that share the same name do not fight over access to the same Safe Storage account. S...
[ { "path": "patches/chromium/.patches", "patch": "@@ -120,3 +120,4 @@ fix_crash_loading_non-standard_schemes_in_iframes.patch\n disable_optimization_guide_for_preconnect_feature.patch\n fix_return_v8_value_from_localframe_requestexecutescript.patch\n create_browser_v8_snapshot_file_name_fuse.patch\n+feat_ens...
2022-10-04T06:36:17
vercel/next.js
f684e973f1ddbbdc99cdda9a89070d6d228a1dd7
07c3320ef9412ad32551f7150862f9526752d524
Turbopack: ignore module ids config in dev (#80204) `deterministic` doesn't work with HMR and causes odd errors. So we'll ignore the `turbopack.moduleIds` config in dev See https://vercel.slack.com/archives/C03EWR7LGEN/p1748971192561939 as well
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1726,16 +1726,7 @@ impl Project {\n /// Gets the module id strategy for the project.\n #[turbo_tasks::function]\n pub async fn module_ids(self: Vc<Self>) -> Result<Vc<Box<dyn ModuleIdStrategy>>> {\n- let module_id_strategy =\n- ...
2025-06-05T14:41:37
facebook/react
bb778528d1ca22b44dad832f0258aaa4c0e6d4a4
ea8a8619ce51a0f8f0a78f87485e4e2a6f9d8c27
[Fizz] Fix children rendering in custom elements with `enableCustomElementPropertySupport` (#27511) The `enableCustomElementPropertySupport` flag changes React's handling of custom elements in a way that is more useful that just treating every prop as an attribute. However when server rendering we have no choice bu...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -3134,32 +3134,13 @@ function pushStartCustomElement(\n \n let children = null;\n let innerHTML = null;\n- for (let propKey in props) {\n+ for (const propKey in props) {\n if (hasOwnProperty.call(props, propKey)...
2023-10-12T22:02:26
huggingface/transformers
f5e573080ae0838799c1f9a0ba28be8431120b56
8dc7a52d766efe76c121c0654a5d24d633bffe9e
Fix nemotron config docstrings (#44878) nemotron-config
[ { "path": "src/transformers/models/nemotron_h/configuration_nemotron_h.py", "patch": "@@ -39,14 +39,14 @@ class NemotronHConfig(PreTrainedConfig):\n Number of groups for expert routing.\n mamba_hidden_act (`str`, *optional*, defaults to `\"silu\"`):\n The non-linear activation function i...
2026-03-20T10:02:26
golang/go
f7becfc7f1e514ee658eae3997ae09cab9edb123
fdaac84480b02e600660d0ca7c15339138807107
go/types: use documented version of gotypesalias GODEBUG This way the code would panic, in case it does not exist. Change-Id: I95de7460c0386afdc5d3f6a847e9fcbd22446010 GitHub-Last-Rev: 9ae0502a091feed45169f5c1a7e2761f8ffa2841 GitHub-Pull-Request: golang/go#70845 Reviewed-on: https://go-review.googlesource.com/c/go/+/...
[ { "path": "src/go/types/eval_test.go", "patch": "@@ -208,7 +208,7 @@ func TestEvalPos(t *testing.T) {\n }\n \n // gotypesalias controls the use of Alias types.\n-var gotypesalias = godebug.New(\"#gotypesalias\")\n+var gotypesalias = godebug.New(\"gotypesalias\")\n \n // split splits string s at the first oc...
2024-12-14T11:03:27
electron/electron
c76a931e202dbc65dd53a63ed03dc23f63bec38b
16f459228b5c083be6aebe8b3d3eb7a04cb43cc2
fix: `TryCatch` scope in node_bindings (#35850) fix: TryCatch scope in node_bindings
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -492,19 +492,22 @@ node::Environment* NodeBindings::CreateEnvironment(\n flags |= node::EnvironmentFlags::kNoStartDebugSignalHandler;\n }\n \n- v8::TryCatch try_catch(isolate);\n- env = node::CreateEnvironment(\n- isolate_data_, context, a...
2022-10-04T06:35:20
vercel/next.js
07c3320ef9412ad32551f7150862f9526752d524
1429d7242159be90ecb2423f034770cb251a0e54
Fix race condition in `types-and-precompiled` (#80162)
[ { "path": "package.json", "patch": "@@ -44,7 +44,7 @@\n \"lint-eslint\": \"cross-env ESLINT_USE_FLAT_CONFIG=false eslint . --ext js,jsx,mjs,ts,tsx,mts,mdx --config .eslintrc.json --no-eslintrc\",\n \"lint-ast-grep\": \"ast-grep scan\",\n \"lint-no-typescript\": \"run-p prettier-check lint-eslint...
2025-06-05T13:50:07
ollama/ollama
f52c21f457e0822b31195e258dbe89c5139ecebb
b5d0f72f1660857180b5644262fb576c25f0c0de
fix: handle Enter key pressed during model loading (#13839)
[ { "path": "cmd/interactive.go", "patch": "@@ -159,6 +159,7 @@ func generateInteractive(cmd *cobra.Command, opts runOptions) error {\n \t\t\tsb.WriteString(before)\n \t\t\tif !ok {\n \t\t\t\tfmt.Fprintln(&sb)\n+\t\t\t\tscanner.Prompt.UseAlt = true\n \t\t\t\tcontinue\n \t\t\t}\n ", "additions": 1, "de...
2026-01-23T02:32:02
huggingface/transformers
8dc7a52d766efe76c121c0654a5d24d633bffe9e
2cd52c267ce4d0212eaa40c0ec7192a11654336f
Fix nemotron_h modular (#44876) fix
[ { "path": "src/transformers/models/nemotron_h/modeling_nemotron_h.py", "patch": "@@ -1083,7 +1083,6 @@ class NemotronHPreTrainedModel(PreTrainedModel):\n _keep_in_fp32_modules_strict = [\n \"e_score_correction_bias\",\n ]\n- _tied_weights_keys = {}\n _keys_to_ignore_on_load_unexpected...
2026-03-20T10:00:32
golang/go
f91ac1b61eb7c18773ff01be58a39f49de436585
c4136a433c28eb12abad777f8e74087ecf6e21f4
crypto/internal/fips140test: fix TestACVP env vars Fix TestACVP environment construction to include both ACVP_WRAPPER and GODEBUG. Previously we were accidentally overwriting the cmd.Env, stomping the ACVP_WRAPPER env var and replacing it with just the GODEBUG env var. This in turn makes the tests start to fail when ...
[ { "path": "src/crypto/internal/fips140test/acvp_test.go", "patch": "@@ -2132,8 +2132,10 @@ func TestACVP(t *testing.T) {\n \t}\n \tcmd = testenv.Command(t, goTool, args...)\n \tcmd.Dir = dataDir\n-\tcmd.Env = append(os.Environ(), \"ACVP_WRAPPER=1\")\n-\tcmd.Env = append(os.Environ(), \"GODEBUG=fips140=on\")...
2025-02-13T15:31:53
electron/electron
dfb8a2d804e4361146052028f1ab88c6b60de06f
998a0820d991aa494c6156583d7b92555fdd51be
build: fix deps workflow tag comparison (#35830)
[ { "path": ".github/workflows/release_dependency_versions.yml", "patch": "@@ -14,7 +14,7 @@ jobs:\n - uses: actions/checkout@v3\n - name: Check Tag\n run: |\n- if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\\.0\\.0$ ]]; then\n+ if [[ ${{ github.event.release.tag_name }} =~ ^v...
2022-09-27T16:24:11
vercel/next.js
1429d7242159be90ecb2423f034770cb251a0e54
dd958a13ab4a5f972be4b25be20030958d338346
Upgrade rust version to 2025-06-04 (#80200) All code changes come from `cargo clippy --fix` to collapse ifs
[ { "path": "crates/napi/src/util.rs", "patch": "@@ -70,49 +70,49 @@ pub fn log_internal_error_and_inform(internal_error: &anyhow::Error) {\n \n // hold open this mutex guard to prevent concurrent writes to the file!\n let mut last_error_time = LOG_THROTTLE.lock().unwrap();\n- if let Some(last_erro...
2025-06-05T13:46:36
ollama/ollama
31085d5e53811bedc53a9cb2afdea45554749d01
c42e9d244f03dca90709383576ab3237263d79ac
fix: use api.GenerateRequest for image generation test (#13793) Remove non-existent x/imagegen/api import and use the standard api.GenerateRequest/GenerateResponse with the Image field instead.
[ { "path": "integration/imagegen_test.go", "patch": "@@ -3,18 +3,14 @@\n package integration\n \n import (\n-\t\"bytes\"\n \t\"context\"\n \t\"encoding/base64\"\n-\t\"encoding/json\"\n \t\"fmt\"\n-\t\"net/http\"\n \t\"strings\"\n \t\"testing\"\n \t\"time\"\n \n \t\"github.com/ollama/ollama/api\"\n-\timagegen...
2026-01-20T11:23:31
golang/go
c4136a433c28eb12abad777f8e74087ecf6e21f4
1eb4c0dcb125d27e1a4296ae136f75ac08c3b9c5
runtime/debug: document DefaultGODEBUG as a BuildSetting Fixes #66465 Change-Id: I60c017ddba29fa5b452b665d8521cd6c8e20438c Reviewed-on: https://go-review.googlesource.com/c/go/+/597979 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Jorropo <jorropo.pgm@gmail.com...
[ { "path": "src/runtime/debug/mod.go", "patch": "@@ -77,6 +77,7 @@ type Module struct {\n // - CGO_CPPFLAGS: the effective CGO_CPPFLAGS environment variable\n // - CGO_CXXFLAGS: the effective CGO_CXXFLAGS environment variable\n // - CGO_LDFLAGS: the effective CGO_LDFLAGS environment variable\n+// - ...
2024-07-12T19:56:19
facebook/react
28767a7afb7ca426712b588dbc3beacc12f645b8
4fe0ab41e323acb990cace942ef26630b42ac0d1
Inline reactive scope dep checks; no more change vars Reactive scopes are currently preceded by individual variable declarations, one for each of the scope's dependencies. Only after checking independently if each of these dependencies has changed do we then do an "or" to check if we should actually recompute the ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -237,28 +237,17 @@ function codegenMemoBlockForReactiveScope(\n ): void {\n const cacheStoreStatements: Array<t.Statement> = [];\n const cacheLoadStatements: Array<t.Statement> = [];\n- c...
2023-10-12T19:03:42
huggingface/transformers
aa1c36f1a9f454e69c4eac83071ced235942c7ed
b96f8a98965a744ef5137dd25efd2e280cddcc25
[Model] Add PP-Chart2Table Model Support (#43767) * init * fix doc * update * update * update * update * update * update * update * update * refactor image_processor_fast * update * update * update * update * update * update * update * update * update * update * update * update * update * updat...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1284,6 +1284,8 @@\n title: PP-OCRv5_server_det\n - local: model_doc/pp_ocrv5_server_rec\n title: PP-OCRv5_server_rec\n+ - local: model_doc/pp_chart2table\n+ title: PPChart2Table\n - local: model_doc/pp_lcnet\n ...
2026-03-19T19:00:37
ollama/ollama
c42e9d244f03dca90709383576ab3237263d79ac
e98b5e8b4e1075987679b71c8d205be417c147f9
test: add image gen test case (#13698) * test: fix type regression in tools test. * test: add image gen integration test
[ { "path": "integration/imagegen_test.go", "patch": "@@ -0,0 +1,174 @@\n+//go:build integration\n+\n+package integration\n+\n+import (\n+\t\"bytes\"\n+\t\"context\"\n+\t\"encoding/base64\"\n+\t\"encoding/json\"\n+\t\"fmt\"\n+\t\"net/http\"\n+\t\"strings\"\n+\t\"testing\"\n+\t\"time\"\n+\n+\t\"github.com/olla...
2026-01-20T00:01:31
electron/electron
998a0820d991aa494c6156583d7b92555fdd51be
621baa7bb7b1bb6a0dfa73e0ddb8cdc52848f8f8
fix: set display_id in desktop capturer on Linux (#33861) Previously, display_id was an empty string, pending Chrome support for sharing individual screens. Now that this has been added, it is desirable to have this property set correctly. Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/browser/api/electron_api_desktop_capturer.h\"\n \n+#include <map>\n #include <memory>\n #include <utility>\n #include <vector>\n@@ -24,12 +25,125 @@\n #include \"third_party/webrtc/modules/desktop...
2022-09-27T15:40:44
vercel/next.js
dd958a13ab4a5f972be4b25be20030958d338346
1f941656ce10b6c5a3a5b778c3d0ede742a660e5
[error-overlay] remove footer message (#80169)
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/error-overlay-footer/error-overlay-footer.tsx", "patch": "@@ -3,18 +3,11 @@ import { styles as feedbackStyles } from './error-feedback/error-feedback'\n \n export type ErrorOverlayFooterProps = {\n errorCode: string | un...
2025-06-05T11:58:07
golang/go
1eb4c0dcb125d27e1a4296ae136f75ac08c3b9c5
8659ad904966dfe809925c980ac11e7f98ac61aa
cmd/dist: test GOFIPS140=latest rather than just the GODEBUG GOFIPS140=latest turns on the GODEBUG by default, and it's otherwise untested. Change-Id: I6a6a4656ff7ad313ce2c61ee4144ad2858bd148c Reviewed-on: https://go-review.googlesource.com/c/go/+/648819 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -712,9 +712,9 @@ func (t *tester) registerTests() {\n \t// Check that all crypto packages compile (and test correctly, in longmode) with fips.\n \tif t.fipsSupported() {\n \t\t// Test standard crypto packages with fips140=on.\n-\t\tt.registerTest(\"GODEBUG=fips...
2025-02-12T11:37:52
huggingface/transformers
b96f8a98965a744ef5137dd25efd2e280cddcc25
e94695e574f969ba5eeb8e442a7fb1e9f72ff37f
[Mistral] Fix query scaling for Mistral4 and Ministral3 (#44860) fix
[ { "path": "src/transformers/models/ministral3/modeling_ministral3.py", "patch": "@@ -104,7 +104,7 @@ def eager_attention_forward(\n \n def get_llama_4_attn_scale(positions_ids: torch.Tensor, beta: float, max_position_embeddings: int) -> torch.Tensor:\n scaling = 1 + beta * torch.log(1 + torch.floor(posi...
2026-03-19T18:02:04
facebook/react
87b1549d5c11da3370caf947231c09c39d7053da
52c6a34da30ffee665183df2aa8f97e3511fbd9e
Improve MergeConsecutiveScopes Rewrites the core logic of MergeConsecutiveScopes to be easier to follow and fix bugs. We now do a two-pass approach: * First we iterate block instructions to identify scopes which can be merged, without actually merging the instructions themselves. * Then we iterate again, copyin...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -44,8 +44,8 @@ import {\n flattenScopesWithObjectMethods,\n inferReactiveScopeVariables,\n memoizeFbtOperandsInSameScope,\n- mergeConsecutiveScopes,\n mergeOverlappingReactiveScopes,\n+ mergeReactiveSc...
2023-10-12T16:47:26
ollama/ollama
e98b5e8b4e1075987679b71c8d205be417c147f9
68e00c7c36714814a0a3642caca539f6794c0d35
`/api/show`: default to empty model_info (#13785) For `/api/show`, a fully missing `model_info` field trips up various integrators (including a recent Android Studio integration). The primary source of missing info tends to come from models with a remote that are also missing other data. It seems better to me to retu...
[ { "path": "api/types.go", "patch": "@@ -749,7 +749,7 @@ type ShowResponse struct {\n \tMessages []Message `json:\"messages,omitempty\"`\n \tRemoteModel string `json:\"remote_model,omitempty\"`\n \tRemoteHost string `json:\"remote_host,omitempty\"`\n-\tModelInfo ...
2026-01-19T23:26:17
vercel/next.js
1f941656ce10b6c5a3a5b778c3d0ede742a660e5
e274d697ad96b9158633f0bbe37ca3c5ab25d91b
[turbopack] Remove uses of `Value<ReferenceType>` by making `ReferenceType` a TaskInput (#80130) Remove `Value::new` wrapper for `ReferenceType` parameters ### Why? The `Value<>` type is confusing and error prone, lets destroy it! As discussed over slack, `turbo_tasks::Value` type always implements `is_resolved` as...
[ { "path": "crates/next-api/src/instrumentation.rs", "patch": "@@ -75,7 +75,7 @@ impl InstrumentationEndpoint {\n .asset_context\n .process(\n *self.source,\n- Value::new(ReferenceType::Entry(EntryReferenceSubType::Instrumentation)),\n+ Re...
2025-06-05T09:11:31
electron/electron
74d59af3c5ce9400342fe4487063a413e97578f1
c09c94fc98f261dce4a35847e2dd9699dcd5213e
fix: Handle an electron.d.ts file in a custom build (#33979) * Handle an electron.d.ts file in a custom build * Fix linter issues Co-authored-by: Felix Rieseberg <felixr@stripe.com>
[ { "path": "npm/install.js", "patch": "@@ -70,8 +70,30 @@ function isInstalled () {\n \n // unzips and makes path.txt point at the correct executable\n function extractFile (zipPath) {\n- return extract(zipPath, { dir: path.join(__dirname, 'dist') })\n- .then(() => fs.promises.writeFile(path.join(__dirna...
2022-09-26T18:39:26
huggingface/transformers
f4ed5b8d3600eb302c0031129fe51684ae004c8d
62c46ce2ff6e8ed18592eb2c2ac53456689a2013
Update some type hints (#44851) * update eos and q-lora-ranl * oops, wrong name for class
[ { "path": "src/transformers/configuration_utils.py", "patch": "@@ -31,6 +31,7 @@\n from .generation.configuration_utils import GenerationConfig\n from .modeling_gguf_pytorch_utils import load_gguf_checkpoint\n from .modeling_rope_utils import RotaryEmbeddingConfigMixin\n+from .tokenization_utils_base import...
2026-03-19T16:18:52
facebook/react
e61a60fac02d205ad928bff6de2449f00646a92c
1fc58281af73ca4507c41d53a3e08dc2038b0c1f
[Flight] Enforce "simple object" rule in production (#27502) We only allow plain objects that can be faithfully serialized and deserialized through JSON to pass through the serialization boundary. It's a bit too expensive to do all the possible checks in production so we do most checks in DEV, so it's still possi...
[ { "path": "packages/react-client/src/ReactFlightReplyClient.js", "patch": "@@ -29,6 +29,9 @@ import {\n } from 'shared/ReactSerializationErrors';\n \n import isArray from 'shared/isArray';\n+import getPrototypeOf from 'shared/getPrototypeOf';\n+\n+const ObjectPrototype = Object.prototype;\n \n import {usedW...
2023-10-11T16:18:49
ollama/ollama
68e00c7c36714814a0a3642caca539f6794c0d35
4f138a1749ba684b8ad0f27ec77d299ff2071337
fix: prevent image generation models from loading during deletion (#13781) Move the unload check (empty prompt + KeepAlive=0) before the image generation model dispatch in GenerateHandler. This prevents models like flux from being loaded into memory just to be immediately unloaded when running `ollama rm`. Also fix a...
[ { "path": "cmd/cmd.go", "patch": "@@ -899,11 +899,11 @@ func DeleteHandler(cmd *cobra.Command, args []string) error {\n \tfor _, arg := range args {\n \t\t// Unload the model if it's running before deletion\n \t\tif err := loadOrUnloadModel(cmd, &runOptions{\n-\t\t\tModel: args[0],\n+\t\t\tModel: ar...
2026-01-19T20:48:34
vercel/next.js
e6e002d92c249f15aeb244d0abd162b7459aa190
46fa52c54641a94b9ae9fbaebdb9346b2816c3af
[turbopack] Remove uses of `Value<ClientContextType>` by making `ClientContextType` a TaskInput (#80127) Refactor ClientContextType to use TaskInput instead of Value wrapper ### Why? The `Value<>` type is confusing and error prone, lets destroy it! As discussed over slack, `turbo_tasks::Value` type always implements...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -207,7 +207,7 @@ impl AppProject {\n self.project().project_path(),\n self.project().execution_context(),\n self.project().client_compile_time_info().environment(),\n- Value::new(self.client_ty().owned().awai...
2025-06-05T07:23:09
electron/electron
c09c94fc98f261dce4a35847e2dd9699dcd5213e
697a219bcb7bc520bdf2d39a76387e2f99869a2a
feat: add WebContents.opener and webContents.fromFrame() (#35140) * feat: add WebContents.opener * feat: add webContents.fromFrame(frame) * fix: unknown type name * test: fix and add more fromFrame cases * docs: clarified terminology
[ { "path": "docs/api/web-contents.md", "patch": "@@ -45,6 +45,13 @@ returns `null`.\n Returns `WebContents` | undefined - A WebContents instance with the given ID, or\n `undefined` if there is no WebContents associated with the given ID.\n \n+### `webContents.fromFrame(frame)`\n+\n+* `frame` WebFrameMain\n+\...
2022-09-26T16:37:08
huggingface/transformers
92c625889f6369cf73d19a2c62159b45c9bd6d98
884333368ff329090c73bd00e57996727f301de3
Fix glm dsa (#44564) relu
[ { "path": "src/transformers/models/glm_moe_dsa/modeling_glm_moe_dsa.py", "patch": "@@ -216,7 +216,7 @@ def forward(\n \n # q·k^T per head: [B, S, H, D] @ [B, T, D]^T → [B, S, H, T]\n scores = torch.einsum(\"bshd,btd->bsht\", q.float(), k_cached.float()) * self.softmax_scale\n-\n+ scor...
2026-03-19T15:13:33
facebook/react
77ec61885fb19607cdd116a6790095afa40b5a94
151e75a128d0fd436dce365335b96c5686f704d4
fix[devtools/inspectElement]: dont pause initial inspectElement call when user switches tabs (#27488) There are not so many changes, most of them are changing imports, because I've moved types for UI in a single file. In https://github.com/facebook/react/pull/27357 I've added support for pausing polling events: w...
[ { "path": "packages/react-devtools-core/src/backend.js", "patch": "@@ -22,7 +22,7 @@ import {\n } from './cachedSettings';\n \n import type {BackendBridge} from 'react-devtools-shared/src/bridge';\n-import type {ComponentFilter} from 'react-devtools-shared/src/types';\n+import type {ComponentFilter} from 'r...
2023-10-10T17:10:17
ollama/ollama
3d01f2aa341dde88ccc8318528c4192f81407975
634c416645790c84dfc80849b05f84b3853b127f
parsers: refactor Nemotron parser to reuse Qwen3Coder for tool calls (#13764) Simplify Nemotron3NanoParser by delegating tool call parsing to Qwen3CoderParser instead of duplicating the parsing logic. The Nemotron parser now only handles the thinking state machine and transitions to Qwen3CoderParser for content and to...
[ { "path": "model/parsers/nemotron3nano.go", "patch": "@@ -1,7 +1,6 @@\n package parsers\n \n import (\n-\t\"regexp\"\n \t\"strings\"\n \t\"unicode\"\n \n@@ -14,243 +13,114 @@ const (\n \tNemotron3NanoCollectingThinking Nemotron3NanoParserState = iota\n \tNemotron3NanoSkipWhitespaceAfterThinking\n \tNemotron...
2026-01-18T02:28:52
vercel/next.js
e9f70d0fdb67f9a024c84a2a542684c72be8e12c
e2ba7905bd0e3891c804dd9d7d347f808b480e17
docs: fix grammar in Code of Conduct section ('them' → 'it') (#80181) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: -...
[ { "path": "packages/next/README.md", "patch": "@@ -31,7 +31,7 @@ The Next.js community can be found on [GitHub Discussions](https://github.com/ve\n \n To chat with other community members you can join the Next.js [Discord](https://nextjs.org/discord) server.\n \n-Do note that our [Code of Conduct](https://g...
2025-06-05T06:41:56
golang/go
679cd8e7798db593d0973519f6d3ee7ea7659142
fb5f78a14f71f043604826067d1f224e1e90a2f5
reflect, internal/abi: speed up TypeFor[T] goos: linux goarch: amd64 pkg: reflect cpu: AMD Ryzen 5 4600G with Radeon Graphics │ /tmp/before │ /tmp/after │ │ sec/op │ sec/op vs base │ TypeForString-12 2.091n ± 1% 1.174n ± 1% ...
[ { "path": "src/internal/abi/type.go", "patch": "@@ -187,11 +187,7 @@ func TypeOf(a any) *Type {\n \n // TypeFor returns the abi.Type for a type parameter.\n func TypeFor[T any]() *Type {\n-\tvar v T\n-\tif t := TypeOf(v); t != nil {\n-\t\treturn t // optimize for T being a non-interface kind\n-\t}\n-\tretur...
2025-02-12T07:16:32
electron/electron
f8077cc0041bd1779e750fceaf7758e87de0d7c9
e0b4c485febc721317635da5eb280c8a8a228a40
build: fix major dependencies update workflow file (#35811)
[ { "path": ".github/workflows/release_dependency_versions.yml", "patch": "@@ -20,7 +20,7 @@ jobs:\n trigger:\n runs-on: ubuntu-latest\n needs: check_tag\n- if: jobs.check_tag.outputs.should_release == 'true'\n+ if: needs.check_tag.outputs.should_release == 'true'\n steps:\n - uses: ...
2022-09-26T14:15:37
facebook/react
5a8c7594c5f06908dd2f0afb2cb69897909565a2
b61dba64ad6ded12e7ae1245861d2a08ec7ac5ff
Implement JSX whitespace rules So far we've been preserving JSX whitespace all the way through to codegen. But JSX has clear rules around whitespace handling, which allows us to trim whitespace in the input in lots of cases. For the most part this doesn't change our output, but I think that’s generally because of ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -2829,9 +2829,13 @@ function lowerJsxElement(\n return lowerExpressionToTemporary(builder, expression);\n }\n } else if (exprPath.isJSXText()) {\n+ const text = trimJsxText(exprPath.node.value);\n+ if...
2023-10-09T23:35:47
ollama/ollama
634c416645790c84dfc80849b05f84b3853b127f
57de86cc610bdfd11831d80e464c05bb240afa64
Add experimental image generation fields to /api/generate (#13753) Request fields (experimental): - width: image width (max 4096) - height: image height (max 4096) - steps: denoising steps - seed: random seed Response fields (experimental): - images: base64-encoded generated images - completed: current step progress ...
[ { "path": "api/types.go", "patch": "@@ -127,6 +127,20 @@ type GenerateRequest struct {\n \t// each with an associated log probability. Only applies when Logprobs is true.\n \t// Valid values are 0-20. Default is 0 (only return the selected token's logprob).\n \tTopLogprobs int `json:\"top_logprobs,omitempty...
2026-01-18T02:27:41
vercel/next.js
e2ba7905bd0e3891c804dd9d7d347f808b480e17
d31de7732fbe6f27cf5c7afc485d2bb6dd9c8379
small typo fix (#80171) `metadat` -> `metadata` Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "docs/01-app/05-api-reference/04-functions/generate-metadata.mdx", "patch": "@@ -102,7 +102,7 @@ export default function Page({ params, searchParams }) {}\n > - The `metadata` object and `generateMetadata` function exports are **only supported in Server Components**.\n > - You cannot export both t...
2025-06-05T06:41:25
golang/go
024c900b43e4531576e726ef1cdb1cc119e64203
127288b4c6527e92ac788d32ece96ef67211b2c8
cmd/go: clarify vcs suffix to repo mapping For #71635 Change-Id: I12ec2a810cfcaf2565b0d9c518b0921ec54e9f12 Reviewed-on: https://go-review.googlesource.com/c/go/+/648475 Reviewed-by: Michael Matloob <matloob@golang.org> Auto-Submit: Sam Thanawalla <samthanawalla@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@l...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2924,12 +2924,12 @@\n //\timport \"example.org/user/foo.hg\"\n //\n // denotes the root directory of the Mercurial repository at\n-// example.org/user/foo or foo.hg, and\n+// example.org/user/foo, and\n //\n //\timport \"example.org/repo.git/foo/bar\"\n //\n ...
2025-02-11T16:30:22
electron/electron
7d96321786d72563c034b9f905c8b7195e26bb8e
39d79c5c28fb03f6730b4aca6aa65a1e140219e3
docs: minor grammar fixes in tutorial (#35804)
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -186,7 +186,7 @@ by creating a barebones web page in an `index.html` file in the root folder of y\n ```\n \n Now that you have a web page, you can load it into an Electron [BrowserWindow][browser-window].\n-Replace the contents your `main.js` f...
2022-09-26T08:53:08
facebook/react
a1461016df10f2a5f3e0e6fb60b1820c55c1f5be
49d16ba7e561d8d401a75121637d5f7a1c002d2a
Improve MergeConsecutiveScopes Rewrites the core logic of MergeConsecutiveScopes to be easier to follow and fix bugs. We now do a two-pass approach: * First we iterate block instructions to identify scopes which can be merged, without actually merging the instructions themselves. * Then we iterate again, copyin...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/MergeConsecutiveScopes.ts", "patch": "@@ -5,6 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import { CompilerError } from \"..\";\n import {\n IdentifierId,\n InstructionId,\n@@ -17,6 +18,8 @@ imp...
2023-10-09T23:15:30
ollama/ollama
12719b6e87e738f76d0456dd9a9d7571be58cb68
a077d996e39eaee6ed26cb219a2e37f003d4b01d
MLX - dynamic loading of mlx-c (#13735) * MLX - dynamic loading of mlx-c Create a wrapper layer to indirect the dependency on mlx-c so the main ollama binary does not have a load-time dependency on mlx-c, mlx, and on linux, cuda. Lazy load the library via dlopen so we can adjust the path to ensure the dependencies a...
[ { "path": "Dockerfile", "patch": "@@ -32,7 +32,7 @@ ENV PATH=/${VULKANVERSION}/x86_64/bin:$PATH\n FROM --platform=linux/arm64 almalinux:8 AS base-arm64\n # install epel-release for ccache\n RUN yum install -y yum-utils epel-release \\\n- && dnf install -y clang ccache \\\n+ && dnf install -y clang cca...
2026-01-17T00:34:22
vercel/next.js
a094280865ffbd6acffe4fb84db7eb9590b16241
caa54e46b0ff96077529b037f294a1ab1091890c
remove unique metadata prop from initial RSC payload (#79388) This value is used as a key to re-mount `head` on subsequent client navigations, but as far as I can tell, it's not needed for the initial RSC payload that seeds these pages. In its current form, these random IDs get serialized as part of the RSC payload, ...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -521,7 +521,6 @@ async function generateDynamicRSCPayload(\n />\n {/* Adding requestId as react key to make metadata remount for each render */}\n <ViewportTree key={getFlightViewportKey(requestI...
2025-06-04T23:31:58
golang/go
127288b4c6527e92ac788d32ece96ef67211b2c8
b1a11c54465f24d1861c3568ea3b1bb6304b450d
cmd/go: add errors obtaining c compiler version to cache key If there's an error getting the version of the c compiler, add the error to the input used to produce the cache key. In the case where we can't parse the version, the text of the output of the command is part of the error, so different unparseable versions w...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -301,19 +301,25 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID {\n \t\t// compiler changes we rebuild the package.\n \t\tif ccID, _, err := b.gccToolID(ccExe[0], \"c\"); err == nil {\n \t\t\tfmt.Fprintf(h, \"CC ID=%q\\n\", ccID)\n+\t\t...
2025-02-10T20:17:54
electron/electron
f62aab76b352fc6a34834d0b2f315200d2dcb31e
324db14969c74461b849ba02c66af387c0d70d49
fix: potential exception when calling webFrameMainBinding.fromIdOrNull() (#35785) * fix: potential exception when calling webFrameMainBinding.fromIdOrNull() * replace try/catch in getWebFrameForEvent Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -537,6 +537,11 @@ const addReturnValueToEvent = (event: Electron.IpcMainEvent) => {\n });\n };\n \n+const getWebFrameForEvent = (event: Electron.IpcMainEvent | Electron.IpcMainInvokeEvent) => {\n+ if (!event.processId || !event.frameId) return nul...
2022-09-24T19:19:07
huggingface/transformers
884333368ff329090c73bd00e57996727f301de3
7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca
🚨🚨 Refactor Image Processors to support different backends (#43514) * init refactor * Fix llava * changes after review * update first batch of image processors * refactor part 2 * improve base image processor class, move backends to separate file * refactor to have backends in separate files, with backends now...
[ { "path": "CONTRIBUTING.md", "patch": "@@ -137,13 +137,15 @@ python utils/modular_model_converter.py <model_name>\n \n This will generate the separate files (`modeling_*.py`, `configuration_*.py`, etc.) from your modular file. The CI will enforce that these generated files match your modular file.\n \n-☐ **...
2026-03-19T14:33:28
facebook/react
49d16ba7e561d8d401a75121637d5f7a1c002d2a
529568c7dba7d463af35c5b5f6287649d5e41335
Repro for scope merging bug This is a repro for a bug that occurs when `enableMergeConsecutiveScopes` is enabled. Reminder that this feature is off by default and not enabled yet internally. I found this via #2121, where eliminating extraneous whitespace JSXText instructions meant that MergeConsecutiveScopes sta...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/merge-consecutive-scopes-objects.expect.md", "patch": "@@ -0,0 +1,138 @@\n+\n+## Input\n+\n+```javascript\n+// @enableMergeConsecutiveScopes\n+// This is a translation of the original merge-consecutive-scopes which uses p...
2023-10-09T23:15:29
vercel/next.js
61729da4e7721566b9a53f28463e9ec7332de428
69ded21f6cd69600ea5dd86a5948de2df693becb
[metadata] fix nonce prop for hoist script (#80174) ### What Only render `nonce` prop on icon hoist script when it's presented
[ { "path": "packages/next/src/server/app-render/metadata-insertion/create-server-inserted-metadata.tsx", "patch": "@@ -15,6 +15,6 @@ export function createServerInsertedMetadata(nonce: string | undefined) {\n }\n \n inserted = true\n- return `<script nonce=\"${nonce}\">${REINSERT_ICON_SCRIPT}</scr...
2025-06-04T20:01:58
electron/electron
324db14969c74461b849ba02c66af387c0d70d49
8a0b4fa338618e8afbc6291bf659870feddd230c
fix: set macOS crypto keychain name earlier (#34683) * fix: set macOS crypto keychain name earlier * spec: ensure arm64 mac tests are cleaned up
[ { "path": ".circleci/config/base.yml", "patch": "@@ -216,6 +216,7 @@ step-maybe-cleanup-arm64-mac: &step-maybe-cleanup-arm64-mac\n rm -rf ~/Library/Application\\ Support/electron*\n security delete-generic-password -l \"Chromium Safe Storage\" || echo \"✓ Keychain does not contain password f...
2022-09-23T19:32:10
ollama/ollama
a077d996e39eaee6ed26cb219a2e37f003d4b01d
c23d5095de19460d1390b0df12d141bad1a247f9
Fix `create` and `show` commands for experimental models (#13741) * x: make `ollama create --experimental` import from safetensors This change allows pulling in safetensors models into the new experimental model format, and also fixes the `ollama show` command to be able to correctly display the model information. *...
[ { "path": "cmd/cmd.go", "patch": "@@ -46,8 +46,9 @@ import (\n \t\"github.com/ollama/ollama/types/syncmap\"\n \t\"github.com/ollama/ollama/version\"\n \txcmd \"github.com/ollama/ollama/x/cmd\"\n+\t\"github.com/ollama/ollama/x/create\"\n+\txcreateclient \"github.com/ollama/ollama/x/create/client\"\n \t\"gith...
2026-01-16T22:31:55