repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vercel/next.js
c34851a12c3954f0ce38ef45befc51b4778617fb
bc7ce5d68dbc9751aecee77ce35cadf02a007383
Turbopack: Allow fully dynamic import() in node_modules (#79153) ## What? Allows e.g. ```import(`${url}`)``` when in node_modules. This makes monaco-editor work automatically when it's correctly imported in e.g. a `useEffect`. - [x] Apply change - [x] Verify against local reproduction - [x] Add test case Fixes #72...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -357,6 +357,8 @@ pub async fn get_client_module_options_context(\n let foreign_codes_options_context = ModuleOptionsContext {\n ecmascript: EcmascriptOptionsContext {\n enable_typeof_window_inlining: None,\n+ ...
2025-05-15T11:45:25
facebook/react
d3b9948b5e26b8e28e6f079acca7e435672fa4e8
1d2e7ee74706b57fb293089671153bac7e57ec93
[rust] Fixture tests for parsing and lowering Adds a new `fixtures` crate intended for running end-to-end tests of the compiler. As we expand the compiler this will eventually match our JS fixture setup, where we have .js files as input and produce memoized JS output. For now, this does the following: * Parses ...
[ { "path": "compiler/forget/Cargo.lock", "patch": "@@ -12,6 +12,32 @@ dependencies = [\n \"regex\",\n ]\n \n+[[package]]\n+name = \"addr2line\"\n+version = \"0.20.0\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f02522...
2023-07-06T00:24:46
golang/go
c7c4420ae4b0e82b26606776fbd0e4fea97d37c9
c6ab13fc43477d36158aecd85680301094a84488
cmd/go: clarify GODEBUG in go help environment Fixes #37004 Fixes #50444 Change-Id: I7dd5a8c9bd0a2122ff38508cf509369d6d8ad599 Reviewed-on: https://go-review.googlesource.com/c/go/+/632177 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2338,8 +2338,9 @@\n //\t\texternal go command build cache.\n //\t\tSee 'go doc cmd/go/internal/cacheprog'.\n //\tGODEBUG\n-//\t\tEnable various debugging facilities. See https://go.dev/doc/godebug\n-//\t\tfor details.\n+//\t\tEnable various debugging faciliti...
2024-11-28T16:10:52
ollama/ollama
ceac416ec279c8324b770af380621f9ef26dd767
2717dce6fe1bb4eab80abd5fbbd713211a7fc276
fix(integration): check truncated length (#12337)
[ { "path": "integration/embed_test.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"testing\"\n \t\"time\"\n \n+\t\"github.com/google/go-cmp/cmp\"\n \t\"github.com/ollama/ollama/api\"\n )\n \n@@ -44,9 +45,8 @@ func TestAllMiniLMEmbeddings(t *testing.T) {\n \t}\n \n \tres, err := embeddingTestHelper(ctx, client,...
2025-09-18T21:00:21
facebook/react
2ac69bf7d952aba132cd887b09b71622a295b88f
6c3792e8d5e79d94f0d5ee24a1c0b3262ac067fa
[rust] Passes from HIRBuilder This is a start to porting HIRBuilder, with a largely complete implementation of `build()`. Notably this includes all the passes which build() calls, and the helper functions those passes call in turn: ```rust reverse_postorder_blocks(&mut hir); remove_unreachable_for_updates(&mu...
[ { "path": "compiler/forget/Cargo.lock", "patch": "@@ -113,7 +113,9 @@ dependencies = [\n name = \"build-hir\"\n version = \"0.1.0\"\n dependencies = [\n+ \"estree\",\n \"hir\",\n+ \"indexmap 2.0.0\",\n ]\n \n [[package]]", "additions": 2, "deletions": 0, "language": "Unknown" }, { "path...
2023-07-06T00:24:43
vercel/next.js
bc7ce5d68dbc9751aecee77ce35cadf02a007383
53bb899fc4af08c4e9d4dae2d8a1b2d631fe789c
Reland: Fix false-positive `"use cache"` misplacement error (#79222) _Relanding #79151, now ignoring TS AST nodes when checking whether all exported module items are async functions._ This fixes an error where we incorrectly showed the following compiler error when using Turbopack: ```sh Ecmascript file had an error...
[ { "path": "crates/next-core/src/next_shared/transforms/server_actions.rs", "patch": "@@ -40,8 +40,8 @@ pub async fn get_server_actions_transform_rule(\n Ok(ModuleRule::new(\n module_rule_match_js_no_url(enable_mdx_rs),\n vec![ModuleRuleEffect::ExtendEcmascriptTransforms {\n- p...
2025-05-15T11:06:28
electron/electron
ea4278754c0d818d88aa0ee4be62f5a61fd07297
f418a49857979a72cb199244aee335ffd9b82f47
chore: fix spelling errors in multiple files (#34574) * chore: fix spelling in .circleci Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * chore: fix spelling in BUILD.gn Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * chore: fix spelling in appveyor.yml Signed-...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -639,7 +639,7 @@ step-electron-publish: &step-electron-publish\n echo 'Uploading Electron release distribution to Azure'\n script/release/uploaders/upload.py --verbose --UPLOAD_TO_STORAGE\n else\n- echo 'Uploading Electron rele...
2022-06-16T07:46:11
golang/go
f5a89dff67ae00bfc70fbfccc1b1cc044e565b50
4225c6cb372e0fea7586dd646e991faa5df20671
crypto: fix fips140=only detection of SHA-3 Both fips140only and the service indicator checks in crypto/internal/fips140/... expect to type assert to crypto/internal/fips140/{sha256,sha512,sha3}.Digest. However, crypto/sha3 returns a wrapper concrete type around sha3.Digest. Add a new fips140hash.Unwrap function to ...
[ { "path": "src/crypto/ecdsa/ecdsa.go", "patch": "@@ -23,6 +23,7 @@ import (\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/boring/bbig\"\n \t\"crypto/internal/fips140/ecdsa\"\n+\t\"crypto/internal/fips140hash\"\n \t\"crypto/internal/fips140only\"\n \t\"crypto/internal/randutil\"\n \t\"crypto/sha512\"\...
2025-01-06T17:52:35
ollama/ollama
2717dce6fe1bb4eab80abd5fbbd713211a7fc276
9b8187b487159cda3e753f9d242303d857ba321c
convert: convert bf16 vision weights to fp16 (#12324) This change moves back to converting bf16 vision weights to fp16, specifically if they start with the name "v." (such as v.blk.0.attn_k.weight). This fixes a bug where converted images are failing because they are trying to call `im2col` which doesn't have a bf16 ...
[ { "path": "convert/reader_safetensors.go", "patch": "@@ -96,7 +96,7 @@ type safetensor struct {\n \n func (st safetensor) Kind() uint32 {\n \tkind := st.tensorBase.Kind()\n-\tif st.dtype == \"BF16\" && kind != tensorKindFP32 {\n+\tif !strings.HasPrefix(st.name, \"v.\") && st.dtype == \"BF16\" && kind != ten...
2025-09-18T00:43:17
huggingface/transformers
7c4c93752add1eea3358141cc7480bdcccfdf564
744639aba7811a9120e738d975ee4498dee60f92
fix(tokenizer): Fix MLukeTokenizer AttributeError post-v5 refactor (#44362) * fix: MLukeTokenizer AttributeError after v5 tokenizer refactor * nit: Fix ci/circleci: check_code_quality
[ { "path": "src/transformers/models/mluke/tokenization_mluke.py", "patch": "@@ -1013,12 +1013,10 @@ def get_input_ids_and_entity_token_spans(text, entity_spans):\n # add special tokens to input ids\n entity_token_start, entity_token_end = first_entity_token_spans[0]\n firs...
2026-03-02T14:50:17
facebook/react
6c3792e8d5e79d94f0d5ee24a1c0b3262ac067fa
4c0122f4cf5b636f0073aab50de93115d6588591
[rust] Initial translation of HIR and related types This is an initial translation of HIR (minus the ReactiveFunction bits). It's mostly a straightforward translation. A few differences: * Instead of Effect having an Unknown variant, we type `Place.effect: Option<Effect>`. Maybe i'll revert that but it seems righ...
[ { "path": "compiler/forget/Cargo.lock", "patch": "@@ -109,6 +109,13 @@ dependencies = [\n \"serde\",\n ]\n \n+[[package]]\n+name = \"build-hir\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"hir\",\n+]\n+\n [[package]]\n name = \"bumpalo\"\n version = \"3.13.0\"\n@@ -186,6 +193,12 @@ dependencies = [\n \"...
2023-07-06T00:24:40
vercel/next.js
53bb899fc4af08c4e9d4dae2d8a1b2d631fe789c
ce0fe2672e46d0755989dccb45968d8128932adf
[ts-next-plugin] test: add client-boundary test (#79194) This PR added tests for Next.js TypeScript plugins, specific for client-boundary. Updated the readme and removed the legacy fixture.
[ { "path": "test/development/typescript-plugin/README.md", "patch": "@@ -19,8 +19,14 @@ Ensure the current comments still describe the observed behavior.\n `app/error.tsx#Error` and `app/global-error.tsx#GlobalError` have a `reset` prop\n that should be excluded from the serialization check.\n \n+### Client ...
2025-05-15T09:39:26
electron/electron
bad8d5e08af159371b0dc2875eb6c2281bff59a5
4ec95edf06d751e43d23a865751ec890f9f8cb69
fix: make preload calculation identical between sandbox & non-sandboxed (#34531)
[ { "path": "lib/browser/rpc-server.ts", "patch": "@@ -68,6 +68,10 @@ ipcMainUtils.handleSync(IPC_MESSAGES.BROWSER_SANDBOX_LOAD, async function (event\n };\n });\n \n+ipcMainUtils.handleSync(IPC_MESSAGES.BROWSER_NONSANDBOX_LOAD, function (event) {\n+ return { preloadPaths: event.sender._getPreloadPaths() }...
2022-06-15T20:22:28
ollama/ollama
9c5bf342bc34f94de9aa4a171d726e6b341a91e6
564b558c92973ae9eda4ad585359e7f39b2dbff2
fix: multi-cuda version skew (#12318) Ensure that in a version skewed multi-cuda setup we use the lowest version for all GPUs
[ { "path": "discover/cuda_common.go", "patch": "@@ -16,7 +16,7 @@ import (\n // Included to drive logic for reducing Ollama-allocated overhead on L4T/Jetson devices.\n var CudaTegra string = os.Getenv(\"JETSON_JETPACK\")\n \n-func cudaVariant(gpuInfo CudaGPUInfo) string {\n+func cudaVariant(gpuInfos []CudaGP...
2025-09-17T20:05:09
huggingface/transformers
8468dbf7d0f97550e70755550abf0862978918ec
dcd3d720aa7d4881970d2fc9c6c0286afb422672
[higgs-audio-v2] fix sampling (#44386) * sampling * fix test
[ { "path": "src/transformers/models/higgs_audio_v2/generation_higgs_audio_v2.py", "patch": "@@ -26,7 +26,13 @@\n LogitsProcessorList,\n StoppingCriteriaList,\n )\n-from ...generation.logits_process import LogitsProcessor\n+from ...generation.logits_process import (\n+ InfNanRemoveLogitsProcessor,\...
2026-03-02T13:06:21
golang/go
c9afcbade7308cf66b67b9ce080f10b621b17c6a
54693a81fd605a9c1abbee83da072c61e38d3ebf
go/types, types2: require iterator yield to return bool (work-around) The original implementation of the type checkers accepted any boolean result type for yield, but the compiler's front-end had a problem with it (#71131). As a temporary fix (for 1.24), adjust the type checkers to insist on the spec's literal wordin...
[ { "path": "src/cmd/compile/internal/types2/stmt.go", "patch": "@@ -1057,8 +1057,13 @@ func rangeKeyVal(typ Type, allowVersion func(goVersion) bool) (key, val Type, ca\n \t\t\treturn bad(\"func must be func(yield func(...) bool): argument is not func\")\n \t\tcase cb.Params().Len() > 2:\n \t\t\treturn bad(\"...
2025-01-07T23:06:05
vercel/next.js
135817cafd14bcdd025272576c3f15f5f139c28e
ffea3e9366eda5727623798012d1ae78ad3e7391
Revert "Update mappings in `launch.json` to improve debugging in VSCode (#76559)" (#79206) This partially reverts commit 710c76bfe805c3712bd18e087199b4e764f35a7e, which is needed after having changed our pre-bundling approach in #79164.
[ { "path": ".vscode/launch.json", "patch": "@@ -45,10 +45,10 @@\n \"webpack://_N_E/[.]/(.*)\": \"${workspaceFolder}/${input:appDirname}/.next/server/$1\",\n \"webpack-internal:///(ssr)/./*\": \"${workspaceFolder}/${input:appDirname}/*\",\n \"webpack://(?:_N_E)?/(?:../)*src/(.*)\": \"$...
2025-05-14T16:43:23
electron/electron
4c7c0b41c2027db27cf563e9eabb95cc8adf96bb
21ef8501e7c71cd8d56828e21d310d07f9d86510
feat: add immersive dark mode on windows (#33624) * feat: add immersive dark mode * fix syntax and add header * add me * Update fuses.json5 * fix: redraw title bar on dark mode change * chore: SetWindowTheme doesn't seem to be needed * chore: separate out Win 10 dark mode implementation * final to...
[ { "path": "BUILD.gn", "patch": "@@ -725,14 +725,6 @@ source_set(\"electron_lib\") {\n \n sources += get_target_outputs(\":electron_fuses\")\n \n- if (is_win && enable_win_dark_mode_window_ui) {\n- sources += [\n- \"shell/browser/win/dark_mode.cc\",\n- \"shell/browser/win/dark_mode.h\",\n- ...
2022-06-14T16:27:28
ollama/ollama
564b558c92973ae9eda4ad585359e7f39b2dbff2
a417ac97ee685e6197dc35cec24bba6cffee1f94
fix(llama): other llama flavours (#12308) * fix(llama): rope scale * spm llama * skip moe models * cleanup
[ { "path": "model/models/gemma2/model.go", "patch": "@@ -63,7 +63,7 @@ func New(c fs.Config) (model.Model, error) {\n \t\t\tattnValLen: int(c.Uint(\"attention.value_length\")),\n \t\t\teps: c.Float(\"attention.layer_norm_rms_epsilon\"),\n \t\t\tropeBase: c.Float(\"rope.freq_base...
2025-09-17T19:12:21
golang/go
54693a81fd605a9c1abbee83da072c61e38d3ebf
0cdf8c7a8ce5913845ab46e49a1befd86c9c565d
crypto/md5,crypto/sha1: apply fips140=only to Write and Sum, not New New is called to get a Hash which can then be rejected with an error (instead of a panic) from fips140only.ApprovedHash. Also, it's reasonable to call New().Size() and then not use the hash. Change-Id: I6a6a4656c43528d169c4b28c8b6de48448236d4f Revi...
[ { "path": "src/crypto/md5/md5.go", "patch": "@@ -104,9 +104,6 @@ func consumeUint32(b []byte) ([]byte, uint32) {\n // [encoding.BinaryUnmarshaler] to marshal and unmarshal the internal\n // state of the hash.\n func New() hash.Hash {\n-\tif fips140only.Enabled {\n-\t\tpanic(\"crypto/md5: use of MD5 is not a...
2025-01-06T17:49:45
electron/electron
bed38e0985d6dd0f48b43627c158821b926e61ed
8de5cdb426eaf380e2ab242b53427a0d9a509de7
fix: crash when `setWindowOpenHandler` callback throws (#34523) * fix: crash when setWindowOpenHandler throws * refactor: throw as process uncaughtException event
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -482,6 +482,7 @@ WebContents.prototype._callWindowOpenHandler = function (event: Electron.Event,\n if (!this._windowOpenHandler) {\n return defaultResponse;\n }\n+\n const response = this._windowOpenHandler(details);\n \n if (typeof respo...
2022-06-14T16:22:23
vercel/next.js
ffea3e9366eda5727623798012d1ae78ad3e7391
0dcee14044c9e0e1d415aaae9c6995dd8e08e0c3
turbo-tasks: Encode location information into panics (#78945) Replaces #78796 This is the basis of the Rust side of things to report location information with panics. To do: - [x] Automated test Closes PACK-4546
[ { "path": "crates/napi/src/lib.rs", "patch": "@@ -68,11 +68,19 @@ static ALLOC: dhat::Alloc = dhat::Alloc;\n \n #[cfg(not(target_arch = \"wasm32\"))]\n #[napi::module_init]\n-\n fn init() {\n+ use std::panic::{set_hook, take_hook};\n+\n use tokio::runtime::Builder;\n+ use turbo_tasks::handle_panic...
2025-05-14T16:34:06
huggingface/transformers
f2f0d17d160bc239de46771d6ad84a4e5c2bc2e2
1391366f78457cac417090219559a6e650be50e2
Add VibeVoice ASR (#43625) * Add vibevoice tokenizer files. * Address style tests. * Revert to expected outputs previously computed on runner. * Enable encoder output test. * Update expected output from runner * Add note on expected outputs * remove code link and better init * Update src/transformers/models/vib...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1044,6 +1044,8 @@\n title: UnivNet\n - local: model_doc/vibevoice_acoustic_tokenizer\n title: VibeVoice Acoustic Tokenizer\n+ - local: model_doc/vibevoice_asr\n+ title: VibeVoice ASR\n - local: model_doc/vits\n ...
2026-03-02T11:29:55
ollama/ollama
b225508c9b8f9118b57798c76f51f0e52835fabc
fa1c987a29df360ae503c09f1b3ddd2d6db6336a
logutil: fix source field (#12279)
[ { "path": "logutil/logutil.go", "patch": "@@ -5,6 +5,8 @@ import (\n \t\"io\"\n \t\"log/slog\"\n \t\"path/filepath\"\n+\t\"runtime\"\n+\t\"time\"\n )\n \n const LevelTrace slog.Level = -8\n@@ -29,10 +31,18 @@ func NewLogger(w io.Writer, level slog.Level) *slog.Logger {\n \t}))\n }\n \n+type key string\n+\n ...
2025-09-16T23:18:07
golang/go
e966a2773cced08d584e0a462c4b30a84e3a46be
9a44df66758c65e6f0b3ab0002a297d2fc266d7c
crypto/internal/fips140/drbg: avoid global lock on rand state Having a global lock on the random state (used only in FIPS-140 mode) introduces contention in concurrent programs. Use an approximately per-P random state instead, using sync.Pool to manage per-P state. This code is important to land for the Go 1.24 relea...
[ { "path": "src/crypto/internal/fips140/drbg/rand.go", "patch": "@@ -13,8 +13,15 @@ import (\n \t\"sync\"\n )\n \n-var mu sync.Mutex\n-var drbg *Counter\n+var drbgs = sync.Pool{\n+\tNew: func() any {\n+\t\tvar c *Counter\n+\t\tentropy.Depleted(func(seed *[48]byte) {\n+\t\t\tc = NewCounter(seed)\n+\t\t})\n+\t...
2025-01-07T17:07:07
facebook/react
035a41c4e2aadad8f8826396940af404e87dd772
53ac21937864c1c7fc3d9077bc2d80b3e11193e3
React DevTools 4.27.8 -> 4.28.0 (#27051) List of changes: * Devtools:-Removed unused CSS ([Biki-das](https://github.com/Biki-das) in [#27032](https://github.com/facebook/react/pull/27032)) * fix[devtools/profilingCache-test]: specify correct version gate for test ([hoxyq](https://github.com/hoxyq) in [#27008](htt...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.27.8\",\n+ \"version\": \"4.28.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j...
2023-07-04T08:11:14
electron/electron
954fd725009093660599a03a6926d57717f5a8c4
8157a01a42a4e0fdda1358757aaf48756014a506
fix: make navigator.userAgentData non-empty (#34481)
[ { "path": "BUILD.gn", "patch": "@@ -371,6 +371,7 @@ source_set(\"electron_lib\") {\n \"//chrome/app/resources:platform_locale_settings\",\n \"//components/autofill/core/common:features\",\n \"//components/certificate_transparency\",\n+ \"//components/embedder_support:browser_util\",\n \"/...
2022-06-13T16:35:42
vercel/next.js
0dcee14044c9e0e1d415aaae9c6995dd8e08e0c3
cb49b483f1e2f63dcf6880765585830b48154e29
docs: add graceful error boundary example (#77781) This adds an example in the documentation for the errors page for a graceful error boundary in Next.js. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checkl...
[ { "path": "docs/01-app/05-api-reference/03-file-conventions/error.mdx", "patch": "@@ -193,6 +193,126 @@ export default function GlobalError({ error, reset }) {\n }\n ```\n \n+### Graceful error recovery with a custom error boundary\n+\n+When rendering fails on the client, it can be useful to show the last k...
2025-05-14T15:44:07
huggingface/transformers
1391366f78457cac417090219559a6e650be50e2
9dbc535644e1feb92224b9f4f3da4b1e8f93be88
Mamba-1/-2 init weights in mixer class (#43778) * Move dt_bias init into Mamba2Mixer * Remove redundant init from Mamba2PreTrainedModel * Add back init for meta device * Add dt_bias init into MambaMixer * Formatting code * [mamba,mamba2] add local init * fix check * style --------- Co-authored-by: Arthur <art...
[ { "path": "src/transformers/models/falcon_mamba/modeling_falcon_mamba.py", "patch": "@@ -188,7 +188,7 @@ class FalconMambaMixer(nn.Module):\n and is why FalconMamba is called **selective** state spaces)\n \"\"\"\n \n- def __init__(self, config: FalconMambaConfig, layer_idx: int):\n+ def __init...
2026-03-02T10:33:56
ollama/ollama
a1cff89b30b6f0343ed79051b4a4868dc76bc2ad
93c64ea1b1941bc6077ff1cf48c8eac902052f77
fix: fix CUDA detection for older GPUs (#12300) Prioritize GPU compute capability over driver version to ensure Pascal GPUs (CC 6.1) use compatible CUDA v12 libraries instead of v13.
[ { "path": "discover/cuda_common.go", "patch": "@@ -45,10 +45,18 @@ func cudaVariant(gpuInfo CudaGPUInfo) string {\n \t\t}\n \t}\n \n+\t// Check GPU compute capability FIRST\n+\tisOldGPU := gpuInfo.computeMajor < 7 || (gpuInfo.computeMajor == 7 && gpuInfo.computeMinor < 5)\n+\tif isOldGPU {\n+\t\t// GPU is P...
2025-09-16T14:47:06
facebook/react
c6b437b4026c06843a19eb3bce9da8ef4d15aa63
cff435ca3dbd5e5d6ad6d590d6ea334ad23b92b9
[eslint-plugin] Remove fbt dependencies I incorrectly included these as deps, we were only using these to verify codegen. It seems fine to leave in but when I imported it internally vscode would error, so just remove it
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/package.json", "patch": "@@ -21,8 +21,6 @@\n \"@babel/core\": \"^7.19.1\",\n \"@babel/parser\": \"^7.19.1\",\n \"@babel/traverse\": \"^7.19.1\",\n- \"babel-plugin-fbt\": \"^1.0.0\",\n- \"babel-plugin-fbt-runtime\": \"^1.0.0\",\...
2023-07-03T16:25:33
vercel/next.js
cb49b483f1e2f63dcf6880765585830b48154e29
b304b45e3a6e3e79338568d76e28805e77c03ec9
Reland "Ensure mangling is disabled for dev runtime builds (#75297)" (#79201) Reapplies #75297 Also fixes some rspack tests which didn't await assertions properly so they might have looked like they're passing
[ { "path": "contributing/core/vscode-debugger.md", "patch": "@@ -24,4 +24,4 @@ To see the changes you make to the Next.js codebase during development, you can\n \n When developing/debugging Next.js, you can set breakpoints anywhere in the `packages/next` source code that will stop the debugger at certain loc...
2025-05-14T15:38:01
electron/electron
2a9b3cc9cdabb5055dc367c490a8a62f839d1c59
7ca3f55b1070594589244a81095884dcc152af37
chore: remove unused proxy-window-open.snapshot.txt (#34501) chore: remove unused spec-main/fixtures/snapshots/proxy-window-open.snapshot.txt
[ { "path": "spec-main/fixtures/snapshots/proxy-window-open.snapshot.txt", "patch": "@@ -1,166 +0,0 @@\n-[\n- [\n- \"top=5,left=10,resizable=no\",\n- {\n- \"sender\": \"[WebContents]\",\n- \"frameId\": 1,\n- \"processId\": \"placeholder-process-id\"\n- },\n- \"about:blank\",\n- ...
2022-06-13T07:01:34
golang/go
9a44df66758c65e6f0b3ab0002a297d2fc266d7c
f025d19e7b3f0c66242760c213cc2b54cb100f69
cmd/go/testdata/script: fix TestScript/env_gocacheprog on Windows The backslashes on the windows paths will be escaped, so when checking for them in the regular expression we'd have to have quadruple backslashes '\\\\'. Since it's difficult to escape $GOCACHEPROG properly for both json and regexp, just check for a str...
[ { "path": "src/cmd/go/testdata/script/env_gocacheprog.txt", "patch": "@@ -24,7 +24,7 @@ go env -changed\n stdout 'GOCACHEPROG=''?'$GOCACHEPROG'''?'\n \n go env -changed -json\n-stdout '\"GOCACHEPROG\": \"'$GOCACHEPROG'\"'\n+stdout '\"GOCACHEPROG\": \".*cacheprog'$GOEXE'\"'\n \n -- cacheprog.go --\n // This ...
2025-01-08T16:19:05
huggingface/transformers
6a92ebdd00d13708a35dd05d6b5947a1f04916d7
e58be565aab224dcf24f8324aad761ba5634b2bc
Model patching API (#43917) * patching api * remove * simpler * add extra weight conversions * use a pather class instead of a config for better extensibility * docs * library wide monkey patching * remove * Update docs/source/en/monkey_patching.md Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.g...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -16,6 +16,8 @@\n title: Loading models\n - local: custom_models\n title: Customizing models\n+ - local: monkey_patching\n+ title: Monkey patching\n - local: how_to_hack_models\n title: Customizing model components\n ...
2026-03-02T10:10:48
ollama/ollama
3f6642f6fcf971ed6da02aac30ecb68168556482
6f7117145f56e00d16572ed11cb8f83c4b3af636
model: implement bert in ollama engine (#9080) * fix truncate * s/SentencePieceModel/SentencePiece/ * bert * wordpiece * refactor pooling * more tokenizers * normalize embeddings
[ { "path": "convert/convert_bert.go", "patch": "@@ -28,6 +28,7 @@ type bertModel struct {\n \tLayerNormEPS float32 `json:\"layer_norm_eps\"`\n \tLayerNormEpsilon float32 `json:\"layer_norm_epsilon\"`\n \tNormEpsilon float32 `json:\"norm_epsilon\"`\n+\tnormalizeEmbeddings bool\n \n \...
2025-09-15T22:35:59
facebook/react
5c8dabf8864e1d826c831d6096b2dfa66309961a
47385f8fa448e52326f08d0afa357339fac6f86e
Detect and warn about native async function components in development (#27031) Adds a development warning to complement the error introduced by https://github.com/facebook/react/pull/27019. We can detect and warn about async client components by checking the prototype of the function. This won't work for environm...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -163,9 +163,11 @@ export type UpdateQueue<S, A> = {\n let didWarnAboutMismatchedHooksForComponent;\n let didWarnUncachedGetSnapshot: void | true;\n let didWarnAboutUseWrappedInTryCatch;\n+let didWarnAboutAsyncClientComponent;\n if (_...
2023-07-02T02:44:41
golang/go
f025d19e7b3f0c66242760c213cc2b54cb100f69
1e9835f5b1806e8e6197f87c1696dc773b68a98a
runtime: hold traceAcquire across casgstatus in injectglist Currently injectglist emits all the trace events before actually calling casgstatus on each goroutine. This is a problem, since tracing can observe an inconsistent state (gstatus does not match tracer's 'emitted an event' state). This change fixes the proble...
[ { "path": "src/runtime/proc.go", "patch": "@@ -3894,23 +3894,23 @@ func injectglist(glist *gList) {\n \tif glist.empty() {\n \t\treturn\n \t}\n-\ttrace := traceAcquire()\n-\tif trace.ok() {\n-\t\tfor gp := glist.head.ptr(); gp != nil; gp = gp.schedlink.ptr() {\n-\t\t\ttrace.GoUnpark(gp, 0)\n-\t\t}\n-\t\ttra...
2024-12-23T17:21:07
vercel/next.js
b304b45e3a6e3e79338568d76e28805e77c03ec9
7ddd5ef0bb85aca47548cbb9dda59cc79be22635
bugfix (pages): assetPrefix should not cause hard nav in development (#79176) In development when handling the page request, we are sending the parsedUrl with the basePath stripped but not assetPrefix. As a result, when setting an assetPrefix, the chunk would 404 which causes a hard nav. It'd then recover and work cor...
[ { "path": "packages/next/src/server/lib/router-server.ts", "patch": "@@ -327,11 +327,20 @@ export async function initialize(opts: {\n if (blockCrossSite(req, res, config.allowedDevOrigins, opts.hostname)) {\n return\n }\n+\n const origUrl = req.url || '/'\n \n+ // bo...
2025-05-14T15:07:28
huggingface/transformers
dd5f1a1ec8d7133329548f6be4dcbb0693750c99
11b1906d5c0dae39c13270e47cc02c4cde70e548
Strict export cleanup (#44293) * remove strict mode tests * fix export errors * last one * skip pretraining as it always computes loss * fix * only skip videomae for pretraining
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -1441,12 +1441,12 @@ def msg_callable():\n if callable(cond):\n cond = cond()\n \n+ # These checks are also compiler hints for TorchDynamo telling\n+ # it that the condition is expected to be True during compilation\n if ...
2026-03-02T09:36:16
electron/electron
e5543a2dd22a79d7ae3fc1ff88c96a46c80e4158
bd81ae08acf2a2ebb9f6ca7c17590b472ddae789
fix: all files selection logic on linux (#34496)
[ { "path": "shell/browser/ui/file_dialog_gtk.cc", "patch": "@@ -32,8 +32,11 @@ static const int kPreviewWidth = 256;\n static const int kPreviewHeight = 512;\n \n std::string MakeCaseInsensitivePattern(const std::string& extension) {\n- std::string pattern(\"*.\");\n+ // If the extension is the \"all files...
2022-06-13T06:57:03
ollama/ollama
053092185eda0ac5272400ac4d4be135944800f7
44a679287366daf04c56c61fe0ab135de7de94c2
Fix image cannot be seen with slice image on llama engine Ollama's recent engine update, llama.cpp, caused all models requiring a slice schema to not display images. As a result, the value of numTokens isn't always the length of the sliced ​​image embed, but rather the end length of the schema. This causes the image e...
[ { "path": "llama/llama.go", "patch": "@@ -515,33 +515,34 @@ func (c *MtmdContext) NewEmbed(llamaContext *Context, data []byte) ([][]float32,\n \t}\n \tnChunks := C.mtmd_input_chunks_size(ic)\n \tnumEmbed := llamaContext.Model().NEmbd()\n-\tlastChunkSize := 0\n+\tembed := make([][]float32, 0)\n \tfor i := ra...
2025-09-12T23:25:12
facebook/react
7f362de1588d98438787d652941533e21f2f332d
fc801116c80b68f7ebdaf66ac77d5f2dcd9e50eb
Revert "Fix: Detect infinite update loops caused by render phase updates (#26625)" (#27027) This reverts commit 822386f252fd1f0e949efa904a1ed790133329f7. This broke a number of tests when synced internally. We'll need to investigate the breakages before relanding this.
[ { "path": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -1620,64 +1620,6 @@ describe('ReactUpdates', () => {\n });\n });\n \n- it(\"does not infinite loop if there's a synchronous render phase update on another component\", () => {\n- let setState;\n- function App() {\n-...
2023-06-30T16:51:11
golang/go
1e9835f5b1806e8e6197f87c1696dc773b68a98a
39f2032c17516a55c165d329dd5e2e07f49132b0
internal/sync: fix typo of panic message Change-Id: I3e7a8498514da1d278acd566d526fdf6278f7d41 Reviewed-on: https://go-review.googlesource.com/c/go/+/638916 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lanc...
[ { "path": "src/internal/sync/hashtriemap.go", "patch": "@@ -79,7 +79,7 @@ func (ht *HashTrieMap[K, V]) Load(key K) (value V, ok bool) {\n \t\t}\n \t\ti = n.indirect()\n \t}\n-\tpanic(\"internal/concurrent.HashMapTrie: ran out of hash bits while iterating\")\n+\tpanic(\"internal/sync.HashTrieMap: ran out of ...
2024-12-28T04:56:04
huggingface/transformers
11b1906d5c0dae39c13270e47cc02c4cde70e548
f5da14f893009d863124785ff1c3f46bb058e2c0
[docs] kernelconfig fix (#44337) fix
[ { "path": "docs/source/en/kernel_doc/loading_kernels.md", "patch": "@@ -129,11 +129,11 @@ from transformers import AutoModelForCausalLM, KernelConfig\n kernel_config = KernelConfig(\n kernel_mapping={\n \"RMSNorm\": \"kernels-community/liger_kernels:LigerRMSNorm\",\n- \"LlamaAttention\": ...
2026-02-27T21:26:35
vercel/next.js
7ddd5ef0bb85aca47548cbb9dda59cc79be22635
4c73369dc5846f4b564d602cb1e89ea48baed1e9
perf(turbopack): Do not inline synthesized content for sourcemaps (#79173) ### What? Disable `inline_sources_content` of SWC source map generator for `minify()`. ### Why? Regardless, it's the wrong value from the user's perspective, so we cannot use it anyway. build_sourcemap will fill the sourcemap with the cont...
[ { "path": "turbopack/crates/turbopack-css/src/module_asset.rs", "patch": "@@ -432,7 +432,7 @@ fn generate_minimal_source_map(filename: String, source: String) -> Result<Rope>\n }\n let sm: Arc<SourceMap> = Default::default();\n sm.new_source_file(FileName::Custom(filename).into(), source);\n- ...
2025-05-14T14:37:33
electron/electron
bd81ae08acf2a2ebb9f6ca7c17590b472ddae789
57b863c2130c80caf47c4c226ae113bf465a3d9d
fix: don't require glibc 2.29+ on linux arm64 builds (#34491) * build: use sid sysroot for linux arm64
[ { "path": "script/sysroots.json", "patch": "@@ -10,9 +10,9 @@\n \"Tarball\": \"debian_bullseye_arm_sysroot.tar.xz\"\n },\n \"bullseye_arm64\": {\n- \"Sha1Sum\": \"de38cc85d51a820c3307e1937f3c2d3cedcce988\",\n+ \"Sha1Sum\": \"5a56c1ef714154ea5003bcafb16f21b0f8dde023\",\n ...
2022-06-10T18:15:52
ollama/ollama
61fb912ca46fe902180892316f6cc34adda07b67
aba157531521192a04d09811fac3cda20e1a8340
CI: fix windows cuda build (#12246) * ci: adjust cuda component list v13 has a different breakdown of the components required to build ollama * review comments
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -65,13 +65,26 @@ jobs:\n arch: amd64\n preset: 'CUDA 12'\n install: https://developer.download.nvidia.com/compute/cuda/12.8.0/local_installers/cuda_12.8.0_571.96_windows.exe\n+ cuda-components:\n+ ...
2025-09-11T19:25:26
facebook/react
fc801116c80b68f7ebdaf66ac77d5f2dcd9e50eb
d9c333199ed19798484e49eef992735321c32cb9
Detect crashes caused by Async Client Components (#27019) Suspending with an uncached promise is not yet supported. We only support suspending on promises that are cached between render attempts. (We do plan to partially support this in the future, at least in certain constrained cases, like during a route transiti...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -636,6 +636,7 @@ export function markRootFinished(root: FiberRoot, remainingLanes: Lanes) {\n root.entangledLanes &= remainingLanes;\n \n root.errorRecoveryDisabledLanes &= remainingLanes;\n+ root.shellSuspendCounter = 0;\n \n ...
2023-06-29T20:05:00
golang/go
b2aa18b96cefb48641ec69a79bc67d030b93f093
d93b549f0502ad9f44b7eacc282c304b22d2603b
cmd/internal/hash: stop using md5, sha1 These break if the tools are run with GODEBUG=fips140=only, which happens if someone sets that during 'go test' (and a test binary must be built). The easiest fix is to make the tools compatible with this GODEBUG by just using sha256 as the underlying hash always. Just in case,...
[ { "path": "src/cmd/internal/hash/hash.go", "patch": "@@ -5,22 +5,33 @@\n // Package hash implements hash functions used in the compiler toolchain.\n package hash\n \n+// TODO(rsc): Delete the 16 and 20 forms and use 32 at all call sites.\n+\n import (\n-\t\"crypto/md5\"\n-\t\"crypto/sha1\"\n \t\"crypto/sha2...
2025-01-07T16:20:07
huggingface/transformers
f5da14f893009d863124785ff1c3f46bb058e2c0
8257fe36dcd81ed26981c08a71ce747f1270aae5
Add `ProcessingKwargs` `ImagesKwargs` etc. to docs (#44269) * Fix tied weight keys sam2 video * add tests + fix parameter type parsing * nit less verbose * fix style * fix imports * debug * improve return section handling (use auto_docstring parsing/formatting methods) * fix import errors * improve how kwargs ...
[ { "path": "docs/source/en/main_classes/processors.md", "patch": "@@ -32,6 +32,22 @@ Those processors inherit from the following base class that implements the savin\n \n [[autodoc]] ProcessorMixin\n \n+### Processing kwargs\n+\n+Processor `__call__` methods accept keyword arguments organized by modality. Th...
2026-02-27T19:03:14
vercel/next.js
0e39e7f155f1ab894b14f32216a9054c059b29e7
47eda30f1ab5ff8fc97802643125b4ce19cac14e
Docs: Visual nits (#79198) Fix missing heading and line highlighting
[ { "path": "docs/01-app/01-getting-started/06-css.mdx", "patch": "@@ -232,6 +232,7 @@ function ExampleDialog(props) {\n ```\n \n </PagesOnly>\n+\n ## Ordering and Merging\n \n Next.js optimizes CSS during production builds by automatically chunking (merging) stylesheets. The **order of your CSS** depends on ...
2025-05-14T10:57:41
electron/electron
37d93b04824d4f0151b36edb867209b53272457f
2fd0194e94658ed9af12a38f79222e15785287fa
fix: update normal bounds prior to minimizing (#34473)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -165,6 +165,8 @@ class NativeWindowMac : public NativeWindow,\n \n void UpdateVibrancyRadii(bool fullscreen);\n \n+ void UpdateWindowOriginalFrame();\n+\n // Set the attribute of NSWindow while work around a bug of zoom button.\n bool HasSty...
2022-06-09T08:48:50
ollama/ollama
29ddfc2cab7f5a83a96c3133094f67b22e4f27d1
71cb86af3e8b8006540550a8eeb9fed106b77eee
ggml: Disable flash attention for gemma2 Our new engine implementation of gemma2 doesn't support flash attention, which means that it also doesn't support KV cache quantization. Currently, it is possible to turn these two on, which will result in a crash.
[ { "path": "fs/ggml/ggml.go", "patch": "@@ -883,6 +883,10 @@ func (f GGML) SupportsFlashAttention() bool {\n \t\treturn false\n \t}\n \n+\tif arch := f.KV().Architecture(); slices.Contains([]string{\"gemma2\"}, arch) {\n+\t\treturn false\n+\t}\n+\n \t// Check head counts match and are non-zero\n \theadCountK...
2025-09-09T17:48:34
facebook/react
5945e068abf1da4aec24aba2839abfbb0fe94a3d
a1c62b8a7635c0bc51e477ba5437df9be5a9e64f
[Flight] Instrument the Promise for Async Module instead of using a Module Cache (#26985) Currently, since we use a module cache for async modules, it doesn't automatically get updated when the module registry gets updated (HMR). This technique ensures that if Webpack replaces the module (HMR) then we'll get the ...
[ { "path": "fixtures/flight/config/jest/babelTransform.js", "patch": "@@ -1,29 +0,0 @@\n-'use strict';\n-\n-const babelJest = require('babel-jest').default;\n-\n-const hasJsxRuntime = (() => {\n- if (process.env.DISABLE_NEW_JSX_TRANSFORM === 'true') {\n- return false;\n- }\n-\n- try {\n- require.res...
2023-06-28T18:30:09
huggingface/transformers
8257fe36dcd81ed26981c08a71ce747f1270aae5
d22e8d07fa1a98a2c8a470b5f472f2cff85402a2
Fix typos in comments and docstrings (#44332) - Fix 'orignal' -> 'original' in peft.py (lines 245, 284) - Fix duplicate 'is is' -> 'is' in processing_dia.py (line 89)
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -242,7 +242,7 @@ def _build_peft_weight_mapping(\n peft_weight_operations.append(op)\n \n # TODO: this assumption may not hold for models != mixtral\n- # For source, we capture the orignal ...
2026-02-27T18:02:59
golang/go
d93b549f0502ad9f44b7eacc282c304b22d2603b
d62154db837fef880714f710bafbe0af94034b40
cmd/go/internal/cache: handle cacheprog not responding to close Allow a gocacheprog to not respond to close. The intention of the code is that after we send the close message we'd ignore errors reading from the cacheprog's stdout. But before this change if a cacheprog did not respond to close and we got an EOF reading...
[ { "path": "src/cmd/go/internal/cache/prog.go", "patch": "@@ -153,6 +153,12 @@ func (c *ProgCache) readLoop(readLoopDone chan<- struct{}) {\n \t\tres := new(cacheprog.Response)\n \t\tif err := jd.Decode(res); err != nil {\n \t\t\tif c.closing.Load() {\n+\t\t\t\tc.mu.Lock()\n+\t\t\t\tfor _, ch := range c.inFl...
2025-01-06T21:02:38
vercel/next.js
3e3403f165d43356277d40f04db6c7ad9afb30b0
bcd799fc688fc3b1535150e24c6057033e29bf3c
Add `rustc-ice` files to gitignore (#79167) We are using some rustc features that routinely lead to compiler crashes which get dumped as `rustc-ice` files. We never want to commit these.
[ { "path": ".gitignore", "patch": "@@ -8,6 +8,9 @@ tarballs/\n packages/**/*.tgz\n .errors/\n \n+# rust compiler crashes\n+rustc-ice-*.txt\n+\n # dependencies\n node_modules\n package-lock.json", "additions": 3, "deletions": 0, "language": "Unknown" } ]
2025-05-13T21:42:33
electron/electron
16db5a112e3cde7d9ee8ea817f52bf2b9af7568f
f44ecb7f031bbe22289be1007093cff5057cb6cf
fix: html fullscreen transitions stacking (#32905) * fix: html fullscreen transitions stacking * spec: move webview test to spec-main
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3673,7 +3673,12 @@ void WebContents::EnumerateDirectory(\n \n bool WebContents::IsFullscreenForTabOrPending(\n const content::WebContents* source) {\n- return html_fullscreen_;\n+ bool transition_fs = owner_window()\n+ ...
2022-06-07T16:59:50
facebook/react
822386f252fd1f0e949efa904a1ed790133329f7
80d9a40114bb43c07d021e8254790852f450bd2b
Fix: Detect infinite update loops caused by render phase updates (#26625) This PR contains a regression test and two separate fixes: a targeted fix, and a more general one that's designed as a last-resort guard against these types of bugs (both bugs in app code and bugs in React). I confirmed that each of these f...
[ { "path": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -1620,6 +1620,64 @@ describe('ReactUpdates', () => {\n });\n });\n \n+ it(\"does not infinite loop if there's a synchronous render phase update on another component\", () => {\n+ let setState;\n+ function App() {\n+...
2023-06-27T17:26:35
ollama/ollama
e119783e66335c861e253734f36166d1a99f2e78
1a558f98e2d07885efb6cf82943ae029c647f3d0
llm: Clamp batch size to context size The context must always be able to store the current batch, so if the user requests a small context then we should also shrink the batch to match. This also fixes the TestLongInputContext test on the new engine. (The old engine already has this behavior.)
[ { "path": "integration/context_test.go", "patch": "@@ -36,7 +36,7 @@ func TestLongInputContext(t *testing.T) {\n \tif err := PullIfMissing(ctx, client, req.Model); err != nil {\n \t\tt.Fatalf(\"PullIfMissing failed: %v\", err)\n \t}\n-\tDoGenerate(ctx, t, client, req, []string{\"russia\", \"germany\", \"fra...
2025-09-09T00:33:31
vercel/next.js
dd0c9881ac0ecf041eff32feab3e3ac64c5c1e6c
62a3f91c1afd6f370f4c1e9c117bd5725c0ee10d
docs: Fix grammar in `vitest.mdx` (How to set up Vitest with Next.js) (#78654) This PR fixes a tiny grammar mistake on the [**How to set up Vitest with Next.js**](https://nextjs.org/docs/app/guides/testing/vitest) page: Before | After --- | --- [...] we recommend using an **E2E tests** for `async` components. | [...]...
[ { "path": "docs/01-app/02-guides/testing/vitest.mdx", "patch": "@@ -6,7 +6,7 @@ description: Learn how to set up Vitest with Next.js for Unit Testing.\n \n Vite and React Testing Library are frequently used together for **Unit Testing**. This guide will show you how to setup Vitest with Next.js and write yo...
2025-05-13T18:52:14
golang/go
d62154db837fef880714f710bafbe0af94034b40
9d0772b23ed8dae1667a3328a72f384eccf812d7
weak: don't panic when calling Value on a zero Pointer Currently weak.Pointer.Value will panic if the weak.Pointer is uninitialized (zero value) which goes against it's documentation. Fix this and add a test. While we're here, also add a test to ensure weak.Make[T](nil) is equivalent to the zero value of weak.Pointer[...
[ { "path": "src/weak/pointer.go", "patch": "@@ -78,6 +78,9 @@ func Make[T any](ptr *T) Pointer[T] {\n // If a weak pointer points to an object with a finalizer, then Value will\n // return nil as soon as the object's finalizer is queued for execution.\n func (p Pointer[T]) Value() *T {\n+\tif p.u == nil {\n+...
2025-01-07T16:01:46
electron/electron
4ec2de659fa797a3a906c3a050cc0b3ccd491553
30d15715a9ce6a360c73d2e8eb9970ca17d0ad36
chore: fix nan spec runner on macOS (#34447)
[ { "path": "script/nan-spec-runner.js", "patch": "@@ -18,7 +18,8 @@ const args = require('minimist')(process.argv.slice(2), {\n });\n \n async function main () {\n- const nodeDir = path.resolve(BASE, `out/${utils.getOutDir({ shouldLog: true })}/gen/node_headers`);\n+ const outDir = utils.getOutDir({ should...
2022-06-07T10:09:08
ollama/ollama
950d33aa3045581906c2db11f33d2a4c2bca3033
9714e38dd098a466d613edd87f3576ddd5c246f4
docs: show how to debug nvidia init failures (#12216) This debug setting can help troubleshoot obscure initialization failures.
[ { "path": "docs/troubleshooting.md", "patch": "@@ -92,6 +92,9 @@ If none of those resolve the problem, gather additional information and file an\n - Set `CUDA_ERROR_LEVEL=50` and try again to get more diagnostic logs\n - Check dmesg for any errors `sudo dmesg | grep -i nvrm` and `sudo dmesg | grep -i nvidia...
2025-09-08T18:39:00
huggingface/transformers
dc6c2bad0ddbf02d5a93580b624a6c073e1f42fe
46d09b53ec4f38ff3e6d893c802e5f9af98fba68
Update common tests Trainer (#44260) * update * better now * data is better also now * trainingargs udpate * style * checkpoiting * Fix all * much better i think now * style * fix first test * Fix tests ! * fix * remove report_to * fix import
[ { "path": "src/transformers/trainer.py", "patch": "@@ -1572,7 +1572,9 @@ def _prepare_for_training(self, max_steps, train_dataloader, resume_from_checkpo\n if not delay_optimizer_creation:\n self.create_optimizer()\n \n- model = self._wrap_model(self.model)\n+ # Pass `self....
2026-02-27T17:31:47
facebook/react
6aacd3fa1567ed35c7ae4a69627ec1a1543df760
8ec962d825fc948ffda5ab863e639cd4158935ba
fix[devtools/profilingCache-test]: specify correct version gate for test (#27008) - Correctly gate the test to `[18.0.0, 18.2.0]` versions of react, as it was initially defined before https://github.com/facebook/react/pull/26742 - I have recently fixed the gating logic in https://github.com/facebook/react/pull/269...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js", "patch": "@@ -938,11 +938,51 @@ describe('ProfilingCache', () => {\n }\n });\n \n- // @reactVersion >= 17\n- // @reactVersion < 18\n+ // @reactVersion >= 18.0.0\n+ // @reactVersion <= 18.2.0\n+ it('should handle unex...
2023-06-26T16:37:53
golang/go
1d20bce981005777424b9c8da199015ab2148810
a9bd6239a440dedc354f7651259fabef4610ebdc
go/types, types2: expand documentation for Info.Types map Function types for function (and method) declarations do not appear in Info.Types maps, only Info.Defs maps, because the function type is implicit in the declaration and not a proper (function) type expression. This is true even though the AST represents these ...
[ { "path": "src/cmd/compile/internal/types2/api.go", "patch": "@@ -208,11 +208,19 @@ type Info struct {\n \t//\n \t// The Types map does not record the type of every identifier,\n \t// only those that appear where an arbitrary expression is\n-\t// permitted. For instance, the identifier f in a selector\n-\t/...
2025-01-06T21:25:08
vercel/next.js
6ba4290d420b0045190bc4288329cb783e0c81f3
de89c8cd0126fa237f21d42ca2eec2a8025a3260
build: Update `swc_core` to `v24.0.0` (#79103) ### What? Retry of https://github.com/vercel/next.js/pull/79092 The latest build: https://github.com/vercel/next.js/actions/runs/15001005940 --- Update swc_core to v24.0.0. ChangeLog: https://github.com/swc-project/swc/compare/swc_core%40v23.1.0...swc_core%40v24.0.0 ...
[ { "path": ".cargo/config.toml", "patch": "@@ -34,9 +34,6 @@ rustflags = [\n \"target-feature=+crt-static\"\n ]\n \n-[target.'cfg(target_os = \"macos\")']\n-linker = \"rust-lld\"\n-\n [target.'cfg(all(target_os = \"linux\", target_env = \"gnu\"))']\n rustflags = [\n \"--cfg\",", "additions": 0, "...
2025-05-13T17:23:59
electron/electron
882fa36940fc5846a4c72b1c73a4ccc3ac146437
e56f626b945f11b120f36019d621f32a55307c7a
test: fix for flaky renderer crash test (#34452)
[ { "path": "spec-main/api-web-frame-main-spec.ts", "patch": "@@ -230,7 +230,9 @@ describe('webFrameMain module', () => {\n // Keep reference to mainFrame alive throughout crash and recovery.\n const { mainFrame } = w.webContents;\n await w.webContents.loadURL(server.url);\n+ const cras...
2022-06-06T21:39:58
huggingface/transformers
46d09b53ec4f38ff3e6d893c802e5f9af98fba68
fc8a65771665466d5b7abf3991d60373e23b42e2
[timesfm2_5] fix timesfm mlp bias (#44325) fix timesfm mlp bias
[ { "path": "src/transformers/models/timesfm2_5/modeling_timesfm2_5.py", "patch": "@@ -81,8 +81,8 @@ def __init__(self, config: TimesFm2_5Config):\n super().__init__()\n self.config = config\n self.activation_fn = ACT2FN[config.activation]\n- self.fc1 = nn.Linear(config.hidden_s...
2026-02-27T13:36:12
facebook/react
8ec962d825fc948ffda5ab863e639cd4158935ba
70e998a1064cc1e8e8f9103e0c00d37fbbcf71c1
fix[devtools/ci]: fixed incorrect condition calculation for @reactVersion annotation (#26997) Suppose that you have this setup for devtools test: ``` // @reactVersion <= 18.1 // @reactVersion >= 17.1 ``` With previous implementation, the accumulated condition will be `"<= 18.1" && ">= 17.1"`, which is just `">...
[ { "path": "packages/react-devtools-extensions/src/__tests__/xGoogleIgnoreList-test.js", "patch": "@@ -13,7 +13,7 @@ import path from 'path';\n import {rimrafSync} from 'rimraf';\n \n describe('x_google_ignoreList source map extension', () => {\n- jest.setTimeout(30 * 1000);\n+ jest.setTimeout(60 * 1000);\...
2023-06-23T15:45:53
ollama/ollama
9714e38dd098a466d613edd87f3576ddd5c246f4
4378ae4ffaaf71b649efcf87a6a3f77cb923f822
fix: nil pointer dereference if cache is nil (#12215)
[ { "path": "runner/ollamarunner/cache.go", "patch": "@@ -70,11 +70,9 @@ func kvCacheTypeFromStr(s string) ml.DType {\n }\n \n func (c *InputCache) Close() {\n-\tif c == nil {\n-\t\treturn\n+\tif c != nil && c.cache != nil {\n+\t\tc.cache.Close()\n \t}\n-\n-\tc.cache.Close()\n }\n \n // Locking: Operations on...
2025-09-08T16:53:59
golang/go
850b276a6765d20bf01c44d6126386e8fb7d8a76
27c516437439c47c2479201191642bf7aaf5885b
crypto/tls: send illegal_parameter on invalid ECHClientHello.type The spec indicates that if a client sends an invalid ECHClientHello.type in ClientHelloOuter, the server will abort the handshake with a decode_error alert. Define errInvalidECHExt for invalid ECHClientHello.type. If parseECHExt returns an errInvalidEC...
[ { "path": "src/crypto/tls/ech.go", "patch": "@@ -378,7 +378,7 @@ func decodeInnerClientHello(outer *clientHelloMsg, encoded []byte) (*clientHello\n \t}\n \n \tif !bytes.Equal(inner.encryptedClientHello, []byte{uint8(innerECHExt)}) {\n-\t\treturn nil, errors.New(\"tls: client sent invalid encrypted_client_he...
2024-12-30T19:28:35
electron/electron
4f99e3e46cc09696d58b8e0aae89f2d647a79713
f39c1a35e5cac86c13ee65fbfdbefb32eeef4f5b
docs: fix `did-frame-navigate` example in webFrameMain docs (#34419) docs: fix did-frame-navigate example in webFrameMain docs
[ { "path": "docs/api/web-frame-main.md", "patch": "@@ -16,7 +16,7 @@ win.loadURL('https://twitter.com')\n \n win.webContents.on(\n 'did-frame-navigate',\n- (event, url, isMainFrame, frameProcessId, frameRoutingId) => {\n+ (event, url, httpResponseCode, httpStatusText, isMainFrame, frameProcessId, frameRo...
2022-06-06T05:49:14
vercel/next.js
de89c8cd0126fa237f21d42ca2eec2a8025a3260
5b3ba20ccaf1365bee2942ec05bf0ce948f3f576
Revert "Fix false-positive `"use cache"` misplacement error" (#79160) Reverts vercel/next.js#79151 It caused a regression like this ``` export type Foo = | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Only async functions are allowed to be exported in a "use server" file. ```
[ { "path": "crates/next-core/src/next_shared/transforms/server_actions.rs", "patch": "@@ -40,8 +40,8 @@ pub async fn get_server_actions_transform_rule(\n Ok(ModuleRule::new(\n module_rule_match_js_no_url(enable_mdx_rs),\n vec![ModuleRuleEffect::ExtendEcmascriptTransforms {\n- p...
2025-05-13T17:21:49
huggingface/transformers
fc8a65771665466d5b7abf3991d60373e23b42e2
9dd90763cdf58bfc245f370f7547da2ee0445ba3
[Quantization] Fixing mxfp4 saving using reverse_op (#43148) * fix * fix * style * update * fix * add kernels to docker * fix * fix * revert docker changes * fix --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/integrations/mxfp4.py", "patch": "@@ -125,22 +125,24 @@ def convert(\n input_dict: dict[str, torch.Tensor],\n model: torch.nn.Module | None = None,\n full_layer_name: str | None = None,\n- missing_keys=None,\n+ missing_keys: list[str] | None ...
2026-02-27T13:28:51
ollama/ollama
8149a3c86e3dca30b4883bf581757402e2f246f5
0cc90a8186359a197aa10d1dad361bc81b6ec2b2
llm: Avoid underflow in free memory logging If a GPU's free memory is less than the reserved amount, we might get an underflow. Since it is an unsigned uint64, we print this as a large number rather than the more correct 0. This only affects logging, the actual layout code already handles this correctly. Bug #12138
[ { "path": "llm/server.go", "patch": "@@ -678,8 +678,12 @@ func (s *ollamaServer) Load(ctx context.Context, gpus discover.GpuInfoList, requ\n \n \tif !(len(gpus) == 1 && gpus[0].Library == \"cpu\") {\n \t\tfor _, gpu := range gpus {\n+\t\t\tavailable := gpu.FreeMemory - envconfig.GpuOverhead() - gpu.MinimumM...
2025-09-02T17:47:33
facebook/react
0892e305bc8397fee6db6e8e14d36fcb99b49de9
f850d3b26524db907f51592dcdf5d811e6aefc2e
[eslint-plugin] Clean up error message Omits some unncessary details from the error message surfaced in eslint
[ { "path": "compiler/forget/packages/eslint-plugin-react-forget/__tests__/ReactForgetDiagnostics-test.ts", "patch": "@@ -72,7 +72,7 @@ const tests: ForgetTestCases = {\n errors: [\n {\n message:\n- \"[ReactForget] InvalidReact: Ref values (the `current` property) may not be...
2023-06-28T15:43:56
golang/go
d8ad4af78bba1f4bf2bb1ce1ace2b62bc86540fd
a76cc5a4ecb004616404cac5bb756da293818469
cmd/internal/disasm: correct instruction length handling for riscv64 disasm_riscv64 currently always returns an instruction length of four, which is not correct if compressed instructions are in use. Return the length of the decoded instruction, defaulting to two bytes if the instruction is unknown. With this change ...
[ { "path": "src/cmd/internal/disasm/disasm.go", "patch": "@@ -410,14 +410,16 @@ func disasm_ppc64(code []byte, pc uint64, lookup lookupFunc, byteOrder binary.By\n func disasm_riscv64(code []byte, pc uint64, lookup lookupFunc, byteOrder binary.ByteOrder, gnuAsm bool) (string, int) {\n \tinst, err := riscv64as...
2025-01-03T16:44:40
vercel/next.js
5b3ba20ccaf1365bee2942ec05bf0ce948f3f576
cf33e05cd39efe936c6e3398c9b2a737aa4b5f36
[build-sourcemaps] Allow inspecting prerender worker (#79098) If `--inspect` or `--inspect-brk` is specified, prerender will no longer time out since that's most likely not wanted (e.g. you'd always get timeouts if you set breakpoints). Inspecting prerender workers is best done with `experimental.cpus: 1`. Only th...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -194,10 +194,6 @@ import {\n import { FallbackMode, fallbackModeToFallbackField } from '../lib/fallback'\n import { RenderingMode } from './rendering-mode'\n import { getParamKeys } from '../server/request/fallback-params'\n-import {\n- formatNodeO...
2025-05-13T17:03:26
electron/electron
6038e42c23c238e65a8c7abdf4dbd9e953084d2f
b00c026a54da906d89f4476d122218b01b6baee9
fix: fullscreen windows aren't resizable on macOS (#34379)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -167,6 +167,7 @@ class NativeWindowMac : public NativeWindow,\n void UpdateVibrancyRadii(bool fullscreen);\n \n // Set the attribute of NSWindow while work around a bug of zoom button.\n+ bool HasStyleMask(NSUInteger flag) const;\n void SetS...
2022-06-03T07:47:19
ollama/ollama
0cc90a8186359a197aa10d1dad361bc81b6ec2b2
e42300f25b646c2b261261758edbacebd40f00f0
harden uncaught exception registration (#12120)
[ { "path": "llama/patches/0025-harden-uncaught-exception-registration.patch", "patch": "@@ -0,0 +1,28 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Daniel Hiltgen <daniel@ollama.com>\n+Date: Fri, 29 Aug 2025 16:53:08 -0700\n+Subject: [PATCH] harden uncaught exception reg...
2025-09-02T16:43:55
facebook/react
f850d3b26524db907f51592dcdf5d811e6aefc2e
dda59d093a9dae733f674ba91557a2ac7c1cb61b
Improve remaining InvalidReact error messages
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -2551,9 +2551,9 @@ function lowerIdentifierForAssignment(\n if (kind === InstructionKind.Reassign) {\n // Trying to reassign a global is not allowed\n builder.errors.push({\n- reason: `(Bu...
2023-06-28T15:43:56
huggingface/transformers
9dd90763cdf58bfc245f370f7547da2ee0445ba3
fe3cb66e51f03ebb7087f2ec44dddf66c9f3d8e2
[Quantization] Add metal quantization for MPS devices! (#43934) * first commit * style * fix * fix * mlx -> metal * other fixes * add tests * fixes * weight -> qweight * fix * tests * fix style * fix * toctree * some docs * qweight -> weight * fix dtype * rm print * overview --------- Co-authored-b...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -232,6 +232,8 @@\n title: HIGGS\n - local: quantization/hqq\n title: HQQ\n+ - local: quantization/metal\n+ title: Metal\n - local: quantization/mxfp4\n title: MXFP4\n - local: quantization/optimum", "additions": 2, "deletion...
2026-02-27T13:28:29
golang/go
7a2e88e9117e838f258b175fa535f671396d13da
c112c0af1328ef0aae989ae20d27359a18f72543
net/http: update NewRequestWithContext wrong link to NewRequest Fixes #70874 Change-Id: Icbcfc95e6b45521880287dcc3bc8609461a3b401 GitHub-Last-Rev: 05276c56b019d8774e8eee881101509cf83c0f3d GitHub-Pull-Request: golang/go#70877 Reviewed-on: https://go-review.googlesource.com/c/go/+/637035 Reviewed-by: qiu laidongfeng2 <...
[ { "path": "src/net/http/request.go", "patch": "@@ -873,9 +873,9 @@ func NewRequest(method, url string, body io.Reader) (*Request, error) {\n //\n // NewRequestWithContext returns a Request suitable for use with\n // [Client.Do] or [Transport.RoundTrip]. To create a request for use with\n-// testing a Server...
2025-01-06T02:10:08
vercel/next.js
cf33e05cd39efe936c6e3398c9b2a737aa4b5f36
05ec440da8ab5fc242c023a2695986b6e29acb55
fix: cli test failed when using rspack (#79081) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ##...
[ { "path": "packages/next/src/shared/lib/get-rspack.ts", "patch": "@@ -43,6 +43,9 @@ export function getRspackReactRefresh() {\n }\n \n function warnRspack() {\n+ if (process.env.__NEXT_TEST_MODE) {\n+ return\n+ }\n warnOnce(\n `\\`next-rspack\\` is currently experimental. It's not an official Nex...
2025-05-13T16:25:18
electron/electron
b00c026a54da906d89f4476d122218b01b6baee9
eb26f99f6efcc10048e80f58f60f9453e2171aee
fix: render process crash handling (#34428) * fix: crash when renderer process is reused Could occur when a renderer crashes and the same-origin URL is loaded again which leads to reusing the renderer process. * test: renderer process crash recovery * fix: handle case which leads to render frame DCHECK * ...
[ { "path": "shell/browser/api/electron_api_web_frame_main.cc", "patch": "@@ -188,13 +188,20 @@ const mojo::Remote<mojom::ElectronRenderer>& WebFrameMain::GetRendererApi() {\n }\n \n void WebFrameMain::MaybeSetupMojoConnection() {\n+ if (render_frame_disposed_) {\n+ // RFH may not be set yet if called bet...
2022-06-03T00:23:01
facebook/react
dda59d093a9dae733f674ba91557a2ac7c1cb61b
3fb89373913009eca2a7810d6d1729de414b5379
Add InvalidJS error severity
[ { "path": "compiler/forget/apps/playground/lib/forgetMonacoDiagnostics.ts", "patch": "@@ -19,10 +19,9 @@ function mapForgetSeverityToMonaco(\n ): MarkerSeverity {\n switch (level) {\n case ErrorSeverity.Todo:\n- case ErrorSeverity.InvalidInput:\n- return monaco.MarkerSeverity.Error;\n- defa...
2023-06-28T15:43:55
ollama/ollama
e42300f25b646c2b261261758edbacebd40f00f0
66e73809a1eff2568711739541474f55222d31d3
ml: fix struct field name in comment (#12123)
[ { "path": "ml/backend.go", "patch": "@@ -266,7 +266,7 @@ func (m DeviceMemory) LogValue() slog.Value {\n // allocation is guaranteed to be provided so that if it failed, the caller can\n // accommodate that to make forward progress.\n type BackendMemory struct {\n-\t// InputsWeights are always located on th...
2025-08-31T23:26:11
golang/go
f966695ccea356e4e4e8cc0328276e2d00c9fc1e
5da026354c0229c5a61dbe907c080cef7adc11bc
context: use "canceled" in docs to refer to timed-out contexts In documentation, we've usually but not always referred to a context with a closed Done channel as "done" rather than "canceled", to avoid ambiguity between a context canceled by calling a CancelFunc and one past its deadline. This actually adds ambiguity...
[ { "path": "src/context/context.go", "patch": "@@ -10,23 +10,25 @@\n // calls to servers should accept a Context. The chain of function\n // calls between them must propagate the Context, optionally replacing\n // it with a derived Context created using [WithCancel], [WithDeadline],\n-// [WithTimeout], or [W...
2025-01-03T19:47:39
huggingface/transformers
fe3cb66e51f03ebb7087f2ec44dddf66c9f3d8e2
a264509c73785467bd6e4b1fc1731d06d5b09940
Timesfm 2.5 (#41763) * init * initial modules * initial model * fix config * compare * rope embedding * normalization * fix scale * add _scale_query * revin * get rid of magic numbers * use configs * scaling=1 * fix Timesfm2P5MLP * normalization * wip * update for v5 * updated docs * Delete convert_t...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1328,6 +1328,8 @@\n title: Time Series Transformer\n - local: model_doc/timesfm\n title: TimesFM\n+ - local: model_doc/timesfm2_5\n+ title: TimesFM2.5\n title: Time series models\n title: Models\n - sections...
2026-02-27T11:59:54
facebook/react
3fb89373913009eca2a7810d6d1729de414b5379
448ed2b67b7bbfe2882aadf9eb92e252a0ff4b1f
Add first example of error suggestion
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -10,6 +10,7 @@ import * as t from \"@babel/types\";\n import {\n CompilerError,\n CompilerErrorDetail,\n+ CompilerSuggestionOperation,\n ErrorSeverity,\n } from \"../CompilerError\";\n import { Gene...
2023-06-27T18:01:40
electron/electron
539a53786c591f0f2009ebcdb5b045ad6e13bd80
000c3d981ce3b5c03e478f8c92a1506625ed06ed
chore: remove redundant @available checks (#34407) * chore: require macOS 10.13 for Chromium * chore: fix lint
[ { "path": "shell/browser/api/electron_api_system_preferences_mac.mm", "patch": "@@ -423,17 +423,14 @@ AVMediaType ParseMediaType(const std::string& media_type) {\n }\n \n bool SystemPreferences::CanPromptTouchID() {\n- if (@available(macOS 10.12.2, *)) {\n- base::scoped_nsobject<LAContext> context([[LAC...
2022-06-02T18:43:40
ollama/ollama
ead4a9a1d073bdc2f175e429daa85f0e3a66fda7
4383a3ab7a075eff78b31f7dc84c747e2fcd22b8
Always filter devices (#12108) * Always filter devices Avoid crashing on unsupported AMD iGPUs * Remove cuda device filtering This interferes with mixed setups
[ { "path": "discover/amd_linux.go", "patch": "@@ -277,6 +277,7 @@ func AMDGetGPUInfo() ([]RocmGPUInfo, error) {\n \t\t\t\t\tFreeMemory: (totalMemory - usedMemory),\n \t\t\t\t},\n \t\t\t\tID: ID,\n+\t\t\t\tfilterID: gpuOrdinalID,\n \t\t\t\tName: name,\n \t\t\t\tCompute: fmt.Spr...
2025-08-29T19:17:31
golang/go
31cabcf08429be71299975f7961822d26f8ea389
eb0c2b2f96d9590631c0fd502a6c570635399f0a
crypto/internal/fips140: mark OpenBSD unsupported Since OpenBSD 7.3, external linking uses -fexecute-only, which breaks the integrity check. Since we are not validating on OpenBSD anyway, mark it as unsupported at least for now. Fixes #70880 Change-Id: I6a6a4656b6c7a97c0962b4158d920f9e6b19678e Reviewed-on: https://g...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1812,6 +1812,7 @@ func (t *tester) fipsSupported() bool {\n \tcase goarch == \"wasm\",\n \t\tgoos == \"windows\" && goarch == \"386\",\n \t\tgoos == \"windows\" && goarch == \"arm\",\n+\t\tgoos == \"openbsd\",\n \t\tgoos == \"aix\":\n \t\treturn false\n \t}", ...
2025-01-01T14:08:28
huggingface/transformers
a264509c73785467bd6e4b1fc1731d06d5b09940
7d511b6a22f2b1e652c1d6e00eec43edfb30a81c
fix zero3 init config (#44236) * fix zero3 init config * Fix ZeRO-3 weight initialization in `_from_config()` When using `from_config()` with DeepSpeed ZeRO-3, `_init_weights()` silently operated on partitioned empty tensors, making custom initialization a no-op. Parameters retained PyTorch's default kaiming_uniform...
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -290,6 +290,41 @@ def deepspeed_config():\n return None\n \n \n+def initialize_weights_zero3(model):\n+ \"\"\"\n+ DeepSpeed ZeRO-3 variant of `PreTrainedModel.initialize_weights`. Mirrors the `smart_apply`\n+ dispatch logi...
2026-02-27T11:36:17
electron/electron
1cd07c565a87ced6a923ade76eda380367e5ce1f
f306fbc01056256864d49be4ddff882245662cdf
fix: crash in WebFrameMain mojo connection when RenderFrameHost is nullptr (#34411) * fix: crash when RenderFrameHost is nullptr * chore: lint fix Co-authored-by: samuelmaddock <samuel.maddock@gmail.com>
[ { "path": "shell/browser/api/electron_api_web_frame_main.cc", "patch": "@@ -193,8 +193,13 @@ void WebFrameMain::MaybeSetupMojoConnection() {\n renderer_api_.set_disconnect_handler(base::BindOnce(\n &WebFrameMain::OnRendererConnectionError, weak_factory_.GetWeakPtr()));\n }\n+\n+ // Render fra...
2022-06-01T23:03:04
facebook/react
448ed2b67b7bbfe2882aadf9eb92e252a0ff4b1f
c3d678985734c3657a551b88e03bbfca36228ae8
Refactor CompilerErrorDetails - Made most static methods on CompilerError take a single options object as an argument. With the exception of invariant which takes a condition and an options object. - Added a new `suggestions` field on CompilerErrorDetail, which we'll use to provide eslint suggestions - Updated...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -6,7 +6,6 @@\n */\n \n import type { SourceLocation } from \"./HIR\";\n-import type { ExtractClassProperties } from \"./Utils/types\";\n import { assertExhaustive } from \"./Utils/utils\";\n \n export enum Err...
2023-06-27T18:01:39
ollama/ollama
1081532430c68c95e84024af1b4830d48029f02b
59412fbb436f85f62b41231c1df91d1ebe286431
fix keep alive (#12041)
[ { "path": "api/types.go", "patch": "@@ -888,7 +888,7 @@ func (d *Duration) UnmarshalJSON(b []byte) (err error) {\n \t\tif t < 0 {\n \t\t\td.Duration = time.Duration(math.MaxInt64)\n \t\t} else {\n-\t\t\td.Duration = time.Duration(int(t) * int(time.Second))\n+\t\t\td.Duration = time.Duration(t * float64(time...
2025-08-27T18:51:25