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
golang/go
5d626c49ec0b43c1703d16967f0351eae13e7cb8
81566aff3a1787fc81d320be5c1b3cb7da081936
spec: fix a dead link Change-Id: If99aa8073cc0e7fe36d3775c635eaaab230fcd04 GitHub-Last-Rev: 06dbd990c72ee0e9c08254addd5ce669bfbe1883 GitHub-Pull-Request: golang/go#71083 Reviewed-on: https://go-review.googlesource.com/c/go/+/638638 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Jorropo <jorropo.pgm@g...
[ { "path": "doc/go_spec.html", "patch": "@@ -5906,7 +5906,7 @@ <h3 id=\"Order_of_evaluation\">Order of evaluation</h3>\n expression, assignment, or\n <a href=\"#Return_statements\">return statement</a>,\n all function calls, method calls,\n-<a href=\"#Receive operator\">receive operations</a>,\n+<a href=\"#R...
2025-01-02T20:49:07
huggingface/transformers
8e8b861c19c30c9bef73aa79ad7d0d2f0d9d9aeb
8e26f7e94b310dc9359bcf8bbe8fed453b4e8916
[Model] Add PP-DocLayoutV2 Model Support (#43018) * init * add model_doc * fix * update * update * update * update * update * update * update * update * update * update * update * update * update * update * let's try this * try * fixup docs, expecting autodocstring to fail * is it this * fix * up...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1248,6 +1248,8 @@\n title: Pix2Struct\n - local: model_doc/pixtral\n title: Pixtral\n+ - local: model_doc/pp_doclayout_v2\n+ title: PP-DocLayoutV2\n - local: model_doc/pp_doclayout_v3\n title: PP-DocLayout...
2026-02-27T09:16:28
facebook/react
c3d678985734c3657a551b88e03bbfca36228ae8
6c4318e5c2a1b40e71e9cfb5330022dc63916119
Reclassify existing errors Most of these errors were incorrectly using InvalidInput as a catchall for rejecting code. I went through each one and manually updated them to be more accurate
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1005,7 +1005,7 @@ function lowerExpression(\n } else {\n builder.errors.push({\n reason: `(BuildHIR::lowerExpression) Expected Identifier, got ${key.type} key in ObjectExpres...
2023-06-27T18:01:39
electron/electron
561be723736c6e677ebd20bbf582f797f09b8d92
a38e5d20ff0ffa9cd2875e95755b1ce4be0ebb83
chore: update husky to v8.0.1 (#34343) * chore: update husky v8.0.1 * chore: remove unnecessary .husky/.gitignore ref : https://github.com/typicode/husky/releases/tag/v7.0.0 * chore: add ^ prefix for husky version * chore: update yarn.lock Co-authored-by: Cheng Zhao <zcbenz@gmail.com>
[ { "path": ".husky/.gitignore", "patch": "@@ -1 +0,0 @@\n-_", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "package.json", "patch": "@@ -48,7 +48,7 @@\n \"folder-hash\": \"^2.1.1\",\n \"fs-extra\": \"^9.0.1\",\n \"got\": \"^6.3.0\",\n- \"husky\": \...
2022-06-01T17:00:48
golang/go
4b652e9f5f5c0793f2e41cd2876bce5a241b2c95
0afd7e85e5d7154161770f06a17d09bf1ffa3e94
cmd/go: fix two typos in helpdoc.go Change-Id: Ib750438107db6c82020cfb4abbab52435012b7fc GitHub-Last-Rev: 3fa9b8c7bc70965c1ec9082b00c9b5a7af9751ef GitHub-Pull-Request: golang/go#71082 Reviewed-on: https://go-review.googlesource.com/c/go/+/639217 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Michael Matl...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2181,7 +2181,7 @@\n // fields of all events to reconstruct the text format output, as it would\n // have appeared from go build without the -json flag.\n //\n-// Note that there may also be non-JSON error text on stdnard error, even\n+// Note that there may a...
2025-01-02T21:05:21
ollama/ollama
86834a279781d04d701babd3f14f36be9cc961e5
85ccf7354dd8b32862e1a27398780094504c7fd8
convert: fix tensor sorting (#12015) there's two bugs here. 1. the check for a layer id is incorrect and should be >= 0 since layer 0 is valid 2. if both tensors have an layer identifier, it will only compare the layer id which will return 0 if the tensors are in the same layer. instead it should fallback to...
[ { "path": "fs/ggml/ggml.go", "patch": "@@ -7,6 +7,7 @@ import (\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n+\t\"math\"\n \t\"slices\"\n \t\"strings\"\n \n@@ -276,7 +277,7 @@ type Tensor struct {\n \n func (t Tensor) block() (n int) {\n \tif _, err := fmt.Sscanf(t.Name, \"blk.%d.\", &n); err != nil {\n-\t\tret...
2025-08-26T20:57:46
huggingface/transformers
24db9db27e3a360149136ac7ba8ba253bb2d899f
710cfdb0af09542df087e1aaca8059fadcd8f364
Improve `has_similar_generate_outputs` assertions (#44166) This patch improves the `has_similar_generate_outputs` assertion, so we get full details when it fails. Before (CI output): ``` AssertionError: False is not true ``` After (CI output would look like): ``` AssertionError: Generate outputs are not similar en...
[ { "path": "tests/generation/test_utils.py", "patch": "@@ -725,7 +725,7 @@ def test_assisted_decoding_matches_greedy_search(self, assistant_type):\n atol = rtol = 1e-5\n \n # The two outputs must match and their shape must be as expected\n- self.assertTrue(has_similar_g...
2026-02-27T08:26:11
electron/electron
a38e5d20ff0ffa9cd2875e95755b1ce4be0ebb83
cda8f3c15cac770142025cc3818ab8f069468aa1
ci: cache python install to better deal with download errors. (#34360) * ci: cache python install to better deal with download errors. * chore: use our CDN to download python2 * build: DRY up the python install steps Co-authored-by: Samuel Attard <sattard@salesforce.com>
[ { "path": ".circleci/config/base.yml", "patch": "@@ -527,15 +527,6 @@ step-install-gnutar-on-mac: &step-install-gnutar-on-mac\n ln -fs /usr/local/bin/gtar /usr/local/bin/tar\n fi\n \n-step-install-python2-on-mac: &step-install-python2-on-mac\n- run:\n- name: Install python2 on macos\n- ...
2022-06-01T16:59:26
vercel/next.js
8223eb86925e575cd641b55626b4bbc4a4d788c6
e73545e2924bd6ec1f5671186d1af77edc3b12c3
[test] Add `debug-brk` package script (#79097)
[ { "path": "package.json", "patch": "@@ -62,6 +62,7 @@\n \"next-no-sourcemaps\": \"echo 'No longer supported. Use `pnpm next --disable-source-maps` instead'; exit 1;\",\n \"clean-trace-jaeger\": \"node scripts/rm.mjs test/integration/basic/.next && TRACE_TARGET=JAEGER pnpm next build test/integration...
2025-05-13T14:49:48
facebook/react
6c4318e5c2a1b40e71e9cfb5330022dc63916119
e762d5730bb25f5faf463165d2b98af4865f0a16
Add InvalidReact and InvalidConfig error severities
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -14,6 +14,14 @@ export enum ErrorSeverity {\n * Unexpected syntax or input that may not be safe to compile.\n */\n InvalidInput = \"InvalidInput\",\n+ /**\n+ * Code that breaks the rules of React.\n+...
2023-06-27T18:01:38
golang/go
0afd7e85e5d7154161770f06a17d09bf1ffa3e94
3c8e5b13df931e88fde51ff09b27cceeaab9f6c4
cmd/go: document GOCACHEPROG in go help environment This adds GOCACHEPROG to the list of environment variables in "go help environment" and points to the cacheprog package documentation for details of the protocol. Fixes #71032 Updates #59719 Change-Id: Ib8f5804926a8fa59237661076d129c2852665ac3 Reviewed-on: https://...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2333,6 +2333,10 @@\n //\tGOCACHE\n //\t\tThe directory where the go command will store cached\n //\t\tinformation for reuse in future builds.\n+//\tGOCACHEPROG\n+//\t\tA command (with optional space-separated flags) that implements an\n+//\t\texternal go comm...
2024-12-27T18:11:02
huggingface/transformers
710cfdb0af09542df087e1aaca8059fadcd8f364
add6461040a0ddeee7371448edbb2f02259621d6
Fix failed test case for exaone_moe model (#43938) * update expected value Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> * update Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com> --------- Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
[ { "path": "tests/models/exaone_moe/test_modeling_exaone_moe.py", "patch": "@@ -22,6 +22,7 @@\n is_torch_available,\n )\n from transformers.testing_utils import (\n+ Expectations,\n cleanup,\n require_flash_attn,\n require_torch,\n@@ -90,12 +91,28 @@ def test_model_logits(self):\n ...
2026-02-27T07:22:46
vercel/next.js
c1262aa970d8cba8f56de04535a108d61e5956fc
7fdc5a5d85da44684910dbac1657470165c1d533
Fix false-positive `"use cache"` misplacement error (#79151) This fixes an error where we incorrectly showed the following compiler error when using Turbopack: ```sh Ecmascript file had an error > 1 | 'use cache' | ^^^^^^^^^^^ 2 | 3 | import { useStuff } from './client-module' 4 | The "use cache" directive...
[ { "path": "crates/next-core/src/next_shared/transforms/server_actions.rs", "patch": "@@ -40,8 +40,8 @@ pub async fn get_server_actions_transform_rule(\n Ok(ModuleRule::new(\n module_rule_match_js_no_url(enable_mdx_rs),\n vec![ModuleRuleEffect::ExtendEcmascriptTransforms {\n- p...
2025-05-13T12:58:02
electron/electron
2cb53c5db1751170816959d6d89db58dc638b155
93b39b92b5078071f870b8e97c31e24c1974a49f
fix: zombie windows when fullscreening and closing (#34378)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -176,6 +176,10 @@ class NativeWindowMac : public NativeWindow,\n // Handle fullscreen transitions.\n void SetFullScreenTransitionState(FullScreenTransitionState state);\n void HandlePendingFullscreenTransitions();\n+ bool HandleDeferredClose...
2022-05-31T08:43:42
facebook/react
70e998a1064cc1e8e8f9103e0c00d37fbbcf71c1
c8deb5db660f3f6eeca30d29b4bd48d9e82b3792
Fix disableStrictPassiveEffect not working under Suspense (#26989) In https://github.com/facebook/react/pull/26914 I added an extra logic to turn off double useEffect if there is an `Offscreen` tag. But `Suspense` uses `Offscreen` tag internally and that turns off `disableStrictPassiveEffect` for everything.
[ { "path": "packages/react-reconciler/src/ReactFiber.js", "patch": "@@ -760,10 +760,6 @@ export function createFiberFromOffscreen(\n lanes: Lanes,\n key: null | string,\n ): Fiber {\n- if (__DEV__) {\n- // StrictMode in Offscreen should always run double passive effects\n- mode &= ~NoStrictPassive...
2023-06-22T20:12:30
golang/go
3c8e5b13df931e88fde51ff09b27cceeaab9f6c4
20da34c6d2f6a4d03304f55a6d6f1418ca11b091
cmd/go/internal/cacheprog: drop redundant Prog prefixes Now that these types are in their own package, drop the unnecessary Prog prefixes from everything. Updates #71032 Updates #59719 Change-Id: Id54edf0473754e3b21a71beb72803fb5481206c1 Reviewed-on: https://go-review.googlesource.com/c/go/+/638996 Reviewed-by: Maur...
[ { "path": "src/cmd/go/internal/cache/prog.go", "patch": "@@ -39,7 +39,7 @@ type ProgCache struct {\n \n \t// can are the commands that the child process declared that it supports.\n \t// This is effectively the versioning mechanism.\n-\tcan map[cacheprog.ProgCmd]bool\n+\tcan map[cacheprog.Cmd]bool\n \n \t//...
2024-12-27T18:27:21
ollama/ollama
2cb0a580f34377c8b014ce20d8fdb370cfc2a12e
7cce5aac76898099b954ee91f748f052d23e3253
thinking: fix double emit when no opening tag The thinking parser will automatically transition to being a pass-through if non-whitespace is seen before an opening tag. However, we weren't clearing the buffer after the first non-whitespace input, so in practice the first token would be emitted twice. Added a test tha...
[ { "path": "thinking/parser.go", "patch": "@@ -103,7 +103,9 @@ func eat(s *Parser) (string, string, bool) {\n \t\t\t// note that we use the original content, not the trimmed one because we\n \t\t\t// don't want to eat any whitespace in the real content if there were no\n \t\t\t// thinking tags\n-\t\t\treturn...
2025-08-22T04:03:12
golang/go
858a0e9dfd10ac94a0b9de4429749f0cb99e8cb8
a63aee4955d8236f657a94101d6a703be97e98ec
crypto/tls: properly return ECH retry configs When ECH is rejected, properly take retry configs from the encrypted extensions message. Also fix the bogo shim to properly test for this behavior. We should properly map the full BoringSSL -> Go errors so that we don't run into a similar failure in the future, but this i...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -246,5 +246,8 @@\n 25,\n 29,\n 4588\n- ]\n+ ],\n+ \"ErrorMap\": {\n+ \":ECH_REJECTED:\": \"tls: server rejected ECH\"\n+ }\n }", "additions": 4, "deletions": 1, "language": "JSON" }, { "p...
2024-12-30T18:36:55
vercel/next.js
a2f0d641317533efee488c1bf50747aa3373c158
97ffe87e2b66f306adfc6d8008b620864da897b1
fix: pnp test cases failed when using rspack (#79084) The Yarn PnP test suite (`test/e2e/yarn-pnp/test/*.test.ts`) fails when running with Rspack because tests don't install required `@rspack/core` dependency.
[ { "path": "test/e2e/yarn-pnp/test/utils.ts", "patch": "@@ -35,6 +35,10 @@ export function runTests(\n delete packageJson.dependencies['react']\n delete packageJson.dependencies['react-dom']\n \n+ if (process.env.NEXT_RSPACK) {\n+ packageJson.dependencies['@rspack/core'] = 'latest'\n+...
2025-05-13T01:02:06
facebook/react
c8deb5db660f3f6eeca30d29b4bd48d9e82b3792
6c84b505c746cd86bf55bee36faa15240273c2ce
fix[ci]: fixed jest configuration not to skip too many devtools tests (#26955) ## Summary Running `yarn test --project devtools --build` currently skips all non-gated (without `@reactVersion` directives) devtools tests. This is not expected behaviour, these changes are fixing it. There were multiple related PRs ...
[ { "path": "packages/react-devtools-shared/src/__tests__/profilingCache-test.js", "patch": "@@ -938,7 +938,8 @@ describe('ProfilingCache', () => {\n }\n });\n \n- // @reactVersion = 17.0\n+ // @reactVersion >= 17\n+ // @reactVersion < 18\n it('should handle unexpectedly shallow suspense trees', ()...
2023-06-22T08:33:05
huggingface/transformers
a28c974c7ac74c83dbf379e93ceecc2661730f63
98fc02ea145010258c68fdeca46af2a03fd3c357
Add OLMo Hybrid model (#43358) * Add OLMo 3.5 Hybrid model * Address review feedback * make RoPE optional Signed-off-by: Yanhong Li <“yanhongl@allenai.org”> * Remove GPT2Tokenizer and use default TokenizersBackend * Address code review feedback * Rename OLMo 3.5 Hybrid → OLMo 3.2 Hybrid * Address review feedbac...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -712,6 +712,8 @@\n title: Olmo3\n - local: model_doc/olmoe\n title: OLMoE\n+ - local: model_doc/olmo_hybrid\n+ title: OlmoHybrid\n - local: model_doc/opt\n title: OPT\n - local: model_doc/pegasus", ...
2026-02-26T23:01:08
electron/electron
fd88908457a986f06e310e80499e4b2775d8ba70
34a9268e97592afcb662f5cc6d5c1b1489549387
fix: hide content protected windows during screen capture with `ScreenCaptureKitMac` (#34362) fix: hide content protected windows during screen capture
[ { "path": "patches/chromium/.patches", "patch": "@@ -110,3 +110,4 @@ introduce_ozoneplatform_electron_can_call_x11_property.patch\n make_gtk_getlibgtk_public.patch\n build_disable_print_content_analysis.patch\n custom_protocols_plzserviceworker.patch\n+feat_filter_out_non-shareable_windows_in_the_current_ap...
2022-05-30T12:13:48
ollama/ollama
073fa31df501d7cb943d3fa0fb19841da9651479
91fc3c48e38256e69eb0a52c4540bd9ae0b8a660
llm: Don't always evict models in CPU-only mode With old memory estimates, it's currently impossible to load more than one model at a time when no GPUs are available. This is because the check for whether we need to evict a model looks to see if all layers of the new model can be loaded onto GPUs, which is never true ...
[ { "path": "llm/memory.go", "patch": "@@ -30,7 +30,7 @@ func pickBestFullFitByLibrary(f *ggml.GGML, modelPath string, projectors []strin\n \t\t\t// Try to pack into as few GPUs as possible, starting from 1 GPU\n \t\t\tfor numGPUs := 1; numGPUs <= len(sgl); numGPUs++ {\n \t\t\t\tgpuSubset := sgl[:numGPUs]\n-\...
2025-08-20T19:51:45
huggingface/transformers
98fc02ea145010258c68fdeca46af2a03fd3c357
b812aa91007ec4b4a1470094da878bf30c9341c1
fix(modeling_attn_mask_utils): remove FutureWarning from logger.warning_once() (#44307) * fix(modeling_attn_mask_utils): remove FutureWarning from logger.warning_once() * refactor(modeling_attn_mask_utils): use warnings instead of logger
[ { "path": "src/transformers/modeling_attn_mask_utils.py", "patch": "@@ -17,18 +17,15 @@\n and will be removed in the future.\n \"\"\"\n \n+import warnings\n from dataclasses import dataclass\n from typing import Union\n \n import torch\n \n-from .utils import logging\n from .utils.import_utils import is_tor...
2026-02-26T21:29:01
vercel/next.js
ed160544f9328f6b0faa04e15fed6bbe23259a3b
4d9e843a37148a785e07a647c949f0506a7824ec
Revert toolchain update to 2025-05-12 (#79117) This partially reverts commit 1866e4403b0956a8325489a67811032cca05fc19, reverting the toolchain update but keeping the clippy fixes.
[ { "path": "rust-toolchain.toml", "patch": "@@ -1,4 +1,4 @@\n [toolchain]\n-channel = \"nightly-2025-05-12\"\n+channel = \"nightly-2025-04-14\"\n components = [\"rustfmt\", \"clippy\", \"rust-analyzer\"]\n profile = \"minimal\"", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2025-05-12T23:25:35
facebook/react
6c84b505c746cd86bf55bee36faa15240273c2ce
794b770dbd6be48d42438ea76911d32c37c7dd6e
fix[devtools/standalone]: update webpack configurations (#26963) ## Summary Overlooked when was working on https://github.com/facebook/react/pull/26887. - Added `webpack` packages as dev dependencies to `react-devtools-core`, because it calls webpack to build - Added `process` package as dev dependency, because...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -29,6 +29,10 @@\n \"ws\": \"^7\"\n },\n \"devDependencies\": {\n- \"cross-env\": \"^3.1.4\"\n+ \"cross-env\": \"^3.1.4\",\n+ \"process\": \"0.11.10\",\n+ \"webpack\": \"^5.82.1\",\n+ \"webpack-cli\": \"^5.1.1\",\n+ ...
2023-06-22T07:55:20
golang/go
847c357bbb819f8f042b715d6ccdaa8fd89c305d
d1d93129506c78cc8ee25644384286822d93c81a
cmd/go: remove references to gopath-get Fixes #70912 Change-Id: Id87a13f7c9bf972502d14c9674a27f743b849715 Reviewed-on: https://go-review.googlesource.com/c/go/+/639155 Reviewed-by: Sam Thanawalla <samthanawalla@google.com> Reviewed-by: Michael Matloob <matloob@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -739,11 +739,6 @@\n //\n // For more about specifying packages, see 'go help packages'.\n //\n-// This text describes the behavior of get using modules to manage source\n-// code and dependencies. If instead the go command is running in GOPATH\n-// mode, the d...
2024-12-28T19:25:08
electron/electron
7bc4b919dcb978426b2cb7114ced85801ec3f776
6cb2b9eab7e04d5b08ed0a75a78c5c6a28d4f1d0
fix: esc not working on Windows during fullscreen (#34317) * fix: esc not working on Windows during fullscreen * chore: fix lint
[ { "path": "patches/chromium/.patches", "patch": "@@ -98,7 +98,7 @@ fix_expose_decrementcapturercount_in_web_contents_impl.patch\n add_ui_scopedcliboardwriter_writeunsaferawdata.patch\n feat_add_data_parameter_to_processsingleton.patch\n load_v8_snapshot_in_browser_process.patch\n-fix_patch_out_permissions_c...
2022-05-25T04:38:38
vercel/next.js
f7c274328f193be99d182ced0f869334c8b0afdb
d48881e4bfde3ce4f8204f693df0bcda78c5aa3b
test: remove unnecessary conditionals in error recovery tests (#73625) This PR removed unnecessary basePath conditional checks.
[ { "path": "test/development/basic/hmr/run-error-recovery-hmr-test.util.ts", "patch": "@@ -164,7 +164,7 @@ export function runErrorRecoveryHmrTest(nextConfig: {\n await assertHasRedbox(browser)\n const source = next.normalizeTestDirContent(await getRedboxSource(browser))\n \n- if (basePath === '' ...
2025-05-12T22:45:01
facebook/react
794b770dbd6be48d42438ea76911d32c37c7dd6e
254cbdbd6d851a30bf3b649a6cb7c52786766fa4
fix[devtools]: check if fiber is unmounted before trying to highlight (#26983) For React Native environment, we sometimes spam the console with warnings `"Could not find Fiber with id ..."`. This is an attempt to fix this or at least reduce the amount of such potential warnings being thrown. Now checking if fi...
[ { "path": "packages/react-devtools-shared/src/backend/legacy/renderer.js", "patch": "@@ -1101,6 +1101,10 @@ export function attach(\n \n function unpatchConsoleForStrictMode() {}\n \n+ function hasFiberWithId(id: number): boolean {\n+ return idToInternalInstanceMap.has(id);\n+ }\n+\n return {\n ...
2023-06-22T07:51:24
golang/go
d1d93129506c78cc8ee25644384286822d93c81a
94f15810e6beadf21f3363d3ae17d83abfd3ae74
crypto/tls: fix Config.Time in tests using expired certificates Fixes #71077 Change-Id: I6a6a465685f3bd50a5bb35a160f87b59b74fa6af Reviewed-on: https://go-review.googlesource.com/c/go/+/639655 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/crypto/tls/handshake_client_test.go", "patch": "@@ -856,6 +856,7 @@ func testResumption(t *testing.T, version uint16) {\n \t\tMaxVersion: version,\n \t\tCipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384},\n \t\tCertificates: testCertificates...
2025-01-02T00:34:40
huggingface/transformers
b812aa91007ec4b4a1470094da878bf30c9341c1
2fcfa37afca074d7b69308a75d87a0060e04a7ec
:rotating_light: [`Ernie 4.5 VL Moe`] Fix up namings to vllm/sglang convention (#44299) * rename * small fix and and adjust converter * oops * try * docs * fix tests * last one? * revisions * fixup naming for ckpt conversion needed for norm * trigger ci fresh * aliases with classes because modular doesnt pic...
[ { "path": "docs/source/en/model_doc/ernie4_5_vl_moe.md", "patch": "@@ -1,4 +1,4 @@\n-<!--Copyright 2025 The Qwen Team and The HuggingFace Inc. team. All rights reserved.\n+<!--Copyright 2025 The Baidu and HuggingFace Inc. team. All rights reserved.\n \n Licensed under the Apache License, Version 2.0 (the \"...
2026-02-26T16:42:29
electron/electron
ba573f558305a6448f67ca1db51730cdd1559f58
df9383cb3cc8d18ce21acd9bcb520fab92813aaa
feat: add support for HIDDevice.forget() (#34210) * feat: add support for HIDDevice.forget() * chore: remove whitespace * chore: use `SetGetter` to serialize the render_frame_host Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * fixup chore: use `SetGetter` to serialize the render_frame_host ...
[ { "path": "docs/api/session.md", "patch": "@@ -274,6 +274,19 @@ from `select-hid-device` is called. This event is intended for use when using\n a UI to ask users to pick a device so that the UI can be updated to remove the\n specified device.\n \n+#### Event: 'hid-device-revoked'\n+\n+Returns:\n+\n+* `even...
2022-05-23T19:13:18
ollama/ollama
fc5fb09f514758ae9f59b11632c3d8f32e951d49
048bd4472adf2bdb41c16010ab286e072252bfd2
model: fix boundary in bpe 0x007e is a tilde and was getting adjusted (+0x00a2) to 0x0120 in the encode, but then in the decode it was getting adjusted down (-0x0100) to 0x0020. The boundary for the +0x00a2 case has been adjusted to fix this Fixes: #11966
[ { "path": "model/bytepairencoding.go", "patch": "@@ -109,7 +109,7 @@ func (bpe BytePairEncoding) Encode(s string, addSpecial bool) ([]int32, error) {\n \t\t\t\t\tr = 0x0143\n \t\t\t\tcase r <= 0x0020:\n \t\t\t\t\tr = r + 0x0100\n-\t\t\t\tcase r >= 0x007e && r <= 0x00a0:\n+\t\t\t\tcase r >= 0x007f && r <= 0x...
2025-08-20T01:34:49
facebook/react
254cbdbd6d851a30bf3b649a6cb7c52786766fa4
e3fb7c1de1ed375e32397b3502a30b8ae4c2db9f
Add a temporary internal option to disable double useEffect in legacy strict mode (#26914) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. ...
[ { "path": "packages/react-reconciler/src/ReactFiber.js", "patch": "@@ -39,6 +39,7 @@ import {\n enableDebugTracing,\n enableFloat,\n enableHostSingletons,\n+ enableDO_NOT_USE_disableStrictPassiveEffect,\n } from 'shared/ReactFeatureFlags';\n import {NoFlags, Placement, StaticMask} from './ReactFiberF...
2023-06-21T18:14:57
vercel/next.js
7ac4eae058ba76adbca53a92424c6796a322676d
3f9f403a048f1f3b1419d92f70245d4e8c77ac27
test: split error recovery HMR test into multiple files (#79066) Split long-running error recovery hmr test to parallelize and reduce CI time. Port of https://github.com/vercel/next.js/pull/73617, confirmed and synced changes https://github.com/vercel/next.js/pull/78198, https://github.com/vercel/next.js/pull/77892, ...
[ { "path": "test/development/basic/hmr/error-recovery-no-base-path-no-asset-prefix.test.ts", "patch": "@@ -0,0 +1,7 @@\n+import { runErrorRecoveryHmrTest } from './run-error-recovery-hmr-test.util'\n+\n+const nextConfig = { basePath: '', assetPrefix: '' }\n+\n+describe(`HMR - Error Recovery, nextConfig: ${JS...
2025-05-12T22:04:58
huggingface/transformers
2fcfa37afca074d7b69308a75d87a0060e04a7ec
af5dfb6c5cb98091aa76c2c768bd4b7a38891b01
fix(flaky): idefics generate cache flake (#44180) Relax idefics cache tolerance for the last layers
[ { "path": "tests/models/idefics/test_modeling_idefics.py", "patch": "@@ -25,6 +25,8 @@\n require_bitsandbytes,\n require_torch,\n require_vision,\n+ set_config_for_less_flaky_test,\n+ set_model_for_less_flaky_test,\n slow,\n torch_device,\n )\n@@ -792,9 +794,10 @@ def test_generate...
2026-02-26T16:18:16
golang/go
5efb4239c6627e81e82b88377b9eb947f7f253d4
0d8aa8cce69f97747e7ce69b8416c1cfca5d939f
spec: document that string conversions don't guarantee result slice capacity Fixes #24163. Change-Id: If389c4abf3b9b6e4eba6f31c3c12779329456df6 Reviewed-on: https://go-review.googlesource.com/c/go/+/637655 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Robe...
[ { "path": "doc/go_spec.html", "patch": "@@ -5686,6 +5686,8 @@ <h4 id=\"Conversions_to_and_from_a_string_type\">Conversions to and from a string\n <li>\n Converting a value of a string type to a slice of bytes type\n yields a non-nil slice whose successive elements are the bytes of the string.\n+The <a href=...
2024-12-18T22:15:48
electron/electron
df9383cb3cc8d18ce21acd9bcb520fab92813aaa
09a80ea48c53b7b16bbd798077e4550ee5ffa8f3
chore: add a TRACE call for `crash_reporter::Start()` (#34268) chore: add a TRACE call for crash_reporter::Start() Initializing the crashReporter takes around 620 milliseconds on Intel macOS. I have sent a CL to crashpad to partially fix the performance issue in https://chromium-review.googlesource.com/c/crashpa...
[ { "path": "shell/browser/api/electron_api_crash_reporter.cc", "patch": "@@ -16,6 +16,7 @@\n #include \"base/path_service.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"base/threading/thread_restrictions.h\"\n+#include \"base/trace_event/trace_event.h\"\n #include \"chrome/common/chrom...
2022-05-23T15:38:03
facebook/react
e3fb7c1de1ed375e32397b3502a30b8ae4c2db9f
d1c8cdae3b20a670ee91b684e8e0ad0c400ae51c
feat[devtools]: support x_google_ignoreList source maps extension (#26951) ## Summary This was originally implemented by Mengdi @mondaychen in https://github.com/facebook/react/pull/26506. Because we patch console methods (to append components stack and some other features), errors in console will include `reac...
[ { "path": "packages/react-devtools-extensions/package.json", "patch": "@@ -39,6 +39,7 @@\n \"chrome-launch\": \"^1.1.4\",\n \"crx\": \"^5.0.0\",\n \"css-loader\": \"^1.0.1\",\n+ \"devtools-ignore-webpack-plugin\": \"^0.1.1\",\n \"file-loader\": \"^6.1.0\",\n \"filesize\": \"^6.0.1\",\...
2023-06-21T11:36:48
huggingface/transformers
d4cb841690bd963f2de7119d5f569ff139b3d989
1ed9eaec6c1a2cad640db8762865fb0e443804e9
XPU now supports backward for the FA2 fixed path (#43905) * XPU supports fixed FA2 bwd now * Update judgment conditions
[ { "path": "tests/models/cohere2/test_modeling_cohere2.py", "patch": "@@ -26,6 +26,8 @@\n Expectations,\n cleanup,\n is_flash_attn_2_available,\n+ is_kernels_available,\n+ is_torch_xpu_available,\n require_flash_attn,\n require_torch,\n require_torch_large_accelerator,\n@@ -249,...
2026-02-26T10:47:43
golang/go
0d8aa8cce69f97747e7ce69b8416c1cfca5d939f
8857a5a33ffaff475abd6e4364d2c5a0f53c2baf
spec: describe representation of values Add a section on the representation of values: distinguish between values that are self-contained and values that contain references while avoiding the notion of "reference types" which is misleading. Also, use "predeclared identifier nil" rather than "predeclared value nil" be...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.24 (Dec 16, 2024)\",\n+\t\"Subtitle\": \"Language version go1.24 (Dec 30, 2024)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -798,7 +798,6 @@...
2024-12-12T23:26:54
vercel/next.js
1866e4403b0956a8325489a67811032cca05fc19
2d4406312f982a077801fea949459bf6823a2645
Update rust toolchain to 2025-05-12 (#79099) Clippy now warns on [uninlined format strings](https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args). Applied fixers with `cargo clippy --fix`.
[ { "path": "crates/napi/build.rs", "patch": "@@ -25,7 +25,7 @@ fn main() -> anyhow::Result<()> {\n };\n \n // Make the Next.js version available as a build-time environment variable\n- println!(\"cargo:rustc-env=NEXTJS_VERSION={}\", nextjs_version);\n+ println!(\"cargo:rustc-env=NEXTJS_VERSION=...
2025-05-12T21:26:31
electron/electron
887b5a7dc7ec7020310db210685f920a12c6c033
c3fa6005db8754bafba8e65f6811d73bbc659e54
fix: crash on navigator.serial.getPorts() (#34280) * fix: crash on navigator.serial.getPorts() * test: fixup BrowserWindow.setTitlebarOverlay test
[ { "path": "shell/browser/electron_permission_manager.cc", "patch": "@@ -335,22 +335,32 @@ bool ElectronPermissionManager::CheckDevicePermission(\n static_cast<blink::PermissionType>(\n WebContentsPermissionHelper::PermissionType::SERIAL)) {\n #if BUILDFLAG(IS_WIN)\n...
2022-05-23T14:33:39
facebook/react
9c033a481d41252d88f05668723f7e061d37f562
e7e67f335adea5a24ff59a467b22b92702350a5e
[eslint-plugin] Only report on InvalidInput errors Invariants aren't actionable by users, so we can omit reporting them in eslint as errors (while continuing to throw in the compiler itself)
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/index.ts", "patch": "@@ -19,7 +19,7 @@ export {\n parsePluginOptions,\n run,\n } from \"./Entrypoint\";\n-export { Effect, Hook, ValueKind, printHIR } from \"./HIR\";\n+export { Effect, Hook, SourceLocation, ValueKind, printHIR } from \"....
2023-06-22T14:18:43
golang/go
8857a5a33ffaff475abd6e4364d2c5a0f53c2baf
3c4102bfd4dc87cba19152af834754170b863b39
crypto/tls: fix misspelling in comment Change-Id: Ie36a19ed6d6922e68f98e43745a417a24f8a7828 GitHub-Last-Rev: 6fb32e3d1d4f35704d466b53796e8ddeaf936d72 GitHub-Pull-Request: golang/go#71060 Reviewed-on: https://go-review.googlesource.com/c/go/+/639215 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Roland Sh...
[ { "path": "src/crypto/tls/handshake_messages.go", "patch": "@@ -97,7 +97,7 @@ type clientHelloMsg struct {\n \tpskBinders [][]byte\n \tquicTransportParameters []byte\n \tencryptedClientHello []byte\n-\t// extensions are only populated on the servers-ide of a handsh...
2024-12-30T20:00:49
vercel/next.js
e8a84e866ce0a37177eb69b7841e9e204f332702
fea8cb64ab105eff6f3d21fd27e040ce578ad2e7
test: split basic HMR test into multiple files (#79064) Split long-running basic hmr test to parallelize and reduce CI time. As @huozhi mentioned at https://github.com/vercel/next.js/pull/73613#pullrequestreview-2485717304, the tests won't be separated to `__test__` dir but flattened out on the same level as the fi...
[ { "path": "test/development/basic/hmr/basic-no-base-path-no-asset-prefix.test.ts", "patch": "@@ -0,0 +1,7 @@\n+import { runBasicHmrTest } from './run-basic-hmr-test.util'\n+\n+const nextConfig = { basePath: '', assetPrefix: '' }\n+\n+describe(`HMR - basic, nextConfig: ${JSON.stringify(nextConfig)}`, () => {...
2025-05-12T19:20:39
ollama/ollama
e3ade453a8f96a5534ae804e32a44aeb0159befa
ec8bf5e6c57a0a2a78c41cea4e9619b384f2ea39
llm: Check for nil memory data before printing We dump out our best memory estimate after we complete processing for any reason, including errors. This is helpful for finding what what stopped us in error conditions but in some cases we might not have gotten even the first result yet. Fixes #11957
[ { "path": "llm/server.go", "patch": "@@ -651,7 +651,9 @@ func (s *ollamaServer) Load(ctx context.Context, gpus discover.GpuInfoList, requ\n \t\tif !success {\n \t\t\ts.initModel(ctx, LoadRequest{}, LoadOperationClose)\n \t\t}\n-\t\ts.mem.Log(slog.LevelInfo)\n+\t\tif s.mem != nil {\n+\t\t\ts.mem.Log(slog.Lev...
2025-08-18T20:52:07
facebook/react
e7e67f335adea5a24ff59a467b22b92702350a5e
e9faa5b90d8e5f979216e725eec2d4ca91f78807
Use CompilerError.invariant consistently This PR updates all current usages of invariant to CompilerError.invariant along with any available locs
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -8,7 +8,6 @@\n import { NodePath, Scope } from \"@babel/traverse\";\n import * as t from \"@babel/types\";\n import { Expression } from \"@babel/types\";\n-import invariant from \"invariant\";\n import { Compile...
2023-06-22T14:18:42
golang/go
3c4102bfd4dc87cba19152af834754170b863b39
b702a26cf8f2298de6d264c1cbc09042e2b0ac22
encoding/binary: add documentation for endian methods While the comments are on an unexported type, gopls correctly shows them when using the exported vars LittleEndian and BigEndian. Fixes #68083 Change-Id: I53668c3140ad00f7b58437be74e6df773e2916f1 GitHub-Last-Rev: cef717123cdc632b59683f4ce55aee6c286ca4c7 GitHub-Pu...
[ { "path": "src/encoding/binary/binary.go", "patch": "@@ -65,29 +65,34 @@ var BigEndian bigEndian\n \n type littleEndian struct{}\n \n+// Uint16 returns the uint16 representation of b[0:2].\n func (littleEndian) Uint16(b []byte) uint16 {\n \t_ = b[1] // bounds check hint to compiler; see golang.org/issue/148...
2024-12-30T20:00:43
vercel/next.js
fea8cb64ab105eff6f3d21fd27e040ce578ad2e7
0abe697660e00e8993b730aba0b2c9b23091aee3
[test] Move test selectors as close to the actual value as possible (#78931) React will start outlining boundaries if they add too many bytes to the next completion. This doesn't have any perceivable effect but some of our tests use Cheerio to parse the flushed HTML without any JS applied so the expected values might ...
[ { "path": "test/e2e/app-dir/dynamic-io/app/headers/exercise/components.tsx", "patch": "@@ -104,8 +104,8 @@ function Get({\n return (\n <section>\n <h2>{expression}.get('...')</h2>\n- <div id={'get-x-sentinel'}>\n- <pre>{headers.get('x-sentinel')}</pre>\n+ <div>\n+ <pre id...
2025-05-12T18:41:32
golang/go
b702a26cf8f2298de6d264c1cbc09042e2b0ac22
15f232456a8741c84ee0bd38dce28978eab6a491
os: mention fsys modifications during CopyFS Fixes #70465 Change-Id: I47055df9ca5b1df21a361b0b8eea4c7d157e6403 Reviewed-on: https://go-review.googlesource.com/c/go/+/639156 Commit-Queue: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Review...
[ { "path": "src/os/dir.go", "patch": "@@ -145,6 +145,9 @@ func ReadDir(name string) ([]DirEntry, error) {\n //\n // Symbolic links in dir are followed.\n //\n+// New files added to fsys (including if dir is a subdirectory of fsys)\n+// while CopyFS is running are not guaranteed to be copied.\n+//\n // Copyin...
2024-12-28T20:10:21
facebook/react
3f2b346ba0df118e2e6a1bbc4387159d82437873
6c425f6b369bfc6b31a9d7931b358ec3c42f30b1
Make CompilerError.invariant assert the condition This allows us to mimic the `invariant` api, which means you can just assert that something holds true after execution proceeds to the next line without throwing
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -70,20 +70,23 @@ export class CompilerError extends Error {\n details: CompilerErrorDetail[] = [];\n \n static invariant(\n+ condition: unknown,\n reason: string,\n loc: SourceLocation,\n des...
2023-06-22T14:18:41
vercel/next.js
0abe697660e00e8993b730aba0b2c9b23091aee3
a1bd824978303bd4c81ae46250b3271c7213e46e
Turbopack: refactor into `traverse_edges_fixed_point` (#79078) Abstract the existing ad-hoc traversal logic into a function **View diff without whitespace, the chunk_group_info visitor was merely reindented**
[ { "path": "turbopack/crates/turbopack-core/src/module_graph/chunk_group_info.rs", "patch": "@@ -1,5 +1,4 @@\n use std::{\n- collections::BinaryHeap,\n hash::Hash,\n ops::{Deref, DerefMut},\n };\n@@ -8,7 +7,7 @@ use anyhow::{bail, Result};\n use either::Either;\n use indexmap::map::Entry;\n use ro...
2025-05-12T18:26:04
electron/electron
291eb609160948b1c9e8572cd3b5b4612f128c7c
aa3e852a732c374f64490de2fe7098f63199e149
fix: building node modules with Visual Studio 2017 (#34217)
[ { "path": "patches/v8/fix_build_deprecated_attribute_for_older_msvc_versions.patch", "patch": "@@ -6,7 +6,7 @@ Subject: fix: usage of c++ [[deprecated]] attribute for older msvc versions\n This attribute can only be used in all contexts in Visual Studio 2019\n \n diff --git a/include/v8config.h b/include/v8...
2022-05-23T11:04:08
huggingface/transformers
1ed9eaec6c1a2cad640db8762865fb0e443804e9
8e663c73ece9d451a1b78c6da69e1efd6d1e1a6a
Fix: use `TokenizersBackend` for Olmo3 to preserve custom `pre_tokenizer` (#44294) fix: use TokenizersBackend for olmo3 to preserve custom pre_tokenizer GPT2Tokenizer.__init__ unconditionally overwrites the pre_tokenizer with a generic ByteLevel, discarding the custom Sequence pre_tokenizer defined in the model's tok...
[ { "path": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -233,7 +233,7 @@\n (\"nystromformer\", \"AlbertTokenizer\" if is_tokenizers_available() else None),\n (\"olmo\", \"GPTNeoXTokenizer\" if is_tokenizers_available() else None),\n (\"olmo2\", \"GPTNeoXTokenizer\...
2026-02-26T10:35:44
ollama/ollama
8de1da4767d2e580977888a8f189b29bd81e1e51
d925b5350c75a66e7830e00f53b243084395821f
server: add debug option for printing out prompt instead of calling model
[ { "path": "api/types.go", "patch": "@@ -90,6 +90,10 @@ type GenerateRequest struct {\n \t// (request that thinking _not_ be used) and unset (use the old behavior\n \t// before this option was introduced)\n \tThink *ThinkValue `json:\"think,omitempty\"`\n+\n+\t// DebugRenderOnly is a debug option that, when ...
2025-08-15T20:52:50
golang/go
ba1deb1ceef956bdb3ca5a9570f132cf19ccc9f6
fd5e0d26d9383ff80fd365bdfcb50d6c8a97e44c
cmd/link: document that -s implies -w Existing documentation does not reference implicit behavior. Updates the documentation to reflect that -s implies -w. Fixes #71051 Change-Id: I5c139c37f5f78596365e38479be4c865a4d4dd62 GitHub-Last-Rev: a3e462c4168284529ea1b0d03bc25fb1c12f1da5 GitHub-Pull-Request: golang/go#71053 ...
[ { "path": "src/cmd/link/doc.go", "patch": "@@ -118,6 +118,7 @@ Flags:\n \t\tLink with race detection libraries.\n \t-s\n \t\tOmit the symbol table and debug information.\n+\t\tImplies the -w flag, which can be negated with -w=0.\n \t-tmpdir dir\n \t\tWrite temporary files to dir.\n \t\tTemporary files are o...
2024-12-29T02:37:06
facebook/react
6c425f6b369bfc6b31a9d7931b358ec3c42f30b1
ba75c96077494248e8c877cc3c403372d866b3e9
Remove codeframe/nodepath options from CompilerError These were effectively unused since we almost always passed in null when creating errors, so remove them and instead pass in a `loc` explicitly. The downside is that we no longer will see Babel codeframes in our test fixtures, which doesn't seem like a huge loss
[ { "path": "compiler/forget/apps/playground/lib/forgetMonacoDiagnostics.ts", "patch": "@@ -30,7 +30,7 @@ function mapForgetDiagnosticToMonacoMarker(\n detail: CompilerErrorDetail,\n monaco: Monaco\n ): editor.IMarkerData | null {\n- if (detail.loc == null) {\n+ if (detail.loc == null || typeof detail.l...
2023-06-22T14:18:41
huggingface/transformers
8e663c73ece9d451a1b78c6da69e1efd6d1e1a6a
014cef86e9c2fb64083b143b6e7cc51ae35bbc72
Fix special token maps BC (#44281) fix
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -1840,6 +1840,7 @@ def _from_pretrained(\n if key in kwargs and kwargs[key]:\n continue # User-provided kwargs take precedence\n if isinstance(value, dict) and key != \"extr...
2026-02-26T10:34:15
electron/electron
1639ccf98fd64b80e7685e11452ec4fb68f27df4
38c21b7acad9f7ee234a190addad5f25f59440de
fix: service worker registration with custom protocols (#34290) Refs https://github.com/electron/electron/issues/32664
[ { "path": "patches/chromium/.patches", "patch": "@@ -109,3 +109,4 @@ build_make_libcxx_abi_unstable_false_for_electron.patch\n introduce_ozoneplatform_electron_can_call_x11_property.patch\n make_gtk_getlibgtk_public.patch\n build_disable_print_content_analysis.patch\n+custom_protocols_plzserviceworker.patch...
2022-05-23T07:42:37
vercel/next.js
6113729d5320c7fc85ff42c077b4a2378d375b0d
d13912e548c0f8ddf22ede9b84bf29b2cc213640
chore(CI): Add back test retries (again) to arewerspackyet tests (#79014) Test retries are important because of our high test flakiness. Without this, we may get false-positive failures detected in the manifests and the arewerspackyet dataset. We had to disable test retries for arewerspackyet tests because we were su...
[ { "path": ".github/workflows/rspack-nextjs-build-integration-tests.yml", "patch": "@@ -22,6 +22,4 @@ jobs:\n integration_groups: 12\n e2e_timeout_minutes: 90\n integration_timeout_minutes: 90\n- # We tend to timeout with 2 retries\n- num_retries: 0\n secrets: inherit", "a...
2025-05-12T18:07:03
facebook/react
ba75c96077494248e8c877cc3c403372d866b3e9
fa913b423e5b039cb948464ccd2aef96011b6006
Fix mutable range validation in PrintHIR Fixes the mutable range validation in PrintHIR: when we checked the identifier scope's range we failed to allow end=start=0 cases which are also valid. While I was here, I created a separate assertion pass to check all ranges, that way we aren't relying on the printer to v...
[ { "path": "compiler/forget/apps/playground/components/Editor/index.tsx", "patch": "@@ -127,6 +127,7 @@ function compile(source: string): CompilerOutput {\n inlineUseMemo: true,\n memoizeJsxElements: true,\n validateHooksUsage: true,\n+ assertValidMutableRanges: true,\n }...
2023-06-21T23:08:44
ollama/ollama
6eaf194b8540bdec2b96eafcf98481f4400bdf1e
d5a0d8d904baaf66a5326463a409fe4fa09b2dd2
fix arm linux build when HWCAP2_SVE2 undefined (#11908)
[ { "path": "ml/backend/ggml/ggml/src/ggml-cpu/arch/arm/arm.go", "patch": "@@ -1,5 +1,5 @@\n package arm\n \n // #cgo CXXFLAGS: -std=c++17\n-// #cgo CPPFLAGS: -I${SRCDIR}/../.. -I${SRCDIR}/../../.. -I${SRCDIR}/../../../../include\n+// #cgo CPPFLAGS: -I${SRCDIR}/../.. -I${SRCDIR}/../../.. -I${SRCDIR}/../../../...
2025-08-14T23:38:53
golang/go
fd5e0d26d9383ff80fd365bdfcb50d6c8a97e44c
a785d11ac47560c12202a79a25ddd6ba610976e9
go/doc: resolve imports before predeclared identifiers in examples Fixes #70611 Fixes #70630 Change-Id: I868e68dbdf50ce34259eeef7b3d7985ede1f4c0b Reviewed-on: https://go-review.googlesource.com/c/go/+/639175 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/go/doc/example.go", "patch": "@@ -192,13 +192,6 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t// Find unresolved identifiers and uses of top-level declarations.\n \tdepDecls, unresolved := findDeclsAndUnresolved(body, topDecls, typMethods)\n \n-\t// Remove predeclared i...
2024-12-28T19:50:11
huggingface/transformers
014cef86e9c2fb64083b143b6e7cc51ae35bbc72
b425734c2be5259849b1ce23e3787e7d97b63455
[`Modular`] Fix file type regression (#44283) fix modular
[ { "path": "utils/modular_model_converter.py", "patch": "@@ -522,7 +522,7 @@ def augmented_dependencies_for_class_node(\n \"image_processing.*_fast\",\n \"image_processing\",\n \"video_processing\",\n- \"feature-extraction\",\n+ \"feature_extraction\",\n )\n \n ", "additions": 1, "d...
2026-02-25T20:04:35
vercel/next.js
2be311e61f890945879002a908d91ea7893cd958
4748daf08ebdfdf9fdfd6b8f8e3bdb416969018b
[next-config-ts] fix: read tsconfig file using TypeScript API (#79055) ### Why? Since we "lazily" read the tsconfig file, it didn't properly handle `extends`. Instead of applying further to lazily read, properly read the config using the TypeScript API. See failed CI from adding the test with expected behavior: ht...
[ { "path": "packages/next/src/build/next-config-ts/transpile-config.ts", "patch": "@@ -1,15 +1,17 @@\n import type { Options as SWCOptions } from '@swc/core'\n import type { CompilerOptions } from 'typescript'\n-import { join } from 'node:path'\n+\n+import { resolve } from 'node:path'\n import { readFile } f...
2025-05-12T17:27:48
facebook/react
6efd1f99d77e50ef26d94c411a1e0336a39b64ca
4a36b8379611bfaf4bc628eb45542bc3946961cb
Make function name a string not an identifier Fixes #1751. Function ids can be plain strings, and we can refer to them as globals rather than via a local identifier. In addition to the bug from $1751 this also cleans up an existing todo.
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -23,7 +23,6 @@ import {\n GeneratedSource,\n GotoVariant,\n HIRFunction,\n- Identifier,\n IfTerminal,\n InstructionKind,\n InstructionValue,\n@@ -77,9 +76,9 @@ export function lower(\n // Internal...
2023-06-20T22:16:55
golang/go
a785d11ac47560c12202a79a25ddd6ba610976e9
2b794ed86cb1b718bc212ee90fecbb8f3b28a744
unique: fix typo Change-Id: I9f66e3d7aa7b546ebf34d6aa8c7a6558bf35ca82 Reviewed-on: https://go-review.googlesource.com/c/go/+/639055 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> R...
[ { "path": "src/unique/handle.go", "patch": "@@ -89,7 +89,7 @@ func Make[T comparable](value T) Handle[T] {\n }\n \n var (\n-\t// uniqueMaps is an index of type-specific sync maps used for unique.Make.\n+\t// uniqueMaps is an index of type-specific concurrent maps used for unique.Make.\n \t//\n \t// The two-...
2024-12-28T05:05:38
ollama/ollama
d5a0d8d904baaf66a5326463a409fe4fa09b2dd2
ef7d26ba2cd52a5295620067ab9abd9c0055a558
llm: New memory management This changes the memory allocation strategy from upfront estimation to tracking actual allocations done by the engine and reacting to that. The goal is avoid issues caused by both under-estimation (crashing) and over-estimation (low performance due to under-utilized GPUs). It is currently o...
[ { "path": "discover/amd_linux.go", "patch": "@@ -97,6 +97,7 @@ func AMDGetGPUInfo() ([]RocmGPUInfo, error) {\n \t\treturn a < b\n \t})\n \tgpuCount := 0\n+\tgpuOrdinalID := 0\n \tfor _, match := range matches {\n \t\tslog.Debug(\"evaluating amdgpu node \" + match)\n \t\tfp, err := os.Open(match)\n@@ -187,10...
2025-05-29T19:21:48
electron/electron
38c21b7acad9f7ee234a190addad5f25f59440de
ff13fa8f0a9ea589830ad2868011f510e652fb16
revert: add first-instance-ack event to the `app.requestSingleInstanceLock()` flow (#34297) fix: revert "feat: add first-instance-ack event to the `app.requestSingleInstanceLock()` flow"
[ { "path": "docs/api/app.md", "patch": "@@ -484,7 +484,6 @@ Returns:\n * `argv` string[] - An array of the second instance's command line arguments\n * `workingDirectory` string - The second instance's working directory\n * `additionalData` unknown - A JSON object of additional data passed from the second in...
2022-05-23T05:20:54
huggingface/transformers
b425734c2be5259849b1ce23e3787e7d97b63455
11051368649236c2a7da0934ab27befaf3c4a84a
[auto_docstring] Improve typing parsing and add tests (#43748) * Fix tied weight keys sam2 video * add tests + fix parameter type parsing * nit less verbose * fix style * fix imports * debug * improve return section handling (use auto_docstring parsing/formatting methods) * fix import errors * improve how kwar...
[ { "path": "src/transformers/models/auto/image_processing_auto.py", "patch": "@@ -22,7 +22,6 @@\n from ...configuration_utils import PreTrainedConfig\n from ...dynamic_module_utils import get_class_from_dynamic_module, resolve_trust_remote_code\n from ...image_processing_utils import ImageProcessingMixin\n-f...
2026-02-25T18:42:38
golang/go
e3cd55e9d293d519e622e788e902f372dc30338a
39794819aa0950f143fa59c41b577bf6a2f81455
cmd/go/internal/work: allow @ character in some -Wl, linker flags on darwin The GNU linker interprets @file as "read command-line options from file". Thus, we forbid values starting with @ on linker flags. However, this causes a problem when targeting Darwin. @executable_path, @loader_path, and @rpath are special valu...
[ { "path": "src/cmd/go/internal/work/security.go", "patch": "@@ -227,6 +227,21 @@ var validLinkerFlags = []*lazyregexp.Regexp{\n \tre(`\\./.*\\.(a|o|obj|dll|dylib|so|tbd)`),\n }\n \n+var validLinkerFlagsOnDarwin = []*lazyregexp.Regexp{\n+\t// The GNU linker interprets `@file` as \"read command-line options f...
2024-12-27T07:21:53
vercel/next.js
4748daf08ebdfdf9fdfd6b8f8e3bdb416969018b
99f8e56d604d1447a41997dfaa370aa8db45655d
build: Update `swc_core` to `v24.0.0` (#79092) ### What? Update swc_core to v24.0.0. ChangeLog: https://github.com/swc-project/swc/compare/swc_core%40v23.1.0...swc_core%40v24.0.0 ### Why? To apply - https://github.com/swc-project/swc/pull/10452 - Fix for `jest` - https://github.com/swc-project/plugins/pull/45...
[ { "path": ".cargo/config.toml", "patch": "@@ -77,3 +77,14 @@ rustflags = [\n \n [target.armv7-unknown-linux-gnueabihf]\n linker = \"arm-linux-gnueabihf-gcc\"\n+\n+[target.wasm32-unknown-unknown]\n+rustflags = [\n+ \"--cfg\",\n+ \"tokio_unstable\",\n+ \"-Zshare-generics=y\", # make the current crate share...
2025-05-12T17:09:19
facebook/react
a9868cc2b1c19066e9d93bbc404fdca02a314651
04f4b50997f347c2c7793274872cb9e70828905d
Fix memoization of lambdas in @enableOptimizeFunctionExpr feature This is a fix specifically for the `enableOptimizeFunctionExpression` feature (disabled by default). I tried running all of our fixtures with that flag on everywhere, and this was the only issue. It's actually extracted from another fixture which is...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Inference/AnalyseFunctions.ts", "patch": "@@ -17,7 +17,7 @@ import {\n Place,\n ReactiveScopeDependency,\n } from \"../HIR\";\n-import { constantPropagation } from \"../Optimization\";\n+import { constantPropagation, deadCodeElimination }...
2023-06-16T21:42:19
electron/electron
5ff94e7f2becc435e4e7c66e112686461b74e95b
17c8ec765bd40add42e22bd72a56317bfb9b2dbd
fix: crash when creating interface for speculative frame (#33919)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1505,7 +1505,7 @@ void WebContents::HandleNewRenderFrame(\n \n auto* web_frame = WebFrameMain::FromRenderFrameHost(render_frame_host);\n if (web_frame)\n- web_frame->Connect();\n+ web_frame->MaybeSetupMojoConnection();\n }\n...
2022-05-19T18:34:58
huggingface/transformers
695ce98f5a8c0ee68454e2ccf67c9740d1c9b998
d33971c635dcb6e39c3daa3bb204f6d22a932c11
Use associative scan HOP mamba recurrentgemma (#43737) * use associative scan in mamba * use associative scan in recurrentgemma * add compile guards for hop * add compile guard for hop in mamba * style fix * add tests * check torch version * fix style * use is_tracing * add opt-out flag * make opt-out local ...
[ { "path": "src/transformers/models/falcon_mamba/configuration_falcon_mamba.py", "patch": "@@ -82,6 +82,11 @@ class FalconMambaConfig(PreTrainedConfig):\n use_falcon_mambapy (`bool`, *optional*, defaults to `False`):\n This argument corresponds to `use_mambapy` in MambaConfig.\n ...
2026-02-25T17:06:19
vercel/next.js
9ebf44dc9106328afdb4bc1308b20e2373287d41
7d54a825d9bea12d0bfb101d7cb7b84aec04fc00
docs: Fix grammar on `Update static-exports.mdx` (#79091) This PR fixes a grammar mistake on the [**Static Exports**](https://nextjs.org/docs/pages/guides/static-exports) page: Before | After --- | --- How to create **an** static export of your Next.js application | How to create **a** static export of your Next.js a...
[ { "path": "docs/02-pages/02-guides/static-exports.mdx", "patch": "@@ -1,5 +1,5 @@\n ---\n-title: How to create an static export of your Next.js application\n+title: How to create a static export of your Next.js application\n nav_title: Static Exports\n description: Next.js enables starting as a static site ...
2025-05-12T15:10:04
golang/go
39794819aa0950f143fa59c41b577bf6a2f81455
7c03fe70b897581aacc0092315f75abd08ebeeee
doc/initial: remove fixed-width spacing notice Ever since CL 362015 in 2021 it hasn't been necessary to set "fixed-width phrases with non-fixed-width spaces" because the site CSS now takes care of this typesetting convention. Change-Id: Id84f711b65cddf389dc485aa362b23c9c531cbfd Reviewed-on: https://go-review.googleso...
[ { "path": "doc/initial/1-intro.md", "patch": "@@ -1,9 +1,3 @@\n-<!--\n-NOTE: In this document and others in this directory, the convention is to\n-set fixed-width phrases with non-fixed-width spaces, as in\n-`hello` `world`.\n--->\n-\n <style>\n main ul li { margin: 0.5em 0; }\n </style>", "additions"...
2024-12-27T16:25:06
facebook/react
278c7f56babc574a66392eacace297715e4d5446
1db261980741de0ba5590332c60f44bc90a2d1b9
ValidateFrozenLambdas: visit terminals The original version of the code wasn't checking return values. I missed this since my examples were passing functions _into_ the return value, as opposed to return the functions directly. This revealed some existing test fixtures that were technically invalid, but easy to fi...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/ValidateFrozenLambdas.ts", "patch": "@@ -15,11 +15,12 @@ import {\n FunctionExpression,\n HIRFunction,\n IdentifierId,\n+ Place,\n isMutableEffect,\n isRefValueType,\n isUseRefType,\n } from \"./HIR\";\n-import { eachInstruct...
2023-06-16T21:42:16
huggingface/transformers
d33971c635dcb6e39c3daa3bb204f6d22a932c11
94e51ee367bae004230270f6612f2b13dfb1d11f
chore: fixes in `Trainer` class docs (`compute_loss` & `hyperparameter_search`) (#44268) * Fix docstring formatting in trainer.py Fix formatting issues in docstring for hyperparameter search function. * Fix typo in hyperparameters * Fix truncated doc for trainer's `compute_loss` Clarify the description of num_item...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -297,7 +297,7 @@ class Trainer:\n from a new instance of the model as given by this function.\n \n The function may have zero argument, or a single one containing the optuna/Ray Tune trial object, to\n- be able to choos...
2026-02-25T16:55:59
electron/electron
588005a9d5a74b953961605579cf4ad6f8dc2b20
73e0bf973d2b7835290d61cab6638309a21a2719
fix: DCHECK on `webContents.print()` (#34271)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -113,7 +113,7 @@ index dd27bbf387718d6abda5080e7d2c609cd0eaff17..8837cf2aeaa2f87d51be8d00aa356c8a\n \n void PrintJobWorkerOop::UnregisterServiceManagerClient() {\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/pri...
2022-05-19T08:05:07
vercel/next.js
556e0c6a3d198f83cbaaf9229bab5eb9d72ccebd
323a9c9febf748a77074ce4c05c7d59e5b8cd501
[link] Avoid inlining of `LinkProps` in emitted declarations (#78773) `tsc` might decide that `LinkProps` should be inlined which would break libraries depending on `next` since that effectively pins the dependency to a patch version. Workaround is explained here: https://github.com/microsoft/TypeScript/issues/3715...
[ { "path": "packages/next/src/client/link.tsx", "patch": "@@ -119,8 +119,11 @@ type InternalLinkProps = {\n \n // `RouteInferType` is a stub here to avoid breaking `typedRoutes` when the type\n // isn't generated yet. It will be replaced when the webpack plugin runs.\n+// WARNING: This should be an interface...
2025-05-12T13:08:55
golang/go
d7c3e93c16eeb328e9d943aa4fbd5ec8c793ec1b
cce75da30b6a1a58f7265401279cab707d403dcf
iter: improve documentation with iterator example In introducing iterators, package iter gives an example of how to use an iterator in a range-over-func loop, but currently does not give an example of what an iterator implementation might look like. This change adds the example of map.Keys() before the usage example....
[ { "path": "src/iter/iter.go", "patch": "@@ -28,7 +28,22 @@ or index-value pairs.\n Yield returns true if the iterator should continue with the next\n element in the sequence, false if it should stop.\n \n-Iterator functions are most often called by a range loop, as in:\n+For instance, [maps.Keys] returns an...
2024-12-26T20:27:33
ollama/ollama
1a19df1f3a39481dfe686c8f1041f91531a04ada
7ccfd97a9381588562a4764e41bde27ae5197ace
update vendored llama.cpp and ggml (#11823) * TEMPORARY: Update the llama.cpp upstream to my fork's Granite Four branch This will be redone once my branch is merged upstream in llama.cpp * feat: Update all patches There are a number that are no longer needed at all: - 0003-embeddings: Embeddings entirely overhaule...
[ { "path": "CMakeLists.txt", "patch": "@@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.21)\n project(Ollama C CXX)\n \n include(CheckLanguage)\n+include(GNUInstallDirs)\n \n find_package(Threads REQUIRED)\n \n@@ -51,7 +52,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/ml/backend/ggml/ggml/src/include\...
2025-08-14T21:42:58
facebook/react
46fa83d854c1332f45d1ba4b3cf11969023e4289
2f0ab0ec9dc1ff02d28afadfb5d745be03ffc582
[eslint-plugin] Disambiguate compiler errors without instanceof Babel re-emits errors from plugins so the `instanceof` check was no longer working
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -182,6 +182,7 @@ export class CompilerError extends Error {\n \n constructor(...args: any[]) {\n super(...args);\n+ this.name = \"ReactForgetCompilerError\";\n }\n \n override get message(): string...
2023-06-20T16:30:07
huggingface/transformers
94e51ee367bae004230270f6612f2b13dfb1d11f
a344fed057aa3c36f2014c35337ca8dbd3d757c5
fix(trainer): pass optim_args to SGD, Adagrad, and RMSprop optimizers (#44203) SGD, Adagrad, and RMSprop ignored optim_args from TrainingArguments, unlike AdamW variants which properly parse and apply them. This adds optim_args support so users can customize optimizer hyperparameters via --optim_args for these optimiz...
[ { "path": "src/transformers/trainer_optimizer.py", "patch": "@@ -314,17 +314,36 @@ def _get_adamw_anyprecision(ctx: OptimizerContext) -> tuple[Any, dict[str, Any]]\n \n def _get_sgd(ctx: OptimizerContext) -> tuple[Any, dict[str, Any]]:\n \"\"\"Get SGD optimizer.\"\"\"\n- return torch.optim.SGD, ctx.o...
2026-02-25T16:03:17
electron/electron
73e0bf973d2b7835290d61cab6638309a21a2719
455544dfb6b8fb4e3912c54d69379d88cd1250ef
fix: delayed bounds when moving/resizing and preventing default (#34204)
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -296,6 +296,7 @@ bool NativeWindowViews::PreHandleMSG(UINT message,\n &prevent_default);\n if (prevent_default) {\n ::GetWindowRect(hwnd, reinterpret_cast<RECT*>(l_param));\n+ pending_bounds_...
2022-05-19T08:03:02
ollama/ollama
837379a94c03e505bbad965a31eb1aa7976edb3c
a24f90604f883df01500b62992fb80b242022510
discovery: fix cudart driver version (#11614) We prefer the nvcuda library, which reports driver versions. When we dropped cuda v11, we added a safety check for too-old drivers. What we missed was the cudart fallback discovery logic didn't have driver version wired up. This fixes cudart discovery to expose the drive...
[ { "path": "discover/gpu.go", "patch": "@@ -263,6 +263,8 @@ func GetGPUInfo() GpuInfoList {\n \t\t\t\tvar driverMinor int\n \t\t\t\tif cHandles.cudart != nil {\n \t\t\t\t\tC.cudart_bootstrap(*cHandles.cudart, C.int(i), &memInfo)\n+\t\t\t\t\tdriverMajor = int(cHandles.cudart.driver_major)\n+\t\t\t\t\tdriverMi...
2025-08-13T22:43:33
huggingface/transformers
a344fed057aa3c36f2014c35337ca8dbd3d757c5
c58e711a8c688d5a154f6dbbfae54da2f31328bb
fix(utils): Make torch_compilable_check compatible with torch.export strict mode (#44266) fix: Make torch_compilable_check support torch.export strict mode
[ { "path": "src/transformers/utils/import_utils.py", "patch": "@@ -1444,7 +1444,9 @@ def msg_callable():\n if isinstance(cond, torch.Tensor):\n torch._check_tensor_all_with(error_type, cond, msg_callable)\n else:\n- torch._check_with(error_type, cond, msg_callable)\n+ if not con...
2026-02-25T15:39:38
golang/go
cce75da30b6a1a58f7265401279cab707d403dcf
772f024c615ec13c6cd28bf024e9d6be852201b6
crypto/mlkem: swap order of return values of Encapsulate Per FIPS 203 (https://csrc.nist.gov/pubs/fips/203/final), the order of return values should be sharedKey, ciphertext. This commit simply swaps those return values and updates any consumers of the Encapsulate() method to respect the new order. Fixes #70950 Chan...
[ { "path": "src/crypto/internal/fips140/mlkem/cast.go", "patch": "@@ -40,7 +40,7 @@ func init() {\n \t\tdk := &DecapsulationKey768{}\n \t\tkemKeyGen(dk, d, z)\n \t\tek := dk.EncapsulationKey()\n-\t\tc, Ke := ek.EncapsulateInternal(m)\n+\t\tKe, c := ek.EncapsulateInternal(m)\n \t\tKd, err := dk.Decapsulate(c)...
2024-12-23T01:36:59
facebook/react
98633d10a6dd15e59269e9fe444329525c61707e
79dbf6fc19bb26336f0043cc6fb62eaac2676f96
Add a noEmit compiler option Defaults to false, ie it runs the codegen pass. When enabled it will simply run all passes up to codegen and then skip over it. Naming of this option is copied from [TypeScript](https://www.typescriptlang.org/tsconfig#noEmit) which has the same named option that makes the compiler only...
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -79,6 +79,14 @@ export type PluginOptions = {\n panicOnBailout: boolean;\n \n isDev: boolean;\n+\n+ /**\n+ * When enabled, Forget will continue statically analyzing and linting code, but skip over c...
2023-06-20T16:30:06
vercel/next.js
0625d0d1160e2dde5edec883cbf3997525505079
34c5d411dcffdda75467aca3451c959d2d69a3c8
[ts-next-plugin] test: add metadata warn no type test (#78505) ### Why? This PR initiates the migration of manual testing of the Next.js TypeScript plugin to an automated language service plugin test. It replaced the existing metadata `missing-type-warning` fixture with the `warn-no-type` test (naming for consisten...
[ { "path": "packages/next/src/server/typescript/rules/metadata.ts", "patch": "@@ -95,7 +95,7 @@ const metadata = {\n file: source,\n category: ts.DiagnosticCategory.Warning,\n code: NEXT_TS_ERRORS.INVALID_METADATA_EXPORT,\n- messageText: `The \"generateM...
2025-05-12T11:52:28
huggingface/transformers
c58e711a8c688d5a154f6dbbfae54da2f31328bb
b71de73468429eb02da18caa50e9b5200400a4ed
Fix TypeError in convert_rope_params_to_dict when ignore_keys is a list (#44272) Fix TypeError when ignore_keys_at_rope_validation is a list In `convert_rope_params_to_dict`, the `ignore_keys_at_rope_validation` parameter is expected to be a set but can arrive as a list when model configs are deserialized from JSON (...
[ { "path": "src/transformers/modeling_rope_utils.py", "patch": "@@ -646,7 +646,7 @@ def convert_rope_params_to_dict(self, ignore_keys_at_rope_validation: set | None\n if partial_rotary_factor is not None:\n self.rope_parameters.setdefault(\"partial_rotary_factor\", partial_rotary_factor)\...
2026-02-25T14:37:49
ollama/ollama
bb71654ebe846d97df306b163c086167239431e5
a343ae53a4fa0f75a37e1653df3b61a9ed1b843d
chore: fix some inconsistent function name in comment Signed-off-by: youzichuan <youzichuan6@outlook.com>
[ { "path": "ml/backend/ggml/quantization.go", "patch": "@@ -15,7 +15,7 @@ import (\n \tfsggml \"github.com/ollama/ollama/fs/ggml\"\n )\n \n-// convertToF32 converts (dequantizes) the raw data to F32 so we can then quantize it\n+// ConvertToF32 converts (dequantizes) the raw data to F32 so we can then quantiz...
2025-08-13T08:22:45
golang/go
772f024c615ec13c6cd28bf024e9d6be852201b6
b9955f0ad952a22388eead15e3d15610a29e03a0
weak: fix typo in warning about tiny allocator optimization Fixes #70972. Change-Id: Ib04c2a3129a1da651a0b4674b372aec73966115a Reviewed-on: https://go-review.googlesource.com/c/go/+/638377 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@goo...
[ { "path": "src/weak/pointer.go", "patch": "@@ -52,7 +52,7 @@ import (\n // nil, even after an object is no longer referenced, the runtime is allowed to\n // perform a space-saving optimization that batches objects together in a single\n // allocation slot. The weak pointer for an unreferenced object in such...
2024-12-23T20:42:42
facebook/react
5c0622af3957ac876ce7ce301dcd2c34f3ef9e17
e378eed0f3ec04319e9501d0a1424f5f71499590
Add failing test for InferReferenceEffects bug
[ { "path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error._bug.recursive-function-expr.expect.md", "patch": "@@ -0,0 +1,18 @@\n+\n+## Input\n+\n+```javascript\n+function foo() {\n+ (() => foo())();\n+}\n+\n+```\n+\n+\n+## Error\n+\n+```\n+Expected value for identif...
2023-06-20T16:30:04
electron/electron
61374019c03ab1af8584550277318ba7c2adb0ca
04b33b319b7fca9fbf415d67953643f9b29e2160
chore: bump chromium to 103.0.5046.0 (main) (#33906) * chore: bump chromium in DEPS to 103.0.5020.0 * chore: bump chromium in DEPS to 103.0.5022.0 * chore: bump chromium in DEPS to 103.0.5024.0 * chore: update patches * 3587410: [Printing] Remove JobEventDetails Ref: https://chromium-review.googlesource...
[ { "path": "BUILD.gn", "patch": "@@ -561,8 +561,8 @@ source_set(\"electron_lib\") {\n \"//ui/base/ime/linux\",\n \"//ui/events/devices/x11\",\n \"//ui/events/platform/x11\",\n- \"//ui/gtk\",\n \"//ui/views/controls/webview\",\n+ \"//ui/views/linux_ui:linux_ui_factory\",\n ...
2022-05-17T16:48:40
vercel/next.js
002754d48a94b1e24ca05b98bbc7e3e60e7b64d3
8e4568af247fb33af2d41ef886980a407c486375
Turbopack: Fix setting existing env var in webpack loader (#78962) ## What? We use a proxy around `process.env`, the setter was not implemented and this caused some issue in Node.js when it checks for if `process.env` is writeable. This fixes that case. Full report in #78804. Fixes #78804 Fixes PACK-4550 <!-- Thank...
[ { "path": "test/e2e/app-dir/webpack-loader-set-environment-variable/app/layout.tsx", "patch": "@@ -0,0 +1,8 @@\n+import { ReactNode } from 'react'\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", "...
2025-05-12T07:24:46
huggingface/transformers
b71de73468429eb02da18caa50e9b5200400a4ed
05151523e0bca7f7d2bb56a2c84e81049ef41cb6
Fix generation integration tests (#44225) * check this first * fix some of the failing tests * oh it was working, revert * fix the rest * fix test fetcher now * oh skip also this one, annoying test * delete * comments * typo
[ { "path": "src/transformers/generation/candidate_generator.py", "patch": "@@ -178,14 +178,13 @@ def __init__(\n # avoid unnecessary warnings that min_length is larger than max_new_tokens\n # remove the `MinLengthLogitsProcessor` if exists (NOTE: no need to check for `MinNewTokensLogitsProces...
2026-02-25T09:19:38