id int64 393k 2.82B | repo stringclasses 68
values | title stringlengths 1 936 | body stringlengths 0 256k โ | labels stringlengths 2 508 | priority stringclasses 3
values | severity stringclasses 3
values |
|---|---|---|---|---|---|---|
2,728,784,654 | deno | compile - ability to exclude modules or files | It would be useful to have a flag for excluding files or modules (ex. exclude some statically analyzable dynamic import or files in the node_modules directory that aren't necessary). | suggestion,compile | low | Minor |
2,728,809,387 | go | cmd/link/internal/ld: TestRISCVTrampolines failures | ```
#!watchflakes
default <- pkg == "cmd/link/internal/ld" && test == "TestRISCVTrampolines"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8729302970188864273)):
=== RUN TestRISCVTrampolines
=== PAUSE TestRISCVTrampolines
=== CONT TestRISCVTrampoli... | NeedsInvestigation | low | Critical |
2,728,839,069 | pytorch | Floating point exception (core dumped) in `native_channel_shuffle` | ### ๐ Describe the bug
Under specific inputs, `native_channel_shuffle` triggered a crash.
```python
import torch
self = torch.full((1, 4, 10, 10,), 0.5, dtype=torch.float64, requires_grad=False)
groups = 0
torch.native_channel_shuffle(self, groups)
```
Output
```
Floating point exception (core dumped)
`... | module: crash,module: error checking,triaged,module: python frontend,module: edge cases | low | Critical |
2,728,843,172 | pytorch | Segmentation fault (core dumped) in `torch.max_pool1d` | ### ๐ Describe the bug
Under specific inputs, `torch.max_pool1d` triggered a crash.
```python
import torch
self = torch.full((1, 2, 3,), 0.5, dtype=torch.float64, requires_grad=False)
kernel_size = [8608480567731124087]
stride = []
padding = [1250999896764]
dilation = [1250999896764]
ceil_mode = True
torch... | module: crash,module: nn,module: error checking,triaged,actionable,module: pooling,module: edge cases | low | Critical |
2,728,857,144 | pytorch | Aborted (core dumped) in `reflection_pad 2d` | ### ๐ Describe the bug
Under specific inputs,`reflection_pad 2d` triggered a crash.
```python
import torch
self = torch.full((5, 5, 5, 5, 5,), 3.5e+35, dtype=torch.double)
padding = [-1, -1, -1, -1]
torch.ops.aten.reflection_pad2d(self, padding)
```
Output
```
munmap_chunk(): invalid pointer
Aborted (core... | module: crash,module: nn,module: error checking,triaged,actionable,module: padding | low | Critical |
2,728,869,033 | pytorch | Aborted (core dumped) in `slow_conv_transpose3d` | ### ๐ Describe the bug
Under specific inputs, `slow_conv_transpose3d` triggered a crash.
```python
import torch
self = torch.full((1, 2, 4, 5, 4,), 0.5, dtype=torch.double)
weight = torch.full((2, 3, 2, 3, 2,), 0.5, dtype=torch.double)
kernel_size = [1, 1, 1]
bias = torch.full((3,), 0.5, dtype=torch.double)
... | module: crash,module: nn,module: error checking,module: convolution,triaged,actionable,module: edge cases | low | Critical |
2,728,886,282 | godot | UIDs reported as missing on editor load, yet associated errors disappear after running project | ### Tested versions
Godot 4.3 stable [77dcf97d8]
### System information
Windows 10, Debian 12
### Issue description
In one of my active gdscript files, I preload some Resources via UID, as shown below:
```gdscript
var mat : StandardMaterial3D = preload("uid://7ykjq67rxmbx")
```
This works as intended and without... | bug,topic:core,topic:gdscript | low | Critical |
2,728,902,315 | pytorch | Segmentation fault (core dumped) in `max_pool3d_with_indices_backward` | ### ๐ Describe the bug
Under specific inputs, `max_pool3d_with_indices_backward` triggered a crash.
```python
import torch
grad_output = torch.full((1, 2, 1, 3, 2,), 1, dtype=torch.float)
self = torch.full((1, 2, 3, 6, 5,), 1, dtype=torch.float)
kernel_size = [3, 3, 3]
stride = [2, 2, 2]
padding = [0, 0, 0]... | module: crash,module: nn,module: error checking,triaged,actionable,module: edge cases | low | Critical |
2,728,933,707 | flutter | [iPad] Tapping a blank area in a composing region in a TextField with `stylusHandwritingEnabled:false` makes the application crash | ### Steps to reproduce
1. launch app;
2. input chinese , IME bar show;
4. tap on a blank area;
### Expected results
app not crash
### Actual results
app crash
### Code sample
<details open><summary>Code sample</summary>
```dart
// ignore_for_file: avoid_print
import 'package:flutter/material.dart';
... | c: crash,platform-ios,a: tablet,has reproducible steps,P2,c: fatal crash,team-text-input,triaged-text-input,found in release: 3.27 | low | Critical |
2,728,934,206 | pytorch | Floating point exception (core dumped) in `unfold_backward` | ### ๐ Describe the bug
Under specific inputs, `unfold_backward` triggered a crash.
```python
import torch
grad_in = torch.full((), 0, dtype=torch.double)
input_sizes = []
dim = 0
size = 1250999896764
step = 0
torch.ops.aten.unfold_backward(grad_in, input_sizes, dim, size, step)
```
Output
```
Floating ... | module: crash,module: error checking,triaged,module: empty tensor,topic: fuzzer | low | Critical |
2,728,968,609 | godot | set(property_string, property_value) works inconsistently with typed dictionaries | ### Tested versions
Reproduced in: v4.4.dev5
### System information
Windows 10
### Issue description
Assigning typed dictionary to another typed dictionary does not cast Variants to target typing.
If that's intended, I'd expect the editor to spew an error of some kind, or output a warning. Instead the assignment ... | discussion,topic:core,topic:gdscript,documentation | low | Critical |
2,728,985,115 | pytorch | [Inductor] `torch.compile` can tolerate different dtypes when `bias=False` of Conv1d, Conv2d, Conv3d | ### ๐ Describe the bug
When setting `Conv2d(bias=False)` in **torch.float16**, Inductor can pass the check but eager can NOT.
This problem occurs both on CPU and CUDA.
I think `Inductor` should also reject this model
```python
import torch
import torch.nn as nn
class Model(nn.Module):
def __ini... | triaged,oncall: pt2,module: aotdispatch,module: pt2-dispatcher | low | Critical |
2,729,070,179 | vscode | Chat Widget does not follow display language changes correctly | <!-- โ ๏ธโ ๏ธ Do Not Delete This! bug_report_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- ๐ฎ Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- ๐ Search existing issues to avoid creat... | bug,chat | low | Critical |
2,729,125,022 | yt-dlp | [Jamendo] Embedding thumbnails causes downloads to fail | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm reporting that yt-dlp is broken on a **supported** site
- [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instruc... | site-bug,patch-available | low | Critical |
2,729,130,653 | pytorch | Wrong error message | ### ๐ Describe the bug
import torch
input=torch.tensor([[1,2,3]]) # dtype is torch.int64
torch.nn.ConvTranspose1d(1,1,2)(input) # The error message says ```expected scalar type Long but found Float.```
# It should say -"expected scalar type FLOAT but found LONG."
### Versions
Collecting environment informati... | module: error checking,module: convolution,triaged | low | Critical |
2,729,152,392 | go | net: DialTimeout causes persistent slowdown on windows | ### Go version
go version go1.23.3 windows/amd64
### Output of `go env` in your module/workspace:
```shell
set GO111MODULE=
set GOARCH=amd64
set GOBIN=
set GOCACHE=C:\Users\Administrator\AppData\Local\go-build
set GOENV=C:\Users\Administrator\AppData\Roaming\go\env
set GOEXE=.exe
set GOEXPERIMENT=
set GOFLAGS... | OS-Windows,NeedsInvestigation | low | Critical |
2,729,156,059 | pytorch | Using DeviceMesh Slicing with torch.compile() | ### ๐ The feature, motivation and pitch
This is a follow-up issue for https://github.com/pytorch/pytorch/pull/142287. Some questions from the reviewers:
* the internal tensor usage- is it always a CPU tensor regardless of the device used for training/communication
* the internal tensor should not be visible to an... | oncall: distributed,triaged,module: DeviceMesh | low | Minor |
2,729,174,063 | PowerToys | Upscaled Image Previews in File Explorer | ### Description of the new feature / enhancement
### **Problem:**
Windows File Explorer currently displays image previews scaled to **_at most_** 100%, even when using "Large icons" or "Extra large icons." This makes small images, such as 16x16 pixel art PNGs, difficult to see. Users often need to open these images in... | Product-File Explorer,Needs-Triage | low | Minor |
2,729,175,974 | pytorch | DISABLED test_simple (__main__.TestNumericDebugger) | Platforms: mac, macos
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_simple&suite=TestNumericDebugger&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/34162312572).
Over the past 3 hours, it has been det... | oncall: quantization,triaged,module: flaky-tests,module: macos,skipped | low | Critical |
2,729,192,713 | next.js | Empty URL search params are swallowed when rewriting via middleware on Vercel | ### Link to the code that reproduces this issue
https://github.com/migueloller/vercel-middleware-search-params-bug-repro
### To Reproduce
Deploy the application to Vercel. The easiest way is using the Vercel CLI. I have a deployed version that can be used to test [here](https://search-params-drab.vercel.app/?f... | bug,Middleware | low | Critical |
2,729,217,376 | kubernetes | Preemption picks wrong victim node with higher priority pod on it after #128307 | ### What happened?
related: #128307
After #128307 has been merged, preemption logic picks wrong victim node with higher priority pod on it.
In the following situation, `high` pod on `worker1` not `mid` on `worker2` is evicted when `very-high` pod(Priority=10000) attempts to schedule.
- `worker1`
- `high` pod... | kind/bug,sig/scheduling,needs-triage | low | Major |
2,729,219,626 | angular | some diagrams are hard to read in dark mode | ### Describe the problem that you experienced
Many of the diagrams don't work well in dark mode. For example:
Light mode:

Dark mode:

The... | help wanted,good first issue,area: docs | low | Critical |
2,729,260,662 | kubernetes | NodeResourcesBalancedAllocation cause too many pods scheduled to the same node | ### What happened?
NodeResourcesBalancedAllocation will return different score if pod request is empty.
```
I1210 06:42:54.701779 1 resource_allocation.go:70] "Listing internal info for allocatable resources, requested resources and score" pod="tuyaco-k8s/task-worker-9" node="10.20.96.50" resourceAllocationS... | kind/bug,sig/scheduling,needs-triage | medium | Critical |
2,729,302,745 | next.js | Failed to build with the error occurred in `next/font` | ### Link to the code that reproduces this issue
https://stackblitz.com/edit/stackblitz-starters-yqm1pksx?file=package.json
### To Reproduce
1. Install next.js v14.2.20
2. Exec `npm run build`
### Current vs. Expected behavior
**Current**
Failed to build with errors shown below
```
> next build
... | bug,Font (next/font) | low | Critical |
2,729,305,831 | react | [eslint-plugin-react-hooks] v5.1.0 was released without any changes in github | The newer version is released https://www.npmjs.com/package/eslint-plugin-react-hooks/v/5.1.0
However, there aren't any changes in the package dir here as of the time of posting the issue.
https://github.com/facebook/react/tree/372ec00c0384cd2089651154ea7c67693ee3f2a5/packages/eslint-plugin-react-hooks
This is c... | Status: Unconfirmed | low | Minor |
2,729,312,659 | transformers | More rich documentation on pipelines | ### Feature request
For instance, in the case of pipelines, there are merely some community examples such as automatic-speech-recognition. There is no indication of who constitutes it or how the Voice Activity Detection (VAD) is involved. As a result, users are perplexed.
### Motivation
More detailed descriptions on... | Feature request | low | Major |
2,729,323,440 | rust | Split `run-make` into two test suites: fast-path that don't need to build cargo/rustdoc and a slow-path that requires these tools | Building stage 1 cargo and rustdoc takes quite a bit of time and is annoying if your run-make test doesn't even need cargo/rustdoc. Building stage 1 cargo for tests that do need cargo is actually necessary because beta cargo (the usual bootstrap cargo) might not have changes that are present in nightly cargo. | A-testsuite,E-hard,C-enhancement,T-bootstrap,A-compiletest,A-run-make,A-test-infra | low | Major |
2,729,342,177 | rust | compiletest: inconsistent and inconvenient ways to request verbose test output | compiletest has some strange `--nocapture` (which is a libtest thing) support for `ui` tests but inconsistently for other test suites. `crashes` test suite uses an env var `COMPILETEST_VERBOSE_CRASHES=1` to unhide the crashes test failure output. `run-make` test suite has multiple layer of hiding going on.
There's als... | A-testsuite,E-hard,T-bootstrap,C-bug,A-compiletest,A-test-infra,E-needs-investigation | low | Critical |
2,729,405,567 | vscode | Disable inline completions when composing via an IME (Input Method Editor) | <!-- โ ๏ธโ ๏ธ Do Not Delete This! feature_request_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
I would like inline completions to be disabled when c... | editor-input-IME,inline-completions | low | Major |
2,729,411,256 | tensorflow | ValueError: as_list() is not defined on an unknown TensorShape. | ### Issue type
Support
### Have you reproduced the bug with TensorFlow Nightly?
No
### Source
source
### TensorFlow version
2.18.0
### Custom code
Yes
### OS platform and distribution
Ubuntu 20.04.6 LTS
### Mobile device
_No response_
### Python version
3.11
### Bazel version
_No response_
### GCC/com... | type:support,TF 2.18 | medium | Critical |
2,729,426,857 | ant-design | Spin็ปไปถfullscreenๆจกๅผไธwrapperClassNameๅฑๆงไธ็ๆ | ### Reproduction link
[](https://codesandbox.io/p/sandbox/antd-reproduction-template-forked-7z7zfx?file=%2Findex.tsx)
### Steps to reproduce
Spin็ปไปถๆทปๅ fullscreenๅwrapperClassNameๅฑๆง
### What is expected?
wrapperClassNameๅฑๆง็ๆ๏ผspinๅค... | Inactive | low | Minor |
2,729,467,854 | deno | Allow expanding the types displayed on hover | When hovering over a complex type, it's usually hard to read. It would be cool to be able to expand the types manually in order to see the final computed type.
This would upstream the changes in https://github.com/microsoft/vscode/issues/94679#issuecomment-2529656036 and therefore requires TS 5.7. | feat,lsp | low | Minor |
2,729,470,985 | ant-design | ๆๆบ็ซฏH5ไฝฟ็จSelect ็ปไปถ๏ผ่ฎพ็ฝฎallowClearไนๅ๏ผ็ฑไบๆๆบ็ซฏๆฒกๆhoverไบไปถ๏ผ้่ฆ็นๅปๆ่ฝ็ๅฐๆธ
้คๅพๆ ใๆญคๅบๆฏๆๅ้็ๆนๆกๅ๏ผๆฏๅฆ้ๆฉๆกๆๅผ็ๆถๅ๏ผๅฐฑๅฑ็คบๆธ
้คๅพๆ ใ | ### Reproduction link
[](https://codesandbox.io)
### Steps to reproduce
ๆๆบ็ซฏH5ไฝฟ็จ
### What is expected?
ๆๆบ็ซฏH5ไฝฟ็จSelect ็ปไปถ๏ผ่ฎพ็ฝฎallowClearไนๅ๏ผ็ฑไบๆๆบ็ซฏๆฒกๆhoverไบไปถ๏ผ้่ฆ็นๅปๆ่ฝ็ๅฐๆธ
้คๅพๆ ใๆญคๅบๆฏๆๅ้็ๆนๆกๅ๏ผๆฏๅฆ้ๆฉๆกๆๅผ็ๆถๅ๏ผๅฐฑๅฑ็คบๆธ
้คๅพๆ ใ
### What is actually happening?... | Inactive,๐ฑMobile Device | low | Minor |
2,729,533,902 | transformers | Adding Mamba2ForTokenClassification to Mamba2 | ### Feature request
Iโve noticed that many newly added models do not include a `ForTokenClassification` implementation. Is this due to fundamental challenges in implementation (though I donโt perceive any major obstaclesโperhaps Iโve overlooked something), or is it simply a matter of development priorities and time co... | Feature request | low | Minor |
2,729,551,015 | rust | Tracking issue for release notes of #93235: Tracking Issue for `const_nonnull_new` |
This issue tracks the release notes text for #93235.
### Steps
- [ ] Proposed text is drafted by PR author (or team) making the noteworthy change.
- [ ] Issue is nominated for release team review of clarity for wider audience.
- [ ] Release team includes text in release notes/blog posts.
### Release notes text
The... | T-libs-api,relnotes,A-const-eval,relnotes-tracking-issue | low | Minor |
2,729,583,142 | pytorch | DISABLED test_override_cpu_sum (__main__.TestPythonRegistration) | Platforms: asan, linux, mac, macos, rocm, win, windows, slow
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_override_cpu_sum&suite=TestPythonRegistration&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/ru... | triaged,module: flaky-tests,skipped,module: python dispatcher | low | Critical |
2,729,609,429 | langchain | How to chain RemoteRunnable clients to local llm server (hosted using langserve)? | ### Checked other resources
- [X] I added a very descriptive title to this issue.
- [X] I searched the LangChain documentation with the integrated search.
- [X] I used the GitHub search to find a similar question and didn't find it.
- [X] I am sure that this is a bug in LangChain rather than my code.
- [X] The b... | โฑญ: core | low | Critical |
2,729,618,823 | react | Bug: `select` menu won't update highlight when options change | If a `<select>`'s options changes (e.g. if options are loaded asynchronously) while the menu is open, the `<select>` won't re-examine its options to update its highlight position (`selectedIndex`).
In the Codesandbox example below, I have a select menu that will have its options swapped out 1 second after it receiv... | Status: Unconfirmed | medium | Critical |
2,729,703,981 | vscode | Statusbar has strange theme defaults | In default dark, you get a nice hover feedback:

Even for prominent items:

In default light theme, there is no hover feedback at all?
![... | bug,ux,workbench-status | low | Minor |
2,729,754,244 | bitcoin | Data corruption on MacOS when using exFAT datadir or blocksdir | As reported in #28552, #28613 and various other places online there are intermittent issues when using an exFAT-formatted drive on MacOS.
I was easily able to reproduce the issue, using an extrenal Samsung T7 SSD formatted to exFAT and connected via USB-C to an M4 macbook. Failures were seen at seemingly random poin... | macOS,Upstream,Block storage,Data corruption | low | Critical |
2,729,760,673 | rust | Investigate using `crosstool-ng` instead of CentOS baseline | In some `dist` builders (mainly the x64 one), we use an old Linux distro (e.g. CentOS 7) to have a low glibc baseline. However, it seems like using `crosstool-ng`, and essentially "cross-compiling" from platform A to platform A could also work, and perhaps result in a simpler CI configuration (https://github.com/rust-l... | C-enhancement,T-infra,A-CI,E-needs-investigation | low | Minor |
2,729,795,484 | bitcoin | multiprocess: build failure on Alpine with depends & `DEBUG=1` | Alpine 3.21 aarch64
gcc (Alpine 14.2.0) 14.2.0
```bash
make -C depends/ NO_USDT=1 NO_WALLET=1 NO_QT=1 NO_ZMQ=1 MULTIPROCESS=1 DEBUG=1
cmake -B build --toolchain /bitcoin/depends/aarch64-unknown-linux-musl/toolchain.cmake
cmake --build build --target bitcoin-node
<snip>
[100%] Linking CXX executable bitcoin-nod... | Build system,interfaces | low | Critical |
2,729,797,132 | bitcoin | Use clang in VS build? | MSVC has many issues, for example:
* non-optimized codegen: https://github.com/bitcoin/bitcoin/pull/29852#issuecomment-2049803970
* compile failure: https://github.com/bitcoin/bitcoin/issues/31303
* legal, but brittle stdlib: https://github.com/bitcoin/bitcoin/pull/31391#issuecomment-2510762011
* unspecified issu... | Brainstorming,Windows,Build system | low | Critical |
2,729,829,558 | rust | STATUS_ACCESS_VIOLATION happens frequently with rust 1.83 under windows x64 environment | <!--
Thank you for filing a bug report! ๐ Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
I tried this code:
```rust
<code>
fn main() {
println!("hihi");
}
```
I expected to see this happen:
*Just a normal "hihi" string* printed out on my conso... | S-needs-repro | low | Critical |
2,729,837,636 | rust | Type inference fails where LUB coercion succeeds | This is probably a known effect, but I'd like to get confirmation that this is intended behavior or a known bug. It sure caught me by surprise.
I tried this code:
```rust
let a1: _ = [b"a", b"a" as &[u8]];
let b1: _ = [b"a" as &[u8], b"a"];
let a2: [_; 2] = [b"a", b"a" as &[u8]];
let b2: [_; 2] = [b"a" as &[u8], b"a... | A-inference,C-bug,A-coercions,T-types | low | Critical |
2,729,848,479 | deno | Panic when passing a windows style file path in `patch` field of `deno.json` | The patch field looks like this: `patch: [ "D:\\a\\fresh\\fresh\\" ]`
```
============================================================
Deno has panicked. This is a bug in Deno. Please report this
at https://github.com/denoland/deno/issues/new.
If you can reliably reproduce this panic, include the
reproduction s... | cli,config,panic | low | Critical |
2,729,869,108 | three.js | Select if a directional light should contribute to the lighting color contribution, or to a shadow map only ( real time shadowing ) | ### Description
A while ago I did hack my way on a custom threejs of the webGLRenderer to render both baked and real time lighting,
And I found out really useful to determine / selecting if a light should contribute of the color lighting output, or **cast shadow only** and only contributes to the shadow mapping
... | Enhancement | low | Minor |
2,729,887,090 | TypeScript | The identifiers field of Sourcefile is not correct | ### ๐ Search Terms
The following programming practices:
1. open or create an arkts project and create a new HSP module (shared library)
2. Create a new test.ets file under library->pages, and enter the code:export function cc (param:string) {}
export function name(params: string) {
}
export const sss = ''
3. Crea... | Needs More Info | low | Minor |
2,729,892,390 | vscode | Getting blue screens. I installed few days back "chicoff.mapfile" extension and working with MapServer, GDAL builds. | We have written the needed data into your clipboard because it was too large to send. Please paste.
Type: <b>Performance Issue</b>
Today I had 4 blue screens. I installed few days back "chicoff.mapfile" extension and working with MapServer, GDAL builds. Looks like when opening multiple instances of the VS and work wi... | freeze-slow-crash-leak,under-discussion | low | Critical |
2,729,985,247 | pytorch | [Inductor] `ConvTranspose` does not check different `dtypes` with Inductor | ### ๐ Describe the bug
This both occurs on **ConvTranspose1d, 2d, and 3d**.
When setting different `dtypes` for ConvTranspose and inputs, Eager would reject the model but Inductor seems to pass the check.
Another evidence is that when I do the same thing on `Conv`, Inductor would also reject the model.
```pyt... | triaged,oncall: pt2,module: aotdispatch,module: pt2-dispatcher | low | Critical |
2,729,990,183 | deno | otel: automatically inject `ContextManager`, `MetricsProvider`, and `TraceProvider` | Right now you have to import `@deno/otel` to hook Deno's built in OpenTelemetry API into `@opentelemetry/api`. `@opentelemetry/api` however has code to read all three of these from the global object. This code is intended to ensure that multiple copies of `@opentelemetry/api` can still work correctly.
I propose we s... | feat,otel | low | Minor |
2,730,053,571 | react | Bug: Detached Elements Observed When Toggling Content with ReactDOM.createPortal() | We observed a possible memory leak when using `ReactDOM.createPortal()` to render components. The issue occurs when toggling the portal content between a `RadioGroup` and the text `Loading...`. If the `RadioGroup` is interacted with before toggling, some DOM elements are not properly cleaned up, leaving detached nodes ... | Status: Unconfirmed | medium | Critical |
2,730,081,057 | kubernetes | Kube scheduler has a confusing error message when scheduling pods that use claims with `ReadWriteOncePod` access mode | ### What happened?
When we deploy a claim like:
```yaml
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: ebs-claim
spec:
accessModes:
- ReadWriteOncePod
resources:
requests:
storage: 4Gi
```
And then deploy two pods:
```yaml
---
apiVersion: v1
kind: Pod
metadata:
... | kind/bug,sig/scheduling,needs-triage | low | Critical |
2,730,103,018 | kubernetes | When a pod is removed, running execs stay open but frozen | ### What happened?
When a pod is removed, running execs stay. Their standard streams are not closed.
### What did you expect to happen?
The root processes of the execs are killed, so the running exec should be terminated by the kubeapi-server, or at least the stdout/stderr streams should be closed.
### How can we r... | kind/bug,sig/node,triage/needs-information,triage/not-reproducible,needs-triage | low | Major |
2,730,159,869 | pytorch | `RuntimeError: MKL FFT error: Intel oneMKL DFTI ERROR: Inconsistent configuration parameters` in `TestJitCPU.test_variant_consistency_jit_fft_fft2_cpu_complex64` against mkl 2024* | ### ๐ Describe the bug
While working on conda-forge packages for PyTorch, I've hit a suspicious test failure. I've been able to reproduce it with PyTorch 2.5.1 (from conda-forge and from pip) and nightly (from pip). When building for conda-forge, I've confirmed that it happens with mkl 2024.1.0 through 2024.2.2; 2024... | triaged,module: mkl,module: linear algebra,module: intel | low | Critical |
2,730,183,094 | deno | Compile a workspace | Version: Deno 2.1.3
Hi,
Let's say I have the following code (you can also find it here https://github.com/tjoskar/deno-workspace-bug-maybe ):
```ts
// lib-a/main.ts
export const a = "Hello from lib-a";
```
```json
// lib-a/package.json
{
"name": "@my-scope/lib-a",
"type": "module",
"version": "1.0... | bug,compile,workspaces | low | Critical |
2,730,216,897 | go | x/tools/gopls: fix quickfix to add missing import when package name does not match directory name | ### gopls version
Build info
----------
golang.org/x/tools/gopls v0.16.1
golang.org/x/tools/gopls@v0.16.1 h1:1hO/dCeUvjEYx3V0rVvCtOkwnpEpqS29paE+Jw4dcAc=
github.com/BurntSushi/toml@v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=
github.com/google/go-cmp@v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1... | gopls,Tools,gopls/imports | low | Critical |
2,730,231,855 | terminal | [Terminal Chat] Unable insert command using keyboard | ### Description of the new feature
There are two things:
1. I'm not able to hit Enter or Space to trigger insert command into Terminal.
2. The mouse cursor should change to  (pointer) when mouse hover on the button.
 attempts to assign unique names to all nodes it parses.
However I noticed that duplicated names can appear in meshes created for nodes in certain cases. When a GLTF mesh has multiple primitives the GLTF loader will create one THREE.Mesh per mesh primitive under a ... | Loaders | low | Minor |
2,730,322,411 | kubernetes | kube-proxy: net.InterfaceAddrs may return error due to a race condition, causing the Nodeport Service to be inaccessible | ### What happened?
In our production environment, which verson is 1.24.4
1. kube-proxy's error log:
2024-12-09T07:35:24.325300135+08:00 E1209 07:35:24.325193 1 proxier.go:1131] "Failed to get node IP address matching nodeport cidr" err="error listing all interfaceAddrs from host, error: route ip+net: no such ... | kind/bug,sig/network,triage/accepted | low | Critical |
2,730,323,275 | pytorch | Stop special-casing einops in Dynamo | Imports can have unwanted side effects. See https://github.com/pytorch/pytorch/blob/fb529c2c84f876b4897e2a0d7405c00ff94b29b5/torch/_dynamo/decorators.py#L611
Internal xref: https://fb.workplace.com/groups/257735836456307/posts/804793021750583/?comment_id=805229281706957&reply_comment_id=805232695039949¬if_id=1733... | triaged,oncall: pt2,module: dynamo | low | Minor |
2,730,345,033 | vscode | Extensions: `workbench.extensions.installExtension(...)` should prompt for confirmation | <!-- โ ๏ธโ ๏ธ Do Not Delete This! feature_request_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
The `workbench.extensions.installExtension(...)` API... | under-discussion | low | Major |
2,730,372,269 | pytorch | Stop importing arbitrary third-party libraries in Dynamo | The problem is that arbitrary third-party libraries can have side effects on import. Instead, we should check if the libraries have already been imported. Example of what we should do: https://github.com/pytorch/pytorch/blob/34127fc6880e25e71c62daf8fc8f909a4efddd2d/torch/_dynamo/variables/dicts.py#L712
Also, part of... | triaged,oncall: pt2,module: dynamo | low | Minor |
2,730,390,022 | vscode | Editor over cuts off markdown content in backticks when it exceeds the length of the line | 
Expanded:

Can we tweak `whitespace` for this?
| bug,editor-hover | low | Minor |
2,730,423,252 | vscode | triage for issue #7102 |
Type: <b>Bug</b>
reference case:
https://github.com/code/code-server/issues/7102
triage reson: verify if help report points to the same repo
VS Code version: Code 1.95.3 (f1a4fb101478ce6ec82fe9627c43efbf9e98c813, 2024-11-13T14:50:04.152Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<details>
<summary>System Inf... | bug,menus,confirmation-pending | low | Critical |
2,730,452,152 | pytorch | Custom ops are not logged to dynamo_compile/TORCH_TRACE when an error occurs | ### ๐ Describe the bug
Sample internal log where this happens: https://manifold.edge.x2p.facebook.net/v0/read/tree/logs/aps-shuaiyang-25071ebc0f/attempt_0/version_0/rank_0/index.html?bucketName=tlparse_reports&apiKey=tlparse_reports-key&withPayload=1&timeoutMsec=100If you compare 13/0 with 13/1, 13/0 reports custom o... | module: logging,triaged,oncall: pt2 | low | Critical |
2,730,453,302 | PowerToys | Allow customization of shortcut icons for Worspaces | ### Description of the new feature / enhancement
Currently, when creating an Workspace shortcut in PowerToys, the shortcut icon is automatically set to the first letter of the shortcut's name. While functional, this default icon may not align with the user's preferences or the applications represented by the Workspace... | Idea-Enhancement,Needs-Triage,Product-Workspaces | low | Critical |
2,730,469,077 | PowerToys | Right clic menu reshuffle each time | ### Microsoft PowerToys version
0.86.0
### Installation method
Microsoft Store
### Running as admin
No
### Area(s) with issue?
General
### Steps to reproduce
Hi. Great tool you did. There is just something annoying at use. Whenever I use the right mouse clic on an item (file, folder, etc.) the menu reshuffles ... | Issue-Bug,Needs-Triage,Area-Context Menu | low | Major |
2,730,535,047 | godot | GPU Particles with Damping set dissapear when Scene Tree is Paused | ### Tested versions
- Reproducible in 4.3
### System information
Godot v4.3.stable.mono - Pop!_OS 22.04 LTS - X11 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 4070 Ti - AMD Ryzen 7 7700X 8-Core Processor (16 Threads)
### Issue description
When creating blood splatters that stay for a long period of time, I n... | bug,topic:particles | low | Minor |
2,730,556,098 | next.js | dnyamicParams = true doesnt work with "output: export" config | ### Link to the code that reproduces this issue
https://codesandbox.io/p/devbox/heuristic-hooks-cndpsr
### To Reproduce
The CodeSandbox from NextJS to create minimal reproductions is broken, so my linked sandbox is too
use the output: export config,
create a page with a dynamic path: `/assessment/results/[id]/... | bug,Output (export/standalone),Navigation,Pages Router | low | Critical |
2,730,602,968 | storybook | [Documentation]: Additional configuration required for Remix Run | ### Describe the problem
When adding Storybook to a brand new remix run application, the following error shows up whenever attempting to run Storybook:
```
=> Failed to build the preview
Error: The Remix Vite plugin requires the use of a Vite config file
ย ย at configResolved (./node_modules/@remix-run/dev/dist/vite/... | documentation | low | Critical |
2,730,656,310 | pytorch | Improve `docstring_linter` | ### ๐ The feature, motivation and pitch
The docstring_linter is very useful but here are some practical features that make it more so (after discussion with @amjames).
## "Grandfather list" of existing failures instead of numeric limits
The Issue with the numeric limits is that we can create all sorts of cruf... | module: docs,module: lint,triaged,better-engineering | low | Critical |
2,730,688,216 | excalidraw | "glyf: empty gid 410 used as component in glyph 16" right after loading the dev environment in Firefox | 
| bug | low | Minor |
2,730,701,527 | flutter | [a11y][iOS] bottomNavigationBar cannot be navigated using Switch Control | ### Steps to reproduce
1. Enable Switch Control in iOS settings app (https://support.apple.com/en-us/119835).
2. Using the repro app below, attempt to navigate between `NavigationDestination`s within the `NavigationBar`.
### Expected results
It is possible to navigate between `NavigationDestination` tabs.
... | platform-ios,f: material design,a: accessibility,customer: google,f: focus,has reproducible steps,P1,found in release: 3.24,team-accessibility,triaged-accessibility,found in release: 3.27 | medium | Critical |
2,730,704,928 | react | Bug: `react-hooks/rules-of-hooks` does not allow `_Component` names underscore prefix for 'private naming convention' | <!--
Please provide a clear and concise description of what the bug is. Include
screenshots if needed. Please test using the latest version of the relevant
React packages to make sure your issue has not already been fixed.
-->
Latest version `eslint-plugin-react-hooks@5.1.0`
## Steps To Reproduce
```... | Type: Discussion,Component: ESLint Rules | low | Critical |
2,730,768,303 | vscode | Unable to resize window on wayland when native titlebar used | <!-- โ ๏ธโ ๏ธ Do Not Delete This! bug_report_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- ๐ฎ Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- ๐ Search existing issues to avoid creat... | bug,upstream,electron,wayland | low | Critical |
2,730,798,892 | godot | [3.x] The scene inheritance was cleared, but Godot still gives warnings on the TileMap node. | ### Tested versions
v3.6.stable.official [de2f0f147]
### System information
w10 64
### Issue description
The Node2D2 scene inherits from the Node2D scene.
In the video, you can see that I remove the inheritance of Node2D2 from Node2D, leaving Node2D2 independent, but even so, the TileMap node still shows warnings... | bug,topic:2d | low | Minor |
2,730,840,216 | vscode | Incorrect Batch Regex Replacement | <!-- Please search existing issues to avoid creating duplicates. -->
## Environment data
- VS Code version: 1.95.3
- Jupyter Extension version (available under the Extensions sidebar): v2024.10.0
- Python Extension version (available under the Extensions sidebar): v2024.20.0
- OS (Windows | Mac | Linux distro... | bug,notebook-find | low | Critical |
2,730,848,507 | vscode | js-debug terminal icon surrounded by $() in Settings editor | Testing https://github.com/microsoft/vscode/issues/123790

I have two js-debug options because I seem to have both stable and nightly, but they both have improper icons. | bug,settings-editor | low | Critical |
2,730,870,750 | flutter | [Proposal] Add an Api for RemoveUntil Route without an overhead to dispose intermediate routes | ### Use case
quickly back to a deep route without triggering didPopNext or something
### Proposal
like this:
> flutter\packages\flutter\lib\src\widgets\navigator.dart:
```dart
void removeUntil(RoutePredicate predicate) {
_RouteEntry? candidate = _lastRouteEntryWhereOrNull(_RouteEntry.isPresentPr... | c: new feature,framework,f: routes,c: proposal,P3,team-framework,triaged-framework | low | Minor |
2,730,957,736 | vscode | Outline does not track current position when "follow cursor" is on | Type: <b>Bug</b>
No matter that "follow cursor" is switched on, the Outline doesn't track location.
Here is the proof:


There is one more very annoying problem: only when reporting in THIS extension, the data below is NOT automatically populated (and I reported this as another bug).
## Environment data
Everything latest version. ... | bug,notebook-execution | low | Critical |
2,730,967,522 | vscode | keybindings to "find" next/previous occurences not working ? | ### Applies To
- [X] Notebooks (.ipynb files)
- [ ] Interactive Window and\/or Cell Scripts (.py files with \#%% markers)
### What happened?
Hi, I can use my keybindings on a classic file (ie a python file) to find the next/previous occurence of the string defined on the find widget (the one appearing on the top rig... | bug,notebook-cell-editor,notebook-find | low | Minor |
2,730,974,153 | flutter | `matchesGoldenFile` when imported by `integration_test` routes to the host system | Would fix https://github.com/flutter/flutter/issues/143299.
The implementation of [`matchesGoldenFile`](https://api.flutter.dev/flutter/flutter_test/matchesGoldenFile.html) is a wrapper around the current [`goldenFileComparator`](https://api.flutter.dev/flutter/flutter_test/goldenFileComparator.html), and works like... | c: proposal,f: integration_test,P1,fyi-web | medium | Critical |
2,730,974,210 | pytorch | If a dynamic value is later specialized, it is not removed from parameter list | ### ๐ Describe the bug
If we made something dynamic, we add the symexpr to parameter list, and later specialize it, we do NOT remove it from the parameter list. This looks like an oversight and the symexpr should be removed.
I have not yet been able to write a local repro but the internal job looks like
When dyna... | triaged,oncall: pt2,module: dynamic shapes | low | Critical |
2,731,000,033 | go | net/http: builtin slash-suffix redirect does not persist the raw (encoded) url | ### Go version
go version go1.22.6 linux/amd64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE=''
GOARCH='amd64'
GOBIN=''
GOCACHE='/home/westley/.cache/go-build'
GOENV='/home/westley/.config/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='amd64'
GOHOSTOS='linux'
GOINSECURE=''
... | NeedsInvestigation | low | Minor |
2,731,004,119 | next.js | MDX Plugin String Format resolution doesn't work with ESM plugins with multiple exports | ### Link to the code that reproduces this issue
https://github.com/wesbos/next-mdx-plugin-string-issue
### To Reproduce
When using strings to import a MDX Rehype plugin, the Next.js importer fails.
I believe this is only when the package has multiple ESM exports - like this package: https://github.com/stefanprobs... | bug,Markdown (MDX) | low | Critical |
2,731,019,914 | react-native | app always crashes on IOS when inputting to a TextInput the word 'near' (lowercase) | ### Description
app always crashes on IOS when inputting to a TextInput the word 'near', see attached Snack.
It will happen every time you type slow enough so that the autocomplete feature of IOS will mark some letters.
If you type really fast, before the autocomplete is able to mark anything - you will be able ... | Platform: iOS,Component: TextInput,Needs: Triage :mag:,Newer Patch Available | low | Critical |
2,731,033,343 | rust | Crater runs for 1.84 | Note: Please do not conduct triage on these runs without discussing how to do so with a release team member first. Thanks! | S-waiting-on-review | medium | Major |
2,731,059,376 | vscode | Missing support for asymmetric visibility when using PHP constructor property promotion | <!-- โ ๏ธโ ๏ธ Do Not Delete This! bug_report_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- ๐ฎ Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- ๐ Search existing issues to avoid creat... | help wanted,feature-request,php,grammar | low | Critical |
2,731,091,063 | storybook | Support showing the sidebar context menu for root entries | Roots should behave exactly like groups and components, the kebab-menu button just need to show _next_ to the "expand all" button.

| feature request,addon: test | low | Minor |
2,731,102,158 | pytorch | [MPS] `out_channels` <= 2**16 guard for convolution is too broad | ### ๐ Describe the bug
In https://github.com/sdatkinson/neural-amp-modeler/issues/505, @sdatkinson discovered that the guard against `out_channels` > 2**16 in convolution
https://github.com/pytorch/pytorch/blob/117b6c3e2c477793e3b5f964ec01bd0718313aae/aten/src/ATen/native/mps/operations/Convolution.mm#L168-L173
... | module: error checking,triaged,module: mps | low | Critical |
2,731,112,363 | vscode | "Modeless" controls for notebook manipulation | I absolutely love the jupyter vscode extension :-)
One feature that I would really appreciate would be a way to manipulate notebook contents (add cells, remove cells, change cell type etc) using a "modeless" interface. That is to say it would be nice to have the option to perform these operations using simple keyboa... | feature-request,notebook-commands | low | Minor |
2,731,158,223 | go | x/tools/internal/refactor/inline: reduce call if neither binding decl nor callee body would create name conflicts | Inlining even simple calls such as:
```go
_ = astutil.NodeContains(p.File, typeError.Pos)
```
causes literalization due to the need for a binding decl within the function body:
```go
_ = func() bool { var n ast.Node = p.File; return n.Pos() <= typeError.Pos && typeError.Pos <= n.End() }()
```
But the name n is ... | gopls,Tools,Refactoring | low | Critical |
2,731,162,194 | vscode | Terminal toggle size to content width vertical scroll bar is in wrong position | Repro:
1. `ls`
2. Size terminal narrow so lines wrap
3. Press alt+z

5. shift+wheel down

| bug,terminal-layout | low | Minor |
2,731,163,602 | vscode | Terminal toggle size to content width lacks horizontal scroll bar | Repro:
1. `ls`
2. Size terminal narrow so lines wrap
3. Press alt+z

5. shift+wheel down

๐ there's no horizontal scroll bar (vertica... | bug,terminal-layout | low | Minor |
2,731,177,554 | svelte | Svelte scoped global styles do not work | ### Describe the bug
As discussed in this [closed feature request](https://github.com/sveltejs/svelte/issues/14578), the newly introduced scoped global styles do not work in most cases because of CSS specificity.
Because of CSS specificity if an element has more classes than another then it takes precedence when b... | documentation | low | Critical |
2,731,190,977 | deno | Array.indexOf() returns -1 for negative integers which exist in arrays of length >= 48 | Version: Deno 2.1.3
poc:
```ts
for (let value = -2; value < 2; value++) {
for (let fill = -2; fill < 2; fill++) {
if (value == fill) continue;
for (let i = 0; i < 3; i++) {
const length = 5 * Math.pow(10, i);
const index = Math.floor(length / 2);
const array = new Array(length).fi... | upstream,v8 | low | Critical |
2,731,197,268 | electron | net.WebSocket | ### Preflight Checklist
- [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project.
- [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to.
- [x] I have searched ... | enhancement :sparkles: | low | Minor |
2,731,209,084 | TypeScript | Allow `interface extends object` syntax | ### ๐ Search Terms
interface extends object
### โ
Viability Checklist
- [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
- [x] This wouldn't change the runtime behavior of existing JavaScript code
- [x] This could be implemented without emitting different JS based on the types of the ex... | Suggestion,In Discussion | low | Minor |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.