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 |
|---|---|---|---|---|---|
facebook/react | a6e4791b11816374d015eb4531a82e6cf209c7f2 | 95c9554bc72813b0ee2b028774bb7cf0482887ba | [Fizz] Fix root segment IDs (#27371)
Typically we assign IDs lazily when flushing to minimize the ids we have
to assign and we try to maximize inlining.
When we prerender we could always flush into a buffer before returning
but that's not actually what we do right now. We complete rendering
before returning but ... | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -176,6 +176,7 @@ type ReplaySuspenseBoundary = [\n string | number /* key */,\n Array<ResumableNode> /* children */,\n SuspenseBoundaryID /* id */,\n+ number /* rootSegmentID */,\n ];\n \n type ReplayNode =\n@@ -1957,6 +1958,7 @@ ... | 2023-09-14T03:18:03 |
huggingface/transformers | 65db6fc07c776406f7b4afe1ee5ecdbeb7202af7 | 39f1c8d5d294779dbd13248b0986e510c477c529 | :rotating_light: [`FA4`] Initial support (#42435)
* initial implementation
* CB support
* change how we call item on max_seq_len_q/k
* fix
* tests
* fix fa2 clash
* unify the fa dispatch
* fix
* modernbert...
* oops
* parity test
* style
* nit
* fixup imports for fa4
* enable attention sinks, fixup logit... | [
{
"path": ".github/workflows/self-scheduled-flash-attn-caller.yml",
"patch": "@@ -56,5 +56,5 @@ jobs:\n runner_type: \"a10\"\n report_repo_id: hf-internal-testing/transformers_flash_attn_ci\n commit_sha: ${{ github.sha }}\n- pytest_marker: \"flash_attn_test or flash_attn_3_test\"\n+ ... | 2026-03-13T19:19:37 |
golang/go | aa8d4df9d9b8659abc7bdc1485c11db515ed1479 | e4b12eb8af28d3f505a5487b76dbfd4b1a37c0da | go/types: propagate *ast.LabeledStmt in blockBranches properly
Fixes #70974
Change-Id: I330c0ae53dcbcdb173ab514ee94f2ca53944df09
GitHub-Last-Rev: 7c2b740da6d6e94ac8787f04ad8942f3776ac56c
GitHub-Pull-Request: golang/go#70976
Reviewed-on: https://go-review.googlesource.com/c/go/+/638257
Reviewed-by: Michael Knyszek <mk... | [
{
"path": "src/cmd/compile/internal/types2/labels.go",
"patch": "@@ -112,8 +112,8 @@ func (check *Checker) blockBranches(all *Scope, parent *block, lstmt *syntax.Lab\n \t\treturn varDeclPos.IsKnown() && slices.Contains(badJumps, jmp)\n \t}\n \n-\tvar stmtBranches func(syntax.Stmt)\n-\tstmtBranches = func(s ... | 2024-12-24T07:23:13 |
electron/electron | e0fb5cbe1fd84d9651e6030ebab683dd9e4af42d | bfced8cbfe6bad6d119ea9276d13aa67accc9c9a | fix: crash loading non-standard schemes in iframes (#35485) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -118,3 +118,4 @@ revert_spellcheck_fully_launch_spell_check_delayed_initialization.patch\n add_electron_deps_to_license_credits_file.patch\n feat_add_set_can_resize_mutator.patch\n fix_revert_emulationhandler_update_functions_to_early_return.patch\n+fix_cr... | 2022-08-31T08:08:11 |
ollama/ollama | 8ed1adf3dbda70c5ccfec766f4db4c4a4f3ef948 | 440a3823a66330650b6bfac8378babdb88b4d036 | docs: fix typo in vscode.mdx (#13116) | [
{
"path": "docs/integrations/vscode.mdx",
"patch": "@@ -1,34 +1,34 @@\n ---\n-title: VS Code \n+title: VS Code\n ---\n \n ## Install\n \n-Install [VS Code](https://code.visualstudio.com/download). \n+Install [VS Code](https://code.visualstudio.com/download).\n \n-## Usage with Ollama \n+## Usage with Ollama... | 2025-11-18T21:18:42 |
vercel/next.js | 7a57ca7b617eb316082fac20f893c96688cb985a | e2173f136085128aab109b4aade46c261b194f63 | chore: Use same function references in useReportWebVitals examples (#79963)
Closes: https://linear.app/vercel/issue/DOC-4726/docs-usereportwebvitals
FIxes: #79940
---------
Co-authored-by: Lee Robinson <lee@leerob.com> | [
{
"path": "docs/01-app/05-api-reference/04-functions/use-report-web-vitals.mdx",
"patch": "@@ -7,15 +7,19 @@ description: API Reference for the useReportWebVitals function.\n \n The `useReportWebVitals` hook allows you to report [Core Web Vitals](https://web.dev/vitals/), and can be used in combination with... | 2025-06-02T14:00:45 |
facebook/react | 95c9554bc72813b0ee2b028774bb7cf0482887ba | 612b2b6601abb844248c384d1e288bb824b180b7 | useFormState: Compare action signatures when reusing form state (#27370)
During an MPA form submission, useFormState should only reuse the form
state if same action is passed both times. (We also compare the key
paths.)
We compare the identity of the inner closure function, disregarding the
value of the bound ar... | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -9,6 +9,7 @@\n \n import type {\n Thenable,\n+ PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n ReactCustomFormAction,\n@@ -489,6 +490,69 @@ export function encodeFormAction(\n };\n }\n \n+function isSignatur... | 2023-09-14T00:46:22 |
huggingface/transformers | 064f0e97c69ca2ac865be78ddff5ce73c54ab071 | 80572efa0501a0881d23ceb508e19464a6c24288 | [CB] [Bug] Fix crashes when running without cuda (#44673)
* Fix CUDA being mandatory
* Add a test for the feature
* Better test and run on CPU
* Add back slow and better name | [
{
"path": "src/transformers/generation/continuous_batching/continuous_api.py",
"patch": "@@ -17,7 +17,7 @@\n import threading\n from abc import abstractmethod\n from collections.abc import Generator\n-from contextlib import contextmanager\n+from contextlib import contextmanager, nullcontext\n from math impo... | 2026-03-13T17:44:37 |
golang/go | f7becfc7f1e514ee658eae3997ae09cab9edb123 | fdaac84480b02e600660d0ca7c15339138807107 | go/types: use documented version of gotypesalias GODEBUG
This way the code would panic, in case it does not exist.
Change-Id: I95de7460c0386afdc5d3f6a847e9fcbd22446010
GitHub-Last-Rev: 9ae0502a091feed45169f5c1a7e2761f8ffa2841
GitHub-Pull-Request: golang/go#70845
Reviewed-on: https://go-review.googlesource.com/c/go/+/... | [
{
"path": "src/go/types/eval_test.go",
"patch": "@@ -208,7 +208,7 @@ func TestEvalPos(t *testing.T) {\n }\n \n // gotypesalias controls the use of Alias types.\n-var gotypesalias = godebug.New(\"#gotypesalias\")\n+var gotypesalias = godebug.New(\"gotypesalias\")\n \n // split splits string s at the first oc... | 2024-12-14T11:03:27 |
electron/electron | 75f9573e53338e15af7c7ccd07a529332847ea2c | d0e220cbcecb6fcca6b6e8acf161dd51864718f2 | fix: compensate for title bar height when setting bounds on `BrowserView` (#34713)
fix: compensate for title bar height when setting bounds | [
{
"path": "shell/browser/native_browser_view_mac.mm",
"patch": "@@ -262,9 +262,21 @@ - (void)drawDebugRect:(NSRect)aRect {\n auto* view = iwc_view->GetNativeView().GetNativeNSView();\n auto* superview = view.superview;\n const auto superview_height = superview ? superview.frame.size.height : 0;\n+\n+ ... | 2022-08-29T15:53:03 |
ollama/ollama | 440a3823a66330650b6bfac8378babdb88b4d036 | 718961de68fb82f355bca53c1bdc3d126a42fb86 | fix(tokenizer): add special tokens to empty inputs (#13091) | [
{
"path": "model/bytepairencoding.go",
"patch": "@@ -237,7 +237,7 @@ func (bpe BytePairEncoding) Encode(s string, addSpecial bool) ([]int32, error) {\n \t\t}\n \t}\n \n-\tif addSpecial && len(ids) > 0 {\n+\tif addSpecial {\n \t\tids = bpe.vocab.addSpecials(ids)\n \t}\n ",
"additions": 1,
"deletions"... | 2025-11-18T19:16:56 |
vercel/next.js | 9748d9da173d31689a609ccfb9266a6522ae00f7 | 1f0e536addb61a65ee432eaaf812d78903dfa919 | docs: Reference to statically imported images (#80048)
Closes:
https://linear.app/vercel/issue/DOC-4730/docs-nextimage-local-images-broken-snippet
Fixes: #80023
Made the static image imports, into a sub section of local images, and
referenced how their width/height is auto calculated.
-
https://github.com/vercel/nex... | [
{
"path": "docs/01-app/01-getting-started/04-images.mdx",
"patch": "@@ -58,6 +58,41 @@ export default function Page() {\n <Image\n src=\"/profile.png\"\n alt=\"Picture of the author\"\n+ width={500}\n+ height={500}\n+ />\n+ )\n+}\n+```\n+\n+```jsx filename=\"app/page.js\" switc... | 2025-06-02T13:56:39 |
facebook/react | 612b2b6601abb844248c384d1e288bb824b180b7 | e5205658f40ad181279857dbb66e36b8ebcd8c0e | useFormState: Reuse state from previous form submission (#27321)
If a Server Action is passed to useFormState, the action may be
submitted before it has hydrated. This will trigger a full page
(MPA-style) navigation. We can transfer the form state to the next page
by comparing the key path of the hook instance.
... | [
{
"path": "fixtures/flight/server/global.js",
"patch": "@@ -138,11 +138,15 @@ app.all('/', async function (req, res, next) {\n // For HTML, we're a \"client\" emulator that runs the client code,\n // so we start by consuming the RSC payload. This needs a module\n // map that reverse engine... | 2023-09-13T22:30:40 |
huggingface/transformers | 80572efa0501a0881d23ceb508e19464a6c24288 | 75aaf68307404eda6ad7f3b6401372c6f3dfeb7c | Another (small) set of fixes required for tiny model creation (#44666)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/gemma3n/test_modeling_gemma3n.py",
"patch": "@@ -109,6 +109,9 @@ def get_audio_encoder_config(self):\n conf_attention_context_left=5,\n )\n \n+ def get_config(self):\n+ return self.get_audio_encoder_config()\n+\n def prepare_config_and_inputs_for_com... | 2026-03-13T17:20:49 |
golang/go | f91ac1b61eb7c18773ff01be58a39f49de436585 | c4136a433c28eb12abad777f8e74087ecf6e21f4 | crypto/internal/fips140test: fix TestACVP env vars
Fix TestACVP environment construction to include both ACVP_WRAPPER and
GODEBUG.
Previously we were accidentally overwriting the cmd.Env, stomping the
ACVP_WRAPPER env var and replacing it with just the GODEBUG env var.
This in turn makes the tests start to fail when ... | [
{
"path": "src/crypto/internal/fips140test/acvp_test.go",
"patch": "@@ -2132,8 +2132,10 @@ func TestACVP(t *testing.T) {\n \t}\n \tcmd = testenv.Command(t, goTool, args...)\n \tcmd.Dir = dataDir\n-\tcmd.Env = append(os.Environ(), \"ACVP_WRAPPER=1\")\n-\tcmd.Env = append(os.Environ(), \"GODEBUG=fips140=on\")... | 2025-02-13T15:31:53 |
ollama/ollama | 330f62a7faf60096e00393b444b1b81a9b34de7e | 584e2d646fb4d2f1643b4da81a096d01114f5b2b | docs: add Void Editor to community integrations (#13124)
Void is an open source AI code editor and Cursor alternative that supports
Ollama. It's built on VS Code and allows users to connect directly to Ollama
for private LLM usage without going through a middleman backend.
Key features:
- Open source Cursor alternati... | [
{
"path": "README.md",
"patch": "@@ -367,6 +367,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Ollama4j Web UI](https://github.com/ollama4j/ollama4j-web-ui) - Java-based Web UI for Ollama built with Vaadin, Spring Boot, and Ollama4j\n - [PyOllaMx](https://github.com/kspviswa/pyOllaM... | 2025-11-18T03:20:36 |
vercel/next.js | fe72addb2324a3c4e7211a7925444d4fc585068f | aefa6f152619c45b6288452d329aa7511a459004 | Fix watchmode for `taskr` tasks (#80020) | [
{
"path": "packages/next/taskfile.js",
"patch": "@@ -2835,11 +2835,21 @@ export async function build(task, opts) {\n }\n \n export async function generate_types(task, opts) {\n- await execa(\n+ const watchmode = opts.dev\n+ const typesPromise = execa(\n 'pnpm',\n- ['run', 'types', ...(opts.dev ? [... | 2025-05-31T22:43:53 |
electron/electron | d0e220cbcecb6fcca6b6e8acf161dd51864718f2 | 18475818486be806e891e8e6cb13b83c620ec0aa | chore: bump node to v16.17.0 (main) (#35350)
* chore: bump node in DEPS to v16.17.0
* chore: fixup asar patch
* lib: use null-prototype objects for property descriptors
https://github.com/nodejs/node/pull/43270
* src: make SecureContext fields private
https://github.com/nodejs/node/pull/43173
* crypt... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '106.0.5216.0',\n 'node_version':\n- 'v16.16.0',\n+ 'v16.17.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2022-08-29T13:55:36 |
huggingface/transformers | 75aaf68307404eda6ad7f3b6401372c6f3dfeb7c | f2f7c89413b89949a84f278b071e53f89f7fcb72 | Fix CookieCutter (#44334)
Fix | [
{
"path": "src/transformers/cli/add_new_model_like.py",
"patch": "@@ -142,6 +142,7 @@ def __init__(self, lowercase_name: str):\n \n # Get tokenizer class\n if self.lowercase_name in TOKENIZER_MAPPING_NAMES:\n+ self.tokenizer_class = None\n self.fast_tokenizer_class = T... | 2026-03-13T17:06:17 |
facebook/react | 69be472c11231056d297a7b73dd0b121905606d3 | d07921eeda62613bfcf52ecdb66322db26393567 | Fix: Initialize childIndex in Task constructor (#27367)
This field was not being initialized. Although the property is part of
the Flow type, the type error wasn't caught because the constructor
itself is not covered by Flow, which is unfortunate. (I assume this is
related to the dev-only componentStack property.) | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -578,6 +578,7 @@ function createTask(\n context,\n treeContext,\n thenableState,\n+ childIndex: -1,\n }: any);\n if (__DEV__) {\n task.componentStack = null;",
"additions": 1,
"deletions": 0,
"language"... | 2023-09-13T02:17:03 |
ollama/ollama | 4aba2e8b727795320f049a28c23bbd9882b272c0 | 2f36d769aa2db6e7bb41a0dbd079f9ce7a9bdc40 | discover: Support cgroups cores and memory limitations (#10292)
* Add supports for cgroups cores and memory limitations
* fix compile error and add logs
* remove cpu info log | [
{
"path": "discover/cpu_linux.go",
"patch": "@@ -2,6 +2,7 @@ package discover\n \n import (\n \t\"bufio\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n@@ -10,12 +11,21 @@ import (\n \t\"reflect\"\n \t\"regexp\"\n \t\"sort\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/format\... | 2025-11-18T00:13:03 |
golang/go | c4136a433c28eb12abad777f8e74087ecf6e21f4 | 1eb4c0dcb125d27e1a4296ae136f75ac08c3b9c5 | runtime/debug: document DefaultGODEBUG as a BuildSetting
Fixes #66465
Change-Id: I60c017ddba29fa5b452b665d8521cd6c8e20438c
Reviewed-on: https://go-review.googlesource.com/c/go/+/597979
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Jorropo <jorropo.pgm@gmail.com... | [
{
"path": "src/runtime/debug/mod.go",
"patch": "@@ -77,6 +77,7 @@ type Module struct {\n // - CGO_CPPFLAGS: the effective CGO_CPPFLAGS environment variable\n // - CGO_CXXFLAGS: the effective CGO_CXXFLAGS environment variable\n // - CGO_LDFLAGS: the effective CGO_LDFLAGS environment variable\n+// - ... | 2024-07-12T19:56:19 |
vercel/next.js | aefa6f152619c45b6288452d329aa7511a459004 | 08ea8de29488c1295b94abede526fc50f6b49300 | Turbopack Build: Fix underscore path tests (#79778)
## What?
Implements handling for `%5F` to `_` conversion to handle pathnames in
App Router that want to bypass the underscore ignore folder.
Implementing this was a bit of a hassle not on the Turbopack side but
there's an additional layer of route handling before t... | [
{
"path": ".vscode/launch.json",
"patch": "@@ -55,9 +55,7 @@\n },\n \"env\": {\n // Enable the following environment variables to use turbopack instead of webpack:\n- // \"TURBOPACK\": \"1\",\n- // \"TURBOPACK_DEV\": \"1\",\n- // \"TURBOPACK_BUILD\": \"1\",\n+ ... | 2025-05-31T09:40:35 |
electron/electron | 18475818486be806e891e8e6cb13b83c620ec0aa | 2f23bdb19ea76029907ae247cc8eb47114df1d0c | fix: crash on WebWorker destruction (#35422) | [
{
"path": "patches/node/feat_add_uv_loop_interrupt_on_io_change_option_to_uv_loop_configure.patch",
"patch": "@@ -136,7 +136,7 @@ index 7cd3a2a954ff7d70e6ba7a6f7538648841bc54b2..f89b7158218be60ac10e61484a2d5e5e\n \n \n diff --git a/deps/uv/src/unix/loop.c b/deps/uv/src/unix/loop.c\n-index a88e71c339351f2e... | 2022-08-29T13:45:48 |
huggingface/transformers | f2f7c89413b89949a84f278b071e53f89f7fcb72 | 036340b7bfb457f056c5ffa696cb11fcf3d098fd | Fix AWQ tests for GPTQModel migration (#44654)
* fix awq tests
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* update ground truth
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* fix return replace_with_awq_linear
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* update linear type
Signed-off-by: j... | [
{
"path": "tests/quantization/autoawq/test_awq.py",
"patch": "@@ -110,7 +110,8 @@ class AwqTest(unittest.TestCase):\n )\n \n EXPECTED_OUTPUT_BF16 = [\n- \"Hello my name is Katie and I am a 20 year old student at the University of North Carolina at Chapel Hill. I am a junior and I am majoring ... | 2026-03-13T16:20:59 |
ollama/ollama | 399eacf48677a96a809f6960b35d04a60dcba97a | 231cc878cba3f5d080bc96faf8ecbded31b0b4e2 | ci: fix missing vulkan binaries in linux bundles (#13123) | [
{
"path": ".github/workflows/release.yaml",
"patch": "@@ -366,6 +366,7 @@ jobs:\n bin/ollama) echo $COMPONENT >>ollama-${{ matrix.os }}-${{ matrix.arch }}.tar.in ;;\n lib/ollama/*.so*) echo $COMPONENT >>ollama-${{ matrix.os }}-${{ matrix.arch }}.tar.in ;;\... | 2025-11-17T23:39:59 |
facebook/react | bbc8530ed7a67859583a7c990ac51cd39c7746e5 | 2eed1328478e8c923fcb4e6abf5efbd9e1233402 | [Float] Refactor public interface and internal HostDispatcher implementation (#27361)
When Float was first developed the internal implementation and external
interface were the same. This is problematic for a few reasons. One, the
public interface is typed but it is also untrusted and we should not
assume that it i... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -17,7 +17,10 @@ import type {\n StringDecoder,\n } from './ReactFlightClientConfig';\n \n-import type {HintModel} from 'react-server/src/ReactFlightServerConfig';\n+import type {\n+ HintCode,\n+ HintModel,\n+} from 'react-server/sr... | 2023-09-12T15:09:10 |
golang/go | 1eb4c0dcb125d27e1a4296ae136f75ac08c3b9c5 | 8659ad904966dfe809925c980ac11e7f98ac61aa | cmd/dist: test GOFIPS140=latest rather than just the GODEBUG
GOFIPS140=latest turns on the GODEBUG by default, and it's otherwise
untested.
Change-Id: I6a6a4656ff7ad313ce2c61ee4144ad2858bd148c
Reviewed-on: https://go-review.googlesource.com/c/go/+/648819
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -712,9 +712,9 @@ func (t *tester) registerTests() {\n \t// Check that all crypto packages compile (and test correctly, in longmode) with fips.\n \tif t.fipsSupported() {\n \t\t// Test standard crypto packages with fips140=on.\n-\t\tt.registerTest(\"GODEBUG=fips... | 2025-02-12T11:37:52 |
electron/electron | 4744674e933ebbd294878b60c93732500fd4217a | f6bbad287a7b15a760a018b85a3bb667d384e3c0 | fix: crash when switching origins with emulation settings set (#35466) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -117,3 +117,4 @@ add_maximized_parameter_to_linuxui_getwindowframeprovider.patch\n revert_spellcheck_fully_launch_spell_check_delayed_initialization.patch\n add_electron_deps_to_license_credits_file.patch\n feat_add_set_can_resize_mutator.patch\n+fix_rever... | 2022-08-29T12:53:24 |
vercel/next.js | b7b546e0710666247e4bb56f216a8c32bbafbdf9 | 70e5e6caf0a81211bc044d434c680e5e3a46553d | fix: update rspack production build output snapshot (#79766)
update build output snapshots in following test cases for Rspack.
-
test/e2e/app-dir/use-cache-segment-configs/use-cache-segment-configs.test.ts
-
test/e2e/app-dir/use-cache-unknown-cache-kind/use-cache-unknown-cache-kind.test.ts
-
test/e2e/app-dir/use-cach... | [
{
"path": "test/e2e/app-dir/use-cache-segment-configs/use-cache-segment-configs.test.ts",
"patch": "@@ -2,6 +2,8 @@ import { nextTestSetup } from 'e2e-utils'\n import { assertHasRedbox } from 'next-test-utils'\n import stripAnsi from 'strip-ansi'\n \n+const isRspack = !!process.env.NEXT_RSPACK\n+\n describe... | 2025-05-30T23:55:06 |
ollama/ollama | 231cc878cba3f5d080bc96faf8ecbded31b0b4e2 | aa676b313fffcdaef34b107a943a72133eeb8fa1 | app/ui: fix to point ollama client to ui backend in dev mode (#13079) | [
{
"path": "app/ui/app/src/api.ts",
"patch": "@@ -15,6 +15,7 @@ import {\n import { parseJsonlFromResponse } from \"./util/jsonl-parsing\";\n import { ollamaClient as ollama } from \"./lib/ollama-client\";\n import type { ModelResponse } from \"ollama/browser\";\n+import { API_BASE } from \"./lib/config\";\n... | 2025-11-17T17:58:35 |
huggingface/transformers | 036340b7bfb457f056c5ffa696cb11fcf3d098fd | 2548d0dbda93e29b1e94cbee64cfb25fbc03610a | [Model] Add PP-OCRV5_mobile_det Model Support (#43247)
* Feat: Add PP-OCRV5_mobile_det model
* fix code
* fix code
* fix
* use cv and np to replace pyclipper
* add model post_init()
* fix
* fix model init_weight
* fix rename module
* update
* update
* update
* update
* update
* update
* update
* updat... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1268,8 +1268,14 @@\n title: PP-DocLayoutV2\n - local: model_doc/pp_doclayout_v3\n title: PP-DocLayoutV3\n+ - local: model_doc/pp_ocrv5_mobile_det\n+ title: PP-OCRv5_mobile_det\n - local: model_doc/pp_ocrv5_server_... | 2026-03-13T15:21:39 |
facebook/react | 2eed1328478e8c923fcb4e6abf5efbd9e1233402 | bb1d8d166799eb97892be6c7826179270ba283d0 | refactor[devtools/extension]: more stable element updates polling to avoid timed out errors (#27357)
Some context:
- When user selects an element in tree inspector, we display current
state of the component. In order to display really current state, we
start polling the backend to get available updates for the elem... | [
{
"path": "packages/react-devtools-extensions/src/background/index.js",
"patch": "@@ -83,7 +83,7 @@ chrome.runtime.onConnect.addListener(port => {\n }\n \n if (isNumeric(port.name)) {\n- // Extension port doesn't have tab id specified, because its sender is the extension.\n+ // DevTools page port ... | 2023-09-12T14:05:39 |
electron/electron | f65b05b8cc91e745c60a7cffd7d0c13d186970ba | 8128fa6d8586048d6fff2a40c710c8d6c279b640 | fix: pass rfh instances through to the permission helper (#35419)
* fix: pass rfh instances through to the permission helper
* refactor: use WeakDocumentPtr instead of frame node id
* fix: handle missing initiator document
* fix: dispatch openExternal event for top level webview navs still | [
{
"path": "docs/api/session.md",
"patch": "@@ -635,7 +635,7 @@ win.webContents.session.setCertificateVerifyProc((request, callback) => {\n * `notifications` - Request notification creation and the ability to display them in the user's system tray.\n * `midi` - Request MIDI access in the `webmidi` AP... | 2022-08-26T10:31:33 |
vercel/next.js | 0084361f4ba8b4298aa77afe9eff652d1830c352 | 1f39908c976ef500148de93e6f39a111e080bf65 | [turbopack] Fix URL fragment and query handling in Turbopack (#79993)
Fix URL fragment and query handling in Turbopack
## What?
This PR improves how URL fragments and query strings are handled in Turbopack by:
1. Standardizing the representation of fragments and queries in `AssetIdent`
2. Ensuring fragments and quer... | [
{
"path": "crates/next-api/src/server_actions.rs",
"patch": "@@ -213,7 +213,7 @@ pub async fn to_rsc_context(\n // module.\n let source = FileSource::new_with_query(\n client_module.ident().path().root().join(entry_path.into()),\n- Vc::cell(entry_query.into()),\n+ entry_query.i... | 2025-05-30T18:09:35 |
ollama/ollama | dd0ed0ef172cdc270ef062ac764a58780c5c8093 | d5649821aea25c3c02747ac1b19d8ac6e138817b | docs: fix typos in repository documentation (#10683) | [
{
"path": "CONTRIBUTING.md",
"patch": "@@ -16,7 +16,7 @@ See the [development documentation](./docs/development.md) for instructions on h\n \n * New features: new features (e.g. API fields, environment variables) add surface area to Ollama and make it harder to maintain in the long run as they cannot be rem... | 2025-11-16T04:22:29 |
electron/electron | 8128fa6d8586048d6fff2a40c710c8d6c279b640 | 3eb593dfde9c90bc17e669aa5532841097005c77 | build: fix missing patch config dir error (#35451) | [
{
"path": "script/export_all_patches.py",
"patch": "@@ -2,13 +2,15 @@\n \n import argparse\n import json\n+import os\n \n from lib import git\n \n \n def export_patches(dirs, dry_run):\n for patch_dir, repo in dirs.items():\n- git.export_patches(repo=repo, out_dir=patch_dir, dry_run=dry_run)\n+ if o... | 2022-08-25T16:39:16 |
ollama/ollama | 5d31242fbfc09302e611df8c2202cb8d2c72037a | d7fd72193fbf113ddf97411fc404be3962f33584 | discover: fix typos in runner.go (#13096) | [
{
"path": "discover/runner.go",
"patch": "@@ -94,7 +94,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\tvar dirs []string\n \t\t\tif dir != \"\" {\n \t\t\t\tif requested != \"\" && filepath.Base(dir) != requested {\n-\t\t\t\t\tslog.Debug(\"skipping available libr... | 2025-11-16T02:52:54 |
huggingface/transformers | 523759e218a89adcdc66a2c68aabc325f6377f44 | b7626311663ee66509c7e691afc5a65ff7acacea | [`Chmv2`] Fix conversion after capture refactor (#44665)
fix | [
{
"path": "src/transformers/conversion_mapping.py",
"patch": "@@ -68,6 +68,7 @@\n \n def _build_checkpoint_conversion_mapping():\n mapping = {\n+ \"chmv2\": [WeightRenaming(r\"backbone.layer.\", r\"backbone.model.layer.\")],\n \"dinov3_convnext\": [WeightRenaming(r\"(?<!model\\.)stages\",... | 2026-03-13T14:14:48 |
golang/go | 679cd8e7798db593d0973519f6d3ee7ea7659142 | fb5f78a14f71f043604826067d1f224e1e90a2f5 | reflect, internal/abi: speed up TypeFor[T]
goos: linux
goarch: amd64
pkg: reflect
cpu: AMD Ryzen 5 4600G with Radeon Graphics
│ /tmp/before │ /tmp/after │
│ sec/op │ sec/op vs base │
TypeForString-12 2.091n ± 1% 1.174n ± 1% ... | [
{
"path": "src/internal/abi/type.go",
"patch": "@@ -187,11 +187,7 @@ func TypeOf(a any) *Type {\n \n // TypeFor returns the abi.Type for a type parameter.\n func TypeFor[T any]() *Type {\n-\tvar v T\n-\tif t := TypeOf(v); t != nil {\n-\t\treturn t // optimize for T being a non-interface kind\n-\t}\n-\tretur... | 2025-02-12T07:16:32 |
ollama/ollama | 72ff5b9d8c7a07df46f7a7db68a42562ddab2994 | ce29f695b4072209dd8238f8bd732d16505b7e1c | log: warn if user overrides detected (#13088)
Many failed GPU discovery issues recently can be traced to incorrect override settings.
This extra logging should help quickly spot these and guide users to try unsetting them first. | [
{
"path": "discover/runner.go",
"patch": "@@ -65,6 +65,10 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t}\n \n \t\tslog.Info(\"discovering available GPUs...\")\n+\n+\t\t// Warn if any user-overrides are set which could lead to incorrect GPU discovery\n+\t\toverrid... | 2025-11-14T22:36:28 |
huggingface/transformers | b7626311663ee66509c7e691afc5a65ff7acacea | 5b57a1587caf3a040a69549837154dc1bcc9cd9e | fix(models, testing): Fix Llama4 vision rotary meta tensor initialization and MyT5 get_tokenizer signature (#44581)
* fix: Recompute rotary embeddings on meta device and correct get_tokenizer signature
* fix: Register freqs_ci as a non-persistent buffer
* fix: Recompute freqs_ci in _init_weights instead
* fix: Use ... | [
{
"path": "src/transformers/models/llama4/modeling_llama4.py",
"patch": "@@ -485,6 +485,8 @@ def _init_weights(self, module):\n if isinstance(module, Llama4TextExperts):\n init.normal_(module.gate_up_proj, mean=0.0, std=std)\n init.normal_(module.down_proj, mean=0.0, std=std)... | 2026-03-13T14:14:28 |
electron/electron | 3eb593dfde9c90bc17e669aa5532841097005c77 | 3de78442127f7a75c2b49c09bccb0277900be28a | test: fix some broken globs for spec-main (#35439) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1060,7 +1060,7 @@ steps-tests: &steps-tests\n export LLVM_SYMBOLIZER_PATH=$PWD/third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer\n export MOCHA_TIMEOUT=180000\n echo \"Piping output to ASAN_SYMBOLIZE ($ASAN_SYM... | 2022-08-25T16:36:08 |
facebook/react | a4aceafc63a4a54b507ab60d530b25d9ff189024 | 627b7abd62eb27f70af3934ca45b858103d4f30d | Fix: Skip hidden inputs before text instance (#27358)
Found a hydration bug that happens when you pass a Server Action to
`formAction` and the next node is a text instance.
The HTML generated by Fizz is something like this:
```html
<button name="$ACTION_REF_5" formAction="" formEncType="multipart/form-data" fo... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1216,7 +1216,15 @@ export function canHydrateTextInstance(\n if (text === '') return null;\n \n while (instance.nodeType !== TEXT_NODE) {\n- if (!inRootOrSingleton || !enableHostSingletons) {\n+ if (\n+ e... | 2023-09-11T22:22:37 |
golang/go | 024c900b43e4531576e726ef1cdb1cc119e64203 | 127288b4c6527e92ac788d32ece96ef67211b2c8 | cmd/go: clarify vcs suffix to repo mapping
For #71635
Change-Id: I12ec2a810cfcaf2565b0d9c518b0921ec54e9f12
Reviewed-on: https://go-review.googlesource.com/c/go/+/648475
Reviewed-by: Michael Matloob <matloob@golang.org>
Auto-Submit: Sam Thanawalla <samthanawalla@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@l... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2924,12 +2924,12 @@\n //\timport \"example.org/user/foo.hg\"\n //\n // denotes the root directory of the Mercurial repository at\n-// example.org/user/foo or foo.hg, and\n+// example.org/user/foo, and\n //\n //\timport \"example.org/repo.git/foo/bar\"\n //\n ... | 2025-02-11T16:30:22 |
huggingface/transformers | 5b57a1587caf3a040a69549837154dc1bcc9cd9e | 3dd82faf3e887043db772d4c1191ec40271a1584 | [CB] Add dedicated config (#44434)
* Added cb config object
* Remove manual_eviction
* Make cb config the preferred way to pass args
* Review auto
* Style
* Fixes and removing traces of timing
* style
* Remove paged attention duplicates
* nit
* nitnit
* nitnitnit
* Auto review 1/2
* Auto review 2/2
* styl... | [
{
"path": "docs/source/en/continuous_batching.md",
"patch": "@@ -169,6 +169,14 @@ The [`Scheduler`] selects requests for processing at each step based on the toke\n \n [`ContinuousBatchingManager`] runs the model forward pass for the scheduled requests. It then collects and returns the results.\n \n+[`Conti... | 2026-03-13T13:56:37 |
ollama/ollama | 12b174b10e5f3d0cf8cf5856a344e1f765203535 | 333203d871339414d266a75e2134e87022ff110f | fix tensor merge (#13053) | [
{
"path": "convert/tensor.go",
"patch": "@@ -2,10 +2,12 @@ package convert\n \n import (\n \t\"cmp\"\n+\t\"errors\"\n \t\"io\"\n \t\"iter\"\n \t\"path\"\n \t\"slices\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/pdevine/tensor\"\n@@ -94,6 +96,26 @@ func mergeTensors(unmatched []Tensor, merges ...mer... | 2025-11-13T23:32:34 |
facebook/react | edd9c52142609b8eeaa81b64f9505ebf068f96a5 | e8d130bd1dcb093c28ff8197278e49cf9a671419 | Sprout tests to double-check our destructuring
I wanted to double-check the semantics of when default values are used, so i
wrote out some fixtures with sprout enabled. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/destructuring-default-at-array-hole.expect.md",
"patch": "@@ -0,0 +1,33 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ // destructure slot index has a hole in the input, should return default\n+ co... | 2023-09-08T00:17:03 |
vercel/next.js | 1d11db3cbafc1dd54ce57976e4e85f868679f706 | 48e53d7dbd9216f44c0965e6ed1f334cc9adb41a | Turbopack: more deterministic manifest order (#79977)
Fix non-deterministic next font manifest order:
 | [
{
"path": "crates/next-core/src/emit.rs",
"patch": "@@ -1,8 +1,7 @@\n use anyhow::Result;\n-use rustc_hash::FxHashSet;\n use tracing::Instrument;\n use turbo_tasks::{\n- ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc,\n+ FxIndexSet, ResolvedVc, TryFlatJoinIterExt, ValueToString, Vc,\n graph::{A... | 2025-05-30T15:26:18 |
golang/go | 127288b4c6527e92ac788d32ece96ef67211b2c8 | b1a11c54465f24d1861c3568ea3b1bb6304b450d | cmd/go: add errors obtaining c compiler version to cache key
If there's an error getting the version of the c compiler, add the error
to the input used to produce the cache key. In the case where we can't
parse the version, the text of the output of the command is part of the
error, so different unparseable versions w... | [
{
"path": "src/cmd/go/internal/work/exec.go",
"patch": "@@ -301,19 +301,25 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID {\n \t\t// compiler changes we rebuild the package.\n \t\tif ccID, _, err := b.gccToolID(ccExe[0], \"c\"); err == nil {\n \t\t\tfmt.Fprintf(h, \"CC ID=%q\\n\", ccID)\n+\t\t... | 2025-02-10T20:17:54 |
huggingface/transformers | 3dd82faf3e887043db772d4c1191ec40271a1584 | 9574fb69040fdf93df58463bef3d2f310533be2d | fix(models): Forward timm model kwargs to timm.create_model for OmDet-Turbo (#44611)
* fix: Add and forward timm_model_kwargs to timm.create_model
* fix: Revert TimmBackboneConfig, add BC migration comment
* change: Address review
* nit: Add comment | [
{
"path": "src/transformers/models/omdet_turbo/configuration_omdet_turbo.py",
"patch": "@@ -161,6 +161,13 @@ def __init__(\n **kwargs,\n )\n \n+ # Extract timm.create_model kwargs; TimmBackbone doesn't forward arbitrary config attrs to timm\n+ timm_kwargs = {}\n+ if ... | 2026-03-13T11:47:34 |
electron/electron | a3a9463024f26c26f82f2e62d73d357e5ce8af59 | 70d6cbfb44f9b5c1cba6a6365d1e08ca58010206 | fix: fullscreen crashing with `roundedCorners: false` (#35421) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -246,7 +246,8 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.\n * `trafficLightPosition` [Point](structures/point.md) (optional) _macOS_ -\n Set a custom position for the traffic light buttons in frameless windows... | 2022-08-25T11:39:01 |
ollama/ollama | 684a9a8c5a01acfe13ee4a55a7dc7aff69f6b17a | 54a76d377301f9b1bcf00895a857e84cc45f0b3a | docs: fix typo (VSCode -> VS Code) (#13072) | [
{
"path": "README.md",
"patch": "@@ -366,7 +366,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [PartCAD](https://github.com/openvmp/partcad/) (CAD model generation with OpenSCAD and CadQuery)\n - [Ollama4j Web UI](https://github.com/ollama4j/ollama4j-web-ui) - Java-based Web UI for O... | 2025-11-13T04:49:33 |
facebook/react | 0052f2e591622fec493752b37af54e82a5752dac | ee77d91ca2a3862cd60b8f59391a9a13241607ea | TryStatement: enable sprout on new tests
Enables sprout for all the new try/catch fixtures in this stack. I added new
helpers and tried to make sure we're testing the most interesting codepath of
each fixture. This is where property testing would help, since we could test
multiple paths with a single block of code... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/try-catch-mutate-outer-value.expect.md",
"patch": "@@ -2,52 +2,70 @@\n ## Input\n \n ```javascript\n+const { shallowCopy, throwErrorWithMessage } = require(\"shared-runtime\");\n+\n function Component(props) {\n const x... | 2023-09-07T23:50:24 |
vercel/next.js | 9ff3f848a611b973f2a42db60f37f638fc61b223 | baa71a549076e88f2e45281148a6fefb21375cd5 | Turbopack: only keep old database version if not on CI (#79964)
<!-- 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 ... | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -222,6 +222,8 @@ pub struct NapiTurboEngineOptions {\n pub memory_limit: Option<f64>,\n /// Track dependencies between tasks. If false, any change during build will error.\n pub dependency_tracking: Option<bool>,\n+ /// Whether the... | 2025-05-30T12:13:35 |
huggingface/transformers | 9574fb69040fdf93df58463bef3d2f310533be2d | ca960f0cc0d2c2549b0f1834a51fa91230e50134 | Ensure same `dtype` for subconfig when `_from_config` (#44629)
fix for vllm
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -1454,6 +1454,12 @@ def _from_config(cls, config, **kwargs):\n if isinstance(dtype, str):\n dtype = getattr(torch, dtype)\n \n+ # Set the same `dtype` on all subconfigs to avoid dtype mismatch. When \"auto\" dtype\n+ ... | 2026-03-13T11:21:05 |
electron/electron | 22ff2b6b933a52f7cfa85556aa8aaea7544b9d3f | 7e8607fd7a3dac522fce600a3e5fd03bda64efff | fix: Node.js `atob` input validation (#35415)
fix: Node.js atob input validation | [
{
"path": "patches/node/.patches",
"patch": "@@ -47,3 +47,4 @@ support_v8_sandboxed_pointers.patch\n build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch\n build_ensure_native_module_compilation_fails_if_not_using_a_new.patch\n fix_override_createjob_in_node_platform.patch\n+buffer_fix_atob... | 2022-08-25T06:55:07 |
golang/go | b1a11c54465f24d1861c3568ea3b1bb6304b450d | a9357490919feed070e952ebc681b1a7af30aac2 | all: update vendored dependencies [generated]
The tree has opened for Go 1.25 development. This is a time to update
all golang.org/x/... module versions that contribute packages to the
std and cmd modules in the standard library to latest master versions.
For #36905.
[git-generate]
go install golang.org/x/build/cmd/... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -1,21 +1,21 @@\n module cmd\n \n-go 1.24\n+go 1.25\n \n require (\n \tgithub.com/google/pprof v0.0.0-20241101162523-b92577c0c142\n-\tgolang.org/x/arch v0.12.0\n-\tgolang.org/x/build v0.0.0-20241205234318-b850320af2a4\n-\tgolang.org/x/mod v0.22.0\n-\tgolang.org/x/sync... | 2025-02-11T22:59:59 |
ollama/ollama | f206357412cfac5a885b843bd9a1c64ec89ac213 | 8224cd9063f29fe1bd775d386988aac8e6fd2ea6 | readme: fix incorrect header in community integrations (#13065) | [
{
"path": "README.md",
"patch": "@@ -640,5 +640,5 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Langfuse](https://langfuse.com/docs/integrations/ollama) is an open source LLM observability platform that enables teams to collaboratively monitor, evaluate and debug AI applications.\n -... | 2025-11-13T01:00:16 |
facebook/react | e3622ee41383c84982dd9ffcb79efe24e0a0d166 | ff0b05848b514e347d93fe8145bae24a4d21dc40 | TryStatement: disallow throw inside try/catch
Modeling `throw` inside of a try/catch is awkward because it's basically a
variable reassignment and a goto together. Thankfully that is an antipattern —
using exceptions instead of control-flow — so it seems pretty reasonable to just
put a todo here and leave it. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -199,6 +199,19 @@ function lowerStatement(\n case \"ThrowStatement\": {\n const stmt = stmtPath as NodePath<t.ThrowStatement>;\n const value = lowerExpressionToTemporary(builder, stmt.get(\"argument\"))... | 2023-09-07T23:32:54 |
golang/go | a9357490919feed070e952ebc681b1a7af30aac2 | 58834c3ee08ea85b764c7cc3318ce7a68ea92cbd | runtime: make TestSpuriousWakeupsNeverHangSemasleep more robust
This change modifies this test (which involves an arbitrary timeout) to
be a little less flaky by double-checking that our subprocess program
completed even if the ticker fires and we've exceeded our timeout. The
logic behind this change is that the testi... | [
{
"path": "src/runtime/semasleep_test.go",
"patch": "@@ -91,10 +91,31 @@ func TestSpuriousWakeupsNeverHangSemasleep(t *testing.T) {\n \t// pthread_cond_timedwait_relative_np.\n \tticker := time.NewTicker(200 * time.Millisecond)\n \tdefer ticker.Stop()\n+\n+\tcheckDoneErr := func(err error) {\n+\t\tif err !=... | 2025-02-11T17:56:21 |
ollama/ollama | 8224cd9063f29fe1bd775d386988aac8e6fd2ea6 | 6286d9a3a549c600896a4a7029983a09a8488b56 | ci: fix win vulkan (#13062) | [
{
"path": ".github/workflows/release.yaml",
"patch": "@@ -192,7 +192,7 @@ jobs:\n Enter-VsDevShell -VsInstallPath 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise' -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -no_logo'\n cmake --preset \"${{ matrix.preset }}\" ${{ mat... | 2025-11-12T18:32:24 |
electron/electron | 7e8607fd7a3dac522fce600a3e5fd03bda64efff | 6f77e638046e2950e55eb1fad017bd9d7917a96c | ci: fix appveyor x64 tests (#35406)
* ci: fix appveyor x64 tests
* extract builtins-pgo to correct directory
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "appveyor.yml",
"patch": "@@ -190,6 +190,7 @@ for:\n - python %LOCAL_GOMA_DIR%\\goma_ctl.py stat\n - python3 electron/build/profile_toolchain.py --output-json=out/Default/windows_toolchain_profile.json\n - 7z a node_headers.zip out\\Default\\gen\\node_headers\n+ - 7z a builtins-pgo.... | 2022-08-25T01:11:44 |
huggingface/transformers | ca960f0cc0d2c2549b0f1834a51fa91230e50134 | adc2f16bf1824f7b57c790b4cf3bc48f95ecec69 | Remove `cache_position` in more models (2) (#44602)
* bert and the likes
* NO COPIED FROM IN MODULAR IT IS AUTOMATIC
* more more
* idefics
* more
* t5 and the likes
* fix and simplify the t5s
* fix random test
* review comments
* those got added in between but were previously removed
* this random signature ... | [
{
"path": "docs/source/en/model_doc/pp_ocrv5_server_det.md",
"patch": "@@ -13,7 +13,7 @@ specific language governing permissions and limitations under the License.\n rendered properly in your Markdown viewer.\n \n -->\n-*This model was released on 2025-5-20 and added to Hugging Face Transformers on 2026-03-... | 2026-03-12T22:38:12 |
facebook/react | 0977115440b53ca505a62e793ab3ec44355f69aa | 20203cd889328ea3792febd2bfda77f2cfb881d1 | TryStatement: maybe-throw terminal for per-instruction throw points
Adds a "maybe-throw" terminal which represents the possibility that the block
may or may not throw, and can either continue forward or exit to an exception
handler (`catch`). Also updates HIRBuilder to track the current mode, and when
inside a try... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts",
"patch": "@@ -279,7 +279,8 @@ export type Terminal =\n | TernaryTerminal\n | OptionalTerminal\n | LabelTerminal\n- | SequenceTerminal;\n+ | SequenceTerminal\n+ | MaybeThrowTerminal;\n \n function _staticInvariantTerminalHasLoca... | 2023-09-07T21:22:28 |
vercel/next.js | b5b2a6c14b7914bb48b026c2ba95c083aa2faa05 | 323ec0aea74ec517710fde4e12eb50ef8c8d2357 | Fix incorrect route param (#79795)
In the example under the "Generated Metadata" section of the page, the
route is defined as `/app/blog/[slug]/page.tsx`, but the Props type uses
`id` instead of `slug`. This fixes the mismatch to reflect the actual
dynamic route segment
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "docs/01-app/01-getting-started/13-metadata-and-og-images.mdx",
"patch": "@@ -72,7 +72,7 @@ You can use [`generateMetadata`](/docs/app/api-reference/functions/generate-meta\n import type { Metadata, ResolvingMetadata } from 'next'\n \n type Props = {\n- params: Promise<{ id: string }>\n+ params:... | 2025-05-30T11:02:41 |
golang/go | 58834c3ee08ea85b764c7cc3318ce7a68ea92cbd | b574590c36b7ede1492239db2d55c35e8818c7a7 | cmd/go: initialize req.Header when loading git credential
Fixes #71604
Change-Id: I3d733a50b4451dfb571aba91a28387ba9e0614dc
Reviewed-on: https://go-review.googlesource.com/c/go/+/647615
Reviewed-by: Michael Matloob <matloob@golang.org>
Reviewed-by: Sam Thanawalla <samthanawalla@google.com>
LUCI-TryBot-Result: Go LUCI... | [
{
"path": "src/cmd/go/internal/auth/auth.go",
"patch": "@@ -128,7 +128,8 @@ func runGoAuth(client *http.Client, res *http.Response, url string) {\n \t// If no GOAUTH command provided a credential for the given url\n \t// and an error occurred, log the error.\n \tif cfg.BuildX && url != \"\" {\n-\t\tif ok :=... | 2025-02-07T11:42:26 |
electron/electron | 6f77e638046e2950e55eb1fad017bd9d7917a96c | 07c3e62d68f3eea396a43070d7f365d3d85de257 | ci: fixup doc-only-change on Windows (#35431) | [
{
"path": "appveyor.yml",
"patch": "@@ -64,11 +64,11 @@ for:\n build_script:\n - ps: |\n node script/yarn.js install --frozen-lockfile\n- $result = node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER --prBranch=$env:APPVEYOR_REPO_BRANCH\n- Write-Output $... | 2022-08-24T21:39:56 |
huggingface/transformers | adc2f16bf1824f7b57c790b4cf3bc48f95ecec69 | 745341d8a27e6160caf1a18cdd3e81d876a4a3ad | fix: cast to proper dtype in EmbeddingParallel (#44612)
Co-authored-by: Ferdinand Mom <47445085+3outeille@users.noreply.github.com> | [
{
"path": "src/transformers/integrations/tensor_parallel.py",
"patch": "@@ -967,7 +967,7 @@ def _prepare_output_fn(self, mod, outputs, device_mesh):\n input_mask = mod._input_mask\n # Use multiplication instead of in-place assignment to preserve gradients\n mask_expanded ... | 2026-03-12T20:45:17 |
facebook/react | ee7f9c9351f8902e07ceacf4234ef75e7e4ecd73 | b9be4537c2459f8fc0312b796570003620bc8600 | useId: Remove unnecessary try/finally blocks (#27340)
To generate IDs for useId, we modify a context variable whenever
multiple siblings are rendered, or when a component includes a useId
hook.
When this happens, we must ensure that the context is reset properly on
unwind if something errors or suspends. When I ... | [
{
"path": "packages/react-server/src/ReactFizzServer.js",
"patch": "@@ -1021,12 +1021,13 @@ function renderIndeterminateComponent(\n const prevTreeContext = task.treeContext;\n const totalChildren = 1;\n const index = 0;\n+ // Modify the id context. Because we'll need to reset this if... | 2023-09-06T20:30:29 |
vercel/next.js | 323ec0aea74ec517710fde4e12eb50ef8c8d2357 | 0b5196f4d9bdd70789db4b4cf5723a3040ab4c0c | docs: fix incorrect usage of Promise in page params example (#79804)
The documentation incorrectly used `params: Promise<{ slug: string }>`
in an example and attempted to use `await` in a non-async function.
This commit updates the example to reflect the correct usage:
- `params` should be a synchronous object: `{ s... | [
{
"path": "docs/01-app/01-getting-started/03-layouts-and-pages.mdx",
"patch": "@@ -214,7 +214,7 @@ If you were to combine the two layouts above, the root layout (`app/layout.js`)\n To create a dynamic segment, wrap the segment (folder) name in square brackets: `[segmentName]`. For example, in the `app/blog/... | 2025-05-30T11:01:49 |
golang/go | b574590c36b7ede1492239db2d55c35e8818c7a7 | d9cc4944ce3f36fc8fd1c63f35c206b308a3503f | cmd/go: document -modfile and other flags for 'go tool'
Mention -modfile, -C, -overlay, and -modcacherw in the 'go tool'
documentation. We let a reference to 'go help build' give a pointer to
more detailed information.
The -modfile flag in particular is newly useful with the Go 1.24 support
for user-defined tools wit... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1953,6 +1953,13 @@\n // The -n flag causes tool to print the command that would be\n // executed but not execute it.\n //\n+// The -modfile=file.mod build flag causes tool to use an alternate file\n+// instead of the go.mod in the module root directory.\n+//\... | 2025-02-11T17:59:54 |
electron/electron | 07c3e62d68f3eea396a43070d7f365d3d85de257 | e1459f4d50e4ee0ee9b4e8fb0bba032b8499bf97 | build: fix export patches to work when source directory does not exist (#35432) | [
{
"path": "script/lib/git.py",
"patch": "@@ -238,6 +238,11 @@ def to_utf8(patch):\n \n \n def export_patches(repo, out_dir, patch_range=None, dry_run=False):\n+ if not os.path.exists(repo):\n+ sys.stderr.write(\n+ \"Skipping patches in {} because it does not exist.\\n\".format(repo)\n+ )\n+ r... | 2022-08-24T21:37:11 |
facebook/react | 59504e1cb49733d00e4d1613cfd712c5d29c7bfb | a93aa8f3228c32b0a03a8efd2336e15c2a1e10a2 | [hir] Traverse function to capture deps, not just body node
Technically there is a body node created for implicit return expression in a
arrow function, so the existing logic should've worked fine. But there seems to
be a Babel bug, so let's work around it by traversing the function.
Added a test case that captur... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -3058,7 +3058,7 @@ function gatherCapturedDeps(\n }\n }\n \n- fn.get(\"body\").traverse({\n+ fn.traverse({\n Expression(path) {\n visit(path);\n },",
"additions": 1,
"deletions": 1,
"l... | 2023-09-06T13:58:04 |
vercel/next.js | a0993d90c280690e83a2a1bc7c292e1187429fe8 | 22bf07a4e093d967c6dc3f857ab45964095ae12e | fix: Revert bugfix for conflicting assets (#79941)
### What?
Revert https://github.com/vercel/next.js/pull/78011
### Why?
Because it caused a regression like
https://github.com/vercel/next.js/issues/79938
### How?
Closes https://github.com/vercel/next.js/issues/79938 | [
{
"path": "packages/next/src/build/webpack/plugins/flight-manifest-plugin.ts",
"patch": "@@ -223,7 +223,7 @@ export class ClientReferenceManifestPlugin {\n }\n \n apply(compiler: webpack.Compiler) {\n- compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => {\n+ compiler.hooks.compilation... | 2025-05-30T01:49:04 |
golang/go | 30f515898c9852f0529fe42b46c8b89d00e14949 | b941d2b6d8bd9663abec7761de366b09a2be7445 | make.bat,race.bat: simplify --dist-tool handling
make.bat accepts the --dist-tool flag on multiple flag positions
and also allows omitting the trailing dash. Doing so adds complexity
and is not aligned with the make.bash and make.rc behavior. Remove that
flexibility to simplify the code and make it more consistent. Th... | [
{
"path": "src/make.bat",
"patch": "@@ -101,14 +101,14 @@ call .\\env.bat\n del env.bat\r\n if x%vflag==x-v echo.\r\n \r\n-if x%1==x-dist-tool goto copydist\r\n-if x%2==x-dist-tool goto copydist\r\n-if x%3==x-dist-tool goto copydist\r\n-if x%4==x-dist-tool goto copydist\r\n-if x%1==x--dist-tool goto copydis... | 2025-02-11T18:23:11 |
electron/electron | 3ce35f224efa3a6e9bfc9b642816961b8691491b | 0ff6508f5bffd84829749c97c7346fc2fc776563 | fix: add restore event for minimized maximization (#35342) | [
{
"path": "shell/browser/native_window_views_win.cc",
"patch": "@@ -413,6 +413,8 @@ void NativeWindowViews::HandleSizeEvent(WPARAM w_param, LPARAM l_param) {\n // multiple times for one resize because of the SetWindowPlacement call.\n if (w_param == SIZE_MAXIMIZED &&\n last_window_stat... | 2022-08-23T01:32:42 |
facebook/react | b9be4537c2459f8fc0312b796570003620bc8600 | 2c2bdd0ffe54df60201ee93b29de5cb7b93ff029 | [Flight] provide property descriptors for client references (#27328)
Client reference proxy should implement getOwnPropertyDescriptor. One
practical place where this shows up is when consuming CJS module.exports
in ESM modules. Node creates named exports it statically infers from the
underlying source but it only s... | [
{
"path": "fixtures/flight/src/App.js",
"patch": "@@ -10,6 +10,10 @@ const Counter3 = await(AsyncModule);\n import ShowMore from './ShowMore.js';\n import Button from './Button.js';\n import Form from './Form.js';\n+import {Dynamic} from './Dynamic.js';\n+import {Client} from './Client.js';\n+\n+import {Not... | 2023-09-05T20:45:16 |
vercel/next.js | f639f2a9a7c544e33933b289913a004f86e5fbf8 | f2b0f9d26e963c9fed070a53515c5a4024fea1e6 | [release-new] fix: slack notification only if is a publish workflow (#79933)
The Slack notification workflow didn't have if condition, so it was
notified on every `build_and_deploy` job.
x-ref: [slack
thread](https://vercel.slack.com/archives/C0668R2391V/p1748475689878939) | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -606,6 +606,7 @@ jobs:\n # New release process\n - name: Publish to NPM\n id: changesets\n+ # TODO: Change to IS_RELEASE condition when new release becomes stable.\n if: ${{ env.__NEW_RELEASE == 'true' }}\n ... | 2025-05-29T19:27:43 |
huggingface/transformers | e2d4ac03709f3670133c79196814205ce1531faa | 96a33c5a8ffb66b2b3fac71c48bcbabd519f31e6 | Remove many output_attentions and other traced outputs on 100+ models (#43590)
* first batch, let's see
* propagate changes
* fixup broken tests
* simplify more models
* hack
* fix attentions
* I'm bullied by the new fix-repo
* this one too
* fix-repo
* ...fix-repo?
* change up
* propagate changes again
*... | [
{
"path": "src/transformers/backbone_utils.py",
"patch": "@@ -15,6 +15,7 @@\n \"\"\"Collection of utils to be used by backbones and their components.\"\"\"\n \n import enum\n+import functools\n import inspect\n \n from huggingface_hub import repo_exists\n@@ -156,6 +157,27 @@ def to_dict(self):\n ret... | 2026-03-12T19:08:37 |
golang/go | 8c6fec6d25e7c83780d8b020e3e4f81051645d65 | 34e8541d24b5b6624ccc252125f832c1ea0bfa00 | runtime: update HACKING.md with execution traces and debuglog
Change-Id: Iedd3c6f292ad76f57c6c04beafd655e2e4d83043
Reviewed-on: https://go-review.googlesource.com/c/go/+/646017
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-... | [
{
"path": "src/runtime/HACKING.md",
"patch": "@@ -330,3 +330,69 @@ transitive calls) to prevent stack growth.\n The conversion from pointer to uintptr must appear in the argument list of any\n call to this function. This directive is used for some low-level system call\n implementations.\n+\n+Execution trac... | 2025-02-01T05:51:33 |
ollama/ollama | 3a9e8e9fd42f32711b8aeea355e3ed5e155d49b2 | cb1cb06478af1a973092b163dddee2a256c1d2f3 | vulkan: temporary cary of vulkan fixes (#12971)
This should be reverted once we update ggml past b6897 | [
{
"path": "llama/patches/0029-vulkan-Call-ggml_vk_buffer_write_2d-from-ggml_vk_buf.patch",
"patch": "@@ -0,0 +1,32 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Jeff Bolz <jbolz@nvidia.com>\n+Date: Wed, 29 Oct 2025 03:53:04 -0500\n+Subject: [PATCH] vulkan: Call ggml_vk_... | 2025-11-12T16:31:40 |
electron/electron | 33325e3608bdc4f45798817643ff9c94279656d6 | 221bb513265128e004a0469f3b2b1c89387ba56f | fix: undefined details.requestingUrl from session.setPermissionCheckHandler (#35281)
fix: undefined details.requestingUrl from setPermissionCheckHandler | [
{
"path": "shell/browser/electron_permission_manager.cc",
"patch": "@@ -339,9 +339,16 @@ blink::mojom::PermissionStatus\n ElectronPermissionManager::GetPermissionStatusForCurrentDocument(\n blink::PermissionType permission,\n content::RenderFrameHost* render_frame_host) {\n- return GetPermissionSta... | 2022-08-23T01:25:57 |
facebook/react | 9d6170ab98cdd811ccc7cdf1b53d8520aa7f5c15 | 6a71868d4c159c8089f0c70f17bfcf2abc68173d | Update snap fixture
Missed this in my last PR | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/for-of-mutate.expect.md",
"patch": "@@ -2,15 +2,13 @@\n ## Input\n \n ```javascript\n-import { makeObject_Primitives, mutateObject, Stringify } from \"shared-runtime\";\n+import { makeObject_Primitives, mutate, Stringify ... | 2023-09-05T19:07:37 |
vercel/next.js | f2b0f9d26e963c9fed070a53515c5a4024fea1e6 | 52c5aed0d93ef7de5451a192bc8fb3b3c73f7588 | fix(next/font): allow custom font-family in declarations (#76274)
<!-- 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:
## Fo... | [
{
"path": "packages/font/src/local/loader.test.ts",
"patch": "@@ -229,5 +229,36 @@ describe('next/font/local loader', () => {\n \"\n `)\n })\n+\n+ test('Custom font-family in declarations', async () => {\n+ const { css } = await nextFontLocalFontLoader({\n+ functionName: '',... | 2025-05-29T14:20:10 |
huggingface/transformers | 96a33c5a8ffb66b2b3fac71c48bcbabd519f31e6 | 88bd2fdf26ec9d99db0622268be613fa23cfcc10 | [Model] Add PP-OCRV5_server_det Model Support (#43274)
* Feat: Add PP-OCRV5_server_det Model Support
* Fix fix diff
* Fix fix doc and forward for check_repo
* fix format
* Fix for pass CI
* fix
* fix module init_weight and rename module
* fix use numpy and pil to replace cv2, refactor model
* fix
* fix
* upd... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1268,6 +1268,8 @@\n title: PP-DocLayoutV2\n - local: model_doc/pp_doclayout_v3\n title: PP-DocLayoutV3\n+ - local: model_doc/pp_ocrv5_server_det\n+ title: PP-OCRv5_server_det\n - local: model_doc/qwen2_5_omni\n ... | 2026-03-12T18:41:28 |
ollama/ollama | 2d5e066c8cb2f54f398243dcb922e615ac94a509 | 15968714bd50970264bf44d7bfd72f0076919ed2 | docs: fix openapi.yaml warnings, rename api.md to api-reference.md (#12904) | [
{
"path": "docs/openapi.yaml",
"patch": "@@ -2,12 +2,15 @@ openapi: 3.1.0\n info:\n title: Ollama API\n version: 0.1.0\n+ license:\n+ name: MIT\n+ url: https://opensource.org/licenses/MIT\n description: |\n OpenAPI specification for the Ollama HTTP API\n-\n servers:\n - url: http://localh... | 2025-11-11T23:39:35 |
golang/go | 49eba8b15bcfc07eb272f23f1b6810d37e6fe342 | 659b895067400e1db64c57712729623970149e99 | internal/trace: interpret string ID arguments for experimental events
Currently one of the reasons experimental events are tricky to use is
because:
- There's no way to take advantage of the existing infrastructure, like
strings and stacks, and
- There's no way to attach arbitrary data to an event (except through
... | [
{
"path": "src/cmd/trace/gen.go",
"patch": "@@ -282,11 +282,11 @@ func (g *globalMetricGenerator) GlobalMetric(ctx *traceContext, ev *trace.Event)\n \tm := ev.Metric()\n \tswitch m.Name {\n \tcase \"/memory/classes/heap/objects:bytes\":\n-\t\tctx.HeapAlloc(ctx.elapsed(ev.Time()), m.Value.Uint64())\n+\t\tctx... | 2025-01-28T20:54:34 |
facebook/react | a374287feae1b37f19fb43d428463b153d552b20 | a27df56a5cc54b77a9206d1344b457af4ec64b30 | React DevTools 4.28.2 -> 4.28.3 (#27337)
This is a patch version to fix some bugs in a previous internal release.
I am expecting this one also to be internal-only, need to make sure that
extension is stable in Chrome. Some changes and improvements are
expected for Firefox, though, before going public.
* refactor... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"4.28.2\",\n+ \"version\": \"4.28.3\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.j... | 2023-09-05T17:58:27 |
electron/electron | 9b2b1998b8386aa324ed617ed2cc23df742eb767 | fc2e6bd0ed86c9e1f26fcf5f973f508474e469ea | fix: ensure chrome colors are initialized (#35034)
* fix: ensure chrome colors are initialized
* build: fix linking on windows
* build: fix linking on windows
* build: add needed files to chromium_src/BUILD
Co-authored-by: VerteDinde <keeleymhammond@gmail.com> | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -55,6 +55,14 @@ static_library(\"chrome\") {\n \"//chrome/browser/process_singleton.h\",\n \"//chrome/browser/process_singleton_internal.cc\",\n \"//chrome/browser/process_singleton_internal.h\",\n+ \"//chrome/browser/themes/browser_theme_pack.c... | 2022-08-22T14:38:45 |
vercel/next.js | 4ce288172c1b91b3746a817dd27f85c10bd9a199 | b73644493a61901c9f3e20a99bef5a9b08de07b9 | Turbopack: persist and compare errors and panics (#77935)
### What?
Allow errors and panics to be serialized and store them in the task output.
Compare errors when setting them to avoid unnecessary invalidations when tasks error again. | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -564,36 +564,38 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n \n if let Some(output) = get!(task, Output) {\n let result = match output {\n- OutputValue::Cell(cell) => Some(Ok(Ok(R... | 2025-05-29T12:25:52 |
huggingface/transformers | 88bd2fdf26ec9d99db0622268be613fa23cfcc10 | 45d8d93659fe08cb0530f37a3a519d1cef663687 | fix: raise error if mm_token_type_ids not supplied (#44433)
* fix: raise error on missing arg mm_token_type_ids
* fix tests | [
{
"path": "src/transformers/models/ernie4_5_vl_moe/modeling_ernie4_5_vl_moe.py",
"patch": "@@ -1353,11 +1353,14 @@ def compute_3d_position_ids(\n mm_token_type_ids: torch.IntTensor | None = None,\n ) -> torch.Tensor | None:\n past_key_values_length = 0 if past_key_values is None else pas... | 2026-03-12T17:12:46 |
golang/go | e9eb88ae7291bf9f1b05e8e4860474c734c5448d | 450f3f608d409e2b3d76af071ec726efacbdd17b | {all,clean,make,race,run}.bat: simplify error handling
The bat files can use "if" + parentheses to make it easier to
understand how the if-case is handled rather than the more cryptic
"if" + "goto".
While here, replace some "goto"s with direct "exit" calls.
Change-Id: I20e1804439b5088f8f1e5cbf8676f3d58560109d
Review... | [
{
"path": "src/all.bat",
"patch": "@@ -6,15 +6,11 @@\n \r\n setlocal\r\n \r\n-if exist make.bat goto ok\r\n-echo all.bat must be run from go\\src\r\n-exit /b 1\r\n-:ok\r\n+if not exist make.bat (\r\n+ echo all.bat must be run from go\\src\r\n+ exit /b 1\r\n+)\r\n \r\n-call .\\make.bat --no-banner || g... | 2025-02-11T08:17:08 |
electron/electron | 19baea4bc2be42ac0568bacab9e7365bb3f8ce26 | 9b787d30f489fca0552bdb1f134b7b6097c7dff6 | chore: update process singleton patch (#35376)
* chore: update process singleton patch
* fix: windows compilation error
* chore: remove outdated comment in patch | [
{
"path": "patches/chromium/feat_add_data_parameter_to_processsingleton.patch",
"patch": "@@ -13,7 +13,7 @@ app.requestSingleInstanceLock API so that users can pass in a JSON\n object for the second instance to send to the first instance.\n \n diff --git a/chrome/browser/process_singleton.h b/chrome/browser... | 2022-08-19T22:45:58 |
facebook/react | a27df56a5cc54b77a9206d1344b457af4ec64b30 | 9b4f847d93aa302c953543ae0631023c06408ad3 | refactor[devtools/extension]: handle ports disconnection, instead of frequent reconnection (#27336)
- Instead of reconnecting ports from devtools page and proxy content
script, now handling their disconnection properly
- `proxy.js` is now dynamically registered as a content script, which
loaded for each page. This ... | [
{
"path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js",
"patch": "@@ -2,26 +2,46 @@\n \n import {IS_FIREFOX} from '../utils';\n \n-async function dynamicallyInjectContentScripts() {\n- const contentScriptsToInject = [\n- {\n- id: '@react-devtools/hook',\n- ... | 2023-09-05T17:41:39 |
vercel/next.js | b73644493a61901c9f3e20a99bef5a9b08de07b9 | ad898de735c393d98960a68c8d9eaeee32206c57 | [dev-overlay] Fix highlighted line cut off on scroll (#79930)
Tiny PR to fix the error highlight not spanning full width of the
container.
https://github.com/user-attachments/assets/595b7184-e325-4b24-afdb-7683c04f0999
---
Closes NDX-1025 | [
{
"path": "packages/next/src/client/components/react-dev-overlay/ui/components/code-frame/code-frame.tsx",
"patch": "@@ -62,40 +62,42 @@ export function CodeFrame({ stackFrame, codeFrame }: CodeFrameProps) {\n </p>\n </div>\n <pre className=\"code-frame-pre\">\n- {parsedLineStates... | 2025-05-29T11:30:10 |
huggingface/transformers | 45d8d93659fe08cb0530f37a3a519d1cef663687 | e5a861d381bf65a146ce487c3d3c0fca919ef316 | Fix output capturing for Backbones (#44638)
* fix
* remove default in init | [
{
"path": "src/transformers/backbone_utils.py",
"patch": "@@ -20,6 +20,7 @@\n from huggingface_hub import repo_exists\n \n from .utils import logging\n+from .utils.output_capturing import maybe_install_capturing_hooks\n \n \n logger = logging.get_logger(__name__)\n@@ -181,6 +182,18 @@ def __init__(self, *ar... | 2026-03-12T17:11:30 |
golang/go | 450f3f608d409e2b3d76af071ec726efacbdd17b | dcbdc1a2f7368ad8a9193e969cc76c7ffd2f7685 | net/http/httptest: match net/http ContentLength behavior for http.NoBody
Fixes #68476
Change-Id: I05122e5ec5e6b290eec93f3db444fcf1de19c030
Reviewed-on: https://go-review.googlesource.com/c/go/+/599815
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <d... | [
{
"path": "src/net/http/httptest/httptest.go",
"patch": "@@ -34,9 +34,9 @@ func NewRequest(method, target string, body io.Reader) *http.Request {\n //\n // An empty method means \"GET\".\n //\n-// The provided body may be nil. If the body is of type *bytes.Reader,\n-// *strings.Reader, or *bytes.Buffer, the... | 2024-07-19T22:28:54 |
ollama/ollama | 6df42088367f7b5587478d610e8d62466b6afd1d | a42f826acb5f984df56ef26a8f0a303791467fd0 | docs: fix metal gpu section header (#13045) | [
{
"path": "docs/gpu.mdx",
"patch": "@@ -121,6 +121,6 @@ In some Linux distributions, SELinux can prevent containers from\n accessing the AMD GPU devices. On the host system you can run\n `sudo setsebool container_use_devices=1` to allow containers to use devices.\n \n-### Metal (Apple GPUs)\n+## Metal (Appl... | 2025-11-11T05:51:22 |
facebook/react | 9b4f847d93aa302c953543ae0631023c06408ad3 | 7022e8d6a3222c97d287dfa0f2361acc8a30683a | refactor[devtools/extension]: migrate from using setInterval for polling if react is loaded (#27323)
`chrome.devtools.inspectedWindow.eval` is asynchronous, so using it in
`setInterval` is a mistake.
Sometimes this results into mounting React DevTools twice, and user sees
errors about duplicated fibers in store.
... | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -29,7 +29,23 @@ import registerEventsLogger from './registerEventsLogger';\n import getProfilingFlags from './getProfilingFlags';\n import './requestAnimationFramePolyfill';\n \n-function executeIfReactHasLoaded(callback) {\n+// ... | 2023-09-01T15:23:04 |
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.