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
81ab1ffc14a4454dae13dac4318bec2aab9c2f2c
d14df6cc29b4b765952ac8adf0963d6854b79531
[dev-overlay] Inject `isRecoverableError` implementation (#80003) Same as with `get*Stack` implementation
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -45,6 +45,7 @@ import reportHmrLatency from '../utils/report-hmr-latency'\n import { TurbopackHmr } from '../utils/turbopack-hot-reloader-common'\n import { NEXT_HMR_REFRESH_HASH_COOKIE } from '../../...
2025-06-03T15:24:20
facebook/react
f9d75e32ba85b3c6a2a5d20fa27ba7e23d5529b2
9ba1bbd6568f170dfbc31e05d7ee88e3d9101523
fix[devtools/extension]: added a workaround for proxy content script injection in firefox (#27375) Changes: 1. [Firefox-only] For some reason, Firefox might try to inject dynamically registered content script in pages like `about:blank`. I couldn't find a way to change this behaviour, `about:` is not a valid schem...
[ { "path": "packages/react-devtools-extensions/src/background/index.js", "patch": "@@ -60,6 +60,12 @@ function isNumeric(str: string): boolean {\n \n chrome.runtime.onConnect.addListener(port => {\n if (port.name === 'proxy') {\n+ // Might not be present for restricted pages in Firefox\n+ if (port.se...
2023-09-22T18:36:03
electron/electron
532162d2b5b0e05c1bca3d08e30c4e2b9387ac04
30bdede09fbb74e652f6884942cdeb739d24e6c1
fix: EventEmitter is missing properties in sandbox preload script. (#35522)
[ { "path": "package.json", "patch": "@@ -45,6 +45,7 @@\n \"eslint-plugin-node\": \"^11.1.0\",\n \"eslint-plugin-standard\": \"^4.0.1\",\n \"eslint-plugin-typescript\": \"^0.14.0\",\n+ \"events\": \"^3.2.0\",\n \"express\": \"^4.16.4\",\n \"folder-hash\": \"^2.1.1\",\n \"fs-extra\":...
2022-09-15T16:33:08
huggingface/transformers
4cac50ff5414dd0b591e6d5fc1c5ca3f32a20a16
a7e73cdf6f9ffe65e5eeb4949379dcc00cadd209
fix: sig lip import (#44764) * fix: sig lip import * remove test fetcher failures silencing
[ { "path": ".circleci/config.yml", "patch": "@@ -46,7 +46,7 @@ jobs:\n - run: uv pip install -U -e .\n - run: echo 'export \"GIT_COMMIT_MESSAGE=$(git show -s --format=%s)\"' >> \"$BASH_ENV\" && source \"$BASH_ENV\"\n - run: mkdir -p test_preparation\n- - run: py...
2026-03-16T17:21:45
ollama/ollama
d475d1f081e5455dcfdf9e958619223565b9bf52
d2f334c1f7822efe3470f41720dc121e5b19e891
fix: qwen2.5vl metal argsort
[ { "path": "llama/patches/0013-add-argsort-and-cuda-copy-for-i32.patch", "patch": "@@ -4,12 +4,12 @@ Date: Thu, 1 May 2025 13:45:12 -0700\n Subject: [PATCH] add argsort and cuda copy for i32\n \n ---\n- ggml/src/ggml-cpu/ops.cpp | 43 ++++++++++\n- ggml/src/ggml-cuda/argsort.cu | 122 ++++++...
2025-12-08T21:17:03
facebook/react
7b58600fb928dae935e85182c2142629af38dfe5
b9275f65bc77824b4f938637a8c4f972a5e21e21
[tests] Repros for bugs and todos
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-lambda-array-access-member-expr.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+import { invoke } from \"shared-runtime\";\n+\n+function Foo() {\n+ const x = [{ value: 0 }, { value: 1 ...
2023-09-22T02:38:40
golang/go
beac2f7d3b72ecaff146b98afb690489f0192422
c62c69dd5c1af0e25c76071f8987480680f09222
cmd/compile: fix sign extension of paired 32-bit loads on arm64 Fixes #71759 Change-Id: Iab05294ac933cc9972949158d3fe2bdc3073df5e Reviewed-on: https://go-review.googlesource.com/c/go/+/649895 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@go...
[ { "path": "src/cmd/compile/internal/arm64/ssa.go", "patch": "@@ -516,7 +516,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tssagen.AddAux(&p.From, v)\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = v.Reg()\n-\tcase ssa.OpARM64LDP, ssa.OpARM64LDPW, ssa.OpARM64FLDPD, ssa.OpARM64FLDPS:\n+\tcase ss...
2025-02-15T00:13:44
vercel/next.js
602a5a63fef85af888dd17cfcad7aa9ff10a9c08
447f20e5efaebb35b5e59f6147f288730f149d74
[dev-overlay] Fix dark‐mode styling for `<option>` in Preferences dropdowns (#80025) When Preferences is in dark mode, `<option>` items in the `<select>` components were using the browser’s native white panel with white text, making them unreadable. This change explicitly adds CSS styles to the `<option>` items so th...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/dev-tools-info/user-preferences.tsx", "patch": "@@ -270,6 +270,11 @@ export const DEV_TOOLS_INFO_USER_PREFERENCES_STYLES = css`\n select {\n all: unset;\n }\n+\n+ option {\n+ color...
2025-06-03T15:06:24
electron/electron
c847229a7ef10e94f9ebf62984e1445c97ffc087
62502b893706f5ddc7c577256c0e298d9aeaf22d
docs: Markdown linting and typo (#35568) * Fix reference definitions should be needed * typo * typo * typo and style * Fix reference definitions should be needed * Fix typo * restore to previous
[ { "path": "docs/experimental.md", "patch": "@@ -20,4 +20,4 @@ happen at an API WG meeting. Things to consider when discussing / nominating:\n * During that time no major bugs / issues should have been caused by the adoption of this feature\n * The API is stable enough and hasn't been heavily impacted by Ch...
2022-09-13T20:49:11
huggingface/transformers
a7e73cdf6f9ffe65e5eeb4949379dcc00cadd209
bfe00b41ebdb66b92ca40a8c81778dae3acdaccf
Disable async loading when quantizing on the fly (#44576) * better logic * fix * better now * Apply repo consistency fixes * Apply suggestion from @Cyrilvallez Co-authored-by: Cyril Vallez <cyril.vallez@huggingface.co> * fix * Apply repo consistency fixes --------- Co-authored-by: github-actions[bot] <github-...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -791,7 +791,10 @@ def _materialize_copy(tensor: torch.Tensor, device=None, dtype=None) -> torch.Te\n \n \n def spawn_materialize(\n- thread_pool: ThreadPoolExecutor | None, tensor: torch.Tensor, device=None, dtype=None\n+ thread_pool: Th...
2026-03-16T16:30:29
facebook/react
b9275f65bc77824b4f938637a8c4f972a5e21e21
8b679e9138025c8e632b8b89d0bf3f4835bcfc18
[ez] Add TODO bailout on non-backward compatible holey arrays --- (pasted from comment) Instead of handling holey arrays, bail out with a TODO error. Older versions of babel seem to have inconsistent handling of holey arrays, at least when paired with HermesParser. When using these versions, we should bail ou...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1385,6 +1385,14 @@ function lowerExpression(\n elements.push({\n kind: \"Hole\",\n });\n+ if (builder.environment.bailoutOnHoleyArrays) {\n+ builder.errors.push({\n+...
2023-09-22T00:54:58
vercel/next.js
447f20e5efaebb35b5e59f6147f288730f149d74
6d8bcd6255e805baf534c08f4f026879d82dd9fe
[dev-tools] Re-focus previous item after closing sub menu (#80099) This PR fixes a small bug with the menu keyboard interactions. Namely, if you open a sub-menu and close it, visually the correct item is highlighted but does not respond when pressing Enter. The bug is visible here on this video: https://github.com...
[ { "path": "packages/next/src/client/components/react-dev-overlay/ui/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -219,18 +219,21 @@ function DevToolsPopover({\n dispatch({ type: ACTION_ERROR_OVERLAY_TOGGLE })\n }\n \n- function openRootMenu() {\n- setOpen((prevOpen)...
2025-06-03T14:43:17
ollama/ollama
e082d60a2406d54cc8c13d7e408f08818e7939d1
5dae738067414d235ee386abd690faf1a8da9ff4
truncation: fixed runner truncation logic + removed server truncation (#12839) This PR consolidates all embedding prompt-length checking, truncation, and prompt token counting into the runner to ensure a single source of truth.
[ { "path": "integration/embed_test.go", "patch": "@@ -4,7 +4,9 @@ package integration\n \n import (\n \t\"context\"\n+\t\"errors\"\n \t\"math\"\n+\t\"strings\"\n \t\"testing\"\n \t\"time\"\n \n@@ -204,8 +206,8 @@ func TestAllMiniLMEmbed(t *testing.T) {\n \t\tt.Fatalf(\"expected %v, got %v (similarity: %f)\",...
2025-12-08T19:20:28
golang/go
10cef816aa9769345016c04032090ae7f5851f5c
7b7307f632052c0ab3752f24f6d787b281bb5b99
internal/godebugs: add fips140 as an opaque godebug setting This permits using "godebug fips140=on" in go.mod and using "//go:debug fips140=on" in the main package. Change code references to the godebug setting to remove the # which is no longer required. For #71666 Change-Id: I3a60ecc55b03848dadd6d431eb43137b6df65...
[ { "path": "src/crypto/fips140/fips140.go", "patch": "@@ -10,7 +10,7 @@ import (\n \t\"internal/godebug\"\n )\n \n-var fips140GODEBUG = godebug.New(\"#fips140\")\n+var fips140GODEBUG = godebug.New(\"fips140\")\n \n // Enabled reports whether the cryptography libraries are operating in FIPS\n // 140-3 mode.",...
2025-02-13T22:40:01
huggingface/transformers
bfe00b41ebdb66b92ca40a8c81778dae3acdaccf
f842abaca95a7dbf3fc6e16122e7409109bc1431
Bump torchao >=0.15 and fix quantization CI (#44604) * Fix * update expected * fix fp_quant * fix metal * fix mxfp4 * fix * fix bnb * style * bump torchao to 0.15.0 min to have safetensor support by default * style * fix torchao tests * Fix ! * style * update docs * update dockerfile * build quant docke...
[ { "path": "docker/transformers-quantization-latest-gpu/Dockerfile", "patch": "@@ -78,6 +78,7 @@ RUN python3 -m pip uninstall -y flash-attn\n RUN cd transformers && python3 setup.py develop\n \n # Add fouroversix for quantization testing\n+RUN python3 -m pip install --no-cache-dir --upgrade setuptools wheel\...
2026-03-16T16:01:38
electron/electron
62502b893706f5ddc7c577256c0e298d9aeaf22d
12a7d7eea52409ce02af6d5f51f8208f483f24d2
fix: allow maximizing when window enters tablet mode with WCO (#35617) * fix: Backport CL 3753528 for WCO * Update comment * Update shell/browser/ui/views/win_caption_button_container.cc Co-authored-by: Robo <hop2deep@gmail.com> Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -159,10 +159,11 @@ void WinCaptionButtonContainer::UpdateButtons() {\n const bool is_touch = ui::TouchUiController::Get()->touch_ui();\n restore_button_->SetEnabled(!is_touch);\n \n- // The maximize button should only be e...
2022-09-13T20:41:23
facebook/react
8b679e9138025c8e632b8b89d0bf3f4835bcfc18
1ce952e687b7d2031bf3d6aa69f917506bc2c2cb
[ez] Fix prettier not formatting test fixtures in vscode This was super annoying. Turns out we had a top level directory for old projects called fixtures that shared a name with our fixture directories.
[ { "path": "compiler/.prettierignore", "patch": "@@ -1,4 +1,4 @@\n-fixtures/\n+.fixtures/\n bench/\n **/dist\n **/__tests__/fixtures/**/*.expect.md", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2023-09-21T21:04:25
vercel/next.js
6d8bcd6255e805baf534c08f4f026879d82dd9fe
4172a4f4cc0ca2178711e9bf06d8e76630dc9173
[dev-overlay] Inject `get*Stack` implementation (#79789) The stitched-errors module will live in a different layer than the dev-overlay. In that future we need to pass the `get*Stack` implementations to the dev-overlay. Right now it's not meaningful but makes future diffs smaller.
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -44,6 +44,7 @@ import type { DevIndicatorServerState } from '../../../../server/dev/dev-indicat\n import reportHmrLatency from '../utils/report-hmr-latency'\n import { TurbopackHmr } from '../utils/tu...
2025-06-03T14:27:05
ollama/ollama
0c787231741eaa2e6d5b145e8565a62364a852b3
5a41d69b2ab7d133a27e4f6d5666982c73a5b5ad
readme: fix broken Swollama link in community integrations (#13370)
[ { "path": "README.md", "patch": "@@ -555,7 +555,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Parakeet](https://github.com/parakeet-nest/parakeet) is a GoLang library, made to simplify the development of small generative AI applications with Ollama.\n - [Haverscript](https://github...
2025-12-08T05:49:52
golang/go
5f65e5cb56f98381970de5485e704f3c7e20ca9a
11f7ea8ce045c27956fcbffcc98e8987f9fb9743
doc/godebug: mention GODEBUG=fips140 Fixes #71666 Change-Id: Ice816cf2943c5b6660f05934b4c7ca38545714b0 Reviewed-on: https://go-review.googlesource.com/c/go/+/648520 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: ...
[ { "path": "doc/godebug.md", "patch": "@@ -153,6 +153,17 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n ### Go 1.24\n \n+Go 1.24 added a new `fips140` setting that controls whether the Go\n+Cryptographic Module operates in FIPS 140-3 mode.\n+The possible values are:\n+- \"off...
2025-02-11T23:53:20
huggingface/transformers
f842abaca95a7dbf3fc6e16122e7409109bc1431
39f751a538ca67932cab53e6eb5763243674ae2c
Fix tensor indexing crash in serve generate_response KV cache continuation (#44735) The `generate_response` method indexes `inputs` as a dict (`inputs["input_ids"]`) but `inputs` is already the raw `input_ids` tensor at that point. This causes a TypeError on the second request in a conversation session when KV cache r...
[ { "path": "src/transformers/cli/serve.py", "patch": "@@ -1328,7 +1328,7 @@ def generate_response(self, req: dict) -> Generator[str, None, None]:\n last_kv_cache = None\n if self.is_continuation(req) and not must_discard_cache:\n seq_len = self.last_kv_cache.get_seq_length()\n- ...
2026-03-16T15:22:27
vercel/next.js
fdc82f5c32b1ca0d723e682ba852ad0a0c8c1477
6d7523a58b12f9c36c2c07d86c2a0a744d18b9ef
Remove obsolete `@ts-expect-error` (#80065) <!-- 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 ### Im...
[ { "path": "packages/next/src/client/image-component.tsx", "patch": "@@ -314,7 +314,7 @@ function ImagePreload({\n isAppRouter: boolean\n imgAttributes: ImgProps\n }) {\n- const opts = {\n+ const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSi...
2025-06-03T12:53:35
facebook/react
56b14477e902ac076018be2e7bf2ea3092ac9e7d
68ac6dbcf8d58a67e94e9061395dd96a52d92377
fix[devtools/useTransition]: don't check for dispatch property when determining if hook is stateful (#27365) https://github.com/facebook/react/pull/26740 introduced regression: React DevTools doesn't record updates for `useTransition` hook. I can add more details about things on DevTools side, if needed. The root...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -1419,22 +1419,20 @@ export function attach(\n \n const boundHasOwnProperty = hasOwnProperty.bind(queue);\n \n- // Detect the shape of useState() or useReducer()\n+ // Detect the shape of useState() / useReducer() / u...
2023-09-21T20:26:20
ollama/ollama
31b8c6a214dbfd7f1c711869572301ef7bf41b58
9191dfaf05eaccda149cff937fb180bdb87ee5d1
fix(api): correct Content-Type header for /api/chat and /api/generate when using cloud models (#13279) --------- Co-authored-by: Pogosyan Sos <sos_pogosyan@MacBook-Pro-Sos.local> Co-authored-by: Patrick Devine <patrick@infrahq.com>
[ { "path": "server/routes.go", "patch": "@@ -262,6 +262,12 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\t\tslog.Warn(\"embedded messages in the model not supported with '/api/generate'; try '/api/chat' instead\")\n \t\t}\n \n+\t\tcontentType := \"application/x-ndjson\"\n+\t\tif req.Stream != ni...
2025-12-05T05:33:07
electron/electron
12a7d7eea52409ce02af6d5f51f8208f483f24d2
9f97c3e50a11b364f02f57209854bb4000ac1136
fix: remove extra dot in extension (#35618)
[ { "path": "shell/browser/electron_download_manager_delegate.cc", "patch": "@@ -99,14 +99,14 @@ bool GetRegistryDescriptionFromExtension(const std::string& file_ext,\n // Set up a filter for a Save/Open dialog, |ext_desc| as the text descriptions\n // of the |file_ext| types (optional), and (optionally) the ...
2022-09-13T18:47:04
golang/go
11f7ea8ce045c27956fcbffcc98e8987f9fb9743
2299a4289d69c71573fd22350eea0677639e563c
cmd/compile: add type-based alias analysis Make ssa.disjoint call ssa.disjointTypes to disambiguate Values based on their types. Only one type-based rule is employed: a Type can't alias with a pointer (https://pkg.go.dev/unsafe#Pointer). Fixes #70488 Change-Id: I5a7e75292c2b6b5a01fb9048e3e2360e31dbcdd9 Reviewed-on: ...
[ { "path": "src/cmd/compile/internal/rttype/rttype.go", "patch": "@@ -50,26 +50,26 @@ func Init() {\n \t// Note: this has to be called explicitly instead of being\n \t// an init function so it runs after the types package has\n \t// been properly initialized.\n-\tType = fromReflect(reflect.TypeOf(abi.Type{})...
2024-11-27T17:47:58
vercel/next.js
6d7523a58b12f9c36c2c07d86c2a0a744d18b9ef
ebcec54e03e7269767f2de2a0a6ed38e7e2588da
[dev-overlay] Parse stacks in reducer not during dispatch (#79788) In the reducer we'll later inject the implementation of `get*Stack`. The reducer will live in a different module than `stitched-errors` so we need to make sure `get*Stack` is a singleton. Dependency injection makes this easier to achieve. `getOwnerS...
[ { "path": "packages/next/src/client/components/react-dev-overlay/app/hot-reloader-client.tsx", "patch": "@@ -20,7 +20,6 @@ import {\n reportInvalidHmrMessage,\n useErrorOverlayReducer,\n } from '../shared'\n-import { parseStack } from '../utils/parse-stack'\n import { AppDevOverlay } from './app-dev-ove...
2025-06-03T12:23:21
facebook/react
3c27178a2f2c74f14d90613028e3929e1f06d830
2b3d5826836ac59f8446281976762d594e55d97e
Update tracked value after resetting radio group (#27394) Fixes #26876, I think. Review each commit separately (all assertions pass in main already, except the last assertInputTrackingIsClean in "should control radio buttons"). I'm actually a little confused on two things here: * All the isCheckedDirty assertion...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -388,10 +388,6 @@ export function restoreControlledInputState(element: Element, props: Object) {\n );\n }\n \n- // We need update the tracked value on the named cousin since the value\n- // was changed ...
2023-09-21T04:57:09
electron/electron
200153da8e30bad1ffee3fefad03b1fadd6f9a74
71ba841f0af07a341ba3d34030f240cba5582bc0
docs: fix typescript error in code samples (#35641) Fixed typescript error
[ { "path": "docs/fiddles/features/web-serial/main.js", "patch": "@@ -33,12 +33,16 @@ function createWindow () {\n if (permission === 'serial' && details.securityOrigin === 'file:///') {\n return true\n }\n+ \n+ return false\n })\n \n mainWindow.webContents.session.setDevicePermissionH...
2022-09-13T16:38:06
golang/go
bad791343f50a165e27f9f9bda6ba42af05b1869
1959703dddffef61760d5d4fdedc4df8d2d73438
internal/syscall/unix: correct fchmodat on openbsd This is incorrectly calling the fchownat trampoline - call fchmodat as intended. Change-Id: I7b1e758d456006303ca95b70df9e6b52d3020158 Reviewed-on: https://go-review.googlesource.com/c/go/+/649655 Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Bypass: Damien N...
[ { "path": "src/internal/syscall/unix/at_openbsd.go", "patch": "@@ -81,7 +81,7 @@ func Fchownat(dirfd int, path string, uid, gid int, flags int) error {\n \tif err != nil {\n \t\treturn err\n \t}\n-\t_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_fchmodat_trampoline),\n+\t_, _, errno := syscall_syscall6...
2025-02-14T17:45:04
vercel/next.js
ebcec54e03e7269767f2de2a0a6ed38e7e2588da
f94e9b463c096b05b5e5aaa207e46b73b3478b93
docs: Manual calls to action should we wrapped in startTransition (#80101) Fixes: #78063 As noted, not wrapping in `startTransition`, doesn't really work as expected, for example `isPending` is not updated at all.
[ { "path": "docs/01-app/01-getting-started/10-updating-data.mdx", "patch": "@@ -259,15 +259,15 @@ While executing a Server Function, you can show a loading indicator with React's\n ```tsx filename=\"app/ui/button.tsx\" switcher\n 'use client'\n \n-import { useActionState } from 'react'\n+import { useActionSt...
2025-06-03T12:13:55
electron/electron
ef463b39be2d9f5a536730de57e8827a794f38cf
6ec4c7e563c4bf59abb684e593bc6c0e0ee921c6
docs: Use inline image link in faq.md (#35413) * Use absolute URL in faq.md image link The relative link is rendered relative to the host domain, which works fine when viewing it on Github, but since you also use the same generated HTML in your doc site, the link is broken. See here: https://www.electronjs.org/docs...
[ { "path": "docs/faq.md", "patch": "@@ -135,7 +135,7 @@ is only available in renderer processes.\n \n If [sub-pixel anti-aliasing](https://alienryderflex.com/sub_pixel/) is deactivated, then fonts on LCD screens can look blurry. Example:\n \n-![subpixel rendering example]\n+![Subpixel rendering example](imag...
2022-09-12T23:09:12
facebook/react
1f4936660dcaba2e5722013f0ad12d7369543a9f
b775564d35d6fe9f9acead0f380bbc86bb6bdd2c
[Fizz] Allow passing a reason to `abortStream` (#26992) ## Summary Currently `ReactFizzServer.abort` allows you to pass in the a `reason` error, which then gets passed to the `onError` handler for each task that ends up getting aborted. This adds in the ability to pass down that same `reason` error to `ReactDOMS...
[ { "path": "packages/react-server-dom-fb/src/ReactDOMServerFB.js", "patch": "@@ -81,8 +81,8 @@ function renderToStream(children: ReactNodeList, options: Options): Stream {\n };\n }\n \n-function abortStream(stream: Stream): void {\n- abort(stream.request);\n+function abortStream(stream: Stream, reason: mi...
2023-09-20T20:41:12
golang/go
1959703dddffef61760d5d4fdedc4df8d2d73438
8c05e020d534a407c20a3e672971be3aabe2ee9c
syscall: skip testAmbientCaps tests if there is no nobody user When there is not a nobody user (for example inside Docker), the tests TestAmbientCaps and TestAmbientCapsUserns should be skipped instead of failing. Fixes #71644 Change-Id: I7f92db19e2b6f449d8d897650a0ecd89f5150f4a GitHub-Last-Rev: a4c4f5bb61929b4981dc...
[ { "path": "src/syscall/exec_linux_test.go", "patch": "@@ -646,7 +646,7 @@ func testAmbientCaps(t *testing.T, userns bool) {\n \n \tu, err := user.Lookup(\"nobody\")\n \tif err != nil {\n-\t\tt.Fatal(err)\n+\t\tt.Skip(\"skipping: the nobody user does not exist; see Issue 71644\")\n \t}\n \tuid, err := strcon...
2025-02-14T10:14:29
huggingface/transformers
39f751a538ca67932cab53e6eb5763243674ae2c
96f807a33b75ef2533e52473709e9f5d3b192867
:rotating_light: Validate config attributes (#41250) * initial commit * just push for now * maybe not do it for all models, lets see how many models fail now * update * lets see what esle fails now * nit * style * delete rope validation * bart * make style * provate rope valid for now, hub complains * more ...
[ { "path": "examples/modular-transformers/modeling_new_task_model.py", "patch": "@@ -336,7 +336,7 @@ def forward(\n output_hidden_states = (\n output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states\n )\n- return_dict = return_dict if ...
2026-03-16T13:39:29
ollama/ollama
0cf7794b16fab8d4561bc5f6379f6d48bd59e101
854d40edc5c5894014a9aea28fcca7b7aeba83bb
ggml update to b7108 (#12992) * Revert "vulkan: temporary cary of vulkan fixes (#12971)" This reverts commit 3a9e8e9fd42f32711b8aeea355e3ed5e155d49b2. * ggml update to b7087 * fix argsort on metal * update to b7108 * fix bakllava regression This model lacks the metadata for the projector type. * update to b7209...
[ { "path": "Makefile.sync", "patch": "@@ -1,6 +1,6 @@\n UPSTREAM=https://github.com/ggml-org/llama.cpp.git\n WORKDIR=llama/vendor\n-FETCH_HEAD=3cfa9c3f125763305b4226bc032f1954f08990dc\n+FETCH_HEAD=7f8ef50cce40e3e7e4526a3696cb45658190e69a\n \n .PHONY: help\n help:", "additions": 1, "deletions": 1, ...
2025-12-04T03:43:29
vercel/next.js
669a8ca5390dadead6835b63bc8cffdae7550c79
3a0af1410999f59c7b8f5740a97a0759e9cf13e8
Fix(turbopack): Resolve experimentalDecorators from extended tsconfig (#79755) Co-authored-by: Jude Gao <jude.gao@vercel.com>
[ { "path": "crates/next-core/src/transform_options.rs", "patch": "@@ -66,51 +66,62 @@ pub async fn get_decorators_transform_options(\n ) -> Result<Vc<DecoratorsOptions>> {\n let tsconfig = get_typescript_options(project_path).await?;\n \n- let decorators_transform_options = if let Some(tsconfig) = tsc...
2025-06-03T10:25:56
facebook/react
1b1dcb8a40d002edcbca483b1f9caa78087a878f
a3743b2e444d2198972b190a9d97c3edcf370414
feat[devtools/extension]: show disclaimer when page doesnt run react and refactor react polling logic (#27373) Changes: 1. Refactored react polling logic, now each `.eval()` call is wrapped in Promise, so we can chain them properly. 2. When user has browser DevTools opened and React DevTools panels were mounted, u...
[ { "path": "packages/react-devtools-extensions/panel.html", "patch": "@@ -22,11 +22,44 @@\n right: 0;\n bottom: 0;\n }\n+ .no-react-disclaimer {\n+ margin: 16px;\n+ font-family: Courier, monospace, serif;\n+ font-si...
2023-09-20T12:30:50
electron/electron
b3a744db8a1aa85f27f4467ae2eb1a8c2eff0233
c14f52aeb708a4860ddc9c207788e4c801e58103
fix: potential "Object has been destroyed" error in BrowserWindow.getFocusedWindow (#35520)
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -72,9 +72,8 @@ BrowserWindow.getAllWindows = () => {\n \n BrowserWindow.getFocusedWindow = () => {\n for (const window of BrowserWindow.getAllWindows()) {\n- const hasWC = window.webContents && !window.webContents.isDestroyed();\n- if (!win...
2022-09-12T21:46:05
huggingface/transformers
96f807a33b75ef2533e52473709e9f5d3b192867
30adbf3f5bad10416f40ec1831bc27fefe875464
[MistralCommonBackend] Upgrade mistral-common to v1.10.0 (#44656) * [MistralCommonBackend] Support reasoning_effort and image_sizes. * Update mistral-common * Fix dependency * Move reasoning_effort argument and add doc --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
[ { "path": "setup.py", "patch": "@@ -93,7 +93,7 @@\n \"kenlm\",\n \"kernels>=0.10.2,<0.11\",\n \"librosa\",\n- \"mistral-common[image]>=1.8.8\",\n+ \"mistral-common[image]>=1.10.0\",\n \"nltk<=3.8.1\",\n \"num2words\",\n \"numpy>=1.17\",\n@@ -185,8 +185,7 @@ def deps_list(*pkgs)...
2026-03-16T12:45:32
vercel/next.js
3a0af1410999f59c7b8f5740a97a0759e9cf13e8
f6ad3dc065c14f2ae1e90eaea071cb757c2289d4
[dev-overlay] Remove unused hydration error state (#80045) Leftover from when we stopped squashing hydration errors when React 19 is used.
[ { "path": "packages/next/src/client/components/errors/hydration-error-info.ts", "patch": "@@ -1,17 +1,5 @@\n-export type HydrationErrorState = {\n- // Hydration warning template format: <message> <serverContent> <clientContent>\n- warning?: [string, string, string]\n- serverContent?: string\n- clientCon...
2025-06-03T10:24:23
ollama/ollama
84a2cedf187c7a30eb4a9ae0392e901001029e36
3f3083673496adcc0429ff213dabb0c4fcbe21a2
app: relay thinking false to server (#13319) This fixes a bug where disabling thinking on deepseek-v3.1 did not stop the model from thinking. When thinking is not defined it should not be sent to the server since this will cause error responses in some cases where the model does not support thinking. However if it is...
[ { "path": "app/ui/app/src/api.ts", "patch": "@@ -204,12 +204,10 @@ export async function* sendMessage(\n data: uint8ArrayToBase64(att.data),\n }));\n \n- // Only send think parameter when actually requesting thinking\n- // Don't send false as it causes issues with some providers\n+ // Send think pa...
2025-12-03T23:06:55
golang/go
8c05e020d534a407c20a3e672971be3aabe2ee9c
45447b4bfff4227a8945951dd7d37f2873992e1b
internal/syscall/unix: fix fchownat linkname for AIX & Solaris Typo fix: libc_chownat => libc_fchownat Change-Id: I6721a988c19e3438b967a73559159c948ed51a0e Reviewed-on: https://go-review.googlesource.com/c/go/+/649636 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-...
[ { "path": "src/internal/syscall/unix/at_libc.go", "patch": "@@ -17,7 +17,7 @@ import (\n //go:linkname procReadlinkat libc_readlinkat\n //go:linkname procMkdirat libc_mkdirat\n //go:linkname procFchmodat libc_fchmodat\n-//go:linkname procFchownat libc_chownat\n+//go:linkname procFchownat libc_fchownat\n \n ...
2025-02-14T17:06:21
electron/electron
730d9181b3de8561c1d87d82ccb923b1859122ae
b0036ea43afda71e33c1450a0dc2c96c1f8f4ce4
fix: ensure history navigations are sandboxed-iframe-aware (#35420)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1380,11 +1380,6 @@ bool WebContents::HandleContextMenu(content::RenderFrameHost& render_frame_host,\n return true;\n }\n \n-bool WebContents::OnGoToEntryOffset(int offset) {\n- GoToOffset(offset);\n- return false;\n-}\n-\n void We...
2022-09-09T00:08:56
huggingface/transformers
30adbf3f5bad10416f40ec1831bc27fefe875464
66dd6a3225c34e14fdf5bed65ee10c097eef6ec5
Fix `mlcd` auto config/model/mapping issues (#44730) * min. fix for mlcd auto config * min. fix for mlcd auto modeling * comment --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/auto/configuration_auto.py", "patch": "@@ -288,7 +288,8 @@\n (\"mistral\", \"MistralConfig\"),\n (\"mistral3\", \"Mistral3Config\"),\n (\"mixtral\", \"MixtralConfig\"),\n- (\"mlcd\", \"MLCDVisionConfig\"),\n+ (\"mlcd\", \"MLCDVisionCon...
2026-03-16T12:06:17
vercel/next.js
f6ad3dc065c14f2ae1e90eaea071cb757c2289d4
71ef3e555a167633ec21113371ae7239b68cee6d
Turbopack Build: Update manifest for #80063 fix (#80094)
[ { "path": "test/turbopack-build-tests-manifest.json", "patch": "@@ -7306,12 +7306,11 @@\n \"Middleware Runtime without i18n should validate & parse request url from any route\",\n \"Middleware Runtime without i18n should warn when using NextResponse.redirect with a relative URL\",\n \"Midd...
2025-06-03T10:10:53
facebook/react
36f979d9d46ffab8b7b77a9f57dd82928041e7e1
2fa04d128e47abb27645a90873b08369e82c9ee7
[patch] Repro and fix for duplicate import statements
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Imports.ts", "patch": "@@ -109,7 +109,12 @@ export function updateExistingReactImportDeclaration(\n let didInsertUseMemoCache = false;\n program.traverse({\n ImportDeclaration(importDeclPath) {\n- if (isNonNamespacedImportOfR...
2023-09-19T22:34:14
ollama/ollama
3f3083673496adcc0429ff213dabb0c4fcbe21a2
cc9555aff0f220748dc761a4302cfaea7c62c9fe
CUDA: filter devices on secondary discovery (#13317) We now do a deeper probe of CUDA devices to verify the library version has the correct compute capability coverage for the device. Due to ROCm also interpreting the CUDA env var to filter AMD devices, we try to avoid setting it which leads to problems in mixed vend...
[ { "path": "discover/runner.go", "patch": "@@ -147,7 +147,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\twg.Add(1)\n \t\t\tgo func(i int) {\n \t\t\t\tdefer wg.Done()\n-\t\t\t\textraEnvs := ml.GetVisibleDevicesEnv(devices[i : i+1])\n+\t\t\t\textraEnvs := ml.GetVi...
2025-12-03T20:58:16
golang/go
85f8e240fe337b145aba1de5edd2b03e759e4e38
242ef7cb05a6d406912389b6b3b6ad3bda1f7484
internal/trace: emit sync event before deferred spilled error CL 648315 and CL 648195 fixed #71615 in the case where we fail to read the next generation by emitting an extra sync event before returning an error. But, it's possible we failed to even read the next spilled batch when we read the first generation, and hav...
[ { "path": "src/internal/trace/reader.go", "patch": "@@ -22,17 +22,18 @@ import (\n // event as the first event, and a Sync event as the last event.\n // (There may also be any number of Sync events in the middle, too.)\n type Reader struct {\n-\tversion version.Version\n-\tr *bufio.Reader\n-\tla...
2025-02-13T19:45:52
electron/electron
b0036ea43afda71e33c1450a0dc2c96c1f8f4ce4
a0dbae72c8b2d192835e01798dd4241e67a5f44f
chore: bump chromium to 107.0.5286.0 (main) (#35590) * chore: bump chromium in DEPS to 107.0.5286.0 * 3866335: media: Rename KeySystemProperties to KeySystemInfo - file renaming https://chromium-review.googlesource.com/c/chromium/src/+/3866335 * 3864686: [PA] Introduce *Scan buildflag https://chromium-revi...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '107.0.5274.0',\n+ '107.0.5286.0',\n 'node_version':\n 'v16.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2022-09-08T23:23:08
huggingface/transformers
66dd6a3225c34e14fdf5bed65ee10c097eef6ec5
0832773d6302beb3b2f0b0dda54fc51e4687ad39
Fix bug and add XPU Expectations for qwen2 and jamba tests (#44733) * add XPU Expectations for qwen2 and jamba tests Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-b...
[ { "path": "src/transformers/modeling_flash_attention_utils.py", "patch": "@@ -171,8 +171,10 @@ def _lazy_imports(\n else:\n from .integrations.hub_kernels import load_and_register_attn_kernel\n \n+ # Map standard attention names to hub kernel repos\n+ kernel_repo = ...
2026-03-16T11:40:57
vercel/next.js
71ef3e555a167633ec21113371ae7239b68cee6d
f80d30058e8c3496055ab84c260713f10093ff14
suggested fix for issue #74564 (#74565) <!-- 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 ### Improv...
[ { "path": "packages/next-mdx/mdx-js-loader.js", "patch": "@@ -1,13 +1,18 @@\n const mdxLoader = require('@mdx-js/loader')\n+const { pathToFileURL } = require('node:url')\n \n function interopDefault(mod) {\n return mod.default || mod\n }\n \n async function importPlugin(plugin, projectRoot) {\n if (Arra...
2025-06-03T09:34:48
ollama/ollama
5317202c38437867bc6c9ed21ffc5c949ab6794c
d771043e88a847efae1557bee56ca14db9d8a940
llm: Don't always evict models on CPU-only systems Model eviction happens when we have at least one other model loaded and are unable to load all layers into VRAM. However, on CPU-only systems we can never load layers into VRAM, so this constantly triggered eviction. Fixes #13227
[ { "path": "llm/server.go", "patch": "@@ -874,7 +874,7 @@ func (s *llmServer) createLayout(systemInfo ml.SystemInfo, systemGPUs []ml.Devic\n \t\t}}\n \t}\n \tgpuLayers, layers := s.buildLayout(systemGPUs, memory, requireFull, backoff)\n-\terr := s.verifyLayout(systemInfo, memory, requireFull, gpuLayers, laye...
2025-11-25T22:51:02
facebook/react
2807d781a08db8e9873687fccc25c0f12b4fb3d4
925c66a6472a61e7174dabf6c697a9a320ebc170
[Fizz] Reuse rootSegmentID as the SuspenseBoundaryID (#27387) Originally the intension was to have React assign an ID to a user rendered DOM node inside a `fallback` while it was loading. If there already were an explicit `id` defined on the DOM element we would reuse that one instead. That's why this was a DOM Con...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -123,7 +123,7 @@ export type RenderState = {\n // These can be recreated from resumable state.\n placeholderPrefix: PrecomputedChunk,\n segmentPrefix: PrecomputedChunk,\n- boundaryPrefix: string,\n+ boundaryPrefix...
2023-09-18T15:56:47
golang/go
242ef7cb05a6d406912389b6b3b6ad3bda1f7484
c0d96f30e88b7ed541830a9d5a172f199d05399c
crypto/rsa: normalize GenerateKey benchmark Benchmarking key generation is a pain. The number of random candidates explored before finding a prime varies greatly, and on top of that some rejections happen in the trial divisions step and some in the Miller-Rabin step. However, we can calculate on average how many cand...
[ { "path": "src/crypto/internal/fips140/rsa/keygen.go", "patch": "@@ -167,15 +167,17 @@ func randomPrime(rand io.Reader, bits int) ([]byte, error) {\n \t\tif err := drbg.ReadWithReader(rand, b); err != nil {\n \t\t\treturn nil, err\n \t\t}\n-\t\tif excess := len(b)*8 - bits; excess != 0 {\n-\t\t\tb[0] >>= ex...
2024-12-28T21:32:59
huggingface/transformers
0832773d6302beb3b2f0b0dda54fc51e4687ad39
f074011f5c7a50d2ff038973a527923d46db6905
Add model lerobot PI0 to transformers (#44160) * let it be, as one said * smaller ish inference * some stuff * update * fixes * style * fixes * notation * improve testing a bit * fi xtests * fixes and not obvious changes * revert the last commit on capture outputs and save while it works * make it a proper...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1260,6 +1260,8 @@\n title: PerceptionLM\n - local: model_doc/phi4_multimodal\n title: Phi4 Multimodal\n+ - local: model_doc/pi0\n+ title: PI0\n - local: model_doc/pix2struct\n title: Pix2Struct\n - l...
2026-03-16T10:16:52
electron/electron
a0c20fef968ae86fc398ddaccee802ec55e56041
34cb360730000e2f046921ee0bd90f5a50987253
docs: fix misspelling in fuses (#35609)
[ { "path": "docs/tutorial/fuses.md", "patch": "@@ -52,7 +52,7 @@ For more information on how to use asar integrity validation please read the [As\n **Default:** Disabled\n **@electron/fuses:** `FuseV1Options.OnlyLoadAppFromAsar`\n \n-The onlyLoadAppFromAsar fuse changes the search system that Electron uses t...
2022-09-08T22:33:58
vercel/next.js
f80d30058e8c3496055ab84c260713f10093ff14
4e67ca6117b10691ca425c0275b91742c0124a74
Turbopack Build: Fix CSS test (#80064) ## What? Updates the check as it's slightly different with Turbopack.
[ { "path": "test/integration/css-features/test/css-modules.test.js", "patch": "@@ -56,9 +56,16 @@ describe('Custom Properties: Fail for global element in CSS Modules', () => {\n stderr: true,\n })\n expect(code).not.toBe(0)\n- expect(stderr).toContain('Failed to compile')\n- ...
2025-06-03T08:00:51
facebook/react
925c66a6472a61e7174dabf6c697a9a320ebc170
df061b396644bb7c27ea76bb27ae09784ce6444b
[Fizz] Client render the nearest child or parent suspense boundary if replay errors or is aborted (#27386) Based on #27385. When we error or abort during replay, that doesn't actually error the component that errored because that has already rendered. The error only affects any child that is not yet completed. Th...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6355,16 +6355,479 @@ describe('ReactDOMFizzServer', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Loading...</div>);\n \n- const b = new Stream.PassThrough();\n- b.setEncoding('utf8');\n- b....
2023-09-18T15:25:56
ollama/ollama
d3e0a0dee462df407c7c950db8f832c700ac8199
554172759ca56cbf2690fea50fbaa11fe2bfcd48
model: ministral w/ llama4 scaling (#13292) This change: * fixes rope scaling in the mistral converter * updates ministral to include llama4 scaling * includes a new ministral parser for parsing reasoning and tool calling --------- Co-authored-by: jmorganca <jmorganca@gmail.com>
[ { "path": ".golangci.yaml", "patch": "@@ -11,7 +11,6 @@ linters:\n - errorlint\n - exptostd\n - gocheckcompilerdirectives\n- - gocritic\n - govet\n - ineffassign\n - intrange", "additions": 0, "deletions": 1, "language": "YAML" }, { "path": "cmd/cmd.go", "p...
2025-12-02T07:20:14
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
huggingface/transformers
3491f116a0ec4def708c2fbc141ea08df16ba29b
1af62a6046ae574b719f0418fdd1d5895080d72e
Idefics3 without cache fix (#44607) * fix: Remove cache_position kwargs everywhere in idefics3 Branch: Idefics3WithoutCacheFix AI-usage: none Signed-off-by: Gabe Goodhart <ghart@us.ibm.com> * fix: Only purge pixel model inputs for subsequent turns if using cache This was the root of the incorrect results without ca...
[ { "path": "src/transformers/models/idefics2/modeling_idefics2.py", "patch": "@@ -1117,6 +1117,7 @@ def prepare_inputs_for_generation(\n image_hidden_states=None,\n logits_to_keep=None,\n is_first_iteration=False,\n+ use_cache=False,\n **kwargs,\n ):\n # Ove...
2026-03-16T09:20:00
electron/electron
4fb4167b8b42276710b658a3c62f0ebe9fffe446
17d501616368e2a0c709cbc2174de38e1781e8c3
fix: Set background for WCO container (#35569) * fix: Set background for WCO container * Add background when invalidating as well
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -14,6 +14,7 @@\n #include \"shell/browser/ui/views/win_frame_view.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n #include \"ui/strings/grit/ui_strings.h\"\n+#include \"ui/views/background.h\"\n #include \"ui/views/layout/flex_la...
2022-09-08T13:11:51
facebook/react
1879fbe644105de155eda887bfae733a5f5a80ca
bde7875f20b795ef97fec7778946ef245d4a84a9
Option to not memoize non-aliased function parameters This has been nagging at me for a _long_ time: we unnecessarily memoize function callbacks passed to things like Array.prototype.map, even though we know these functions can't escape. This PR fixes this as follows: * Adds a `noAlias?: boolean` flag to builtin ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -109,6 +109,15 @@ export type EnvironmentConfig = Partial<{\n */\n enableFunctionCallSignatureOptimizations: boolean;\n \n+ /**\n+ * Enable optimizations based on the `noAlias` flag of method signatures. Whe...
2023-09-15T23:18:03
vercel/next.js
504bfbd253a749fbc3077b045c03bd0d64d9cdd7
1aba8edea26e1dd651e4746b3e043a7c8061f58e
fix(turbopack): keep the original sourcemap of styles after source transform (#79700) ## Why The original sourcemap be lost after source transform. For example, a`xyz.sass` file processed by sass-loader, return a `xyz.sass.css`, the output css chunk only contains the sourcemap of `xyz.sass.css` produced by lightningcs...
[ { "path": "test/e2e/app-dir/scss/compilation-and-prefixing/compilation-and-prefixing.test.ts", "patch": "@@ -87,25 +87,45 @@ describe.each([\n if (process.env.IS_TURBOPACK_TEST) {\n if (dependencies.sass) {\n expect(sourceMapContentParsed).toMatchInlineSnapshot(`\n- ...
2025-06-03T05:05:16
ollama/ollama
5b6a8e6001f17fdf1929cce462493e4254e747e9
467bbc0dd5a048c0b37aa3c811d073e95ab15406
api/client: handle non-json streaming errors (#13007) While processing the response stream during a chat or generation if an error is occurred it is parsed and returned to the user. The issue with the existing code is that this assumed the response would be valid JSON, which is not a safe assumption and caused cryptic...
[ { "path": "api/client.go", "patch": "@@ -226,7 +226,14 @@ func (c *Client) stream(ctx context.Context, method, path string, data any, fn f\n \n \t\tbts := scanner.Bytes()\n \t\tif err := json.Unmarshal(bts, &errorResponse); err != nil {\n-\t\t\treturn fmt.Errorf(\"unmarshal: %w\", err)\n+\t\t\tif response.S...
2025-12-01T23:10:16
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
huggingface/transformers
d64a6d67d8c004a25570db4df5689e06caea6af7
a609966c06bbfb803d80019b6a5213a8f92d6cf5
Fix transformers serve's 422 unprocessable entity (#44620) * Revert "Fix CLI NameError: name 'TypeAdapter' is not defined (#44256)" This reverts commit 30c480166a95342fefdd9d727fc2a163bea7b2b1. * Hints should not rely on optional dependencies
[ { "path": "src/transformers/cli/serve.py", "patch": "@@ -11,9 +11,6 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n-\n-from __future__ import annotations\n-\n import a...
2026-03-16T00:02:01
electron/electron
e3efa16415ac090b38bd87d6b509ccecc90cefa0
3a6d6ff0083408588af10a8931f881d7ee134622
fix: session.getBlobData never resolves with blob sizes > 65536 (#35277) * fix: session.getBlobData never resolves with blob sizes > 65536 (#34398) * Add unit test case for session.getBlobData Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_data_pipe_holder.cc", "patch": "@@ -86,8 +86,11 @@ class DataPipeReader {\n if (result == MOJO_RESULT_OK) { // success\n remaining_size_ -= length;\n head_ += length;\n- if (remaining_size_ == 0)\n+ if (remaining_size_ == 0) {\n On...
2022-09-07T21:47:06
vercel/next.js
f30797f8fb682ff7777018ddab077647f844d9d0
29e0b965a3820f73f9a98a1358598562865e8350
fix(napi): Use strong consistency for the entire project_trace_source function (#79917) This function does a few more `Vc` reads than just looking up the source map, so it's better to move the entire thing inside one strongly-consistent operation. This was an attempt to fix a loop (tracing an error -> react fast refr...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -1,4 +1,4 @@\n-use std::{io::Write, path::PathBuf, sync::Arc, thread, time::Duration};\n+use std::{borrow::Cow, io::Write, path::PathBuf, sync::Arc, thread, time::Duration};\n \n use anyhow::{Context, Result, anyhow, bail};\n use napi::{\n@@ -24,...
2025-06-03T01:02:21
facebook/react
e5e71dfd59ab8629235dd5ad5bd5164c171471c1
35fb6e05e133f261392997de5ec89dba44f99c2e
Memoize fbt children in same scope Fixes another special-case rule of fbt that i wasn't aware of: apparently `<fbt:param>` elements don't have to appear as direct children of `<fbt>`, they can be nested, and in this case they must appear as direct children of the fbt and not via an identifier indirection. This PR ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -55,7 +55,11 @@ import {\n } from \"../ReactiveScopes\";\n import { eliminateRedundantPhi, enterSSA, leaveSSA } from \"../SSA\";\n import { inferTypes } from \"../TypeInference\";\n-import { logHIRFunction, logR...
2023-09-15T17:31:55
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
huggingface/transformers
a609966c06bbfb803d80019b6a5213a8f92d6cf5
c0fe6164d0d74e021aab9bfa0342a0f59ff59b16
Fix missing / incorrect `config` class in some model class definitions (#44715) * fix 1 * fix 2 * style * modular --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/blip_2/modeling_blip_2.py", "patch": "@@ -877,6 +877,8 @@ def forward(\n \"\"\"\n )\n class Blip2QFormerModel(Blip2PreTrainedModel):\n+ config: Blip2QFormerConfig\n+\n _supports_attention_backend = False # adds position on attn weights before last matmul\n ...
2026-03-15T11:19:49
ollama/ollama
467bbc0dd5a048c0b37aa3c811d073e95ab15406
6d9f9323c5eb477ba4664a544a790a50817b10f6
jetpack: require exact match or skip cuda_jetpack* (#13288) The cuda_jetpack libs will enumerate discrete GPUs on SBSA systems which leads to runtime failures of missing kernels. This fix requires an exact match to enable jetpacks instead of relying on enumeration to filter out supported libraries.
[ { "path": "discover/runner.go", "patch": "@@ -98,6 +98,9 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\t\t\tcontinue\n \t\t\t\t} else if jetpack != \"\" && filepath.Base(dir) != \"cuda_\"+jetpack {\n \t\t\t\t\tcontinue\n+\t\t\t\t} else if jetpack == \"\" && strin...
2025-12-01T20:48:16
electron/electron
c16baa063a404c9afefe452ef88a28cfa7cc2241
87145c393c08203e6e18f0615a13baff59fb3e30
docs: fix missing includes in code example (#35479)
[ { "path": "docs/tutorial/tutorial-3-preload.md", "patch": "@@ -185,7 +185,8 @@ loading the HTML file so that the handler is guaranteed to be ready before\n you send out the `invoke` call from the renderer.\n \n ```js {1,11} title=\"main.js\"\n-const { ipcMain } = require('electron')\n+const { app, BrowserWi...
2022-09-07T13:37:29
vercel/next.js
047cb99a7462b0ea2e8733fb88acda3dfbbb8962
e76436fed9bf925c61012d1a1d0f8a5bbb2ce088
[dynamicIO] Only report client sync IO errors if they are above a Suspense boundary (#80026) Currently if the client has any sync IO during prerenders and no shell is produced dynamicIO will assume that the sync IO in the client is the cause. This is often incorrect because you might abort the prerender in a component...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -132,6 +132,7 @@ import {\n createDynamicValidationState,\n trackAllowedDynamicAccess,\n throwIfDisallowedDynamic,\n+ PreludeState,\n consumeDynamicAccess,\n type DynamicAccess,\n } from './dynamic-rendering'\n@@ -2611,7...
2025-06-02T22:26:17
facebook/react
00e9888fb80719150363b3d011c53b890a4647af
c70e87f53501f329b25c4e78e2eafc0aab270292
[ez][patch] Remove calls to NodePath.hasNode --- Recent commits added calls to `NodePath.hasNode`, which does not exist in babel v7.1.6 (internal). Forget is failing with this error. ```js TypeError: handlerPath.hasNode is not a function at lowerStatement (.../babel-plugin-react-forget/HIR/BuildHIR.js:924:58...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -15,7 +15,7 @@ import {\n ErrorSeverity,\n } from \"../CompilerError\";\n import { Err, Ok, Result } from \"../Utils/Result\";\n-import { assertExhaustive } from \"../Utils/utils\";\n+import { assertExhaustive, hasNo...
2023-09-15T12:55:33
ollama/ollama
0c2489605d22e1d5bba91228534336d6fa140aa0
8b1b89a984d47a15aac6914b2d48abbc7213f51c
docs: fix output formatting in faq.mdx (#13231) There were a few Markdown typos in one FAQ answer. It now renders as a proper ascii table.
[ { "path": "docs/faq.mdx", "patch": "@@ -57,8 +57,13 @@ ollama ps\n ```\n \n <Info>\n- **Output**: ``` NAME ID SIZE PROCESSOR UNTIL llama3:70b bcfb190ca3a7 42 GB\n- 100% GPU 4 minutes from now ```\n+\n+**Output**:\n+\n+```\n+NAME ID SIZE PROCESSOR UNTIL\n+llama3:70b bcfb190ca3a7 42...
2025-11-29T00:19:21
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
7d89cb1bd4ef0d15429d66a8ee34d7df98e32e73
08ccc815748fcc55b319c7ee73ae90202bc44fa0
chore: remove no-op force-paint for hidden windows (#35532) * chore: remove no-op force-paint for hidden windows * fix build
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -158,17 +158,6 @@ void BrowserWindow::RenderViewHostChanged(content::RenderViewHost* old_host,\n new_host->GetWidget()->AddInputEventObserver(this);\n }\n \n-void BrowserWindow::DidFirstVisuallyNonEmptyPaint() {\n- if (window()-...
2022-09-07T09:48:59
vercel/next.js
ee6f3ba55e6a78a75c2ba993edf591bc293207eb
25beeb9acc8409c1ab16f5aa6f3504b72f4bac48
chore(turbopack): Remove `Lightningcss` prefix for CSS types (#80067) ### What? Remove redundant prefixes in some types. ### Why? Our only CSS processor is `lightningcss` at the moment.
[ { "path": "turbopack/crates/turbopack-css/src/process.rs", "patch": "@@ -497,13 +497,13 @@ struct CssValidator {\n \n #[derive(Debug, PartialEq, Eq)]\n enum CssError {\n- LightningCssSelectorInModuleNotPure { selector: String },\n+ CssSelectorInModuleNotPure { selector: String },\n }\n \n impl CssErro...
2025-06-02T19:31:23
huggingface/transformers
c368e139aade3ee7cdfa29387f3249168a912e5c
18e377ba957d38b76b6212a697785dd6b2077078
[`FA`] Fix fa detection (#44703) * fix fa2 and fa4 detection * should be there as well * also adapt fa3 to same pattern
[ { "path": "src/transformers/modeling_flash_attention_utils.py", "patch": "@@ -74,7 +74,7 @@ def is_flash_attn_available():\n \"flash_attn_version\": 2,\n \"general_availability_check\": is_flash_attn_2_available,\n \"pkg_availability_check\": lambda *args, **kwargs: importlib.util.fi...
2026-03-14T17:17:39
facebook/react
88b1a069c04631009cf64e3ff18cc8f463626f38
f993f0c2a55e3fb106844c4d68362cef876d1156
Add examples for phi type inference Adds test cases that would demonstrate different output if we were to update InferTypes to infer the types of phi identifiers when their operands have the same type. We currently do infer such types, but attach them to phi.type instead of phi.id.type, so the type doesn't effect ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/phi-type-inference-array-push.expect.md", "patch": "@@ -0,0 +1,76 @@\n+\n+## Input\n+\n+```javascript\n+// @debug\n+function Component(props) {\n+ const x = {};\n+ let y;\n+ if (props.cond) {\n+ y = [props.value];\n...
2023-09-14T18:56:09
ollama/ollama
dba62ff3a572af4af845711c2091b70606b06af4
d70e93552696a5a1aaa5fd8b56d3f6e8b165f8c0
discovery: fix cuda overlap case (#13176) Recent refactoring introduced a regression for filtering cuda overlap to favor newest supported version.
[ { "path": "discover/runner.go", "patch": "@@ -125,10 +125,20 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\tsupportedMu := sync.Mutex{}\n \t\tsupported := make(map[string]map[string]map[string]int) // [Library][libDir][ID] = pre-deletion devices index\n \t\tfor i :...
2025-11-20T20:15:37
vercel/next.js
81209c4428b23a03d42208ccf26b051176994a1e
abc320aabf6b668621232074700ec034cb3efae2
Fix defunct ESLint overrides (#80053) The patterns in ESLint's `overrides[].files` isn't exactly like the globs you're used to e.g. `"packages/**/*.tsx?"` does not work as expected. Need to explode that into `"packages/**/*.ts", "packages/**/*.tsx"`. Other changes are a consequence of applying the rules that were p...
[ { "path": ".eslintrc.json", "patch": "@@ -126,7 +126,7 @@\n }\n },\n {\n- \"files\": [\"packages/**/*.tsx?\"],\n+ \"files\": [\"packages/**/*.ts\", \"packages/**/*.tsx\"],\n \"rules\": {\n \"jsdoc/no-types\": \"error\",\n \"jsdoc/no-undefined-types\": \"error\""...
2025-06-02T17:38:18
huggingface/transformers
18e377ba957d38b76b6212a697785dd6b2077078
6133195dcb027feb7502379acd13750e167eb6c5
Fix `set_encoder` (#44698) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2222,7 +2222,7 @@ def set_encoder(self, encoder, modality: str | None = None):\n # NOTE: new models need to use existing names for layers if possible, so this list doesn't grow infinitely\n if modality in [\"image\", \"video\"]:\n...
2026-03-14T13:31:27
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
ollama/ollama
53985b3c4d94f22517e4090696a5b8ecd06caedb
b6e02cbbd280114ffcdffd5f7d4d26aee281d3d6
kvcache: Use SetRows to store cache data We currently copy data into the KV cache in contiguous buffers using ggml_cpy(). ggml_set_rows() was introduced to allow scatter operation so that contiguous buffers are no longer required. The direct primary benefit of this is that we no longer need to perform defragmentation....
[ { "path": "kvcache/causal.go", "patch": "@@ -3,7 +3,6 @@ package kvcache\n import (\n \t\"errors\"\n \t\"fmt\"\n-\t\"log/slog\"\n \t\"math\"\n \t\"slices\"\n \n@@ -40,18 +39,18 @@ type Causal struct {\n \n \t// ** current forward pass **\n \n-\t// the active layer for Get and Put\n-\tcurLayer int\n-\n-\t// ...
2025-08-18T17:45:58
facebook/react
f993f0c2a55e3fb106844c4d68362cef876d1156
b2230f62a38350f19cf02b4ee4b7f42e43610b9a
[pipeline] panicOnBailout -> panicThreshold; remove isDev logging --- Changed `panicOnBailout: boolean` to `panicThreshold`, which has the following options. Note that `ALL_ERRORS` corresponds to `panicOnBailout = true` and `CRITICAL_ERRORS` corresponds to `panicOnBailout = false`. `NONE` is a new option. ```j...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -25,6 +25,19 @@ export type InstrumentForgetOptions = {\n instrumentFn: ExternalFunction;\n };\n \n+export type PanicThresholdOptions =\n+ // Any errors will panic the compiler by throwing an exception, which ...
2023-09-14T19:00:43
electron/electron
08ccc815748fcc55b319c7ee73ae90202bc44fa0
f53ca20d415b6a6029e03d0129d5118aa43919ee
chore: bump chromium to 107.0.5274.0 (main) (#35375) * chore: bump chromium in DEPS to 106.0.5247.1 * chore: update can_create_window.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/3805043 content/renderer/render_view_impl.cc was removed * chore: update patches/chromium/printing.patc...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '106.0.5216.0',\n+ '107.0.5274.0',\n 'node_version':\n 'v16.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2022-09-07T07:46:37
huggingface/transformers
6133195dcb027feb7502379acd13750e167eb6c5
74e685ee64516fb63492f5b2d3037c2e8ddfba53
[docs] cb config (#44675) * fix * fix
[ { "path": "src/transformers/generation/configuration_utils.py", "patch": "@@ -1549,20 +1549,38 @@ class ContinuousBatchingConfig:\n Class that holds arguments relative to continuous batching, when using continuous batching through the\n `generate_batch` method or the `continuous_batching_context_man...
2026-03-13T23:02:20
golang/go
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
485da9fd358eb17ba0a659a554f44be6c72efd2e
0796d79d19345bc3724bd08108a96b669b0f1841
win: exit instead of abort (#13138) Calling abort on windows triggers the C++ runtime to attempt a debugger attach, which causes the crashed runners to hang instead of exit, leading to a timeout instead of a fast failure during discovery.
[ { "path": "llama/patches/0036-win-exit-instead-of-abort.patch", "patch": "@@ -0,0 +1,28 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Daniel Hiltgen <daniel@ollama.com>\n+Date: Tue, 18 Nov 2025 09:58:23 -0800\n+Subject: [PATCH] win: exit instead of abort\n+\n+---\n+ ggm...
2025-11-19T00:33:33
vercel/next.js
fb0ce72dc89ddd597ce8927a6b041b3f1a16e7f7
cabf31b2a7205c019592259c9ef11a73d2624e79
[turbopack] Simplify the definition of AssetIdent (#79805) Replace the `ResolvedVc<RcStr>` uses inside of `AssetIdent` with `RcStr` directly ## Why This simplifies construction and usage and provides more reasonably equality semantics. In principle, storing `ResolvedVc` would enable finer grained invalidations. e....
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -37,7 +37,7 @@ use next_core::{\n };\n use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n-use turbo_rcstr::RcStr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n Completion, FxIndexSet, NonLocalValue, ResolvedVc, TryJoinIterEx...
2025-06-02T15:50:59
facebook/react
54c2f2a3469e296fba025cf444d0639c7bf8f39a
caa716d50bdeef3a1ac5e3e0cfcc14f4d91f2028
fix[devtools/extension]: unregister dynamically injected content scripts instead of filtering (#27369) Same as https://github.com/facebook/react/pull/26765. Related bug report - https://bugs.chromium.org/p/chromium/issues/detail?id=1393762. This was changed in https://github.com/facebook/react/pull/27215, when I ...
[ { "path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js", "patch": "@@ -11,7 +11,7 @@ const contentScriptsToInject = IS_FIREFOX\n js: ['build/proxy.js'],\n matches: ['<all_urls>'],\n persistAcrossSessions: true,\n- runAt: 'document_idle'...
2023-09-14T14:21:28
huggingface/transformers
74e685ee64516fb63492f5b2d3037c2e8ddfba53
65db6fc07c776406f7b4afe1ee5ecdbeb7202af7
Fix more model tester missing `parent` issue (#44685) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/pp_lcnet/test_modeling_pp_lcnet.py", "patch": "@@ -52,6 +52,7 @@\n class PPLCNetModelTester:\n def __init__(\n self,\n+ parent,\n batch_size=3,\n image_size=128,\n num_channels=3,\n@@ -68,6 +69,7 @@ def __init__(\n out_indices=[2, 3,...
2026-03-13T20:57:43
electron/electron
2db0f7f8d44be93190323a94c4a1fc255251bfa5
98c0fa1c8b4759eff243807b625094d5ef2840a8
fix: `screen.getCursorScreenPoint()` crash on Wayland (#35503) fix: screen.getCursorScreenPoint() crash on Wayland
[ { "path": "shell/browser/api/electron_api_screen.cc", "patch": "@@ -24,6 +24,10 @@\n #include \"ui/display/win/screen_win.h\"\n #endif\n \n+#if defined(USE_OZONE)\n+#include \"ui/ozone/public/ozone_platform.h\"\n+#endif\n+\n namespace electron::api {\n \n gin::WrapperInfo Screen::kWrapperInfo = {gin::kEmbed...
2022-09-05T08:10:50
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
ollama/ollama
0796d79d19345bc3724bd08108a96b669b0f1841
92981ae3f2ce3c4e02d8a21f46874f167949feda
cuda: skip large batches cuda panics on batches larger than 1024 so skip those and fallback to cpu
[ { "path": "llama/patches/0028-Add-memory-detection-using-DXGI-PDH.patch", "patch": "@@ -38,7 +38,7 @@ index 44ae76d66..639d551a2 100644\n #ifdef __cplusplus\n }\n diff --git a/ggml/src/ggml-vulkan/ggml-vulkan.cpp b/ggml/src/ggml-vulkan/ggml-vulkan.cpp\n-index d2c278a35..221e29509 100644\n+index ca02ea079....
2025-11-18T19:13:37
vercel/next.js
f3cabc91c3ad5b98643a7644bc63ac64bb2ba6aa
d1fa7cfca009e2dcd2448ab30a229cd7574d7422
Turbopack Build: Fix next-font test (#80049) ## What? When importing `_app` from another entrypoint it causes the font files imported to be included in _app. This is an edge case so changing the test as it doesn't check for that. Creating a separate issue to dig into this further later.
[ { "path": "test/e2e/next-font/app/pages/with-fonts.js", "patch": "@@ -1,5 +1,6 @@\n import CompWithFonts from '../components/CompWithFonts'\n-import { openSans } from './_app'\n+import { Open_Sans } from 'next/font/google'\n+const openSans = Open_Sans({ variable: '--open-sans', subsets: ['latin'] })\n \n ex...
2025-06-02T14:32:22