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 | 1dfe994fe9e87e17b141a3f06c6a88632821020a | e3f7816f0eae375d261e35d0b541a61c463c9111 | spec: use Unicode terminology consistently
- refer to character "categories" rather than "classes" per the
definitions in the Unicode standard
- use "uppercase", "lowercase" (one word) instead of "upper case"
or "upper-case", matching the spelling in the Unicode standard
- clarify that that the blank character "_"... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of May 11, 2022\",\n+\t\"Subtitle\": \"Version of May 12, 2022\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -53,7 +53,7 @@ <h2 id=\"Notation\">Notation</h... | 2022-05-12T01:22:51 |
electron/electron | c45ca254e3bf79e771e07509cae7174129bf9908 | 143d7ab98fc8a27dcaf270acaf4d2b9706b6da6e | Add instruction for debugging main process in VSCode
I hope you don't mind me putting the VSCode part before `node-inspector`, because VSCode seems easier to setup, and VSCode could inspect `process` without crashing. | [
{
"path": "docs/tutorial/debugging-main-process.md",
"patch": "@@ -17,6 +17,41 @@ messages on the `port`. The default `port` is `5858`.\n \n Like `--debug` but pauses the script on the first line.\n \n+## Use VSCode for Debugging\n+\n+### 1. Open an Electron project in VSCode.\n+\n+```bash\n+$ git clone git... | 2016-09-20T05:43:05 |
nodejs/node | d06efafe6b5885e14441409a21eab810cdae754b | d502b83cbdde7ecc7efb3c87503817617d7aacd1 | src: explicitly allocate backing stores for v8 stat buffers
This fixes flaky tests that crashed because the allocations ended
up at positions of previously allocated `ArrayBuffer`s that were
still in the backing store table. In particular, there was a race
condition window between destroying a Worker thread’s `Environ... | [
{
"path": "src/env-inl.h",
"patch": "@@ -543,32 +543,35 @@ inline double Environment::get_default_trigger_async_id() {\n \n inline double* Environment::heap_statistics_buffer() const {\n CHECK_NOT_NULL(heap_statistics_buffer_);\n- return heap_statistics_buffer_;\n+ return static_cast<double*>(heap_stati... | 2019-12-13T19:32:44 |
huggingface/transformers | c55f65056becad6df5f7eef7ce74ac0811fdfac6 | 21950930a657cdc446188d38b6979b90513bab41 | [Model] Add PP-OCRv5_server_rec and PP-OCRv5_mobile_rec models Support (#44808)
* init
* fix
* add image processor test
* add mobile_rec
* fix
* fix
* fix code style
* add mobile_rec
* fix
* fix toctree
* update
* cleanup inits and docs etc
* dang
* make separate auto model for text recognition
--------... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1276,8 +1276,12 @@\n title: PP-DocLayoutV3\n - local: model_doc/pp_ocrv5_mobile_det\n title: PP-OCRv5_mobile_det\n+ - local: model_doc/pp_ocrv5_mobile_rec\n+ title: PP-OCRv5_mobile_rec\n - local: model_doc/pp_ocrv... | 2026-03-18T20:11:28 |
rust-lang/rust | 79e3c7df0b63dcce4c17c7133564882672c6de34 | de3578a477d19a42f2c27294f65c2dc2a16c4af0 | fix some typos | [
{
"path": "src/doc/rustc-dev-guide/src/building/suggested.md",
"patch": "@@ -162,7 +162,7 @@ create a `.vim/coc-settings.json`. The settings can be edited with\n [`src/etc/rust_analyzer_settings.json`].\n \n Another way is without a plugin, and creating your own logic in your\n-configuration. The following ... | 2025-07-21T08:53:11 |
golang/go | 0d8345df6637b0fbd595eb8f7cb61be5ebeee314 | 2bea43b0e7f3e636ffc8239f9d3fccdd5d763c8b | net/netip: skip some TestAddrStringAllocs tests on noopt builders
CL 403914 introduced TestAddrStringAllocs which checks that there is
only 1 alloc in Addr.String for v4-in-v6 addresses. This requires
optimizations to be enabled, otherwise there are 2 allocs. Skip the
ipv4-in-ipv6 sub-tests on noopt builders to fix fa... | [
{
"path": "src/net/netip/netip_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"flag\"\n \t\"fmt\"\n \t\"internal/intern\"\n+\t\"internal/testenv\"\n \t\"net\"\n \t. \"net/netip\"\n \t\"reflect\"\n@@ -1907,8 +1908,13 @@ func TestAddrStringAllocs(t *testing.T) {\n \t\t{\"ipv4-in-ipv6\", MustParseAddr(\":... | 2022-05-12T07:30:54 |
electron/electron | 456f102cdc159f2b29837dbbf9124feef8c23b21 | ba98109d33b41496c722b22030488000f3e00398 | Fix k typo | [
{
"path": "atom/browser/api/atom_api_system_preferences_win.cc",
"patch": "@@ -12,7 +12,7 @@ namespace atom {\n \n namespace {\n \n-const wchar_t kSystemPreferencestWindowClass[] =\n+const wchar_t kSystemPreferencesWindowClass[] =\n L\"Electron_SystemPreferencesHostWindow\";\n \n } // namespace\n@@ -44,7... | 2016-09-19T16:42:41 |
nodejs/node | 1807c3eadffb6fb42e4d4c482d265dcef1761535 | 8e58c7557bd4ebec5240810c18f41d057534f3b2 | build: fix missing x64 arch suffix in binary tar name
PR-URL: https://github.com/nodejs/node/pull/30877
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "Makefile",
"patch": "@@ -842,6 +842,7 @@ endif\n endif\n endif\n endif\n+endif\n ifeq ($(DESTCPU),x64)\n ARCH=x64\n else\n@@ -871,7 +872,6 @@ endif\n endif\n endif\n endif\n-endif\n \n # node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').\n # pass the proper v8 arch name to $V8_A... | 2019-12-10T09:17:09 |
huggingface/transformers | 21950930a657cdc446188d38b6979b90513bab41 | 2513237cbee84bae381c56c672b95b0a221ba51b | Add `Jina-Embeddings-V3` Model (#44251)
* Added Model Documentation.
* Added conversion_mapping weight renamings
* Added Auto Mappings.
* init
* Modular jina_embeddings_v3
* modular -> modeling + config
* __init__.py
* Created folder for tests
* Added documentation for the jina-embeddings-v3 Model
* Tests
* ... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -632,6 +632,8 @@\n title: Jamba\n - local: model_doc/jetmoe\n title: JetMoe\n+ - local: model_doc/jina_embeddings_v3\n+ title: jina_embeddings_v3\n - local: model_doc/led\n title: LED\n - local: model... | 2026-03-18T19:05:49 |
golang/go | 2bea43b0e7f3e636ffc8239f9d3fccdd5d763c8b | c01feba15de402dce666e4f9bf14a06fc64aa97d | spec: state that variable names must be unique in short var decls
Fixes #45652.
Change-Id: I5e1434480c12815369a6ce204f3729eb63139125
Reviewed-on: https://go-review.googlesource.com/c/go/+/405757
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Matthew Dempsky <mdempsky@google.com> | [
{
"path": "doc/go_spec.html",
"patch": "@@ -2761,7 +2761,7 @@ <h3 id=\"Short_variable_declarations\">Short variable declarations</h3>\n with initializer expressions but no types:\n </p>\n \n-<pre class=\"grammar\">\n+<pre class=\"ebnf\">\n \"var\" IdentifierList = ExpressionList .\n </pre>\n \n@@ -2780,12 +... | 2022-05-11T23:21:45 |
vercel/next.js | 5eea161d8bbca2434aeb84602ac1edb9e02571ff | 03c3c004a1e4123474147a3542cbf4421f9b8769 | docs: Add docs on CSP and nonce generation (#54601)
There's been some confusion on the correct way to add a `nonce`, so took the opportunity here to:
- Add a new docs page for Content Security Policy
- Explained how to generate a `nonce` with Middleware
- Showed how to consume the `nonce` in a route with `headers`
- ... | [
{
"path": "docs/02-app/01-building-your-application/07-configuring/15-content-security-policy.mdx",
"patch": "@@ -0,0 +1,197 @@\n+---\n+title: Content Security Policy\n+description: Learn how to set a Content Security Policy (CSP) for your Next.js application.\n+related:\n+ links:\n+ - app/building-your... | 2023-09-01T22:13:49 |
huggingface/transformers | 2513237cbee84bae381c56c672b95b0a221ba51b | 981ca7bc26b0d5a5cf4042f0158f0caafe2e4726 | feat(ci): added a network debug report (#44636)
* feat(ci): added a network debug report
* xdist-aware for parallel runs
* fix fmt
* moved the hooks to tests/utils/test_network_logging.py
* forgot to add the new file
* use plugin approach
* rename env variables
* narrow public API
* fix the env name in circlec... | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -30,6 +30,7 @@\n # will be adjust in `CircleCIJob.to_dict`.\n \"RUN_FLAKY\": True,\n \"DISABLE_SAFETENSORS_CONVERSION\": True,\n+ \"NETWORK_DEBUG_REPORT\": True,\n }\n # Disable the use of {\"s\": None} as the output is way too lon... | 2026-03-18T18:34:50 |
nodejs/node | 8e58c7557bd4ebec5240810c18f41d057534f3b2 | e490b2ca90ce5c7232c1941483f1e0b5e6d9f7be | repl: fix autocomplete when useGlobal is false
This fixes two issues in the REPL when it is started with a new context
(useGlobal option set to `false`):
- The `primordials` object does not contain all builtins, so the
filtering based on property names from `primordials` was wrong.
- The autocompleter did not take b... | [
{
"path": "lib/repl.js",
"patch": "@@ -119,6 +119,9 @@ const { setImmediate } = require('timers');\n // Lazy-loaded.\n let processTopLevelAwait;\n \n+const globalBuiltins =\n+ new Set(vm.runInNewContext('Object.getOwnPropertyNames(globalThis)'));\n+\n const parentModule = module;\n const replMap = new Weak... | 2019-12-10T14:37:32 |
golang/go | c01feba15de402dce666e4f9bf14a06fc64aa97d | 7e11ff38160da714b3528d58021aefa42c7ed7e3 | spec: clarify "continue" statement
Taking into account the discussion and relevant feedback on a
change proposed in 2013 (see e-mail thread mentioned in issue).
Fixes #48864.
Change-Id: I811d518b7cbdf6b815695174f1da3d4251f491c3
Reviewed-on: https://go-review.googlesource.com/c/go/+/405756
Reviewed-by: Ian Lance Tayl... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -6809,7 +6809,8 @@ <h3 id=\"Continue_statements\">Continue statements</h3>\n \n <p>\n A \"continue\" statement begins the next iteration of the\n-innermost <a href=\"#For_statements\">\"for\" loop</a> at its post statement.\n+innermost enclosing <a href=\"#For_stat... | 2022-05-11T22:41:21 |
huggingface/transformers | d00640b6e60679c117bc8530a25bb917b08c8573 | 24a4dc22b986a35fa5920bb080fddea49f4299d3 | Fix unexpected `position_ids` keys when loading OwlViT models (#44508)
* Fix unexpected `position_ids` keys when loading OwlViT models
Older OwlViT checkpoints saved `position_ids` as buffers in the text and
vision embedding modules. These tensors are simple integer ranges and are
now recomputed dynamically during in... | [
{
"path": "src/transformers/models/owlv2/modeling_owlv2.py",
"patch": "@@ -539,6 +539,10 @@ class Owlv2PreTrainedModel(PreTrainedModel):\n \"hidden_states\": Owlv2EncoderLayer,\n \"attentions\": Owlv2Attention,\n }\n+ _keys_to_ignore_on_load_unexpected = [\n+ r\".*text_model\\.... | 2026-03-18T16:27:02 |
vercel/next.js | 469c799c00684ce36a2affd7e9e2d93016758fef | d94248418ac85eedb49c74beab7e1f07f9b6345a | fix: fixed grammar error in the code comment (#54902)
hello I tried to solve issue #54857 | [
{
"path": "examples/with-passport-and-next-connect/pages/api/user.js",
"patch": "@@ -8,7 +8,7 @@ handler\n .use(auth)\n .get((req, res) => {\n // You do not generally want to return the whole user object\n- // because it may contain sensitive field such as !!password!! Only return what needed\n+ ... | 2023-09-01T19:42:54 |
nodejs/node | 08728a1177d4d310b21097d94e33312026eb72b2 | ac1cc5c254e604db83d690a5bc858dd4082916b8 | doc: improve doc writable streams: 'finish' event
doc change for stream.md that 'finish' event should be before
writer.end
fixes: https://github.com/nodejs/node/issues/30759
PR-URL: https://github.com/nodejs/node/pull/30889
Fixes: https://github.com/nodejs/node/issues/30759
Reviewed-By: Ruben Bridgewater <ruben@brid... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -297,10 +297,10 @@ const writer = getWritableStreamSomehow();\n for (let i = 0; i < 100; i++) {\n writer.write(`hello, #${i}!\\n`);\n }\n-writer.end('This is the end\\n');\n writer.on('finish', () => {\n console.log('All writes are now complete.');\n });\n+wri... | 2019-12-10T17:47:39 |
huggingface/transformers | 24a4dc22b986a35fa5920bb080fddea49f4299d3 | b49249811a8dd483e52587b4349073e6317cea1b | Update more modular examples (#44834)
fix | [
{
"path": "examples/modular-transformers/configuration_new_model.py",
"patch": "@@ -45,7 +45,6 @@ class NewModelConfig(PreTrainedConfig):\n \"layers\": ([\"hidden_states\", \"attention_mask\"], [\"hidden_states\"]),\n \"norm\": ([\"hidden_states\"], [\"hidden_states\"]),\n }\n-\n voc... | 2026-03-18T17:11:51 |
golang/go | 7e11ff38160da714b3528d58021aefa42c7ed7e3 | 5d0400c72de968dffacc3e2004808758894ea433 | spec: correct assignment rules with respect to type parameters
Fixes #52628.
Change-Id: If4261abc25868d62f7689253d40f872692c23a4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/405755
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Robert Griesemer <gri@google.com> | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1920,7 +1920,8 @@ <h3 id=\"Assignability\">Assignability</h3>\n </li>\n <li>\n <code>V</code> and <code>T</code> have identical\n-<a href=\"#Underlying_types\">underlying types</a> and at least one of <code>V</code>\n+<a href=\"#Underlying_types\">underlying types... | 2022-05-11T22:08:38 |
vercel/next.js | ef33018a3d7e11c5de376f21637c7db969045a89 | 7e7914c7f8c04fe189fbfff0ba76da55762ebabe | fix next/headers when used in src/middleware (#54889)
This updates the check to see if a request is made in middleware to be a bit less brittle so it doesn't break if middleware is located in `/src/middleware` (`params.page` would be `/src/middleware` rather than `/middleware` in that case)
fixes https://github.com/v... | [
{
"path": "packages/next/src/server/web/adapter.ts",
"patch": "@@ -186,7 +186,9 @@ export async function adapter(\n let cookiesFromResponse\n \n // we only care to make async storage available for middleware\n- if (params.page === '/middleware') {\n+ const isMiddleware =\n+ params.page === '/middle... | 2023-09-01T18:56:51 |
nodejs/node | fb8b483c34884a60814471fc97ccc33a87589351 | 28ee032fca302b09f444c5588d50dd3be007ad2e | util: inspect (user defined) prototype properties
This is only active if the `showHidden` option is truthy.
The implementation is a trade-off between accuracy and performance.
This will miss properties such as properties added to built-in data
types.
The goal is mainly to visualize prototype getters and setters such... | [
{
"path": "doc/api/util.md",
"patch": "@@ -398,6 +398,10 @@ stream.write('With ES6');\n <!-- YAML\n added: v0.3.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/30768\n+ description: User defined prototype properties are inspected in case\n+ `showHid... | 2019-11-30T10:07:12 |
huggingface/transformers | b49249811a8dd483e52587b4349073e6317cea1b | 4ec84a022d2ba1efb2cbbdc9eb415e4190113d22 | Fix and re-run modular converter on examples (#44833)
* fix and rerun modular
* fix
* fix | [
{
"path": "examples/modular-transformers/configuration_duplicated_method.py",
"patch": "@@ -5,79 +5,18 @@\n # modular_duplicated_method.py file directly. One of our CI enforces this.\n # 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨�... | 2026-03-18T17:00:41 |
golang/go | 5d0400c72de968dffacc3e2004808758894ea433 | 900ae5b35a75e1f7bc7c8573d9480cbbfd0eee47 | spec: adjust scope of function/method type parameters
Change scope rules per the accepted proposal #52038.
Match prose for type parameters of type declarations.
Fixing the implementation is tracked by #51503.
Fixes #52038.
For #51503.
Change-Id: Iebd88a82c896b7b2e8520cd514ef6a2cc903e807
Reviewed-on: https://go-revie... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of April 19, 2022\",\n+\t\"Subtitle\": \"Version of May 11, 2022\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2158,9 +2158,8 @@ <h2 id=\"Declarations_and... | 2022-05-11T21:40:34 |
vercel/next.js | 571ce68cef4ac994bab49f62bb562fa3278b13ea | 15aac1bd454e11da6b3abc5e6e7aa1cd260c9e97 | fix(lint): webpack nmt (vercel/turbo#5848) | [
{
"path": "packages/webpack-nmt/src/index.ts",
"patch": "@@ -1,7 +1,7 @@\n-import { spawn } from \"child_process\";\n-import { join } from \"path\";\n-\n-import { Compilation, WebpackPluginInstance, Compiler } from \"webpack\";\n+import { spawn } from \"node:child_process\";\n+import { join } from \"node:pa... | 2023-09-01T18:15:25 |
huggingface/transformers | 779cd2d6923c9d264d46136e90c58f8bafade6ab | c87deb21b9a4c466291de154ff0099aaf8014439 | Fix loading issue in Sam3 (#44831)
fix loading issue | [
{
"path": "src/transformers/models/sam3_tracker_video/modeling_sam3_tracker_video.py",
"patch": "@@ -683,7 +683,7 @@ class Sam3TrackerVideoSegmentationOutput(ModelOutput):\n @auto_docstring\n class Sam3TrackerVideoPreTrainedModel(PreTrainedModel):\n config_class = Sam3TrackerVideoConfig\n- base_model... | 2026-03-18T15:36:01 |
golang/go | c14ed5b37c6cc387b29a7939cad7c7cbccd59934 | ec5bdefd0a8f4a4dc7ba8d6ab4e1cf393384d03c | Revert "net/http: close accepted connection"
This reverts CL 353714.
The change closes accepted connection also in graceful shutdown which
breaks the fix for #33313 (and apparent duplicate #36819).
The proper fix should close accepted connection only if server is closed
but not in graceful shutdown.
Updates #48642
... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -6725,28 +6725,3 @@ func testMaxBytesHandler(t *testing.T, maxSize, requestSize int64) {\n \t\tt.Errorf(\"expected echo of size %d; got %d\", handlerN, buf.Len())\n \t}\n }\n-\n-// Issue 48642: close accepted connection\n-func TestServerCloseAccepted(t *t... | 2022-05-11T23:22:45 |
vercel/next.js | 9adc7910a22623fe001d38c63653b44d953422c9 | 49a891deb59be06b666aec0c3cddf33bf3d24824 | chore: update bug report template (#54824)
### What?
Follow-up of #54724
- Removed/merged some sections
- Added placeholders to hint the user what the input should be
- Reorganized the sections in terms of importance
- Made all sections but one required (we should not ask irrelevant questions to simplify the reporti... | [
{
"path": ".github/ISSUE_TEMPLATE/1.bug_report.yml",
"patch": "@@ -5,9 +5,43 @@ body:\n - type: markdown\n attributes:\n value: |\n- *Note:* If you leave out sections, the issue might be moved to the [\"Help\" section](https://github.com/vercel/next.js/discussions/categories/help).\n- ... | 2023-09-01T17:37:17 |
huggingface/transformers | c87deb21b9a4c466291de154ff0099aaf8014439 | aa57e1cd2fd0ede5ffbc70db3f193943b8f3e720 | feat(integration): Add KubeflowCallback to enable automatic progress … (#44487)
* feat(integration): Add KubeflowCallback to enable automatic progress and metrics reporting for training jobs running on Kubeflow Trainer.
Signed-off-by: abhijeet-dhumal <abhijeetdhumal652@gmail.com>
* fix: make KubeflowCallback self-co... | [
{
"path": "docs/source/en/main_classes/callback.md",
"patch": "@@ -67,6 +67,8 @@ Here is the list of the available [`TrainerCallback`] in the library:\n \n [[autodoc]] integrations.FlyteCallback\n \n+[[autodoc]] integrations.KubeflowCallback\n+\n [[autodoc]] integrations.DVCLiveCallback\n - setup\n ",
... | 2026-03-18T14:33:24 |
golang/go | 857cda4625b31d6725fb96148da2a5fca58df2cb | d339d085c9d0cff099668d3a85ebae4e25c6afa2 | cmd/compile: convert merge to use appl. bal. trees for sharing
This CL replaces a not-very-shared linear-sized set
representation with a much more shared representation.
For the annoying test program in question, it reduces
the heap size by 95%, and the time slightly.
However, for some programs build time is longer.
... | [
{
"path": "src/cmd/compile/internal/abt/avlint32.go",
"patch": "@@ -0,0 +1,849 @@\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package abt\n+\n+import (\n+\t\"fmt\"\n+\t\"strconv\"\n+... | 2022-03-29T17:16:35 |
huggingface/transformers | 7cd2dd86ce3b2e598535f9aa1a40f79d6894f80a | 83a6c5b577cafa607d59e78af4de86592b9903ee | support xxxFast alias in v5 tokenizers (#44766)
* support xxxFast alias in v5 tokenizers
* rm wrong file
* test | [
{
"path": "src/transformers/models/auto/tokenization_auto.py",
"patch": "@@ -16,6 +16,7 @@\n import importlib\n import json\n import os\n+import sys\n from collections import OrderedDict\n from typing import Any\n \n@@ -410,7 +411,13 @@ def tokenizer_class_from_name(class_name: str) -> type[Any] | None:\n ... | 2026-03-18T13:40:02 |
electron/electron | 8567f79e6791baebb9508ab50348e34edf70ceb3 | d4b204799d0b71bf5f6ef37faf9c9a8a62a37570 | Add killed argument for webContents.on("crashed") and app.on("gpu-process-crashed") events | [
{
"path": "atom/browser/api/atom_api_app.cc",
"patch": "@@ -585,8 +585,9 @@ void App::SelectClientCertificate(\n cert_request_info->client_certs[0].get());\n }\n \n-void App::OnGpuProcessCrashed(base::TerminationStatus exit_code) {\n- Emit(\"gpu-process-crashed\");\n+void App::OnGpuProcessCrashed(b... | 2016-09-18T00:00:45 |
vercel/next.js | 49a891deb59be06b666aec0c3cddf33bf3d24824 | 46d3a7c104186afcc3dc4bbb9b58d94536b2465a | Fix the prerender cache update error with the example Dockerfile (#54870)
It seems the app router attempts to write its cache to both `.next/cache` and `.next/server` in docker.
This fix should fix standalone output server's error `Failed to update prerender cache... [Error: EACCES: permission denied...` when deploye... | [
{
"path": "examples/with-docker/Dockerfile",
"patch": "@@ -45,6 +45,10 @@ RUN adduser --system --uid 1001 nextjs\n \n COPY --from=builder /app/public ./public\n \n+# Set the correct permission for prerender cache\n+RUN mkdir .next\n+RUN chown nextjs:nodejs .next\n+\n # Automatically leverage output traces t... | 2023-09-01T17:19:13 |
nodejs/node | 28ee032fca302b09f444c5588d50dd3be007ad2e | 654d22ccf40ab3b803baa7c43dafa46875c20812 | util: fix built-in detection
This makes sure that the regular expression matches all built-in
objects properly. So far a couple where missed.
PR-URL: https://github.com/nodejs/node/pull/30768
Fixes: https://github.com/nodejs/node/issues/30183
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -116,7 +116,7 @@ const { NativeModule } = require('internal/bootstrap/loaders');\n let hexSlice;\n \n const builtInObjects = new Set(\n- ObjectGetOwnPropertyNames(global).filter((e) => /^([A-Z][a-z]+)+$/.test(e))\n+ ObjectGetOwnPropertyNames(global).f... | 2019-11-30T12:33:18 |
electron/electron | 269a87b26f5a36dfa900b269cb622d3eee6de26c | d4b204799d0b71bf5f6ef37faf9c9a8a62a37570 | Emit scroll-touch-edge event instead of changing the behavior of scroll-touch-begin/end
fix #6873 | [
{
"path": "atom/browser/api/atom_api_window.cc",
"patch": "@@ -230,6 +230,10 @@ void Window::OnWindowScrollTouchEnd() {\n Emit(\"scroll-touch-end\");\n }\n \n+void Window::OnWindowScrollTouchEdge() {\n+ Emit(\"scroll-touch-edge\");\n+}\n+\n void Window::OnWindowSwipe(const std::string& direction) {\n E... | 2016-09-17T14:29:32 |
golang/go | 7b314d27ce5dbc31eed2076e28c0af4ea8c24473 | e0ae8540ab7527ac8000d6f212526f32b2a9ebad | cmd/compile: fix bad order of evaluation for multi-value f()(g()) calls
The compiler use to compile f()(g()) as:
t1, t2 := g()
f()(t1, t2)
That violates the Go spec, since when "..., all function calls, ... are
evaluated in lexical left-to-right order"
This PR fixes the bug by compiling f()(g()) as:
t0 := f()
... | [
{
"path": "src/cmd/compile/internal/noder/transform.go",
"patch": "@@ -162,6 +162,7 @@ func transformCall(n *ir.CallExpr) {\n \tir.SetPos(n)\n \t// n.Type() can be nil for calls with no return value\n \tassert(n.Typecheck() == 1)\n+\ttypecheck.RewriteNonNameCall(n)\n \ttransformArgs(n)\n \tl := n.X\n \tt :=... | 2022-03-15T11:00:16 |
huggingface/transformers | 83a6c5b577cafa607d59e78af4de86592b9903ee | 9f93b61209e3a3cac026566bc11a77036941bbeb | Remove cache_position in more models (3) (#44759)
* start on the mambas
* fix mambas
* moshi and kyutai
* a few more special ones
* refactor recurrent gemma
* a bit more
* zambas
* fix mamba
* fixes
* fix csm
* kyutao
* fix test
* align and simpolify mamba cache
* fix mask for recurrent gemma
* small oup... | [
{
"path": "src/transformers/models/chameleon/modeling_chameleon.py",
"patch": "@@ -307,7 +307,6 @@ def forward(\n past_key_values: Cache | None = None,\n output_attentions: bool = False,\n use_cache: bool = False,\n- cache_position: torch.LongTensor | None = None,\n po... | 2026-03-18T13:09:35 |
vercel/next.js | 37fda7f2a40cd2a837d697330377fe3a9ed18bbb | 28ef2473af73e58521ad13b6e6b6d7f3d4d583e4 | fix hmr test flake (#54890)
This should hopefully fix this test flake by checking the logs only after the page has been rendered & an initial log is received
x-ref: https://github.com/vercel/next.js/actions/runs/6050063024/job/16418585779?pr=54889#step:29:3102 | [
{
"path": "test/development/basic/hmr.test.ts",
"patch": "@@ -481,23 +481,21 @@ describe.each([[''], ['/docs']])(\n `\n )\n \n- const outputIndex = next.cliOutput.length\n try {\n // navigate to a 404 page\n await webdriver(next.url, basePath + '/does-not-e... | 2023-09-01T15:16:22 |
nodejs/node | edf654d43e7140f6ac50aefc5dd3f0474bfc5cfe | 973b5c02bba6b744f7ba38f335ec8d0d67e1b199 | test: work around ENOTEMPTY when cleaning tmp dir
Replace the homegrown rimrafsync implementation in test/common with
a call to `fs.rmdirSync(path, { recursive: true })`.
Fixes: https://github.com/nodejs/node/issues/30620
Fixes: https://github.com/nodejs/node/issues/30844
PR-URL: https://github.com/nodejs/node/pull/... | [
{
"path": "test/async-hooks/test-pipeconnectwrap.js",
"patch": "@@ -8,8 +8,7 @@ const { checkInvocations } = require('./hook-checks');\n const tmpdir = require('../common/tmpdir');\n const net = require('net');\n \n-// Spawning messes up `async_hooks` state.\n-tmpdir.refresh({ spawn: false });\n+tmpdir.refr... | 2019-12-12T09:05:38 |
huggingface/transformers | 9f93b61209e3a3cac026566bc11a77036941bbeb | 09fea1e6e970a1051b1141ce320a3d696b2c15ed | Fix `supports_{tp/pp}_plan` (#44696)
* Fix `supports_{tp/pp}_plan`
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
* Apply repo consistency fixes
---------
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.... | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -26,7 +26,6 @@\n from collections.abc import Callable, Iterator\n from contextlib import contextmanager\n from dataclasses import dataclass, field\n-from enum import Enum\n from functools import partial, wraps\n from itertools import cycle\n from ... | 2026-03-18T12:22:17 |
golang/go | 579902d0b1c45e85168196ed0ddfd4cfebb025f4 | ccb798741b9bd9d5eda56648a8b3383e6e55cfcd | cmd/compile,runtime: open code unsafe.Slice
So prevent heavy runtime call overhead, and the compiler will have a
chance to optimize the bound check.
With this optimization, changing runtime/stack.go to use unsafe.Slice
no longer negatively impacts stack copying performance:
name old time/op new ... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -3921,6 +3921,7 @@ func InitTables() {\n \t\t\treturn s.newValue2(ssa.OpMul64uover, types.NewTuple(types.Types[types.TUINT], types.Types[types.TUINT]), args[0], args[1])\n \t\t},\n \t\tsys.AMD64, sys.I386, sys.MIPS64, sys.RISCV64)\n+\talias(\"... | 2021-11-10T12:20:57 |
vercel/next.js | 28ef2473af73e58521ad13b6e6b6d7f3d4d583e4 | f621defc11012632fc0f54c402471befc86cdd88 | Fix performance measures crashing the app (#54858)
There're various of cases would cause the `beforeRender` performance mark is not existed in the performance entries, learned from the issues description. We have to check if that mark is existed.
This PR also refactors all the mark names and measurement names into co... | [
{
"path": "packages/next/src/client/index.tsx",
"patch": "@@ -439,88 +439,128 @@ function Head({ callback }: { callback: () => void }): null {\n return null\n }\n \n+const performanceMarks = {\n+ navigationStart: 'navigationStart',\n+ beforeRender: 'beforeRender',\n+ afterRender: 'afterRender',\n+ aft... | 2023-09-01T14:51:38 |
rust-lang/rust | a546a7cb255da0c4ea4fbfa918d786890bde928e | 0864097cd31ee30f5081ba588a5c9820c2c6fc71 | Fix run-make tests on musl hosts
On musl hosts, we already set -Ctarget-feature=-crt-static and
IS_MUSL_HOST=1 in compiletest. However, in order for the run-make tests
to compile fine on musl hosts, we need to propagate this flag in our
rustc invocations to ensure we can generate cdylibs.
Signed-off-by: Jens Reidel <... | [
{
"path": "src/tools/run-make-support/src/external_deps/rustc.rs",
"patch": "@@ -52,13 +52,20 @@ impl Rustc {\n // `rustc` invocation constructor methods\n \n /// Construct a new `rustc` invocation. This will automatically set the library\n- /// search path as `-L cwd()` and also the compilation ... | 2025-07-21T00:01:42 |
huggingface/transformers | 6f308258772a8fe21ba1f905248616d977a9c1c5 | 3bf92002f84291f61fd6556a946e895609c516f3 | [Gemma] Update conversion scripts for Transformers v5 Comaptibility (#44631)
* maintenance(gemma): Update gemma conversion scripts for v5
* style: fix conversion scripts style | [
{
"path": "src/transformers/models/gemma/convert_gemma_weights_to_hf.py",
"patch": "@@ -13,22 +13,13 @@\n # limitations under the License.\n import argparse\n import os\n-import warnings\n \n import torch\n \n from transformers import GemmaConfig, GemmaForCausalLM, GemmaTokenizer\n+from transformers.tokeniz... | 2026-03-18T10:39:52 |
nodejs/node | 4f523c2c1a1c4cef33a1f925cb9102d5b8a51dab | 2dff8ddafb3cd8ca6555d9e3731a1541c6a1bb2f | src: migrate to new V8 ArrayBuffer API
ArrayBuffer without BackingStore will soon be deprecated.
Fixes:https://github.com/nodejs/node/issues/30529
PR-URL: https://github.com/nodejs/node/pull/30782
Fixes: https://github.com/nodejs/node/issues/30529
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Tr... | [
{
"path": "src/env-inl.h",
"patch": "@@ -983,10 +983,20 @@ inline v8::MaybeLocal<v8::Object> AllocatedBuffer::ToBuffer() {\n inline v8::Local<v8::ArrayBuffer> AllocatedBuffer::ToArrayBuffer() {\n CHECK_NOT_NULL(env_);\n uv_buf_t buf = release();\n+ auto callback = [](void* data, size_t length, void* de... | 2019-12-03T22:22:08 |
vercel/next.js | 5b5dc4f1f3c83a07880220964c6ae9fc2638036b | a5c180388aedab3359bc1165b3354fefe24d18b9 | Turbopack: Trigger Error Overlay in next-api (#54865)
### What?
This hooks up Turbopack's `TurbopackResult` issues into Next's HMR
messages.
### Why?
We need to deliver good error messages to devs so that they can quickly
fix any issues.
### How?
This builds up a debounced HMR queue (necessary because... | [
{
"path": "packages/next-swc/crates/next-core/src/fallback.rs",
"patch": "@@ -63,6 +63,7 @@ pub async fn get_fallback_page(\n project_path,\n execution_context,\n next_config,\n+ NextMode::DevServer,\n )\n .await?;\n ",
"additions": 1,
"deletions": 0,
"lang... | 2023-09-01T14:05:22 |
rust-lang/rust | 538b0004bc3a64004c9935c91231ed1d518ee35f | 1987471d05854cc8b5014dab44e7648834c02213 | Also bail out if predicates contain errors. | [
{
"path": "compiler/rustc_mir_transform/src/impossible_predicates.rs",
"patch": "@@ -41,7 +41,7 @@ impl<'tcx> MirPass<'tcx> for ImpossiblePredicates {\n tracing::trace!(def_id = ?body.source.def_id());\n let predicates = tcx.predicates_of(body.source.def_id()).instantiate_identity(tcx);\n ... | 2025-07-20T23:12:44 |
electron/electron | 12a2b144f3eaec5da6c7cec0217806268084dace | d1274bb79f4aed25bec8c2a26dc0a8091f451a86 | Only drop the SEM_NOGPFAULTERRORBOX flag when calling SetErrorMode (ELECTRON_DEFAULT_ERROR_MODE) | [
{
"path": "atom/common/node_bindings.cc",
"patch": "@@ -145,7 +145,7 @@ void NodeBindings::Initialize() {\n // it back if user wants to show it.\n std::unique_ptr<base::Environment> env(base::Environment::Create());\n if (env->HasVar(\"ELECTRON_DEFAULT_ERROR_MODE\"))\n- SetErrorMode(0);\n+ SetEr... | 2016-09-16T21:01:33 |
golang/go | f12461cb0f3878b6d332f4be3a02fa44cc744df6 | 6fd0520db3cffad4fd01c98319b9b1bf3c50f5e2 | go/doc: remove unused top-level declarations from playable example
When we synthesize a playable example, prune declarations that may be
in the original example file but aren't used by the example.
This is ported from pkgsite, where it fixed #43658.
Change-Id: I41e6d4c28afa993c77c8a82b47bd86ba15ed13b7
Reviewed-on: h... | [
{
"path": "src/go/doc/example.go",
"patch": "@@ -324,10 +324,23 @@ func playExample(file *ast.File, f *ast.FuncDecl) *ast.File {\n \t}\n }\n \n+// findDeclsAndUnresolved returns all the top-level declarations mentioned in\n+// the body, and a set of unresolved symbols (those that appear in the body but\n+//... | 2022-04-22T14:10:23 |
nodejs/node | 2dff8ddafb3cd8ca6555d9e3731a1541c6a1bb2f | d776992f1f80312ec3cfdfbb74c610c22e92c886 | http2: forward debug message in debugStreamObj
PR-URL: https://github.com/nodejs/node/pull/30840
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Ruben Bridgewater <rub... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -160,7 +160,7 @@ function debugStream(id, sessionType, message, ...args) {\n }\n \n function debugStreamObj(stream, message, ...args) {\n- debugStream(stream[kID], stream[kSession][kType], ...args);\n+ debugStream(stream[kID], stream[kSession][kType], m... | 2019-12-07T16:22:52 |
huggingface/transformers | 3bf92002f84291f61fd6556a946e895609c516f3 | 6b01cc4be766ba0bc2e3423731a9de036ec9b2c7 | fix bug embedding_size mismatch with hidden_size in electra model test (#44657)
* fix bug embedding_size mismatch with hidden_size in electra model test
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* add comment
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
---------
Signed-off-by: Liu, Kaixuan <kaix... | [
{
"path": "tests/models/electra/test_modeling_electra.py",
"patch": "@@ -126,6 +126,7 @@ def prepare_config_and_inputs(self):\n def get_config(self):\n return ElectraConfig(\n vocab_size=self.vocab_size,\n+ embedding_size=self.hidden_size, # Match hidden_size to avoid dim... | 2026-03-18T10:12:44 |
vercel/next.js | a5c180388aedab3359bc1165b3354fefe24d18b9 | e2584c6fb3011f5150c28563b2c301eae5b290fd | Update `swc_core` to `v0.82.11` (#54653)
### What?
Update swc crates to
https://github.com/swc-project/swc/commit/44de87f48168e0ffc6bcb2728acecbb40e2547f8
### Why?
To use `import with` and etc...
### How?
Closes WEB-1460
Fixes #
---
Turbopack counterpart: https://github.com/vercel/turbo/pull/582... | [
{
"path": "Cargo.lock",
"patch": "@@ -250,7 +250,7 @@ dependencies = [\n \"log\",\n \"parking\",\n \"polling\",\n- \"rustix\",\n+ \"rustix 0.37.19\",\n \"slab\",\n \"socket2\",\n \"waker-fn\",\n@@ -412,7 +412,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source... | 2023-09-01T13:35:04 |
electron/electron | 5d0f3534eb80a2017589ddb55db465466a0034d3 | 577394442b5e9836223638b10d0a2fea1c7f2a7f | Rethrow binding errors | [
{
"path": "lib/common/init.js",
"patch": "@@ -6,6 +6,8 @@ process.atomBinding = function (name) {\n } catch (error) {\n if (/No such module/.test(error.message)) {\n return process.binding('atom_common_' + name)\n+ } else {\n+ throw error\n }\n }\n }",
"additions": 2,
"dele... | 2016-09-16T18:34:52 |
golang/go | 6fd0520db3cffad4fd01c98319b9b1bf3c50f5e2 | bda9da844df7cbde152e88b1f9b59e9360a4a2f9 | os/exec: eliminate some arbitrary short timeouts
These tests appear to be using timeouts to check for deadlocks or to
cause the test to fail earlier. However, on slower machines these
short timeouts can cause spurious failures, and even on faster
machines if the test locks up we usually want a goroutine dump instead
o... | [
{
"path": "src/os/exec/exec_test.go",
"patch": "@@ -265,24 +265,13 @@ func cmdExtraFilesAndPipes(args ...string) {\n \t}\n \tresponse := \"\"\n \tfor i, r := range pipes {\n-\t\tch := make(chan string, 1)\n-\t\tgo func(c chan string) {\n-\t\t\tbuf := make([]byte, 10)\n-\t\t\tn, err := r.Read(buf)\n-\t\t\tif... | 2022-05-10T13:07:34 |
nodejs/node | d776992f1f80312ec3cfdfbb74c610c22e92c886 | 73df09e66bb54764817de3f87154bdbc8e391a23 | doc: fix argument type of setAAD
PR-URL: https://github.com/nodejs/node/pull/30863
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -284,7 +284,7 @@ once will result in an error being thrown.\n added: v1.0.0\n -->\n \n-* `buffer` {Buffer}\n+* `buffer` {Buffer | TypedArray | DataView}\n * `options` {Object} [`stream.transform` options][]\n * `plaintextLength` {number}\n * Returns: {Cipher} fo... | 2019-12-09T05:23:44 |
huggingface/transformers | 6b01cc4be766ba0bc2e3423731a9de036ec9b2c7 | 869dea750f56a39bf2a9ac24bf5e422be7bbe689 | Fix pegasus conversion (#44571)
* fix pegasus conversion
* Apply repo consistency fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Force merged since tests are passing | [
{
"path": "src/transformers/convert_slow_tokenizer.py",
"patch": "@@ -1290,6 +1290,28 @@ def vocab(self, proto):\n vocab += [(piece.piece, piece.score) for piece in proto.pieces[2:]]\n return vocab\n \n+ @classmethod\n+ def convert_from_spm(cls, vocab=None, **kwargs):\n+ pad_tok... | 2026-03-18T09:54:57 |
rust-lang/rust | d2be1c8d009997584112954b7ee806e07a322eda | 9982d6462bedf1e793f7b2dbd655a4e57cdf67d4 | Option::as_slice: fix comment | [
{
"path": "library/core/src/option.rs",
"patch": "@@ -842,7 +842,7 @@ impl<T> Option<T> {\n // just needs to be aligned, which it is because `&self` is aligned and\n // the offset used is a multiple of alignment.\n //\n- // In the new version, the intrinsic always returns a po... | 2025-07-20T20:35:43 |
vercel/next.js | 1fc4b22dd359c93306aa307d6b81a35a64bbcdba | cc775795890ae9d9587ee978e3573dc94877b1ad | Don't send tracing spans if performance.measure doesn't return measurements (#54808)
Fixes #54389.
Old versions of Safari appear to return `undefined` from `performance.measure()` instead of `PerformanceMeasure` values.
Closes WEB-1477 | [
{
"path": "packages/next/src/client/index.tsx",
"patch": "@@ -466,19 +466,26 @@ function markHydrateComplete(): void {\n 'afterHydrate'\n )\n \n- tracer\n- .startSpan('navigation-to-hydration', {\n- startTime: performance.timeOrigin + beforeHydrationMeasure.startTime,\n- attributes: {\n-... | 2023-08-31T19:19:42 |
huggingface/transformers | 869dea750f56a39bf2a9ac24bf5e422be7bbe689 | f1f34de0a68497ebc95ae690893fb75b89814c0d | Fix repo-check bot (#44812)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/pr-repo-consistency-bot.yml",
"patch": "@@ -172,6 +172,13 @@ jobs:\n cp utils/check_docstrings.py pr-repo/utils/check_docstrings.py\n cp utils/add_dates.py pr-repo/utils/add_dates.py\n \n+ - name: Install editable transformers from PR branch with copied ... | 2026-03-18T09:47:57 |
golang/go | d28616d4697bf8ec02e8afed39013721e4567f9a | e0f99775f24cd19ad96847b0a5b00952aac9d548 | syscall: update broken links
Remove one link which isn't very interesting, and update another to
point to the current location.
Fixes #52753
Change-Id: I5f53ede35b0ded197bc0e6d41eabf28d736de5b8
Reviewed-on: https://go-review.googlesource.com/c/go/+/405296
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: H... | [
{
"path": "src/syscall/syscall_windows.go",
"patch": "@@ -448,12 +448,11 @@ func setFilePointerEx(handle Handle, distToMove int64, newFilePointer *int64, wh\n \t\tdefault:\n \t\t\tpanic(\"unsupported 32-bit architecture\")\n \t\tcase \"386\":\n-\t\t\t// distToMove is a LARGE_INTEGER:\n-\t\t\t// https://msdn... | 2022-05-09T22:33:22 |
nodejs/node | 73df09e66bb54764817de3f87154bdbc8e391a23 | 99fe9dd11225daf238c72978198237dcdc0b22bc | build: on Android, use android log library to print stack traces
And other errors like lost promises
PR-URL: https://github.com/nodejs/node/pull/29388
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Christian Clauss <cclauss@me.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Rich... | [
{
"path": "src/node_errors.cc",
"patch": "@@ -10,6 +10,10 @@\n #include \"node_v8_platform-inl.h\"\n #include \"util-inl.h\"\n \n+#ifdef __ANDROID__\n+#include <android/log.h>\n+#endif\n+\n namespace node {\n \n using errors::TryCatchScope;\n@@ -429,6 +433,8 @@ void PrintErrorString(const char* format, ...)... | 2017-09-24T23:13:45 |
rust-lang/rust | 3f9be406a6fd879a99a0eba33cc196fa2cb3957b | 9982d6462bedf1e793f7b2dbd655a4e57cdf67d4 | fix handling of base address for TypeId allocations | [
{
"path": "compiler/rustc_const_eval/src/const_eval/machine.rs",
"patch": "@@ -279,23 +279,15 @@ impl<'tcx> CompileTimeInterpCx<'tcx> {\n fn guaranteed_cmp(&mut self, a: Scalar, b: Scalar) -> InterpResult<'tcx, u8> {\n interp_ok(match (a, b) {\n // Comparisons between integers are al... | 2025-07-19T18:04:08 |
huggingface/transformers | f1f34de0a68497ebc95ae690893fb75b89814c0d | 03205a9dd636b54a19ddd34a08ff4b4245f00150 | Sdpa for owlvit (#42136)
* Added sdpa attention
* Added Changes to OWL-Vit as suggested
* Fixed nits
* removed unwanted files
* Fixed nits
* Fixed past_key_values_length to length 0
* Fixed nits
* Fixed dim issue
* fixed nits
* Fixed dim issue
* add sdpa for owlvit
* fixes
* fixe
* fixes
* fixes
* fixes... | [
{
"path": "src/transformers/models/owlv2/modeling_owlv2.py",
"patch": "@@ -13,6 +13,7 @@\n # limitations under the License.\n \"\"\"PyTorch OWLv2 model.\"\"\"\n \n+from collections.abc import Callable\n from dataclasses import dataclass\n from typing import Any\n \n@@ -24,18 +25,17 @@\n from ...masking_util... | 2026-03-17T19:52:21 |
vercel/next.js | cc775795890ae9d9587ee978e3573dc94877b1ad | e1cc97f3e4ff36be968f749da78958011b632449 | fix(turbopack): edge api entry path should not have `/route` suffix (#54851)
### Description
Lookup is done by the page name, which does not include the `route` suffix
Closes WEB-1481 | [
{
"path": "packages/next-swc/crates/next-api/src/middleware.rs",
"patch": "@@ -1,8 +1,9 @@\n use anyhow::{bail, Context, Result};\n use next_core::{\n all_server_paths,\n- middleware::{get_middleware_module, wrap_edge_entry},\n+ middleware::get_middleware_module,\n mode::NextMode,\n+ next_e... | 2023-08-31T18:36:59 |
electron/electron | eafb6307d53724ea74eb7e70833c245eb577b850 | fbac6356873a42660fae4b3b7cec9af0811a9f57 | fix crash when using geolocation api with enableHighAccuracy option | [
{
"path": "atom/browser/atom_access_token_store.cc",
"patch": "@@ -11,6 +11,8 @@\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/geolocation_provider.h\"\n \n+using content::BrowserThread;\n+\n namespace atom {\n \n namespace {\n@@ -22,6 +24,49 @@ const char* kGeol... | 2016-09-09T12:18:11 |
nodejs/node | 99fe9dd11225daf238c72978198237dcdc0b22bc | d8fc0ae50fd0c7fe403cbbd27819eb5b00acb7da | build: fix library version and compile flags on Android
Compiling a library with -fPIE won't do, and on Android libraries
are not versioned.
PR-URL: https://github.com/nodejs/node/pull/29388
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Christian Clauss <cclauss@me.com>
Reviewed-By: Benjamin Gruenbaum ... | [
{
"path": "common.gypi",
"patch": "@@ -127,8 +127,8 @@\n 'ldflags': [ '-Wl,-bbigtoc' ],\n }],\n ['OS == \"android\"', {\n- 'cflags': [ '-fPIE' ],\n- 'ldflags': [ '-fPIE', '-pie' ]\n+ 'cflags': [ '-fPIC' ],\n+ 'ldflags': [ '-fPIC' ]\... | 2017-09-24T23:11:48 |
golang/go | aeaf4b0e5b21ea0819b4e862ed86ce44760516bf | 2ecf747e088fa6568621d719fbdf41c0d9221cc5 | runtime: not mark save_g NOFRAME on ARM
On ARM, when GOARM<=6 the TLS pointer is fetched via a call to a
kernel helper. This call clobbers LR, even just temporarily. If
the function is NOFRAME, if a profiling signal lands right after
the call returns, the unwinder will find the wrong LR. Not mark it
NOFRAME, so the LR... | [
{
"path": "src/runtime/tls_arm.s",
"patch": "@@ -29,10 +29,12 @@\n // NOTE: runtime.gogo assumes that R1 is preserved by this function.\n // runtime.mcall assumes this function only clobbers R0 and R11.\n // Returns with g in R0.\n-TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0\n+TEXT runtime·save_g(SB),N... | 2022-05-10T20:09:54 |
huggingface/transformers | acc89e749b0fc66e56ebfd6ba8c81b2f45c88a63 | 2f896be7272cefb92869bd27aefec2f78d0d27f4 | docs(tasks): remove references to removed question-answering pipeline (#44787)
The question-answering pipeline was removed in v5.0.0 per MIGRATION_GUIDE_V5.md.
This updates the non-English task guides to remove usage of pipeline('question-answering')
which no longer exists and would raise:
Unknown task question-answ... | [
{
"path": "docs/source/ar/tasks/question_answering.md",
"patch": "@@ -252,23 +252,7 @@ pip install transformers datasets evaluate\n >>> context = \"BLOOM has 176 billion parameters and can generate text in 46 languages natural languages and 13 programming languages.\"\n ```\n \n-أبسط طريقة لتجربة نموذجك الم... | 2026-03-17T16:16:37 |
vercel/next.js | f0fa7c5406a7b33c6e94c2b1280739871129e8af | 826ef8c71530564a7c034ac9128b6db1c273b961 | use pnpm for `next-with-deps` (#54847)
This fixes the "Usage Error: This project is configured to use pnpm" error when running `next-with-deps` since we [enforce a package manager](https://github.com/vercel/next.js/blob/canary/package.json#L252) | [
{
"path": "scripts/next-with-deps.sh",
"patch": "@@ -29,7 +29,7 @@ done\n \n if [ ! -z $HAS_CONFLICTING_DEP ] || [ ! -d \"$PROJECT_DIR/node_modules\" ];then\n cd $PROJECT_DIR\n- yarn install\n+ pnpm i --ignore-workspace\n for dep in ${CONFLICTING_DEPS[@]};do \n rm -rf node_modules/$dep\n done",
... | 2023-08-31T16:12:38 |
electron/electron | 5ccd0a24e9ed67c2b43b16f52ea68f55a022711f | f8bdc7437d445b80f67f36259d2369f5cba765a5 | Fix compatibility with canScroll | [
{
"path": "atom/common/native_mate_converters/blink_converter.cc",
"patch": "@@ -238,6 +238,15 @@ bool Converter<blink::WebMouseWheelEvent>::FromV8(\n dict.Get(\"accelerationRatioX\", &out->accelerationRatioX);\n dict.Get(\"accelerationRatioY\", &out->accelerationRatioY);\n dict.Get(\"hasPreciseScroll... | 2016-09-09T10:28:32 |
golang/go | 51859ec2292d9c1d82a7054ec672ff551a0d7497 | 0c43878baa035db39d9bbf84ce8721cd8a97c78a | internal/cpu: report CPU if known on PPC64
The PPC64 maintainers are testing on P10 hardware, so it is helpful
to report the correct cpu, even if this information is not used
elsewhere yet.
Note, AIX will report the current CPU of the host system, so a
POWER10 will not set the IsPOWER9 flag. This is existing behavior... | [
{
"path": "src/internal/cpu/cpu.go",
"patch": "@@ -81,12 +81,13 @@ var MIPS64X struct {\n // those as well. The minimum processor requirement is POWER8 (ISA 2.07).\n // The struct is padded to avoid false sharing.\n var PPC64 struct {\n-\t_ CacheLinePad\n-\tHasDARN bool // Hardware random number gen... | 2022-05-05T15:27:24 |
nodejs/node | 916cc82b45a2c1ddac610d176f8c3cbd80034ae4 | 76cbb6628c302119fbace82142d6be0a08b569de | test: assert: fix deepStrictEqual comparing a real array and fake array
PR-URL: https://github.com/nodejs/node/pull/30743
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "test/parallel/test-assert-deep.js",
"patch": "@@ -1042,6 +1042,21 @@ assert.throws(\n assertDeepAndStrictEqual(a, b);\n }\n \n+// Verify that an array and the equivalent fake array object\n+// are correctly compared\n+{\n+ const a = [1, 2, 3];\n+ const o = {\n+ __proto__: Array.prototype,\... | 2019-12-01T00:02:37 |
huggingface/transformers | 2f896be7272cefb92869bd27aefec2f78d0d27f4 | af93d3841a29e793c481a326b8e911b78259e936 | Fix configs with `@strict` (#44770)
* how did this even happen, CI was green O_o
* two more models
* what a weird model, too many BC lines
* fix
* .
* and tests | [
{
"path": "src/transformers/models/edgetam_video/configuration_edgetam_video.py",
"patch": "@@ -297,7 +297,7 @@ def __post_init__(self, **kwargs):\n self.vision_config[\"model_type\"] = self.vision_config.get(\"model_type\", \"sam2_vision_model\")\n self.vision_config = CONFIG_MAPPIN... | 2026-03-17T15:30:24 |
vercel/next.js | 44509f690a12b65e45b09c7e128d2f1d8f9ef096 | 9d7f54c11b3bcd94fc0fb49f9e22961e2a792ff8 | docs: fix syntax error in i18n example code block (#54749)
Added missing comma to fix syntax error in i18n configuration example. | [
{
"path": "docs/02-app/02-api-reference/05-next-config-js/redirects.mdx",
"patch": "@@ -292,7 +292,7 @@ module.exports = {\n destination: '/en/newpage',\n permanent: false,\n locale: false,\n- }\n+ },\n {\n // this gets converted to /(en|fr|de)/(.*) so will no... | 2023-08-31T03:16:55 |
electron/electron | 18fd3e0329a85f448bcf3f02414b424378e52d5a | a510642a258e07ef70791b2c5359106de5b54157 | Fix js linting error | [
{
"path": "spec/webview-spec.js",
"patch": "@@ -783,8 +783,7 @@ describe('<webview> tag', function () {\n let requestId = null\n let activeMatchOrdinal = []\n const listener = function (e) {\n- if (!e.result.finalUpdate)\n- return\n+ if (!e.result.finalUpdate) return... | 2016-09-08T05:56:24 |
golang/go | 526de61c67add8400d73b28bbed3f3680586c472 | bf68170c638e7e69bedcc64fadfd83354fd06c10 | test: add test case for #51840
This issue has been fixed in CL 403837.
Fixes #51840.
Change-Id: I282062bb06278696fe25e9ede333c64539dc964e
Reviewed-on: https://go-review.googlesource.com/c/go/+/404914
Run-TryBot: Wayne Zuo <wdvxdr@golangcn.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Auto-Submit: Matthew D... | [
{
"path": "test/typeparam/issue51840.go",
"patch": "@@ -0,0 +1,36 @@\n+// compile\n+\n+// Copyright 2022 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+type Addr struct {\n+\thi uint64\n+... | 2022-05-08T03:04:34 |
huggingface/transformers | af93d3841a29e793c481a326b8e911b78259e936 | bbe251a4d4e06d141f3e60c91e15d4b9d34e82c9 | [AMD CI] Fix test failures across important models (#44632)
* qwen2
* merge
* qwen_2_audio
* fix more
* qwen2_5_vl
* style
* fix | [
{
"path": "docker/transformers-pytorch-amd-gpu/Dockerfile",
"patch": "@@ -44,7 +44,7 @@ RUN git clone https://github.com/ROCm/flash-attention/ -b tridao && \\\n GPU_ARCHS=\"gfx942\" python setup.py install\n # GPU_ARCHS builds for MI300, MI325 but not MI355: we would need to add `;gfx950` but it takes t... | 2026-03-17T14:50:39 |
nodejs/node | b7d87e31f5add8e7bc93f6bcb32f01bc947206c4 | a4e7ea8a3af4b8062705c491607e8bd96810ab5b | test: wait for stream close before writing to file
Wait for async operations on a file to finish before writing to it
again.
This fixes flakiness in parallel/test-readline-async-iterators-destroy.
PR-URL: https://github.com/nodejs/node/pull/30836
Fixes: https://github.com/nodejs/node/issues/30660
Reviewed-By: Luigi ... | [
{
"path": "test/parallel/test-readline-async-iterators-destroy.js",
"patch": "@@ -2,6 +2,7 @@\n \n const common = require('../common');\n const fs = require('fs');\n+const { once } = require('events');\n const { join } = require('path');\n const readline = require('readline');\n const assert = require('asse... | 2019-12-07T13:20:02 |
vercel/next.js | 9d7f54c11b3bcd94fc0fb49f9e22961e2a792ff8 | fe191f8e549d373d83b73f595024611edc18c1a8 | Fix the build manifest path for `/` (#54744)
### What?
Fixes a bug introduced in #54668, where the `/` path would map to the build manifest `.next/server/page/app-build-manifest.json` in App router instead of the correct `.next/server/index/page/app-build-manifest.json`
It also addresses an issue where `not-found` ma... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev.ts",
"patch": "@@ -268,16 +268,12 @@ async function startWatcher(opts: SetupOpts) {\n type === 'app-route' ? 'app' : type,\n type === 'middleware'\n ? ''\n- : pageName === '/' && type === 'pages'\n+ : ... | 2023-08-31T03:14:25 |
electron/electron | 30dd65e3a9911eaafec4ccef1626dd9ce6ad3f97 | 5708e86a054296fa8a24e4232083a664414ae0fa | Fix failing spec when refreshing test window | [
{
"path": "spec/api-ipc-spec.js",
"patch": "@@ -152,6 +152,7 @@ describe('ipc module', function () {\n assert.equal(property.getFunctionProperty(), 'foo-browser')\n property.func.property = 'bar'\n assert.equal(property.getFunctionProperty(), 'bar-browser')\n+ property.func.property =... | 2016-09-08T05:42:59 |
huggingface/transformers | bbe251a4d4e06d141f3e60c91e15d4b9d34e82c9 | 160618abed3c92e4c0ad017328b8c7b142da950b | Move VLM conversions to the main mapping (#44627)
* oke, let's see
* revert core and check
* ooops
* nope revert it back
* forgot revert
* simplify loading changes
* make sure classes will be reset
* fix modular
* these don't recurse so copy
* a few typos in model type and regex
* another fix: model type has... | [
{
"path": "src/transformers/conversion_mapping.py",
"patch": "@@ -63,11 +63,68 @@\n \"rt_detr_v2\": \"rt_detr\",\n \"pp_doclayout_v2\": \"rt_detr\",\n \"pp_doclayout_v3\": \"rt_detr\",\n+ \"paligemma\": \"llava\",\n+ \"aya_vision\": \"llava\",\n+ \"fuyu\": \"llava\",\n+ \"got_ocr2\":... | 2026-03-17T10:01:42 |
golang/go | bf68170c638e7e69bedcc64fadfd83354fd06c10 | 1284cc24955487192fb7fb5aea934cb13fd1ae73 | go/printer: align expression list elements containing tabs
A user noticed that, given the input
{
S: "Hello World",
Integer: 42,
},
{
S: " ", // an actual <tab>
Integer: 42,
},
gofmt would incorrectly format the code as
{
S: "Hello World",
Integer: 42,
},
{
S: " ", // an actua... | [
{
"path": "src/cmd/gofmt/gofmt_test.go",
"patch": "@@ -144,15 +144,18 @@ func TestRewrite(t *testing.T) {\n \tmatch = append(match, \"gofmt.go\", \"gofmt_test.go\")\n \n \tfor _, in := range match {\n-\t\tout := in // for files where input and output are identical\n-\t\tif strings.HasSuffix(in, \".input\") ... | 2022-05-08T22:29:23 |
nodejs/node | a4e7ea8a3af4b8062705c491607e8bd96810ab5b | 5c71c123637b56a6eacbf72fdb762306d3810116 | benchmark: improve `--filter` pattern matching
* Let users provide more than one pattern by repeating the flag
* Add new flag --exclude to exclude patterns
* Add tests for --filter
* Document --filter
This commit also fixes a bug where things like
`compare.js --new --old binary --new binary` was acceptable (n... | [
{
"path": "benchmark/_cli.js",
"patch": "@@ -34,7 +34,7 @@ function CLI(usage, settings) {\n if (arg === '--') {\n // Only items can follow --\n mode = 'item';\n- } else if (['both', 'option'].includes(mode) && arg[0] === '-') {\n+ } else if ('both' === mode && arg[0] === '-') {\n ... | 2019-10-15T22:14:20 |
huggingface/transformers | 160618abed3c92e4c0ad017328b8c7b142da950b | b4bdaadd643c6f80b36c599571729bb7fed44fa9 | Fix config loading issues (type issues) (#44789)
* fix
* fix
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/deepseek_v2/configuration_deepseek_v2.py",
"patch": "@@ -96,7 +96,7 @@ class DeepseekV2Config(PreTrainedConfig):\n head_dim: int | None = None\n first_k_dense_replace: int = 0\n kv_lora_rank: int = 512\n- q_lora_rank: int = 1536\n+ q_lora_rank: int | None... | 2026-03-17T09:36:55 |
vercel/next.js | 8b4bb031ba2d83bb48cf665b556f1b1c8a7d34b9 | 7744aa2640cb87f75ee6077f8c807d56400a6c1d | Fixes for Turbopack HMR (#54790)
### What?
There were a few issues with the initial implementation of next-api HMR:
1. We incorrectly errored out when we received a Next.js WebSocket message
2. We didn't handle Next's `span-end` message, leading to another error
3. We listened to the `htmlEndpoint` change events inst... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev.ts",
"patch": "@@ -754,6 +754,7 @@ async function startWatcher(opts: SetupOpts) {\n case 'server-component-reload-page': // { clientId }\n case 'client-reload-page': // { clientId }\n case 'client-full-r... | 2023-08-30T21:14:46 |
electron/electron | 5708e86a054296fa8a24e4232083a664414ae0fa | 937ae7ef8fd427f4d7d3fcdb68993588a4aa8e0e | Fix API change of findInPage API | [
{
"path": "atom/browser/api/atom_api_web_contents.cc",
"patch": "@@ -532,18 +532,12 @@ void WebContents::FindReply(content::WebContents* web_contents,\n v8::HandleScope handle_scope(isolate());\n \n mate::Dictionary result = mate::Dictionary::CreateEmpty(isolate());\n- if (number_of_matches == -1) {\n-... | 2016-09-08T05:27:10 |
golang/go | 1284cc24955487192fb7fb5aea934cb13fd1ae73 | 508cb32d4be3f71f2975ee978a474eb7d95d868a | cmd/compile: be sure to export types mentioned in f.i.g. method signature
When a fully instantiated generic method is exported, be sure to also
export the types in its signature.
Fixes #52279.
Change-Id: Icc6bca05b01f914cf67faaf1bf184eaa5484f521
Reviewed-on: https://go-review.googlesource.com/c/go/+/405118
Run-TryBo... | [
{
"path": "src/cmd/compile/internal/typecheck/crawler.go",
"patch": "@@ -234,7 +234,7 @@ func (p *crawler) checkForFullyInst(t *types.Type) {\n \t\tfor i, t1 := range t.RParams() {\n \t\t\tshapes[i] = Shapify(t1, i, baseType.RParams()[i])\n \t\t}\n-\t\tfor j := range t.Methods().Slice() {\n+\t\tfor j, tmeth... | 2022-05-10T16:52:52 |
nodejs/node | 8a5c7f6abdfb4a8b09bd1de85c6e9819df66ca48 | 4a5fb74fb15f41ebde50ccbb05c3ad25bf1dd499 | fs: synchronize close with other I/O for streams
Part of the flakiness in the
parallel/test-readline-async-iterators-destroy test comes from
fs streams starting `_read()` and `_destroy()` without waiting
for the other to finish, which can lead to the `fs.read()` call
resulting in `EBADF` if timing is bad.
Fix this by... | [
{
"path": "lib/internal/fs/streams.js",
"patch": "@@ -7,10 +7,12 @@ const {\n NumberIsSafeInteger,\n ObjectDefineProperty,\n ObjectSetPrototypeOf,\n+ Symbol,\n } = primordials;\n \n const {\n- ERR_OUT_OF_RANGE\n+ ERR_OUT_OF_RANGE,\n+ ERR_STREAM_DESTROYED\n } = require('internal/errors').codes;\n c... | 2019-12-07T13:17:04 |
huggingface/transformers | 75c836b7853cb65f48ab2ce13cddfb12d14ecf5a | 3b5032739b0faa2a0ad16d7e47b8c986152943b8 | [fix] mistral 4 docs (#44776)
fix | [
{
"path": "docs/source/en/model_doc/mistral4.md",
"patch": "@@ -110,7 +110,3 @@ print(decoded_output)\n ## Mistral4ForTokenClassification\n \n [[autodoc]] Mistral4ForTokenClassification\n-\n-## Mistral4ForQuestionAnswering\n-\n-[[autodoc]] Mistral4ForQuestionAnswering",
"additions": 0,
"deletions": ... | 2026-03-16T21:03:23 |
electron/electron | 937ae7ef8fd427f4d7d3fcdb68993588a4aa8e0e | 4c56c1c2b2a42f887761bc52e1d57c6105ed629a | Fix crash caused by new network parameters | [
{
"path": "atom/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -371,7 +371,6 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n compositor_->SetRootLayer(root_layer_.get());\n #endif\n \n- LOG(ERROR) << \"GetRootLayer: \" << GetRootLayer();\n ResizeRootLayer();\n }\n ",
"... | 2016-09-07T08:57:29 |
vercel/next.js | 7744aa2640cb87f75ee6077f8c807d56400a6c1d | f36ad4c8a427838f84bd89b2e4532781b0d6b0ee | Update list of Next.js options in next.rs (#54798)
There were a bunch of experimental options landed / removed and I
noticed next_config.rs wasn't up to date with those.
<!-- 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 ... | [
{
"path": "packages/next-swc/crates/next-core/src/next_config.rs",
"patch": "@@ -421,35 +421,26 @@ pub struct ExperimentalConfig {\n cra_compat: Option<bool>,\n disable_optimized_loading: Option<bool>,\n disable_postcss_preset_env: Option<bool>,\n- enable_undici: Option<bool>,\n esm_exter... | 2023-08-30T20:35:47 |
golang/go | 4d716e4d4a25526ba963a7cfb2b5208eb52e71c0 | 17dc7b487f2406261d638350e4652fc5df224cc2 | cmd/go/internal/modfetch: simplify handling of weird version tags
This fixes an obscure bug in 'go list -versions' if the repo contains
a tag with an explicit "+incompatible" suffix. However, I've never
seen such a repo in the wild; mostly it's an attempt to wrap my brain
around the code and simplify things a bit for ... | [
{
"path": "src/cmd/go/internal/modfetch/codehost/codehost.go",
"patch": "@@ -65,7 +65,7 @@ type Repo interface {\n \n \t// RecentTag returns the most recent tag on rev or one of its predecessors\n \t// with the given prefix. allowed may be used to filter out unwanted versions.\n-\tRecentTag(rev, prefix stri... | 2022-02-24T21:12:34 |
nodejs/node | 7629fb25f2c97de9926f71724072ad2b2af27c85 | f393d668817ce694466d91e8c5074fc0e123e06a | module: fix require in node repl
Fixes: https://github.com/nodejs/node/issues/30808
PR-URL: https://github.com/nodejs/node/pull/30835
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com> | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -816,11 +816,11 @@ Module._resolveLookupPaths = function(request, parent) {\n return paths.length > 0 ? paths : null;\n }\n \n- // With --eval, parent.id is not set and parent.filename is null.\n+ // In REPL, parent.filename is null.\n i... | 2019-12-07T13:19:57 |
huggingface/transformers | 3b5032739b0faa2a0ad16d7e47b8c986152943b8 | 67fd5bc2b4da337f4a3763637e1ea15b23d7d776 | Add Mistral 4 (#44760)
* Add Mistral Small 4
* add mistral4 to toctree
* Quality
* Update src/transformers/models/mistral4/__init__.py
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
* wip
* docstring
* Make config dataclass
* Fixes fixes fixes
* update tp plan
---------
Co-authored-... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -1232,6 +1232,8 @@\n title: MGP-STR\n - local: model_doc/mistral3\n title: Mistral3\n+ - local: model_doc/mistral4\n+ title: Mistral4\n - local: model_doc/mllama\n title: mllama\n - local: model_doc/m... | 2026-03-16T19:39:38 |
electron/electron | 4c56c1c2b2a42f887761bc52e1d57c6105ed629a | 6d8f9009168d2c6bffc1f734e43c5f6ee504d942 | Fix crash in offscreen renderer | [
{
"path": "atom/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -71,8 +71,9 @@ class AtomCopyFrameGenerator {\n content::BrowserThread::PostDelayedTask(content::BrowserThread::UI,\n FROM_HERE,\n base::Bind(&AtomCopyFrameGenerator::InternalGenerateCopyFrame,\n- weak_ptr... | 2016-09-07T08:33:09 |
nodejs/node | caa96dda6b58f04c084a48cd4fd143abec21c918 | 2f8c858a75936c517443cde45854c328a4fe8660 | doc: improve doc Http2Stream: FrameError, Timeout and Trailers
Document arguments for the 'frameError', 'timeout' and 'trailers'
event.
PR-URL: https://github.com/nodejs/node/pull/30373
Fixes: https://github.com/nodejs/help/issues/877
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gireesh Punathil <gpuna... | [
{
"path": "doc/api/http2.md",
"patch": "@@ -970,6 +970,11 @@ an `Http2Stream`.\n added: v8.4.0\n -->\n \n+* `type` {integer} The frame type.\n+* `code` {integer} The error code.\n+* `id` {integer} The stream id (or `0` if the frame isn't associated with a\n+ stream).\n+\n The `'frameError'` event is emitte... | 2019-11-12T11:05:53 |
huggingface/transformers | 67fd5bc2b4da337f4a3763637e1ea15b23d7d776 | 4cac50ff5414dd0b591e6d5fc1c5ca3f32a20a16 | Fix: Eurobert model was missing @strict decorator and invalid test kwargs (#44767)
* Fix: added missing attribute in docstring
* Fix EuroBertConfig missing @strict decorator and invalid test kwargs
EuroBertConfig was missing `@strict(accept_kwargs=True)` unlike its parent
LlamaConfig, causing failures when reloading... | [
{
"path": "src/transformers/models/eurobert/configuration_eurobert.py",
"patch": "@@ -19,18 +19,23 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+\n+from ...configuration_utils import strict\n from ...modeling_rope_utils import RopeParamete... | 2026-03-16T18:20:45 |
vercel/next.js | f36ad4c8a427838f84bd89b2e4532781b0d6b0ee | 0e1c85ce833daaebcff9411fca736d5bc05f3f21 | Remove experimental.pageEnv (#54789)
This experimental feature didn't pan out and was left in accidentally.
This PR removes it.
<!-- 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.
Choo... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -358,22 +358,6 @@ export function getDefineEnv({\n 'global.GENTLY': JSON.stringify(false),\n }\n : undefined),\n- // stub process.env with proxy to warn a missing value is\n- // being accessed in development mo... | 2023-08-30T18:49:18 |
electron/electron | 6d8f9009168d2c6bffc1f734e43c5f6ee504d942 | 4aa292c7cdc03828f4f0bf5c6487934a87171043 | Fix building on Windows | [
{
"path": "atom/browser/api/atom_api_download_item.cc",
"patch": "@@ -10,12 +10,13 @@\n #include \"atom/common/native_mate_converters/callback.h\"\n #include \"atom/common/native_mate_converters/file_path_converter.h\"\n #include \"atom/common/native_mate_converters/gurl_converter.h\"\n-#include \"atom/comm... | 2016-09-06T10:55:18 |
huggingface/transformers | 4cac50ff5414dd0b591e6d5fc1c5ca3f32a20a16 | a7e73cdf6f9ffe65e5eeb4949379dcc00cadd209 | fix: sig lip import (#44764)
* fix: sig lip import
* remove test fetcher failures silencing | [
{
"path": ".circleci/config.yml",
"patch": "@@ -46,7 +46,7 @@ jobs:\n - run: uv pip install -U -e .\n - run: echo 'export \"GIT_COMMIT_MESSAGE=$(git show -s --format=%s)\"' >> \"$BASH_ENV\" && source \"$BASH_ENV\"\n - run: mkdir -p test_preparation\n- - run: py... | 2026-03-16T17:21:45 |
nodejs/node | 68874a617b5f6b43480f87bf18b681605a2f6f8c | 6bdf8d106009e4ed0f3c323d0f0874a51acc8e08 | src: fix the false isatty() issue on IBMi
On IBMi PASE isatty() always returns true for stdin, stdout and stderr.
Use ioctl() instead to identify whether it's actually a TTY.
PR-URL: https://github.com/nodejs/node/pull/30829
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
... | [
{
"path": "src/node.cc",
"patch": "@@ -108,6 +108,9 @@\n #include <unistd.h> // STDIN_FILENO, STDERR_FILENO\n #endif\n \n+#ifdef __PASE__\n+#include <sys/ioctl.h> // ioctl\n+#endif\n // ========== global C++ headers ==========\n \n #include <cerrno>\n@@ -555,7 +558,14 @@ inline void PlatformInit() {... | 2019-12-07T02:54:00 |
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.