repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
2c7cdec2a762108ae9231b7861c3689f4d23b58c
d3d8852d8997a6429cbd498138908e537869a6ef
io: remove UTF8 specified document for RuneReader RuneReader is fine with UTF16 or any other character encoding Fixes #49178 Change-Id: I08a5ac205e095349d451d3b60411eaeebc3aa563 Reviewed-on: https://go-review.googlesource.com/c/go/+/359334 Trust: Meng Zhuo <mzh@golangcn.org> Reviewed-by: Meng Zhuo <mzh@golangcn.org>...
[ { "path": "src/io/io.go", "patch": "@@ -279,7 +279,7 @@ type ByteWriter interface {\n \n // RuneReader is the interface that wraps the ReadRune method.\n //\n-// ReadRune reads a single UTF-8 encoded Unicode character\n+// ReadRune reads a single encoded Unicode character\n // and returns the rune and its s...
2021-10-28T02:04:36
vercel/next.js
8c7e4f9bc43d8e179ba060f58d105938022f955f
225e9246695219e8a130223651a3c386223eaec5
Fix fetchCache config and On-Demand Revalidate handling (#47803) This ensures we properly honor the `export const fetchCache` config and also ensures we properly bypass fetch-cache when an On-Demand Revalidation is occurring. The `export const dynamic` handling is not changed here as that was behaving correctly ...
[ { "path": "packages/next/src/client/components/static-generation-async-storage.ts", "patch": "@@ -7,6 +7,7 @@ export interface StaticGenerationStore {\n readonly pathname: string\n readonly incrementalCache?: IncrementalCache\n readonly isRevalidate?: boolean\n+ readonly isOnDemandRevalidate?: boolea...
2023-04-02T04:15:13
rust-lang/rust
6cea550285de6e884eb906b1933292856969df4e
d13a431a6cc69cd65efe7c3eb7808251d6fd7a46
tests: Minicore `extern "gpu-kernel"` feature test Explicitly cross-build it for GPU targets and check it errors on hosts.
[ { "path": "tests/ui/feature-gates/feature-gate-abi_gpu_kernel.AMDGPU.stderr", "patch": "@@ -0,0 +1,73 @@\n+error[E0658]: the extern \"gpu-kernel\" ABI is experimental and subject to change\n+ --> $DIR/feature-gate-abi_gpu_kernel.rs:16:8\n+ |\n+LL | extern \"gpu-kernel\" fn f1(_: ()) {}\n+ | ^^^^...
2025-06-01T20:38:02
huggingface/transformers
6c9f412105bb94a22d5adfb347ac6bce1cd1c066
0997c2f2ab08c32c8e2f90aaad06e29a7108535b
Fix typos in tests and util (#40780) Fix typos Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
[ { "path": "tests/commands/test_serving.py", "patch": "@@ -72,7 +72,7 @@ def test_parsed_args(self):\n \n def test_build_chat_completion_chunk(self):\n \"\"\"\n- Tests that the chunks are correctly built for the Chat Completion API. The `choices` checks implictly\n+ Tests that the c...
2025-09-10T11:45:40
nodejs/node
771b2901daae2e4389d157c18bb0f6674a0a19a4
43dd49c9782848c25e5b03448c8a0f923f13c158
doc: fix minor typo in dgram.md PR-URL: https://github.com/nodejs/node/pull/26055 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
[ { "path": "doc/api/dgram.md", "patch": "@@ -206,7 +206,7 @@ Note that specifying both a `'listening'` event listener and passing a\n useful.\n \n The `options` object may contain an additional `exclusive` property that is\n-use when using `dgram.Socket` objects with the [`cluster`] module. When\n+used when ...
2019-02-12T13:00:51
golang/go
d3d8852d8997a6429cbd498138908e537869a6ef
33c392f72d16163eb0795b3d61b2196ac21e1799
text/template: use reflect.Value.FieldByIndexErr to avoid a crash on a nil pointer as an embedded field. Fixes #48215 Change-Id: I214faa6e3cf08cdec1c01035e4bbca0900c6a408 Reviewed-on: https://go-review.googlesource.com/c/go/+/357963 Trust: Rob Pike <r@golang.org> Run-TryBot: Rob Pike <r@golang.org> TryBot-Result: Go...
[ { "path": "src/text/template/exec.go", "patch": "@@ -635,10 +635,13 @@ func (s *state) evalField(dot reflect.Value, fieldName string, node parse.Node,\n \tcase reflect.Struct:\n \t\ttField, ok := receiver.Type().FieldByName(fieldName)\n \t\tif ok {\n-\t\t\tfield := receiver.FieldByIndex(tField.Index)\n+\t\t...
2021-10-24T04:44:15
rust-lang/rust
580a9555d51a5c8e29f4f27f652cf0d6700ea879
d13a431a6cc69cd65efe7c3eb7808251d6fd7a46
compiler: Fix reusing same lint on fn ptrs with newly-deprecated ABIs
[ { "path": "compiler/rustc_hir_analysis/src/check/check.rs", "patch": "@@ -37,22 +37,23 @@ use {rustc_attr_data_structures as attrs, rustc_hir as hir};\n use super::compare_impl_item::check_type_bounds;\n use super::*;\n \n+fn add_abi_diag_help<T: EmissionGuarantee>(abi: ExternAbi, diag: &mut Diag<'_, T>) {\...
2025-06-09T22:36:48
huggingface/transformers
0997c2f2ab08c32c8e2f90aaad06e29a7108535b
a72e5a4b9daaef13c251d3313094eebbb2e10acc
Fix doc for PerceptionLMForConditionalGeneration forward. (#40733) * Fix doc for PerceptionLMForConditionalGeneration forward. * fix last nit --------- Co-authored-by: raushan <raushan@huggingface.co>
[ { "path": "src/transformers/models/perception_lm/modeling_perception_lm.py", "patch": "@@ -374,23 +374,44 @@ def forward(\n Example:\n \n ```python\n- >>> from PIL import Image\n- >>> import requests\n- >>> from transformers import AutoProcessor, PerceptionLMForCondition...
2025-09-10T09:57:19
vercel/next.js
225e9246695219e8a130223651a3c386223eaec5
5c6b8ac3f28fcd498405a3f998601895ebe993dc
Fix module resolving error in tracer (#47786) Fix the module resolving error found during development, because now few app route code is bundled into RSC server layer, it can't resolve opentelementry properly and will throw the error blow due to the check of `require('@opentelemetry/api')` to see if it's installed....
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -952,10 +952,10 @@ export default async function getBaseWebpackConfig(\n \n const reactDir = path.dirname(require.resolve('react/package.json'))\n const reactDomDir = path.dirname(require.resolve('react-dom/package.json'))\n- let hasOp...
2023-04-02T00:17:11
nodejs/node
40a8a7391664e7a5d8a264a1d85d059f9c05063b
82c4e170e5775ac0f3b4d14eba56a56f0c9126b4
test: add assert test for position indicator This test adds coverage for a ternary in assertion_error.js that checks if stderr is a TTY. PR-URL: https://github.com/nodejs/node/pull/26024 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
[ { "path": "test/pseudo-tty/test-assert-position-indicator.js", "patch": "@@ -0,0 +1,18 @@\n+'use strict';\n+require('../common');\n+const assert = require('assert');\n+\n+process.env.NODE_DISABLE_COLORS = true;\n+process.stderr.columns = 20;\n+\n+// Confirm that there is no position indicator.\n+assert.thro...
2019-02-10T04:57:36
electron/electron
6044ab05f3e17c487105908556bf78641ab3a2df
5a97cfaa64236fdcb23c8c4e164ab11d60d4d0f6
Ignore X Window System errors
[ { "path": "brightray/browser/browser_main_parts.cc", "patch": "@@ -11,6 +11,7 @@\n #include \"base/command_line.h\"\n #include \"base/strings/string_number_conversions.h\"\n #include \"components/devtools_http_handler/devtools_http_handler.h\"\n+#include \"content/public/browser/browser_thread.h\"\n #includ...
2015-10-04T07:40:51
golang/go
33c392f72d16163eb0795b3d61b2196ac21e1799
af05d8be3d9dd566b2ce3ff5344258314f128ff6
reflect: add FieldByIndexErr This new function, although different in signature from other reflect functions, allows the caller to avoid the panic caused by nil embedded fields in calls to FieldByIndex. Fixes #48218 Change-Id: I447f135bb789148c27ae3f2f23dcf43094f4c1de Reviewed-on: https://go-review.googlesource.com/...
[ { "path": "src/reflect/value.go", "patch": "@@ -5,6 +5,7 @@\n package reflect\n \n import (\n+\t\"errors\"\n \t\"internal/abi\"\n \t\"internal/goarch\"\n \t\"internal/itoa\"\n@@ -1232,7 +1233,8 @@ func (v Value) Field(i int) Value {\n }\n \n // FieldByIndex returns the nested field corresponding to index.\n...
2021-10-24T03:11:07
huggingface/transformers
a72e5a4b9daaef13c251d3313094eebbb2e10acc
a5ecd94a3f2addbc4b79594db1e5e3b0f7fb101c
🚨 Fix Inconsistant `input_feature` length and `attention_mask` length in `WhisperFeatureExtractor` (#39221) * Update feature_extraction_whisper.py * Reformat * Add feature extractor shape test * reformat * fix omni * fix new failing whisper test * Update src/transformers/models/whisper/feature_extraction_whispe...
[ { "path": "src/transformers/models/whisper/feature_extraction_whisper.py", "patch": "@@ -326,7 +326,14 @@ def __call__(\n \n if return_attention_mask:\n # rescale from sample (48000) to feature (3000)\n- padded_inputs[\"attention_mask\"] = padded_inputs[\"attention_mask\"][:, ...
2025-09-10T09:38:47
vercel/next.js
5c6b8ac3f28fcd498405a3f998601895ebe993dc
2a5c5589634856f09ea076081ad6ed3284f6d5f7
Fix flaky css test and remove unused tests deps (#47806) * use `check` to wait for css change * remove unused swr deps and update them to latest * remove swr esm test in `app-dir/app/` since it's already covered in `app-dir/app-external/` ---------
[ { "path": "test/e2e/app-dir/app-basepath/index.test.ts", "patch": "@@ -6,7 +6,6 @@ createNextDescribe(\n files: __dirname,\n skipDeployment: true,\n dependencies: {\n- swr: '2.0.0-rc.0',\n react: 'latest',\n 'react-dom': 'latest',\n sass: 'latest',", "additions": 0, ...
2023-04-01T23:58:32
nodejs/node
93417ac99521f0164dfacbbc0f7d30806d1ec0e3
86799326077611d694f37753ee3ab6903397f893
domain: avoid circular memory references Avoid circular references that the JS engine cannot see through because it involves an `async id` ⇒ `domain` link. Using weak references is not a great solution, because it increases the domain module’s dependency on internals and the added calls into C++ may affect performanc...
[ { "path": "lib/domain.js", "patch": "@@ -35,6 +35,10 @@ const {\n } = require('internal/errors').codes;\n const { createHook } = require('async_hooks');\n \n+// TODO(addaleax): Use a non-internal solution for this.\n+const kWeak = Symbol('kWeak');\n+const { WeakReference } = internalBinding('util');\n+\n //...
2019-02-07T20:19:07
electron/electron
aea1f8aebb8faf71c2c54c815b72ad9a8c21a88e
8c31c7fb593d025ec00259905c9ac8ca856d9cbb
Fix calculating min/max size in frameless views The minimum and maximum size that frameless windows had used, was incorrect. It included the border, so when it was called it actually added that to the size, so window increased in size. The fix makes sure that the view will use the frameless size. This fixes #2945 and...
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -818,9 +818,7 @@ bool NativeWindowViews::ExecuteWindowsCommand(int command_id) {\n NotifyWindowExecuteWindowsCommand(command);\n return false;\n }\n-#endif\n \n-#if defined(OS_WIN)\n bool NativeWindowViews::PreHandleMSG(\n UINT message, W...
2015-10-03T19:09:57
rust-lang/rust
2c8257493da0e452c03f34cc6f409d98234746db
b6685d748fe4668571c05ba338f61520db6dacc9
use correct edition when warning for unsafe attributes If an attribute is re-emitted by a macro, the incorrect edition was used to emit warnings for unsafe attributes
[ { "path": "compiler/rustc_parse/src/validate_attr.rs", "patch": "@@ -180,9 +180,14 @@ pub fn check_attribute_safety(\n let diag_span = attr_item.span();\n \n // Attributes can be safe in earlier editions, and become unsafe in later ones.\n+ //\n+ // Use the span...
2025-06-09T19:55:17
golang/go
af05d8be3d9dd566b2ce3ff5344258314f128ff6
d0751b1ad8d7a68586dc7567cee44e0ce323f26f
all: manual fixups for //go:build vs // +build Update many generators, also handle files that were not part of the standard build during 'go fix' in CL 344955. Fixes #41184. Change-Id: I1edc684e8101882dcd11f75c6745c266fccfe9e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/359476 Trust: Russ Cox <rsc@golang....
[ { "path": "src/crypto/elliptic/gen_p256_table.go", "patch": "@@ -26,7 +26,6 @@ func main() {\n // Generated by gen_p256_table.go. DO NOT EDIT.\n \n //go:build amd64 || arm64\n-// +build amd64 arm64\n \n package elliptic\n ", "additions": 0, "deletions": 1, "language": "Go" }, { "path": "...
2021-10-28T17:51:39
huggingface/transformers
08edec9f7da1ed3d43f277a870cd8cf5305df4b1
c52889bd51874d4f92b0eaabe3c8d60ca25ff13c
[processors] Unbloating simple processors (#40377) * modularize processor - step 1 * typos * why raise error, super call check it also * tiny update * fix copies * fix style and test * lost an import / fix copies * fix tests * oops deleted accidentally
[ { "path": "src/transformers/models/align/processing_align.py", "patch": "@@ -16,11 +16,7 @@\n Image/Text processor class for ALIGN\n \"\"\"\n \n-from typing import Optional, Union\n-\n-from ...image_utils import ImageInput\n-from ...processing_utils import ProcessingKwargs, ProcessorMixin, Unpack\n-from ......
2025-09-10T08:37:19
vercel/next.js
a5269cf0964eabde8591cb9969c95b415eb3102e
75c76ea7723890a953fef4ca89819f58d8a6c373
Fix docs only check for test-native-integration (#47800) x-ref: https://github.com/vercel/next.js/actions/runs/4585187133/jobs/8097219720 x-ref: https://github.com/vercel/next.js/actions/runs/4585188922/jobs/8097221396
[ { "path": ".github/workflows/build_test_deploy.yml", "patch": "@@ -1220,14 +1220,10 @@ jobs:\n path: ./*\n key: ${{ github.sha }}-${{ github.run_number }}\n \n- - name: Check non-docs only change\n- run: echo \"DOCS_CHANGE<<EOF\" >> $GITHUB_OUTPUT; echo \"$(node scripts/run-f...
2023-04-01T21:27:38
electron/electron
bb938b02d8f3b32079c4d555e50df6b9647df43b
9a2e2b365d061ec10cd861391fd5b1344af7194d
Remove Vista as possibly working Vista crashes on startup because Win7 touch APIs aren't present - this is fine, but we want to tell people out of the gate that it won't work
[ { "path": "docs/tutorial/supported-platforms.md", "patch": "@@ -8,9 +8,9 @@ Only 64bit binaries are provided for OS X, and the minimum OS X version supporte\n \n ### Windows\n \n-Windows 7 and later are supported, Electron should be able to run on Windows Vista, but there is no testing done on it.\n+Windows...
2015-10-03T16:02:50
rust-lang/rust
3fce086d79afd9bc5b52a13e051934694cf196c1
00b526212bbdd68872d6f964fcc9a14a66c36fd8
Make E0621 missing lifetime suggestion verbose ``` error[E0621]: explicit lifetime required in the type of `x` --> $DIR/42701_one_named_and_one_anonymous.rs:10:9 | LL | &*x | ^^^ lifetime `'a` required | help: add explicit lifetime `'a` to the type of `x` | LL | fn foo2<'a>(a: &'a Foo, x:...
[ { "path": "compiler/rustc_trait_selection/src/errors.rs", "patch": "@@ -759,7 +759,8 @@ pub enum ExplicitLifetimeRequired<'a> {\n #[suggestion(\n trait_selection_explicit_lifetime_required_sugg_with_ident,\n code = \"{new_ty}\",\n- applicability = \"unspecified\"\n...
2025-06-04T21:10:27
golang/go
d0751b1ad8d7a68586dc7567cee44e0ce323f26f
b9540246ba591e0ec5cd7cc1d6d62ab911ff9328
cmd/go: test with SIGTERM in test_fuzz_non_crash_signal The test currently uses only SIGKILL (which cannot be trapped by the worker process) and SIGILL (which is handled by the Go runtime, and does pretty unambiguously indicate a crash). It is missing a third (and perhaps more likely) case: a signal like SIGTERM that ...
[ { "path": "src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt", "patch": "@@ -10,6 +10,15 @@\n ! exists testdata\n ! stdout unreachable\n ! stderr unreachable\n+stdout 'fuzzing process terminated by unexpected signal; no crash will be recorded: signal: terminated'\n+\n+# FuzzKill sends itself a signa...
2021-10-28T19:57:45
huggingface/transformers
3340ccbd403b3f5f9cec79a063b674eb174f2b60
b9282355bea846b54ed850a066901496b19da654
Fix gpt-oss router_indices in EP (#40545) * fix out shape Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix router indice Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix mod Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix masking Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * fix...
[ { "path": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -846,7 +846,7 @@ def _prepare_input_fn(input_layouts, desired_input_layouts, mod, inputs, device_\n def _prepare_output_fn(output_layouts, use_local_output, mod, outputs, device_mesh):\n \"\"\"\n Imagine if you ha...
2025-09-10T08:30:55
nodejs/node
86799326077611d694f37753ee3ab6903397f893
0a4c69a5c5e8ba93b7c9f67d08ef6c859eb1f86a
src: add WeakReference utility Add a simple `WeakReference` utility that we can use until the language provides something on its own. PR-URL: https://github.com/nodejs/node/pull/25993 Fixes: https://github.com/nodejs/node/issues/23862 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ruben Bridgewat...
[ { "path": "src/node_util.cc", "patch": "@@ -1,6 +1,7 @@\n #include \"node_errors.h\"\n #include \"node_watchdog.h\"\n #include \"util.h\"\n+#include \"base_object-inl.h\"\n \n namespace node {\n namespace util {\n@@ -11,6 +12,7 @@ using v8::Boolean;\n using v8::Context;\n using v8::Function;\n using v8::Fun...
2019-02-07T20:18:25
vercel/next.js
75c76ea7723890a953fef4ca89819f58d8a6c373
b132efc5c4ff36b569ff972e09e712e69952788a
Update error-handling.md (#47779) Updated the react error boundary doc link. old one is depricated <!-- 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 t...
[ { "path": "docs/advanced-features/error-handling.md", "patch": "@@ -24,7 +24,7 @@ You can also use [404 page](/docs/advanced-features/custom-error-page#404-page)\n \n ## Handling Client Errors\n \n-React [Error Boundaries](https://reactjs.org/docs/error-boundaries.html) is a graceful way to handle a JavaScr...
2023-04-01T21:15:02
electron/electron
0f9f8e62fc801b724278b45a61a5c7f6828ca204
651009a1dc4cfe901a24ca829413719e906fb00e
docs: No leading slash in --url-base Fixes #2968.
[ { "path": "docs/tutorial/using-selenium-and-webdriver.md", "patch": "@@ -74,7 +74,7 @@ driver.\n First you need to download the `chromedriver` binary, and run it:\n \n ```bash\n-$ chromedriver --url-base=/wd/hub --port=9515\n+$ chromedriver --url-base=wd/hub --port=9515\n Starting ChromeDriver (v2.10.291558...
2015-10-03T05:53:52
huggingface/transformers
b9282355bea846b54ed850a066901496b19da654
79fdbf2a4a380bbc68741be6bb4d5e991247cf70
Adding Support for Qwen3-Next (#40771) * Add Qwen3-Next. * fix * style * doc * simplify * fix name * lazy cache init to allow multi-gpu inference * simplify * fix config to support different hybrid ratio. * remove last commit (redundant) * tests * fix test --------- Co-authored-by: bozheng-hit <dsoul0621@...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -657,6 +657,8 @@\n title: Qwen3\n - local: model_doc/qwen3_moe\n title: Qwen3MoE\n+ - local: model_doc/qwen3_next\n+ title: Qwen3Next\n - local: model_doc/rag\n title: RAG\n - local: model_doc/realm",...
2025-09-09T21:46:57
golang/go
b9540246ba591e0ec5cd7cc1d6d62ab911ff9328
e741e2fe0e51840b16bfc84d8daaba7670e7aac9
cmd/go: disallow the -fuzz flag for tests outside the main module Normally, when fuzzing identifies a failure it saves the failing input to the package's testdata directory. However, the testdata directory for packages outside the main module is normally not writable — and when it is, writing to a testdata directory i...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2785,11 +2785,12 @@\n //\n // \t-fuzz regexp\n // \t Run the fuzz target matching the regular expression. When specified,\n-// \t the command line argument must match exactly one package, and regexp\n-// \t must match exactly one fuzz target within t...
2021-10-27T20:31:18
nodejs/node
0a4c69a5c5e8ba93b7c9f67d08ef6c859eb1f86a
af83f6af5daf5b91f790cb6b9bf61f1ca566ccd0
doc: fix some nits in perf_hooks PR-URL: https://github.com/nodejs/node/pull/26022 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@g...
[ { "path": "doc/api/perf_hooks.md", "patch": "@@ -398,14 +398,14 @@ Returns a list of `PerformanceEntry` objects in chronological order\n with respect to `performanceEntry.startTime` whose `performanceEntry.entryType`\n is equal to `type`.\n \n-## monitorEventLoopDelay([options])\n+## perf_hooks.monitorEvent...
2019-02-10T01:26:12
vercel/next.js
b132efc5c4ff36b569ff972e09e712e69952788a
2abc824869e4927b820767c1c416a381c8ae528d
fix(export): make static export work with worker_threads (#47784) Fixes #46993. The issue is introduced in #46705 by @ijjk Next.js uses `jest-worker` for multiprocessing. `jest-worker` supports both `child_process` and `worker_threads` modes. Next.js use `child_process` mode by default, but can also switch to using...
[ { "path": "packages/next/src/lib/worker.ts", "patch": "@@ -14,6 +14,7 @@ export class Worker {\n timeout?: number\n onRestart?: (method: string, args: any[], attempts: number) => void\n exposedMethods: ReadonlyArray<string>\n+ enableWorkerThreads?: boolean\n }\n ) {\n let { ...
2023-04-01T17:43:59
electron/electron
64640afc20bba0e6474a3bb2b61c0d72a379185c
24518d13d5ec25882c291a6b01d50fb569fb44d5
supported operating system list Proposed fix for issue #2964
[ { "path": "README.md", "patch": "@@ -38,6 +38,12 @@ npm install electron-prebuilt --save-dev\n \n - [China](https://npm.taobao.org/mirrors/electron)\n \n+## Supported Operating Systems\n+\n+- Ubuntu: 14.04 and higher\n+- Mac: OS X 10.8.0 and higher\n+- Windows: Win7 or higher\n+\n ## Documentation\n \n Guid...
2015-10-03T00:41:57
huggingface/transformers
d09fdf5e52294f1e34ef981da368174724ff65b5
d33c189e5a3a11f6260da7e554fb5d49fde891e1
Fix crash when executing MambaCache sample code (#40557) * Fix the sample code of MambaCache * Update automatically generated code * Fix FalconMambaCache documents * minor doc fixes --------- Co-authored-by: Joao Gante <joao@huggingface.co>
[ { "path": "src/transformers/models/falcon_mamba/modeling_falcon_mamba.py", "patch": "@@ -71,7 +71,8 @@ class FalconMambaCache:\n config (`PretrainedConfig):\n The configuration file defining the shape-related attributes required to initialize the static cache.\n max_batch_size (`...
2025-09-09T16:44:49
golang/go
e741e2fe0e51840b16bfc84d8daaba7670e7aac9
834e36ec778c11b068a2d5354343d4668e5a9ceb
cmd/go: consolidate fuzz-support checks We had been repeating conditions for specific platforms and architectures to gate fuzzing tests, but the more of those tests we add the more we will have to update if the set of supported platforms and archictures expands over time. We also ought to provide a friendlier error m...
[ { "path": "src/cmd/go/go_test.go", "patch": "@@ -43,10 +43,12 @@ func init() {\n }\n \n var (\n-\tcanRace = false // whether we can run the race detector\n-\tcanCgo = false // whether we can use cgo\n-\tcanMSan = false // whether we can run the memory sanitizer\n-\tcanASan = false // whether we can run the...
2021-10-28T19:00:33
nodejs/node
6edf88284b2ef522d2f073e66fa32e9cbe6fafd2
0aa74443d8bdea3c3840dbc3d4bd700b05ca7a4c
n-api: finalize during second-pass callback Calling into the engine from a weak callback is unsafe, however, the engine offers a way to attach a second-pass weak callback which gets called when it is safe to call into JavaScript. This moves the point at which the N-API finalize callback gets called to this latter poin...
[ { "path": "src/js_native_api_v8.cc", "patch": "@@ -281,10 +281,25 @@ class Reference : private Finalizer {\n }\n \n private:\n+ // The N-API finalizer callback may make calls into the engine. V8's heap is\n+ // not in a consistent state during the weak callback, and therefore it does\n+ // not support...
2019-02-07T20:11:01
rust-lang/rust
03c846ee1d118d8a2a39085c7365655706aee0f8
c7174a761b7f5b70a1abd1b2a122876ffe097c0f
Introduce ParseMode::diagnostic and fix multiline spans
[ { "path": "compiler/rustc_parse_format/src/lib.rs", "patch": "@@ -29,6 +29,11 @@ pub enum ParseMode {\n Format,\n /// An inline assembly template string for `asm!`.\n InlineAsm,\n+ /// A format string for use in diagnostic attributes.\n+ ///\n+ /// Similar to `format_args!`, however onl...
2025-05-24T16:12:18
vercel/next.js
2abc824869e4927b820767c1c416a381c8ae528d
f978e70053e619435980f0d2d19609e1d0945deb
Turbopack: Use `SharedError` for body streaming (#47677) Pending https://github.com/vercel/turbo/pull/4392 landing in Turbopack (and https://github.com/vercel/next.js/pull/47476 landing here), this removes `BodyError` and switches to `SharedError`. That should allow us to preserve the source chain of errors for when w...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -386,7 +386,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230331.2#a7d87270da39b6fe235c37144a1be338ec4c8e13\"\n+source = \"git+https://github.com/v...
2023-04-01T11:37:17
rust-lang/rust
f002abad5e78e2d7c90cac19d756774f24b029f2
b68c06b1e2fdfe9d9aebbd7aa1650248ec6f85a2
change FormatString::parse to only return the first error
[ { "path": "compiler/rustc_trait_selection/src/error_reporting/traits/on_unimplemented.rs", "patch": "@@ -848,34 +848,27 @@ impl<'tcx> OnUnimplementedFormatString {\n }\n }\n }\n- // Errors from the underlying `rustc_parse_format::Parser`\n- ...
2025-05-23T21:25:32
nodejs/node
902c71a9d09bce6b1da4258d1775375f6539bbec
5bc6e493c0642dd65e458026b8145f266d7d5417
test: add `Worker` + `--prof` regression test Fixes: https://github.com/nodejs/node/issues/24016 PR-URL: https://github.com/nodejs/node/pull/26011 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Joy...
[ { "path": "test/parallel/test-worker-prof.js", "patch": "@@ -0,0 +1,41 @@\n+'use strict';\n+const common = require('../common');\n+const tmpdir = require('../common/tmpdir');\n+const fs = require('fs');\n+const assert = require('assert');\n+const { spawnSync } = require('child_process');\n+const { Worker } ...
2019-02-08T18:13:35
electron/electron
0ecf077590ef64e88a31fff81fe50590a8c42c82
e5e4749eb3c592667922f87c1105981db9dd84f7
Fix typo for docs/api/menu-item.md
[ { "path": "docs/api/menu-item.md", "patch": "@@ -1,6 +1,6 @@\n # MenuItem\n \n-The `menu-item` module allows you to add items to an application or content\n+The `menu-item` module allows you to add items to an application or context\n [`menu`](menu.md).\n \n See [`menu`](menu.md) for examples.", "additi...
2015-10-02T13:53:55
vercel/next.js
f978e70053e619435980f0d2d19609e1d0945deb
083dd2a59fefcc170265f7ba0eefa34732638083
provide full polyfill for process (#47764) ### What? see also https://github.com/vercel/turbo/pull/4415 We need a full process polyfill to fix some edge cases Also disables SourceMap for edge chunks, since they are not used ### Why? Some packages do weird things, e. g. ``` var isBrowser = process.ti...
[ { "path": "packages/next-swc/Cargo.lock", "patch": "@@ -386,7 +386,7 @@ dependencies = [\n [[package]]\n name = \"auto-hash-map\"\n version = \"0.1.0\"\n-source = \"git+https://github.com/vercel/turbo.git?tag=turbopack-230329.3#ffb7e70a7e8b1503bdb50e955009f451b49226b2\"\n+source = \"git+https://github.com/v...
2023-04-01T10:06:36
rust-lang/rust
d3137d91b8bf87197757c5429d9acfcda79c0911
716190632f58f073f3cac903324b62899599876b
Move the "missing closing brace" error creation to one place
[ { "path": "compiler/rustc_parse_format/src/lib.rs", "patch": "@@ -254,19 +254,15 @@ impl<'a> Iterator for Parser<'a> {\n // single open brace\n self.last_open_brace = Some(start..end);\n let arg = self.argument();\n- ...
2025-05-23T18:48:22
golang/go
f229e7031a6efb2f23241b5da000c3b3203081d6
ed475fe53ba41c0c15b11565f8b9d00165345bc2
all: go fix -fix=buildtag std cmd (except for bootstrap deps, vendor) When these packages are released as part of Go 1.18, Go 1.16 will no longer be supported, so we can remove the +build tags in these files. Ran go fix -fix=buildtag std cmd and then reverted the bootstrapDirs as defined in src/cmd/dist/buildtool.go,...
[ { "path": "src/archive/tar/stat_actime1.go", "patch": "@@ -3,7 +3,6 @@\n // license that can be found in the LICENSE file.\n \n //go:build aix || linux || dragonfly || openbsd || solaris\n-// +build aix linux dragonfly openbsd solaris\n \n package tar\n ", "additions": 0, "deletions": 1, "langua...
2021-08-25T16:48:26
nodejs/node
2e405e576bd629f9c4be4a13c74801b4c81ab378
448b0c0afcd87f93aab8b863dcaf463827814ad5
src: remove unused class in node_errors.h PR-URL: https://github.com/nodejs/node/pull/25980 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "src/node_errors.h", "patch": "@@ -23,17 +23,6 @@ void AppendExceptionLine(Environment* env,\n [[noreturn]] void FatalError(const char* location, const char* message);\n void OnFatalError(const char* location, const char* message);\n \n-// Like a `TryCatch` but exits the process if an exception wa...
2019-02-07T08:03:02
vercel/next.js
083dd2a59fefcc170265f7ba0eefa34732638083
7c189c5c08e9fdc53b55929d0947cd686cb9b2e1
Tweak canary undrafting (#47777) Fixes: https://github.com/vercel/next.js/actions/runs/4581084068/jobs/8090349455#step:10:661
[ { "path": "scripts/start-release.js", "patch": "@@ -81,16 +81,28 @@ async function main() {\n Authorization: `Bearer ${githubToken}`,\n 'X-GitHub-Api-Version': '2022-11-28',\n }\n- const { version } = require('../lerna.json')\n+ let { version } = require('../lerna.json')\n+ ...
2023-04-01T04:06:51
rust-lang/rust
358b80cc1f686289b8eb99151da9f511c84134fa
9e7782b809383d7c9293d71be9334d4790b0915e
Fix `manual_flatten` removes the useless if let The suggestion of `manual_flatten` does not includes the replacement of `if let` so far despite of `.flatten()` suggestion. This change eliminates a redundant `if let`. changelog: [`manual_flatten`] the suggestion removes `if let`
[ { "path": "clippy_lints/src/loops/manual_flatten.rs", "patch": "@@ -2,8 +2,9 @@ use super::MANUAL_FLATTEN;\n use super::utils::make_iterator_snippet;\n use clippy_utils::diagnostics::span_lint_and_then;\n use clippy_utils::msrvs::{self, Msrv};\n+use clippy_utils::source::{HasSession, indent_of, reindent_mul...
2025-05-21T13:55:25
huggingface/transformers
1cdbbb3e9d43e58ef7596a6013194f0e37a73c81
ed100211cb5661b9860a2886fee964eb4b05a9a7
Support sliding window in CB (#40688) * CB example: better compare feature * Cache managers, still issue w/ effective length * WIP -- fix for effective length * Renames * Wroking, need better parity checks, we mind be missing 1 token * Small fixes * Fixed wrong attn mask and broke cache into pieces * Warmup is ...
[ { "path": "examples/pytorch/continuous_batching.py", "patch": "@@ -13,49 +13,50 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n import argparse\n+import contextlib\n import json\n import os\n import time\n from typing import Optional\n \n impor...
2025-09-09T13:51:11
golang/go
ed475fe53ba41c0c15b11565f8b9d00165345bc2
2bc8ed8e9c5d8ae303b42bbd8c65f2c5dc38352a
cmd/go: update for //go:build lines cmd/go has its own //go:build evaluator, which is needed for patterns like 'all'. The code is a modified copy of some unexported routines from the go/build package. Update it by copying those again and re-modifying them. The modifications are primarily the new func eval and also ign...
[ { "path": "src/cmd/go/internal/imports/build.go", "patch": "@@ -2,17 +2,51 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// Copied from Go distribution src/go/build/build.go, syslist.go\n+// Copied from Go distribution src/go/build/build....
2021-10-28T02:59:55
nodejs/node
448b0c0afcd87f93aab8b863dcaf463827814ad5
1847696f4b6284bad45f452bc8595927074118dc
test: capture stderr from child processes If the test fails with errors from the child commands, there is no debug info. Suppliment the stderr data so that we know what to look for. Refs: https://github.com/nodejs/node/issues/25988 PR-URL: https://github.com/nodejs/node/pull/26007 Reviewed-By: Anna Henningsen <anna@a...
[ { "path": "test/parallel/test-child-process-pipe-dataflow.js", "patch": "@@ -33,19 +33,17 @@ const MB = KB * KB;\n grep = spawn('grep', ['x'], { stdio: [cat.stdout, 'pipe', 'pipe'] });\n wc = spawn('wc', ['-c'], { stdio: [grep.stdout, 'pipe', 'pipe'] });\n \n+ [cat, grep, wc].forEach((child, index) => ...
2019-02-08T12:52:02
electron/electron
8c3116851dcdc2eee5be766a1f889d48a88ddab2
8b65d378610f5461c0463bd0b53878f604c98d8b
Exit the process when unable to find a valid app Fixes #2583.
[ { "path": "atom/browser/lib/init.coffee", "patch": "@@ -64,7 +64,9 @@ for packagePath in searchPaths\n catch e\n continue\n \n-throw new Error(\"Unable to find a valid app\") unless packageJson?\n+unless packageJson?\n+ process.nextTick -> process.exit 1\n+ throw new Error(\"Unable to find a valid a...
2015-09-30T09:29:38
vercel/next.js
7d27895c577e1aec39a640fcdc94d8e147d82d37
6e5eb2c4d2025ad9c25de0d438df5bdfe4d61613
Fix typo in error overlay (#47762) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Impr...
[ { "path": "packages/next-swc/crates/next-core/js/src/overlay/internal/container/Errors.tsx", "patch": "@@ -225,7 +225,7 @@ const TABS: TabConfig[] = [\n icon: <AlertOctagon />,\n title: {\n one: 'Runtime Warnings',\n- many: 'Runtime Warningss',\n+ many: 'Runtime Warnings',\n sh...
2023-04-01T02:08:01
huggingface/transformers
82d66e5dd00d829291565956146c4d707394b13e
a871f6f58d49f3a05ae9dae519caa8aa9d919a07
Fix: swanlab `public.cloud.experiment_url` api error (#40763) fix
[ { "path": "src/transformers/integrations/integration_utils.py", "patch": "@@ -2425,7 +2425,7 @@ def setup(self, args, state, model, **kwargs):\n badge_markdown = (\n f'[<img src=\"https://raw.githubusercontent.com/SwanHubX/assets/main/badge1.svg\"'\n f...
2025-09-09T09:28:13
golang/go
266626211e40d1f2c3a34fa4cd2023f5310cbd7d
31249688487ca3a60f856ad082d4e84c4d5f79fb
net/http: guarantee that the Transport dial functions are respected in js/wasm The net/http package has a documented contract that if DialContext, DialDLSContext, Dial or DialTLS are specified in an instance of Transport, that they will be used to set up the connection. If they are not specified, then a reasonable fal...
[ { "path": "AUTHORS", "patch": "@@ -1015,6 +1015,7 @@ Nathan Youngman <git@nathany.com>\n Nathaniel Cook <nvcook42@gmail.com>\n Naveen Kumar Sangi <naveenkumarsangi@protonmail.com>\n Neelesh Chandola <neelesh.c98@gmail.com>\n+Neil Alexander <neilalexander@neilalexander.dev>\n Neil Lyons <nwjlyons@googlemail....
2021-09-03T21:07:22
nodejs/node
e0a3d741352001d3254adc290763b1bdcbad3ad3
ea2350bb00faee684319ce462037a3f0906e54f0
crypto: include 'Buffer' in error output of Hash.update method Fixes: https://github.com/nodejs/node/issues/25487 PR-URL: https://github.com/nodejs/node/pull/25533 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: James M Snell <jasnell@gmai...
[ { "path": "lib/internal/crypto/hash.js", "patch": "@@ -62,7 +62,11 @@ Hash.prototype.update = function update(data, encoding) {\n \n if (typeof data !== 'string' && !isArrayBufferView(data)) {\n throw new ERR_INVALID_ARG_TYPE('data',\n- ['string', 'TypedArray', 'DataV...
2019-01-16T11:04:14
vercel/next.js
d66236f2d8ed386a7d8b961e2137bce05a6631e0
0e5fb4960052905c695d8080d02005551c03fd7b
test(turbopack): blocking CI for turbopack integration test (#47709) <!-- 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": ".github/workflows/build_test_deploy.yml", "patch": "@@ -810,6 +810,55 @@ jobs:\n - run: xvfb-run node run-tests.js test/integration/with-electron/test/index.test.js\n if: ${{needs.build.outputs.docsChange == 'nope'}}\n \n+ # A job to run sets of tests with turbopack enabled. These ...
2023-04-01T01:50:35
huggingface/transformers
a871f6f58d49f3a05ae9dae519caa8aa9d919a07
aee5000f1605ebbc1ac0dcbdc54b81b109461b96
Add EfficientLoFTRImageProcessorFast for GPU-accelerated image processing (#40215) * Add EfficientLoFTRImageProcessorFast for GPU-accelerated image processing * Fix fast processor output format and add comprehensive tests * Fix trailing whitespace in test file * Apply ruff formatting to test file * simplify pair v...
[ { "path": "docs/source/en/model_doc/efficientloftr.md", "patch": "@@ -148,6 +148,14 @@ processed_outputs = processor.post_process_keypoint_matching(outputs, image_size\n - post_process_keypoint_matching\n - visualize_keypoint_matching\n \n+## EfficientLoFTRImageProcessorFast\n+\n+[[autodoc]] EfficientLoFTRI...
2025-09-08T21:08:02
golang/go
31249688487ca3a60f856ad082d4e84c4d5f79fb
6bd0e7fa8a2cb5c8de9d4566c900233715d8cf0e
cmd/fix: add buildtag fix Now that Go 1.17 is out and Go 1.15 is unsupported, removing // +build lines can be done safely: in the worst case, if code is compiled using Go 1.16 the toolchain will detect the presence of a //go:build without // +build and fail the build. (It will not silently choose the wrong files.) No...
[ { "path": "src/cmd/fix/buildtag.go", "patch": "@@ -0,0 +1,51 @@\n+// Copyright 2020 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package main\n+\n+import (\n+\t\"go/ast\"\n+\t\"strings\"\n+)\n+\n+func in...
2020-06-29T18:29:09
nodejs/node
ea2350bb00faee684319ce462037a3f0906e54f0
2fa6376ec910f6e2c4faef1d2d2924217653526d
src: fix return type in Hash PR-URL: https://github.com/nodejs/node/pull/25936 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/heap_utils.cc", "patch": "@@ -42,7 +42,7 @@ class JSGraphJSNode : public EmbedderGraph::Node {\n \n struct Hash {\n inline size_t operator()(JSGraphJSNode* n) const {\n- return n->IdentityHash();\n+ return static_cast<size_t>(n->IdentityHash());\n }\n };\n ", "additi...
2019-02-05T01:03:04
vercel/next.js
7f0638869cfccdaeaaac1b977341347822178b1d
82787dba9d7caf6d02a19a6b99fec4904e122cf9
Fix skipMiddlewareUrlNormalize with i18n (#47773) This ensures we don't normalize locales in the URL with the skipMiddlewareUrlNormalize flag enabled so that casing redirects can be applied correctly for locales.
[ { "path": "packages/next/src/server/web/adapter.ts", "patch": "@@ -99,7 +99,9 @@ export async function adapter(\n \n const request = new NextRequestHint({\n page: params.page,\n- input: String(requestUrl),\n+ input: process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE\n+ ? params.request.url\n+ ...
2023-04-01T01:24:20
huggingface/transformers
aee5000f1605ebbc1ac0dcbdc54b81b109461b96
126264d015581b6d01ab9c822a8fe365d75d64ed
Fix Bark failing tests (#39478) * Fix vocab size for Bark generation. * Fix Bark processor tests. * Fix style. * Address comments. * Fix formatting. --------- Co-authored-by: eustlb <94853470+eustlb@users.noreply.github.com>
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -3158,6 +3158,8 @@ def _beam_search(\n vocab_size = self.config.audio_vocab_size\n elif self.__class__.__name__ == \"ImageGPTForCausalImageModeling\":\n vocab_size = self.get_output_embeddings().out_features\n+ ...
2025-09-08T18:24:51
nodejs/node
1aa11e14440dc531a7208128b6416814f7b0964b
f93df511558609fad38fe0ae34635c7c914ad2f8
http2: makes response.writeHead return the response Fixes: https://github.com/nodejs/node/issues/25935 PR-URL: https://github.com/nodejs/node/pull/25974 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/http2.md", "patch": "@@ -3283,15 +3283,23 @@ should be sent. See the [`'checkContinue'`][] event on `Http2Server` and\n #### response.writeHead(statusCode[, statusMessage][, headers])\n <!-- YAML\n added: v8.4.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/n...
2019-02-06T22:24:50
huggingface/transformers
126264d015581b6d01ab9c822a8fe365d75d64ed
5a468e56b7c04ffe2e4acd4ba0e1b64325e3b83e
🌐 [i18n-KO] Translated 'xclip.md' to Korean (#39594) * feat: nmt draft * fix: manual edits * docs: ko: xclip.md * feat: nmt draft * fix: manual edits * fix: Modify _toctree.yml file to reflect review * fix: Modify _toctree.yml file to reflect review * jungnerd_suggestion_modified_01 ko_xclip.md Co-authored-by...
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -997,6 +997,8 @@\n title: WavLM\n - local: model_doc/whisper\n title: Whisper\n+ - local: model_doc/xclip\n+ title: xclip\n - local: in_translation\n title: XLS-R\n - local: in_translation", "addi...
2025-09-08T18:19:10
vercel/next.js
82787dba9d7caf6d02a19a6b99fec4904e122cf9
2820f0787512b6514e36c02cbddd4d3ab69f0251
turbopack: ensure ENV values are available in middleware (#47767) Turbopack starts up the router process with all ENV values, but the edge function definition didn't list any `env` keys for the function invocation. So, middleware couldn't access any ENV values. Turbopack doesn't currently have a way to determine ...
[ { "path": "packages/next-swc/crates/next-dev-tests/tests/integration/next/router/middleware-env/input/.env", "patch": "@@ -0,0 +1 @@\n+CUSTOM_ENV=foobar", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "packages/next-swc/crates/next-dev-tests/tests/integration/next/ro...
2023-04-01T00:22:27
golang/go
6bd0e7fa8a2cb5c8de9d4566c900233715d8cf0e
5fce1d96137e1079c393c94febfac49d1e2979b0
runtime: fix backward error message This was added in CL 339990. Change-Id: I4b0f97bf1a3926e37a42f77e149dcab3b7b75a63 Reviewed-on: https://go-review.googlesource.com/c/go/+/359255 Trust: Michael Pratt <mpratt@google.com> Run-TryBot: Michael Pratt <mpratt@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-b...
[ { "path": "src/runtime/crash_cgo_test.go", "patch": "@@ -534,7 +534,7 @@ func TestCgoTracebackSigpanic(t *testing.T) {\n \t// No runtime errors like \"runtime: unexpected return pc\".\n \tnowant := \"runtime: \"\n \tif strings.Contains(got, nowant) {\n-\t\tt.Errorf(\"unexpectedly saw %q in output\", want)\n...
2021-10-27T20:09:59
huggingface/transformers
5a468e56b7c04ffe2e4acd4ba0e1b64325e3b83e
e8db153599f5cb34cb99601ffcbb31731015a063
Fix `continue_final_message` in `apply_chat_template` to prevent substring matching issues (#40732) * Fix continue_final_message parameter in apply_chat_template * after run fixup * Handle trim in the template * after fixup * Update src/transformers/utils/chat_template_utils.py --------- Co-authored-by: Matt <Ro...
[ { "path": "src/transformers/utils/chat_template_utils.py", "patch": "@@ -17,6 +17,7 @@\n import re\n import types\n from contextlib import contextmanager\n+from copy import deepcopy\n from datetime import datetime\n from functools import lru_cache\n from inspect import isfunction\n@@ -503,10 +504,27 @@ def ...
2025-09-08T17:25:12
nodejs/node
f93df511558609fad38fe0ae34635c7c914ad2f8
c2d374fcccf04b6bf62acabe09647fb4fab2dab8
http: makes response.writeHead return the response Fixes: https://github.com/nodejs/node/issues/25935 PR-URL: https://github.com/nodejs/node/pull/25974 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -1450,6 +1450,10 @@ the request body should be sent. See the [`'checkContinue'`][] event on\n <!-- YAML\n added: v0.1.30\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/25974\n+ description: Return `this` from `writeHead()` t...
2019-02-06T22:17:23
vercel/next.js
b337049d9a2581eb62e686d5c624b973bdc3eb1e
269b44d23284c1e2b87263e4c754c2292f335942
Use `SharedError` for body streaming (vercel/turbo#4392) Follow up to https://github.com/vercel/turbo/pull/4329, this removes `BodyError` (which was just a simple `String` and not an `Error`) and switches to `SharedError`. I've implemented a basic `PartialEq` and `Serialization` for `SharedError` so that it does...
[ { "path": "crates/turbo-tasks/src/util.rs", "patch": "@@ -1,13 +1,15 @@\n use std::{\n any::Provider,\n+ error::Error as StdError,\n fmt::{Debug, Display},\n hash::{Hash, Hasher},\n ops::Deref,\n sync::Arc,\n time::Duration,\n };\n \n-use anyhow::Error;\n+use anyhow::{anyhow, Erro...
2023-03-31T23:10:36
golang/go
5fce1d96137e1079c393c94febfac49d1e2979b0
6f0185bf38a679f468b6a4209f15188a11662eb5
runtime: disable TestSegv panic check on darwin, illumos, solaris CL 339990 made this test more strict, exposing pre-existing issues on these OSes. Skip for now until they can be resolved. Updates #49182 Change-Id: I3ac400dcd21b801bf4ab4eeb630e23b5c66ba563 Reviewed-on: https://go-review.googlesource.com/c/go/+/35925...
[ { "path": "src/runtime/crash_cgo_test.go", "patch": "@@ -625,10 +625,18 @@ func TestSegv(t *testing.T) {\n \t\t\tif !strings.Contains(got, want) {\n \t\t\t\tt.Errorf(\"did not see %q in output\", want)\n \t\t\t}\n+\n \t\t\t// No runtime errors like \"runtime: unknown pc\".\n-\t\t\tnowant := \"runtime: \"\n-...
2021-10-27T20:07:40
electron/electron
ee0f0f6cfcd41f3f70399922bec08d1f109317ed
7f1cb9f90ab4ad334ceecf72ea1b9a933fc9b163
Fix window state events on Windows This commit fixes the issue we had with window state events not firing when triggered through Aero Snap. Instead of listening to command from the system menu (SC_MAXIMIZE etc.), we use the WM_SIZE event. This resolves #1381.
[ { "path": "atom/browser/native_window_views.cc", "patch": "@@ -169,9 +169,6 @@ NativeWindowViews::NativeWindowViews(\n menu_bar_autohide_(false),\n menu_bar_visible_(false),\n menu_bar_alt_pressed_(false),\n-#if defined(OS_WIN)\n- is_minimized_(false),\n-#endif\n keyboard_event_...
2015-09-28T23:20:09
huggingface/transformers
e8db153599f5cb34cb99601ffcbb31731015a063
fd2a29d4680c972d7c4e48593cd69d875a6f2499
Fix inconsistency in SeamlessM4T and SeamlessM4Tv2 docs (#39364)
[ { "path": "src/transformers/models/seamless_m4t/modeling_seamless_m4t.py", "patch": "@@ -3881,8 +3881,9 @@ def generate(\n [`SeamlessM4TProcessor`] class. See [`SeamlessM4TFeatureExtractor.__call__`] for details.\n return_intermediate_token_ids (`bool`, *optional*):\n ...
2025-09-08T17:01:44
nodejs/node
de9d5ff287c576c495f5c132fdf4b826f1356e5a
8b79c15b6f82c79c35bf57927342ac8e44e1e4b7
worker: use correct ctor for error serialization When serializing errors, use the error constructor that is closest to the object itself in the prototype chain. The previous practice of walking downwards meant that `Error` would usually be the first constructor that is used, even when a more specific one would be ava...
[ { "path": "lib/internal/error-serdes.js", "patch": "@@ -86,7 +86,7 @@ function serializeError(error) {\n if (typeof error === 'object' &&\n ObjectPrototypeToString(error) === '[object Error]') {\n const constructors = GetConstructors(error);\n- for (var i = constructors.length - 1; i ...
2019-02-05T20:47:08
vercel/next.js
3f35608fdc0dc548bd2ee901ca482e0170a57bcc
2adc1f6c54db2fdf2b8e0b02b6f7c023d8564b9b
fix: improve error message pages for `output: export` (#47765) fix NEXT-928 ([link](https://linear.app/vercel/issue/NEXT-928))
[ { "path": "errors/export-no-custom-routes.md", "patch": "@@ -1,4 +1,4 @@\n-# `Export Custom Routes\n+# Export Custom Routes\n \n #### Why This Error Occurred\n \n@@ -8,7 +8,8 @@ These configs do not apply when exporting your Next.js application manually.\n \n #### Possible Ways to Fix It\n \n-Disable the `r...
2023-03-31T20:23:51
golang/go
61536ec03063b4951163bd09609c86d82631fa27
278b9b3a4c7c01929133737e960335afa18eeec3
debug/macho: fail on invalid dynamic symbol table command Fail out when loading a file that contains a dynamic symbol table command that indicates a larger number of symbols than exist in the loaded symbol table. Thanks to Burak Çarıkçı - Yunus Yıldırım (CT-Zer0 Crypttech) for reporting this issue. Fixes #48990 Fixe...
[ { "path": "src/debug/macho/file.go", "patch": "@@ -345,6 +345,15 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t\t\tif err := binary.Read(b, bo, &hdr); err != nil {\n \t\t\t\treturn nil, err\n \t\t\t}\n+\t\t\tif hdr.Iundefsym > uint32(len(f.Symtab.Syms)) {\n+\t\t\t\treturn nil, &FormatError{offset, fmt...
2021-10-14T20:02:01
electron/electron
1b18a4dfad30a2437f72706ccee1c17a09b3683f
82bb7905300f6bd906279df81bfe61a82d35e2da
Update node, fixes #2916
[ { "path": "vendor/node", "patch": "@@ -1 +1 @@\n-Subproject commit ac25693ad1d4c248e69a89147fd3995c3bf6c946\n+Subproject commit f4243f5c84a371632d8d72a1a2210a0e994afdcc", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2015-09-28T07:34:52
huggingface/transformers
fd2a29d4680c972d7c4e48593cd69d875a6f2499
bb8e9cd675e159a2f5cbdaed055257836486ecf4
Fix more typos (#40627) Fix typos Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
[ { "path": "docs/source/en/kv_cache.md", "patch": "@@ -102,7 +102,7 @@ You may want to consider offloading if you have a small GPU and you're getting o\n Offloading is available for both [`DynamicCache`] and [`StaticCache`]. You can enable it by configuring `cache_implementation=\"offloaded\"` for the dynami...
2025-09-08T16:05:40
nodejs/node
8b79c15b6f82c79c35bf57927342ac8e44e1e4b7
63d398c9bbf94e1d5da7f287473137234353c622
src: pass along errors from StreamBase req obj creations PR-URL: https://github.com/nodejs/node/pull/25822 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
[ { "path": "src/stream_base-inl.h", "patch": "@@ -163,9 +163,11 @@ inline int StreamBase::Shutdown(v8::Local<v8::Object> req_wrap_obj) {\n HandleScope handle_scope(env->isolate());\n \n if (req_wrap_obj.IsEmpty()) {\n- req_wrap_obj =\n- env->shutdown_wrap_template()\n- ->NewInstance(...
2019-01-30T18:15:58
vercel/next.js
4c60b7b6ae9b679571c09743038595654fc819b2
9ab6ca5d5fd5b7783ab88a5fde211fc708ddc24e
feat: bump minimum ts version to 4.5.2 (#47712) Fixes an issue with newer app directory usage: ``` Failed to compile. ../../node_modules/next/dist/server/future/route-handlers/app-route-route-handler.d.ts:11:15 Type error: ',' expected. ``` ---------
[ { "path": "docs/basic-features/typescript.md", "patch": "@@ -164,7 +164,9 @@ module.exports = nextConfig\n \n Since `v10.2.1` Next.js supports [incremental type checking](https://www.typescriptlang.org/tsconfig#incremental) when enabled in your `tsconfig.json`, this can help speed up type checking in larger...
2023-03-31T18:37:09
huggingface/transformers
2077f17547f04d41ddbc8c761b7ab3a1f338bc5a
dc262ee6f57f2154f5233e53482da14dbe3be834
feat: err when unsupported attn impl is set w/ `--continuous_batching` (#40618) * feat: err when unsupported attn impl is set w/ `--continuous_batching` * refactor: move defaults and support list to CB code * feat: add action item in error msg * fix(serve): add default attn implementation * feat(serve): add log wh...
[ { "path": "src/transformers/commands/serving.py", "patch": "@@ -483,6 +483,19 @@ def __init__(self, args: ServeArguments):\n # Store and process input arguments\n self.args = args\n self.use_continuous_batching = self.args.continuous_batching\n+ if self.use_continuous_batching...
2025-09-08T14:31:49
electron/electron
82bb7905300f6bd906279df81bfe61a82d35e2da
11af4b63ac0ce0da83d5d75f9892de3d7de44093
Style fix for #2918
[ { "path": "atom/common/native_mate_converters/blink_converter.cc", "patch": "@@ -166,8 +166,8 @@ bool Converter<blink::WebKeyboardEvent>::FromV8(\n if (shifted)\n out->modifiers |= blink::WebInputEvent::ShiftKey;\n out->setKeyIdentifierFromWindowsKeyCode();\n- if (out->type == blink::WebInputEvent:...
2015-09-28T04:48:33
golang/go
4f1c9aace00277914e080170237ae381e05683c5
925ea2dfc4911188d47cca5c5534916e39dc1463
go/types: add debugging support for delayed actions This is a port of CL 355871 to go/types. Change-Id: I2dbc3c625c16b545a271a19606ef34ce04a4a6df Reviewed-on: https://go-review.googlesource.com/c/go/+/359136 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Go...
[ { "path": "src/go/types/check.go", "patch": "@@ -76,6 +76,28 @@ type dotImportKey struct {\n \tname string\n }\n \n+// An action describes a (delayed) action.\n+type action struct {\n+\tf func() // action to be executed\n+\tdesc *actionDesc // action description; may be nil, requires debug to be se...
2021-10-27T15:23:06
nodejs/node
63d398c9bbf94e1d5da7f287473137234353c622
730a27df40e3f7c0ea7c85bfd0dbf9e913f2f432
src: pass along errors from fs object creations PR-URL: https://github.com/nodejs/node/pull/25822 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
[ { "path": "src/node_file.cc", "patch": "@@ -110,20 +110,29 @@ typedef void(*uv_fs_callback_t)(uv_fs_t*);\n // The FileHandle object wraps a file descriptor and will close it on garbage\n // collection if necessary. If that happens, a process warning will be\n // emitted (or a fatal exception will occur if t...
2019-01-30T18:11:11
huggingface/transformers
dc262ee6f57f2154f5233e53482da14dbe3be834
9ab60783239670ace6499ece0de5374b5d8ff30b
remove FSDP prefix when using save_pretrained with FSDP2 (#40207) * remove FSDP prefix when using save_pretrained with FSDP2 * Fix: use removeprefix correctly --------- Co-authored-by: Matej Sirovatka <54212263+S1ro1@users.noreply.github.com> Co-authored-by: S1ro1 <matej.sirovatka@gmail.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -4022,7 +4022,8 @@ def save_pretrained(\n model_to_save.config.dtype = str(dtype).split(\".\")[1]\n \n # Attach architecture to the config\n- model_to_save.config.architectures = [model_to_save.__class__.__name__]\n+ ...
2025-09-08T12:52:31
vercel/next.js
9ab6ca5d5fd5b7783ab88a5fde211fc708ddc24e
5ad1b77704db1f990fd3ba7362e48ddac737e19e
chore(docs): add `typesafe-i18n` as a new i18n option (#47315) <!-- 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": "docs/advanced-features/i18n-routing.md", "patch": "@@ -13,7 +13,7 @@ description: Next.js has built-in support for internationalized routing and lang\n \n Next.js has built-in support for internationalized ([i18n](https://en.wikipedia.org/wiki/Internationalization_and_localization#Naming)) routin...
2023-03-31T18:28:28
electron/electron
44ee74a9b13db7e0e97248dcd1c4c1291f1fe878
21cd4c14316b3a25053d1b45e8754f668a016774
Style fix
[ { "path": "atom/common/native_mate_converters/blink_converter.cc", "patch": "@@ -166,7 +166,8 @@ bool Converter<blink::WebKeyboardEvent>::FromV8(\n if (shifted)\n out->modifiers |= blink::WebInputEvent::ShiftKey;\n out->setKeyIdentifierFromWindowsKeyCode();\n- if (out->type == blink::WebInputEvent:...
2015-09-28T01:05:08
golang/go
a5a423e0e809e451b06771eb6a7b95cc9255f9fd
5c98bcb7d43e1dcf60d3799afc30f4d56e5e3cc4
go/parser: fix parsing of array or slice constraint types Now that we allow eliding 'interface' from constraint types, we need to be a bit more careful about not consuming a '[' when parsing the next expression after "type T [". We want to check if the next expression is an identifier not followed by ']', in which cas...
[ { "path": "src/go/parser/error_test.go", "patch": "@@ -23,6 +23,7 @@\n package parser\n \n import (\n+\t\"flag\"\n \t\"go/internal/typeparams\"\n \t\"go/scanner\"\n \t\"go/token\"\n@@ -33,6 +34,8 @@ import (\n \t\"testing\"\n )\n \n+var traceErrs = flag.Bool(\"trace_errs\", false, \"whether to enable tracin...
2021-10-27T13:19:50
huggingface/transformers
def7558f746046e2220991dfe03fc9b19533c939
44b3888d2a9a7ab215eba66203512526e26c35fe
Fix np array typing (#40741) Fix typing Signed-off-by: cyy <cyyever@outlook.com> Signed-off-by: Yuanyuan Chen <cyyever@outlook.com>
[ { "path": "src/transformers/cache_utils.py", "patch": "@@ -29,7 +29,8 @@ class CacheLayerMixin(ABC):\n is_compileable = False\n \n def __init__(self):\n- self.keys, self.values = None, None\n+ self.keys: Optional[torch.Tensor] = None\n+ self.values: Optional[torch.Tensor] = None...
2025-09-08T11:30:40
nodejs/node
730a27df40e3f7c0ea7c85bfd0dbf9e913f2f432
03908d270d602b525f0051ddc5a648c021a04f9a
src: pass along errors from http2 object creation PR-URL: https://github.com/nodejs/node/pull/25822 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
[ { "path": "src/node_http2.cc", "patch": "@@ -228,27 +228,18 @@ void Http2Session::Http2Settings::Init() {\n count_ = n;\n }\n \n-Http2Session::Http2Settings::Http2Settings(Environment* env,\n- Http2Session* session, uint64_t start_time)\n- : AsyncWrap(env,\n- env->http2setting...
2019-01-30T17:43:05
vercel/next.js
3409e1224ee9c47749c6ea7953fe85f9fca6e1e4
6785d99b58ee4ccc12cf4b4fd9c5d3d525473168
ignored modules yield empty objects insteaad of throwing (vercel/turbo#4411) ### Description require("x") where x is ignored should lead to an empty object fixes WEB-829 --------- Co-authored-by: Justin Ridgewell <justin@ridgewell.name>
[ { "path": "crates/turbopack-ecmascript/src/references/cjs.rs", "patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use swc_core::{\n common::DUMMY_SP,\n- ecma::ast::{Callee, Expr, ExprOrSpread, Ident},\n+ ecma::ast::{Callee, Expr, ExprOrSpread, Ident, ObjectLit},\n };\n use turbo_tasks::{primitives:...
2023-03-31T18:12:52
golang/go
5c98bcb7d43e1dcf60d3799afc30f4d56e5e3cc4
a3bb28e5ffee83c30a2c65963ef032cc2ab73a3c
runtime: fix noopt builder CL 352057 added track argument stack slot liveness, and updated TestTracebackArgs for argument liveness. But when optimization is disabled, all arguments are considered lived. The abiSel does not consider this case and return wrong expected result. To fix this, checking if we are running in...
[ { "path": "src/runtime/traceback_test.go", "patch": "@@ -7,15 +7,23 @@ package runtime_test\n import (\n \t\"bytes\"\n \t\"internal/goexperiment\"\n+\t\"internal/testenv\"\n \t\"runtime\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n var testTracebackArgsBuf [1000]byte\n \n func TestTracebackArgs(t *testing.T) {...
2021-10-28T03:40:54
rust-lang/rust
58bef69b81fb78a4edf2e289d4e7d74effb9aebf
f43bb2ac994e356d6e3abbee6f4eb1609a7bd0bd
compiler-builtins: Resolve `unsafe_op_in_unsafe_fn` on Arm32 Android There are a few places that violate this lint, which showed up in rust-lang/rust CI (the relevent module is gated behind `kernel_user_helpers` which is only set for `armv4t`, `armv5te`, and `arm-linux-androideabi`; none of these are tested in compile...
[ { "path": "library/compiler-builtins/compiler-builtins/src/arm_linux.rs", "patch": "@@ -4,12 +4,17 @@ use core::{arch, mem};\n // Kernel-provided user-mode helper functions:\n // https://www.kernel.org/doc/Documentation/arm/kernel_user_helpers.txt\n unsafe fn __kuser_cmpxchg(oldval: u32, newval: u32, ptr: *...
2025-06-08T10:21:57
huggingface/transformers
44b3888d2a9a7ab215eba66203512526e26c35fe
3f7bda4209bd484b75a1441b80ef38668e442f78
Fix order of mask functions when using `and/or_mask_function` (#40753) fix order
[ { "path": "src/transformers/masking_utils.py", "patch": "@@ -799,14 +799,11 @@ def create_causal_mask(\n if _is_torch_xpu_available:\n allow_is_causal_skip = True\n else:\n- allow_is_causal_skip = not past_key_values.is_compileable if past_key_values is not None else True\n-\n- # I...
2025-09-08T10:31:42
nodejs/node
03908d270d602b525f0051ddc5a648c021a04f9a
d999b55d61f5b7ba5b0cd244d246c49c96ca6afb
src: pass along errors from tls object creation PR-URL: https://github.com/nodejs/node/pull/25822 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
[ { "path": "src/tls_wrap.cc", "patch": "@@ -49,13 +49,11 @@ using v8::String;\n using v8::Value;\n \n TLSWrap::TLSWrap(Environment* env,\n+ Local<Object> obj,\n Kind kind,\n StreamBase* stream,\n SecureContext* sc)\n- : AsyncWrap(env,\n- ...
2019-01-30T17:42:25
vercel/next.js
5ad1b77704db1f990fd3ba7362e48ddac737e19e
247ea65edb6f255b1788ffc7032c669ac5ff4dc3
Restart static paths worker after finishing task (#47716) Noticed this optimization when debugging something else - we restart this worker if it's not fresh, to make sure module instances are new created. This has some perf overhead and it happens right before running the task and it's blocking the request. This PR...
[ { "path": "packages/next/src/server/dev/static-paths-worker.ts", "patch": "@@ -25,8 +25,6 @@ if (process.env.NEXT_PREBUNDLED_REACT) {\n overrideBuiltInReactPackages()\n }\n \n-let workerWasUsed = false\n-\n // expose AsyncLocalStorage on globalThis for react usage\n const { AsyncLocalStorage } = require('...
2023-03-31T17:16:48
golang/go
2ff1074f5ac48e67ee079dafc9f0e314bc454510
b8f928b05264cbd75a0d0dbd02d979847ac237f9
reflect: undeprecate Ptr, PtrTo Fixes #48665 Change-Id: Id838f7508f6e93c4546a2aeefc2db194e647db77 Reviewed-on: https://go-review.googlesource.com/c/go/+/359175 Trust: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "src/reflect/type.go", "patch": "@@ -269,8 +269,6 @@ const (\n )\n \n // Ptr is the old name for the Pointer kind.\n-//\n-// Deprecated: use the new spelling, Pointer.\n const Ptr = Pointer\n \n // tflag is used by an rtype to signal what extra type information is\n@@ -1425,9 +1423,9 @@ func TypeO...
2021-10-27T17:13:50
electron/electron
397fbeae28db234b042baf144aa61f952e43d3b5
56520159f73ba6fbc3faa41a6c0977e923c4e088
Update example variable name prefix (atom to electron) * Update variable name prefix as `atom` to `electron`
[ { "path": "docs-translations/ko-KR/api/screen.md", "patch": "@@ -6,7 +6,7 @@\n `screen`은 [EventEmitter](http://nodejs.org/api/events.html#events_class_events_eventemitter)를 상속 받았습니다.\n \n **참고:** 랜더러 / DevTools에선 이미 DOM 속성이 `window.screen`을 가지고 있으므로 `screen = require('screen')` 형식으로 모듈을 사용할 수 없습니다.\n-밑의 예제와...
2015-09-27T13:20:35
huggingface/transformers
3f7bda4209bd484b75a1441b80ef38668e442f78
bb45d3631ec7026db04a77d33a52b31766372160
[Continous Batching] fix do_Sample=True in continuous batching (#40692) * fix do_Sample=True in continous batching * added test * fix top_p * test * Update examples/pytorch/continuous_batching.py
[ { "path": "examples/pytorch/continuous_batching.py", "patch": "@@ -229,7 +229,9 @@ def batch_generate(\n use_cuda_graph=args.use_cuda_graph,\n eos_token_id=tokenizer.eos_token_id,\n pad_token_id=tokenizer.pad_token_id,\n- do_sample=False,\n+ do_sample=True,\n+ te...
2025-09-08T08:30:15
nodejs/node
d999b55d61f5b7ba5b0cd244d246c49c96ca6afb
bcdd228f90b3e9e428b584814e7d52627616456a
deps: float fix for building HdrHistogram on Win x86 From: https://github.com/mcollina/native-hdr-histogram/commit/c63e97151dcff9b9aed1d8ea5e4f5964c69be32fideps: PR-URL: https://github.com/nodejs/node/pull/25378 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>...
[ { "path": "deps/histogram/src/hdr_histogram.c", "patch": "@@ -91,14 +91,29 @@ static int64_t power(int64_t base, int64_t exp)\n }\n \n #if defined(_MSC_VER)\n-#pragma intrinsic(_BitScanReverse64)\n+# if defined(_WIN64)\n+# pragma intrinsic(_BitScanReverse64)\n+# else\n+# pragma intrinsic(_BitScanRev...
2019-02-08T17:18:29
vercel/next.js
e1a397d750df0d1bffea86b867fc2083ef3f3111
f090f321ee1c022c8d805fc1bce6d13873bfaf98
fix: correctly handle Set-Cookie headers (#47718) ## What This fix serves to address issues where multiple `Set-Cookie` headers were combined in some runtimes. ## Why This is because `set-cookie` behaves differently than other headers in some cases. Eg. when iterating on a `Headers` instance, multiple se...
[ { "path": "packages/next/src/export/worker.ts", "patch": "@@ -8,6 +8,7 @@ import type {\n ExportPathMap,\n NextConfigComplete,\n } from '../server/config-shared'\n+import type { OutgoingHttpHeaders } from 'http'\n \n // `NEXT_PREBUNDLED_REACT` env var is inherited from parent process,\n // then override...
2023-03-31T14:35:47
golang/go
056dfe6ff34fd479ec5c86d9b26a03c639b3f3f7
b2fe2ebab6e66a453a0137e37d2c639a613a852b
reflect: undeprecate Value.{Pointer,UnsafeAddr} Fixes #49187 Change-Id: I4d8c87af8a709f1b909dd4fae3734d422eb36900 Reviewed-on: https://go-review.googlesource.com/c/go/+/359194 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Go Bot <gobot@golang.org...
[ { "path": "src/reflect/value.go", "patch": "@@ -1934,7 +1934,7 @@ func (v Value) OverflowUint(x uint64) bool {\n // element of the slice. If the slice is nil the returned value\n // is 0. If the slice is empty but non-nil the return value is non-zero.\n //\n-// Deprecated: use uintptr(Value.UnsafePointer()...
2021-10-27T17:33:19
electron/electron
56520159f73ba6fbc3faa41a6c0977e923c4e088
d621755f1386777d12525069a5742f1848327807
Update as upstream, fix small typo
[ { "path": "docs-translations/ko-KR/api/session.md", "patch": "@@ -17,11 +17,7 @@ var session = win.webContents.session\n ### Event: 'will-download'\n \n * `event` Event\n-* `item` Object\n- * `url` String\n- * `filename` String\n- * `mimeType` String\n- * `hasUserGesture` Boolean\n+* `item` [DownloadIte...
2015-09-26T01:36:26