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 | 94979526298bc818c412ba18b25159d2a20b004a | cf0ad333c3799dd0ab6e121d8893b6928bada51e | Docs: broken links in caching (#80369)
Fixes a couple of broken links in caching. | [
{
"path": "docs/01-app/04-deep-dive/caching.mdx",
"patch": "@@ -126,7 +126,7 @@ Next.js has a built-in Data Cache that **persists** the result of data fetches a\n \n You can use the [`cache`](#fetch-optionscache) and [`next.revalidate`](#fetch-optionsnextrevalidate) options of `fetch` to configure the cachi... | 2025-06-10T15:49:11 |
huggingface/transformers | 4f8de83424c066d2edb412876501731dbb62f88a | 9ef15d7016bd5fb307e961b2e8e56f14748913da | [CB] [Minor] Simplify test suite (#44858)
* Common helper functions and inputs
* Further simplify
* style
* Reformat last added test
* Fixes
* Fix test
* style | [
{
"path": "tests/generation/test_continuous_batching.py",
"patch": "@@ -16,6 +16,7 @@\n import gc\n import itertools\n import unittest\n+from typing import Any\n from unittest.mock import patch\n \n import torch\n@@ -28,6 +29,7 @@\n CompileConfig,\n ContinuousBatchingConfig,\n GenerationConfig,\... | 2026-03-24T11:32:00 |
golang/go | 34073a736ab87d346399b8eef60d520a8b3cc5d4 | a7489b864879e89182ddf32d4a108c6967aa0522 | cmd/compile: avoid infinite recursion when inlining closures
CL 630696 changes budget for once-called closures, making them more
inlinable. However, when recursive inlining involve both the closure and
its parent, the inliner goes into an infinite loop:
parent (a closure) -> closure -> parent -> ...
The problem he... | [
{
"path": "src/cmd/compile/internal/inline/inl.go",
"patch": "@@ -1009,6 +1009,38 @@ func canInlineCallExpr(callerfn *ir.Func, n *ir.CallExpr, callee *ir.Func, bigCa\n \t\treturn false, 0, false\n \t}\n \n+\tisClosureParent := func(closure, parent *ir.Func) bool {\n+\t\tfor p := closure.ClosureParent; p != ... | 2025-02-14T20:00:27 |
electron/electron | 0158077bec9a136f0eb71f61a57fa56ee59674ec | 7921fec7612c0565c4cc4076ae9e83568c39269a | test: disable flaky linux arm/arm64 crash test case (#36094)
test: disable failing linux arm/arm64 crash test case | [
{
"path": "spec/crash-spec.ts",
"patch": "@@ -31,6 +31,22 @@ const runFixtureAndEnsureCleanExit = (args: string[]) => {\n });\n };\n \n+const shouldRunCase = (crashCase: string) => {\n+ switch (crashCase) {\n+ // TODO(jkleinsc) fix this flaky test on Windows 32-bit\n+ case 'quit-on-crashed-event': ... | 2022-10-20T22:06:06 |
facebook/react | 54ea4469716ec060fba475bb38e7b6d509586e1b | 97b1e01824df999bfc7c0c78d6a35dae56909ea2 | Bump lodash from 4.17.4 to 4.17.21 in /fixtures/packaging/systemjs-builder/prod (#27593)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.4 to 4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</... | [
{
"path": "fixtures/packaging/systemjs-builder/prod/yarn.lock",
"patch": "@@ -399,8 +399,8 @@ lazy-cache@^1.0.3:\n resolved \"https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e\"\n \n lodash@^4.17.4:\n- version \"4.17.4\"\n- resolved \"https://registr... | 2023-10-26T13:48:05 |
vercel/next.js | cf0ad333c3799dd0ab6e121d8893b6928bada51e | c151f8968184e4fcc9b11dd6be414dfc46d77dd8 | [dev-overlay] Fix outstanding a11y issues reported by Axe (#80290)
Adds labels to buttons that had no discernible text.
The automated tests via `test-storybook` seem to ignore `parameters.a11y.config.rules` so we can't leverage `test-storybook` in CI.
I can't even use `parameters.a11y.test`.
We need `parameters... | [
{
"path": "packages/next/.storybook/preview.tsx",
"patch": "@@ -18,6 +18,26 @@ const preview: Preview = {\n parameters: {\n a11y: {\n element: 'nextjs-portal',\n+ config: {\n+ standards: {\n+ ariaAttrs: {\n+ 'aria-modal': {\n+ global: true,\n+ ... | 2025-06-10T15:38:19 |
golang/go | 279da965329a74cd75320f15cb9672a282690ab7 | fcdf444924dcd5dc2fb9e3044e32072460e7c374 | runtime: add some linknames back for `github.com/bytedance/sonic`
Add some linknames back, therefore sonic (github.com/bytedance/sonic) can work correctly.
Fixes #71672
Change-Id: Iae86c837d8a714855106a26766aa08b128e17e58
GitHub-Last-Rev: 4de0a4871766f9e7763394fdcdcaa9d683e97987
GitHub-Pull-Request: golang/go#71673
... | [
{
"path": "src/runtime/stubs.go",
"patch": "@@ -312,6 +312,16 @@ func asmcgocall(fn, arg unsafe.Pointer) int32\n \n func morestack()\n \n+// morestack_noctxt should be an internal detail,\n+// but widely used packages access it using linkname.\n+// Notable members of the hall of shame include:\n+// - gith... | 2025-02-18T18:01:45 |
huggingface/transformers | 6a056a16a856097cb0400ce9a48e96ab9d469e30 | bc8c80e0288fd369ad06bff5b480d3c51f97a95e | Fix missing post_processor in DebertaV2Tokenizer causing no special t… (#44570)
* Fix missing post_processor in DebertaV2Tokenizer causing no special tokens
In transformers v5, DebertaV2Tokenizer was rewritten to use
TokenizersBackend
but the post_processor (responsible for adding [CLS]/[SEP] tokens) was
not set.
... | [
{
"path": "src/transformers/models/deberta_v2/tokenization_deberta_v2.py",
"patch": "@@ -13,7 +13,7 @@\n # limitations under the License.\n \"\"\"Tokenization class for model DeBERTa-v2.\"\"\"\n \n-from tokenizers import Regex, Tokenizer, decoders, normalizers, pre_tokenizers\n+from tokenizers import Regex,... | 2026-03-24T09:31:46 |
ollama/ollama | 948de6bbd2d07e1050d91c2422c3ee7af2d591da | 598b74d42c8cced0aad5fea90592fc23fe108c2c | add ability to disable cloud (#14221)
* add ability to disable cloud
Users can now easily opt-out of cloud inference and web search by
setting
```
"disable_ollama_cloud": true
```
in their `~/.ollama/server.json` settings file. After a setting update,
the server must be restarted.
Alternatively, setting the enviro... | [
{
"path": "api/client.go",
"patch": "@@ -449,6 +449,16 @@ func (c *Client) Version(ctx context.Context) (string, error) {\n \treturn version.Version, nil\n }\n \n+// CloudStatusExperimental returns whether cloud features are disabled on the server.\n+func (c *Client) CloudStatusExperimental(ctx context.Cont... | 2026-02-12T23:47:00 |
facebook/react | 97b1e01824df999bfc7c0c78d6a35dae56909ea2 | de49d83f30508bc6394e543cd36f58a968ffc3d6 | Bump lodash from 4.17.15 to 4.17.21 in /fixtures/art (#27588)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to
4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</code></a>
Bump to v4.17.... | [
{
"path": "fixtures/art/yarn.lock",
"patch": "@@ -1890,15 +1890,10 @@ locate-path@^3.0.0:\n p-locate \"^3.0.0\"\n path-exists \"^3.0.0\"\n \n-lodash@^4.17.13:\n- version \"4.17.15\"\n- resolved \"https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548\"\n-... | 2023-10-26T13:47:51 |
electron/electron | da0fd286b44846da0e8207691a3df081051d7b5c | 44c40efecf3cf7b960964c8bbecc0d4de4a26a0e | feat: UtilityProcess API (#34980)
* chore: initial scaffolding
* chore: implement interface and docs
* chore: address code style review
* fix: cleanup of utility process on shutdown
* chore: simplify NodeBindings::CreateEnvironment
* chore: rename disableLibraryValidation => allowLoadingUnsignedLibrarie... | [
{
"path": "BUILD.gn",
"patch": "@@ -202,13 +202,23 @@ webpack_build(\"electron_isolated_renderer_bundle\") {\n out_file = \"$target_gen_dir/js2c/isolated_bundle.js\"\n }\n \n+webpack_build(\"electron_utility_bundle\") {\n+ deps = [ \":build_electron_definitions\" ]\n+\n+ inputs = auto_filenames.utility_... | 2022-10-20T05:49:49 |
vercel/next.js | 69374fbbda17164ad98b6e47585d80fa05c76dd2 | bbaa16473723f3f2de8c97e0ad0dd4b0fab52e32 | [test] Fix crashes in Dev Overlay Stories (#80292)
A bit annoying that Storybook marks required props as optional. Makes it hard to keep those working during refactor. | [
{
"path": "packages/next/.storybook/test-runner.ts",
"patch": "@@ -15,6 +15,9 @@ const config: TestRunnerConfig = {\n detailedReportOptions: {\n html: true,\n },\n+ // Verbose prints additional logs in the terminal on passing tests taking up space\n+ // that's needed by failed ... | 2025-06-10T13:19:50 |
golang/go | fcdf444924dcd5dc2fb9e3044e32072460e7c374 | ad8b33002bb5cb0c910694339e1cc6c75f781c5a | os: document that OpenRoot follows symlinks
OpenRoot is expected to be called with a trusted path,
and does not attempt to defend against symlinks in that path.
Fixes #71806
Change-Id: Ib8b2e123e323d22d5c23ed9f711d21995139a7ef
Reviewed-on: https://go-review.googlesource.com/c/go/+/650355
Auto-Submit: Damien Neil <dn... | [
{
"path": "src/os/root.go",
"patch": "@@ -76,6 +76,7 @@ const (\n )\n \n // OpenRoot opens the named directory.\n+// It follows symbolic links in the directory name.\n // If there is an error, it will be of type *PathError.\n func OpenRoot(name string) (*Root, error) {\n \ttestlog.Open(name)",
"addition... | 2025-02-18T17:36:14 |
huggingface/transformers | bc8c80e0288fd369ad06bff5b480d3c51f97a95e | a48a63c27d1cdb7845d2c3acc4f11f580917b69b | incorrect model list update (#44880)
* incorrect model list update
* fix config type
* add tests
* ruff
---------
Co-authored-by: ita.zaporozhets@huggingface.co <ita_zaporozhets@ip-26-0-169-207.ec2.internal> | [
{
"path": "src/transformers/models/auto/tokenization_auto.py",
"patch": "@@ -344,21 +344,34 @@\n MODELS_WITH_INCORRECT_HUB_TOKENIZER_CLASS: set[str] = {\n \"arctic\",\n \"chameleon\",\n- \"deepseek_vl\",\n- \"deepseek_vl_v2\",\n- \"deepseek_vl_hybrid\",\n+ \"chatlm\",\n \"deepseek_v2... | 2026-03-24T09:15:35 |
ollama/ollama | f8dc7c9f54a753d2c6d3410936e73486f9bf463d | 4a3741129d67baa910fa5b96c62f55b5512734b1 | docs: fix openapi schema for /api/ps and /api/tags endpoints (#14210) | [
{
"path": "docs/openapi.yaml",
"patch": "@@ -596,6 +596,15 @@ components:\n name:\n type: string\n description: Model name\n+ model:\n+ type: string\n+ description: Model name\n+ remote_model:\n+ type: string\n+ description: Name ... | 2026-02-12T01:37:40 |
facebook/react | de49d83f30508bc6394e543cd36f58a968ffc3d6 | a82ff4c98506a71402bc8ff7c0f815a8dc3b58be | Bump lodash from 4.17.4 to 4.17.21 in /fixtures/expiration (#27591)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.4 to 4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</code></a>
Bump to v4... | [
{
"path": "fixtures/expiration/yarn.lock",
"patch": "@@ -3943,8 +3943,8 @@ lodash.uniq@^4.5.0:\n resolved \"https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773\"\n \n \"lodash@>=3.5 <5\", lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, ... | 2023-10-26T13:43:55 |
vercel/next.js | a075f9ce17125c0c599a543a8c2316cb1d635bb5 | 270744b7a0ecbf0ff94d0c62cd3a6b5e975d052a | [test] Fix Dev Overlay Storybook (#80288)
Broke in https://github.com/vercel/next.js/pull/79699 | [
{
"path": "packages/next/.storybook/preview.tsx",
"patch": "@@ -1,4 +1,18 @@\n import type { Preview } from '@storybook/react'\n+import { useInsertionEffect } from 'react'\n+\n+function CreatePortalNode() {\n+ useInsertionEffect(() => {\n+ const portalNode = document.createElement('nextjs-portal')\n+ ... | 2025-06-10T10:38:03 |
golang/go | ad8b33002bb5cb0c910694339e1cc6c75f781c5a | 0bdc792145acaf10c5f7bac1783a6692fb327dfb | syscall: disable O_DIRECTORY on Windows for js/wasm
O_DIRECTORY is not available on all platforms, as described at
https://nodejs.org/docs/latest/api/fs.html#file-open-constants .
On Windows, only O_APPEND, O_CREAT, O_EXCL, O_RDONLY, O_RDWR,
O_TRUNC, O_WRONLY, and UV_FS_O_FILEMAP are available.
Fixes #71758
Change... | [
{
"path": "src/syscall/fs_js.go",
"patch": "@@ -23,15 +23,26 @@ var constants = jsFS.Get(\"constants\")\n var uint8Array = js.Global().Get(\"Uint8Array\")\n \n var (\n-\tnodeWRONLY = constants.Get(\"O_WRONLY\").Int()\n-\tnodeRDWR = constants.Get(\"O_RDWR\").Int()\n-\tnodeCREATE = constants.Get(\"... | 2025-02-18T15:21:23 |
electron/electron | 44c40efecf3cf7b960964c8bbecc0d4de4a26a0e | 8bd66026a89c817eef9dcb8f3aa2654d9f0c1636 | refactor: migrate from asar to @electron/asar (#36070)
* refactor: migrate from asar to @electron/asar
* fix: update asar require calls | [
{
"path": "package.json",
"patch": "@@ -5,6 +5,7 @@\n \"description\": \"Build cross platform desktop apps with JavaScript, HTML, and CSS\",\n \"devDependencies\": {\n \"@azure/storage-blob\": \"^12.9.0\",\n+ \"@electron/asar\": \"^3.2.1\",\n \"@electron/docs-parser\": \"^0.12.4\",\n \"@e... | 2022-10-19T20:39:31 |
ollama/ollama | 4a3741129d67baa910fa5b96c62f55b5512734b1 | 77ba9404ac6fbedf4ca52bb6c1f6858647f4fc4e | bug: fix loading non-mlx models when ollama is built with mlx support (#14211)
This change fixes an issue where GGML based models (for either the Ollama runner or
the legacy llama.cpp runner) would try to load the mlx library. That would panic
and the model fails to start. | [
{
"path": "x/mlxrunner/mlx/dynamic.go",
"patch": "@@ -8,6 +8,7 @@ package mlx\n import \"C\"\n \n import (\n+\t\"fmt\"\n \t\"io/fs\"\n \t\"log/slog\"\n \t\"os\"\n@@ -16,6 +17,13 @@ import (\n \t\"unsafe\"\n )\n \n+var initError error\n+\n+// CheckInit returns any error that occurred during MLX dynamic libra... | 2026-02-11T22:48:33 |
huggingface/transformers | 19bba39fa79e6ad126d2e95c593cb51d71ca7241 | a9532bcf887b364bfedcc33a13be2b1d1acbef85 | [CB] Add an option to return logprobs (#44835)
* Pretty much the feature
* Cleanup
* Add custom flag
* Add test
* Rebase changes
* Review compliance
* Review compliance 2
* Style
* more style
* Relaxed cuda graphs test
* Style and fix default attn
* docstirng
* style | [
{
"path": "examples/pytorch/continuous_batching.py",
"patch": "@@ -215,15 +215,7 @@ def batch_generate(\n \n # Choose attention implementation\n if args.attn is None:\n- if args.compile:\n- args.attn = \"kernels-community/flash-attn3@fake-ops-return-probs\"\n- logger.war... | 2026-03-23T18:21:05 |
facebook/react | a82ff4c98506a71402bc8ff7c0f815a8dc3b58be | 8c8ee9ee618eace9199b7c80f4cd2d6f20ecfb73 | Bump lodash from 4.17.15 to 4.17.21 (#27587)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to
4.17.21.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</code></a>
Bump to v4.17.21</li>
<li><a
... | [
{
"path": "yarn.lock",
"patch": "@@ -6906,7 +6906,6 @@ eslint-plugin-no-unsanitized@3.1.2:\n \n \"eslint-plugin-react-internal@link:./scripts/eslint-rules\":\n version \"0.0.0\"\n- uid \"\"\n \n eslint-plugin-react@^6.7.1:\n version \"6.10.3\"\n@@ -10768,17 +10767,7 @@ lodash.union@^4.6.0:\n resolved... | 2023-10-26T13:43:31 |
electron/electron | dde513b0d38e3e90ff03761b0b912f60a1fad94e | a8d89b3d5267030ea52de0b47dd49408aa2f43c0 | fix: printToPDF default margins (#36060)
printToPDF default margins
The document printToPDF has a 1cm margin and this default value has been added in the code. | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -177,10 +177,10 @@ WebContents.prototype.printToPDF = async function (options) {\n scale: 1.0,\n paperWidth: 8.5,\n paperHeight: 11.0,\n- marginTop: 0.0,\n- marginBottom: 0.0,\n- marginLeft: 0.0,\n- marginRight: 0.0,\n+ mar... | 2022-10-19T08:16:28 |
vercel/next.js | cf1f47a5d174538866b1afd384b24e14dae9c5ca | c2da6c12e772e94bb1a94f1e810a95598c00d615 | [dev-overlay] fix duplicate re-render of errors (#80322)
### What
When there's a same error throwing constantly, we should avoid unnecessary re-renders on the exact same error. In dev overlay we already have strategies that can dedupe the error. And we noticed the error is shown correctly but just the dialog got re... | [
{
"path": "packages/next/src/client/components/react-dev-overlay/shared.ts",
"patch": "@@ -232,8 +232,13 @@ export function useErrorOverlayReducer(\n getOwnerStack(event.error) !== getOwnerStack(pendingEvent.error)\n )\n })\n- pendingEvents.push(pendingEvent)\n- return pendingEvents\... | 2025-06-10T09:42:20 |
ollama/ollama | c980e1999571a0887b28d837ea81a5938a93c94d | 6162374ca96733d45882c3a0440785dc782220a7 | Fix formatting of context length notes in documentation | [
{
"path": "docs/context-length.mdx",
"patch": "@@ -6,9 +6,9 @@ Context length is the maximum number of tokens that the model has access to in m\n \n <Note>\n Ollama defaults to the following context lengths based on VRAM:\n-< 24 GiB VRAM: 4,096 context\n-24-48 GiB VRAM: 32,768 context\n->= 48 GiB VRAM: 26... | 2026-02-08T18:59:25 |
golang/go | 43d8b1e8fed9be5f61f864e0b185e918e3fadf2c | 896de17f8069626f8e52b662c0d5a46ee9cac699 | os: deal with chmod error for TestRootConsistencyChmod
Previously the error returned by chmod has not actually been used.
Change-Id: I97c947a2278a084c58784fd100630ce2a54bfb03
GitHub-Last-Rev: ddc60a044f641d264c9ee88d87b2da7e2f766741
GitHub-Pull-Request: golang/go#71744
Reviewed-on: https://go-review.googlesource.com/... | [
{
"path": "src/os/root_test.go",
"patch": "@@ -928,12 +928,16 @@ func TestRootConsistencyChmod(t *testing.T) {\n \t\t\t}\n \n \t\t\tvar m1, m2 os.FileMode\n-\t\t\terr := chmod(path, 0o555)\n+\t\t\tif err := chmod(path, 0o555); err != nil {\n+\t\t\t\treturn \"chmod 0o555\", err\n+\t\t\t}\n \t\t\tfi, err := l... | 2025-02-17T11:45:51 |
huggingface/transformers | dda546845f97eb4c6e22df6a2b7fbd865199ada4 | e5ad3946209fb96db5e9965b3eb67d69cc3749e0 | Continuous batching thread safety (#44924)
* fix torch.cuda.graph should operate in thread_local mode
* fix tie_weights skipping logic is not thread-safe
* doc
* cleanup
* revert tie_weight() concurrency bug fix. push to another pr
* cleanup unit test to only check for `thread_local` error_mode
* add true model... | [
{
"path": "src/transformers/generation/continuous_batching/continuous_api.py",
"patch": "@@ -464,7 +464,15 @@ def _generation_step(self, model: nn.Module, logit_processor: LogitsProcessorLis\n # torch.cuda.current_stream().wait_stream(compute_stream)\n # Capture\n ... | 2026-03-23T16:13:24 |
facebook/react | a9985529f1aa55477f0feafe2398d36707cf6108 | 51ffd3564f97b58737df395d30628a27fa71a39d | [Fizz] Do not reinsert stylesheets after initial insert (#27586)
The loading state tracking for suspensey CSS is too complicated. Prior
to this change it had a state it could enter into where a stylesheet was
already in the DOM but the loading state did not know it was inserted
causing a later transition to try to ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2337,7 +2337,7 @@ function preinitStyle(\n getStylesheetSelectorFromKey(key),\n );\n if (instance) {\n- state.loading = Loaded;\n+ state.loading = Loaded & Inserted;\n } else {\n // Con... | 2023-10-25T18:51:01 |
electron/electron | a8d89b3d5267030ea52de0b47dd49408aa2f43c0 | b13606e55d1b98ad1a3c3d6b24ba207ce872cf36 | fix: headless job tracking in printToPDF (#36046) | [
{
"path": "shell/browser/printing/print_view_manager_electron.cc",
"patch": "@@ -126,6 +126,7 @@ void PrintViewManagerElectron::PrintToPdf(\n \n printing_rfh_ = rfh;\n print_pages_params->pages = absl::get<printing::PageRanges>(parsed_ranges);\n+ headless_jobs_.emplace_back(print_pages_params->params->... | 2022-10-18T13:46:19 |
golang/go | 896de17f8069626f8e52b662c0d5a46ee9cac699 | a73c6545d27afaad631ba2f5c593ab3a97d11bdc | cmd/cgo: explicitly use void for functions with no parameters
Currently, exported Go functions with no parameters generate C functions
with an empty parameter list. In C, a function with an empty parameter
list can accept any number of arguments, whereas a function with a single
void parameter explicitly declares that... | [
{
"path": "src/cmd/cgo/internal/testcshared/cshared_test.go",
"patch": "@@ -880,3 +880,44 @@ func TestIssue36233(t *testing.T) {\n \t\tt.Error(\"missing functions\")\n \t}\n }\n+\n+func TestIssue68411(t *testing.T) {\n+\tglobalSkip(t)\n+\ttestenv.MustHaveCGO(t)\n+\n+\tt.Parallel()\n+\n+\t// Test that the ex... | 2025-02-17T13:57:12 |
vercel/next.js | e5d296c4d9b29e77324470e3161ad4bd8a121ec5 | 16933e9edca38648927e82091c4f83fe7b79dae1 | fix(turbopack): Restore `sources` field in the source map (#80337)
### What?
Restore the `sources` field by picking up https://github.com/kdy1/rust-sourcemap/commit/27e1bf8b92498425fbc6e2f31d2f755b6ae94f19
### Why?
It's expected to be exist | [
{
"path": "Cargo.lock",
"patch": "@@ -6683,7 +6683,7 @@ dependencies = [\n [[package]]\n name = \"sourcemap\"\n version = \"9.2.2\"\n-source = \"git+https://github.com/kdy1/rust-sourcemap?branch=main#804d663521d6109b3746d800918d483b97e8e108\"\n+source = \"git+https://github.com/kdy1/rust-sourcemap?branch=ma... | 2025-06-10T04:26:01 |
huggingface/transformers | e5ad3946209fb96db5e9965b3eb67d69cc3749e0 | f6195948b47f06444a7bdf5f169197ed64b64de2 | Add static FP8 expert support (#44895)
fix static | [
{
"path": "src/transformers/integrations/finegrained_fp8.py",
"patch": "@@ -186,7 +186,29 @@ def w8a8_fp8_matmul(\n if _supports_cutlass(A, B, block_size, output_dtype):\n return w8a8_block_fp8_matmul_cutlass(A, B, As, Bs, output_dtype)\n \n- # Fall back to Triton\n+ # Ensure correct CUDA ... | 2026-03-23T14:50:55 |
ollama/ollama | a0407d07fa900a129afcec42fc222a19f1102d82 | 9ec733e5279385006e2b8c302e24573bdd861049 | safetensors quantization for mlx (#14184)
This change includes:
- changes to the safetensors metadata format
- changes to the create command to properly create the blobs with the new format
- changes to load the new format
- fixes ollama show to properly show each tensor | [
{
"path": "x/create/client/create.go",
"patch": "@@ -19,6 +19,7 @@ import (\n \t\"github.com/ollama/ollama/progress\"\n \t\"github.com/ollama/ollama/types/model\"\n \t\"github.com/ollama/ollama/x/create\"\n+\t\"github.com/ollama/ollama/x/imagegen/safetensors\"\n )\n \n // MinOllamaVersion is the minimum Oll... | 2026-02-10T19:29:17 |
facebook/react | 8610533ed1a38539412114a99a0390747e828235 | d5c3fb87e6861dfe1bfdcb9353f71275172a3816 | Infer reactive control dependencies
Updates `InferReactivePlaces` to infer control dependencies. We build on the
formal definition of control dependencies, which is that statement S2 is
control-dependent on statement S1 if S1 is in the post-dominance-frontier of S2.
Intuitively, if S1 decides whether S2 is reached... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Dominator.ts",
"patch": "@@ -98,7 +98,14 @@ export class Dominator<T> {\n }\n \n debug(): string {\n- return prettyFormat(this.#nodes);\n+ const dominators = new Map();\n+ for (const [key, value] of this.#nodes) {\n+ dominators... | 2023-11-02T00:13:03 |
electron/electron | 23d4a252c69f68c576933d745a95b70bad2946df | f2c341b655406434b5a44bc8b1e2418d664c319b | chore: Move draggable regions implementation from NativeBrowserView into InspectableWebContentsView (#35007)
* hore: Move draggable regions implementation from NativeBrowserView into InspectableWebContentsView
The draggable regions implementation is related to WebView, so
InspectableWebContentsView is a more appro... | [
{
"path": "filenames.gni",
"patch": "@@ -494,6 +494,7 @@ filenames = {\n \"shell/browser/ui/inspectable_web_contents.cc\",\n \"shell/browser/ui/inspectable_web_contents.h\",\n \"shell/browser/ui/inspectable_web_contents_delegate.h\",\n+ \"shell/browser/ui/inspectable_web_contents_view.cc\",\n... | 2022-10-17T15:10:07 |
vercel/next.js | 16933e9edca38648927e82091c4f83fe7b79dae1 | 4250c5b318be660a94ce58252ab9dcb68a992741 | perf(turbopack): Optimize `Rope` correctly (#80335)
### What?
Utilize _cheap clone_ of `bytes::Bytes`. I made an error in the previous pull request.
### Why?
- In the name of the performance.
- `bytes::Bytes` is cheap to clone. | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/rope.rs",
"patch": "@@ -550,6 +550,10 @@ impl InnerRope {\n return data.into_iter().next().unwrap().into_bytes(len);\n }\n Err(data) => {\n+ // If we have a single element, we can return it ... | 2025-06-10T04:25:03 |
huggingface/transformers | f6195948b47f06444a7bdf5f169197ed64b64de2 | 0f19dec775aae867c36d29db5d797afb87af2ff6 | Fix variable shadowing in pipeline example and typo in BART docs (BERT → BART) (#44935)
Update bart.md | [
{
"path": "docs/source/en/model_doc/bart.md",
"patch": "@@ -37,7 +37,7 @@ The example below demonstrates how to predict the `[MASK]` token with [`Pipeline\n import torch\n from transformers import pipeline\n \n-pipeline = pipeline(\n+fill_mask_pipeline = pipeline(\n task=\"fill-mask\",\n model=\"fac... | 2026-03-23T14:18:54 |
ollama/ollama | 099a0f18ef29a95d8d6c4fe1343e48e0d9f4cdd7 | fff696ee311ac1669e2235df6eb92043efde4f95 | build: fix Dockerfile mlx directory (#14131) | [
{
"path": "Dockerfile",
"patch": "@@ -147,7 +147,7 @@ ARG PARALLEL\n WORKDIR /go/src/github.com/ollama/ollama\n COPY CMakeLists.txt CMakePresets.json .\n COPY ml/backend/ggml/ggml ml/backend/ggml/ggml\n-COPY x/ml/backend/mlx x/ml/backend/mlx\n+COPY x/imagegen/mlx x/imagegen/mlx\n COPY go.mod go.sum .\n COPY... | 2026-02-07T01:08:53 |
golang/go | 81c66e71d480ae2372b7eea4bcdf600b50fdd5e1 | d524e1eccd559b40130c3bac77f3f7dc33d476ab | runtime: check LSE support on ARM64 at runtime init
Check presence of LSE support on ARM64 chip if we targeted it at compile
time.
Related to #69124
Updates #60905
Fixes #71411
Change-Id: I65e899a28ff64a390182572c0c353aa5931fc85d
Reviewed-on: https://go-review.googlesource.com/c/go/+/645795
Reviewed-by: Cherry Mui <... | [
{
"path": "src/runtime/asm_arm64.s",
"patch": "@@ -8,6 +8,28 @@\n #include \"funcdata.h\"\n #include \"textflag.h\"\n \n+#ifdef GOARM64_LSE\n+DATA no_lse_msg<>+0x00(SB)/64, $\"This program can only run on ARM64 processors with LSE support.\\n\"\n+GLOBL no_lse_msg<>(SB), RODATA, $64\n+#endif\n+\n+// We know ... | 2025-01-31T13:59:02 |
vercel/next.js | 4250c5b318be660a94ce58252ab9dcb68a992741 | 9be85fadc2010d6f7685c0fa7d41c700c58962c2 | feat(turbopack): Invalidate the persistent cache upon panic (#80225)
This is intended as a band-aid "fix" for persistent caching where issues stick around after restarts of the development server. It builds on top of the same codepath we're using for the explicit cache clearing button in the devtools.
As part of this... | [
{
"path": "crates/napi/src/lib.rs",
"patch": "@@ -72,7 +72,7 @@ fn init() {\n use std::panic::{set_hook, take_hook};\n \n use tokio::runtime::Builder;\n- use turbo_tasks::handle_panic;\n+ use turbo_tasks::panic_hooks::handle_panic;\n use turbo_tasks_malloc::TurboMalloc;\n \n let prev_h... | 2025-06-10T04:10:39 |
huggingface/transformers | 0f19dec775aae867c36d29db5d797afb87af2ff6 | ed003b4482aabdf8377250f22826dd31f378269c | Fix failing job `Update Transformers metadata` after #43514 (#44941)
* fix
* check
* revert
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/video_processing_utils.py",
"patch": "@@ -28,8 +28,8 @@\n from .image_processing_utils import BatchFeature\n from .image_utils import (\n ChannelDimension,\n- PILImageResampling,\n SizeDict,\n+ is_vision_available,\n validate_kwargs,\n )\n from .processing_utils... | 2026-03-23T13:41:37 |
ollama/ollama | 9e2003f88a943906113d99c2cf9a15b5bfd4dde9 | 42e1d49fbe5683740680be657306dcf66fa2d76d | cmd/config: offer to pull missing models instead of erroring (#14113) | [
{
"path": "cmd/config/integrations.go",
"patch": "@@ -194,6 +194,20 @@ func pullIfNeeded(ctx context.Context, client *api.Client, existingModels map[st\n \treturn nil\n }\n \n+// showOrPull checks if a model exists via client.Show and offers to pull it if not found.\n+func showOrPull(ctx context.Context, cl... | 2026-02-06T18:19:47 |
electron/electron | f2c341b655406434b5a44bc8b1e2418d664c319b | bcafe8f65462202715af92d9c43be182ba3999bb | chore: bump chromium to 108.0.5355.0 (main) (#35900)
* chore: bump chromium in DEPS to 108.0.5339.0
* chore: bump chromium in DEPS to 108.0.5341.0
* chore: sync patch to unrelated upstream code shear
patches/chromium/network_service_allow_remote_certificate_verification_logic.patch
Xref: https://chromium-r... | [
{
"path": "BUILD.gn",
"patch": "@@ -490,13 +490,6 @@ source_set(\"electron_lib\") {\n ]\n }\n \n- if (is_linux) {\n- deps += [\n- \"//components/crash/content/browser\",\n- \"//ui/gtk:gtk_config\",\n- ]\n- }\n-\n if (is_mac) {\n deps += [\n \"//components/remote_cocoa/app... | 2022-10-17T14:22:24 |
golang/go | d5b75e40462c2b357df96de3083705d8ea4c8954 | b38415d7e9abad2a8255c6b527ab7a033851c5f2 | runtime/maps: fix typo in group.go comment (H1 -> H2)
Fixes a typo to correctly describe the hash bits of the control word.
Change-Id: Id3c2ae0bd529e579a95258845f9d8028e23d10d2
GitHub-Last-Rev: 1baa81be5d292d5625d5d7788b8ea090453f962c
GitHub-Pull-Request: golang/go#71730
Reviewed-on: https://go-review.googlesource.co... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -111,7 +111,7 @@ func bitsetShiftOutLowest(b bitset) bitset {\n //\n //\t empty: 1 0 0 0 0 0 0 0\n //\tdeleted: 1 1 1 1 1 1 1 0\n-//\t full: 0 h h h h h h h // h represents the H1 hash bits\n+//\t full: 0 h h h h h h h // h represents the H... | 2025-02-14T12:03:06 |
vercel/next.js | 3e0c228f6aa1da7e30f60a343462ab618170e15b | d69496704a433acefb7784b2c5e0897ac75a1c21 | [test] separate tracing error test from action test suite (#80324) | [
{
"path": "test/e2e/app-dir/actions/app-action.test.ts",
"patch": "@@ -10,7 +10,7 @@ import {\n import type { Request, Response } from 'playwright'\n import fs from 'fs-extra'\n import nodeFs from 'fs'\n-import path, { join } from 'path'\n+import { join } from 'path'\n import { outdent } from 'outdent'\n \n... | 2025-06-09T21:12:06 |
huggingface/transformers | ed003b4482aabdf8377250f22826dd31f378269c | eb3d67aaafe368863afc77e4b60fa60c2077c8b5 | Clearer type hints and fix rope validation in configs (#44943)
* more fixes
* dont rraise warning, Yoni has a PR to handle it more generally
* the test | [
{
"path": "src/transformers/configuration_utils.py",
"patch": "@@ -162,6 +162,9 @@ class PreTrainedConfig(PushToHubMixin, RotaryEmbeddingConfigMixin):\n `float16` weights.\n \"\"\"\n \n+ # Class attributes that we don't want to save or have in `self.__dict__`\n+ # They are not supposed... | 2026-03-23T13:20:04 |
ollama/ollama | 42e1d49fbe5683740680be657306dcf66fa2d76d | 814630ca6046115e0c738de594a57fda4bea1f96 | cmd: fix context limits for droid and add qwen3-coder-next ctx (#14112) | [
{
"path": "cmd/config/droid.go",
"patch": "@@ -1,13 +1,15 @@\n package config\n \n import (\n+\t\"context\"\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"slices\"\n \n+\t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/envconfig\"\n )\n \n@@ -112,17 ... | 2026-02-06T06:29:53 |
facebook/react | e2836eec5be07acf5a0cf7af3a230f2526d26031 | 3e812df89cee2686bcb1086038fcb2e609802dd4 | [bugfix] do not hoist computed memberpaths in lambdas | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3530,6 +3530,14 @@ function lowerAssignment(\n }\n }\n \n+function isValidDependency(path: NodePath<t.MemberExpression>): boolean {\n+ const parent: NodePath<t.Node> = path.parentPath;\n+ return (\n+ !path.node... | 2023-10-30T16:56:50 |
golang/go | 586e205522279406a9fcd2ab6cd1a1f416f1eae4 | beac2f7d3b72ecaff146b98afb690489f0192422 | std: add //go:fix inline directives to some deprecated functions
In particular, we apply it only to functions where it is always
a code improvement to inline the call.
We also apply it to some constants.
In a few cases this may introduce a panic statement at the
caller, which is debatable, but making the potential fo... | [
{
"path": "src/cmd/compile/internal/noder/noder.go",
"patch": "@@ -162,6 +162,7 @@ var allowedStdPragmas = map[string]bool{\n \t\"go:cgo_ldflag\": true,\n \t\"go:cgo_dynamic_linker\": true,\n \t\"go:embed\": true,\n+\t\"go:fix\": true,\n \t\"go:generate\": true,... | 2025-02-12T16:18:30 |
electron/electron | d8d5d4a4a18796d2ec78e2ffa75d6f5908372c26 | 295c5331eeb2cce40419b6a54875fba88d61422d | docs: update VS Code debugger types to remove "pwa-" prefix (#36042) | [
{
"path": "docs/tutorial/tutorial-2-first-app.md",
"patch": "@@ -369,12 +369,12 @@ run. Create a launch.json configuration in a new `.vscode` folder in your projec\n \"name\": \"Renderer\",\n \"port\": 9222,\n \"request\": \"attach\",\n- \"type\": \"pwa-chrome\",\n+ \"type\": \"c... | 2022-10-17T11:35:36 |
vercel/next.js | f607d0cf976d6cbe654dd3b7914113701d5a93f9 | 1d70e57826823a8355f44798b2985e62b4006ffa | [turbopack] Remove the final uses of `Value<..>` and delete the type (#80144)
Remove the final uses of `Value<..>` and destroy it.
### Why?
The `Value<>` type is confusing and error prone, lets destroy it!
As discussed over slack, turbo_tasks::Value type always implements is_resolved as true and is_transient as fals... | [
{
"path": "crates/next-api/src/pages.rs",
"patch": "@@ -29,8 +29,8 @@ use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- Completion, FxIndexMap, NonLocalValue, ResolvedVc, TaskInput, Value, ValueToString, Vc,\n- fxindexmap, fxinde... | 2025-06-09T00:36:10 |
huggingface/transformers | ddb709c8c941ad01c331fc79113438dda466940c | d03945fb8db6d2d41d2b27c06e65143038936f76 | fix(i18n): replace broken relative links to awesome-transformers.md with absolute URLs (#44905)
13 i18n README files referenced `./awesome-transformers.md` which resolves
to `i18n/awesome-transformers.md` — a non-existent path. Replace with the
absolute GitHub URL so links work regardless of the file's location.
Co-a... | [
{
"path": "i18n/README_ar.md",
"patch": "@@ -122,7 +122,7 @@ limitations under the License.\n \n 🤗 Transformers هو أكثر من مجرد مجموعة أدوات لاستخدام النماذج المُدربة مسبقًا: إنه مجتمع من المشاريع المبنية حوله ومركز Hugging Face. نريد أن يمكّن 🤗 Transformers المطورين والباحثين والطلاب والأساتذة والمهندسين... | 2026-03-23T12:35:33 |
ollama/ollama | c61023f5548f61651b7fd04393e2a93430f89a71 | d25535c3f3d59331755553ece7482b9572d4edb5 | ollamarunner: Fix off by one error with numPredict
When numPredict is set, the user will receive one less token
than the requested limit. In addition, the stats will incorrectly
show the number of tokens returned as the limit. In cases where
numPredict is not set, the number of tokens is reported correctly.
This occu... | [
{
"path": "integration/basic_test.go",
"patch": "@@ -144,3 +144,47 @@ func TestUnicodeModelDir(t *testing.T) {\n \t}\n \tChatTestHelper(ctx, t, req, blueSkyExpected)\n }\n+\n+// TestNumPredict verifies that when num_predict is set, the model generates\n+// exactly that many tokens. It uses logprobs to count... | 2026-02-04T23:36:11 |
facebook/react | 3e812df89cee2686bcb1086038fcb2e609802dd4 | f648e4ce85dd3b1a8ecc4120a0629a4b75859480 | [repro] Test case for more variable naming collision bugs
---
bug repro from @JacksonGL
(we currently bailout for references to `useMemoCache`, but not other variables
that may collide with codegenned ones).
```
% yarn sprout --filter
yarn run v1.22.19
$ node ../sprout/dist/main.js --filter
FAIL todo ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/todo-rename-source-variables.expect.md",
"patch": "@@ -0,0 +1,57 @@\n+\n+## Input\n+\n+```javascript\n+import { identity } from \"shared-runtime\";\n+\n+const $ = \"module_$\";\n+const t0 = \"module_t0\";\n+const c_0 = \"... | 2023-10-30T16:01:24 |
electron/electron | 295c5331eeb2cce40419b6a54875fba88d61422d | 76880be6d2cc466a44cf437bf34bf32f94a9f6ad | fix: override app's desktop name and v8 flags in default-app (#35997) | [
{
"path": "default_app/main.ts",
"patch": "@@ -83,7 +83,7 @@ function loadApplicationPackage (packagePath: string) {\n });\n \n try {\n- // Override app name and version.\n+ // Override app's package.json data.\n packagePath = path.resolve(packagePath);\n const packageJsonPath = path.join(... | 2022-10-17T08:34:24 |
huggingface/transformers | d03945fb8db6d2d41d2b27c06e65143038936f76 | 29db503cdef2f00d1f0ecd5841c3a486708ed1dd | Fix backward compatibility for full path imports of Fast Image Processors (#44926)
* Fix backward compatibility full path imports fast image processors
* skip fast aliases in check_repo
* Add warning
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* format
Signed-off-by: Harry Mellor <1998... | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -822,6 +822,28 @@ def _get_target():\n _create_module_alias(f\"{__name__}.tokenization_utils\", \".tokenization_utils_sentencepiece\")\n _create_module_alias(f\"{__name__}.image_processing_utils_fast\", \".image_processing_backends\")\n \n+ f... | 2026-03-23T12:22:55 |
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 | 1d70e57826823a8355f44798b2985e62b4006ffa | a01169523a3abc6c192a377e2e7ddcffef459f17 | [turbopack] Remove uses of `Value<..>` instead make the payloads impl Taskinput
(#80142)
Remove uses of `Value<..>` instead make the payloads impl Taskinput
### Why?
The Value<> type is confusing and error prone, lets destroy it!
As discussed over slack, turbo_tasks::Value type always implements is_resolved as true... | [
{
"path": "turbopack/crates/turbopack-browser/src/ecmascript/evaluate/chunk.rs",
"patch": "@@ -228,7 +228,7 @@ impl EcmascriptBrowserEvaluateChunk {\n .await?,\n );\n \n- Ok(AssetIdent::new(Value::new(ident)))\n+ Ok(AssetIdent::new(ident))\n }\n \n #[turbo_tasks... | 2025-06-08T23:36:59 |
ollama/ollama | c323161f24710d4c8ddaed440c6028b650ffb167 | 255579aaa7d21cf7eb93863c7d754ae02cd81985 | cmd: helpful error message for remote models (#14057)
When trying to use cloud model with OLLAMA_HOST="ollama.com" while not signed in a helpful error message is displayed when the user is not signed in telling them they must sign in to use cloud models. This should be the same experience for models which specify a re... | [
{
"path": "cmd/cmd.go",
"patch": "@@ -367,14 +367,25 @@ func loadOrUnloadModel(cmd *cobra.Command, opts *runOptions) error {\n \t\treturn err\n \t} else if info.RemoteHost != \"\" {\n \t\t// Cloud model, no need to load/unload\n+\n+\t\tisCloud := strings.HasPrefix(info.RemoteHost, \"https://ollama.com\")\n+... | 2026-02-04T22:55:11 |
facebook/react | 51baf5807e6d99d27dd1b233225402330cc0375c | 419310cd15673d1c3d4112cbedf85ea08c1c1e61 | [test/react] Fix github workflow
The flattening broke the shell script because the directory structure changed.
Instead of depending on a flaky shell script, this PR encodes the commands as
part of the github workflow. | [
{
"path": "compiler/.github/workflows/react.yml",
"patch": "@@ -17,6 +17,10 @@ jobs:\n cache-dependency-path: yarn.lock\n - run: yarn install --frozen-lockfile\n - run: yarn workspace babel-plugin-react-forget run build\n+ - run: yarn link\n+ working-directory: packages/bab... | 2023-10-25T11:36:55 |
electron/electron | dc5d27a73bd3f58d992f793d127122d3eef8e34c | ce138fe96954b23c76583b5c1af3abbff0b2f661 | docs: fix erroneous removal warning for decrementCapturerCount (#36016) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -103,7 +103,7 @@ w.capturePage().then(image => {\n })\n ```\n \n-### Removed: `webContents.decrementCapturerCount(stayHidden, stayAwake)`\n+### Deprecated: `webContents.decrementCapturerCount(stayHidden, stayAwake)`\n \n `webContents.decrementCapturerCount(... | 2022-10-13T15:40:25 |
huggingface/transformers | 29db503cdef2f00d1f0ecd5841c3a486708ed1dd | b1527a32a1010cd94bfb4f937af247bb5871f6fd | chore(typing): added rule 11 (#44865)
* added rule 11
* fix all offenders for trt011
* the rule was only matching for loops, it now derives its target set from base_model_pp_plan
* unify loop
* single ast pass
---------
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> | [
{
"path": "src/transformers/models/qwen3_5/modeling_qwen3_5.py",
"patch": "@@ -1356,8 +1356,8 @@ def forward(\n hidden_states = inputs_embeds\n position_embeddings = self.rotary_emb(hidden_states, position_ids)\n \n- for layer_idx, decoder_layer in enumerate(self.layers[: self.config.... | 2026-03-23T12:19:45 |
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 |
vercel/next.js | 1009c5061e608583ed365bbea5b2e91ca3a2b679 | f05106dad54d5cd34eae81c072cd3cd05a15b1c9 | [turbopack] Remove uses of `Value<..>` instead make the payloads impl Taskinput (#80141)
Remove uses of `Value<..>` instead make the payloads impl Taskinput
### Why?
The Value<> type is confusing and error prone, lets destroy it!
As discussed over slack, turbo_tasks::Value type always implements is_resolved as true ... | [
{
"path": "crates/next-core/src/next_font/google/mod.rs",
"patch": "@@ -6,7 +6,7 @@ use indoc::formatdoc;\n use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{Completion, FxIndexMap, ResolvedVc, Value, Vc};\n+use turbo_tasks::{Completion,... | 2025-06-08T16:47:26 |
facebook/react | c72673bd8f1a6a47f8b403f5600959c6d92b1582 | ad1fe50546f112e5efae55ab2957007dee29d86c | [fixtures] Run prettier after babel-plugin
This moves prettier formatting into fixture-test-utils instead, so we can remove
the dependency on prettier in the babel plugin. I want to do this because I
don't want to include prettier in the rolledup artifact when we build the babel
plugin. | [
{
"path": "compiler/packages/fixture-test-utils/package.json",
"patch": "@@ -11,6 +11,7 @@\n \"dependencies\": {\n \"@parcel/watcher\": \"^2.1.0\",\n \"chalk\": \"4\",\n+ \"prettier\": \"2.8.8\",\n \"readline\": \"^1.3.0\",\n \"typescript\": \"^5.1.0\",\n \"yargs\": \"^17.7.1\"\n@@ ... | 2023-10-27T18:07:55 |
electron/electron | ce138fe96954b23c76583b5c1af3abbff0b2f661 | 79454dc50dfaff7ea2872f3f0724251f4b4bc901 | fix: Windows 7 frame showing for frameless non-resizable windows (#35365) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -115,11 +115,11 @@ chore_allow_chromium_to_handle_synthetic_mouse_events_for_touch.patch\n add_maximized_parameter_to_linuxui_getwindowframeprovider.patch\n revert_spellcheck_fully_launch_spell_check_delayed_initialization.patch\n add_electron_deps_to_lice... | 2022-10-13T15:39:40 |
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 | b1527a32a1010cd94bfb4f937af247bb5871f6fd | 9dc8d8aa3090ab3f39e6086d02b712f9274bc795 | fix: improve processor loading performance by avoiding redundant tokenizer parsing (#44927)
* fix(tokenization_utils_tokenizers): avoid parsing full vocab in from_file when only post_processor/padding/truncation are needed
* fix(tokenization_utils_tokenizers): fall back to from_file when model type is missing in toke... | [
{
"path": "src/transformers/tokenization_utils_tokenizers.py",
"patch": "@@ -118,7 +118,32 @@ def convert_to_native_format(cls, trust_remote_code=False, **kwargs):\n elif fast_tokenizer_file is not None and os.path.isfile(fast_tokenizer_file):\n # we extract vocab/merges and pass decoder... | 2026-03-23T10:46:49 |
vercel/next.js | f05106dad54d5cd34eae81c072cd3cd05a15b1c9 | 4e2f3a4e5400c48192f99adb666c5384e928bd88 | fix typo (#80282)
<!-- 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
### Improving Documentation
- R... | [
{
"path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx",
"patch": "@@ -29,7 +29,7 @@ There are two types of server rendering, based on _when_ it happens:\n - **Static Rendering (or Prerendering)** happens at build time or during [revalidation](/docs/app/getting-started/caching-and-revalidat... | 2025-06-07T23:28:44 |
ollama/ollama | 255579aaa7d21cf7eb93863c7d754ae02cd81985 | f7102ba8262a69d5346350ea1f0b8d2802f13dc2 | qwen3next: fix issue in delta net (#14075)
gDiffExp was being broadcast across the wrong axis when multiplying with k. This fix reshapes gDiffExp to [1, chunkSize, nChunks, ...] | [
{
"path": "model/models/qwen3next/deltanet.go",
"patch": "@@ -406,8 +406,10 @@ func (gdn *GatedDeltaNet) deltaNetChunked(\n \tgDiff := gCumsum.Neg(ctx).Add(ctx, gLast)\n \tgDiffExp := gDiff.Exp(ctx)\n \n-\t// key_gdiff = k * exp(g_diff)\n-\tkeyGDiff := k.Mul(ctx, gDiffExp)\n+\t// Reshapes g_diff_exp to [1, ... | 2026-02-04T21:40:38 |
facebook/react | b8e47d988eb3ba547c102c0b12c351250ed955e0 | 05fbd1aab036ecbd14469d6376024439bc931f68 | Bugfix: useFormState queues actions in wrong order (#27570)
I neglected to update the "last" pointer of the action queue. Since the
queue is circular, rather than dropping the update, the effect was to
add the update to the front of the queue instead of the back. I didn't
notice earlier because in my demos/tests, t... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -90,7 +90,7 @@ describe('ReactDOMForm', () => {\n const thenable = record.value;\n record.status = 'resolved';\n record.value = text;\n- thenable.pings.forEach(t => t());\n+ thenable.pings.forEach(t =... | 2023-10-23T21:52:15 |
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 |
huggingface/transformers | 9dc8d8aa3090ab3f39e6086d02b712f9274bc795 | 687a70daa99d1e1cce4a681291a5348890843254 | fix(camembert): add tie_word_embeddings=True to CamembertConfig (#44931)
In v5, `modeling_utils.get_expanded_tied_weights_keys()` checks
`config.tie_word_embeddings` and returns an empty dict (skipping all
weight tying) when the attribute is absent or False.
`CamembertConfig` was missing `tie_word_embeddings: bool = ... | [
{
"path": "src/transformers/models/camembert/configuration_camembert.py",
"patch": "@@ -60,6 +60,7 @@ class CamembertConfig(PreTrainedConfig):\n classifier_dropout: float | int | None = None\n is_decoder: bool = False\n add_cross_attention: bool = False\n+ tie_word_embeddings: bool = True\n \... | 2026-03-23T10:47:48 |
vercel/next.js | 9e9d13fb4d43fa0cb7bc4f51180678fc5099950c | aa4d90c754ece54f831a7402590819f6e779c1fe | Turbopack: really fix export collection (#80240)
- For `export default class Foo`, we don't insert a `var __TURBOPACK__default__export__ = Foo` variable because it should be a live binding. So put the correct name/syntax context into `ImportMap.exports`
- The `__TURBOPACK__default__export__` generated by module fragm... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/imports.rs",
"patch": "@@ -643,13 +643,30 @@ impl Visit for Analyzer<'_> {\n \n self.data.exports.insert(\n rcstr!(\"default\"),\n- (\n- // `EsmModuleItem::code_generation` inserts this variable.\n- ... | 2025-06-07T12:08:52 |
ollama/ollama | 6582f6da5c59b40bab3dcac646c17e3422a66460 | 0334ffa6250752c0e5e3d7f4467b0f50cc906fde | llm: Make "do load request" error message more informative | [
{
"path": "llm/server.go",
"patch": "@@ -1201,7 +1201,8 @@ func (s *llmServer) initModel(ctx context.Context, req LoadRequest, operation Lo\n \n \tresp, err := http.DefaultClient.Do(r)\n \tif err != nil {\n-\t\treturn nil, fmt.Errorf(\"do load request: %w\", err)\n+\t\tslog.Error(\"do load request\", \"erro... | 2026-01-30T15:34:21 |
electron/electron | 8a926ffde4ce4af49ce833b97c884636074b0a1f | 7ce94eb0b4cfa31c4a14a14c538fe59884dbf166 | refactor: use views NonClientHitTest for draggable regions on mac (#35603)
* refactor: use views NonClientHitTest for draggable regions on mac
* iwyu
* add backport of 9bb5f0316
* chore: update patches
* remove some unneeded functions
* remove test for triggering when BW is focused
* chore: update pa... | [
{
"path": "filenames.gni",
"patch": "@@ -124,7 +124,6 @@ filenames = {\n \"shell/app/electron_main_delegate_mac.h\",\n \"shell/app/electron_main_delegate_mac.mm\",\n \"shell/browser/api/electron_api_app_mac.mm\",\n- \"shell/browser/api/electron_api_browser_window_mac.mm\",\n \"shell/brows... | 2022-10-12T16:05:45 |
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 |
huggingface/transformers | a8683756653094e3fc3016df8abcdeaaec758f9a | 55cc1a7fb8e53a5e7e35ca9cf9759498f20abb93 | fix `processing_utils.py`: avoid deepcopying tokenizer in `ProcessorMixin` to improve performance (#44894)
fix(processing_utils): avoid deepcopying tokenizer in ProcessorMixin.to_dict to improve performance
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/processing_utils.py",
"patch": "@@ -704,7 +704,16 @@ def to_dict(self) -> dict[str, Any]:\n Returns:\n `dict[str, Any]`: Dictionary of all the attributes that make up this processor instance.\n \"\"\"\n- output = copy.deepcopy(self.__dict__)\n+ ... | 2026-03-23T09:56:33 |
facebook/react | 6db7f4209e6f32ebde298a0b7451710dd6aa3e19 | 90172d12e8f06936ade78ed916397c16a2bec4f8 | Bugfix: useDeferredValue loop during popstate transition (#27559)
During a popstate event, we attempt to render updates synchronously even
if they are transitions, to preserve scroll position if possible. We do
this by entangling the transition lane with the Sync lane.
However, if rendering the transition spawns ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -583,8 +583,29 @@ export function getCurrentEventPriority(): EventPriority {\n return getEventPriority(currentEvent.type);\n }\n \n+let currentPopstateTransitionEvent: Event | null = null;\n export function shouldAttem... | 2023-10-21T16:11:25 |
vercel/next.js | aa4d90c754ece54f831a7402590819f6e779c1fe | 70cbcf1aa0866b284a14ebf6e48e23483dc60ae9 | Revert "[test] fix flaky test of basepath navigation" (#80259) | [
{
"path": "test/e2e/app-dir/app-basepath/index.test.ts",
"patch": "@@ -12,12 +12,7 @@ describe('app dir - basepath', () => {\n \n it('should successfully hard navigate from pages -> app', async () => {\n const browser = await next.browser('/base/pages-path')\n- await browser.waitForElementByCss('#t... | 2025-06-07T06:49:23 |
ollama/ollama | d11fbd2c603aad64535c5cecd6ee68a02d01aa0c | 6a7c3f188e679b1849e4618754b25dc9c19541d7 | server: fix ollama ps showing configured instead of actual context length
When context length is clamped to the model's trained context length,
ollama ps now shows the actual clamped value instead of the originally
configured value. | [
{
"path": "llm/server.go",
"patch": "@@ -80,6 +80,7 @@ type LlamaServer interface {\n \tGetPort() int\n \tGetDeviceInfos(ctx context.Context) []ml.DeviceInfo\n \tHasExited() bool\n+\tContextLength() int\n }\n \n // llmServer is an instance of a runner hosting a single model\n@@ -1901,6 +1902,10 @@ func (s *... | 2026-01-28T00:27:55 |
electron/electron | 7ce94eb0b4cfa31c4a14a14c538fe59884dbf166 | 1328d8d6708cce054bf0d81044fa3f8032d3885f | fix: disable `nodeIntegrationInWorker` for certain Worker types (#35919)
fix: disable nodeIntegrationInWorker for certain Worker types | [
{
"path": "docs/tutorial/multithreading.md",
"patch": "@@ -20,6 +20,8 @@ const win = new BrowserWindow({\n The `nodeIntegrationInWorker` can be used independent of `nodeIntegration`, but\n `sandbox` must not be set to `true`.\n \n+**Note:** This option is not available in [`SharedWorker`s](https://developer... | 2022-10-12T14:36:24 |
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 | 55cc1a7fb8e53a5e7e35ca9cf9759498f20abb93 | 394b1a0eaa8e6199e372334da0aff3753a117fdb | fix: set `clean_up_tokenization_spaces=False` in Llama 3 tokenizer conversion (#44914)
fix: set clean_up_tokenization_spaces=False in Llama 3 tokenizer conversion
The Llama3Converter hardcodes clean_up_tokenization_spaces=True, which
applies BERT-era string replacements (` .` → `.`, ` !` → `!`, etc.)
that silently co... | [
{
"path": "src/transformers/models/llama/convert_llama_weights_to_hf.py",
"patch": "@@ -465,7 +465,7 @@ def __init__(self, vocab_file, special_tokens=None, instruct=False, llama_versio\n eos_token=\"<|end_of_text|>\" if not instruct else \"<|eot_id|>\",\n model_input_names=[\"input_i... | 2026-03-23T08:28:31 |
vercel/next.js | b8b85c6739848284ea6d7472b58fd6f1685d4d3f | 85c718fd65ef6f3947257e3095f4fb0fbe4ed1a0 | [turbopack] Replace uses of `Value<ContentSourceData>` with just `ContentSourceData` (#80140)
Remove Value<ContentSourceData> instead just use ContentSourceData
### Why?
The Value<> type is confusing and error prone, lets destroy it!
As discussed over slack, turbo_tasks::Value type always implements is_resolved as t... | [
{
"path": "turbopack/crates/turbo-tasks/src/task/task_input.rs",
"patch": "@@ -1,4 +1,7 @@\n-use std::{any::Any, fmt::Debug, future::Future, hash::Hash, sync::Arc, time::Duration};\n+use std::{\n+ any::Any, collections::BTreeMap, fmt::Debug, future::Future, hash::Hash, sync::Arc,\n+ time::Duration,\n+... | 2025-06-06T22:20:53 |
facebook/react | b049c14bb37965940aeeaa622d484981a2cf25a3 | f8cee28f1d7c8da8522974dd3e61b7fc0815c85d | Repro of hoisting bug
Adds a test case reproducing an issue with hoisting. This seems like a case
where hoisting was incorrectly applied as this example doesn't require it | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-hoisting-nested-block-statements.expect.md",
"patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+function hoisting(cond) {\n+ if (cond) {\n+ const x = 1;\n+ foo(x);\n+ }\n+\n+ const x = 2;\n+ ... | 2023-10-20T10:34:41 |
electron/electron | eb97ce19316a755dc7d6dcfa06e02f8d942b02b6 | b6eadf2414ec1f71bef6dc35b0de2ff92219e3ae | build: fix building with enable_ppapi = false (#35988) | [
{
"path": "BUILD.gn",
"patch": "@@ -404,9 +404,6 @@ source_set(\"electron_lib\") {\n \"//media/mojo/mojom\",\n \"//net:extras\",\n \"//net:net_resources\",\n- \"//ppapi/host\",\n- \"//ppapi/proxy\",\n- \"//ppapi/shared_impl\",\n \"//printing/buildflags\",\n \"//services/device/p... | 2022-10-12T14:04:30 |
ollama/ollama | 3590fbfa761ad1d97bbd092baec58b0b8022fef4 | cd0094f772426efdd7ccc57d1e88f35c25234130 | runner: fix typo 'baackend' -> 'backend' in error messages (#13645)
Fix typo in three error messages where 'baackend' was written instead
of 'backend' in the /health endpoint handler when initializing the
dummy model load. | [
{
"path": "runner/ollamarunner/runner.go",
"patch": "@@ -1358,7 +1358,7 @@ func (s *Server) info(w http.ResponseWriter, r *http.Request) {\n \t\t// Dummy load to get the backend wired up\n \t\tf, err := os.CreateTemp(\"\", \"*.bin\")\n \t\tif err != nil {\n-\t\t\thttp.Error(w, fmt.Sprintf(\"failed to initia... | 2026-01-31T21:26:20 |
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 |
vercel/next.js | 9155c8ac3cf6160e6140033d0cefa07fbc23abdc | 660df3c9256bae23653963b6b69afc6621720277 | fix: invalid middleware configs should fail the build (#80221)
In #68638 we intended to fail the build if an invalid matcher
configuration was provided by importing a shared constant from the
static page analysis fn. This worked fine for segment validations for
pages/route handlers. However, the build would incorrectl... | [
{
"path": "packages/next/src/build/analysis/get-page-static-info.ts",
"patch": "@@ -79,6 +79,7 @@ export interface AppPageStaticInfo {\n runtime: AppSegmentConfig['runtime'] | undefined\n preferredRegion: AppSegmentConfig['preferredRegion'] | undefined\n maxDuration: number | undefined\n+ hadUnsuppor... | 2025-06-06T19:08:07 |
huggingface/transformers | 52bc9b7e4da1d108f358d77b58f518c61d6319be | e168f86efb28d92fa4ebd7e137d1fba4bec60bc3 | [Model] Add UVDoc Model Support (#43385)
* Feat: Add UVDoc model
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* update
* u... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -970,6 +970,8 @@\n title: Timm Wrapper\n - local: model_doc/upernet\n title: UperNet\n+ - local: model_doc/uvdoc\n+ title: UVDoc\n - local: model_doc/vit\n title: Vision Transformer (ViT)\n - local: m... | 2026-03-20T22:02:35 |
ollama/ollama | e0f03790b1a9d77c6ff39de21a4600832a0d41c5 | 3ab842b0f5033b0074f999fa25ce97a1c0ec9b29 | parsers/ministral: fix nested tool call parsing by counting brace nesting (#13905)
* parsers/ministral: fix nested tool call parsing by counting brace nesting
* fix lint error
* parsers: refactor ministral parser
The old one was very tied to expecting to see only one token at a time,
which I don't like to assume (w... | [
{
"path": "model/parsers/ministral.go",
"patch": "@@ -4,6 +4,7 @@ import (\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"strings\"\n+\t\"unicode\"\n \n \t\"github.com/ollama/ollama/api\"\n )\n@@ -17,12 +18,34 @@ const (\n \tministralCollectingToolArgs\n )\n \n+// ministralEvent represents an event emitted during ... | 2026-01-26T23:03:43 |
electron/electron | ee7cf5a6d40096a887166cfe714cd6de79052b64 | 0759f3320e905dd7e19c05b038204211dee26e39 | fix: `webContents.printToPDF` option plumbing (#35975)
fix: contents.printToPDF option plumbing | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -174,13 +174,13 @@ WebContents.prototype.printToPDF = async function (options) {\n headerTemplate: '',\n footerTemplate: '',\n printBackground: false,\n- scale: 1,\n+ scale: 1.0,\n paperWidth: 8.5,\n- paperHeight: 11,\n- m... | 2022-10-11T23:06:34 |
facebook/react | f8cee28f1d7c8da8522974dd3e61b7fc0815c85d | 84da8994bd55f4a908fe0ca8446d1bb4d09adee2 | Retain minimal variable declarations in DCE
Currently DCE can remove variable declarations that are unused, ie where all
control-flow paths to usage of the variable are overwritten by a reassignment.
We then have to reconstruct the original variable declaration at the appropriate
block scope during LeaveSSA, which... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3204,11 +3204,19 @@ function lowerAssignment(\n }\n }\n case \"ArrayPattern\": {\n- // TODO\n const lvalue = lvaluePath as NodePath<t.ArrayPattern>;\n const elements = lvalue.get(\"eleme... | 2023-10-19T21:08:15 |
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 |
huggingface/transformers | e168f86efb28d92fa4ebd7e137d1fba4bec60bc3 | e6ed96c7e93a6408a151e3177793212b02b8bb53 | Add backward compatibility for direct imports from legacy `image_processing_utils_fast` (#44897)
fix direct imports from image_processing_utils_fast | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -119,6 +119,7 @@\n ],\n \"hf_argparser\": [\"HfArgumentParser\"],\n \"hyperparameter_search\": [],\n+ \"image_processing_utils_fast\": [],\n \"image_transforms\": [],\n \"integrations\": [\n \"is_clearml_available\",\n@@ -... | 2026-03-20T19:47:10 |
vercel/next.js | 660df3c9256bae23653963b6b69afc6621720277 | bdd2afe733cd8140765cf250002c29aa1eb3e358 | [turbopack] Replace uses of `Value<ExecutionEnvironment>` with just `ExecutionEnvironment` (#80135)
Remove Value<ExecutionEnvironment> instead just use ExecutionEnvironment
Why?
The Value<> type is confusing and error prone, lets destroy it!
As discussed over slack, turbo_tasks::Value type always implements is_resol... | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -2,7 +2,7 @@ use std::iter::once;\n \n use anyhow::Result;\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{FxIndexMap, OptionVcExt, ResolvedVc, TaskInput, Value, Vc};\n+use turbo_tasks::{FxIndexMap, OptionVcExt, ResolvedVc, TaskInp... | 2025-06-06T16:07:35 |
ollama/ollama | 3ab842b0f5033b0074f999fa25ce97a1c0ec9b29 | b8e8ef8929629ad91c774415b53cbec233fb54c8 | cmd: clawdbot config fixes (#13922) | [
{
"path": "cmd/config/clawdbot.go",
"patch": "@@ -1,17 +1,22 @@\n package config\n \n import (\n+\t\"bytes\"\n \t\"encoding/json\"\n \t\"fmt\"\n+\t\"io\"\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"strings\"\n )\n \n type Clawdbot struct{}\n \n func (c *Clawdbot) String() string { return \"Clawdb... | 2026-01-26T22:34:29 |
facebook/react | 2eeb9f9226af60149792f5c33e29a9c0001bba61 | b67ddaa434d590f312fee6f9acee24accd064192 | [Flight Reply] Update error message (#27549)
This is in the reverse direction. | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -304,22 +304,22 @@ export function processReply(\n );\n } else if (objectName(value) !== 'Object') {\n console.error(\n- 'Only plain objects can be passed to Client Components from Server Com... | 2023-10-19T17:40:24 |
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 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.