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
electron/electron
b37c73436b1562caf8198fdae10ebdedcb120b8e
32f0ae5b50ed8541fd86586251716079e8275e86
Fix API changes
[ { "path": "atom/browser/api/atom_api_content_tracing.cc", "patch": "@@ -32,23 +32,23 @@ struct Converter<std::set<T> > {\n };\n \n template<>\n-struct Converter<base::debug::CategoryFilter> {\n+struct Converter<base::trace_event::CategoryFilter> {\n static bool FromV8(v8::Isolate* isolate,\n ...
2015-04-21T10:56:08
huggingface/transformers
3635415af2b6f6e0d6345849f07ba6da9af4206a
3a48e9534cefb5937da33bba1fdc9d8b1b9a0d91
[Docs] Fix typo in CustomTrainer compute_loss method and adjust loss reduction logic (#39391) Fix typo in CustomTrainer compute_loss method and adjust loss reduction logic
[ { "path": "docs/source/en/trainer.md", "patch": "@@ -187,13 +187,13 @@ from torch import nn\n from transformers import Trainer\n \n class CustomTrainer(Trainer):\n- def compute_losss(self, model: nn.Module, inputs: dict[str, Union[torch.Tensor, Any]], return_outputs: bool = False num_items_in_batch: Opti...
2025-07-14T16:25:06
nodejs/node
5c596222433166a7c0274251cca1e55f3bf9560f
12c0fd4c9a0946dc821029738b80fd1998064125
crypto: add support for chacha20-poly1305 for AEAD openSSL supports AEAD_CHACHA20_POLY1305(rfc7539) since 1.1. PR-URL: https://github.com/nodejs/node/pull/24081 Fixes: https://github.com/nodejs/node/issues/24080 Refs: https://tools.ietf.org/html/rfc7539 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sam...
[ { "path": "doc/api/crypto.md", "patch": "@@ -1382,6 +1382,9 @@ Adversaries][] for details.\n <!-- YAML\n added: v0.1.94\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/24081\n+ description: The cipher `chacha20-poly1305` is now supported.\n - version: v10.10.0\n ...
2018-11-04T04:04:57
vercel/next.js
a9b56610e144520f4cbc1961a4ac9de8b6ec1080
cbb66d4ad31431823f723b19bd4223db55666326
Send correct stats in hot reloader sync event (#46150) If there's a build error on initial page load, the error is sometimes displayed as a server error instead of a build error: ![image](https://user-images.githubusercontent.com/25056922/220099125-5f538551-342f-4bca-a670-a04d8428de2d.png) When the hot reloader sends...
[ { "path": "packages/next/src/server/dev/hot-middleware.ts", "patch": "@@ -24,7 +24,6 @@\n import type { webpack } from 'next/dist/compiled/webpack/webpack'\n import type ws from 'ws'\n import { isMiddlewareFilename } from '../../build/utils'\n-import { nonNullable } from '../../lib/non-nullable'\n import ty...
2023-02-20T12:55:29
electron/electron
87809e65aac4f4c89cf5eabe79bd25477eacc6a4
51b5e953f4a64a27efab0c0b6ec023642637716e
Fix refreshing specs
[ { "path": "spec/api-app-spec.coffee", "patch": "@@ -22,4 +22,4 @@ describe 'app module', ->\n assert.equal app.getName(), 'Electron Test'\n app.setName 'test-name'\n assert.equal app.getName(), 'test-name'\n- app.setName 'Electron Test App'\n+ app.setName 'Electron Test'", "a...
2015-04-21T10:55:44
golang/go
72c003ef82ba7c997f49e187e953872bfcbf5263
94f2a03951ed1534ebd6b13392b87d8b8b807e20
cmd/compile: unexport Type.Width and Type.Align [generated] [git-generate] cd src/cmd/compile/internal : Workaround rf issue with types2 tests. rm types2/*_test.go : Rewrite uses. First a type-safe rewrite, : then a second pass to fix unnecessary conversions. rf ' ex ./abi ./escape ./gc ./liveness ./noder ./reflectd...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -144,7 +144,7 @@ func (pa *ABIParamAssignment) RegisterTypesAndOffsets() ([]*types.Type, []int64)\n }\n \n func appendParamTypes(rts []*types.Type, t *types.Type) []*types.Type {\n-\tw := t.Width\n+\tw := t.Size()\n \tif w == 0 {\n \t\tretur...
2021-08-26T19:11:14
huggingface/transformers
3d8be20cd2f76aa03d3f42808f2c9b36c94608b3
903944a411c35b8f7b2b51ada77a7c2a80e7fb88
Totally rewrite how pipelines load preprocessors (#38947) * Totally rewrite how pipelines load preprocessors * Delete more mappings * Fix conditionals, thanks Cyril!
[ { "path": "src/transformers/pipelines/__init__.py", "patch": "@@ -441,28 +441,6 @@\n },\n }\n \n-NO_FEATURE_EXTRACTOR_TASKS = set()\n-NO_IMAGE_PROCESSOR_TASKS = set()\n-NO_TOKENIZER_TASKS = set()\n-\n-# Those model configs are special, they are generic over their task, meaning\n-# any tokenizer/feature_...
2025-07-14T15:40:04
nodejs/node
12c0fd4c9a0946dc821029738b80fd1998064125
7c64133760528aed0dd9e7781056e6a5ea266a69
doc: fix linting errors PR-URL: https://github.com/nodejs/node/pull/24229 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -260,7 +260,10 @@ not capture any frames.\n * {string}\n \n The `error.code` property is a string label that identifies the kind of error.\n-`error.code` is the most stable way to identify an error. It will only change between major versions of Node.js. In contras...
2018-11-07T17:36:57
vercel/next.js
ce46922b59dd0ee47f1c7e1ba6005d89252ce2b7
d7b479a8a90114db635012de4bc45818ef96e4b6
speeds O(n^2) execution of detectConflictingPaths (#46080) ## Bug - [x] Related issues linked using `fixes #46079` https://github.com/vercel/next.js/issues/46079 - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributin...
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -1554,6 +1554,17 @@ export function detectConflictingPaths(\n >()\n \n const dynamicSsgPages = [...ssgPages].filter((page) => isDynamicRoute(page))\n+ const additionalSsgPathsByPath: {\n+ [page: string]: { [path: string]: string }\n+ } = {}...
2023-02-20T04:18:29
huggingface/transformers
903944a411c35b8f7b2b51ada77a7c2a80e7fb88
8165c703ab4284a189cef18dd7c8bad767318e75
[examples] fix do_reduce_labels argument for run_semantic_segmentation_no_trainer (#39322) * no use do_reduce_labels argument in model * use do_reducer_labels in AutoImageProcessor
[ { "path": "examples/pytorch/semantic-segmentation/run_semantic_segmentation_no_trainer.py", "patch": "@@ -324,13 +324,12 @@ def main():\n args.model_name_or_path, id2label=id2label, label2id=label2id, trust_remote_code=args.trust_remote_code\n )\n image_processor = AutoImageProcessor.from_pr...
2025-07-14T10:16:49
electron/electron
90b255f2cdd58e8082f4b39d3d2901b88fc27b85
80dd72b93c9946383f0ff74b9d836c0276b3886f
Fix API changes
[ { "path": "brightray/browser/devtools_manager_delegate.cc", "patch": "@@ -50,17 +50,24 @@ const char kTargetTypeOther[] = \"other\";\n class TCPServerSocketFactory\n : public content::DevToolsHttpHandler::ServerSocketFactory {\n public:\n- TCPServerSocketFactory(const std::string& address, int port, i...
2015-04-21T10:54:57
golang/go
6a35e075126f4f78d50f236856fc5ba759616ee7
4f0dedca7141afafbc01be96097570de2da2bdcc
cmd/compile: fix stenciling of conversions between interfaces Conversions need to allow nil through. We do that using a CONVIFACE instead of a DOTTYPE. Also reorganize how nonempty interfaces are handled. For nonempty to empty, a simple CONVIFACE suffices. For nonempty to nonempty, we need to call the runtime to get ...
[ { "path": "src/cmd/compile/internal/noder/stencil.go", "patch": "@@ -737,7 +737,7 @@ func (g *irgen) genericSubst(newsym *types.Sym, nameNode *ir.Name, shapes []*typ\n \t\t\t\treturn\n \t\t\t}\n \t\t\tc := n.(*ir.ConvExpr)\n-\t\t\tif c.X.Type().HasShape() {\n+\t\t\tif c.X.Type().HasShape() && !c.X.Type().Is...
2021-08-24T22:41:11
vercel/next.js
cb03a79968c3703e65fecc015443999dc0146f1c
08bb2698f577a7dfcba0b3afbb696d5ad9d47f3e
fix: <title> problem in example/blog-starter (#46122) ## Bug Relate discussions: #38256 Occur in blog starter template. ``` Warning: A title element received an array with more than 1 element as children. In browsers title Elements can only have Text Nodes as children. If the children being rendered output mor...
[ { "path": "examples/blog-starter/pages/posts/[slug].tsx", "patch": "@@ -20,6 +20,7 @@ type Props = {\n \n export default function Post({ post, morePosts, preview }: Props) {\n const router = useRouter()\n+ const title = `${post.title} | Next.js Blog Example with ${CMS_NAME}`\n if (!router.isFallback &&...
2023-02-19T20:20:26
huggingface/transformers
8165c703ab4284a189cef18dd7c8bad767318e75
878d60a3cb072b60895eac8fcfd35798393420d9
Fix Lfm2 and common tests (#39398) * fix * better fix * typo
[ { "path": "tests/models/lfm2/test_modeling_lfm2.py", "patch": "@@ -85,6 +85,12 @@ def test_contrastive_generate_dict_outputs_use_cache(self):\n def test_contrastive_generate_low_memory(self):\n pass\n \n+ @unittest.skip(\n+ \"Lfm2 has a special cache format which is not compatible with...
2025-07-14T10:02:59
electron/electron
7c52838ece13c80760a4e0e44ef6e044d6e1b40b
3357dc0ef76435576cd94ca76bbc9fc95b8da548
Fix the build on OS X
[ { "path": "brightray/browser/notification_presenter_mac.h", "patch": "@@ -23,6 +23,7 @@ class NotificationPresenterMac : public NotificationPresenter {\n // NotificationPresenter:\n void ShowNotification(\n const content::PlatformNotificationData&,\n+ const SkBitmap& icon,\n scoped_ptr<...
2015-04-20T20:29:10
golang/go
4f0dedca7141afafbc01be96097570de2da2bdcc
39eb1cc3f4a7d620d3faae139f83e88e652f5d25
cmd/compile: fix parameterized interfaces type I[T any] interface{} This is an interface, but it has a type parameter. We need to distinguish that from an interface that is not parameterized. That means when doing type substitution on an interface with parameters, we need to make a new one. Same for non-empty inter...
[ { "path": "src/cmd/compile/internal/typecheck/subr.go", "patch": "@@ -1163,8 +1163,8 @@ func (ts *Tsubster) typ1(t *types.Type) *types.Type {\n \t\t}\n \n \tcase types.TINTER:\n-\t\tnewt = ts.tinter(t)\n-\t\tif newt == t && !targsChanged {\n+\t\tnewt = ts.tinter(t, targsChanged)\n+\t\tif newt == t {\n \t\t\...
2021-08-24T21:50:05
vercel/next.js
08bb2698f577a7dfcba0b3afbb696d5ad9d47f3e
2f967ccd48a5e60d03ec6244d6490703d2c80939
Update error doc for CSS Modules in third-party deps (#46121) Fixes NEXT-355 ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Feature - [ ] Im...
[ { "path": "errors/css-modules-npm.md", "patch": "@@ -21,4 +21,8 @@ imported by you, in your application.\n ---\n \n If this is **first party code**, try\n-[including said monorepo package in the compilation pipeline](https://github.com/vercel/next.js/tree/canary/examples/with-yarn-workspaces).\n+[including ...
2023-02-19T13:39:13
huggingface/transformers
ad333d4852b7b2f85fabe5dde1ce615816221b03
c30af65521e806eac11552d1fcd83d8e1461c07f
[Qwen2.5-VL] Fix torch.finfo() TypeError for integer attention_mask_tensor (#39333) * Update modeling_qwen2_5_vl.py ### 🐛 Bug Description When using Unsloth’s Qwen2.5-VL vision models (both 3B and 7B) with the latest HuggingFace Transformers (commit: 520b9dcb42cef21662c304583368ff6645116a45), the model crashes du...
[ { "path": "src/transformers/models/glm4v/modeling_glm4v.py", "patch": "@@ -1301,8 +1301,10 @@ def forward(\n )\n if attention_mask_tensor is not None and attention_mask_tensor.ndim == 4:\n attention_mask_tensor = torch.diagonal(attention_mask_tensor[:, 0], dim1=1, dim...
2025-07-14T07:47:39
electron/electron
1cf1b5243d5d76a5cba51f768bd9fef74b7db3ae
4769e21e3dd7e65c12b10147ffc8561c7e2f116b
win: Delay load of MFReadWrite.dll Fixes atom/electron#1442.
[ { "path": "brightray/brightray.gyp", "patch": "@@ -191,8 +191,10 @@\n # content_common.gypi:\n 'd3d9.dll',\n 'dxva2.dll',\n+ # media.gyp:\n 'mf.dll',\n 'mfplat.dll',\n+ ...
2015-04-20T11:47:21
vercel/next.js
2f967ccd48a5e60d03ec6244d6490703d2c80939
00b85280f5f51fdaad99b9b1eef41bac726d415d
Detect invalid metadata exports errors in next-swc (#46077) * Use next-swc to detect invalid metadata exports * In client components page under app dir, metadata exports are not available * In server components page under app dir, metadata and gM exports can be exported together Move sync metadata / async metad...
[ { "path": "packages/next-swc/crates/core/src/react_server_components.rs", "patch": "@@ -1,3 +1,4 @@\n+use std::collections::HashMap;\n use std::path::PathBuf;\n \n use regex::Regex;\n@@ -249,7 +250,7 @@ impl<C: Comments> ReactServerComponents<C> {\n );\n }\n \n- fn assert_server_graph(&self, ...
2023-02-19T07:36:50
huggingface/transformers
c30af65521e806eac11552d1fcd83d8e1461c07f
66cd9956184f22ba43b975e5360e793eee87c146
[BLIP] remove cache from Qformer (#39335) * remove cache from Qformer * fix * this was never correct...
[ { "path": "src/transformers/models/blip_2/modeling_blip_2.py", "patch": "@@ -37,6 +37,7 @@\n from ...processing_utils import Unpack\n from ...pytorch_utils import apply_chunking_to_forward, find_pruneable_heads_and_indices, prune_linear_layer\n from ...utils import ModelOutput, TransformersKwargs, auto_docs...
2025-07-14T07:20:01
nodejs/node
7c64133760528aed0dd9e7781056e6a5ea266a69
ff0719d5fb6439c958aa4d9c225acaa3505edaa3
src: fix Set() usage in env-inl.h PR-URL: https://github.com/nodejs/node/pull/24060 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/env-inl.h", "patch": "@@ -736,7 +736,7 @@ inline void Environment::SetMethod(v8::Local<v8::Object> that,\n const v8::NewStringType type = v8::NewStringType::kInternalized;\n v8::Local<v8::String> name_string =\n v8::String::NewFromUtf8(isolate(), name, type).ToLocalChecked();\n- th...
2018-11-03T15:52:37
vercel/next.js
00b85280f5f51fdaad99b9b1eef41bac726d415d
b63a2a2b0f7e2e0d318ade1f6521cef96cf4a1e1
Fix React key warning when using metadata.twitter.images (#46106) Fixes #46103
[ { "path": "packages/next/src/lib/metadata/generate/opengraph.tsx", "patch": "@@ -260,16 +260,16 @@ export function TwitterMetadata({\n <Meta name=\"twitter:title\" content={twitter.title?.absolute} />\n <Meta name=\"twitter:description\" content={twitter.description} />\n {twitter.images\n...
2023-02-19T01:10:01
huggingface/transformers
66cd9956184f22ba43b975e5360e793eee87c146
a1ad9197c5756858e9014a0e01fe5fb1791efdf2
[shieldgemma] fix checkpoint loading (#39348) * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -240,6 +240,7 @@ def is_local_dist_rank_0():\n \"mistral3\",\n \"mllama\",\n \"paligemma\",\n+ \"shieldgemma2\",\n \"qwen2vl\",\n \"qwen2_5_vl\",\n \"videollava\",", "additions": 1, "deletions": 0, "language"...
2025-07-14T06:34:58
huggingface/transformers
a1ad9197c5756858e9014a0e01fe5fb1791efdf2
dc98fb3e5e1439896c03265ad84335b122ce4b27
Fix overriding Fast Image/Video Processors instance attributes affect other instances (#39363) * fix and add tests * nit
[ { "path": "src/transformers/image_processing_utils_fast.py", "patch": "@@ -13,6 +13,7 @@\n # limitations under the License.\n \n from collections.abc import Iterable\n+from copy import deepcopy\n from functools import lru_cache, partial\n from typing import Any, Optional, TypedDict, Union\n \n@@ -229,7 +230...
2025-07-12T23:39:06
nodejs/node
ff0719d5fb6439c958aa4d9c225acaa3505edaa3
5c9a4b23a80f98588632776e9787bbd7394c6729
src: fix Set() usage in node.h PR-URL: https://github.com/nodejs/node/pull/24060 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/node.h", "patch": "@@ -369,7 +369,7 @@ inline void NODE_SET_METHOD(v8::Local<v8::Object> recv,\n v8::Local<v8::String> fn_name = v8::String::NewFromUtf8(isolate, name,\n v8::NewStringType::kInternalized).ToLocalChecked();\n fn->SetName(fn_name);\n- recv->Set(fn_name, fn);\n+ recv-...
2018-11-03T15:41:17
vercel/next.js
b63a2a2b0f7e2e0d318ade1f6521cef96cf4a1e1
8c1f210019db953e2bf0dab36420ae6f176ac8e7
fix: typedroute routes for window (#46099) This pr filters out `non-page` files for `pages` dir and fixes path for windows os ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/bl...
[ { "path": "packages/next/src/build/webpack/plugins/next-types-plugin.ts", "patch": "@@ -220,15 +220,23 @@ export class NextTypesPlugin {\n return\n }\n \n+ // Filter out non-page files in pages dir\n+ if (\n+ !isApp &&\n+ /[/\\\\](?:_app|_document|_error|404|500)\\.[^.]+$/.test(fil...
2023-02-18T23:59:32
electron/electron
c1737e5c16cfc1a66a5ff354104e29647c7e867b
1d148fe2fb0d7013d7d6633539de952e71d756f1
Parse the debug args of Node
[ { "path": "atom/common/node_bindings.cc", "patch": "@@ -128,6 +128,11 @@ void NodeBindings::Initialize() {\n node::g_standalone_mode = is_browser_;\n node::g_upstream_node_mode = false;\n \n+ // Parse the debug args.\n+ auto args = AtomCommandLine::argv();\n+ for (const std::string& arg : args)\n+ ...
2015-04-20T07:12:46
rust-lang/rust
bc9cdc960f7ba7a926cea97cf0cec77097ca7851
356f2d077498d0ebe5ec4f9cfef04293a2b17611
Return correct error term kind on projection errors
[ { "path": "compiler/rustc_trait_selection/src/traits/project.rs", "patch": "@@ -378,6 +378,7 @@ pub(super) fn opt_normalize_projection_term<'a, 'b, 'tcx>(\n term: projected_term,\n obligations: mut projected_obligations,\n })) => {\n+ debug!(\"opt_normalize_project...
2025-05-21T17:37:39
huggingface/transformers
0d7efe3e4b7e057d105d90862cffc4f8cc125d1a
a646fd55fdd97427ad33c4ee17d41758b7cafa99
fix gpt2 usage doc (#39351) fix typo of gpt2 doc usage
[ { "path": "docs/source/en/model_doc/gpt2.md", "patch": "@@ -57,7 +57,7 @@ from transformers import AutoModelForCausalLM, AutoTokenizer\n model = AutoModelForCausalLM.from_pretrained(\"openai-community/gpt2\", torch_dtype=torch.float16, device_map=\"auto\", attn_implementation=\"sdpa\")\n tokenizer = AutoTok...
2025-07-11T17:59:41
nodejs/node
5c9a4b23a80f98588632776e9787bbd7394c6729
312baacd934d53079e4e04fdcd9647660692f97e
src: fix Get() usage in tls_wrap.cc PR-URL: https://github.com/nodejs/node/pull/24060 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/tls_wrap.cc", "patch": "@@ -213,17 +213,22 @@ void TLSWrap::SSLInfoCallback(const SSL* ssl_, int where, int ret) {\n Local<Object> object = c->object();\n \n if (where & SSL_CB_HANDSHAKE_START) {\n- Local<Value> callback = object->Get(env->onhandshakestart_string());\n- if (callback...
2018-11-03T15:24:50
rust-lang/rust
7966f1b556f39882b3e451533a74a3b24a34cb05
11c15229557cb489a5604f13e26a51099cc05314
fixed typo in readme
[ { "path": "library/compiler-builtins/README.md", "patch": "@@ -5,7 +5,7 @@ This repository contains two main crates:\n * `compiler-builtins`: symbols that the compiler expects to be available at\n link time\n * `libm`: a Rust implementation of C math libraries, used to provide\n- implementations in `ocre...
2025-05-10T08:36:28
electron/electron
1d148fe2fb0d7013d7d6633539de952e71d756f1
88a1c7973c65bdb25894ba996ae92cb9f89d5136
Remove our own debugger implementation Previously it was used because Node doesn't provide one for latest V8.
[ { "path": "atom/browser/atom_browser_main_parts.cc", "patch": "@@ -8,7 +8,6 @@\n #include \"atom/browser/atom_browser_context.h\"\n #include \"atom/browser/browser.h\"\n #include \"atom/browser/javascript_environment.h\"\n-#include \"atom/browser/node_debugger.h\"\n #include \"atom/common/api/atom_bindings....
2015-04-20T06:35:57
huggingface/transformers
a646fd55fdd97427ad33c4ee17d41758b7cafa99
af74ec65a7d5a1fbe220164f0c3ece601c091114
Updated CamemBERT model card to new standardized format (#39227) * Updated CamemBERT model card to new standardized format * Applied review suggestions for CamemBERT: restored API refs, added examples, badges, and attribution * Updated CamemBERT usage examples, quantization, badges, and format * Updated CamemBERT b...
[ { "path": "docs/source/en/model_doc/camembert.md", "patch": "@@ -14,49 +14,105 @@ rendered properly in your Markdown viewer.\n \n -->\n \n+<div style=\"float: right;\">\n+\t<div class=\"flex flex-wrap space-x-1\">\n+\t\t<img alt=\"PyTorch\" src=\"https://img.shields.io/badge/PyTorch-DE3412?style=flat&logo=p...
2025-07-11T17:59:09
vercel/next.js
8c1f210019db953e2bf0dab36420ae6f176ac8e7
c4db007220e9642d4ccab1adc1eab76536a5d3ec
Fix small error in documentation (#46105) Just fixing a small comment in the doc
[ { "path": "docs/basic-features/data-fetching/incremental-static-regeneration.md", "patch": "@@ -73,7 +73,7 @@ export async function getStaticPaths() {\n }))\n \n // We'll pre-render only these paths at build time.\n- // { fallback: blocking } will server-render pages\n+ // { fallback: 'blocking' } wil...
2023-02-18T21:44:47
nodejs/node
312baacd934d53079e4e04fdcd9647660692f97e
c3809ffc243c04b0de3dc3ef289bb713bbd832a9
src: fix Get() usage in async_wrap.cc PR-URL: https://github.com/nodejs/node/pull/24060 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/async_wrap.cc", "patch": "@@ -347,8 +347,13 @@ void AsyncWrap::WeakCallback(const v8::WeakCallbackInfo<DestroyParam>& info) {\n \n std::unique_ptr<DestroyParam> p{info.GetParameter()};\n Local<Object> prop_bag = PersistentToLocal(info.GetIsolate(), p->propBag);\n+ Local<Value> val;\n+\n+...
2018-11-03T14:41:10
golang/go
2c60a99f723e779a39664b5f12cb41878fd4a700
d350a6653252fe1f698ac00be99964fa31d06e89
cmd/compile/internal/syntax: make valid type parameter list in presence of errors Make sure the parser fills in names and types for type parameter lists, even in the case of errors. While at it, adjust some of the test functions to accept generic code and report all syntax errors. Added offending source as test for ...
[ { "path": "src/cmd/compile/internal/syntax/dumper_test.go", "patch": "@@ -13,11 +13,7 @@ func TestDump(t *testing.T) {\n \t\tt.Skip(\"skipping test in short mode\")\n \t}\n \n-\t// provide a no-op error handler so parsing doesn't stop after first error\n-\tast, err := ParseFile(*src_, func(error) {}, nil, C...
2021-08-26T21:52:32
electron/electron
88a1c7973c65bdb25894ba996ae92cb9f89d5136
7a52a4cff11ed55387be81ace741d286874ca9b6
Set node::node_isolate to fix crash
[ { "path": "atom/app/node_main.cc", "patch": "@@ -30,6 +30,7 @@ int NodeMain(int argc, char *argv[]) {\n exec_argc, exec_argv);\n \n // Start debugger.\n+ node::node_isolate = gin_env.isolate();\n if (node::use_debug_agent)\n node::StartDebug(env, node::debug_wait_connect);\n ", ...
2015-04-20T06:32:41
vercel/next.js
28eb15f6c6c6ef50f733a20faba199d8f48c1807
be2d413600e74152cebf6719a34a5cd648099da5
Fix manifest error when using route.js (#46102) This ensures there is no client component entry created for route.js. @shuding is going to investigate further why this would break the manifest generation in development. Fixes #45956 Fixes NEXT-588 <!-- Thanks for opening a PR! Your contribution is much app...
[ { "path": "packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts", "patch": "@@ -31,6 +31,7 @@ import {\n } from '../loaders/utils'\n import { traverseModules } from '../utils'\n import { normalizePathSep } from '../../../shared/lib/page-path/normalize-path-sep'\n+import { isAppRouteRoute } ...
2023-02-18T19:31:49
nodejs/node
1368eb893c4c6f282456210e9f8f54f53536d151
366f9b9b556ace5f26ca4c796a70baf508a02b9a
doc: add text about error.code stability Fixes: https://github.com/nodejs/node/issues/23975 PR-URL: https://github.com/nodejs/node/pull/24090 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -260,7 +260,7 @@ not capture any frames.\n * {string}\n \n The `error.code` property is a string label that identifies the kind of error.\n-See [Node.js Error Codes][] for details about specific codes.\n+`error.code` is the most stable way to identify an error. It...
2018-11-04T22:29:45
huggingface/transformers
70e57e4710d8a617a6f0ea73183d9bc4c91063c9
665418dacc199d0c0825cdb0442de46b04e40e15
Add mistral common support (#38906) * wip: correct docstrings * Add mistral-common support. * quality * wip: add requested methods * wip: fix tests * wip: add internally some methods not being supported in mistral-common * wip * wip: add opencv dependency and update test list * wip: add mistral-common to testi...
[ { "path": "conftest.py", "patch": "@@ -28,6 +28,7 @@\n \n NOT_DEVICE_TESTS = {\n \"test_tokenization\",\n+ \"test_tokenization_mistral_common\",\n \"test_processor\",\n \"test_processing\",\n \"test_beam_constraints\",", "additions": 1, "deletions": 0, "language": "Python" }...
2025-07-11T16:26:58
golang/go
d7e2e2ec2b2a11c2bfb98a27c03d0dccba62c4fb
c92759978372ffc354f83e08b1dd6fa496e9b545
cmd/compile: delay fillinMethods to deal with mutually-recursive types We need to delay fillinMethods until we get to a top-level type, so we know all the TFORW types have been filled in, and we can do the substitutions required by fillinMethods. Fixes #47710 Change-Id: I298de7e7753ed31a2c2b1ff04f35177a8afc7a66 Revi...
[ { "path": "src/cmd/compile/internal/noder/irgen.go", "patch": "@@ -149,6 +149,9 @@ type irgen struct {\n \t// statements yet.\n \texprStmtOK bool\n \n+\t// types which we need to finish, by doing g.fillinMethods.\n+\ttypesToFinalize []*typeDelayInfo\n+\n \t// Fully-instantiated generic types whose methods s...
2021-08-18T13:28:40
electron/electron
7a52a4cff11ed55387be81ace741d286874ca9b6
ee08d98d2e8cfc932a6e11babbe23c81e94c8a6b
Also enable the debugger
[ { "path": "atom/app/node_main.cc", "patch": "@@ -26,12 +26,19 @@ int NodeMain(int argc, char *argv[]) {\n \n JavascriptEnvironment gin_env;\n node::Environment* env = node::CreateEnvironment(\n- gin_env.isolate(), gin_env.context(), argc, argv, exec_argc, exec_argv);\n+ gin_env.isolate...
2015-04-20T06:10:15
nodejs/node
366f9b9b556ace5f26ca4c796a70baf508a02b9a
18a4550f34c1f8716b1fd6ba39f619f7fdcb28fa
doc: update System Errors documentation Simplify text. Add explanation that `code` is the most stable way to identify an error, in contrast with `message` which is subject to change between patch-level versions of Node.js. Synchronize list of properties with text. Order properties alphabetically. PR-URL: https://gith...
[ { "path": "doc/api/errors.md", "patch": "@@ -441,86 +441,93 @@ checks or `abort()` calls in the C++ layer.\n \n ## System Errors\n \n-System errors are generated when exceptions occur within the Node.js\n-runtime environment. Typically, these are operational errors that occur\n-when an application violates ...
2018-11-04T19:59:14
huggingface/transformers
665418dacc199d0c0825cdb0442de46b04e40e15
601bea2c4efd58440f9a7399b0dfae164703338b
Remove device check in HQQ quantizer (#39299) * Remove device check in HQQ quantizer Fix https://github.com/huggingface/transformers/issues/38439 * Apply style fixes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
[ { "path": "src/transformers/quantizers/quantizer_hqq.py", "patch": "@@ -15,7 +15,7 @@\n from typing import TYPE_CHECKING, Any\n \n from ..integrations import prepare_for_hqq_linear\n-from ..utils import is_accelerate_available, is_hqq_available, is_torch_available, is_torch_xpu_available, logging\n+from ..u...
2025-07-11T14:59:51
golang/go
e7eee5e265440b0ed3b76093ccdfd776facc767a
f153b6739b30c1e99f8646f2dafc77a92204f10d
cmd/compile: remove ssagen/pgen_test.go This test was written in 2015, and hasn't had any meaningful changes to it since. However, it's very ad hoc and pokes into internals that it shouldn't, and it keeps getting in the way of more meaningful refactorings. It doesn't even catch bugs; e.g., it didn't catch that cmpstac...
[ { "path": "src/cmd/compile/internal/ssagen/pgen.go", "patch": "@@ -75,7 +75,22 @@ func (s byStackVar) Swap(i, j int) { s[i], s[j] = s[j], s[i] }\n // allocate space. In particular, it excludes arguments and results, which are in\n // the callers frame.\n func needAlloc(n *ir.Name) bool {\n-\treturn n.C...
2021-08-26T22:30:40
electron/electron
ee08d98d2e8cfc932a6e11babbe23c81e94c8a6b
9cf4156928c4f42551865648a16b721a03325de5
node: start debugger for node run during a forked process
[ { "path": "atom/app/node_main.cc", "patch": "@@ -28,6 +28,10 @@ int NodeMain(int argc, char *argv[]) {\n node::Environment* env = node::CreateEnvironment(\n gin_env.isolate(), gin_env.context(), argc, argv, exec_argc, exec_argv);\n \n+ // Start debugger.\n+ if (node::use_debug_agent)\n+ ...
2015-04-14T02:15:34
vercel/next.js
be2d413600e74152cebf6719a34a5cd648099da5
70c087e4cf6188d5290b1fe32975b22e17b03b69
chore: Rename internal Webpack plugin (#46088) Rename `FlightTypesPlugin` to `NextTypesPlugin` as it's more general now (handles https://beta.nextjs.org/docs/configuring/typescript#statically-typed-links as well). `test/integration/app-link-types` was a non-existing test that I accidentally committed previously. ## ...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -48,7 +48,7 @@ import { regexLikeCss } from './webpack/config/blocks/css'\n import { CopyFilePlugin } from './webpack/plugins/copy-file-plugin'\n import { FlightManifestPlugin } from './webpack/plugins/flight-manifest-plugin'\n import { Fli...
2023-02-18T19:12:20
nodejs/node
18a4550f34c1f8716b1fd6ba39f619f7fdcb28fa
53be304614509d12be024fd8a24b6449c4b90bbf
test: disable color formating for test-internal-errors.js PR-URL: https://github.com/nodejs/node/pull/24204 Fixes: https://github.com/nodejs/node/issues/24193 Refs: https://github.com/nodejs/node/pull/19723 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
[ { "path": "test/parallel/test-internal-errors.js", "patch": "@@ -10,6 +10,10 @@ const { internalBinding } = require('internal/test/binding');\n const assert = require('assert');\n const errors = require('internal/errors');\n \n+// Turn off ANSI color formatting for this test file.\n+const { inspect } = requ...
2018-11-06T21:04:08
huggingface/transformers
601bea2c4efd58440f9a7399b0dfae164703338b
24f771a043871a109d8a969bf92730746e085f3b
Verbose error in fix mode for utils/check_docstrings.py (#38915) * fix ast deprecations for python 3.14: replace node.n by node.value and use `ast.Constant` More verbose exceptions in `fix_docstring` on docstring formatting issues.
[ { "path": "utils/check_docstrings.py", "patch": "@@ -681,8 +681,8 @@ def eval_math_expression(expression: str) -> Optional[Union[float, int]]:\n \n \n def eval_node(node):\n- if isinstance(node, ast.Num): # <number>\n- return node.n\n+ if isinstance(node, ast.Constant) and type(node.value) in ...
2025-07-11T14:36:10
golang/go
af80af22b507ae23ae04372f30b98f7720c85f8a
03db2c24136939416903b284a19905d97ceea40d
cmd/compile/internal/types2: do not declare new methods on instantiated types Report an error if an alias is used to declare a method on an instantiated type. Also, when resolving the receiver type, don't use asNamed to avoid premature expansion of the type. Fixes #47968. Change-Id: Ie5acc4cfb1944deaaeeaee98707f31e...
[ { "path": "src/cmd/compile/internal/types2/signature.go", "patch": "@@ -132,7 +132,7 @@ func (check *Checker) funcType(sig *Signature, recvPar *syntax.Field, tparams []\n \t\t\t\t// Also: Don't report an error via genericType since it will be reported\n \t\t\t\t// again when we type-check the signatur...
2021-08-26T19:27:06
electron/electron
9cf4156928c4f42551865648a16b721a03325de5
96c886a8f03f796a73769344c0d72a2385191fe7
Upgrade node for debugger flags
[ { "path": "vendor/node", "patch": "@@ -1 +1 @@\n-Subproject commit 9f7ab575d78fa4c50cc5529f15646c8a37eb3258\n+Subproject commit 2caa321f8b6bb68838ee48a4c9efb820bf085337", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2015-04-20T06:05:47
vercel/next.js
70c087e4cf6188d5290b1fe32975b22e17b03b69
0bc4d568b3123ae159094564ed921bc914a756f2
Fix flaky invalid import test (#46089) <!-- 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: --> ## Bug - [ ] Relat...
[ { "path": "test/development/acceptance-app/invalid-imports.test.ts", "patch": "@@ -188,7 +188,6 @@ createNextDescribe(\n [\n 'app/comp2.js',\n `\n- import \"server-only-package\"\n export function Comp2() {\n return (\n <...
2023-02-18T11:33:06
nodejs/node
a49b672aad41e5f81a87d3df3d97589f031903e7
bec505bed7518697ad4679b864c1adbb1162a0fa
doc: add shisama to collaborators PR-URL: https://github.com/nodejs/node/pull/24136 Fixes: https://github.com/nodejs/node/issues/23850 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Michaël Zasso <targos@prot...
[ { "path": "README.md", "patch": "@@ -433,6 +433,8 @@ For information about the governance of the Node.js project, see\n **Nikolai Vavilov** &lt;vvnicholas@gmail.com&gt;\n * [shigeki](https://github.com/shigeki) -\n **Shigeki Ohtsu** &lt;ohtsu@ohtsu.org&gt; (he/him)\n+* [shisama](https://github.com/shisama) ...
2018-11-06T14:43:41
huggingface/transformers
24f771a043871a109d8a969bf92730746e085f3b
ee74397d207cb6e5e698a558c2952f54935bd942
fix failing `test_sdpa_can_dispatch_on_flash` (#39259) * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/utils/generic.py", "patch": "@@ -993,16 +993,23 @@ def check_model_inputs(func):\n \n @wraps(func)\n def wrapper(self, *args, **kwargs):\n- use_cache = kwargs.get(\"use_cache\", getattr(self.config, \"use_cache\", False))\n- return_dict = kwargs.pop(\"return...
2025-07-11T14:30:56
golang/go
03db2c24136939416903b284a19905d97ceea40d
c9e05fdcf7fd49e9b27f8bcb16347d17d04bc4e7
cmd/compile/internal/types2: implement TypeList.String (debugging support) Change-Id: Iaa203def3dac94a7d5ff6120e89315c3d7977ee1 Reviewed-on: https://go-review.googlesource.com/c/go/+/345471 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
[ { "path": "src/cmd/compile/internal/types2/instantiate.go", "patch": "@@ -75,7 +75,7 @@ func Instantiate(env *Environment, typ Type, targs []Type, validate bool) (Type,\n func (check *Checker) instantiate(pos syntax.Pos, typ Type, targs []Type, posList []syntax.Pos) (res Type) {\n \tassert(check != nil)\n \...
2021-08-26T18:56:52
electron/electron
0d3cc8aaa789bce5da35736af9dc5ea9b37740e3
96c886a8f03f796a73769344c0d72a2385191fe7
Fix some draw issues in native mac os window Fix some non-transparent corners and lacking redraw while resizing non-frame window
[ { "path": "atom/browser/native_window_mac.mm", "patch": "@@ -348,6 +348,11 @@ - (void)drawRect:(NSRect)dirtyRect {\n [window_ setHasShadow:NO];\n [window_ setBackgroundColor:[NSColor clearColor]];\n }\n+ \n+ // Fix some non-transparent corners and lacking redraw while resizing non-frame window\n...
2015-04-18T12:08:22
rust-lang/rust
c430b87539d49720346f2652ebf87fa7396776c5
90a007c73412c6444e7379688e609e29efd618d8
Fix typos
[ { "path": "example/std_example.rs", "patch": "@@ -77,18 +77,18 @@ fn main() {\n assert_eq!(tmp as i128, -0x1234_5678_9ABC_DEF0i128);\n \n // Check that all u/i128 <-> float casts work correctly.\n- let houndred_u128 = 100u128;\n- let houndred_i128 = 100i128;\n- let houndred_f32 = 100.0f32;\...
2025-05-21T18:38:19
vercel/next.js
f9346f15d7ee76a41698537955c93432a3dc1157
0fe793f51cf55d7e461ca210ba767b6a1a06dff5
Update @testing-library/react in with-redux example (#46085) <!-- 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: --> ...
[ { "path": "examples/with-redux/package.json", "patch": "@@ -16,7 +16,7 @@\n },\n \"devDependencies\": {\n \"@testing-library/jest-dom\": \"^5.0.0\",\n- \"@testing-library/react\": \"^12.1.0\",\n+ \"@testing-library/react\": \"^14.0.0\",\n \"@testing-library/user-event\": \"^13.0.0\",\n ...
2023-02-18T07:21:43
nodejs/node
bec505bed7518697ad4679b864c1adbb1162a0fa
0f63d84f807edb17466f9357a630467cf608f954
build,meta: don't fail Travis for commit message PR-URL: https://github.com/nodejs/node/pull/23739 Fixes: https://github.com/nodejs/node/issues/23737 Refs: https://github.com/nodejs/node/pull/22452 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig ...
[ { "path": ".travis.yml", "patch": "@@ -12,7 +12,7 @@ matrix:\n - make lint\n # Lint the first commit in the PR.\n - if [ \"${TRAVIS_PULL_REQUEST}\" != \"false\" ]; then\n- bash tools/lint-pr-commit-message.sh ${TRAVIS_PULL_REQUEST};\n+ bash tools/lint-pr-commit-...
2018-10-18T21:16:24
golang/go
c9e05fdcf7fd49e9b27f8bcb16347d17d04bc4e7
eb6a07fcf99050c447097a8ff6358c484c0f8715
cmd/compile: fix reference to generic type needed by crawler This problem happens when you create a new local type that uses an imported generic type (maybe just by instantiating it), and then that local type needed to be included as part of an export. In that case, the imported generic type is does not have a declara...
[ { "path": "src/cmd/compile/internal/noder/types.go", "patch": "@@ -118,9 +118,14 @@ func (g *irgen) typ0(typ types2.Type) *types.Type {\n \t\t\t\treturn s.Def.Type()\n \t\t\t}\n \n+\t\t\t// Make sure the base generic type exists in type1 (it may\n+\t\t\t// not yet if we are referecing an imported generic ty...
2021-08-25T00:35:51
huggingface/transformers
9bc675b3b6e6faddb90619a0f1fdc43cce943190
bf607f6d3bd7bf95aaa1094c3a51c3476e4ddc29
Fix link for testpypi (#39360) fix link
[ { "path": "setup.py", "patch": "@@ -52,7 +52,7 @@\n twine upload dist/* -r testpypi --repository-url=https://test.pypi.org/legacy/\n \n Check that you can install it in a virtualenv by running:\n- pip install -i https://testpypi.python.org/pypi transformers\n+ pip install -i https://test.pypi.org/...
2025-07-11T13:34:01
vercel/next.js
0fe793f51cf55d7e461ca210ba767b6a1a06dff5
67a719c56ce36520091301d18ca61ee98cf3718e
Add `vary` header to responses from pages and Edge SSR (#46073) This PR ensures that the `vary` header is set for pages responses and Edge SSR responses too, to avoid potential caching problems when navigating between them. ## Bug - [ ] Related issues linked using `fixes #number` - [x] Integration tests added...
[ { "path": "packages/next/src/build/webpack/loaders/next-edge-ssr-loader/render.ts", "patch": "@@ -82,6 +82,7 @@ export function getRender({\n pagesRenderToHTML,\n loadComponent: async (pathname) => {\n if (isAppPath) return null\n+\n if (pathname === page) {\n return {\...
2023-02-18T06:54:48
nodejs/node
0f63d84f807edb17466f9357a630467cf608f954
5850220229cdd8b62f6d5022779af7c232231d64
crypto: set `DEFAULT_ENCODING` property to non-enumerable Since it is a deprecated API, a deprecation warning is printed when loading crypto module from ESM. Making it non enumerable remove the deprecation warning and make the API non-available to named imports. PR-URL: https://github.com/nodejs/node/pull/23222 Fixes...
[ { "path": "lib/crypto.js", "patch": "@@ -230,7 +230,7 @@ Object.defineProperties(exports, {\n fipsForced ? setFipsForced : setFipsCrypto\n },\n DEFAULT_ENCODING: {\n- enumerable: true,\n+ enumerable: false,\n configurable: true,\n get: deprecate(getDefaultEncoding,\n ...
2018-10-02T17:12:32
electron/electron
fa13ebf5024733dcbd19ef177db641c1bf3a3917
b365cdc28391ad8c3f4c9933a0466e7282f92aa9
:art: Fix a typo
[ { "path": "npm/package.json", "patch": "@@ -4,7 +4,7 @@\n \"description\": \"Install electron (formerly called atom-shell) prebuilts using npm\",\n \"repository\": {\n \"type\": \"git\",\n- \"url\": \"https://github.com/mafintosh/electron\"\n+ \"url\": \"https://github.com/mafintosh/electron-p...
2015-04-17T18:30:44
vercel/next.js
67a719c56ce36520091301d18ca61ee98cf3718e
c7f43e583d6237b18e4ae3a565cc30bbd85d218c
Update next/font/google data (#46040) <!-- 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: --> ## Bug - [ ] Relate...
[ { "path": "packages/font/src/google/font-data.json", "patch": "@@ -3592,6 +3592,11 @@\n \"styles\": [\"normal\"],\n \"subsets\": [\"latin\", \"latin-ext\"]\n },\n+ \"Gajraj One\": {\n+ \"weights\": [\"400\"],\n+ \"styles\": [\"normal\"],\n+ \"subsets\": [\"devanagari\", \"latin\", \"lati...
2023-02-18T06:44:37
huggingface/transformers
bf607f6d3bd7bf95aaa1094c3a51c3476e4ddc29
4b47b2b8ea9252e36669397243b770505f953d69
PerceptionLM (#37878) * plm template * A working plm with fixed image features * hacked processor * First version that reproduced PLM output using PE from timm. * Simplify and fix tie_word_embeddings * Use PIL resize. Simplify converstion. * First version that works with video input. * simplifed image preproces...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1039,6 +1039,8 @@\n title: PaliGemma\n - local: model_doc/perceiver\n title: Perceiver\n+ - local: model_doc/perception_lm\n+ title: PerceptionLM\n - local: model_doc/phi4_multimodal\n title: Phi4 Multimod...
2025-07-11T09:07:32
nodejs/node
5850220229cdd8b62f6d5022779af7c232231d64
7b1297d856dbd9af85c18478301b234caebf04e4
src: move error handling code into node_errors.cc Move the following code into a new node_errors.cc file and declare them in node_errors.h for clarity and make it possible to include them with node_errors.h. - AppendExceptionLine() - DecorateErrorStack() - FatalError() - OnFatalError() - PrintErrorString() - FatalExc...
[ { "path": "node.gyp", "patch": "@@ -345,6 +345,7 @@\n 'src/node_domain.cc',\n 'src/node_encoding.cc',\n 'src/node_errors.h',\n+ 'src/node_errors.cc',\n 'src/node_file.cc',\n 'src/node_http2.cc',\n 'src/node_http_parser.cc',", "additions": 1, "de...
2018-11-03T14:45:40
electron/electron
96c886a8f03f796a73769344c0d72a2385191fe7
0033240c1f2848750e64532a492b25e479ed714f
Fix upload.py for the rename
[ { "path": "script/upload.py", "patch": "@@ -102,12 +102,14 @@ def parse_args():\n \n def get_atom_shell_build_version():\n if PLATFORM == 'darwin':\n- atom_shell = os.path.join(SOURCE_ROOT, 'out', 'R', 'Atom.app',\n- 'Contents', 'MacOS', 'Atom')\n+ atom_shell = os.path.j...
2015-04-17T07:53:46
vercel/next.js
c7f43e583d6237b18e4ae3a565cc30bbd85d218c
be74d946b79bf1dd8b257df2cdddbb53df60f8b8
Fix adding-exmaples.md doc (#46051) <!-- 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: --> There are two edit point...
[ { "path": "contributing/examples/adding-examples.md", "patch": "@@ -1,6 +1,6 @@\n ## Adding examples\n \n-When you add an example to the [examples](examples) directory, please follow these guidelines to ensure high-quality examples:\n+When you add an example to the [examples](https://github.com/vercel/next....
2023-02-18T06:35:12
huggingface/transformers
fe1a5b73e62c54adafcedb47ac2430e058dc4312
571a8c21313ef734e77cf9874ea0334d25bd7ff5
[modular] speedup check_modular_conversion with multiprocessing (#37456) * Change topological sort to return level-based output (lists of lists) * Update main for modular converter * Update test * update check_modular_conversion * Update gitignore * Fix missing conversion for glm4 * Update * Fix error msg * Fi...
[ { "path": ".gitignore", "patch": "@@ -167,3 +167,6 @@ tags\n \n # ruff\n .ruff_cache\n+\n+# modular conversion\n+*.modular_backup", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "tests/repo_utils/modular/test_conversion_order.py", "patch": "@@ -38,20 +38,29 @@\n ...
2025-07-10T18:07:59
golang/go
5e6a7e9b860d7c8f589eec3c123469ea8071689f
166b691b652356074ea346157e8bbc13933380aa
embed: remove reference to global variables in docs Refering to variable is both redundant since package scope is used, and incorrect since global variables are not described in the spec. Change-Id: Ib08a9f072fc800ee36549f758b68167d8f044878 Reviewed-on: https://go-review.googlesource.com/c/go/+/344214 Reviewed-by: Ia...
[ { "path": "src/embed/embed.go", "patch": "@@ -83,8 +83,7 @@\n //\n // The //go:embed directive can be used with both exported and unexported variables,\n // depending on whether the package wants to make the data available to other packages.\n-// It can only be used with global variables at package scope,\n...
2021-08-23T09:43:35
electron/electron
0bab50ed806c1e2fd1a9c0f3940d4894709e0554
eb6fa46041b8ab7ff1b6d94c5a09f5fc30aeb2d8
Fix typo
[ { "path": "atom/app/atom_main_delegate_mac.mm", "patch": "@@ -21,7 +21,7 @@\n .Append(\"Frameworks\");\n }\n \n-base::FilePath GetHeleprAppPath(const base::FilePath& frameworks_path,\n+base::FilePath GetHelperAppPath(const base::FilePath& frameworks_path,\n ...
2015-04-17T07:10:48
nodejs/node
3a25b174aa5451311002247c31a7aa9a461b63b6
50f951c90f7a68bc4285a1cfb8e0180c9a336060
deps: upgrade to c-ares v1.15.0 Our out-of-tree patch from 2b6bb9f588 ("deps: c-ares float, win ipv6 bad fec0 prefix") should no longer be necessary, c-ares now blacklists such addresses itself. PR-URL: https://github.com/nodejs/node/pull/23854 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig...
[ { "path": "deps/cares/LICENSE.md", "patch": "@@ -1,6 +1,6 @@\n # c-ares license\n \n-Copyright (c) 2007 - 2016, Daniel Stenberg with many contributors, see AUTHORS\n+Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS\n file.\n \n Copyright 1998 by the Massachusetts Institute of T...
2018-10-24T14:49:04
huggingface/transformers
bdc8028cb3efe6e33982eb8d297ffbb695606e84
df49b399dc02a2375f0e9bd0e74c544247ab3976
[Core] [Offloading] Enable saving offloaded models with multiple shared tensor groups (#39263) * fix counting meta tensors, fix onloading meta tensors Signed-off-by: Kyle Sayers <kylesayrs@gmail.com> * remove unrelated fix Signed-off-by: Kyle Sayers <kylesayrs@gmail.com> * add test Signed-off-by: Kyle Sayers <kyl...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -3835,27 +3835,23 @@ def save_pretrained(\n # We're going to remove aliases before saving\n ptrs = collections.defaultdict(list)\n for name, tensor in state_dict.items():\n- # Sometimes in the sta...
2025-07-10T16:33:30
vercel/next.js
be74d946b79bf1dd8b257df2cdddbb53df60f8b8
7230258898739008b0544337b3d6b192156c145a
Fix next/font error parsing on windows (#46053) Make sure to check for Windows paths as well when formatting `next/font` errors. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/...
[ { "path": "packages/next/src/build/webpack/plugins/wellknown-errors-plugin/parseNextFontError.ts", "patch": "@@ -8,7 +8,7 @@ export function getNextFontError(\n const resourceResolveData = module.resourceResolveData\n if (\n !module.loaders.find((loader: any) =>\n- loader.loader.include...
2023-02-18T06:34:11
golang/go
083811d079a659f459eaad4a9dbafec7a50e1a20
c7e7ce5ec17c6a933f9dd3ba9dd1ec2d437ad832
[dev.boringcrypto] crypto/tls: use correct config in TestBoringClientHello The existing implementation sets the ClientConfig to specific values to check, but does not uses it in the actual testing. This commit make the test to actually use it, which can be used to flag bugs in the future. Change-Id: I8d883c1167516970...
[ { "path": "src/crypto/tls/boring_test.go", "patch": "@@ -264,7 +264,7 @@ func TestBoringClientHello(t *testing.T) {\n \tclientConfig.CipherSuites = allCipherSuites()\n \tclientConfig.CurvePreferences = defaultCurvePreferences\n \n-\tgo Client(c, testConfig).Handshake()\n+\tgo Client(c, clientConfig).Handsha...
2021-08-26T12:52:02
nodejs/node
441555866b1d4388a57273a2e61b9ae6a8651346
278086a3870ac5ab7b73d28ec7a33ea863c9209b
doc: implement minor text fixes to path.md posix -> POSIX platform specific -> platform-specific PR-URL: https://github.com/nodejs/node/pull/24118 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
[ { "path": "doc/api/path.md", "patch": "@@ -288,7 +288,7 @@ added: v0.1.16\n * Returns: {string}\n \n The `path.join()` method joins all given `path` segments together using the\n-platform specific separator as a delimiter, then normalizes the resulting path.\n+platform-specific separator as a delimiter, the...
2018-11-06T05:40:46
huggingface/transformers
9682d07f92bffcc2d091a32cfbb3692884e7cacd
38c3931362e4d6548c586d217452a19b279d9bbe
LFM2 (#39340) * [modeling][lfm2] LFM2 model on 4.53.0 interface * [configuration] hook in LFM2 keys * [modeling][lfm2] update modeling interface for 4.53.1 * [modeling][lfm2] apply mask to hidden conv states * [misc] ruff format/lint * [modeling][lfm2] minor: NotImplemented legacy cache conversion * Create lfm2....
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -517,6 +517,8 @@\n title: Jukebox\n - local: model_doc/led\n title: LED\n+ - local: model_doc/lfm2\n+ title: LFM2\n - local: model_doc/llama\n title: LLaMA\n - local: model_doc/llama2", "additions...
2025-07-10T14:07:33
rust-lang/rust
e0f80558716372902b2eda1e43ab2e169bfb3669
ca912d794d42336ddd54389480b56bfc2bc6685f
Fix FnOnce impl for AsyncFn/AsyncFnMut closures in new solver
[ { "path": "compiler/rustc_next_trait_solver/src/solve/assembly/structural_traits.rs", "patch": "@@ -327,7 +327,7 @@ pub(in crate::solve) fn extract_tupled_inputs_and_output_from_callable<I: Intern\n // always be called once. It additionally implements `Fn`/`FnMut`\n // only i...
2025-05-21T18:07:29
golang/go
770df2e18df01e64f8770301b0d3a5d6bfa04027
a6ff433d6a927e8ad8eaa6828127233296d12ce5
crypto/tls: fix typo in PreferServerCipherSuites comment Fixing a typo, Deprected -> Deprecated. Change-Id: Ie0ccc9a57ae6a935b4f67154ac097dba4c3832ec GitHub-Last-Rev: 57337cc1bfa771111f229e7b899fdfdad3b1655e GitHub-Pull-Request: golang/go#47745 Reviewed-on: https://go-review.googlesource.com/c/go/+/342791 Trust: Dmit...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -659,7 +659,7 @@ type Config struct {\n \t// cipher suite based on logic that takes into account inferred client\n \t// hardware, server hardware, and security.\n \t//\n-\t// Deprected: PreferServerCipherSuites is ignored.\n+\t// Deprecated: PreferServerCip...
2021-08-26T10:59:02
vercel/next.js
7230258898739008b0544337b3d6b192156c145a
607dd69b34bc6253e0a66cba31422334dd2a1174
Add `loader-runner` to compiled packages (#45962) This adds `loader-runner` to the compiled packages distributed with Next.js This is a dependency of Turbopack's webpack loader support. Currently, users have to manually install `loader-runner` in their application to use webpack loaders with Turbopack. This will...
[ { "path": "examples/with-turbopack-loaders/.gitignore", "patch": "@@ -0,0 +1,36 @@\n+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n+\n+# dependencies\n+/node_modules\n+/.pnp\n+.pnp.js\n+\n+# testing\n+/coverage\n+\n+# next.js\n+/.next/\n+/out/\n+\n+# production\n+/bu...
2023-02-18T06:24:40
nodejs/node
54e29221c35839cdd58cac3c05c73e9e9d8f4170
615160c38bc6c789f8215749291fea60aaae8db9
doc: fix minor text issues in stream.md Implement several minor grammar, punctuation, and style fixes in stream.md. PR-URL: https://github.com/nodejs/node/pull/24116 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
[ { "path": "doc/api/stream.md", "patch": "@@ -46,7 +46,7 @@ There are four fundamental stream types within Node.js:\n * [`Transform`][] - `Duplex` streams that can modify or transform the data as it\n is written and read (for example, [`zlib.createDeflate()`][]).\n \n-Additionally this module includes the ...
2018-11-06T04:40:07
rust-lang/rust
ca912d794d42336ddd54389480b56bfc2bc6685f
462cc099c93b2915eef61c3fbc504588b41b27d1
Make captures state error more precise
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs", "patch": "@@ -841,16 +841,17 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n return None;\n };\n \n- let (closure_def_id, found_args, by_ref_captures) = match *self_ty.kind() {\n+ ...
2025-05-21T14:55:47
huggingface/transformers
38c3931362e4d6548c586d217452a19b279d9bbe
6b09c8eab05820d480f4da97d23456428d410082
[server] add tests and fix passing a custom `generation_config` (#39230) * add tests; fix passing a custom generation_config * tool integration test * add install step * add accelerate as dep to serving * add todo
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -303,7 +303,7 @@ def job_name(self):\n docker_image=[{\"image\": \"huggingface/transformers-torch-light\"}],\n # networkx==3.3 (after #36957) cause some issues\n # TODO: remove this once it works directly\n- install_steps=[\"uv ven...
2025-07-10T13:41:38
electron/electron
a179e48e3baaf52d9159ab93c409b2b99ed0d558
0d3aaaf0af03eb090df190790143494ad6c86066
fixes spelling typo
[ { "path": "docs/tutorial/quick-start.md", "patch": "@@ -23,7 +23,7 @@ Since atom-shell uses Chromium for displaying web pages, Chromium's\n multi-processes architecture is also used. Each web page in atom-shell runs in\n its own process, which is called __the renderer process__.\n \n-In normal browsers web ...
2015-04-15T17:58:30
golang/go
a6ff433d6a927e8ad8eaa6828127233296d12ce5
4f2620285d7ce1802aff3d1f85e5ab0168d57bf3
cmd/go: pass -gcflags after other flags generated by the go command Otherwise, any gc flags set by user using "-gcflags" won't have effect. Fixes #47682 Change-Id: Icd365577cba1f64f6c7b8320d0c9019de9f062f6 Reviewed-on: https://go-review.googlesource.com/c/go/+/344909 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> ...
[ { "path": "src/cmd/go/internal/work/gc.go", "patch": "@@ -75,7 +75,7 @@ func (gcToolchain) gc(b *Builder, a *Action, archive string, importcfg, embedcfg\n \t}\n \n \tpkgpath := pkgPath(a)\n-\tgcargs := []string{\"-p\", pkgpath}\n+\tgcflags := []string{\"-p\", pkgpath}\n \tif p.Module != nil {\n \t\tv := p.M...
2021-08-25T07:56:01
vercel/next.js
607dd69b34bc6253e0a66cba31422334dd2a1174
7e6cc0c8db219cbe6b57cd3e3f66169966635c08
Fix export conditions in Webpack config (#46066) Currently the export conditions we use for certain runtime, in different places of the config are totally random. This PR unifies them by referring to the single constant. Also adds `worker` as a condition of the edge runtime. ## Bug - [ ] Related issues link...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -902,7 +902,13 @@ export default async function getBaseWebpackConfig(\n const mainFieldsPerCompiler: Record<typeof compilerType, string[]> = {\n [COMPILER_NAMES.server]: ['main', 'module'],\n [COMPILER_NAMES.client]: ['browser', '...
2023-02-18T06:20:18
nodejs/node
9a20a128305b95696a8de428afb223b21c9bb516
3458e65127e59b89ec0745845a0f3a73d8731da5
lib:fix grammar error and make it clearer for comments 1) Should be passive voice instead of `can overridden`. 2) Change the order of the two sentences to make it more clear about 'What can be overridden' instead of 'Can be overridden'. PR-URL: https://github.com/nodejs/node/pull/23799 Reviewed-By: Anna Henningsen <a...
[ { "path": "lib/repl.js", "patch": "@@ -126,8 +126,9 @@ function hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n }\n \n-// Can overridden with custom print functions, such as `probe` or `eyes.js`.\n-// This is the default \"writer\" value if none is passed in the REP...
2018-10-21T09:32:03
huggingface/transformers
6b09c8eab05820d480f4da97d23456428d410082
92043bde294da59207816c40c7601fbc49e10d8d
Handle DAC conversion when using weight_norm with newer PyTorch versions (#36393) * Update convert_dac_checkpoint.py * Update convert_dac_checkpoint.py * Apply style fixes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Anton Vlasjuk <73884904+vasqu@user...
[ { "path": "src/transformers/models/dac/convert_dac_checkpoint.py", "patch": "@@ -17,6 +17,7 @@\n import re\n \n import torch\n+import torch.nn as nn\n \n from transformers import (\n DacConfig,\n@@ -185,6 +186,38 @@ def recursively_load_weights(orig_dict, hf_model, model_name):\n logger.warning(f\"U...
2025-07-10T10:36:58
electron/electron
76316e5e65d0d74f25f6713662a894de3f78d497
14e05c6d68a8c5203d6e0050db04499c19423535
Forgot to set default version in crash reporter
[ { "path": "atom/common/api/lib/crash-reporter.coffee", "patch": "@@ -23,7 +23,7 @@ class CrashReporter\n \n extra._productName ?= @productName\n extra._companyName ?= companyName\n- extra._version ?=\n+ extra._version ?= app.getVersion()\n \n start = => binding.start @productName, companyN...
2015-04-14T09:37:22
golang/go
4f2620285d7ce1802aff3d1f85e5ab0168d57bf3
0ac64f6d700b56fa793d9304bec621cf4dde6fd6
cmd/compile/internal/types2: fix type set printing and add test Change-Id: I44ca1f889b041467d5febacaf6037cfd75859175 Reviewed-on: https://go-review.googlesource.com/c/go/+/344873 Trust: Robert Griesemer <gri@golang.org> Trust: Dan Scales <danscales@google.com> Reviewed-by: Dan Scales <danscales@google.com>
[ { "path": "src/cmd/compile/internal/types2/typeset.go", "patch": "@@ -77,26 +77,24 @@ func (s *_TypeSet) String() string {\n \tvar buf bytes.Buffer\n \tbuf.WriteByte('{')\n \tif s.comparable {\n-\t\tbuf.WriteString(\" comparable\")\n+\t\tbuf.WriteString(\"comparable\")\n \t\tif hasMethods || hasTerms {\n-\t...
2021-08-25T04:12:06
vercel/next.js
7e6cc0c8db219cbe6b57cd3e3f66169966635c08
930d27e64c78a69473d7b626c9c8e85dcdbf803e
Check for windows paths in server matchers (#46055) Check for Windows paths in the dev server router matchers. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary...
[ { "path": "packages/next/src/server/future/route-matcher-providers/dev/dev-app-page-route-matcher-provider.ts", "patch": "@@ -26,7 +26,7 @@ export class DevAppPageRouteMatcherProvider extends FileCacheRouteMatcherProvide\n \n // Match any page file that ends with `/page.${extension}` under the app\n ...
2023-02-18T05:40:07
huggingface/transformers
92043bde294da59207816c40c7601fbc49e10d8d
520b9dcb42cef21662c304583368ff6645116a45
fix `phi3` tests (#39312) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/phi3/test_modeling_phi3.py", "patch": "@@ -138,7 +138,12 @@ def test_model_phi3_mini_4k_instruct_logits(self):\n \n output = model(**input_ids).logits\n \n- EXPECTED_OUTPUT = torch.tensor([[ 0.9979, -1.9449, -2.5613, -2.2110, -0.9323, -2.2726, -3.2468, -2.0122,-1.0021,...
2025-07-10T09:51:55
nodejs/node
3458e65127e59b89ec0745845a0f3a73d8731da5
04a291abec3b86ed902c5e9919b2a8adf1e07d14
net: `net.Server.listen()` avoid operations on `null` when fail When `net.Server` fails to create a new handle, an error shall be emitted in the next tick. Therefore, we make `net.Server.listen()` directly return to avoid following operations on `null` `this._handle`. Fixes: https://github.com/nodejs/node/issues/239...
[ { "path": "lib/net.js", "patch": "@@ -1435,6 +1435,13 @@ Server.prototype.listen = function(...args) {\n backlog = options.backlog || backlogFromArgs;\n listenInCluster(this, pipeName, -1, -1,\n backlog, undefined, options.exclusive);\n+\n+ if (!this._handle) {\n+ // Fail...
2018-10-27T07:44:50
electron/electron
c6c305a8271c5e5011955a560e0e9bb7d87f21b3
b86f1495129f91a24fee134eac7fb658cc07ec5c
Don't hard-code product name in crash-repoter
[ { "path": "atom/common/api/lib/crash-reporter.coffee", "patch": "@@ -8,7 +8,13 @@ class CrashReporter\n start: (options={}) ->\n {@productName, companyName, submitUrl, autoSubmit, ignoreSystemCrashHandler, extra} = options\n \n- @productName ?= 'Atom-Shell'\n+ app =\n+ if process.type is 'b...
2015-04-14T07:39:48
vercel/next.js
930d27e64c78a69473d7b626c9c8e85dcdbf803e
b954bbe6760fe84eef0295339aefee5df006e0cc
Fix failed cache restoring (#46083) x-ref: https://github.com/vercel/next.js/actions/runs/4209022913/jobs/7306627952
[ { "path": ".github/workflows/build_test_deploy.yml", "patch": "@@ -671,7 +671,7 @@ jobs:\n \n testFirefox:\n name: Test Firefox (production)\n- runs-on: ubuntu-20.04\n+ runs-on: ubuntu-latest\n needs: [build, build-native-test]\n timeout-minutes: 10\n env:\n@@ -696,7 +696,7 @@ jobs:\...
2023-02-18T05:19:11
golang/go
4068fb6c2162b38db7912903ff12bafe9f5ca9bb
bf0bc4122fd4b3a75c2f9c107895cd5e2f89b90e
cmd/compile: always accept 1.18 syntax but complain if not 1.18 This CL configures the parser to always accept 1.18 syntax (type parameters, type instantiations, interface elements), even when -lang is set to an earlier release. Instead, the type checker looks for 1.18 operations and complains if the language version...
[ { "path": "src/cmd/compile/internal/noder/noder.go", "patch": "@@ -35,7 +35,7 @@ func LoadPackage(filenames []string) {\n \tsupportsGenerics := base.Flag.G != 0 || buildcfg.Experiment.Unified\n \n \tmode := syntax.CheckBranches\n-\tif supportsGenerics && types.AllowsGoVersion(types.LocalPkg, 1, 18) {\n+\tif...
2021-08-25T01:07:42
huggingface/transformers
520b9dcb42cef21662c304583368ff6645116a45
bc161d5d06ba3b40eaca99ce42734b4f1fecfaa2
fix Glm4v batch videos forward (#39172) * changes for video * update modular * change get_video_features * update video token replacement * update modular * add test and fix typo * lint * fix order * lint * fix * remove dependency * lint * lint * remove todo * resize video for test * lint.. * fix test ...
[ { "path": "src/transformers/models/glm4v/modeling_glm4v.py", "patch": "@@ -1052,6 +1052,7 @@ def get_rope_index(\n device=input_ids.device,\n )\n image_index, video_index = 0, 0\n+ video_group_index = 0\n attention_mask = attention_mask.to(total...
2025-07-10T08:44:28
nodejs/node
765766be641c747b5bcb4a472801452bd041323f
809be432c07fbc87d2673888d6c4ccb9d9d20480
build: add common `defines` * `V8_DEPRECATION_WARNINGS` is here for explicity. It is already defined in `node.gypi`, and `addon.gypi`. * `V8_IMMINENT_DEPRECATION_WARNINGS` added to warn addons authors. * `OPENSSL_THREADS` apears in the openSSL `.h` files, and was only defined via GYP for the node build. PR-URL: h...
[ { "path": "common.gypi", "patch": "@@ -20,12 +20,14 @@\n 'node_module_version%': '',\n 'node_with_ltcg%': '',\n 'node_use_pch%': 'false',\n+ 'node_shared_openssl%': 'false',\n \n 'node_tag%': '',\n 'uv_library%': 'static_library',\n \n 'clang%': 0,\n \n+ 'openssl_no_asm%': 0,\n...
2018-10-11T18:16:00