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 |
|---|---|---|---|---|---|
nodejs/node | 2c18d973a58fa782e0b2028221ef886596ee2050 | 620209628af6c8489300abe5c5b7bee69509ab35 | src: pass along errors from vm data wrapper creation
PR-URL: https://github.com/nodejs/node/pull/25734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -104,12 +104,12 @@ Local<Name> Uint32ToName(Local<Context> context, uint32_t index) {\n ContextifyContext::ContextifyContext(\n Environment* env,\n Local<Object> sandbox_obj, const ContextOptions& options) : env_(env) {\n- Local<Context> v8_context =... | 2019-01-27T13:22:51 |
huggingface/transformers | 2537ed44779772613957cac42ba20b36b41c22f3 | 48ebae975e138b31268254dad7b425fd34a468b4 | Update `get_*_features` methods + update doc snippets (#40555)
* siglip
* clip
* aimv2
* metaclip_2
* align
* align fixup
* altclip
* blip2 (make consistent)
* chineese clip
* clipseg
* flava
* groupvit
* owlv2
* owlvit
* vision_encoder
* clap
* x_clip
* fixup
* fix siglip2
* blip2
* fix blip2 test... | [
{
"path": "src/transformers/models/aimv2/modeling_aimv2.py",
"patch": "@@ -34,7 +34,7 @@\n from ...modeling_layers import GradientCheckpointingLayer\n from ...modeling_outputs import BaseModelOutput, BaseModelOutputWithPooling\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel\n-from .... | 2025-09-01T11:37:43 |
vercel/next.js | baae7b1f4482590b90126acc899a257160409ba9 | beeefdb1120b1d857b2c89d391cf84ffa3f0e2c0 | Clean up leftover loaders (#46801)
More cleanup flowing out of the removal of the `target` option.
<!--
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 ... | [
{
"path": "packages/next-env/index.ts",
"patch": "@@ -48,8 +48,7 @@ export function processEnv(\n ) {\n return process.env as Env\n }\n- // flag that we processed the environment values in case a serverless\n- // function is re-used or we are running in `next start` mode\n+ // flag that we proces... | 2023-03-25T09:21:27 |
golang/go | 07e5527249cb0b152a3807d67ea83bafd71d2496 | d7149e502dfb13fdc94439eebaf1823a6c6dd84f | reflect: fix methodValueCall code pointer mismatch in Value.Pointer
This is the port of CL 356809 for Value.Pointer to fix the mismatch of
methodValueCall code pointer.
Change-Id: I080ac41b94b44d878cd5896207a76a28c57fd48b
Reviewed-on: https://go-review.googlesource.com/c/go/+/356950
Trust: Cuong Manh Le <cuong.manhle... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -7724,9 +7724,12 @@ func TestNotInHeapDeref(t *testing.T) {\n }\n \n func TestMethodCallValueCodePtr(t *testing.T) {\n-\tp := ValueOf(Point{}).Method(1).UnsafePointer()\n+\tm := ValueOf(Point{}).Method(1)\n \twant := MethodValueCallCodePtr()\n-\tif got := ui... | 2021-10-19T17:16:23 |
huggingface/transformers | 48ebae975e138b31268254dad7b425fd34a468b4 | db6821b79cfa364f81464db054e42d2f00f9013a | Fix llava image processor (#40588)
fix | [
{
"path": "src/transformers/models/llava_next/image_processing_llava_next.py",
"patch": "@@ -678,7 +678,7 @@ def preprocess(\n # We assume that all images have the same channel dimension format.\n input_data_format = infer_channel_dimension_format(images[0])\n \n- new_images =... | 2025-09-01T11:32:57 |
nodejs/node | 620209628af6c8489300abe5c5b7bee69509ab35 | 77fa310949cf926bf7befffff32616cb1ba1c41b | src: pass along errors from KeyObject instantiation
PR-URL: https://github.com/nodejs/node/pull/25734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -3329,15 +3329,18 @@ Local<Function> KeyObject::Initialize(Environment* env, Local<Object> target) {\n return function;\n }\n \n-Local<Object> KeyObject::Create(Environment* env,\n- KeyType key_type,\n- ... | 2019-01-27T13:22:34 |
vercel/next.js | beeefdb1120b1d857b2c89d391cf84ffa3f0e2c0 | a058b8569e8654598c340ab2e4d33f03e3f1f3e0 | Return null for useParams in pages (#47490)
### What?
Ensures `useParams` can be called in `pages`. In that case it returns
`null` similar to other navigation hooks that can't be backported.
### Why?
When migrating you can have components that are rendered in both `app`
and `pages`.
### How?
Uses the ... | [
{
"path": "packages/next/navigation-types/compat/navigation.d.ts",
"patch": "@@ -18,4 +18,12 @@ declare module 'next/navigation' {\n * router is not ready.\n */\n export function usePathname(): string | null\n+\n+ /**\n+ * Get the current parameters. For example useParams() on /dashboard/[team]\n... | 2023-03-25T09:05:44 |
golang/go | d7149e502dfb13fdc94439eebaf1823a6c6dd84f | d94498470bb09bb0606b0eff3248cb5b35e1a145 | reflect: restore Value.Pointer implementation
CL 350691 added Value.UnsafePointer and make Value.Pointer call it
internally. It has a downside that Value.Pointer can now eligible to be
inlined, thus making un-intentional side effect, like the test in
fixedbugs/issue15329.go becomes flaky.
This CL restore Value.Pointe... | [
{
"path": "src/reflect/value.go",
"patch": "@@ -1936,7 +1936,42 @@ func (v Value) OverflowUint(x uint64) bool {\n //\n // Deprecated: use uintptr(Value.UnsafePointer()) to get the equivalent result.\n func (v Value) Pointer() uintptr {\n-\treturn uintptr(v.UnsafePointer())\n+\tk := v.kind()\n+\tswitch k {\n... | 2021-10-19T17:09:09 |
huggingface/transformers | db6821b79cfa364f81464db054e42d2f00f9013a | 6546f288a1a29f2b204a8e0a05883d4c815d77e6 | Allow `remi-or` to `run-slow` (#40590)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/self-comment-ci.yml",
"patch": "@@ -29,7 +29,7 @@ jobs:\n runs-on: ubuntu-22.04\n name: Get PR number\n # For security: only allow team members to run\n- if: ${{ github.event.issue.state == 'open' && contains(fromJSON('[\"ydshieh\", \"ArthurZucker\", \"zucchini-nl... | 2025-09-01T10:30:53 |
nodejs/node | 77fa310949cf926bf7befffff32616cb1ba1c41b | 95571ac1e9acd09d0b06b2315aabb0cc4e158572 | src: pass along errors from perf obj instantiation
PR-URL: https://github.com/nodejs/node/pull/25734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "src/node_http2.cc",
"patch": "@@ -697,7 +697,8 @@ void Http2Stream::EmitStatistics() {\n }\n buffer[IDX_STREAM_STATS_SENTBYTES] = entry->sent_bytes();\n buffer[IDX_STREAM_STATS_RECEIVEDBYTES] = entry->received_bytes();\n- entry->Notify(entry->ToObject());\n+ Local<Object> obj;\n... | 2019-01-27T13:21:51 |
vercel/next.js | f640f66114233954be835736633a9eb5bff094b8 | c8a09eb20cb488021d50506dc5265aaf65c32847 | build(turbo-binding): export turbopack_dev (vercel/turbo#4345)
### Description
Minor fix from previous PR, actually exposes turbopack_dev. | [
{
"path": "crates/turbo-binding/src/lib.rs",
"patch": "@@ -62,6 +62,8 @@ pub mod turbopack {\n pub use turbopack_create_test_app as create_test_app;\n #[cfg(feature = \"__turbopack_css\")]\n pub use turbopack_css as css;\n+ #[cfg(feature = \"__turbopack_dev\")]\n+ pub use turbopack_dev as ... | 2023-03-25T03:28:33 |
golang/go | d94498470bb09bb0606b0eff3248cb5b35e1a145 | 1d63052782a7535a3d4ce4557fd23fd97699b249 | cmd/go: add GOWORK to go env command
GOWORK will be set to the go.work file's path, if in workspace mode
or will be empty otherwise.
For #45713
Fixes #48589
Change-Id: I163ffaf274e0a41469c1f3b8514d6f90e20423b0
Reviewed-on: https://go-review.googlesource.com/c/go/+/355689
Trust: Michael Matloob <matloob@golang.org>
T... | [
{
"path": "src/cmd/go/internal/envcmd/env.go",
"patch": "@@ -152,8 +152,11 @@ func ExtraEnvVars() []cfg.EnvVar {\n \t} else if modload.Enabled() {\n \t\tgomod = os.DevNull\n \t}\n+\tmodload.InitWorkfile()\n+\tgowork := modload.WorkFilePath()\n \treturn []cfg.EnvVar{\n \t\t{Name: \"GOMOD\", Value: gomod},\n+... | 2021-09-17T23:38:33 |
huggingface/transformers | 6546f288a1a29f2b204a8e0a05883d4c815d77e6 | cfed99d310734f93d6bd25557be79d5b992088e9 | Fix CircleCI step passes in the case of pytest worker crash at test collection time (#40552)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".circleci/create_circleci_config.py",
"patch": "@@ -182,6 +182,22 @@ def to_dict(self):\n \"name\": \"Run tests\",\n \"command\": f\"({timeout_cmd} python3 -m pytest {marker_cmd} -n {self.pytest_num_workers} {junit_flags} {repeat_on_failure_flags} {' '.join(pytest_... | 2025-09-01T09:33:23 |
nodejs/node | 95571ac1e9acd09d0b06b2315aabb0cc4e158572 | 4dbff090c3ff2ba43b0fbb06cc65bef5b5d81008 | src: pass along errors from process obj instantiation
PR-URL: https://github.com/nodejs/node/pull/25734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "src/env.cc",
"patch": "@@ -289,29 +289,10 @@ Environment::~Environment() {\n }\n }\n \n-void Environment::Start(const std::vector<std::string>& args,\n- const std::vector<std::string>& exec_args,\n- bool start_profiler_idle_notifier) {\n+void Enviro... | 2019-01-27T13:21:21 |
vercel/next.js | a058b8569e8654598c340ab2e4d33f03e3f1f3e0 | 88a3087561d838677a876f63ed430eab96b7e33f | Remove head.js (#47507)
### What?
Removes `head.js` file convention in favor of built-in SEO support through `metadata`: https://beta.nextjs.org/docs/guides/seo
### Why?
The `head.js` convention was superseded by the built-in SEO support which is designed specifically for Server Components.
### How?
Removed the `... | [
{
"path": "packages/next/src/build/webpack/loaders/next-app-loader.ts",
"patch": "@@ -40,7 +40,6 @@ const FILE_TYPES = {\n template: 'template',\n error: 'error',\n loading: 'loading',\n- head: 'head',\n 'not-found': 'not-found',\n } as const\n ",
"additions": 0,
"deletions": 1,
"langua... | 2023-03-25T01:40:30 |
golang/go | 7999fd4710e7f987e86d7b32dd9af31ced4810ba | 6c3cd5d2eb7149c9c1ced7d70c3f4157f27c1588 | errors: mention Is methods should not call Unwrap
errors.Is internally unwraps the error until the error matches the
target. Because of this, a user-authored Is method on an error type
need not call errors.Unwrap on itself or the target, because that would
make the unwrapping operation O(N^2). It is a subtle detail to... | [
{
"path": "src/errors/wrap.go",
"patch": "@@ -35,7 +35,8 @@ func Unwrap(err error) error {\n //\tfunc (m MyError) Is(target error) bool { return target == fs.ErrExist }\n //\n // then Is(MyError{}, fs.ErrExist) returns true. See syscall.Errno.Is for\n-// an example in the standard library.\n+// an example i... | 2021-10-19T08:09:06 |
huggingface/transformers | cfed99d310734f93d6bd25557be79d5b992088e9 | 1d742644c09928d6d596c56eae2ffcc8e303be6e | Fix `test_eager_matches_sdpa_inference` not run for `CLIP` (#40581)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/test_modeling_common.py",
"patch": "@@ -174,11 +174,6 @@ def _test_eager_matches_sdpa_inference(\n This test is written as a regular function to be able to overload it easily with different tolerances.\n Otherwise, `paramterezie.expand` prevents it as it removes the original functio... | 2025-09-01T09:21:56 |
rust-lang/rust | 2037075b38ae2af58b1c0b6860a559892f766fa4 | f8a3929c3cc09a63677519f9b5a5da9b25cdd336 | `Sugg`: do not parenthesize a double unary operator
For example, adding `*` in front of `*expression` is best shown as
`**expression` rather than `*(*expression)`.
This is not perfect, as it checks whether the operator is already a prefix
of the expression, but it is better than it was before. For example,
`&`+`&mut ... | [
{
"path": "clippy_utils/src/sugg.rs",
"patch": "@@ -494,7 +494,17 @@ impl<T: Display> Display for ParenHelper<T> {\n /// operators have the same\n /// precedence.\n pub fn make_unop(op: &str, expr: Sugg<'_>) -> Sugg<'static> {\n- Sugg::MaybeParen(format!(\"{op}{}\", expr.maybe_paren()).into())\n+ // I... | 2025-06-05T20:03:05 |
electron/electron | 446235c8cdfc979d5cc8917000288ca2f252f745 | 375ac3e6ec6f925d8cd0959317317d0ba5b1e69d | Fix backward compatibility with old BrowserWindow options | [
{
"path": "atom/browser/api/atom_api_window.cc",
"patch": "@@ -70,14 +70,13 @@ Window::Window(v8::Isolate* isolate, const mate::Dictionary& options) {\n options.Get(switches::kWebPreferences, &web_preferences);\n \n // Be compatible with old options which are now in web_preferences.\n- std::string str;... | 2015-09-09T07:55:26 |
nodejs/node | 4dbff090c3ff2ba43b0fbb06cc65bef5b5d81008 | 55569759b32b61a94c57283e2030e737ae06c860 | src: pass along errors from stream obj instantiation
PR-URL: https://github.com/nodejs/node/pull/25734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "src/connection_wrap.cc",
"patch": "@@ -48,9 +48,10 @@ void ConnectionWrap<WrapType, UVType>::OnConnection(uv_stream_t* handle,\n \n if (status == 0) {\n // Instantiate the client javascript object and handle.\n- Local<Object> client_obj = WrapType::Instantiate(env,\n- ... | 2019-01-27T13:19:16 |
vercel/next.js | f30069b09d333edf09d12d336402dde2f450d0e9 | df228500f1f9fb6132b323e71ace78c655907173 | Updated the versus short form in ssg-ssr example in docs (#47397)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
... | [
{
"path": "examples/with-contentlayer/posts/ssg-ssr.md",
"patch": "@@ -1,5 +1,5 @@\n ---\n-title: 'When to Use Static Generation v.s. Server-side Rendering'\n+title: 'When to Use Static Generation vs Server-side Rendering'\n date: '2020-01-02'\n ---\n ",
"additions": 1,
"deletions": 1,
"language... | 2023-03-25T00:24:00 |
huggingface/transformers | 1d742644c09928d6d596c56eae2ffcc8e303be6e | 0b2450737992b675e11639396537539a0fd9505c | [qwen-vl] fix position ids (#40490)
* fix position ids
* fixup
* adjust tests since they are failing on main as well
* add a comment to make it clear | [
{
"path": "src/transformers/models/qwen2_5_omni/modeling_qwen2_5_omni.py",
"patch": "@@ -1586,7 +1586,8 @@ def forward(\n text_position_ids = position_ids[0]\n position_ids = position_ids[1:]\n else:\n- text_position_ids = position_ids[0]\n+ # If inputs ... | 2025-09-01T09:10:41 |
golang/go | 982060203c26b60fd74e4fa2fd967600c65ee7fc | 404f84d417ceed0f47e51d2c4f933a6dee96dca5 | testing: don't allow f.Log/Logf or f.Skipped inside f.Fuzz
This change also does some refactors around how
we prevent many (*F) methods from being called
inside (*F).Fuzz. Previously, there was a lot of
comment/code duplication, which was going to be
difficult to maintain and brittle. The refactor
lessens this duplica... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz.txt",
"patch": "@@ -70,13 +70,27 @@ stdout 'f.Fuzz function'\n stdout FAIL\n stdout 'f.Fuzz function'\n \n+# Test that f.Fail within f.Fuzz panics\n+! go test fail_fuzz_fn_fuzz_test.go\n+! stdout ^ok\n+stdout FAIL\n+stdout 'f.Fuzz function'\n+\n # Test that f.... | 2021-10-15T15:16:54 |
electron/electron | 375ac3e6ec6f925d8cd0959317317d0ba5b1e69d | e5386cf8eaa05d29113df42ac7d0885aac140ca4 | Update brightray, fixes #2669 | [
{
"path": "vendor/brightray",
"patch": "@@ -1 +1 @@\n-Subproject commit 8d64120b51b48be46eaa419957b965c0ccfc6c8f\n+Subproject commit 9b3695cfd5c48a4cdc90e84a863851001ce8dd10",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-09-09T05:35:07 |
nodejs/node | 55569759b32b61a94c57283e2030e737ae06c860 | 1a37fd63c6b098524bb577e1db69bcb073fc5171 | src: pass along errors from PromiseWrap instantiation
PR-URL: https://github.com/nodejs/node/pull/25734
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host> | [
{
"path": "src/async_wrap.cc",
"patch": "@@ -201,15 +201,15 @@ PromiseWrap* PromiseWrap::New(Environment* env,\n Local<Promise> promise,\n PromiseWrap* parent_wrap,\n bool silent) {\n- Local<Object> object = env->prom... | 2019-01-27T13:18:13 |
vercel/next.js | df228500f1f9fb6132b323e71ace78c655907173 | 4b4dd8b33ac029b462b3b282de5ef71e3751e52b | fix error handling and hanging problems (#47457)
### What?
see https://github.com/vercel/turbo/pull/4324 | [
{
"path": "packages/next-swc/Cargo.lock",
"patch": "@@ -337,7 +337,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-230323.3#f11b983fb08dfc7c66b538c3815e9a0a7e972a84\"\n+source = \"git+https://github.com/v... | 2023-03-24T23:37:32 |
huggingface/transformers | b0db5a02f39ebd2ccffd7f8eb77091fda61f9a1e | 1363fceeec955db125141c3d7768f8ef345ed288 | Set `test_all_params_have_gradient=False` for `DeepseekV2ModelTest` (#40566)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/deepseek_v2/test_modeling_deepseek_v2.py",
"patch": "@@ -80,6 +80,7 @@ class DeepseekV2ModelTest(CausalLMModelTest, unittest.TestCase):\n test_pruning = False\n fx_compatible = False\n test_torchscript = False\n+ test_all_params_have_gradient = False\n model_tester... | 2025-08-30T20:46:31 |
golang/go | 404f84d417ceed0f47e51d2c4f933a6dee96dca5 | 99fad12e4788fdf67e49dadd16571238f935b408 | runtime: remove reference to crypto/tls GODEBUG usage
crypto/tls briefly used GODEBUG. That usage was removed in CL 191999.
Change-Id: I759b6f1b02db8160075cba30d73823018e19ad9d
GitHub-Last-Rev: 12d2a4a82b1467e4c2214aa78eb9a0af4938a9de
GitHub-Pull-Request: golang/go#49012
Reviewed-on: https://go-review.googlesource.co... | [
{
"path": "src/runtime/extern.go",
"patch": "@@ -144,7 +144,7 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \tbecause it also disables the conservative stack scanning used\n \tfor asynchronously preempted goroutines.\n \n-The net, net/http, and crypto/tls packages also r... | 2021-10-15T23:24:28 |
vercel/next.js | 4b4dd8b33ac029b462b3b282de5ef71e3751e52b | 318642a1d9e065fa073ca3ceb4b5e9e7828ec3da | Fix other case for useSelectedLayoutSegments (#47511)
Follow-up to https://github.com/vercel/next.js/pull/47492 this ensures
we properly check for `__PAGE_` elsewhere and re-enables some other
tests now that it's passing. | [
{
"path": "packages/next/src/client/components/navigation.ts",
"patch": "@@ -187,7 +187,7 @@ function getSelectedLayoutSegmentPath(\n if (!node) return segmentPath\n const segment = node[0]\n const segmentValue = Array.isArray(segment) ? segment[1] : segment\n- if (!segmentValue || segmentValue === '... | 2023-03-24T23:06:17 |
nodejs/node | b5304662ed23e81948f33d110bb15fc4f3a72cb1 | c3fd50463f2d3b6be54ebf8b4dbb85157bc08c3f | tls: fix malloc mismatch in SSL_set_tlsext_status_ocsp_resp call
SSL_set_tlsext_status_ocsp_resp expects the data to be allocated with
OPENSSL_malloc, not libc malloc, so use OpenSSLMalloc.
Additionally, though OpenSSL doesn't type-check due to it being a macro,
the function is documented to take an unsigned char poi... | [
{
"path": "src/node_crypto.cc",
"patch": "@@ -326,6 +326,14 @@ bool EntropySource(unsigned char* buffer, size_t length) {\n }\n \n \n+template <typename T>\n+static T* MallocOpenSSL(size_t count) {\n+ void* mem = OPENSSL_malloc(MultiplyWithOverflowCheck(count, sizeof(T)));\n+ CHECK_IMPLIES(mem == nullptr,... | 2019-01-25T04:34:38 |
huggingface/transformers | 1363fceeec955db125141c3d7768f8ef345ed288 | 36fddebcee237f253f31888c04893f7c52c26ac6 | remove the redundant non maintained jieba and use rjieba instead (#40383)
* porting not maintained jieba to rjieba
* Fix format
* replaced the line with rjieba instead of removing it
* cut_all is not included as a parameter. cut_all is a seperate function rjieba
* rev
* jieba remove installation
* Trigger tests
... | [
{
"path": "docker/custom-tokenizers.dockerfile",
"patch": "@@ -18,7 +18,7 @@ RUN make install -j 10\n \n RUN uv pip install --no-cache --upgrade 'torch' --index-url https://download.pytorch.org/whl/cpu\n RUN uv pip install --no-cache-dir --no-deps accelerate --extra-index-url https://download.pytorch.org/w... | 2025-08-30T11:28:52 |
golang/go | 99fad12e4788fdf67e49dadd16571238f935b408 | a73c6cf762560b458eb938e4461cd8debc479fd9 | cmd/compile/internal/types2: delay expansion of underlying in typeDecl
This is a clean port of CL 356533 from go/types to types2.
Fixes #49043.
Change-Id: If389b94ece28042b0c8b436959dd21f26147a144
Reviewed-on: https://go-review.googlesource.com/c/go/+/356517
Trust: Robert Griesemer <gri@golang.org>
Reviewed-by: Robe... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -597,22 +597,12 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *Named\n \trhs = check.definedType(tdecl.Type, named)\n \tassert(rhs != nil)\n \tnamed.fromRHS = rhs\n-\t// The underlying type of named may be itsel... | 2021-10-19T00:42:21 |
electron/electron | db3e27ceaab98dd7602f8f619eda8ca7df8a3571 | b521e45ef886bd04adf2860898a8a0f1e5784a55 | Fix `create_chrome_version_h` in bootstrap.py
The code was supposed to compare the content of the existing file with
the new content and only replace the file if the content was different,
but it had a fatal flow. It opened the existing file with 'w+' or 'wb+'
and they both truncate the file, so the compare was always... | [
{
"path": "script/bootstrap.py",
"patch": "@@ -162,13 +162,16 @@ def create_chrome_version_h():\n version = f.read()\n with open(template_file, 'r') as f:\n template = f.read()\n- if sys.platform in ['win32', 'cygwin']:\n- open_mode = 'wb+'\n- else:\n- open_mode = 'w+'\n- with open(target... | 2015-09-07T18:55:02 |
huggingface/transformers | 2d3b8863e8452adabdfe56513b4b57728f38e6a1 | ce48e9cac0df5da20e180c262636e1dcf2f3f0e8 | Fix collated reports upload filename (#40556) | [
{
"path": "utils/collated_reports.py",
"patch": "@@ -197,8 +197,9 @@ def upload_collated_report(job: str, report_repo_id: str, filename: str):\n \n collated_report_buffer.append(report)\n \n+ filename = f\"collated_reports_{machine_type}_{commit_hash}.json\"\n # Write collated report\n- wi... | 2025-08-30T07:35:51 |
nodejs/node | c3fd50463f2d3b6be54ebf8b4dbb85157bc08c3f | 25e057e4f67a694d2bf0351126cfa2e4c46d0526 | test: exit sequence sanity tests
Execute many module loads in worker in a loop
while exiting from the main thread at arbitrary
execution points, and make sure that the workers
quiesce without crashing.
`worker_threads` are not necessarily the subject of
testing, those are used for easy simulation of
multi-thread scen... | [
{
"path": "test/parallel/test-worker-cleanexit-with-moduleload.js",
"patch": "@@ -0,0 +1,24 @@\n+'use strict';\n+require('../common');\n+\n+// Harden the thread interactions on the exit path.\n+// Ensure workers are able to bail out safe at\n+// arbitrary execution points. By using a number of\n+// internal... | 2018-12-17T07:52:43 |
vercel/next.js | 730f3eae6565dc74b76c6832745a405751e37ba7 | adf8c7f6e7baaabb66eba36bc3a5c1e33b3e4e4f | fix: typo in max cache size error message (#47505)
Update error message for cache size limit to match the increased limit
of 2MB (https://github.com/vercel/next.js/pull/47465) | [
{
"path": "packages/next/src/server/lib/incremental-cache/index.ts",
"patch": "@@ -354,7 +354,7 @@ export class IncrementalCache {\n // fetchCache has upper limit of 2MB per-entry currently\n if (fetchCache && JSON.stringify(data).length > 2 * 1024 * 1024) {\n if (this.dev) {\n- throw n... | 2023-03-24T20:52:28 |
golang/go | a73c6cf762560b458eb938e4461cd8debc479fd9 | 3a07ab70a2d63e3ac1fc126529dde29852a972f5 | cmd/compile/internal/types2: ensure named types are expanded after type-checking
This is a clean port of CL 356490 from go/types to types2.
Fixes #48703.
Fixes #48974.
Change-Id: I08c0db0b92250cbb043325541b21a577726b40ca
Reviewed-on: https://go-review.googlesource.com/c/go/+/356515
Trust: Robert Griesemer <gri@golan... | [
{
"path": "src/cmd/compile/internal/types2/check.go",
"patch": "@@ -132,6 +132,7 @@ type Checker struct {\n \tuntyped map[syntax.Expr]exprInfo // map of expressions without final type\n \tdelayed []action // stack of delayed action segments; segments are processed in FIFO order\n \tobjPath... | 2021-10-19T00:31:23 |
huggingface/transformers | 155fd926d25bcc556bb53550ad853fc7f4e24d73 | 1067577ad204e649514ff3a5d3af0f7d52a63f14 | Fix `GptOssModelTest::test_assisted_decoding_matches_greedy_search_1_same` (#40551)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
Co-authored-by: Manuel de Prada Corral <6536835+manueldeprada@users.noreply.github.com> | [
{
"path": "tests/generation/test_utils.py",
"patch": "@@ -938,6 +938,10 @@ def test_assisted_decoding_matches_greedy_search(self, assistant_type):\n # - assisted_decoding does not support `use_cache = False`\n # - assisted_decoding does not support `batch_size > 1`\n \n+ # No idea why... | 2025-08-29T15:53:53 |
nodejs/node | c06653efdbee30cc3db5814af78ce2d824da2413 | 78982389ce9265f5f65cd9e8a192e05389506927 | test: enable marking of failing coverage tests
Enable marking of coverage tests so that we can
allow some tests to fail without blocking the generation
of coverage data. This will later allow us to
fail the coverage job if other kinds of errors occur and
to capture which tests we believe are not running properly
with ... | [
{
"path": "Makefile",
"patch": "@@ -226,7 +226,8 @@ coverage-test: coverage-build\n \t$(RM) out/$(BUILDTYPE)/obj.target/node_lib/gen/*.gcda\n \t$(RM) out/$(BUILDTYPE)/obj.target/node_lib/src/*.gcda\n \t$(RM) out/$(BUILDTYPE)/obj.target/node_lib/src/tracing/*.gcda\n-\t-NODE_V8_COVERAGE=out/$(BUILDTYPE)/.cove... | 2019-01-22T21:26:28 |
rust-lang/rust | 8964f6ed272d9dac4533fe1be97e5ff79de14532 | 0ca62d1f507d6d626bc4cd266b095b86f187f6e0 | Add lint for broken doc links
Fix false positives on broken link detection
Refactor variable names
Fix doc comment about broken link lint
Refactor, remove not used variable
Improve broken link to catch more cases and span point to whole link
Include reason why a link is considered broken
Drop some checker becaus... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -5571,6 +5571,7 @@ Released 2018-09-13\n [`disallowed_type`]: https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_type\n [`disallowed_types`]: https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_types\n [`diverging_sub_expression`]: ht... | 2024-11-16T16:05:47 |
golang/go | 3a07ab70a2d63e3ac1fc126529dde29852a972f5 | 254c497e5c5628be115b966808d6e76d335313a3 | cmd/compile/internal/types2: add support for inferring type instances
This is an essentially clean port of CL 356489 from go/types to types2,
with minor adjustments due to the different AST packages and error
reporting.
Fixes #47990.
Change-Id: I52187872474bfc1fb49eb77905f22fc820b7295b
Reviewed-on: https://go-review... | [
{
"path": "src/cmd/compile/internal/types2/call.go",
"patch": "@@ -57,14 +57,42 @@ func (check *Checker) funcInst(x *operand, inst *syntax.IndexExpr) {\n \t}\n \n \t// instantiate function signature\n-\tres := check.instantiate(x.Pos(), sig, targs, poslist).(*Signature)\n+\tres := check.instantiateSignature... | 2021-10-19T00:17:08 |
huggingface/transformers | 1067577ad204e649514ff3a5d3af0f7d52a63f14 | 7efb4c87ca3ed1a8d8c96f3f158f27f693f78b38 | fix gpt-oss out shape (#40535)
* fix out shape
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* reset gpt-oss modeling
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* fix copies
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
* fix tests
Signed-off-by: jiqing-feng <jiqing.feng@intel.com>
---------
... | [
{
"path": "src/transformers/models/gpt_oss/modeling_gpt_oss.py",
"patch": "@@ -116,7 +116,7 @@ def forward(self, hidden_states: torch.Tensor, router_indices=None, routing_weig\n glu = gate * torch.sigmoid(gate * self.alpha)\n gated_output = (up + 1) * glu\n ou... | 2025-08-29T15:20:33 |
electron/electron | 4412a89270ce0b7582c410e61a9d69fd8f3b65c5 | d4aa2308cd91fa822e6c3ee6900df76c6ad81c0b | Explicitly writes debug log to stderr
If we don't do this Chromium will close stdout and stderr for us,
resulting process.stdout not working. | [
{
"path": "atom/app/atom_main_delegate.cc",
"patch": "@@ -38,7 +38,9 @@ bool AtomMainDelegate::BasicStartupComplete(int* exit_code) {\n #else\n settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;\n #endif // defined(DEBUG)\n-#endif // defined(OS_WIN)\n+#else // defined(OS_WIN)\n+ settings.loggin... | 2015-09-07T13:44:03 |
vercel/next.js | de8e4e999eaa6f847ed5815da04ac353868661e5 | 9b2afe509b954bbc9384628eeb0c516115e89e3b | parallel routes: implement default route + fix bugs on navigation (#47436)
### What?
This PR is another part of making parallel routes viable!
- enables some of the tests, partially only in dev (build fails because
the intersection routes are not implemented)
- introduces a new type of special file: a `default... | [
{
"path": "packages/next/src/build/webpack/loaders/next-app-loader.ts",
"patch": "@@ -17,6 +17,7 @@ import {\n } from './metadata/discover'\n import { isAppRouteRoute } from '../../../lib/is-app-route-route'\n import { isMetadataRoute } from '../../../lib/metadata/is-metadata-route'\n+import { promises as f... | 2023-03-24T17:01:41 |
nodejs/node | a7c66b6aaeb8132540abee12ffa9ac1c1fa2f373 | a0419dd8ca66733e7a4592d98d4f4ebe2f2762e3 | timers: truncate decimal values
Reverts some timers behavior back to as it was before
2930bd1317d15d12738a4896c0a6c05700411b47
That commit introduced an unintended change which allowed non-integer
timeouts to actually exist since the value is no longer converted to an
integer via a TimeWrap handle directly.
Even wit... | [
{
"path": "doc/api/timers.md",
"patch": "@@ -186,7 +186,7 @@ added: v0.0.1\n Schedules repeated execution of `callback` every `delay` milliseconds.\n \n When `delay` is larger than `2147483647` or less than `1`, the `delay` will be\n-set to `1`.\n+set to `1`. Non-integer delays are truncated to an integer.\... | 2018-12-04T01:41:58 |
rust-lang/rust | 46ce08ef061b74d7609a4c069ddbc5f4fe8d398c | 0b20963d6b892651937fb3600e15ca285bdcfefd | Fix AIX build | [
{
"path": "library/std/src/sys/pal/unix/os.rs",
"patch": "@@ -282,7 +282,7 @@ pub fn current_exe() -> io::Result<PathBuf> {\n return getcwd().map(|cwd| cwd.join(path))?.canonicalize();\n }\n // Search PATH to infer current_exe.\n- if let Some(p) = getenv(OsStr::from_bytes(\"PATH\".as_byte... | 2025-06-05T17:29:50 |
huggingface/transformers | 828a27fd326e49d4a1c4b08210bfd32c107facc9 | 74a24217f5a09cdd514e7a72af177bf61569cac6 | Fix gpt-oss rope warning (#40550)
* fix
* fix print
* rm
* real fix
* fix
* style | [
{
"path": "src/transformers/models/gpt_oss/configuration_gpt_oss.py",
"patch": "@@ -62,7 +62,14 @@ def __init__(\n initializer_range: float = 0.02,\n max_position_embeddings=131072,\n rms_norm_eps: float = 1e-5,\n- rope_scaling={\"rope_type\": \"yarn\", \"factor\": 32.0, \"bet... | 2025-08-29T14:40:33 |
golang/go | 254c497e5c5628be115b966808d6e76d335313a3 | f92a3589fa04285dccab3ca7454eaaf2d0e7cde3 | cmd/compile, types2: better error message for invalid type assertion
This CL addresses the 2nd part of the issue below.
- For types2, now use the same error messages as the compiler in this case.
- Make the mechanism for reporting clarifying error messages handle the case
where we don't have additional position inf... | [
{
"path": "src/cmd/compile/internal/types2/errors.go",
"patch": "@@ -61,7 +61,10 @@ func (err *error_) msg(qf Qualifier) string {\n \tfor i := range err.desc {\n \t\tp := &err.desc[i]\n \t\tif i > 0 {\n-\t\t\tfmt.Fprintf(&buf, \"\\n\\t%s: \", p.pos)\n+\t\t\tfmt.Fprint(&buf, \"\\n\\t\")\n+\t\t\tif p.pos.IsKn... | 2021-10-18T21:56:08 |
electron/electron | d4aa2308cd91fa822e6c3ee6900df76c6ad81c0b | 8912b404a9399c8fc7d8eccdf64aef1a3f5e6ea3 | Update node to catch exception when accessing process.stdout | [
{
"path": "vendor/node",
"patch": "@@ -1 +1 @@\n-Subproject commit c8962e460f3bf03d405489a8380a5571730f5f8d\n+Subproject commit 9da7dd871c313d318bc1447a83ba3c7618bbbc18",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2015-09-07T13:34:27 |
vercel/next.js | ba9b94d5fbfc7f2b27862b7ed17118e16ecd64de | 68abad58edd68887bfb5d919aa5b9ef9b2fa8343 | Fix failing og api e2e test (#47500)
x-ref: https://github.com/vercel/next.js/actions/runs/4508438652/jobs/7937409460 | [
{
"path": "test/e2e/og-api/index.test.ts",
"patch": "@@ -53,7 +53,9 @@ describe('og-api', () => {\n )\n ).toBe(true)\n })\n- } else {\n+ }\n+\n+ if ((global as any).isNextDev) {\n it('should throw error when returning a response object in pages/api in node runtime', async () => {\n ... | 2023-03-24T15:59:45 |
nodejs/node | a0419dd8ca66733e7a4592d98d4f4ebe2f2762e3 | 46c5c3388d24615d8bcd887bb366d4171e99fdee | doc: fix issue with worker_threads docs
This example function returns a promise directly
rather than implicitly via async/await.
PR-URL: https://github.com/nodejs/node/pull/25712
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "doc/api/worker_threads.md",
"patch": "@@ -25,7 +25,7 @@ const {\n } = require('worker_threads');\n \n if (isMainThread) {\n- module.exports = async function parseJSAsync(script) {\n+ module.exports = function parseJSAsync(script) {\n return new Promise((resolve, reject) => {\n const w... | 2019-01-25T18:59:31 |
huggingface/transformers | ffdd10fcedb1ab4f9217ac645b2e0dbe03623a53 | f0e778112fe6438f25142960fc4a3781c5e32566 | Allow compression on meta device (#39039)
* disable gradient calculation for int weights
Signed-off-by: shanjiaz <zsjwpianpian@gmail.com>
* Update src/transformers/quantizers/quantizer_compressed_tensors.py
Co-authored-by: Kyle Sayers <kylesayrs@gmail.com>
* updated model procession before/after weight loading
Si... | [
{
"path": "src/transformers/quantizers/quantizer_compressed_tensors.py",
"patch": "@@ -13,9 +13,6 @@\n # limitations under the License.\n \n \n-import os\n-import re\n-\n from ..utils import is_compressed_tensors_available, is_torch_available, logging\n from ..utils.quantization_config import CompressedTens... | 2025-08-29T13:49:15 |
electron/electron | d7ec0b99fdf37463599109dea7c78a01fe775125 | 87e02f285849f2b1b5148751a8b9455b1c8bc864 | spec: process.stdout should not throw exception | [
{
"path": "spec/node-spec.coffee",
"patch": "@@ -133,3 +133,7 @@ describe 'node feature', ->\n b = new Buffer(p.innerText)\n assert.equal b.toString(), 'Jøhänñéß'\n assert.equal Buffer.byteLength(p.innerText), 13\n+\n+ describe 'process.stdout', ->\n+ it 'should not throw exception', -... | 2015-09-07T13:07:27 |
golang/go | f92a3589fa04285dccab3ca7454eaaf2d0e7cde3 | fe7df4c4d043fc65800bbec7f575c1ba50327aa9 | reflect: fix methodValueCall code pointer mismatched
CL 322350 changed how to take address of assembly functions, using
abi.FuncPCABI0 intrinsic. But we forgot to update the code in
Value.UnsafePointer (was Value.Pointer) to reflect that change.
This CL fixes that bug, and also add a test to make sure the code
pointe... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -7722,3 +7722,11 @@ func TestNotInHeapDeref(t *testing.T) {\n \tv = ValueOf((*nih)(unsafe.Pointer(new(int))))\n \tshouldPanic(\"reflect: reflect.Value.Elem on an invalid notinheap pointer\", func() { v.Elem() })\n }\n+\n+func TestMethodCallValueCodePtr(t *te... | 2021-10-19T09:34:43 |
vercel/next.js | 68abad58edd68887bfb5d919aa5b9ef9b2fa8343 | b036c0b2ecb54073957460c0ada400785a2bb571 | Fix useSelectedLayoutSegments including __PAGE__ (#47492)
### What?
Excludes `__PAGE__` elements from `useSelectedLayoutSegment` as it's not
a public api.
This ensures the exclude still applies when there are searchParams part
of the key.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
T... | [
{
"path": "packages/next/src/client/components/navigation.ts",
"patch": "@@ -149,7 +149,7 @@ function getSelectedParams(\n const segment = node[0]\n const isDynamicParameter = Array.isArray(segment)\n const segmentValue = isDynamicParameter ? segment[1] : segment\n- if (!segmentValue || segmentValue ... | 2023-03-24T15:13:22 |
nodejs/node | 46c5c3388d24615d8bcd887bb366d4171e99fdee | dd317fc1c866297f5c91a14a8b26525b8120288f | src: in-source comments and minor TLS cleanups
Renamed some internal C++ methods and properties for consistency, and
commented SSL I/O.
- Rename waiting_new_session_ after is_waiting_new_session(), instead of
using reverse naming (new_session_wait_), and change "waiting" to
"awaiting".
- Make TLSWrap::ClearIn() r... | [
{
"path": "lib/_tls_wrap.js",
"patch": "@@ -1003,8 +1003,6 @@ Server.prototype.setSecureContext = function(options) {\n if (options.ticketKeys) {\n this.ticketKeys = options.ticketKeys;\n this.setTicketKeys(this.ticketKeys);\n- } else {\n- this.setTicketKeys(this.getTicketKeys());\n }\n };\n... | 2019-01-16T19:12:30 |
huggingface/transformers | f0e778112fe6438f25142960fc4a3781c5e32566 | f68eb5f135bc403a3e00ac3736c35c5e041e685a | Clean-up kernel loading and dispatch (#40542)
* clean
* clean imporrts
* fix imports
* oups
* more imports
* more imports
* more
* move it to integrations
* fix
* style
* fix doc | [
{
"path": "src/transformers/integrations/hub_kernels.py",
"patch": "@@ -11,20 +11,26 @@\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 typing import Union\n+import ... | 2025-08-29T12:14:38 |
golang/go | 067d796549242bec2d33226c9da1e67f092a7be2 | 6294207a1c79e318124850155c7b6c23997c8c13 | testing: write output to buffer when fuzzing
Fixes #48709
Change-Id: Ia6376a2f792946498d6565a53605b3e6c985ea7c
Reviewed-on: https://go-review.googlesource.com/c/go/+/355909
Trust: Katie Hockman <katie@golang.org>
Run-TryBot: Katie Hockman <katie@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Jay Co... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_minimize.txt",
"patch": "@@ -31,7 +31,7 @@ stdout FAIL\n ! go test -fuzz=FuzzMinimizeZeroLimitSet -run=FuzzMinimizeZeroLimitSet -fuzztime=10000x -fuzzminimizetime=0x .\n ! stdout '^ok'\n ! stdout 'minimizing'\n-stdout 'there was an Error'\n+stdout -count=1 'th... | 2021-10-14T16:32:58 |
vercel/next.js | b036c0b2ecb54073957460c0ada400785a2bb571 | cb541006dceea3f3902bfc7017b17cd8faa93c3f | Update react hydration error message page title (#47499)
This PR update the react hydration error pages title to better reflect the error being solved | [
{
"path": "errors/react-hydration-error.md",
"patch": "@@ -1,4 +1,4 @@\n-# React Hydration Error\n+# Text content does not match server-rendered HTML\n \n #### Why This Error Occurred\n ",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2023-03-24T15:08:48 |
nodejs/node | 8d728f5cd19574c0f33ab71340ea88502f209518 | 148cac2a40c2ae743e37c964192ea7b0ae3a7fc5 | test: fix zlib-brotli output assumptions
On different architectures, it's possible for the compression algorithm
to produce slightly different outputs. So, don't assume we will
always get the same compressed output on all architectures. Instead,
verify that the decompressing pre-compressed string functions
correctly.
... | [
{
"path": "test/parallel/test-zlib-brotli-from-string.js",
"patch": "@@ -14,21 +14,25 @@ const inputString = 'ΩΩLorem ipsum dolor sit amet, consectetur adipiscing eli'\n ' diam ipsum. Suspendisse nec ullamcorper odio. Vestibulu' +\n 'm arcu mi, sodales non suscipit id... | 2019-01-25T10:32:46 |
huggingface/transformers | d888bd435d0c0eaabaabad5b33d52af518c7187c | 11a6b95553d99d153710dfd1e64facb9e4f85219 | Fix typos (#40511)
Signed-off-by: cyy <cyyever@outlook.com> | [
{
"path": "src/transformers/generation/continuous_batching/classes.py",
"patch": "@@ -191,7 +191,7 @@ def __repr__(self):\n f\"query_length={len(self.prompt_ids)}\",\n f\"remaining_tokens={len(self.remaining_prompt_ids)}\",\n f\"kv_length={self.position_offset}\",\n- ... | 2025-08-29T11:25:33 |
golang/go | 6294207a1c79e318124850155c7b6c23997c8c13 | bde0463da3f31934791b0bb2ccacdf6206314073 | cmd/go: skip flaky fuzz tests
(Temporarily, until they can be fixed.)
For #49046
For #49047
Change-Id: Ib580a5e45a0955aabdfc1899ed38a262a37f66ab
Reviewed-on: https://go-review.googlesource.com/c/go/+/356649
Trust: Bryan C. Mills <bcmills@google.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Go B... | [
{
"path": "src/cmd/go/testdata/script/test_fuzz_fuzztime.txt",
"patch": "@@ -1,3 +1,5 @@\n+skip # Flaky: https://golang.org/issue/49046\n+\n # TODO(jayconrod): support shared memory on more platforms.\n [!darwin] [!linux] [!windows] skip\n ",
"additions": 2,
"deletions": 0,
"language": "Plain T... | 2021-10-18T20:15:43 |
vercel/next.js | cb541006dceea3f3902bfc7017b17cd8faa93c3f | a03db7545dc9a728efb0614c998943274bbcdabc | chore(examples): Fix for destroy is not a function error (#47469)
Fixes #47393
---------
Co-authored-by: Balázs Orbán <info@balazsorban.com>
Co-authored-by: Steven <steven@ceriously.com> | [
{
"path": "examples/with-stripe-typescript/components/ClearCart.tsx",
"patch": "@@ -4,7 +4,9 @@ import { useShoppingCart } from 'use-shopping-cart'\n export default function ClearCart() {\n const { clearCart } = useShoppingCart()\n \n- useEffect(() => clearCart(), [clearCart])\n+ useEffect(() => {\n+ ... | 2023-03-24T15:02:39 |
nodejs/node | 148cac2a40c2ae743e37c964192ea7b0ae3a7fc5 | 9dc11764f27f701c5d3f027cfabec00a2d8222e1 | test: rewrite fs {f}utimes test file
Previously this test silently swallowed some errors.
Refactored to use `common.mustCall()` & `assert()`s.
Also, this adds a couple of extra error-checking cases.
PR-URL: https://github.com/nodejs/node/pull/25656
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: ... | [
{
"path": "test/parallel/test-fs-utimes.js",
"patch": "@@ -28,9 +28,6 @@ const fs = require('fs');\n const tmpdir = require('../common/tmpdir');\n tmpdir.refresh();\n \n-let tests_ok = 0;\n-let tests_run = 0;\n-\n function stat_resource(resource) {\n if (typeof resource === 'string') {\n return fs.sta... | 2019-01-23T03:10:04 |
huggingface/transformers | 11a6b95553d99d153710dfd1e64facb9e4f85219 | b07144ac2769b794eeef9df1b3c9caf8b34c6cd3 | Oupsy (#40544)
fix bump! | [
{
"path": "setup.py",
"patch": "@@ -189,7 +189,7 @@\n \"timeout-decorator\",\n \"tiktoken\",\n \"timm<=1.0.19,!=1.0.18\",\n- \"tokenizers==0.22.0\",\n+ \"tokenizers>=0.22.0,<=0.23.0\",\n \"torch>=2.2\",\n \"torchaudio\",\n \"torchvision\",",
"additions": 1,
"deletions":... | 2025-08-29T10:59:49 |
rust-lang/rust | fde8a8d518e3bd9124bfe4028e3c45f7dcf34593 | c360e219f5a56631baa46065d28e9852ca7d4ce3 | Optimize `Seek::stream_len` impl for `File`
It uses the file metadata on Unix with a fallback for files incorrectly
reported as zero-sized. It uses `GetFileSizeEx` on Windows.
This reduces the number of syscalls needed for determining the file size
of an open file from 3 to 1. | [
{
"path": "library/std/src/fs.rs",
"patch": "@@ -1311,9 +1311,39 @@ impl Write for &File {\n }\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n impl Seek for &File {\n+ /// Seek to an offset, in bytes in a file.\n+ ///\n+ /// See [`Seek::seek`] docs for more info.\n+ ///\n+ /// # Platfor... | 2024-05-13T18:32:33 |
electron/electron | 4537d88a580f5768b7c64c6b96d4a99a60c99f74 | 81d423c5475800c8efaf9a2297c0535b18edda67 | fix typo
Code block should be ended `` | [
{
"path": "docs-translations/ko/api/content-tracing.md",
"patch": "@@ -15,7 +15,7 @@ contentTracing.startRecording('*', contentTracing.DEFAULT_OPTIONS, function() {\n });\n }, 5000);\n });\n-``\n+```\n \n ## Methods\n ",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2015-09-06T03:36:27 |
golang/go | bde0463da3f31934791b0bb2ccacdf6206314073 | b0351bfd7d5f0d367c27aa07789b2e6317442ece | cmd/internal/obj/riscv: fix trampoline calls from large functions
On riscv64, the JAL instruction is only capable of reaching +/-1MB. In the case where
a single function and its trampolines exceeds this size, it is possible that the JAL
is unable to reach the trampoline, which is laid down after the function text. In ... | [
{
"path": "src/cmd/internal/obj/riscv/asm_test.go",
"patch": "@@ -16,32 +16,30 @@ import (\n \t\"testing\"\n )\n \n-// TestLarge generates a very large file to verify that large\n-// program builds successfully, in particular, too-far\n-// conditional branches are fixed.\n-func TestLarge(t *testing.T) {\n+/... | 2021-10-15T16:59:41 |
huggingface/transformers | 008c0ba8e2a1226a6ef5a61c4915a0a8a340c157 | 89ef1b6e0bae8d409ffb0396c4aaf27548108692 | Fix `SeamlessM4Tv2ModelWithTextInputTest::test_retain_grad_hidden_states_attentions` (#40532)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/seamless_m4t_v2/test_modeling_seamless_m4t_v2.py",
"patch": "@@ -76,6 +76,9 @@ def __init__(\n decoder_layers=2,\n encoder_ffn_dim=6,\n decoder_ffn_dim=6,\n+ encoder_layerdrop=0.0,\n+ speech_encoder_layerdrop=0.0,\n+ decoder_layerdrop=0.0,... | 2025-08-28T21:30:59 |
vercel/next.js | dfdd134c648aa0aa6d517c11aa2d98bcf6329186 | e5e1571943e1e2306bff668663a96dce23778a47 | fix error handling and hanging problems (vercel/turbo#4324)
### Description
* fix hanging tasks when recomputing cells
* fix inactive tasks when using streams
* fix fatal error handling for node.js evaluation
We need to ensure that Vc reads and connected Tasks are correctly
handled in when producing streams. ... | [
{
"path": "crates/turbo-tasks-bytes/src/stream.rs",
"patch": "@@ -6,7 +6,7 @@ use std::{\n };\n \n use anyhow::Result;\n-use futures::{Stream as StreamTrait, StreamExt};\n+use futures::{Stream as StreamTrait, StreamExt, TryStreamExt};\n use serde::{Deserialize, Deserializer, Serialize, Serializer};\n \n ///... | 2023-03-24T13:49:17 |
nodejs/node | 9dc11764f27f701c5d3f027cfabec00a2d8222e1 | 817218c9cfd78feaef720b0055cd18d08f774400 | doc: fix http.Agent timeout option description
By default the agent options are passed to `net.createConnection()`
which sets the timeout on the socket immediately after creating it.
PR-URL: https://github.com/nodejs/node/pull/25489
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "doc/api/http.md",
"patch": "@@ -127,7 +127,7 @@ added: v0.3.4\n in a free state. Only relevant if `keepAlive` is set to `true`.\n **Default:** `256`.\n * `timeout` {number} Socket timeout in milliseconds.\n- This will set the timeout after the socket is connected.\n+ This will set... | 2019-01-14T09:20:34 |
rust-lang/rust | 00452bd783a2c91b85cfb37e650628674c64b006 | 5bafe9d8fcad72b97f8b00f40ce8115f54d80504 | change tests to use fixed constants to let them pass with miri | [
{
"path": "library/core/src/num/f32.rs",
"patch": "@@ -1879,7 +1879,7 @@ pub mod math {\n ///\n /// let x = 2.0_f32;\n /// let abs_difference = (f32::math::powi(x, 2) - (x * x)).abs();\n- /// assert!(abs_difference <= f32::EPSILON);\n+ /// assert!(abs_difference <= 1e-5);\n ///\n /... | 2025-05-30T10:38:28 |
huggingface/transformers | 89ef1b6e0bae8d409ffb0396c4aaf27548108692 | 2e0f1d6a37f52823946ed877b5f15f328666c31a | Set `test_all_params_have_gradient=False` for `HunYuanMoEV1ModelTest` (#40530)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/hunyuan_v1_moe/test_modeling_hunyuan_v1_moe.py",
"patch": "@@ -59,6 +59,7 @@ class HunYuanMoEV1ModelTest(CausalLMModelTest, unittest.TestCase):\n )\n test_headmasking = False\n test_pruning = False\n+ test_all_params_have_gradient = False\n model_tester_class = Hun... | 2025-08-28T20:32:51 |
golang/go | b0351bfd7d5f0d367c27aa07789b2e6317442ece | 1e49210ccd8fa40273d0d32e5ae898a4bee69a6e | Revert "cmd/compile: use MOVBE instruction for GOAMD64>=v3"
This reverts CL 354670.
Reason for revert: broke make.bash with GOAMD64=v3.
Fixes #49061.
Change-Id: I7f2ed99b7c10100c4e0c1462ea91c4c9d8c609b2
Reviewed-on: https://go-review.googlesource.com/c/go/+/356790
Trust: Daniel Martí <mvdan@mvdan.cc>
Run-TryBot: Da... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -772,9 +772,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.From.Val = math.Float64frombits(uint64(v.AuxInt))\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = x\n-\tcase ssa.OpAMD64MOVQload, ssa.OpAMD64MOVLload, ssa.OpAMD64MOVWloa... | 2021-10-19T09:09:55 |
nodejs/node | f399b01dc4dbb47f678301aea6f476527889b959 | 48149876dd195bb2bb072a1d8b1cb3ef0b9ae15d | dns: use IDNA 2008 to encode non-ascii hostnames
Before this commit, Node.js left it up to the system resolver or c-ares.
Leaving it to the system resolver introduces platform differences
because:
* some support IDNA 2008
* some only IDNA 2003 (glibc until 2.28), and
* some don't support IDNA at all (musl libc)
c-a... | [
{
"path": "lib/dns.js",
"patch": "@@ -22,6 +22,7 @@\n 'use strict';\n \n const cares = internalBinding('cares_wrap');\n+const { toASCII } = require('internal/idna');\n const { isIP, isIPv4, isLegalPort } = require('internal/net');\n const { customPromisifyArgs } = require('internal/util');\n const errors = ... | 2018-10-10T18:23:48 |
vercel/next.js | b8d785d2865ae5c6d771f7228e72d940904fe975 | 9fff7e321c166603c1078de4865b19e6c4dab4ef | Locale fixes for App Directory (#47429)
Fixes issue with app directory that caused problems with `i18n` was
enabled. Previously, when you accessed a URL like `/blog/first-issue`,
you would expect it to hit the app route at `/app/blog/[slug]/page.tsx`,
but instead it internally attempted to access
`/app/{defaultLoc... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -328,7 +328,7 @@ export default abstract class Server<ServerOptions extends Options = Options> {\n forceReload?: boolean\n }): void\n \n- // TODO-APP(@wyattjoh): Make protected again. Used for turbopack in route-resolver.ts right now.\... | 2023-03-24T12:06:27 |
electron/electron | 87a1b68c477cad2303a3ac33a080d1995f8a259f | d2ea3b496dec0a37ef69c6bba9374a040c58e1d7 | Fix typo | [
{
"path": "brightray/browser/browser_context.h",
"patch": "@@ -91,7 +91,7 @@ class BrowserContext : public base::RefCounted<BrowserContext>,\n : partition(partition), in_memory(in_memory) {}\n \n bool operator<(const PartitionKey& other) const {\n- if (partition != other.partition)\n+ ... | 2015-09-06T02:29:59 |
golang/go | 1e49210ccd8fa40273d0d32e5ae898a4bee69a6e | ee92daae25029882979eb694bd7246491e364d3c | encoding/base64: add examples for Encode/Decode
Fixes #37595
Change-Id: I83e5f6105748a0a9238322a4f7ec4b0bbf61a263
Reviewed-on: https://go-review.googlesource.com/c/go/+/348394
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Daniel Martí <mvdan@mvdan.cc>
Trust: Cherry ... | [
{
"path": "src/encoding/base64/example_test.go",
"patch": "@@ -35,6 +35,15 @@ func ExampleEncoding_EncodeToString() {\n \t// YW55ICsgb2xkICYgZGF0YQ==\n }\n \n+func ExampleEncoding_Encode() {\n+\tdata := []byte(\"Hello, world!\")\n+\tdst := make([]byte, base64.StdEncoding.EncodedLen(len(data)))\n+\tbase64.St... | 2021-09-08T16:32:03 |
nodejs/node | 43c2a13c9334dad4b1f911dfcb455e8f8a9e4611 | b31b84d312c90af2157e3b61d1a3ba3c0d7925e3 | test: replace s_client in test-https-ci-reneg-attack
Replace `s_client` in test-https-ci-reneg-attack with built-in
client calling `tls.renegotiate()`. This also fixes the currently-broken
test. (It is broken due to a change in behavior in a
recently-updated-in-core version of `s_client`.)
PR-URL: https://github.com/... | [
{
"path": "test/pummel/test-https-ci-reneg-attack.js",
"patch": "@@ -28,7 +28,6 @@ if (!common.opensslCli)\n common.skip('node compiled without OpenSSL CLI.');\n \n const assert = require('assert');\n-const spawn = require('child_process').spawn;\n const tls = require('tls');\n const https = require('http... | 2019-01-26T06:30:07 |
huggingface/transformers | 2e0f1d6a37f52823946ed877b5f15f328666c31a | 68013c505a3b8748342c2abc0d085f7d7b8c2d66 | [`Qwen Omni/VL`] Fix fa tests (#40528)
* fix
* style
* flaky flaky
* flaky flaky
* oopsie, we need the out of place for sure
* flaky flaky
* flaky flaky | [
{
"path": "tests/test_modeling_common.py",
"patch": "@@ -4739,6 +4739,7 @@ def _prepare_config_headdim(config, requested_dim):\n (There are many more examples especially now that the `kernels` library is\n supported)\n \"\"\"\n+ config = copy.deepcopy(config)\n \n def ... | 2025-08-28T19:07:22 |
electron/electron | af505db9082a1300e349ac1621ee1ca6929cf221 | 82b9ced3e058d64c931146ad3ae88deb5f26ddab | Grant ChildProcessSecurityPolicy for MIDI from PermissionManager
PermissionManager should set ChildProcessSecurityPolicy for MIDI SysEx
permission. Otherwise, the browser kills unauthorized renderers that are
going to send MIDI SysEx messages.
Fixes #138. | [
{
"path": "brightray/browser/permission_manager.cc",
"patch": "@@ -5,7 +5,10 @@\n #include \"browser/permission_manager.h\"\n \n #include \"base/callback.h\"\n+#include \"content/public/browser/child_process_security_policy.h\"\n #include \"content/public/browser/permission_type.h\"\n+#include \"content/pub... | 2015-09-05T05:50:47 |
vercel/next.js | 9fff7e321c166603c1078de4865b19e6c4dab4ef | b9be75df03029aff5db097b32564c4d323cdb711 | Finalize HOC support with server entries and add encodeReply & decodeReply (#47438)
Revert some code in #47379 and finalize HOC support. We should require
the HOC to return a "use server" function, so there's no need to compile
the function call specially now.
To make that wrapping logic work, we need to allow pa... | [
{
"path": "packages/next-swc/crates/core/src/server_actions.rs",
"patch": "@@ -127,7 +127,6 @@ impl<C: Comments> ServerActions<C> {\n ident: &Ident,\n function: Option<&mut Box<Function>>,\n arrow: Option<&mut ArrowExpr>,\n- call_expr_and_ident: Option<(&mut CallExpr, CallExpr... | 2023-03-24T12:01:10 |
huggingface/transformers | 8c7f685079051225b1b04f0069d89bcc1ff210a1 | d61fab15498630321df36e62481ecd09be9336a6 | Fix typo: 'casual' to 'causal' (#40374)
fix typo: 'casual' to 'causal'
Co-authored-by: demo <vamshika0210@gamil.com>
Co-authored-by: Yih-Dar <2521628+ydshieh@users.noreply.github.com> | [
{
"path": "docs/source/en/model_doc/opt.md",
"patch": "@@ -25,7 +25,7 @@ rendered properly in your Markdown viewer.\n \n # OPT\n \n-[OPT](https://huggingface.co/papers/2205.01068) is a suite of open-source decoder-only pre-trained transformers whose parameters range from 125M to 175B. OPT models are designe... | 2025-08-28T16:17:37 |
nodejs/node | 1d6079432138ed269aa9bc208dc3f53022057b71 | acc5a86efe241b52a2e0bf8c6b1ba886213cf9f0 | src: fix macro duplicate declaration in env.h
Signed-off-by: gengjiawen <technicalcute@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/25703
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/env.h",
"patch": "@@ -405,6 +405,7 @@ class IsolateData {\n PER_ISOLATE_SYMBOL_PROPERTIES(VY)\n PER_ISOLATE_STRING_PROPERTIES(VS)\n #undef V\n+#undef VY\n #undef VS\n #undef VP\n \n@@ -421,6 +422,7 @@ class IsolateData {\n PER_ISOLATE_SYMBOL_PROPERTIES(VY)\n PER_ISOLATE_STRING_PROPERT... | 2019-01-25T14:55:07 |
electron/electron | 38e948f55bab780c4a73f29469ada30881fb00ea | 3e4ad4c6963d88b960075eb8d9e32f628542d048 | Fix small typo | [
{
"path": "docs-translations/ko/tutorial/quick-start.md",
"patch": "@@ -128,7 +128,7 @@ app.on('ready', function() {\n \n ### electron-prebuilt\n \n-`npm`을 통해 `electron-prebuilt` 패키지를 전역에 설치하면 간단한 명령으로 앱을 실행해 볼 수 있습니다.\n+`npm`을 통해 `electron-prebuilt` 패키지를 전역에 설치하면 간단한 명령으로 앱을 실행할 수 있습니다.\n \n 앱 디렉터리 내에서 이렇게... | 2015-09-05T00:42:28 |
golang/go | ee92daae25029882979eb694bd7246491e364d3c | 8838a3b53fccc7b3aa83312326bfd38bcb8f2281 | runtime: ensure at least 1 tick between events
ticks might be same after tick division, although the real cputicks
is linear growth
Fixes #46737
Change-Id: I1d98866fbf21b426c6c1c96cc9cf802d7f440f18
Reviewed-on: https://go-review.googlesource.com/c/go/+/330849
Trust: Meng Zhuo <mzh@golangcn.org>
Trust: Bryan C. Mills... | [
{
"path": "src/runtime/trace.go",
"patch": "@@ -551,8 +551,15 @@ func traceEventLocked(extraBytes int, mp *m, pid int32, bufp *traceBufPtr, ev by\n \t\tbufp.set(buf)\n \t}\n \n+\t// NOTE: ticks might be same after tick division, although the real cputicks is\n+\t// linear growth.\n \tticks := uint64(cputick... | 2021-09-20T12:44:50 |
vercel/next.js | b9be75df03029aff5db097b32564c4d323cdb711 | b39a03f4e3fdb5811d71ed7b8623388e654d5351 | Ignore folders prefixed by underscore (_) in App Router (#47439)
### What?
In `app` all directories starting with `_` are now considered private
and won't be routed.
E.g. `app/_components/page.js` -> does not route
If you want to have a route starting with an underscore like
`/_settings` you can use `%5F` w... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -78,6 +78,7 @@ export function createPagesMapping({\n pagesType: 'pages' | 'root' | 'app'\n pagesDir: string | undefined\n }): { [page: string]: string } {\n+ const isAppRoute = pagesType === 'app'\n const previousPages: { [key: string]: st... | 2023-03-24T11:53:11 |
huggingface/transformers | 31336ab75072e65481f33bcc140dd4bc153e04e4 | 851b8f281d4f666659fab93ba12d812d7c72d17f | Fix mistral3 tests after "[Kosmos 2.5] Rename checkpoints" (#40523)
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/mistral3/test_modeling_mistral3.py",
"patch": "@@ -334,7 +334,10 @@ def test_mistral3_integration_batched_generate(self):\n {\n \"role\": \"user\",\n \"content\": [\n- {\"type\": \"image\", \"url\": \"http... | 2025-08-28T14:29:54 |
nodejs/node | e3e404858d5fb1ae0b50a45f0d1678235f200de0 | 573ec5b0229da2fb6263987f1456595b7bac8b09 | src: simplify inspector initialization in node::Start()
Remove the `StartInspector` and `InspectorStarted` abstraction
out of `v8_platform`, and error out early and directly in the
option parser if Node is configured with NODE_USE_V8_PLATFORM and
inspector enabled but the user still tries to use inspector options.
PR... | [
{
"path": "src/node.cc",
"patch": "@@ -262,23 +262,6 @@ static struct {\n platform_->CancelPendingDelayedTasks(isolate);\n }\n \n-#if HAVE_INSPECTOR\n- bool StartInspector(Environment* env, const char* script_path) {\n- // Inspector agent can't fail to start, but if it was configured to listen\n- ... | 2019-01-21T14:57:51 |
electron/electron | 0577e911b387b0453c83b21f411e91b8e0df3f5e | 090c817ac912dccb75118fae7d1fd83af235f97b | Fix build failing on Windows
build.py would fail on Windows due to a couple of changes made in #2459.
This commit fixes those issues. | [
{
"path": "atom/browser/atom_browser_main_parts.cc",
"patch": "@@ -28,7 +28,8 @@ namespace atom {\n \n namespace {\n \n-const base::FilePath::CharType kStoragePartitionDirname[] = \"Partitions\";\n+const base::FilePath::CharType kStoragePartitionDirname[] =\n+ FILE_PATH_LITERAL(\"Partitions\");\n \n void... | 2015-09-04T20:24:42 |
golang/go | 8838a3b53fccc7b3aa83312326bfd38bcb8f2281 | eba0e866fafe3f8223d654a29fb953e02c07364a | cmd/internal/obj/riscv: fix and enable test in short mode
The branch test only takes a few seconds so enable it in short mode. Also fix a
typo that currently prevents the code from compiling.
Change-Id: I25fc646b002a66c042c61fb1f56d5efa8e47903c
Reviewed-on: https://go-review.googlesource.com/c/go/+/356249
Trust: Joel... | [
{
"path": "src/cmd/internal/obj/riscv/asm_test.go",
"patch": "@@ -134,9 +134,6 @@ TEXT _stub(SB),$0-0\n }\n \n func TestBranch(t *testing.T) {\n-\tif testing.Short() {\n-\t\tt.Skip(\"Skipping in short mode\")\n-\t}\n \tif runtime.GOARCH != \"riscv64\" {\n \t\tt.Skip(\"Requires riscv64 to run\")\n \t}",
... | 2021-10-08T09:28:58 |
vercel/next.js | c7cbb4aaf8535b6cb5274c1b1be4374588f54cc6 | 26f8793e856fed0327c55e9b4d3320a53df0353c | Update Error Boundaries link to new ReactJS documentation (#47474) | [
{
"path": "docs/basic-features/fast-refresh.md",
"patch": "@@ -56,7 +56,7 @@ Component state will be retained if the error did not occur during rendering. If\n the error did occur during rendering, React will remount your application using\n the updated code.\n \n-If you have [error boundaries](https://reac... | 2023-03-24T04:12:33 |
huggingface/transformers | 851b8f281d4f666659fab93ba12d812d7c72d17f | de9e2d7a2eef68f5d7fbd8a99b6d31989352e03a | [`kernels`] If flash attention2 is not installed / fails to import (cc on our cluster) default to kernels (#40178)
* first step if flash not installed but you set to use it
* try importing
* now default to using it
* update our tests as well
* wow yesterday I was not awake
* fixup
* style
* lol the fix was very... | [
{
"path": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -44,6 +44,8 @@ RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/pef\n \n # For bettertransformer\n RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/optimum@main#egg=optimum\n+# For... | 2025-08-28T14:20:25 |
nodejs/node | 573ec5b0229da2fb6263987f1456595b7bac8b09 | 06da364be2d576e9d225ba13d803ebbc0284cfb9 | test: remove unused uncaughtException handler
This has been unused since cbc3ef64ceaf95ec1.
Refs: https://github.com/nodejs/node/pull/23053
PR-URL: https://github.com/nodejs/node/pull/25641
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fi... | [
{
"path": "test/pseudo-tty/test-tty-stdout-end.js",
"patch": "@@ -1,10 +1,4 @@\n 'use strict';\n-const common = require('../common');\n-\n-process.on('uncaughtException', common.expectsError({\n- code: 'ERR_STDOUT_CLOSE',\n- type: Error,\n- message: 'process.stdout cannot be closed'\n-}));\n+require('../... | 2019-01-22T15:48:45 |
electron/electron | f91a7e6d04f5568e630093debe8578fa7761f67d | 5d6ac2296b45a20157136b5c96fbb7b83bb98f32 | Fix README links. | [
{
"path": "docs-translations/pt-BR/README-pt-BR.md",
"patch": "@@ -1,12 +1,12 @@\n ## Guias\n \n-* [Distribuir Aplicação](../../docs/tutorial/application-distribution-pt-BR.md)\n-* [Empacotamento da aplicação](../../docs/tutorial/application-packaging-pt-BR.md)\n-* [Usando módulos nativos](../../docs/tutori... | 2015-09-04T17:25:32 |
golang/go | eba0e866fafe3f8223d654a29fb953e02c07364a | 323e009c757229bdf58f68fde1c5bf07e9e65b61 | go/types: delay expansion of underlying in typeDecl
Even after type-checking the RHS of a type declaration, we may not yet
be able to expand, if the RHS is itself an instance (see #49043).
We can instead rely on the mechanisms we have in place for delayed
expansion.
Fixes #49043
Change-Id: Ibffa4c1b1163c824b5c7e151... | [
{
"path": "src/go/types/decl.go",
"patch": "@@ -647,22 +647,11 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *ast.TypeSpec, def *Named) {\n \tassert(rhs != nil)\n \tnamed.fromRHS = rhs\n \n-\t// The underlying type of named may be itself a named type that is\n-\t// incomplete:\n-\t//\n-\t//\ttype (... | 2021-10-17T22:27:53 |
vercel/next.js | 26f8793e856fed0327c55e9b4d3320a53df0353c | 2a257cef60358589a58d6609a22a7b8fac1fa8be | chore: add telemetry for `output: export` (#47464)
fix NEXT-870 ([link](https://linear.app/vercel/issue/NEXT-870)) | [
{
"path": "packages/next/src/telemetry/events/version.ts",
"patch": "@@ -26,6 +26,7 @@ type EventCliSessionStarted = {\n imageSizes: string | null\n imageLoader: string | null\n imageFormats: string | null\n+ nextConfigOutput: string | null\n trailingSlashEnabled: boolean\n reactStrictMode: boole... | 2023-03-24T00:52:17 |
huggingface/transformers | de9e2d7a2eef68f5d7fbd8a99b6d31989352e03a | 7e1aee4db6fffa357bb67bf7975420bf532b2341 | Skip some flex attn tests (#40519)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/cohere2/test_modeling_cohere2.py",
"patch": "@@ -231,6 +231,12 @@ def test_generation_beyond_sliding_window(self, attn_implementation: str):\n we need to correctly slice the attention mask in all cases (because we use a hybrid cache).\n Outputs for every attention fun... | 2025-08-28T13:43:38 |
electron/electron | 30c714a27f2edb4f54df64dbf06c106f2c8ae6d7 | 05031a38e51e47da3be8c46650cc2d48e1e539c6 | Fix typos in zh-TW README docs | [
{
"path": "docs-translations/zh-TW/README.md",
"patch": "@@ -2,8 +2,8 @@\n \n * [應用程式發布](tutorial/application-distribution.md)\n * [應用程式打包](tutorial/application-packaging.md)\n-* [使用原生模組](tutorial/using-native-node-modules.md)\n-* [Debug 主行程](tutorial/debugging-main-process.md)\n+* [使用原生 node 模組](tutorial/u... | 2015-09-04T07:47:46 |
nodejs/node | c4216194be1b6856b9d02999ea0adc25cc036804 | 6d937c01b00652b1a97136d96d8d9fd3925af420 | test: remove s_client from test-tls-ci-reneg-attack
Rewrite test-tls-ci-reneg-attack to use tls.renegotiate() instead of
external (and potentially unpredictable/quirky/buggy) s_client.
Refs: https://github.com/nodejs/node/pull/25676#issuecomment-457307881
PR-URL: https://github.com/nodejs/node/pull/25700
Reviewed-By... | [
{
"path": "test/pummel/test-tls-ci-reneg-attack.js",
"patch": "@@ -28,7 +28,6 @@ if (!common.opensslCli)\n common.skip('node compiled without OpenSSL CLI.');\n \n const assert = require('assert');\n-const spawn = require('child_process').spawn;\n const tls = require('tls');\n const fixtures = require('../... | 2019-01-25T14:30:07 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.