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
huggingface/transformers
15b79ea808237691397be558bdebbef378b9fa35
377a8ee73f210476c4efb15170d0c32ad3b2c653
[Quantization] fix fbgemm (#42561) * initial commit * passing tests * fix replace_linear * style * rm list * fix * style
[ { "path": "src/transformers/integrations/fbgemm_fp8.py", "patch": "@@ -12,7 +12,11 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n+from typing import Optional\n+\n from ..activations import ACT2FN\n+from ..core_model_loading import Conversio...
2025-12-03T09:14:28
nodejs/node
5bad51406dfd49c62d9960508834627d67fbf229
03d008fe287631dc10147073ca933b6c45130ce3
crypto: add debug info client emit secureConnect Currently, when debugging a TLS connection there might be multiple debug statements 'client emit secureConnect' for the 'secureConnect` event when using NODE_DEBUG='tls'. While it is possible to step through this with a debugger that is not always the fastest/easiest to...
[ { "path": "lib/_tls_wrap.js", "patch": "@@ -1335,12 +1335,14 @@ function onConnectSecure() {\n this.destroy(verifyError);\n return;\n } else {\n- debug('client emit secureConnect');\n+ debug('client emit secureConnect. rejectUnauthorized: %s, ' +\n+ 'authorizationError: ...
2019-06-05T07:44:46
golang/go
38cf79526a5859fb6363e607b2277ab442b28dcb
360e1b8197b78685cf08ab5914aa629fb739b2c3
runtime: mgcmark.go typo fix: gorountine -> goroutine. Change-Id: I5cd980a7c825619cc782a3bca2a1c9c7971fdca2 GitHub-Last-Rev: 6833eedf2dab77f7263f9803839a64b79f57e43e GitHub-Pull-Request: golang/go#50910 Reviewed-on: https://go-review.googlesource.com/c/go/+/381959 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-Tr...
[ { "path": "src/runtime/mgcmark.go", "patch": "@@ -401,7 +401,7 @@ func markrootSpans(gcw *gcWork, shard int) {\n }\n \n // gcAssistAlloc performs GC work to make gp's assist debt positive.\n-// gp must be the calling user gorountine.\n+// gp must be the calling user goroutine.\n //\n // This must be called ...
2022-01-30T06:16:03
vercel/next.js
1a0b5d25c60f98d87b7703c7d03eba260a9dcbf0
90ee9589d617e557b494bdbadc5dfdabcc951298
fix: `moduleResolution: bundler` support in tsconfig.json (#51065) - Fixes https://github.com/vercel/next.js/issues/47858 - Closes https://github.com/vercel/next.js/pull/50289 fix #47858 fix NEXT-1281 Co-authored-by: Kevin Wolf <3157426+kevinwolfcr@users.noreply.github.com>
[ { "path": "packages/next/src/lib/typescript/writeConfigurationDefaults.ts", "patch": "@@ -69,6 +69,7 @@ function getDesiredCompilerOptions(\n (ts.ModuleResolutionKind as any).Node12,\n ts.ModuleResolutionKind.Node16,\n ts.ModuleResolutionKind.NodeNext,\n+ ts.ModuleResolutionKi...
2023-06-09T21:48:13
huggingface/transformers
51c5a7a658b0d56f418d491c4a77073e113dce12
a5c061d24e31706c18670c0ae6579b5c72d545f3
[Quantization] per tensor quantization kernel (#42560) * fix * style * initial * fix * comment * style * fix
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -156,6 +156,79 @@ def _w8a8_block_fp8_matmul(\n tl.store(c_ptrs, c, mask=c_mask)\n \n \n+@triton.jit\n+def _w8a8_block_fp8_matmul_per_tensor(\n+ # Pointers to inputs and output\n+ A,\n+ B,\n+ C,\n+ As,\n+ Bs,\n+...
2025-12-02T17:57:16
nodejs/node
03d008fe287631dc10147073ca933b6c45130ce3
626f24374741c4ee83c7da45542b99e67855707d
doc: fix `prohibited-strings` warning in `pull-requests.md` Correct "Github" to "GitHub" in compliance to the linting standards. PR-URL: https://github.com/nodejs/node/pull/28127 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.d...
[ { "path": "doc/guides/contributing/pull-requests.md", "patch": "@@ -84,7 +84,7 @@ You can use any name/email address you prefer here. We only use the\n metadata generated by `git` using this configuration for properly attributing\n your changes to you in the `AUTHORS` file and the changelog.\n \n-If you wou...
2019-06-07T23:29:08
huggingface/transformers
a5c061d24e31706c18670c0ae6579b5c72d545f3
675e8763cafd74894ce4699d7583bd387beac14e
[`CI`] Fix copies (#42571) * fix * fix circular condition
[ { "path": "src/transformers/models/fast_vlm/modeling_fast_vlm.py", "patch": "@@ -59,7 +59,7 @@ def forward(self, image_features):\n class FastVlmPreTrainedModel(PreTrainedModel):\n config: FastVlmConfig\n base_model_prefix = \"model\"\n- input_modalities = [\"image\", \"text\"]\n+ input_modali...
2025-12-02T17:41:09
golang/go
360e1b8197b78685cf08ab5914aa629fb739b2c3
41f485b9a7d8fd647c415be1d11b612063dff21c
go/types, types2: fix implements and identical predicates - Use the correct predicate in Checker.implements: for interfaces we cannot use the API Comparable because it always returns true for all non-type parameter interface types: Comparable simply answers if == and != is permitted, and it's always been permitt...
[ { "path": "src/cmd/compile/internal/types2/instantiate.go", "patch": "@@ -221,7 +221,7 @@ func (check *Checker) implements(V, T Type) error {\n \t// If T is comparable, V must be comparable.\n \t// Remember as a pending error and report only if we don't have a more specific error.\n \tvar pending error\n-\t...
2022-01-27T06:48:44
vercel/next.js
2bc10616096500ff7664d25d16695f640beb8538
804552590e46c64894d66c91a7f088215a64bc4d
Apply optimization to middleware when using babel (#51067) Like how we handled RSC loader transform before, we also apply swc loader to middleware to make sure the imports optimization is applied so og package won't be bundled Fixes #50492
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -899,7 +899,14 @@ export default async function getBaseWebpackConfig(\n : []\n const swcLoaderForMiddlewareLayer = useSWCLoader\n ? getSwcLoader({ hasServerComponents: false })\n- : getBabelLoader()\n+ : // When using Babel,...
2023-06-09T20:33:14
rust-lang/rust
1926f605f99cf4ff3c7467774a90dcd92d0c3630
15d23bd30b0588b678489ea62d229384d4745bee
Fix const_undef
[ { "path": "src/builder.rs", "patch": "@@ -538,11 +538,6 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n }\n \n fn ret(&mut self, mut value: RValue<'gcc>) {\n- if self.structs_as_pointer.borrow().contains(&value) {\n- // NOTE: hack to workaround a li...
2025-06-30T00:59:25
electron/electron
7016fbe258cd4b94b64b4ca3a023632f4e08a865
7353fb4296675aedcb495bc86dfa7e3026e71ac3
browser: fix disposition value for new-window event
[ { "path": "atom/browser/api/atom_api_web_contents.cc", "patch": "@@ -326,10 +326,12 @@ bool WebContents::ShouldCreateWebContents(\n const GURL& target_url,\n const std::string& partition_id,\n content::SessionStorageNamespace* session_storage_namespace) {\n+ auto disposition = (window_container...
2016-03-25T03:17:33
nodejs/node
626f24374741c4ee83c7da45542b99e67855707d
890223dede339622e7e66e8629805f7904840870
src: handle exceptions from ToDetailString() These methods may fail if execution is terminating. PR-URL: https://github.com/nodejs/node/pull/28019 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cji...
[ { "path": "src/node_errors.cc", "patch": "@@ -180,7 +180,8 @@ void PrintException(Isolate* isolate,\n Local<Value> err,\n Local<Message> message) {\n node::Utf8Value reason(isolate,\n- err->ToDetailString(context).ToLocalChecked());\n+ ...
2019-06-02T13:47:53
huggingface/transformers
675e8763cafd74894ce4699d7583bd387beac14e
80b408d15fdc0766dbb83a5d0b446891e5fe6549
Allow fallback to loading from Auto"SubProcessor".from_pretrained when model_type can't be inferred from config (#42402) * fix raise error early * add back feature extractor saving logic
[ { "path": "src/transformers/models/auto/processing_auto.py", "patch": "@@ -317,7 +317,6 @@ def from_pretrained(cls, pretrained_model_name_or_path, **kwargs):\n processor_class = config_dict.get(\"processor_class\", None)\n if \"AutoProcessor\" in config_dict.get(\"aut...
2025-12-02T17:26:41
golang/go
41f485b9a7d8fd647c415be1d11b612063dff21c
a5c0b190809436fd196a348f85eca0416f4de7fe
cmd/go: rewrite TestScript/cgo_stale_precompiled to be agnostic to staleness The configuration set by x/build/cmd/releasebot causes runtime/cgo to be stale in the darwin/amd64 release (see #36025, #35459). That staleness is mostly benign because we can reasonably assume that users on macOS will either disable CGO enti...
[ { "path": "src/cmd/go/testdata/script/cgo_stale_precompiled.txt", "patch": "@@ -4,14 +4,25 @@\n \n [!cgo] skip\n \n-# Control case: net must not already be stale.\n-! stale net\n+# This test may start with the runtime/cgo package already stale.\n+# Explicitly rebuild it to ensure that it is cached.\n+# (See...
2022-01-28T22:22:32
vercel/next.js
be960ccd0247923436106831d14db8c9ed8d3409
558632b5f2bb9c78e4a234813a07c45ccaacbf0c
fix: `verbatimModuleSyntax: true` support in tsconfig.json (#48018) ### What? When `verbatimModuleSyntax: true` is set, `isolatedModules: true` are not allowed by TS ### Why? Next always adds `isolatedModules: true` which causes TS error. ### How? - Fixes #46509 fix NEXT-689 Co-authored-by: Steven <229881+styfl...
[ { "path": "packages/next/src/lib/typescript/writeConfigurationDefaults.ts", "patch": "@@ -18,7 +18,8 @@ type DesiredCompilerOptionsShape = {\n }\n \n function getDesiredCompilerOptions(\n- ts: typeof import('typescript')\n+ ts: typeof import('typescript'),\n+ userTsConfig?: { compilerOptions?: CompilerOp...
2023-06-09T19:07:30
nodejs/node
890223dede339622e7e66e8629805f7904840870
0c1fd2069376cb2b3796ea83dc131a0a1def132d
src: expose DOMException to internalBinding('message') for testing Instead of using a hack to get it in the test. PR-URL: https://github.com/nodejs/node/pull/28072 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -186,27 +186,30 @@ uint32_t Message::AddWASMModule(WasmModuleObject::TransferrableModule&& mod) {\n \n namespace {\n \n-void ThrowDataCloneException(Local<Context> context, Local<String> message) {\n+MaybeLocal<Function> GetDOMException(Local<Context> context)...
2019-06-05T15:06:32
huggingface/transformers
80b408d15fdc0766dbb83a5d0b446891e5fe6549
52b988d83d8737f25b714128bf6f015338f629a1
[SAM3] Compute masks once instead of per-layer, fix fa2 crash (#42543) * Compute masks once instead of per-layer, fix fa2 crash * nit * Change after review
[ { "path": "src/transformers/models/sam3/modeling_sam3.py", "patch": "@@ -14,9 +14,8 @@\n # limitations under the License.\n \n \n-import collections.abc\n import math\n-from collections.abc import Callable\n+from collections.abc import Callable, Iterable\n from dataclasses import dataclass\n from typing imp...
2025-12-02T17:23:29
golang/go
a5c0b190809436fd196a348f85eca0416f4de7fe
122654739dce506364d10c450afcc36d7572922d
cmd/go: fix error message when missing import Fixes #48907 Change-Id: I504f846fc2ea655ba00aedb30f90847f938c347c Reviewed-on: https://go-review.googlesource.com/c/go/+/360615 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Tr...
[ { "path": "src/cmd/go/testdata/script/mod_go_version_missing.txt", "patch": "@@ -27,7 +27,7 @@ cmp go.mod go.mod.orig\n \n ! go list -mod=vendor all\n ! stderr '^go: inconsistent vendoring'\n-stderr 'cannot find package \"\\.\" in:\\n\\t.*[/\\\\]vendor[/\\\\]example.com[/\\\\]badedit$'\n+stderr 'cannot find...
2021-11-02T12:23:34
vercel/next.js
f7d19516c66bb14bdff718f0ac6973c0bcc91886
7a8ea89492abfdcfc0a0ea63682f123733dfa5d4
fix: Clippy warnings (vercel/turbo#5246) ### Description We have a lot of clippy warnings. Applied `cargo clippy --fix` and manually fixed some other warnings ### Testing Instructions <!-- Give a quick description of steps to test your changes. --> Co-authored-by: --global <Nicholas Yang>
[ { "path": "crates/turbo-tasks-macros-tests/tests/value_debug.rs", "patch": "@@ -16,7 +16,7 @@ async fn ignored_indexes() {\n let input = IgnoredIndexes(-1, 2, -3);\n let debug = input.value_debug_format(usize::MAX).try_to_string().await?;\n assert!(!debug.contains(\"-1\"));\n- ...
2023-06-09T15:38:55
nodejs/node
abf765e33c658d300d746c070b70ec79ae5961ac
fefc275dcbbeedf9e8d0f6c156a142d50904d146
process: code cleanup for nextTick Fix a few edge cases and non-obvious issues with nextTick: 1. Emit destroy hook in a try-finally rather than triggering it before the callback runs. 2. Re-word comment for processPromiseRejections and make sure it returns true in the rejectionHandled case too. 3. Small readability im...
[ { "path": "lib/internal/process/promises.js", "patch": "@@ -139,17 +139,19 @@ function emitDeprecationWarning() {\n }\n }\n \n-// If this method returns true, at least one more tick need to be\n-// scheduled to process any potential pending rejections\n+// If this method returns true, we've executed user ...
2019-06-02T17:11:19
huggingface/transformers
52b988d83d8737f25b714128bf6f015338f629a1
3f17410925a0c62f6844f1395270bf0066133cbf
Transformers serve fix (#42570) * Fix: lacking EOS token + failing AutoProcessor * Tests * Tests
[ { "path": "src/transformers/cli/serve.py", "patch": "@@ -36,7 +36,7 @@\n from tqdm import tqdm\n \n import transformers\n-from transformers import BitsAndBytesConfig, GenerationConfig\n+from transformers import AutoTokenizer, BitsAndBytesConfig, GenerationConfig, PreTrainedTokenizerBase\n from transformers....
2025-12-02T17:19:36
golang/go
122654739dce506364d10c450afcc36d7572922d
5fd8c9b5c5a0348317e49e6c58e34b9a6e00e91a
doc/go1.18: mention new debug/dwarf DataBitOffset fields For #46784 For #47694 For #50685 Change-Id: I5351b56722d036a520d1a598ef7af95c5eb44c35 Reviewed-on: https://go-review.googlesource.com/c/go/+/381778 Trust: Ian Lance Taylor <iant@golang.org> Reviewed-by: Than McIntosh <thanm@google.com>
[ { "path": "doc/go1.18.html", "patch": "@@ -595,6 +595,17 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n </dd>\n </dl><!-- crypto/tls -->\n \n+<dl id=\"debug/dwarf\"><dt><a href=\"/pkg/debug/dwarf/\">debug/dwarf</a></dt>\n+ <dd>\n+ <p><!-- CL 380714 -->\n+ The <a href=\"/p...
2022-01-28T21:15:16
vercel/next.js
f1f5734e91616450d5054c9674b795fc418841c1
55b29fb3513f4393e5092fe415ebeca9b8b2ead2
chore: pin to `npm@9.6.7` (#51044) This might fix the npm publish error ``` Error: Command failed with exit code 254 (Unknown system error -254): npm publish /home/runner/work/next.js/next.js/packages/next --access public --tag canary ``` https://github.com/vercel/next.js/actions/runs/5219901558/jobs/9422546...
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -374,7 +374,7 @@ jobs:\n name: wasm-binaries\n path: packages/next-swc/crates/wasm\n \n- - run: npm i -g npm@9 # need latest version for provenance\n+ - run: npm i -g npm@9.6.7 # need latest version for provenance...
2023-06-09T14:58:32
huggingface/transformers
3f17410925a0c62f6844f1395270bf0066133cbf
53d2bf6dab1c0ab09ed23889eab43ae92c1ebcd2
Kernel mapping error resolve (#42466) * mapping error resolved with test check * Fix undefined variable 'device' in kernel_config * added test in test_kernels * added test with proper format * added test with proper format once again * Removed mapping_test.py file * reformated with ruff * removed the test
[ { "path": "src/transformers/utils/kernel_config.py", "patch": "@@ -208,6 +208,7 @@ def create_compatible_mapping(self, model, compile=False):\n from kernels import Mode\n \n compatible_mapping = {}\n+ current_device = infer_device(model)\n for layer_name, kernel in self.kernel...
2025-12-02T17:14:29
nodejs/node
d5577f0395bf746c1fd1042798f31cf874c8d296
a18e27df9ec29b1633146116810eeb14a3dd335f
http: remove default 'timeout' listener on upgrade Remove the default listener of the `'timeout'` event from the socket before emitting the `'connect'` or `'upgrade'` event. PR-URL: https://github.com/nodejs/node/pull/26030 Fixes: https://github.com/nodejs/node/issues/23857 Reviewed-By: James M Snell <jasnell@gmail.c...
[ { "path": "lib/_http_client.js", "patch": "@@ -465,6 +465,10 @@ function socketOnData(d) {\n socket.removeListener('data', socketOnData);\n socket.removeListener('end', socketOnEnd);\n socket.removeListener('drain', ondrain);\n+\n+ if (req.timeoutCb)\n+ socket.removeListener('timeout', r...
2019-02-10T10:34:34
golang/go
5fd8c9b5c5a0348317e49e6c58e34b9a6e00e91a
1fadc392ccaefd76ef7be5b685fb3889dbee27c6
cmd/go: correct -trimpath docs for the standard library Fixes #50402 Change-Id: Ic539afc1aef3906ef591b403eba0fde20a5ccef2 Reviewed-on: https://go-review.googlesource.com/c/go/+/380078 Reviewed-by: Bryan Mills <bcmills@google.com> Trust: Emmanuel Odeke <emmanuel@orijtech.com> Run-TryBot: Emmanuel Odeke <emmanuel@orijt...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -209,9 +209,8 @@\n // \t-trimpath\n // \t\tremove all file system paths from the resulting executable.\n // \t\tInstead of absolute file system paths, the recorded file names\n-// \t\twill begin with either \"go\" (for the standard library),\n-// \t\tor a modu...
2022-01-22T06:13:53
huggingface/transformers
53d2bf6dab1c0ab09ed23889eab43ae92c1ebcd2
5690f24e66a87ee0934659952bacc0d676f57ae4
fix regression (#42569) * fix regression * fix * fix
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -316,21 +316,17 @@ def __init__(\n ):\n super().__init__(in_features, out_features)\n \n- # If block size, is not passed, it means that we are doing per-tensor quantization\n- if block_size is not None:\n- ...
2025-12-02T17:06:14
vercel/next.js
55b29fb3513f4393e5092fe415ebeca9b8b2ead2
2a2890cae64ca1c3203257f9359035667786a18d
Updates prettier to latest version. (#51000) There are some incoming docs / MDX changes where prettier will throw an error when using the older version. Updating prettier before I bring in those changes. Looks like the most notable change is adding parentheses around `typeof` checks in TypeScript. **Before** ``` e...
[ { "path": ".prettierignore", "patch": "@@ -40,3 +40,4 @@ bench/nested-deps/pages/**/*\n bench/nested-deps/components/**/*\n \n **/convex/_generated/**\n+**/.tina/__generated__/**", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "examples/app-dir-i18n-routing/i18n-conf...
2023-06-09T14:58:19
nodejs/node
a18e27df9ec29b1633146116810eeb14a3dd335f
9611d75943eba359f7d083688591ac210960e466
src: add napi_define_class() null checks napi_define_class is tested by passing NULL to all parameters that are pointers, one at a time. Moreover, two bugs were corrected. One was utf8name and the second was the property descriptor pointer. These pointers were assumed to be non-NULL and now we have NULL checks. PR-UR...
[ { "path": "src/js_native_api_v8.cc", "patch": "@@ -24,6 +24,9 @@\n RETURN_STATUS_IF_FALSE((env), \\\n (len == NAPI_AUTO_LENGTH) || len <= INT_MAX, \\\n napi_invalid_arg); \\\n+ RET...
2019-05-29T04:12:24
electron/electron
6e467534997704b3167e61ff874e4d81b3ee5dc2
8bcede8019928000b99b6ddbf0f510bf5a243c93
Don't emit 'will-quit' when 'app.exit()' is called. Fixes #4643
[ { "path": "atom/browser/browser.cc", "patch": "@@ -15,6 +15,7 @@ namespace atom {\n \n Browser::Browser()\n : is_quiting_(false),\n+ is_exiting_(false),\n is_ready_(false),\n is_shutdown_(false) {\n WindowList::AddObserver(this);\n@@ -49,9 +50,12 @@ void Browser::Exit(int code) {\n ...
2016-03-31T14:12:03
huggingface/transformers
5690f24e66a87ee0934659952bacc0d676f57ae4
0ba8f001fe826379cb5cf3ce1079b3523bee0381
Fix `parse_response` after tokenizer refactor (#42300) * Remove references to parse_response in the docs * Re-add parse_response (with appropriate warnings) * future annotations * Guard the text generation pipeline correctly
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -88,8 +88,6 @@\n title: Tool use\n - local: chat_templating_writing\n title: Writing a chat template\n- - local: chat_response_parsing\n- title: Response parsing\n title: Chat with models\n - sections:\n - local: serving...
2025-12-02T16:46:16
golang/go
b37c6e15477a934f894488751bed8abcf16b4f5c
8f7d96f5bcb927a576a43b890f2643e521107665
go/types, types2: delete TypeList.String This method is unused and was not discussed in the API proposals. Note that all error output goes through the local sprintf which handles arguments specially. Fixes #50760. Change-Id: Iae66b0253cc0ece037d3d280951dc2d223c119fb Reviewed-on: https://go-review.googlesource.com/c/...
[ { "path": "api/go1.18.txt", "patch": "@@ -51,7 +51,6 @@ pkg go/types, method (*Term) Tilde() bool\n pkg go/types, method (*Term) Type() Type\n pkg go/types, method (*TypeList) At(int) Type\n pkg go/types, method (*TypeList) Len() int\n-pkg go/types, method (*TypeList) String() string\n pkg go/types, method ...
2022-01-28T05:26:27
vercel/next.js
2a2890cae64ca1c3203257f9359035667786a18d
9800eaf4670fe698513722842362cbfcc85ca66d
Fix esm module import warning for middleware loader (#51014) We need to spread the module into an object instead of access the module exports that could not exist, to avoid triggering the warning. Fix the bad loader change introduced in #50548 ``` Attempted import error: './middleware.js' does not contain a default ...
[ { "path": "packages/next/src/build/webpack/loaders/next-middleware-loader.ts", "patch": "@@ -42,8 +42,9 @@ export default function middlewareLoader(this: any) {\n return `\n import 'next/dist/esm/server/web/globals'\n import { adapter } from 'next/dist/esm/server/web/adapter'\n- imp...
2023-06-09T14:14:50
nodejs/node
b31bfaddebf7f4bb900665f85eb07af4e74ee3a5
65a5f7b65f7662715ccc0eb9a835b2dec3d73ce5
test: make sure vtable is generated in addon test with LTO PR-URL: https://github.com/nodejs/node/pull/28057 Fixes: https://github.com/nodejs/node/issues/28026 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
[ { "path": "test/addons/uv-handle-leak/binding.cc", "patch": "@@ -15,9 +15,16 @@ void CloseCallback(uv_handle_t* handle) {}\n \n class ExampleOwnerClass {\n public:\n- virtual ~ExampleOwnerClass() {}\n+ virtual ~ExampleOwnerClass();\n };\n \n+// Do not inline this into the class, because that may remove t...
2019-06-04T15:26:26
huggingface/transformers
0ba8f001fe826379cb5cf3ce1079b3523bee0381
5efd0d4aa5ba4455f229b10667718cc623ac56af
Add backward compatibility for methods which have been moved to `RotaryEmbeddingConfigMixin` (#42517) * Add backward compatibility for methods which have been moved to `RotaryEmbeddingConfigMixin` Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> * They're not actually no-ops Signed-off-by: Ha...
[ { "path": "src/transformers/modeling_rope_utils.py", "patch": "@@ -13,6 +13,7 @@\n # limitations under the License.\n \n import math\n+import warnings\n from functools import wraps\n from typing import TYPE_CHECKING, Optional, TypedDict\n \n@@ -656,7 +657,7 @@ def standardize_rope_params(self):\n # ...
2025-12-02T16:28:37
golang/go
25b4b862f29900af00c794424b033b01eb5ab0cb
2e30c4b4bb7c4426ebc27e8af6d0570dbd97054b
go/types, types2: use Checker.implements in operand.assignableTo Now that we have the detailed error reporting in Checker.implements we don't need it anymore in operand.assignableTo and can simply call Checker.implements. This also more directly matches the spec. For #50646. Change-Id: Ic44ced999c75be6cc9edaab01177e...
[ { "path": "src/cmd/compile/internal/types2/instantiate.go", "patch": "@@ -157,6 +157,8 @@ func (check *Checker) verify(pos syntax.Pos, tparams []*TypeParam, targs []Type)\n \n // implements checks if V implements T and reports an error if it doesn't.\n // If a qualifier is provided, it is used in error form...
2022-01-27T18:52:22
rust-lang/rust
d27c05709c51d06df36388b40f94ecade488e050
362d4ddff4f9b3e6dae0c3ed203d6eb2090979e1
Make variance wfcheck only use the HIR in the error path
[ { "path": "compiler/rustc_hir_analysis/src/check/wfcheck.rs", "patch": "@@ -292,26 +292,24 @@ fn check_item<'tcx>(tcx: TyCtxt<'tcx>, item: &'tcx hir::Item<'tcx>) -> Result<()\n }\n hir::ItemKind::Fn { ident, sig, .. } => check_item_fn(tcx, def_id, ident, sig.decl),\n hir::ItemKind::C...
2025-06-04T11:00:15
vercel/next.js
8370e52a32a56e1036941fd2829eec24d234eed8
f19b31ad93c313cb86d9a589c931f8f9718a7fb2
Fix Typo in Metadata API Description (#51024) ### Fix Typo in Metadata API Description #### Description: This PR fixes a minor typo in the description of the Metadata API. #### Changes: - Fixed typo in the Metadata API description. **File:** `docs/02-app/01-building-your-application/05-optimizing/04-metadata.mdx...
[ { "path": "docs/02-app/01-building-your-application/05-optimizing/04-metadata.mdx", "patch": "@@ -8,7 +8,7 @@ related:\n - app/api-reference/file-conventions/metadata\n ---\n \n-Next.js has a Metadata API that can used to define your application metadata (e.g. `meta` and `link` tags inside your HTML `he...
2023-06-09T12:20:41
huggingface/transformers
5efd0d4aa5ba4455f229b10667718cc623ac56af
4ec83fe9f652fae57af0ce03a74da165eb7c38e9
Fix eetq quanto quant methods (#42557) * fix * eetq dep removed * maybe ? * Fix ! * eveyrthing is passing ! * Apply style fixes * move to nn.paramters * grad false * fix * fix --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
[ { "path": "src/transformers/integrations/eetq.py", "patch": "@@ -12,11 +12,13 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n-from ..utils import is_accelerate_availab...
2025-12-02T15:57:20
electron/electron
9efd29d059d30ae7b4d6cbccc9bdf6229b51a391
d5e8bb7f120c55374bd06927b7359e1412dcc4db
fix a minor style issue
[ { "path": "lib/renderer/override.js", "patch": "@@ -154,7 +154,7 @@ window.open = function (url, frameName, features) {\n }\n \n // Use the dialog API to implement alert().\n-window.alert = function(message, title) {\n+window.alert = function (message, title) {\n var buttons\n if (arguments.length === 0...
2016-03-30T22:15:33
nodejs/node
65a5f7b65f7662715ccc0eb9a835b2dec3d73ce5
2f8cf5e5b543c058a00e0a7838287ebb10c158dc
test: mark test-worker-debug as flaky Also try to make more traceable. PR-URL: https://github.com/nodejs/node/pull/28035 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -17,6 +17,8 @@ test-worker-memory: PASS,FLAKY\n # https://github.com/nodejs/node/issues/20750\n test-http2-client-upload: PASS,FLAKY\n test-http2-client-upload-reject: PASS,FLAKY\n+# https://github.com/nodejs/node/issues/28106\n+test-worker-debug: PASS...
2019-06-05T22:03:08
rust-lang/rust
e86fddc6d33c1d7a6cd5827e8b0500388de89c73
d41e12f1f4e4884c356f319b881921aa37040de5
fix bitcast of single-element SIMD vectors
[ { "path": "compiler/rustc_codegen_ssa/src/mir/rvalue.rs", "patch": "@@ -1123,7 +1123,7 @@ pub(super) fn transmute_immediate<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(\n // While optimizations will remove no-op transmutes, they might still be\n // there in debug or things that aren't no-op in MIR becau...
2025-06-29T13:29:43
golang/go
2e30c4b4bb7c4426ebc27e8af6d0570dbd97054b
654d5f4b5dfc30167bbffd0d7aeba3c1e29277c8
go/types, types2: better error reporting for Checker.implements This CL copies (and adjusts as needed) the logic for error reporting from operand.assignableTo to Checker.implements in the case of a missing method failure and assignment to an interface pointer. Preparation for using Checker.implements in operand.assig...
[ { "path": "src/cmd/compile/internal/types2/instantiate.go", "patch": "@@ -173,7 +173,13 @@ func (check *Checker) implements(V, T Type, qf Qualifier) error {\n \n \tTi, _ := Tu.(*Interface)\n \tif Ti == nil {\n-\t\treturn errorf(\"%s is not an interface\", T)\n+\t\tvar cause string\n+\t\tif isInterfacePtr(Tu...
2022-01-27T18:28:46
huggingface/transformers
bc7a268fed343ab22446ec86115cf2727b38a5eb
29e8522b85d9bf4287f63611aaa1a7db1fdc6489
Fix fp8 + some enhancement (#42455) * Fix fp8 + some enhancement * style * Add coauthor Co-authored-by: Yang Kai <kai.yang@intel.com> * fix * style * fix tests * style * assertin * style * fix * fix * Apply suggestions from code review Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.git...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -826,6 +826,7 @@ def convert_and_load_state_dict_in_model(\n if hf_quantizer and hf_quantizer.pre_quantized and original_key != renamed_key:\n # if the key was renamed as it is not available in the state dict otherw...
2025-12-02T14:42:01
vercel/next.js
f19b31ad93c313cb86d9a589c931f8f9718a7fb2
96e47d3f371420fe68f7a7303a1eefe4712efd88
Fix rsc payload fetch failures due to state tree encoding (#51017) Encode the state tree where the content could contain unicode when request the RSC payload, to avoid the fetch failure due to bad encoding for headers Fixes #48728 fix NEXT-1258
[ { "path": "packages/next/src/client/components/router-reducer/fetch-server-response.ts", "patch": "@@ -37,7 +37,9 @@ export async function fetchServerResponse(\n // Enable flight response\n [RSC]: '1',\n // Provide the current router state\n- [NEXT_ROUTER_STATE_TREE]: JSON.stringify(flightRou...
2023-06-09T10:06:00
electron/electron
afbc914f8b97f326b9027b98ccb23ba6be012d3d
47a61e9f2705b0e346117a26d375781029b7ed93
try to fix CI linting
[ { "path": "script/cibuild", "patch": "@@ -62,8 +62,8 @@ def main():\n args += ['--dev']\n run_script('bootstrap.py', args)\n \n- run_script('cpplint.py')\n- run_script('eslint.py')\n+ execute([npm, 'run', 'lint'])\n+\n if PLATFORM != 'win32':\n run_script('pylint.py')\n if is_release:", ...
2016-03-30T21:12:59
nodejs/node
9032ab4763fb05d0718c0075d05a023aa0bcbb70
59f666cd39847d2de391ed4cd551c9eefda975d3
test: always suffix `tmpdir` This makes temp dir names consistent whether we run in stand-alone mode, via `test.py` in single process, or in multi-process. PR-URL: https://github.com/nodejs/node/pull/28035 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Be...
[ { "path": "test/common/tmpdir.js", "patch": "@@ -89,11 +89,7 @@ const testRoot = process.env.NODE_TEST_DIR ?\n \n // Using a `.` prefixed name, which is the convention for \"hidden\" on POSIX,\n // gets tools to ignore it by default or by simple rules, especially eslint.\n-let tmpdirName = '.tmp';\n-if (pro...
2019-06-02T20:34:19
rust-lang/rust
0c7e953885ad3754538f0fce150ecf5247878e82
ede659174d95d1c2b65aa1d97fc1b907b6d82ba9
Fix panic=unwind for JIT
[ { "path": "src/debuginfo/unwind.rs", "patch": "@@ -32,15 +32,36 @@ impl UnwindContext {\n let mut frame_table = FrameTable::default();\n \n let cie_id = if let Some(mut cie) = module.isa().create_systemv_cie() {\n- if pic_eh_frame {\n- cie.fde_address_encoding =\n- ...
2025-05-07T13:08:21
huggingface/transformers
29e8522b85d9bf4287f63611aaa1a7db1fdc6489
64d8cf4fd957d87d6d1da8ee46badc502b728ba8
[Fix] dots1 expert bias routing (#41663)
[ { "path": "src/transformers/models/dots1/modeling_dots1.py", "patch": "@@ -369,9 +369,11 @@ def __init__(self, config):\n \n def route_tokens_to_experts(self, router_logits):\n router_logits = router_logits.sigmoid() # main diff with deepseekv3\n- router_logits = router_logits + self.gat...
2025-12-02T14:26:45
golang/go
8314544bd6b3c5f0bee89a6bd411ced0aeba1a8c
9ff00398489d9eb1822b3de028cd6ccf5674ebb3
debug/dwarf: fix problems with handling of bit offsets for bitfields This patch reworks the handling of the DWARF DW_AT_bit_offset and DW_AT_data_bit_offset attributes to resolve problems arising from a previous related change (CL 328709). In CL 328709 the DWARF type reader was updated to look for and use the DW_AT_d...
[ { "path": "api/go1.18.txt", "patch": "@@ -13,6 +13,8 @@ pkg debug/buildinfo, func ReadFile(string) (*debug.BuildInfo, error)\n pkg debug/buildinfo, type BuildInfo = debug.BuildInfo\n pkg debug/elf, const R_PPC64_RELATIVE = 22\n pkg debug/elf, const R_PPC64_RELATIVE R_PPC64\n+pkg debug/dwarf, type BasicType ...
2022-01-25T14:34:35
vercel/next.js
e5b88caed75750adb55ae3e93052d6c31fec57e2
8484a6b9c259a0770af37ea83c746a8bd73cb116
fix `revalidateTag` import (#51005) This PR fixes the erroneous `revalidateTag` import on certain examples. It was imported from `next/server`, but should be imported from `next/cache` instead. Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com>
[ { "path": "docs/02-app/02-api-reference/04-functions/revalidateTag.mdx", "patch": "@@ -6,7 +6,8 @@ description: API Reference for the revalidateTag function.\n `revalidateTag` allows you to revalidate data associated with a specific cache tag. This is useful for scenarios where you want to update your cache...
2023-06-09T08:23:58
electron/electron
b5afad9da707b7ba597b72d067d4ffbeb86cf4f5
1a18151effcc2a6a0925585fdc1666fa71b60baa
avoid using eslint comment exceptions
[ { "path": "lib/browser/api/web-contents.js", "patch": "@@ -128,14 +128,14 @@ let wrapWebContents = function (webContents) {\n return ipcMain.emit.apply(ipcMain, [channel, event].concat(args))\n })\n webContents.on('ipc-message-sync', function (event, [channel, ...args]) {\n- /* eslint-disable */\...
2016-03-30T21:06:50
rust-lang/rust
ede659174d95d1c2b65aa1d97fc1b907b6d82ba9
b2cafc96ec61a2bfa43caf1ef68be0cc348e9140
Implement exception handling support
[ { "path": "src/abi/mod.rs", "patch": "@@ -7,7 +7,7 @@ mod returning;\n use std::borrow::Cow;\n use std::mem;\n \n-use cranelift_codegen::ir::{ArgumentPurpose, SigRef};\n+use cranelift_codegen::ir::{ArgumentPurpose, BlockArg, ExceptionTableData, ExceptionTag, SigRef};\n use cranelift_codegen::isa::CallConv;\...
2025-04-09T13:35:35
huggingface/transformers
64d8cf4fd957d87d6d1da8ee46badc502b728ba8
bb09a30f5ad57fe837526b60d72981a41f08c0fd
[Ministral 3] Small fix config (#42537) * WIP * WIP
[ { "path": "docs/source/en/model_doc/ministral3.md", "patch": "@@ -48,7 +48,7 @@ model_id = \"mistralai/Ministral-3-3B-Instruct-2512\"\n \n tokenizer = MistralCommonBackend.from_pretrained(model_id)\n model = Mistral3ForConditionalGeneration.from_pretrained(\n- model_id, torch_dtype=torch.bfloat16, device...
2025-12-02T13:40:24
golang/go
ad345c265916bbf6c646865e4642eafce6d39e78
f5fe5a4524d5e5390238ae7f5abcaa4299b31a37
math/big: prevent overflow in (*Rat).SetString Credit to rsc@ for the original patch. Thanks to the OSS-Fuzz project for discovering this issue and to Emmanuel Odeke (@odeke_et) for reporting it. Fixes #50699 Fixes CVE-2022-23772 Change-Id: I590395a3d55689625390cf1e58f5f40623b26ee5 Reviewed-on: https://go-review.go...
[ { "path": "src/math/big/ratconv.go", "patch": "@@ -169,6 +169,11 @@ func (z *Rat) SetString(s string) (*Rat, bool) {\n \t\tn := exp5\n \t\tif n < 0 {\n \t\t\tn = -n\n+\t\t\tif n < 0 {\n+\t\t\t\t// This can occur if -n overflows. -(-1 << 63) would become\n+\t\t\t\t// -1 << 63, which is still negative.\n+\t\t...
2022-01-19T21:54:41
vercel/next.js
8484a6b9c259a0770af37ea83c746a8bd73cb116
aef03cf3a5e2fc6fdd58bba27d3a8c17dc3bdda4
Fix typos in 01-contribution-guide.mdx (#51006) This PR fixes some small typos in the Contribution Guide.
[ { "path": "docs/05-community/01-contribution-guide.mdx", "patch": "@@ -360,7 +360,7 @@ Here are some guidelines to maintain a consistent style and voice across the doc\n - For example, _Next.js uses React_ instead of _React is used by Next.js_. If you find yourself using words like _was_ and _by_ you may ...
2023-06-09T08:16:12
electron/electron
14fb3c4598a919d58c641b4ded5d55e2888a962f
c5f70c8d9976eae97ca5d41f20a03f5d31c14a47
throw error if it exists
[ { "path": "spec/api-crash-reporter-spec.js", "patch": "@@ -40,9 +40,8 @@ describe('crash-reporter module', function () {\n server.close()\n var form = new multiparty.Form()\n form.parse(req, function (error, fields) {\n- if (called) {\n- return\n- }\n+ if (err...
2016-03-28T23:33:16
huggingface/transformers
bb09a30f5ad57fe837526b60d72981a41f08c0fd
ac0769cd8ca186d4dea6a04cd6e87c38c14a34b1
[Quantization] fix dequant when block size is none & static quantization (#42545) * fix * style
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -686,7 +686,7 @@ def convert(\n missing_keys=None,\n **kwargs,\n ) -> dict[str, torch.Tensor]:\n- if len(input_dict) != 2:\n+ if len(input_dict) < 2:\n # in case of no scales, the weights...
2025-12-02T13:37:39
rust-lang/rust
cca072ca151d766bc9a40b82b1fc5e67ef5fee1e
215009bd0c54e261be003d30e4123df484a64656
Make check_param_wf only go through the HIR in the error path
[ { "path": "compiler/rustc_hir_analysis/src/check/wfcheck.rs", "patch": "@@ -198,10 +198,8 @@ fn check_well_formed(tcx: TyCtxt<'_>, def_id: LocalDefId) -> Result<(), ErrorGua\n _ => unreachable!(\"{node:?}\"),\n };\n \n- if let Some(generics) = node.generics() {\n- for param in generics...
2025-06-03T15:27:34
golang/go
f5fe5a4524d5e5390238ae7f5abcaa4299b31a37
1a2435c95f8c68c7d21d172c8a80c6cc96aa9cf5
go/types: update interface receivers after substituting Interface method receivers are synthetic: they record either the interface type or the the defined type for which they are the RHS of the type declaration. When instantiating, we need to update these receivers accordingly. Fixes #50839 Change-Id: Icd8e1a2817b01...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -697,6 +697,19 @@ func TestUsesInfo(t *testing.T) {\n \t\t// Uses of methods are uses of the instantiated method.\n \t\t{`package m0; type N[A any] int; func (r N[B]) m() { r.n() }; func (N[C]) n() {}`, `n`, `func (m0.N[B]).n()`},\n \t\t{...
2022-01-27T01:50:51
vercel/next.js
cdd366fd9725590a804ef7c1014ed246111195b7
994c61a807e18c45d35bd023d56a146271991f7d
Fix usage of `router.refresh()` with Draft Mode in App Router (#50941) After enabling Draft Mode, `router.refresh()` was incorrectly causing the page to crash and do a full page refresh. This PR fixes this case. Co-authored-by: Steven <229881+styfle@users.noreply.github.com>
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -1351,25 +1351,6 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n return null\n }\n \n- if (isAppPath) {\n- res.setHeader('vary', RSC_VARY_HEADER)\n-\n- if (isSSG && req.headers[RSC.t...
2023-06-09T00:15:55
huggingface/transformers
ac0769cd8ca186d4dea6a04cd6e87c38c14a34b1
57eeb9caa2d661b90b4fee6c7f700ede341677fa
Fix failing test in Glm4vMoeIntegrationTest (#42488) * Fix missing model attribute in Glm4vMoeIntegrationTest * Removed extra condition. --------- Co-authored-by: Yih-Dar <2521628+ydshieh@users.noreply.github.com>
[ { "path": "tests/models/glm4v_moe/test_modeling_glm4v_moe.py", "patch": "@@ -294,7 +294,9 @@ def test_inputs_embeds_matches_input_ids(self):\n @require_torch\n @slow\n class Glm4vMoeIntegrationTest(unittest.TestCase):\n- model = None\n+ @classmethod\n+ def setUpClass(cls):\n+ cls.model = Non...
2025-12-02T12:55:28
rust-lang/rust
5f49cf8cf5c4c10e6c9dd54ba76847192cdb0d90
428208eb9b61f44e5bbab70feea42a8d55994230
fix: `unused_trait_names` FP when `as` name is from macro input
[ { "path": "clippy_lints/src/unused_trait_names.rs", "patch": "@@ -73,6 +73,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedTraitNames {\n && let Some(snip) = snippet_opt(cx, last_segment.ident.span)\n && self.msrv.meets(cx, msrvs::UNDERSCORE_IMPORTS)\n && !is_from_proc_macro...
2025-06-01T06:41:00
electron/electron
c5f70c8d9976eae97ca5d41f20a03f5d31c14a47
5e4696f4a7240106efdca6df28cdc8325745c608
dance around error checking with this one weird trick
[ { "path": "spec/api-debugger-spec.js", "patch": "@@ -80,32 +80,36 @@ describe('debugger module', function () {\n try {\n w.webContents.debugger.attach()\n } catch (err) {\n- done('unexpected error : ' + err)\n+ return done('unexpected error : ' + err)\n }\n+ /* e...
2016-03-28T23:31:06
huggingface/transformers
57eeb9caa2d661b90b4fee6c7f700ede341677fa
a649767573430f2f9dbc81ac3a801f8546740109
Fix Qwen-VL family with prompt tuning (#42508) * fix all qwen models with promp tuning * forgot to rename * fix style * fallback better when no cache position * just why?
[ { "path": "src/transformers/models/qwen2_5_omni/modeling_qwen2_5_omni.py", "patch": "@@ -1958,11 +1958,8 @@ def forward(\n audio_feature_lengths = None\n \n if attention_mask is not None and position_ids is None:\n- if (\n- cache_position is None\n- ...
2025-12-02T11:05:37
golang/go
1a2435c95f8c68c7d21d172c8a80c6cc96aa9cf5
b7b44b3173f151a2313da7072afd25de80511605
go/types, cmd/compile: fix composite literal structural typing For a composite literal expression like []T{{f: 1}}, we allow T to be a pointer to struct type, so it's consistent to allow T to also be a type parameter whose structural type is a pointer to struct type. Fixes #50833. Change-Id: Ib0781ec4a4f327c875ea25b...
[ { "path": "src/cmd/compile/internal/noder/expr.go", "patch": "@@ -332,7 +332,7 @@ func (g *irgen) exprs(exprs []syntax.Expr) []ir.Node {\n }\n \n func (g *irgen) compLit(typ types2.Type, lit *syntax.CompositeLit) ir.Node {\n-\tif ptr, ok := typ.Underlying().(*types2.Pointer); ok {\n+\tif ptr, ok := types2.S...
2022-01-26T21:46:45
nodejs/node
2976bbd68f936c4f96b6028219ceb9bfc4b84f22
5c61c5d152aedfe992fd42b3d51823b16a547b21
test: only assert on first lines of TLS trace The TLS trace data is best-effort, and enough can be dropped from pipe buffers that only the start of the trace is detected. Only assert on the first line of the trace, it should not get dropped, and it's enough to check that trace was enabled via CLI. PR-URL: https://git...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -9,8 +9,6 @@ prefix parallel\n test-net-connect-options-port: PASS,FLAKY\n # https://github.com/nodejs/node/issues/26401\n test-worker-prof: PASS,FLAKY\n-# https://github.com/nodejs/node/issues/27553\n-test-tls-enable-trace-cli: PASS,FLAKY\n \n [$syste...
2019-06-02T16:19:44
vercel/next.js
9c4b0ec9e90127bcf145c0120f0d285b13b3c129
1be0bdd081b56097aeb08c5f326158277df57f36
Adds missing JavaScript codeblock in Opengraph Image API reference (#50996) Also changes JavaScript examples to use `.jsx` extensions so IDEs better recognize the JSX allowed as the first argument to `ImageResponse`. Fixes #50141
[ { "path": "docs/02-app/02-api-reference/02-file-conventions/01-metadata/opengraph-image.mdx", "patch": "@@ -146,7 +146,7 @@ export default async function Image() {\n }\n ```\n \n-```jsx filename=\"app/about/opengraph-image.js\" switcher\n+```jsx filename=\"app/about/opengraph-image.jsx\" switcher\n import {...
2023-06-08T21:29:47
electron/electron
80f7c82f93c31903871795ced37bdbc26c5ff674
f61010df968d6cbafb723a8cac85c40ebbc9ae44
finish standardizing crash reporter
[ { "path": "lib/common/api/crash-reporter.js", "patch": "@@ -63,7 +63,7 @@ var CrashReporter = (function () {\n binding.start(this.productName, companyName, submitURL, autoSubmit, ignoreSystemCrashHandler, extra)\n }\n if (process.platform === 'win32') {\n- args = [\"--reporter-url=\" + su...
2016-03-25T19:45:13
rust-lang/rust
cd971c6e1e969996a92889e26714cde45556ec87
555553f0b86eccb6e9e480bd731dd6d59cb67aa0
linux futex: fix for val > i32::MAX
[ { "path": "src/tools/miri/src/shims/unix/linux_like/sync.rs", "patch": "@@ -15,12 +15,13 @@ pub fn futex<'tcx>(\n ) -> InterpResult<'tcx> {\n let [addr, op, val] = check_min_vararg_count(\"`syscall(SYS_futex, ...)`\", varargs)?;\n \n+ // See <https://man7.org/linux/man-pages/man2/futex.2.html> for do...
2025-06-30T06:22:51
huggingface/transformers
a649767573430f2f9dbc81ac3a801f8546740109
0fa49db1205e0a2745161ccac46184e7e46b6e2b
Add FastVLM (#41112) * Added an initial conversion script * Added a modular where FastVLM is different from LlaVA * Improved the conversion script * Adjusted the conversion script * Removed redundant labels from FastViT & improved the template * Added docs and changed default config * Fix default config * Fix d...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1030,6 +1030,8 @@\n title: Emu3\n - local: model_doc/evolla\n title: Evolla\n+ - local: model_doc/fast_vlm\n+ title: FastVLM\n - local: model_doc/flava\n title: FLAVA\n - local: model_doc/florence2",...
2025-12-02T10:55:35
golang/go
b7b44b3173f151a2313da7072afd25de80511605
b2dc66c64db933120c34d2223e670e8594543bd9
cmd/compile: remove incorrect arm,arm64 CMP->CMN transformations These can go wrong when one of the operands is the minimum integer value. Fixes #50854. Change-Id: I238fe284f60c7ee5aeb9dc9a18e8b1578cdb77d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/381318 Reviewed-by: Keith Randall <khr@golang.org> Revie...
[ { "path": "src/cmd/compile/internal/ssa/gen/ARM.rules", "patch": "@@ -1270,8 +1270,8 @@\n (SRLconst (SLLconst x [c]) [d]) && buildcfg.GOARM==7 && uint64(d)>=uint64(c) && uint64(d)<=31 => (BFXU [(d-c)|(32-d)<<8] x)\n \n // comparison simplification\n-((LT|LE|EQ|NE|GE|GT) (CMP x (RSBconst [0] y))) => ((LT|LE|...
2022-01-27T16:26:59
electron/electron
ee181294b3f7589990d9d039b9998b71859df0ec
4d4f4797210837d25ad8d2c2f4b40d5259a505f2
manual syntax fixes on rpc server
[ { "path": "lib/browser/rpc-server.js", "patch": "@@ -43,7 +43,6 @@ let getObjectMembers = function (object) {\n let getObjectPrototype = function (object) {\n let proto = Object.getPrototypeOf(object)\n if (proto === null || proto === Object.prototype) return null\n-\n return {\n members: getObjec...
2016-03-25T19:28:43
nodejs/node
965ffc4cb9a55d26192a95485b57afe4573990b0
81a9c7201f66855cdca534dae1a3f53f822a009b
Revert "test: move all test keys/certs under `test/fixtures/keys/`" PR-URL: https://github.com/nodejs/node/pull/28083 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refac...
[ { "path": "benchmark/tls/secure-pair.js", "patch": "@@ -6,19 +6,21 @@ const bench = common.createBenchmark(main, {\n size: [2, 1024, 1024 * 1024]\n });\n \n-const fixtures = require('../../test/common/fixtures');\n+const fs = require('fs');\n const tls = require('tls');\n const net = require('net');\n+con...
2019-06-05T22:19:24
rust-lang/rust
25a6fd3213ae54c83d27741b38a7e7dad7c686f0
ed2d759783dc9de134bbb3f01085b1e6dbf539f3
Augment the macro-stats test. With a long macro name that could fit on one line, but currently isn't formatted that way, because the name would overlap with the maximum width of the "Uses" column. (The next commit will fix this.)
[ { "path": "tests/ui/stats/macro-stats.rs", "patch": "@@ -49,12 +49,17 @@ fn opt(x: Option<u32>) {\n }\n }\n \n-macro_rules! this_is_a_really_really_long_macro_name {\n+macro_rules! long_name_that_fits_on_a_single_line {\n+ () => {}\n+}\n+long_name_that_fits_on_a_single_line!();\n+\n+macro_rules! long...
2025-06-30T02:53:00
huggingface/transformers
0fa49db1205e0a2745161ccac46184e7e46b6e2b
bf3f0ae70d0e902efab4b8517fce88f6697636ce
Fix ernie moe (#42535) * fix * style
[ { "path": "src/transformers/models/ernie4_5_moe/modeling_ernie4_5_moe.py", "patch": "@@ -318,51 +318,41 @@ def forward(self, hidden_states):\n \n \n class Ernie4_5_MoeExperts(nn.Module):\n+ \"\"\"Collection of expert weights stored as 3D tensors.\"\"\"\n+\n def __init__(self, config):\n super...
2025-12-01T18:04:32
vercel/next.js
f2e637d24d369454f1aafa569cb6cd649406639e
8811c1f3f678a9513ac06f7a643ffb9def326861
Upgrade webpack to 5.86.0 (#50992) To resolve issue #49382, we found layer doesn't get applied for dynamic imports, so we fixed it on webpack side in https://github.com/webpack/webpack/pull/17310 This PR is to upgrade webpack to 5.86.0 with that patch as a precedence. After this we need to fix the `next/image` client...
[ { "path": "package.json", "patch": "@@ -236,14 +236,16 @@\n \"typescript\": \"5.1.3\",\n \"unfetch\": \"4.2.0\",\n \"wait-port\": \"0.2.2\",\n- \"webpack\": \"5.74.0\",\n+ \"webpack\": \"5.86.0\",\n \"webpack-bundle-analyzer\": \"4.7.0\",\n \"whatwg-fetch\": \"3.0.0\",\n \"ws\"...
2023-06-08T20:35:12
golang/go
b2dc66c64db933120c34d2223e670e8594543bd9
a991d9dc27bda23018e23488806c8f8d027e4f7b
internal/fuzz: centralize corpus entry addition Adds an addCorpusEntry method to coordinator which manages checking for duplicate entries, writing entries to the cache directory, and adding entries to the corpus. Also moves readCache to be a method on the coordinator. Fixes #50606 Change-Id: Id6721384a2ad1cfb4c5471c...
[ { "path": "src/internal/fuzz/fuzz.go", "patch": "@@ -316,32 +316,15 @@ func CoordinateFuzzing(ctx context.Context, opts CoordinateFuzzingOpts) (err err\n \t\t\t\t\t} else {\n \t\t\t\t\t\t// Update the coordinator's coverage mask and save the value.\n \t\t\t\t\t\tinputSize := len(result.entry.Data)\n-\t\t\t\...
2021-11-01T17:03:36
nodejs/node
39d6da81f992240aa87e403cb541e097d26cca26
2abaa1a4438344b70d59399be0039141980a7fcc
test: add comments to the foaf+ssl fixtures PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -651,6 +651,9 @@ I_AM_THE_WALRUS_sha256_signature_signedby_rsa_private_b.sha256: rsa_private_b.pe\n rsa_public_b.pem: rsa_private_b.pem\n \topenssl rsa -in rsa_private_b.pem -pubout -out rsa_public_b.pem\n \n+# The following 'foafssl' cert is used in tes...
2019-06-01T00:08:10
huggingface/transformers
bf3f0ae70d0e902efab4b8517fce88f6697636ce
6e3f2f8f52f29e7080e5f286f92368dde30d6f83
[Ministral 3] Add ministral 3 (#42498) * Up * WIP * WIP * WIP * Apply suggestions from code review Co-authored-by: Julien Denize <40604584+juliendenize@users.noreply.github.com> * Update src/transformers/models/ministral3/configuration_ministral3.py Co-authored-by: Julien Denize <40604584+juliendenize@users.nor...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -598,6 +598,8 @@\n title: MiniMax\n - local: model_doc/ministral\n title: Ministral\n+ - local: model_doc/ministral3\n+ title: Ministral3\n - local: model_doc/mistral\n title: Mistral\n - local: model...
2025-12-01T18:02:16
vercel/next.js
8811c1f3f678a9513ac06f7a643ffb9def326861
f2cbfe31478b9bf160e2a297ec6244b3e4087f40
Add appDir-specific guidance for next-router-not-mounted error (#50076) The error `next-router-not-mounted` can also happen when one tries to use the `next/router` hook inside the app directory. The error page has been updated to reflect that, and migration guides are linked. Closes #47038.
[ { "path": "errors/next-router-not-mounted.md", "patch": "@@ -4,10 +4,16 @@\n \n A component used `useRouter` outside a Next.js application, or was rendered outside a Next.js application. This can happen when doing unit testing on components that use the `useRouter` hook as they are not configured with Next....
2023-06-08T20:08:26
golang/go
a991d9dc27bda23018e23488806c8f8d027e4f7b
f4aa021985e9ae4a9a395f8fbe32ad08d2bfda3b
cmd/compile: add missing shape check in (*Tsubster).tinter Add a missing shape check in (*Tsubster).tinter when substituting on a generic type which is an empty interface, analogous to same check in (*Tsubster).tstruct. Empty structs/interfaces that have rparams (i.e. are a generic type or a shape type) need to get a ...
[ { "path": "src/cmd/compile/internal/typecheck/subr.go", "patch": "@@ -1326,9 +1326,9 @@ func (ts *Tsubster) typ1(t *types.Type) *types.Type {\n func (ts *Tsubster) tstruct(t *types.Type, force bool) *types.Type {\n \tif t.NumFields() == 0 {\n \t\tif t.HasTParam() || t.HasShape() {\n-\t\t\t// For an empty st...
2022-01-27T01:58:08
electron/electron
4ac08870d07bb81e6b2103212f335d164a45ec35
7f787818004dfbc6ad8ca7fec47b237bcab61a80
Tweak error messages for dialog API
[ { "path": "lib/browser/api/dialog.js", "patch": "@@ -56,7 +56,7 @@ module.exports = {\n options.properties = ['openFile'];\n }\n if (!Array.isArray(options.properties)) {\n- throw new TypeError('Properties need to be array');\n+ throw new TypeError('Properties must be an array');\n ...
2016-03-30T20:07:13
nodejs/node
2abaa1a4438344b70d59399be0039141980a7fcc
f212fee2a3709abb267796e8e4a3fb5d85d438b1
test: change formatting of fixtures/keys/Makefile Converts the whitespace to spaces in the all: ... target for consistency. The other whitespace has to remain tabs due to how Makefiles work. PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <us...
[ { "path": "test/fixtures/keys/Makefile", "patch": "@@ -24,37 +24,37 @@ all: \\\n dh512.pem \\\n dh1024.pem \\\n dh2048.pem \\\n-\tdherror.pem \\\n-\tdsa_params.pem \\\n-\tdsa_private.pem \\\n-\tdsa_private_encrypted.pem \\\n-\tdsa_private_pkcs8.pem \\\n-\tdsa_public.pem \\\n+ dherror.pem \\\n+ dsa_p...
2019-05-30T22:11:32
huggingface/transformers
6e3f2f8f52f29e7080e5f286f92368dde30d6f83
83fe012d58528a14ee0bb0146885f2d6fcb1ec3f
[TP plans] Fix some incorrects TP plans (#42448) * gemma3 * qwen3 and modulars * fix tp plans --------- Co-authored-by: vasqu <antonprogamer@gmail.com>
[ { "path": "src/transformers/models/apertus/configuration_apertus.py", "patch": "@@ -101,10 +101,10 @@ class ApertusConfig(PreTrainedConfig):\n keys_to_ignore_at_inference = [\"past_key_values\"]\n default_theta = 12000000.0\n base_model_tp_plan = {\n- \"layers.*.self_attn.q_proj\": \"colw...
2025-12-01T17:50:33
vercel/next.js
7a8ea89492abfdcfc0a0ea63682f123733dfa5d4
1df39eae24d72c773e4f35199681a617b7f3aaae
fix(swc_plugin): use shared runtime (vercel/turbo#5239) ### Description closes WEB-1122. wasix internally initializes runtime by default, avoid it and let it use shared runtime instead.
[ { "path": "crates/turbopack-binding/Cargo.toml", "patch": "@@ -58,6 +58,9 @@ __swc_core_binding_napi_plugin = [\n __swc_core_binding_napi_plugin_filesystem_cache = [\n \"swc_core/plugin_transform_host_native_filesystem_cache\",\n ]\n+__swc_core_binding_napi_plugin_shared_runtime = [\n+ \"swc_core/plugin_...
2023-06-08T19:44:39
golang/go
f4aa021985e9ae4a9a395f8fbe32ad08d2bfda3b
db48840cfc5ea9f8067cd5238827965ea01cdde1
cmd/compile: support structural typing in unified IR This CL updates unified IR to look at the structural type of a composite literal type, rather than merely the underlying type, to determine if it's a structure. This fixes a number of currently failing regress test cases. Updates #50833. Change-Id: I11c040c77ec86c...
[ { "path": "src/cmd/compile/internal/noder/writer.go", "patch": "@@ -1218,6 +1218,7 @@ func (w *writer) expr(expr syntax.Expr) {\n \t\t}\n \n \t\tobj := obj.(*types2.Var)\n+\t\tassert(!obj.IsField())\n \t\tassert(targs.Len() == 0)\n \n \t\tw.code(exprLocal)\n@@ -1337,10 +1338,11 @@ func (w *writer) compLit(l...
2022-01-26T21:26:45
huggingface/transformers
83fe012d58528a14ee0bb0146885f2d6fcb1ec3f
dac2ad76bc49d38ff1fe117d6e5b8b69d1217e37
small fix tokenizer regex patch (#42528) * small fix * update * we prob still had 1 issue * fix * pop in case
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -42,7 +42,7 @@\n TextInput,\n TruncationStrategy,\n )\n-from .utils import PaddingStrategy, add_end_docstrings, logging\n+from .utils import PaddingStrategy, add_end_docstrings, is_offline_mode, logging\n \n \n logger = logg...
2025-12-01T17:23:18
nodejs/node
f212fee2a3709abb267796e8e4a3fb5d85d438b1
3e5b20cc0e3ea77803cc8ca796e98af99bc7ec49
test: change fixtures.readSync to fixtures.readKey PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/parallel/test-tls-getprotocol.js", "patch": "@@ -18,8 +18,8 @@ const clientConfigs = [\n \n const serverConfig = {\n secureProtocol: 'TLS_method',\n- key: fixtures.readSync('/keys/agent2-key.pem'),\n- cert: fixtures.readSync('/keys/agent2-cert.pem')\n+ key: fixtures.readKey('agent2-key....
2019-05-30T00:03:05
vercel/next.js
f2cbfe31478b9bf160e2a297ec6244b3e4087f40
3ccbe82280faed6273375b25a45eb2cb2b9e1b34
docs: Fix typo in colocation documentation. (#50975)
[ { "path": "docs/02-app/01-building-your-application/01-routing/12-colocation.mdx", "patch": "@@ -137,7 +137,7 @@ import { Button } from '@/components/button'\n \n ## Project organization strategies\n \n-There is no \"right\" or \"wrong\" way when it comes to organizing your own files and folders in Next.js ...
2023-06-08T19:16:48
huggingface/transformers
dac2ad76bc49d38ff1fe117d6e5b8b69d1217e37
063b431dfc7087efa0617f70d390d49e73653baf
Fix Qwen3OmniMoE weight init (#42531) * module.router -> module.gate * i am not smart today
[ { "path": "src/transformers/models/qwen3_omni_moe/modeling_qwen3_omni_moe.py", "patch": "@@ -84,7 +84,7 @@ def _init_weights(self, module):\n if isinstance(module, Qwen3OmniMoeThinkerTextSparseMoeBlock):\n init.normal_(module.experts.gate_up_proj, mean=0.0, std=std)\n init.no...
2025-12-01T17:07:57
golang/go
ef0b09c526d78de23186522d50ff93ad657014c0
ca6a5c0d518463b40c3e6e56655d45d9fd60e1f7
go/types, types2: clean up the set up of error, comparable Follow-up on CL 380754. For #50791. Change-Id: Ia2f8f9785c2f02647525e7ee4168991fd4066dd3 Reviewed-on: https://go-review.googlesource.com/c/go/+/381094 Trust: Robert Griesemer <gri@golang.org> Run-TryBot: Robert Griesemer <gri@golang.org> TryBot-Result: Gophe...
[ { "path": "src/cmd/compile/internal/types2/universe.go", "patch": "@@ -88,22 +88,32 @@ func defPredeclaredTypes() {\n \t{\n \t\tobj := NewTypeName(nopos, nil, \"error\", nil)\n \t\tobj.setColor(black)\n+\t\ttyp := NewNamed(obj, nil, nil)\n+\n+\t\t// error.Error() string\n+\t\trecv := NewVar(nopos, nil, \"\"...
2022-01-26T21:44:45
nodejs/node
3e5b20cc0e3ea77803cc8ca796e98af99bc7ec49
7aa79be81cb1613443cc2a8a5ada7ab688194824
test: remove uneeded agent keypair in fixtures/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/agent.crt", "patch": "@@ -1,21 +0,0 @@\n------BEGIN CERTIFICATE-----\n-MIIDXTCCAkWgAwIBAgIJAMUSOvlaeyQHMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\n-BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBX\n-aWRnaXRzIFB0eSBMdGQwHhcNMTAxMTE2MDkzMjQ5WhcNMTMxMTE1MDkzMjQ5WjBF\n-MQswCQYDVQQ...
2019-05-29T23:03:21
rust-lang/rust
4347a9273fce785ef1e0e82e0a658417790aaf1a
67d8469c2683a5351a13a19ea1b5cc3b07beb356
Fix handling of __builtin_ia32_rdtscp
[ { "path": "src/intrinsic/llvm.rs", "patch": "@@ -649,9 +649,8 @@ pub fn adjust_intrinsic_arguments<'a, 'b, 'gcc, 'tcx>(\n args = new_args.into();\n }\n \"__builtin_ia32_rdtscp\" => {\n- let ptr_type = builder.u32_type.make_pointer();\n- l...
2025-06-29T22:49:48
huggingface/transformers
1b6b6cd0ca91873e5a759e18b5bbb1eac56baa5f
641c99512a3aa462ca69dd351e75f16000de0532
Fix tied_weights for vlms (#42523) * one fix * attempt mistral3 * empty dict * that was olmoe's problem * current CI status? * actual CI status * simplify * hmm? * bird * force tie word embeddings to false * specifics of FSMT * wrong reference? * finalize * fixup * weird mamba error * fix tied weights ...
[ { "path": "src/transformers/models/kyutai_speech_to_text/modeling_kyutai_speech_to_text.py", "patch": "@@ -1069,7 +1069,7 @@ def _prepare_4d_causal_attention_mask_with_cache_position(\n \n @auto_docstring\n class KyutaiSpeechToTextForConditionalGeneration(KyutaiSpeechToTextPreTrainedModel, GenerationMixin):...
2025-12-01T16:40:53
vercel/next.js
b8e308f511f48882ebad301924ad54d48af70744
9a9d095b54a67ca74c6c32a19df2debffd067089
Add test for hidden form fields at the beginning of a Server Action form (#50978) Fixes #50087. The root cause was fixed in upstream React and here's a test to ensure it works end to end. fix NEXT-1228
[ { "path": "test/e2e/app-dir/actions/app-action.test.ts", "patch": "@@ -114,7 +114,7 @@ createNextDescribe(\n \n await check(() => {\n return browser.eval('window.location.pathname + window.location.search')\n- }, '/header?name=test&constructor=FormData')\n+ }, '/header?name=test&cons...
2023-06-08T17:25:56
rust-lang/rust
88db5895edf9ae1bb9deabce6ac106375c550582
b7091eca6d8eb0fe88b58cc9a7aec405d8de5b85
Changed intrinsic generation to include full intrinsic names in panic messages
[ { "path": "tools/generate_intrinsics.py", "patch": "@@ -176,14 +176,14 @@ def update_intrinsics(llvm_path, llvmint, llvmint2):\n out.write(\"// File generated by `rustc_codegen_gcc/tools/generate_intrinsics.py`\\n\")\n out.write(\"// DO NOT EDIT IT!\\n\")\n out.write(\"/// Translate ...
2025-06-29T22:24:28
electron/electron
896ea7b79dab9e698b8fc916f8f51e79b5e0e6d5
70f9cb098ff24cd6a06b65843471a0231a66206c
Do not create dummy node environment There is a bug in V8 that using Private in a dummy environment would result in crash.
[ { "path": "atom/renderer/atom_renderer_client.cc", "patch": "@@ -90,18 +90,6 @@ void AtomRendererClient::WebKitInitialized() {\n blink::WebCustomElement::addEmbedderCustomElementName(\"browserplugin\");\n \n OverrideNodeArrayBuffer();\n-\n- node_bindings_->Initialize();\n- node_bindings_->PrepareMessa...
2016-03-27T09:09:21
golang/go
946a8669d92f18a0029abaed9cea36194562a957
719e9894f9a471cd74b8469d9231cd2798b33999
cmd/api: reduce parallel 'go list' invocations to a constant 'go list' has its own internal parallelism, so invoking in in parallel can produce up to quadratic peak memory usage. Running 'go list' is also very I/O-intensive, so the higher parallelism does substantially improve latency; unfortunately, we lack a good w...
[ { "path": "src/cmd/api/goapi.go", "patch": "@@ -459,8 +459,11 @@ type listImports struct {\n \n var listCache sync.Map // map[string]listImports, keyed by contextName\n \n-// listSem is a semaphore restricting concurrent invocations of 'go list'.\n-var listSem = make(chan semToken, ((runtime.GOMAXPROCS(0)-1...
2022-01-26T17:45:12
nodejs/node
7aa79be81cb1613443cc2a8a5ada7ab688194824
c49e378f9e352933e301aa8b3473a9c468e39fff
test: move foafssl certs to fixtures/keys/ PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "test/fixtures/foafssl.crt", "patch": "@@ -1,25 +0,0 @@\n-Bag Attributes\n- friendlyName: Me's Not a Certification Authority ID\n- localKeyID: 98 CC 02 91 83 8D 14 4A 60 40 B7 11 E8 EF A9 01 4B D7 16 8A \n-subject=/O=FOAF+SSL/OU=The Community Of Self Signers/UID=http://example.com/#me/CN=Me\...
2019-05-29T22:47:10