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,642,511,418 | flutter | github-actions bot not closing issues. | ### Type of Request
bug
### Infrastructure Environment
github-actions bot
### What is happening?
I marked an issue as "waiting for customer response" 3 weeks ago, and after a period of inaction, the `github-actions` bot messaged that it was going to "reluctantly going to close this bug for now".
It didn't actua... | team-infra,P2,triaged-infra | low | Critical |
2,642,536,934 | storybook | [Bug]: Vitest/Test Addon doesn't work if space in path | ### Describe the bug
If your project is in a folder that has a space in it, Vitest cannot find your tests. This may be a bug with Vitest but since it gives a specific error for Storybook I'll log it here. This could be windows only, unsure.
Create any Storybook project, with the test addon as described here : https:... | bug,windows,addon: test | low | Critical |
2,642,560,947 | deno | deno fmt: different configuration per language type | I would like to format my yaml files different than my typescript code. For example, I'd like to use different indentation level.
In Prettier, it's possible by using:
```json
{
"tabWidth": 4,
"overrides": [
{
"files": [".yaml"],
"options": {
"tabWidth":... | deno fmt,config | low | Minor |
2,642,583,722 | ollama | Linux ollama 0.4.0, 0.4.2, 0.4.5, 0.5.0 custom compile for AMD ROCm fails missing ggml_rocm in go compile | ### What is the issue?
Report date: 2024-11-07
During a custom compile of ollama 0.4.0 on Linux (POP OS 22.04) for AMD ROCm GPUs (AMD 6650 GPU), the initial compile works.
However, when trying to execute the go compile, the compile fails after about two minutes citing exit code 1 and saying the error is unabl... | bug,build | medium | Critical |
2,642,595,735 | flutter | [Impeller] Implement OpenGLES multisampling without render to texture extension. | Currently the OpenGL backend uses an ES multisampling extension. We should also support "regular" desktop OpenGL multisampling via creating multisampled textures/render buffers and performing the blit resolve ourselves. | P2,e: impeller,team-engine,triaged-engine,e: opengl | low | Major |
2,642,605,716 | deno | Short flag `-w` for `--watch` | Small quality-of-life improvement, but it'd be handy if the `--watch` option for `deno run`, `deno test`, etc. could be supplied as `-w`. At least for me, it's easily the single most common CLI option I use (certainly more common than `-c`, `-q`, or `-r`, which all get their own short flags). | suggestion,--watch | low | Minor |
2,642,633,821 | excalidraw | Canvas panning on the right mouse button | I need to move the canvas with the right mouse button; the middle mouse button is very inconvenient. Thanks! | enhancement | low | Minor |
2,642,639,286 | pytorch | Building PyTorch from source fails when magma.h is in /usr/include | ### 🐛 Describe the bug
Building PyTorch from source fails when `magma.h` from libmagma2 is in `/usr/include` instead of a non-standard directory.
Breakage is:
```
In file included from /usr/include/c++/10/bits/stl_algo.h:59,
from /usr/include/c++/10/functional:65,
from /buil... | module: build,triaged,module: magma | low | Critical |
2,642,643,567 | pytorch | Add Android Support (Python Wheel) | ### 🚀 The feature, motivation and pitch
Now that Python 3.13 has official support for Android, it would be great to have an Android wheel for PyTorch.
There’s a project called Chaquopy that has been manually patching libraries like PyTorch, and there’s currently an outstanding request for adding an updated wheel (... | module: binaries,feature,triaged,module: android | low | Minor |
2,642,649,442 | pytorch | [Compiled_autograd] running nn.LayerNorm failed for torch.compile with compiled_autograd when deepspeed Zero3 | ### 🐛 Describe the bug
When running a simple model including torch.nn.LayerNorm using deepspeed zero3 with torch.compile and [compiled_autograd](https://github.com/pytorch/tutorials/blob/main/intermediate_source/compiled_autograd_tutorial.rst). An error occurs:
> site-packages/torch/_subclasses/fake_tensor.py:2017... | oncall: distributed,triaged,oncall: pt2,module: compiled autograd | low | Critical |
2,642,721,047 | godot | Reverb "Damp" parameter values don't match description. | ### Tested versions
Godot 4.3 .Net
### System information
Win10 x64 22H2
### Issue description
"Damp" parameter says it measures how reflective the reverb is.
0 Damping should imply full reflectivity AKA no damping
1 Damping should imply no reflectivity AKA full damping.
Right now, 0 Damping perform... | bug,documentation,topic:audio | low | Minor |
2,642,724,355 | pytorch | upsample_bilinear backward is super slow in bf16 as compared to fp32 | ### 🐛 Describe the bug
backward of upsample_bilinear is super slow in bf16 as compared to fp32, may you please help check why? Thanks in advance.
following is the test case:
```python
import torch
import torch.nn as nn
import time
class MyModel(nn.Module):
def __init__(self):
super(MyModel... | needs reproduction,module: performance,module: nn,module: cuda,triaged | low | Critical |
2,642,724,697 | react-native | [Bug]: maxFontSizeMultiplier is not being respected | ### Description
The maxFontSizeMultiplier prop is not being respected for Text and TextInput components. When accessibility settings are changed to increase the display text, the font size increases beyond the multiplier set.
### Steps to reproduce
- Init a new project from the CLI template
- Add a few Text/TextInp... | Issue: Author Provided Repro,Impact: Regression,Resolution: PR Submitted,Component: TextInput,Component: Text,Needs: Attention,Type: New Architecture | medium | Critical |
2,642,730,245 | TypeScript | Proposal: Enhance String interface definition to support type inference for string literals | ### 🔍 Search Terms
string generic methods, string concat, checked domain literal types
Related issues [#44268](https://github.com/microsoft/TypeScript/issues/44268)
### ✅ Viability Checklist
- [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
- [x] This wouldn't change the runtime beha... | Suggestion,Awaiting More Feedback | low | Critical |
2,642,777,848 | pytorch | Inconsistent gradients in torch script function | ### 🐛 Describe the bug
This code reproduce the bug:
```python
import torch
@torch.jit.script
def log_diff(s: torch.Tensor, t: torch.Tensor) -> torch.Tensor:
loss = s.log() - t.log()
return loss.real
def log_diff_ref(s: torch.Tensor, t: torch.Tensor) -> torch.Tensor:
loss = s.log() - t.lo... | oncall: jit | low | Critical |
2,642,787,727 | godot | FogVolume incorrectly culls nearby faces when looking "inward". | ### Tested versions
Reproducible in 4.3 stable mono, 4.2.2 stable mono, 4.0 stable
Its been here the entire time
### System information
Godot v4.3.stable.mono - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3060 (NVIDIA; 32.0.15.6094) - Intel(R) Core(TM) i5-10600KF CPU @ 4.10GHz (12 Th... | bug,topic:rendering | low | Critical |
2,642,963,066 | pytorch | Support Joinable loss functions with DDP | ### 🚀 The feature, motivation and pitch
I'm working on a loss function that requires synchronizing a buffer across workers, and that **isn't** recoverable by a custom reduction of gradients across workers (which is already achievable through DDP's `register_comm_hook`).
I would like it to also work with the `Join`... | oncall: distributed | low | Minor |
2,643,001,484 | transformers | Add functionality for deleting adapter layers in PEFT integration | ### Feature request
This request aims to introduce functionality to delete specific adapter layers integrated with PEFT (Parameter-Efficient Fine-Tuning) within the Hugging Face Transformers library. This would enable users to manage memory and computational resources more efficiently by unloading adapters that are ... | Feature request | low | Major |
2,643,002,968 | deno | Preserve double quotes in JSX with deno fmt | **Description:**
When formatting code with `deno fmt`, it currently converts double quotes to single quotes in JSX (HTML in JS) components. This behavior differs from Prettier, which preserves double quotes in JSX if the `singleQuotes` option is set to `true`.
**Example:**
In Prettier, with `singleQuotes: true... | suggestion,deno fmt | low | Minor |
2,643,013,627 | transformers | Add EXAONE | ### Model description
EXAONE is a large language model developed by LG AI Research. We released [EXAONE 3.0](https://github.com/LG-AI-EXAONE/EXAONE-3.0) in August, but we've since updated the model code and are working on integrating our implementation with the Huggingface transformers library.
### Open source status... | New model | low | Minor |
2,643,091,348 | deno | [node compatibility] `npm:cdk8s` generates wrong json value | Version: `deno 2.1.1 (stable, release, x86_64-unknown-linux-gnu)`
### Prerequisites
```sh
❯ helm version
version.BuildInfo{Version:"v3.16.2", GitCommit:"13654a52f7c70a143b1dd51416d633e1071faffb", GitTreeState:"clean", GoVersion:"go1.22.7"}
❯ node -v
v22.11.0
❯ bun -v
1.1.36
```
Deno configuration file
... | needs investigation,node compat | low | Critical |
2,643,142,539 | pytorch | inconsistency in ```torch.nn.BatchNorm1d``` on CPU and GPU | ### 🐛 Describe the bug
getting inconsistent results on CPU and GPU when computing torch.nn.BatchNorm1d
```python #
#include <iostream>
#include <torch/torch.h>
int main() {
torch::Tensor input = torch::tensor({{{1.3047, 0.8789}}}, torch::kBFloat16);
std::cout << "initialized tensor (CPU):\n" <... | module: numerical-stability,module: cpu,triaged | low | Critical |
2,643,207,265 | ollama | I wanted to the add Donut LLM model which seems to be not supported at the moment | after cloning: https://huggingface.co/docs/transformers/en/model_doc/donut
I have tried to run
`docker run --rm -v .:/model ollama/quantize -q q8_0 /model` but it fails with:
`unknown architecture VisionEncoderDecoderModel`
I think one can never have enough vision models, so please add support for Donut models... | model request | low | Minor |
2,643,208,936 | transformers | The support of `Mllama` in AutoModel | ### Feature request
The `AutoModel.from_config` does not work with Mllama (MllamaConfig, MllamaVisionConfig). I would like to request the ability to use Mllama through `AutoModel`.
### Motivation
There are many codes written to dynamically load models using `AutoModel`. It would be great if `AutoModel` could support... | Feature request | low | Minor |
2,643,226,637 | three.js | LogarithmicDepthBuffer causes problems with the drawing order of transparent objects in some devices | ### Description
Set `logarithmicDepthBuffer` to true in THREE.WebGLRenderer,When rendering a scene with a transparent object that has an opaque object behind it,I got the expected result in my devices ,but the transparent object disappears in some Windows devices.
Furthermore, if do not use `RenderPass` and draw ... | Device Issue | low | Minor |
2,643,253,220 | rust | `isqrt` treated as a `black_box` | I tried this code:
```rust
#[inline(never)]
pub const fn f(n: u8) {
assert!(n >= 4);
assert!(2 <= n.isqrt());
}
```
> [!note]
> I've tried:
> - removing `const`
> - replacing `u8` by `usize`
> - replacing `4` by `9` and `2` by `3`
>
> Outcome was the same
I expected to see this happen: 2nd assertion non-exis... | I-slow,T-compiler | low | Critical |
2,643,264,721 | three.js | TRAAPassNode: Incomplete MRT support. | ### Description
If we add some other postprocessing node after TRAA, we got a black screen.
It appears that TRAA can not work with other MRT, it only takes two textures as output when rendering pass.
https://jsfiddle.net/ligaofeng0901/g0u9qdb6/14/
I created a demo. In this demo, traa and bloom doesn't work fine ... | Post-processing | low | Minor |
2,643,285,239 | angular | Mistake in [Hierarchical Injection] "@Host and viewProviders" section | ### Description
The following line describes the behaviour of using the injection resolution modifiers `@Host` along with `@SkipSelf` but it says that `@SkipSelf` will start from `app-child` which looks incorrect, instead, I believe it should be `app-root`.
#### Original
When `@Host()` and `@SkipSelf()` were applied t... | area: docs | low | Minor |
2,643,323,771 | react | Firebase Authentication State Resets on Page Reload in Vite-React-TypeScript App | When using Firebase Authentication, the signed-in user's state does not persist on page reload, logging out the user each time the page refreshes. This happens in both development and production builds.
**Steps to Reproduce**
1. Clone the starter repo and configure Firebase.
2. Sign in with a test user account.
3... | Status: Unconfirmed | medium | Minor |
2,643,343,440 | vscode | Allow to pin/filter a tree node with all it's child elements | In some cases it's helpful to be able to only see a sub tree of the entire tree. For example as mentioned in this issue for the Outline View: https://github.com/microsoft/vscode/issues/233185#issue-2637853923
or, for the file explorer when a user has a very large workspace but is only working on one or two sub directo... | feature-request,tree-widget | low | Minor |
2,643,345,884 | kubernetes | PersistentVolumeClaim cannot be deleted. | ### What happened?
https://github.com/kubernetes/kubernetes/blob/c25f5eefe4efda4c0d9561d06942cd3de3dfe2e4/pkg/controller/volume/pvcprotection/pvc_protection_controller.go#L374-L388
If a pod with UnexpectedAdmissionError exists in the environment and PersistentVolumeClaim is used, the PVC cannot be deleted after the p... | kind/bug,sig/storage,needs-triage | low | Critical |
2,643,357,668 | neovim | checkhealth: show detected terminal features | ### Problem
There is a number of heuristics the Neovim TUI performs on startup to detect terminal features like CSI-u/Kitty protocol/modifyOtherKeys, truecolor/24-bit color support, and a few other modes/features.
Some examples from `terminfo_start` and friends:
<https://github.com/neovim/neovim/blob/master/src/nvim/... | enhancement,api,tui | low | Critical |
2,643,372,072 | rust | [ICE]: index out of bounds | ### Code
```rust
trait LendingIterator {
type Item<'q>: 'a;
fn for_each(mut self, mut f: Box<dyn FnMut(Self::Item<'_>) + 'static>) {}
}
struct Query<'q> {}
impl<'static> Query<'q> {
pub fn new() -> Self {}
}
fn data() {
LendingIterator::for_each(Box::new(&data), Box::new);
}
pub fn main() {}
```
### ... | I-ICE,T-compiler,C-bug,S-bug-has-test | low | Critical |
2,643,375,357 | kubernetes | DRA: detect stale DRA plugin sockets | ### What would you like to be added?
@klueska observed that after uninstalling his DRA driver *without* removing the Unix Domain socket used for gRPC towards the kubelet, kubelet didn't unregister the driver. We may have to add some liveness probing to `pkg/kubelet/cm/dra/plugin/registration.go`.
/sign node
/wg de... | priority/backlog,sig/node,kind/feature,needs-triage,wg/device-management | low | Major |
2,643,383,849 | ui | [Bug]: Triggering a form within a sheet that’s embedded in form on a different sheet | ### Describe the bug
I have a sheet with a form, and another sheet with its own form. Submitting the form on the second sheet triggers the form on the first sheet.
Create product
```ts
"use client";
import { UnitsInput } from "@/client/components/custom/units-input";
import { Button } from "@/client/compo... | bug | low | Critical |
2,643,389,903 | pytorch | torch.set_autocast_enabled is not working in torch.compile(fullgraph=True) | ### 🐛 Describe the bug
Dynamo creates a graph break around `set_autocast_enabled` causing fullgraph=True mode to fail. Since `torch.autocast` context manager is supported in Dynamo its lower-level component of disabling or enabling autocast could also be supported.
### Error logs
```py
Unsupported: Graph break due... | triaged,oncall: pt2,module: dynamo | low | Critical |
2,643,396,363 | ant-design | DatePicker点击弹出面板上的元素后会错误地触发onBlur方法 | ### Reproduction link
[5.12.8(不会触发onBlur)](https://codesandbox.io/p/sandbox/suspicious-williams-jnzm76)
[5.21.6(会触发onBlur)](https://codesandbox.io/p/sandbox/heuristic-buck-4jy484):
### Steps to reproduce
1. 点击DatePicker
2. 随便点击一个日期
### What is expected?
不触发onBlur方法
### What is actually happening?
... | 🗣 Discussion,Inactive | low | Major |
2,643,410,558 | vscode | Vscode does not open links in default browser | <!-- ⚠️⚠️ 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,linux,snap | low | Critical |
2,643,422,236 | angular | Issue with withViewTransitions when used in iframe causing navigation to stall in Angular applications | ### Which @angular/* package(s) are the source of the bug?
router
### Is this a regression?
Yes
### Description
**Browser/Platform:**
Safari on iOS 18.x
**Current Behavior:**
When using the withViewTransitions feature in an Angular application, which is embedded in a different website via an iframe, the navigati... | area: router | low | Critical |
2,643,427,444 | vscode | Is "Sucessfully signed out" notification really needed | 1. Sign out from an account in VS Code
2. Notice notification saying "Successfully signed out"
3. Though the Account view will most likely show a badge, since we now need you to sign in for something to light up
Do we really need the notification? Since we have the account view changing and confirming to user that eve... | feature-request,authentication | low | Minor |
2,643,451,611 | PowerToys | Image Resizer | ### Description of the new feature / enhancement
Have the ability to choose a group of image sizes, in order to resize the selected images into the different sizes that make up the group.
### Scenario when this would be used?
If I want to resize 10 images in 3 different sizes, it would be usefull
### Supporting inf... | Needs-Triage | low | Minor |
2,643,485,849 | rust | [ICE]: maybe try to call `try_normalize_erasing_regions` instead | <!--
Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide
a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for
how to create smaller examples.
http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
-->
### Code
```Rust
use std::hint::black_box;
tr... | I-ICE,T-compiler,C-bug | low | Critical |
2,643,554,466 | TypeScript | Error: TypeError: Cannot read properties of undefined (reading 'kind') | ### 🔎 Search Terms
Hi, I have an angular application that was running perfectly fine but recently started giving an error in heroku deployment. No matter what I try, I continue to get the same error. Although the application runs and builds fine in my local environment, it fails when deployed to heroku.
The error I ... | Needs More Info | low | Critical |
2,643,564,837 | flutter | [Feature request] Support version catalog | ### Use case
setting.gradle.kts
```kts
pluginManagement {
val flutterSdkPath = run {
val properties = java.util.Properties()
file("local.properties").inputStream().use { properties.load(it) }
val path = properties.getProperty("flutter.sdk")
checkNotNull(path) { "flutter.sdk... | c: new feature,platform-android,tool,t: gradle,P2,team-android,triaged-android | low | Minor |
2,643,565,947 | pytorch | [onnx] [njt] [feature request] Export NJT-enabled SDPA / MHA ops to ORT's PackingMode Attention | ### 🚀 The feature, motivation and pitch
I found that some support for NJT-enabled SDPA / MHA exists in onnxruntime: https://github.com/microsoft/onnxruntime/issues/22764 as "PackedAttention"
https://github.com/microsoft/onnxruntime/blob/main/onnxruntime/python/tools/transformers/convert_to_packing_mode.py#L317
... | module: onnx,triaged | low | Minor |
2,643,613,093 | godot | Warnings are printed as errors on the web platform | ### Tested versions
- Reproducible in: 4.3.stable
### System information
Godot v4.3.stable - Firefox 132, Chromium 130 - X11 - OpenGL (Compatibility) - dedicated NVIDIA GeForce RTX 4090 (nvidia; 565.57.01) - 13th Gen Intel(R) Core(TM) i9-13900K (32 Threads)
### Issue description
In the browser's devtool... | bug,platform:web,topic:porting | low | Critical |
2,643,667,999 | PowerToys | Keys like Shift and Alt don't get released after being used as triggers | ### Microsoft PowerToys version
0.86.0
### Installation method
GitHub, PowerToys auto-update
### Running as admin
Yes
### Area(s) with issue?
Keyboard Manager
### Steps to reproduce
I wanted to have media controls on a normal US English laptop keyboard that lacks the numpad.
I remapped:
Insert to Volume Mute
... | Issue-Bug,Needs-Triage | low | Minor |
2,643,681,005 | node | detect-module: confusing error when parsing a CommonJS module with top-level `await` | Porting from https://github.com/nodejs/TSC/issues/1445#issuecomment-2388678002:
`index.js`:
```js
const {
getPort,
checkPort,
getRandomPort,
waitForPort,
} = require("get-port-please")
const port = await getPort()
```
Getting this:
```
Restarting 'index.js'
(node:15356) [MODULE_T... | module,esm | low | Critical |
2,643,775,371 | tensorflow | tf.cast to int8 produce wrong number | ### Issue type
Bug
### Have you reproduced the bug with TensorFlow Nightly?
Yes
### Source
source
### TensorFlow version
tf2.15 - 2.17
### Custom code
No
### OS platform and distribution
_No response_
### Mobile device
_No response_
### Python version
_No response_
### Bazel version
_No response_
### ... | type:bug,comp:apis,2.17 | medium | Critical |
2,643,811,982 | neovim | interact with virtual text | ### Problem
There is no easy way to yank a virtual text, eg. inlay hints, cursorline git blame from gitsigns, inline diff hunks(most useful usecase).
### Expected behavior
Make cursor capable at putting above virtual text , so one can yank text from them, but disallowing modification. | enhancement,complexity:high,marks,floatwin | low | Minor |
2,643,839,263 | storybook | [Bug]: Play function results carry over from story to story when navigating | ### Describe the bug
Report from Storybook test EAP:
When switching from a story that includes a component test to another story without one, the test results are incorrectly carried over and displayed in the wrong story.
### Reproduction link
https://github.com/AlmarAubel/sb-playground
### Reproduction steps
1. ... | bug,sev:S3,addon: test | low | Critical |
2,643,844,003 | opencv | Document 0d/1d Mat, MatShape and other 5.x specific changes | ### Describe the doc issue
1. API in header
2. doc/tutorials/core/mat_the_basic_image_container/mat_the_basic_image_container.markdown
3. Python/Java tutorials?
### Fix suggestion
_No response_ | category: core,category: documentation | low | Minor |
2,643,883,012 | ui | [bug]: Progress Bar accessibility missing attributes | ### Describe the bug
value of the progress bar needs to passed down here. Like this: `<ProgressPrimitive.Root
value={value}`
This will ensure the accessibility values aria-valuenow and aria-valuetext are applied.
### Affected component/components
Progress
### How to reproduce
View... | bug | low | Critical |
2,643,887,225 | deno | Dependabot support/integration | Many companies rely on GitHub Advanced Security offerings to detect vulnerabilities in codebases. Dependabot is one such tool. Its ability to keep dependencies up to date is nice but from a security perspective its ability to create alerts on vulnerabilities in dependency versions is crucial. It currently supports vari... | suggestion | low | Major |
2,643,979,997 | PowerToys | PowerRename improper windows size | ### Microsoft PowerToys version
0.86.0
### Installation method
PowerToys auto-update
### Running as admin
Yes
### Area(s) with issue?
PowerRename
### Steps to reproduce
- right click and select PowerRename
### ✔️ Expected Behavior
- windows of PowerRename in the center of screen
### ❌ Actual Behavior
![Im... | Issue-Bug,Needs-Triage | low | Minor |
2,643,984,258 | PowerToys | OCR PDF that is images (scanned document) | ### Description of the new feature / enhancement
Please could we have a way to use the snipping tools OCR models for entire documents ?
### Scenario when this would be used?
It's extremely useful for my workflow, but it's only for screenshots. It's much better than text extractor, and i'd like to be able to have a ... | Idea-New PowerToy | low | Minor |
2,644,045,733 | langchain | Youtube requires login to view videoDetails | ### 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 bug is ... | 🤖:bug | low | Critical |
2,644,118,846 | godot | Editor ignores "use native file dialog" setting when run through Steam on Linux | ### Tested versions
Reproducible in:
- v4.3.stable.official [77dcf97d8]
### System information
Godot v4.3.stable - Steam Runtime 2 (soldier) 2 - Wayland - Vulkan (Mobile) - dedicated AMD Radeon RX 7600 (RADV NAVI33) - AMD Ryzen 5 7600 6-Core Processor (12 Threads)
### Issue description
When Godot is run through S... | bug,platform:linuxbsd | low | Minor |
2,644,126,267 | node | Tracking Issue: Syncify the ESM Loader | The code under [`lib/internal/modules/esm`](https://github.com/nodejs/node/tree/main/lib/internal/modules/esm), a.k.a. the ESM loader, contains many functions that are async. We should refactor as many of these as possible, ideally all of them, to be synchronous. This should improve the performance of evaluating ESM co... | performance,esm,loaders | low | Major |
2,644,159,710 | vscode | File Search/Replace replacing multiple times (incorrectly) when double-clicking |
Type: <b>Bug</b>
If you click too fast when replacing multiple occurences by clicking the replace button next to each found replacement, a replacements may be done multiple times for the same occurence.
The replace button should be disabled after it is clicked once.
The problem happens more often in big files and w... | bug,search | low | Critical |
2,644,253,009 | vscode | Terminal Command Truncation | For a long time, my Visual Studio Code setup, along with its extensions, functioned flawlessly and significantly improved my workflow. However, at some point, I began experiencing issues with certain extensions. Notably, when debugging C++ code with CodeLLDB or CMake Tools, the commands sent to the terminal would occas... | bug,confirmation-pending,terminal-process | low | Critical |
2,644,274,830 | PowerToys | Image resizer reducing to tiny 52 x 64 resolution randomly, when others resize correctly at 3840 x 2160 setting. | ### Microsoft PowerToys version
0.86.0
### Installation method
PowerToys auto-update
### Running as admin
Yes
### Area(s) with issue?
Image Resizer
### Steps to reproduce
Typically when resizing bulk images, randomly an image will be reduced to a tiny thumbnail/icon size, not the size selected.
Selected resiz... | Issue-Bug,Needs-Triage | low | Minor |
2,644,326,127 | rust | Rustdoc: Very long doc compile times (95%+ taken by render_html) | I've recently tried to build rustdocs in one of our projects, and I've noticed some very odd 1h+ compile times for the docs (see the attached profile) with a majority of the time taken by the render_html item in the flamegraph. Also, during that time only a single core is pinned to 100%, even though multiple cores are ... | T-rustdoc,I-compiletime,S-needs-repro | low | Minor |
2,644,339,529 | rust | module-level `rustfmt::skip` fails with confusing error | https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=73768e89fe43b087349454c8cf2bf2c9
i would have expected / liked to disable rustfmt for the entire module instead of needing to place it on every item.
also, the error seems pretty confusing. | A-attributes,A-diagnostics,T-lang,T-compiler,C-bug,D-confusing,A-tool-attributes | low | Critical |
2,644,487,086 | godot | AnimatableBody2D animates only one property when sync_to_physics is enabled (using AnimationPlayer) | ### Tested versions
Godot v4.3.stable
### System information
macOS 14.6.1 - Vulkan (Forward+) - integrated Apple M2 Pro - Apple M2 Pro (10 Threads)
### Issue description
1. I am animating a `AnimatableBody2D` using an `AnimationPlayer`
2. The `AnimatableBody2D` is not moving unless I turn **off** `sync_to_physics... | bug,topic:physics,needs testing,topic:animation,topic:2d | low | Critical |
2,644,489,801 | vscode | Dialog "Copilot wants to sign-in" should not show | 1. Have GH Copilot installed.
2. Sign out of all GH accounts in VS Code
3. Notice the Chat Welcome View asking you to Sign In to GH. Click it
4. There is a dialog if I will allow GitHub Copilot Chat to sign in using GitHub

This ... | under-discussion,authentication | low | Minor |
2,644,502,370 | tauri | [bug] Xcode Build Failed (bun: command not found) | ### Describe the bug
I have a working Tauri + Sveltekit example project that was setup using the official Tauri docs. This project was setup using bun. When running `tauri ios dev`, the project properly runs on the IOS xcode simulation. Running `tauri ios dev --open` xcode successfully opens, but when starting the pro... | type: bug,status: needs triage | low | Critical |
2,644,515,326 | react-native | [Android] Modal - statusBarTranslucent behaves differently, modal content is pushed up when keyboard open even if set to true | ### Description
We are using `Modal` component in our app. We usually have its content (dialog) centered, but in one case where text input is included, we have the content pushed up by some pixels to prevent keyboard overlapping it, so it always displays in the top half of the screen.
We want it to behave the sam... | Component: Modal,Component: StatusBar,API: Keyboard | low | Critical |
2,644,539,147 | vscode | Issue reporter fails without telling the user why if content is too large | Repro:
1. Fill issue reporter with 100k of context
2. Try create an issue on GitHub.
I'm also seeing this FYI

Trying to do an internal copilot issue report which adds a bunch of context. | bug,issue-reporter | low | Minor |
2,644,578,115 | flutter | Not correctly rendering SVG with pattern | ### What package does this bug report belong to?
flutter_svg
### What target platforms are you seeing this bug on?
Windows
### Have you already upgraded your packages?
Yes
### Dependency versions
<details><summary>pubspec.lock</summary>
```lock
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lo... | package,has reproducible steps,team-engine,found in release: 3.24,found in release: 3.27,p: flutter_svg | low | Critical |
2,644,595,424 | PowerToys | PowerRename - Remove Highlighting for Deselected Files and Folders | ### Description of the new feature / enhancement
When a file or folder is unchecked in PowerRename, remove its highlighting and grey out its proposed name change in the "Renamed" column.
### Scenario when this would be used?
When a file name matches a search query in PowerRename, the corresponding row is highlighted... | Needs-Triage | low | Minor |
2,644,716,917 | react | [Compiler Bug]: useMemo does not provide stable results across renders for specific functions when compiler enabled | ### What kind of issue is this?
- [X] React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)
- [ ] babel-plugin-react-compiler (build issue installing or using the Babel plugin)
- [ ] eslint-plugin-react-compiler (build issue installing or using the eslint plugin)
- [ ]... | Type: Bug,Status: Unconfirmed,Component: Optimizing Compiler | low | Critical |
2,644,732,885 | tauri | [feat] build without signing cli flag | ### Describe the problem
Myself, and especially contributors to a Tauri-based app, do not want/have the signing keys when testing. However, when the various environment variables are not set, the build just fails.
There is no quick way to build a non-signed bundle of an app.
### Describe the solution you'd lik... | type: feature request | low | Minor |
2,644,755,126 | transformers | Neftune computation is probably wrong with packed training | ### System Info
v4.46.2
### Who can help?
_No response_
### Information
- [ ] The official example scripts
- [ ] My own modified scripts
### Tasks
- [ ] An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...)
- [ ] My own task or dataset (give details below)
### Reproduction
Neftune com... | trainer,Feature request,bug | low | Major |
2,644,798,530 | rust | Tracking Issue for sparc_target_feature | <!--
NOTE: For library features, please use the "Library Tracking Issue" template instead.
Thank you for creating a tracking issue! 📜 Tracking issues are for tracking a
feature from implementation to stabilisation. Make sure to include the relevant
RFC for the feature if it has one. Otherwise provide a short summary ... | O-SPARC,C-tracking-issue,A-target-feature | low | Critical |
2,644,818,649 | flutter | Move Python formatting to a supported formatter | We currently format all Python code using `yapf`. This is done via the `tools/yapf.sh` and `tools/yapf.bat` wrapper scripts.
Unfortunately, `yapf` is abandoned and only works with Python versions up to and including Python 3.10. As OS and local Python installations are upgraded, this will become more and more probl... | team,engine,P2,c: tech-debt,team-engine,triaged-engine | low | Major |
2,644,821,936 | PowerToys | Key Remap NOT WORKING | ### Microsoft PowerToys version
0.86.0
### Installation method
WinGet
### Running as admin
Yes
### Area(s) with issue?
Keyboard Manager
### Steps to reproduce
Remap a shortcut
### ✔️ Expected Behavior
Remaped shortcut WORKs like before.
### ❌ Actual Behavior
None of the remapped shortcuts are working.
###... | Issue-Bug,Needs-Triage | low | Minor |
2,644,890,573 | flutter | [Impeller] libImpeller: Make it easier to trap on OpenGL errors. | @lyceel was running into OpenGL errors in their embedder and was hoping to find where the error happened.
Impeller has this functionality build-in in [`IMPELLER_DEBUG-unopt`](https://github.com/flutter/engine/blob/6ef97e92f0bd147d91ebf7f23ae536572a999294/impeller/renderer/backend/gles/proc_table_gles.h#L75) modes al... | P3,e: impeller,team-engine,triaged-engine,e: libimpeller | low | Critical |
2,644,905,226 | react | [DevTools Bug] getCommitTree(): Invalid commit "7" for root "1". There are only "7" commits. | ### Website or app
private
### Repro steps
profile re-renders click on individual re-renders. Clicked on the last re-render and it crashed instead of displaying info.
### How often does this bug happen?
Only once
### DevTools package (automated)
react-devtools-extensions
### DevTools version (automated)
6.0.0-... | Type: Bug,Status: Unconfirmed,Component: Developer Tools | medium | Critical |
2,644,916,510 | go | proposal: net/http/cookiejar: add Jar.Clear | ### Proposal Details
Currently, since a jar's entries are not exposed to clear all cookies in a client's `Jar` in a thread-safe manner would require(from my understanding):
- Wrapping all calls to the client in a read lock, then write locking as the client's `Jar` is replaced with a new empty jar.
- Keeping track ... | Proposal | low | Major |
2,644,930,406 | deno | deno publish using version field from package.json | Hi,
I have a package (https://jsr.io/@seriousme/opifex) that I publish on JSR , denoland and on NPM.
Since NPM requires the package.json and NodeJS requires JS instead of TS the exports in my package.json differ from the exports in my deno.json. I also do not want deno tools to comment/fail on my generate code in ... | suggestion,publish | low | Major |
2,645,046,310 | rust | improved help message for rustdoc::broken_intra_doc_links | Currently, the only suggestion rustdoc gives is to simply escape `[` and `]` with backslashes, or if there is a similarly-named item, to link to that instead.
there are a few other common errors that it could catch though:
* [ ] code snippets (like `arr[idx+3]`) should be surrounded by backticks instead of escaping ea... | T-rustdoc,C-enhancement,A-intra-doc-links | low | Critical |
2,645,047,210 | kubernetes | NUMA-aware memory manager and Topology Manager policy of "restricted" results in UnexpectedAdmissionError | ### What happened?
While trying to reproduce https://github.com/kubernetes/kubernetes/issues/128669 I spun up a VM to test 1.31.2 via minikube and I think I might have uncovered a new and different bug.
I had 8GB of allocatable memory on each of two NUMA nodes. Key kubelet args were:
-cpu-manager-policy=static... | kind/bug,sig/node,priority/important-longterm,triage/accepted | low | Critical |
2,645,134,251 | PowerToys | Words are inverted in text extractor when I extract | ### Microsoft PowerToys version
0.86.0
### Installation method
Microsoft Store
### Running as admin
No
### Area(s) with issue?
TextExtractor
### Steps to reproduce
Text before I extract:

Text after I extract:
Function Ax... | Issue-Bug,Needs-Triage,Needs-Team-Response,Product-Text Extractor | low | Minor |
2,645,152,392 | pytorch | Compiling `as_strided` call on a view input errors. | ### 🐛 Describe the bug
Not sure whether this kind of thing is not supposed to be supported, but trying to get to the base tensor of a view using `as_strided` operation fails when trying to `torch.compile` it.
```python
def foo(x):
v = x.as_strided((10,), (1,), storage_offset=5)
v.add_(1)
return v... | low priority,triaged,oncall: pt2,module: fakeTensor,module: pt2-dispatcher | low | Critical |
2,645,159,057 | flutter | [flutter_svg] Wrong display of SVG | ### Steps to reproduce
1. Grab the first SVG from the Search-to-Close demo of https://shapeshifter.design (attached)
2. Create a SvgPicture that loads this SVG
3. Observe the display (attached)
 and [`PerformanceMeasure`](https://nodejs.org/docs/latest/api/perf_hooks.html#class-performancemeasure... | doc | low | Major |
2,645,177,620 | kubernetes | Integration tests do not have gitVersion information | Originally raised by @pohly. https://kubernetes.slack.com/archives/C0EG7JC6T/p1730965005279489
https://github.com/kubernetes/kubernetes/blob/530278b1ded93c5416ce1badfb6b7b1ac475694a/staging/src/k8s.io/apiserver/pkg/endpoints/deprecation/deprecation.go#L74-L77
Current major and minor are both zero, so (all?) non-G... | sig/api-machinery,sig/testing,sig/release,sig/architecture,triage/accepted | medium | Minor |
2,645,180,460 | PowerToys | Context menu to fix 3D model orientation | ### Description of the new feature / enhancement
Windows natively has an explorer context menu button to rotate images 90 degrees clockwise or counterclockwise without having to enter a separate image editor program.
Now that Powertoys supports previews of 3d models, it would be nice to have a similar context button ... | Needs-Triage | low | Minor |
2,645,203,685 | flutter | SemanticsBinding.instance.ensureSemantics causes inconsistent state for mobile | ### Steps to reproduce
```dart
import 'package:flutter/material.dart';
import 'package:flutter/semantics.dart';
void main() {
runApp(const TabBarDemo());
SemanticsBinding.instance.ensureSemantics();
}
class TabBarDemo extends StatelessWidget {
const TabBarDemo({super.key});
@override
Widget... | team-accessibility | low | Minor |
2,645,234,983 | node | Missing doc for `PerformanceResourceTiming.{initiatorType, nextHopProtocol, responseStart, deliveryType and responseStatus}` | ### Affected URL(s)
https://nodejs.org/docs/latest/api/perf_hooks.html
### Description of the problem
the `initiatorType`, `nextHopProtocol`, `responseStart`, `deliveryType` and `responseStatus` fields of `PerformanceResourceTiming` are missing from documentaion but are supported by node, they need to be docum... | doc | low | Major |
2,645,252,454 | pytorch | FSDP Hybrid Shard worse loss than than Full Shard | ### 🐛 Describe the bug
When using HYBRID_SHARD instead of FULL_SHARD on PyTorch 2.4.1 the loss of our model behaves similarly to when it is being trained on one node (despite training on two). When using FULL_SHARD, the loss behaves as expected when training on two nodes (so twice the effective batch size). Additiona... | oncall: distributed,module: fsdp | low | Critical |
2,645,256,533 | PowerToys | [PowerRename] Regex help in UI: Add ^, $, .* | ### Description of the new feature / enhancement
Adding the following syntax to the regex help flyout in the PowerRename window will be helpful for users that have not so much knowledge about regex:
- `^` = Start of the string.
- `$` = End of the string.
- `.*` = Any number of any characters. (In addition to `.` synta... | Idea-Enhancement,Help Wanted,Good first issue,Status-In progress,Area-User Interface,Priority-3,Cost-Small | low | Major |
2,645,257,584 | vscode | webviewPanel.viewColumn set incorrectly |
Type: <b>Bug</b>
in an extension, call
```
const webviewPanel=vscode.window.createWebviewPanel(id, title, vscode.ViewColumn.Beside);
```
note that webviewPanel.viewColumn returns undefined
internally the viewColumn is kept as vscode.ViewColumn.Beside = -2, and the accessor returns undefined when it is less than 0.
... | bug,help wanted,webview | low | Critical |
2,645,258,169 | ui | [bug]: RTL Direction is not supported | ### Describe the bug
radix-ui -> Supports Right to Left direction.
tailwindcss -> Supports Right to Left direction "rtl:"
shadcn-ui -> ?
Most of component not support right to left direction
In every new project I need to make modifications to the component
At least half a billion people deal with right to le... | bug | low | Critical |
2,645,321,248 | godot | Number int or float field export variables do not apply when running the game unless you click off or push enter beforehand | ### Tested versions
v4.4.dev4.official [36e6207bb], v4.4.dev3.official [f4af8201b]
### System information
Godot v4.4.dev4 - Windows 10.0.19045 - Multi-window, 9 monitors - OpenGL 3 (Compatibility) - NVIDIA GeForce RTX 3070 (NVIDIA; 32.0.15.6590) - 11th Gen Intel(R) Core(TM) i9-11900K @ 3.50GHz (16 threads)
### Issu... | discussion,topic:editor,usability,topic:gui | low | Minor |
2,645,328,864 | svelte | developer docs | ### Describe the problem
There are parts of Svelte I don't understand since the rewrite. This makes it harder for me to contribute, but mostly just harder for me to understand how Svelte interacts with SvelteKit, to have productive conversations with other maintainers, etc.
### Describe the proposed solution
W... | documentation | low | Major |
2,645,346,844 | flutter | [web] Shift+Tab breaks when starting on browser navigation bar. | It seems that Flutter web doesn't traverse focus in the right order when it misses the "Shift" keydown event.
This happens when the user attempts to reverse focus from the UI elements of the browser, like the address bar, back into the Flutter app.
1. Run the sample code (below)
2. Focus the browser address bar
... | framework,platform-web,has reproducible steps,P2,team-web,triaged-web,found in release: 3.24,found in release: 3.27 | low | Major |
2,645,396,415 | ollama | Support importing vision models from Safetensors in `ollama create` | ### What is the issue?
I tried to import finetuned llama-3.2-11b-vision, but I got "Error: unsupported architecture."
In order to make sure my model is not the problem, I downloaded [meta-llama/Llama-3.2-11B-Vision-Instruct](https://huggingface.co/meta-llama/Llama-3.2-11B-Vision-Instruct) from Huggingface.
I copie... | feature request,create | low | Critical |
2,645,427,550 | node | Worker Threads feature are experimental between v10.5.0 and v11.7.0 | ### Affected URL(s)
https://nodejs.org/docs/latest/api/worker_threads.html
### Description of the problem
Worker Threads feature are experiment between v10.5.0 and v11.7.0 and must enable by passing `--experimental-worker` runtime flag; currently the doc mention no info about this
see https://github.com/mdn/brows... | doc | low | Major |
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.