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,810,811,500
PowerToys
Fancy Zones is so slow
### Description of the new feature / enhancement There's a delay between key-down of the shift key and the zone rectangles appearing. There's a delay between the mouse-up and the window fitting into the zone. These delays drop you out of your flow and make you wonder if Fancy Zones is working... it is... but losing yo...
Needs-Triage
low
Major
2,810,812,744
flutter
Blur not working as expected with impeller on Samsung galaxy s22 and some other devices
### Steps to reproduce 1. create new flutter project with flutter create 2. paste code from code sample to your main.dart file 3. run this app on Samsung Galaxy s22 (i know this issue persist across some other devices but don't know exactly on which) ### Expected results This is how blur expected to work video reco...
waiting for customer response,in triage
low
Critical
2,810,812,951
ollama
Context caching in RAM
I have been thinking about the possibility of caching computed context into RAM. Let me explain, how it could be helpful on cheaper HW, that many of us are running. The challenges: 1) you have limited VRAM. You have to split it between model and context cache (context length). As you are using the server alone (or with...
feature request
low
Major
2,810,820,809
ant-design
input inside dropdown of form item of select will inherit error status of select
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/wvk5xh) ### Steps to reproduce submit to make select got error status then click select to see input status <img width="472" alt="Image" src="https://github.com/user-attachments/as...
🤔 Need Reproduce
low
Critical
2,810,824,589
rust
`#[thread_local]`s are pessimized in `#[no_mangle]` functions
```rust #![feature(thread_local)] use std::cell::Cell; #[thread_local] static THREAD_LOCAL: Cell<bool> = const { Cell::new(false) }; pub fn pub_mentions_thread_local() { let _ = THREAD_LOCAL; } #[no_mangle] fn no_mangle_uses_thread_local() { let r = &THREAD_LOCAL; if !r.get() { r.set(true); ...
A-codegen,T-compiler,A-thread-locals,F-thread_local,C-optimization
low
Critical
2,810,839,707
vscode
Hot Exit bug
<!-- ⚠️⚠️ 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...
info-needed
low
Critical
2,810,844,033
PowerToys
If PowerToys run shortcut is set to win+space, it also activates Click To Do in Windows.
### Microsoft PowerToys version 0.87.1 ### Installation method WinGet ### Running as admin No ### Area(s) with issue? PowerToys Run ### Steps to reproduce Use Windows Insider Dev with Click To Do on Copilot+ PC Set shortcut for activating PowerToys Run to Win+Space Activate PowerToys Run with Win+Space *N...
Issue-Bug,Needs-Triage
low
Critical
2,810,846,746
vscode
Sluggish after Nvidia 570 driver upgrade
Type: <b>Bug</b> I upgraded my desktop from 560 to 570 using the open kernel module driver. After restarting my system, user input to VSCode has become very laggy. Things I've tried with no change in behaviour: > code --disable-gpu > disabling all extensions and restarting VS Code version: Code 1.96.4 (cd4ee3b1c348...
freeze-slow-crash-leak
low
Critical
2,810,850,635
PowerToys
Dedicate some keyboard keys to a specific windows
### Description of the new feature / enhancement Imagine you have 2 windows opened, one VLC for playing a teacher and another for Word where you want to write what the teacher is saying. you want to be able to pause the VLC without moving and clicking to the VLC windows, hence dedicate one key like the space key to th...
Needs-Triage
low
Minor
2,810,852,568
transformers
Huggingface/transfomers v3.3.2 is throwing import errors when building on Nextjs 14
### System Info Operating System: MacOS Sequoia 15.2 Hardware: M1 Macbook Pro ### Who can help? @zucchini-nlp @muellerzr ![Image](https://github.com/user-attachments/assets/11639dbb-fb13-4ea0-861a-b2a61362b63f) I get this error when I run`pnpm build` to build my project to production but it kept throwing this err...
bug
low
Critical
2,810,878,252
godot
Fix StatusIndicator tooltip typo in Create New Node menu
### Tested versions Reproducable in: 4.3 stable Testing earlier versions not necessary, this has likely existed since the addition of the node StatusIndicator, or if there was a formatting migration, this would have happened during that. ### System information Godot v4.3.stable - Linux Mint 22 (Wilma) - X11 - GLES3...
bug,topic:editor
low
Minor
2,810,887,304
angular
extend streaming resource with {status} capability
### Which @angular/* package(s) are relevant/related to the feature request? core ### Description After playing around with the new streaming resource in 19.2.0-next.0 I thought about different usecases where I would like to use this. First: the resource is only in "Loading" state when a new request is emitted unti...
area: core,core: reactivity,cross-cutting: signals
low
Critical
2,810,898,069
rust
Crash writing PNG from a C++ background thread on macOS Rust 1.84.0
I'm writing PNG files from a C++ background thread. It used to work on Rust stable 1.83.0, but it crashes on Rust stable 1.84.0 and nightly. I'm using the `png` crate, but it or its dependencies [shouldn't have any code](https://github.com/Frommi/miniz_oxide/issues/160), which would cause the crash. The crash happens ...
C-external-bug
low
Critical
2,810,898,344
rust
Should generate llvm.threadlocal.address for TLS accesses
See https://llvm.org/docs/LangRef.html#llvm-threadlocal-address-intrinsic. Instead of directly accessing the global, the result of `@llvm.threadlocal.address(ptr @g)` should be accessed. This is required for correctness when using LLVM coroutines (not relevant for Rust), but it should also improve codegen in some cas...
A-LLVM,T-compiler,A-thread-locals,C-bug
low
Minor
2,810,901,019
rust
`DerefPure` impl for `Cow` may be too general
<!-- 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. --> One of `unsafe trait DerefPure`'s preconditions is that `Self`'s `Deref` impl is "well-behaved". `std::borrow::Cow` currently always implements `DerefPure`, but...
T-lang,T-libs-api,C-bug,requires-nightly,F-deref_patterns
low
Critical
2,810,906,438
godot
Rotation gizmo is visible while previewing a Camera3D after restarting the editor with a camera previewed
### Tested versions - Reproducible in: 4.0.stable, 4.3.stable, 4.4.beta1 ### System information Godot v4.4.dev (24d74510e) - Fedora Linux 41 (KDE Plasma) on X11 - X11 display driver, Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 4090 (nvidia; 565.77) - 13th Gen Intel(R) Core(TM) i9-13900...
bug,topic:editor,topic:3d
low
Minor
2,810,912,364
rust
2024 edition migration of `ref` in patterns suboptimal: fixed up by clippy --fix
<!-- 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. --> The 2024 edition migration changed this: ```rust impl TryFrom<&Selector> for konfigkoll_utils::line_edit::Selector { type Error = eyre::Error; fn try_...
T-compiler,C-bug,A-suggestion-diagnostics,A-clippy,A-edition-2024,I-edition-triaged
low
Critical
2,810,922,207
godot
Godot script crash
### Tested versions 4.3.stable See belows ### System information MacOS - See below ### Issue description See dump [godot_crash.txt](https://github.com/user-attachments/files/18545725/godot_crash.txt) ### Steps to reproduce Running Godot script from Godot - when FPS goes to a spesific location it always crashes...
needs work,needs testing,crash
low
Critical
2,810,922,931
vscode
Issues with allowed extensions Group Policy
<!-- ⚠️⚠️ 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...
info-needed
low
Critical
2,810,923,700
langchain
TavilySearchResults is not getting images even with include_images=True?
### 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,810,928,626
godot
Godot random crashes in Windows when starting project manager or running project
### Tested versions Verified in 4.3, 4.4 dev and 4.4 beta. Once loaded, the editor works, but running a project also crashes several times. Exported projects also crash with same error. ### System information Windows 10-AMD RX 6600, and Windows 11, Nvidia RTX 4060 ### Issue description Since 4.3 I have experience...
bug,needs testing,crash
low
Critical
2,810,930,712
godot
Engine crash when disabling `own_world_3d` with nested viewports
### Tested versions v4.3.stable.mono.custom_build [77dcf97d8] v4.2.2.stable.mono.official [15073afe3] ### System information Windows 10 ### Issue description The engine (game and editor) crashes if you turn off `own_world_3d` for `SubViewport` with child `SubViewport`s. ### Steps to reproduce * Create a scene wi...
bug,needs testing,crash,topic:3d
low
Critical
2,810,930,718
ollama
llama.cpp server API compatibility
This seems like an obvious thing but I could not find an existing issue for that. It would be nice if Ollama API had a compatibility layer with [llama.cpp server API](https://github.com/ggerganov/llama.cpp/blob/master/examples/server/README.md#api-endpoints). I wanted to try out the new [llama.vscode](https://github.c...
feature request
low
Minor
2,810,941,430
TypeScript
Property 'X' has no initializer and is not definitely assigned in the constructor
### 🔎 Search Terms Property 'X' has no initializer and is not definitely assigned in the constructor ### 🕗 Version & Regression Information - This changed between versions ______ and _______ - This changed in commit or PR _______ - This is the behavior in every version I tried, and I reviewed the FAQ for entries a...
Duplicate
low
Critical
2,810,949,660
flutter
FadeInImage with BlendMode.color abruptly shows the specified color as a background
### Steps to reproduce 1. Add `transparent_image: ^2.0.1` dependency on a new Flutter project 2. Paste the code sample below to `main.dart` 3. Run the app on any platform ### Expected results Specified color to only affect the image as a filter and not mess with the background before the image fades in. ### Actual ...
framework,a: images,has reproducible steps,team-framework,found in release: 3.27,found in release: 3.29
low
Minor
2,810,970,465
flutter
make EditableText.onTapUpOutside default logic configurable
### Use case Just like with `EditableText.onTapOutside`, there should be a way to set the default logic of `EditableText.onTapUpOutside` . ### Proposal A few months ago, a pull request (https://github.com/flutter/flutter/pull/150125) was merged that added a `EditableTextTapOutsideIntent` to allow setting a default a...
a: text input,c: new feature,framework,c: proposal,team-text-input
low
Minor
2,810,970,844
TypeScript
Add AnyFunction as a new helper Type
### ⚙ Compilation target ESNext ### ⚙ Library ESNext ### Missing / Incorrect Definition I would suggest to add a new type for "any type of functions" called AnyFunction. When we check for the code `(...args: any) => any` or `(...args: any[]) => any` in github, we finde over 90k files which have this code. So it w...
Suggestion,Declined
low
Minor
2,810,973,543
excalidraw
Eraser is slow.
https://github.com/user-attachments/assets/2df60fcc-c6e7-4ea5-9df8-ca4305891142
bug,performance ⚡️,Eraser tool
low
Major
2,810,973,613
vscode
Extreme cpu and memory usage.
<!-- ⚠️⚠️ 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...
info-needed,shared-process
low
Critical
2,810,975,017
godot
Error when calling exisiting function using JavaClassWrapper
### Tested versions - Tested in 4.4-beta1 and dev7 ### System information Godot v4.4.beta1 - Windows 11 (build 22631) - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 4070 Laptop GPU (NVIDIA; 32.0.15.6636) - AMD Ryzen 7 7840HS w/ Radeon 780M Graphics (16 threads) ### Issue description I...
bug,platform:android,topic:export
low
Critical
2,810,978,339
flutter
[Engine/Android] Inconsistent system navigation bar between SystemUiMode.manual and others due to inconsistent usage of SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
### Steps to reproduce Switching between different SystemUiMode, for example ```dart // Step 1: show all the bars SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge) // Step 2: show only navigation bar SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: [SystemUiOverlay.bottom]); // S...
in triage
low
Major
2,810,987,233
ollama
FHS Violation
### What is the issue? The Linux FHS has this to say about /usr/ ``` /usr is shareable, read-only data. That means that /usr should be shareable between various FHS-compliant hosts and must not be written to. Any information that is host-specific or varies with time is stored elsewhere. ``` However, Lama puts the s...
bug
low
Minor
2,810,988,850
angular
Cannot read properties of undefined (reading 'index') Zone.js
### Which @angular/* package(s) are the source of the bug? zone.js ### Is this a regression? Yes ### Description ![Image](https://github.com/user-attachments/assets/40083db8-0cda-450e-b0d9-534aab690ddf) ![Image](https://github.com/user-attachments/assets/ecac8061-69a7-4c67-9373-aca23f3d43c7) ### Please provide ...
needs reproduction,area: zones
low
Critical
2,811,010,920
transformers
Request to add Doge
### Model description Doge is an architecture that combines the advantages of state-space and self-attention. It solves the problem of self-attention getting lost in long sequences by computing **dynamic mask** from cached value states using zeroth-order holding. It can also use `wsd_scheduler` on top of dense weight ...
New model
low
Minor
2,811,012,332
flutter
FloatingActionButton is out of frame when trying to place it in CupertinoSheetRoute
### Steps to reproduce I wanted to try out [PR](https://github.com/flutter/flutter/pull/157568#issuecomment-2590955571)'s recently implemented CupertinoSheetRoute, so I ran [sheet.dart](https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/cupertino/sheet.dart) and examples' [cupertino_sheet.0.dart](...
f: material design,f: cupertino,has reproducible steps,team-design,found in release: 3.29
low
Minor
2,811,012,573
kubernetes
pull-kubernetes-e2e-kind-evented-pleg is failing with error: "gauge:{value:NNNN}} was collected before with the same name and label values" #128229
### Which jobs are failing? pull-kubernetes-e2e-kind-evented-pleg ### Which tests are failing? SynchronizedBeforeSuite detail link: https://prow.k8s.io/view/gs/kubernetes-ci-logs/pr-logs/pull/129355/pull-kubernetes-e2e-kind-evented-pleg/1883113368735191040 ### Since when has it been failing? Today (or may have be...
sig/node,kind/failing-test,lifecycle/active,triage/accepted
low
Critical
2,811,013,859
neovim
`nvim_win_call()` can affect global current directory in presence of window-local current directory
### Problem Executing `nvim_win_call()` does not play well with window-local current directory. Even more so if inside its callback new window splits are created. ### Steps to reproduce 1. Create the following 'init.lua': ```lua -- Create separate window with the current (global) current directory vim.c...
bug-vim
low
Minor
2,811,032,709
material-ui
React 19 for mui-joy
### Summary Hi I know you have paused the development of mui-joy. But could you give the possibility to use it with react 19? ### Examples _No response_ ### Motivation _No response_ **Search keywords**: react 19 mui-joy
support: question,status: waiting for author
low
Minor
2,811,038,872
godot
After hiding a node on GPUParticles2D finished signal and then showing again, without restarting, the particles always show again for a frame at the last position.
### Tested versions 4.3 + mono, 4.4 beta 1 (Forward+) ### System information Win 11 - intel i5 - 13600KF - Nvidia RTX 4070 ### Issue description Video from the MRP: https://youtu.be/CINibauy7sU Video from my project: https://youtu.be/TkcZ82gIO0E I'll describe what to watch for in the video, please watch it after ...
bug,needs testing,topic:2d,topic:particles
low
Critical
2,811,044,829
rust
Reborrowing (`&mut *x`) is not suggested as a potential solution for `&mut T` being moved
### Code ```Rust fn do_something<T>(_a: &mut T, _b: &mut T) {} fn foo<T: Default>(r: &mut T) { let mut a = T::default(); let b = r; do_something(&mut a, b); *r = a; } ``` ### Current output ```Shell error[E0382]: use of moved value: `r` --> src/lib.rs:7:5 | 3 | fn foo<T: Default>(r: &mut T) {...
A-diagnostics,T-compiler
low
Critical
2,811,048,848
vscode
"c" key is not typing in vs code
Type: <b>Bug</b> Hello Team VS Code, In my VS Code , when I try to type "c" it didn't type but when is type "C" with shift key i typed . Only letter "c" is not typing. Please this problem as-soon-as possible . Thanks. VS Code version: Code 1.96.4 (cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba, 2025-01-16T00:16:19.038Z)...
info-needed,triage-needed
low
Critical
2,811,053,112
ollama
ollama version is 0.5.7-0-ga420a45-dirty
### What is the issue? Can we talk about how to fix this? ### OS Linux ### GPU Nvidia ### CPU Intel ### Ollama version 0.5.7
bug
low
Minor
2,811,060,097
ui
[bug]: Unused Variable Error for actionTypes in TypeScript with ESLint in use-toast.ts
### Describe the bug When using the use-toast.ts file from the shadcn template in a Next.js project, running npm run lint results in the following ESLint error: <img width="1167" alt="Image" src="https://github.com/user-attachments/assets/2f7caac0-74a7-49e6-8cd8-8927a1e49f0c" /> ### Affected component/components To...
bug
low
Critical
2,811,061,376
next.js
Deprecation warning of "punycode" module in freshly created next js app in Windows 11
### Link to the code that reproduces this issue https://github.com/vickvey/next-imdb/ ### To Reproduce 1. Create a fresh next app with `npm create-next-app@latest` in windows 11 from powershell terminal. 2. Run the developement server using `npm run dev`. 3. You will see the warning there about some punycode module ...
create-next-app,linear: next
low
Minor
2,811,062,722
ollama
Deepseek R1 throwing weird generation DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
### What is the issue? I tried to use the full deepseek model 4-bit quantized one with `ollama run deepseek-r1:671b` but it somehow gives `DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD` as the output ![Image](https://github.com/user-attachments/assets/d650a4ac-44cb-444f-a72c-7aa0191b502d) ### OS Linux ### GPU AMD ### CPU _...
bug
low
Major
2,811,079,711
youtube-dl
How can you use a list of proxies?
The question is, how can I use a whole list of proxies, I added 10 proxies to the list and upload it, but before that my script checks which ones work, which ones don't and generates a file with working proxies, I upload it. ![Image](https://github.com/user-attachments/assets/5a46b90f-98ae-4c3f-82b9-aeaf7ad3ac62) How...
question
low
Critical
2,811,080,443
rust
Tracking issue for release notes of #134090: Stabilize target_feature_11
This issue tracks the release notes text for #134090. ### 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 Th...
T-lang,relnotes,needs-triage,relnotes-tracking-issue
low
Minor
2,811,083,017
rust
type level debuginfo is duplicated across codegen units
<!-- 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 // inner.rs /// Byte order that is selectable at runtime. #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum RunTimeE...
A-debuginfo,T-compiler,C-bug,I-heavy
low
Critical
2,811,092,270
rust
Dropped non-Send incorrectly reported as living, resulting in non-Send Future
This: ```rust struct NonSend(*const ()); impl NonSend { fn noop(&self) {} } fn main() { assert_send(async { let x = NonSend(core::ptr::null()); x.noop(); drop(x); async {}.await; }); } fn assert_send(_: impl Send) {} ``` [Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gis...
C-bug,needs-triage
low
Critical
2,811,092,603
puppeteer
[Feature]: Reducing dependencies
### Feature description In the `@puppeteer/browsers` package, there are some dependencies for unpacking archive files: `extract-zip` for `.zip`, `tar-fs` for `.tar`, and `unbzip2-stream` for `.bz2`. https://github.com/puppeteer/puppeteer/blob/bbf75db85352e245bfc1ee59b5ef06b1eb3cf18b/packages/browsers/src/fileUtil.ts#...
feature
low
Minor
2,811,100,075
ant-design
Menu component in dark mode makes selected parent item background the same color as its text
### Reproduction link [https://ant.design/~demos/menu-demo-horizontal-dark](https://ant.design/~demos/menu-demo-horizontal-dark) ### Steps to reproduce Select a sub-item from the menu. See that the selected parent item background is the same as the text color. ### What is expected? Text color should be contrasting...
🐛 Bug
low
Minor
2,811,102,120
godot
MeshTexture does not render correctly on GPUparticles2D, CPUparticles2D or Polygon2D
### Tested versions - Reproducible in the 4.4 beta. - Reproducible in 4.1.1 stable. Honestly i doubt it ever worked given its relatively niche so its feasible it was never brought up ( seems to be the case from an issue search) ### System information Godot v4.4.beta.mono (d004aed08) - Pop!_OS 22.04 LTS on X11 - X...
enhancement,discussion,topic:2d
low
Critical
2,811,103,718
vscode
Run code button is missing
Type: <b>Feature Request</b> Run code button is missing from top right VS Code version: Code 1.96.0 (138f619c86f1199955d53b4166bef66ef252935c, 2024-12-11T02:29:09.626Z) OS version: Windows_NT x64 10.0.22621 Modes: <!-- generated by issue reporter -->
info-needed
low
Minor
2,811,107,513
flutter
FormatException: Invalid UTF-8 byte (at offset 59) when checking USB connection
### Steps to reproduce Flutter crash report. Please report a bug at https://github.com/flutter/flutter/issues. ## command flutter daemon ## exception FormatException: FormatException: Invalid UTF-8 byte (at offset 59) ``` #0 _Utf8Decoder.convertChunked (dart:convert-patch/convert_patch.dart:1950:7) #1 _...
waiting for customer response,in triage
low
Critical
2,811,108,477
vscode
paste option is disable
Type: <b>Bug</b> i cant able to paste my code VS Code version: Code - Insiders 1.97.0-insider (f5782f528629d4200a964cc652055a4da43a7eb1, 2025-01-24T05:04:36.365Z) OS version: Windows_NT x64 10.0.22631 Modes: <details> <summary>System Info</summary> |Item|Value| |---|---| |CPUs|12th Gen Intel(R) Core(TM) i5-12450H...
info-needed
low
Critical
2,811,112,982
ollama
Error: "not authorized to push"
### What is the issue? Hi, At first i have pull a model using ollama (ollama pull qwen:0.5b) then i wanted to push this model and using this command ```ollama push qwen:0.5b``` but i got this error: pushing fad2a06e4cc7... 100% ▕████████████████████████████████████████████████████████████████████████████████████████...
bug
low
Critical
2,811,114,817
rust
Confusing error message when returning impl Trait where the concrete type contains itself.
### Code ```Rust #[derive(Debug)] enum MyTreeNode { Leaf, VecNode(Vec<Self>), } impl MyTreeNode { pub fn iter(&self) -> impl Iterator<Item = &Self> + '_ { [self] .into_iter() .chain(self.nonrecursive_iter().flat_map(|e| e.iter())) } fn nonrecursive_iter(&self) -> B...
A-diagnostics,T-compiler
low
Critical
2,811,119,437
next.js
Unexpected Rendering Behavior When Using a 'pages' Folder Outside the App Directory in App Router
### Link to the code that reproduces this issue https://github.com/eteen12/Isreal ### To Reproduce ## To reproduce 1. Add a pages directory containing components into the project ( in this example a footer ) ![Image](https://github.com/user-attachments/assets/e614b191-a5eb-450e-a85d-62c13142c7c0) 2. Add the compo...
Navigation
low
Minor
2,811,137,602
ui
[bug]: Doesn't select dates using calendar component
### Describe the bug there is a css property pointer-event:none that's why we could not select any date ### Affected component/components Doesnot select date ### How to reproduce remove the pointer-event:none property ### Codesandbox/StackBlitz link _No response_ ### Logs ```bash ``` ### System Info ```bash...
bug
low
Critical
2,811,146,381
PowerToys
Add a feature to prevent accidental pointer movement during mouse clicks with adjustable offset for intentional dragging
### Description of the new feature / enhancement I have a computer mouse that's very sensitive to movement, and I want to keep that sensitivity. The problem is that when I click the left button, the mouse sometimes slips slightly, resulting in accidental dragging. I’d like a feature that does something simple: when...
Needs-Triage
low
Minor
2,811,147,542
vscode
Display Image Previews in Path Autocomplete
<!-- ⚠️⚠️ 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. --> It would be incredibly helpful if image previews could be displayed alongside their file paths ...
feature-request,javascript
low
Minor
2,811,148,699
rust
ICE: fast reject: `kind mismatch: {type error} 3_u8`
<!-- ICE: Rustc ./a.rs '-Zcrate-attr=feature(generic_const_exprs) -ooutputfile -Zdump-mir-dir=dir' 'thread 'rustc' panicked at /rustc/203e6c127c50c499be53731a39fe36d24f544502/compiler/rustc_type_ir/src/fast_reject.rs:254:22: 'kind mismatch: {type error} 3_u8'', 'thread 'rustc' panicked at /rustc/203e6c127c50c4...
I-ICE,T-compiler,C-bug,F-generic_const_exprs,A-trait-objects
low
Critical
2,811,149,509
flutter
Border dimensions are incorrect when strokeAlign is set to strokeAlignInside or strokeAlignOutside.
### Steps to reproduce When setting `stokeAlign` of `Border` to `strokeAlignInside` or `strokeAlignOutside` the `dimensions` are incorrect. `Border.all(width: 10, strokeAlign: BorderSide.strokeAlignInside).dimensions` returns `EdgeInsets.all(10)` while `EdgeInsets.zero` is expected. `Border.all(width: 10, strokeAlig...
framework,has reproducible steps,team-framework,found in release: 3.27,found in release: 3.29
low
Minor
2,811,154,186
godot
Shader compilation error when defining the MASS property to a Particle ShaderMaterial
### Tested versions Reproducible in: 4.3.stable ### System information Godot v4.3.stable - Pop!_OS 22.04 LTS - X11 - Vulkan (Forward+) - dedicated AMD Radeon RX 6750 XT (RADV NAVI22) - AMD Ryzen 5 2400G with Radeon Vega Graphics (8 Threads) ### Issue description When writing a ShaderMaterial to a GPUParticles3D a ...
bug,good first issue,topic:shaders
low
Critical
2,811,155,648
godot
Crash in Language Server (LSP) while game is running
### Tested versions 4.3.1.rc.custom_build.90f21a35c 4.3.stable ### System information Godot v4.3.1.rc (90f21a35c) - Arch Linux #1 SMP PREEMPT_DYNAMIC Sat, 18 Jan 2025 02:26:57 +0000 - Wayland - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3080 (nvidia; 565.77) - AMD Ryzen 5 5600X 6-Core Processor (12 Threads) #...
bug,topic:gdscript,topic:editor,crash
low
Critical
2,811,155,766
electron
/dev/shm fills up when using net.request
### 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 ...
platform/linux,bug :beetle:,component/net,memory leak,34-x-y,35-x-y
low
Critical
2,811,157,549
godot
Navigation map synchronization error
### Tested versions - Reproductible with Godot 4.3 and all 4.4 rc/beta versions ### System information macOS 15.2 - Apple M3 PRO ### Issue description I'm using navigation on a 2D game When baking navigation and launching game, error log produces the following error message but navigation agents work correctly ```...
needs testing,topic:navigation
low
Critical
2,811,158,117
next.js
`Link` component is buggy when used in app router
### Link to the code that reproduces this issue https://github.com/mehulmpt/nextjs-app-router-link-bug ### To Reproduce 1. Clone the GitHub repository 2. Run `npm run bugcheck` command in your terminal 3. Visit `http://localhost:3000` ### Current vs. Expected behavior Current behavior: The links rightly point t...
Link (next/link)
low
Critical
2,811,164,033
svelte
Clarify status of class:directive
### Describe the bug Currently, the [docs on svelte class directive](https://svelte.dev/docs/svelte/class#The-class:-directive) state: > Unless you’re using an older version of Svelte, consider avoiding `class:`, since the attribute is more powerful and composable. Upon [requesting the `cli` maintainers to work on a...
documentation
low
Critical
2,811,166,655
angular
Provide better type safety for viewChild (and viewChildren)
### Which @angular/* package(s) are relevant/related to the feature request? core ### Description At the moment, it is easy to incorrectly type a `viewChild()` (or `viewChildren()`) signal. For example: ``` readonly myElement = viewChild<HTMLInputElement>('someSelector'); ``` Here I am passing a generic argument, ...
area: core,core: queries
low
Critical
2,811,167,902
tauri
[breaking] Remove v1Compatible
Opening an issue for this because it was planned for v3 but may be pushed back to v4. Ref https://discord.com/channels/616186924390023171/731495028677148753/1332806348664209490 Edit: We should also update the deprecation warnings if we end up pushing it back.
type: breaking change
low
Minor
2,811,176,273
flutter
[Text Selection] Cannot select consecutive emojis when starting from one, and selection may stop unexpectedly with emojis.
### Steps to reproduce To reproduce the issue, please use the sample code from [this GitHub comment](https://github.com/flutter/flutter/issues/162197#issuecomment-2613746878), alongside the flow demonstrated in the attached videos. Tested on iphone 13pro iOS 17.4.1. The issue occurs when the user types a few emojis an...
in triage
low
Critical
2,811,178,258
godot
StyleBox inconsistencies - referred to as both "style_box" and "stylebox"
### Tested versions All ### System information N/A ### Issue description To start I'll show this single line: ```cpp draw_style_box(get_theme_stylebox(SN_STYLEBOX_PLUS), plus_rect); ``` Here you can see in `draw_style_box` the StyleBox is referred to as `style_box` while in `get_theme_stylebox` it is `stylebox`, ...
discussion,topic:gui,topic:codestyle
low
Minor
2,811,182,835
rust
Suggest `{to,from}_ne_bytes` when people use transmute between arrays and integers
### Code ```Rust fn bytes_at_home_1(a: [u8; 4]) -> u32 { unsafe { std::mem::transmute(a) } } fn bytes_at_home_2(x: u32) -> [u8; 4] { unsafe { std::mem::transmute(x) } } ``` ### Current output ```Shell (no warnings) ``` ### Desired output ```text Warning: use the safe alternative instead | | unsafe { st...
A-diagnostics,T-compiler
low
Critical
2,811,193,976
langchain
abatch_as_completed does not respect max_concurrency config the same way that abatch does
### 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,811,195,168
vscode
Co pilote pro
Type: <b>Bug</b> Bonjour , J'utilise co-pilote pro , et j'ai le message comme quoi j'ai atteint le maximum de message et qu'il faut que j'upgrade pour co-pilote pro , sauf que je l'ai deja je comprend pas trop VS Code version: Code 1.96.4 (cd4ee3b1c348a13bafd8f9ad8060705f6d4b9cba, 2025-01-16T00:16:19.038Z) OS versio...
info-needed,*english-please,translation-required-french
low
Critical
2,811,199,286
godot
Embedded Game window stops rendering when editing other nodes in the editor
### Tested versions Differences between Godot 4.3 and the new embedded game window feature in Godot 4.4 ### System information Godot v4.4.beta1 - Ubuntu 22.04.5 LTS 22.04 on X11 - X11 display driver, Multi-window, 2 monitors - OpenGL 3 (Compatibility) - AMD Radeon RX 6600 (navi23, LLVM 15.0.7, DRM 3.57, 6.8.0-51-gen...
bug,platform:linuxbsd,topic:editor,usability,regression
low
Minor
2,811,202,013
vscode
The `cwd` cannot be resolved in a multi folder workspace. Solution: "cwd" : "${Workspacefolder.name}"
<!-- ⚠️⚠️ 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...
info-needed
low
Critical
2,811,202,155
PowerToys
Window Centering Helper
### Description of the new feature / enhancement There is a Window Centering Helper program, add its PowerToys functionality. ### Scenario when this would be used? There is a Window Centering Helper program, add its PowerToys functionality. ### Supporting information _No response_
Needs-Triage
low
Minor
2,811,207,826
react-native
App freezes on startup after adding custom native module
### Description After adding a custom native module to my React Native app, the app freezes on startup and never loads the main screen. I followed the documentation for creating a native module and linked it properly, but after that, the app simply hangs on the splash screen and does not proceed. I’ve tried cleaning ...
Needs: Author Feedback,Needs: Repro
low
Critical
2,811,211,133
pytorch
[Inductor-CPU] `add` is not being fused with templated int8 WoQ GEMM while running LLaMA2
### 🐛 Describe the bug When max-autotune is enabled with Inductor-CPU, and when int8 WoQ GEMM is used with auto-tuning enabled, `add` isn't being fused with it. So, there's an opportunity cost. i.e. For LLaMA, for BF16 dtype, with BF16 templated GEMM, we are even able to fuse `add` & RMSNorm's decomposed ops as epil...
oncall: cpu inductor
low
Critical
2,811,251,234
terminal
Allow opening cmd.exe as service user such as SYSTEM or LOCALSERVICE
### Description of the new feature currently I use `psexec -i -s cmd` or `pxexec -i -u "nt authority\localservice" cmd` to open a cmd as servcie account. But it opens a new cmd window and it will not have some of the customizations availble to the terminal. Such as For example `Ctrl+shift+F` to search. ### Proposed ...
Issue-Feature,Needs-Triage,Needs-Tag-Fix
low
Minor
2,811,254,336
go
cmd/compile: unnecessary bounds check when indexing slice from range
### Go version go1.23 ### Output of `go env` in your module/workspace: ```shell GOARCH=amd64 GOOS=linux ``` ### What did you do? Compile the following: ```go package main import "archive/tar" var src []tar.Header var dst *tar.Header func main() { for i := range src { dst = &src[i] // line 10 } } ``` ### Wh...
NeedsInvestigation,compiler/runtime,BugReport
low
Minor
2,811,269,916
node
`path.win32.isAbsolute` considers relative paths absolute
### Version 22.11.0 ### Platform ```text Linux pc 6.8.0-48-generic #48-Ubuntu SMP PREEMPT_DYNAMIC Fri Sep 27 14:04:52 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux ``` ### Subsystem _No response_ ### What steps will reproduce the bug? ``` require('path').win32.isAbsolute('\\foo') === true ``` ### How often does it re...
path
low
Critical
2,811,278,439
pytorch
AMD MI300A Unified Memory Support
### 🚀 The feature, motivation and pitch I am working on improving performance for LLM workloads on AMD Instinct™ MI300A Accelerator. This APU is equipped with a fully unified-memory architecture not taken advantage by PyTorch at this time. Because both the GPU and CPU share the same physical memory, memcpy ops become...
module: rocm
low
Major
2,811,283,359
flutter
Cannot add Flutter to existing Android app, Gradle fails to resolve dependencies ("module source code" option)
### Steps to reproduce I'm experimenting with Flutter's add-to-app feature. I have [an existing Jetpack Compose app ](https://github.com/kacaleksandra/notes) and I want to add a new FlutterActivity to it. I follow [this guide](https://docs.flutter.dev/add-to-app/android/project-setup), [here is the PR](https://github....
t: gradle,a: existing-apps,in triage
low
Critical
2,811,284,210
go
runtime: binary analysis failed due to fake PC in gosave_systemstack_switch
### Go version go version go 1.22.6 linux/amd64 ### Output of `go env` in your module/workspace: ```shell GO111MODULE='on' GOARCH='amd64' GOBIN='' GOCACHE='/usr1/.cache/go-build' GOENV='/root/.config/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='amd64' GOHOSTOS='linux' GOINSECURE='' GOMODCACHE='/opt/go_wor...
WaitingForInfo,compiler/runtime,BugReport
low
Critical
2,811,284,294
kubernetes
Inconsistent workloads and the pod ready state
### What would you like to be added? k8s version is 1.28.1. The problem handling process is as follows: 1. Use STS to create a pod webswingservice. 2. A CSI plug-in is customized. webswingservice depends on this plug-in. 3. The first startup process is smooth. 4. The node is powered off once after startup. 5. After t...
sig/storage,sig/node,kind/feature,needs-triage
low
Minor
2,811,313,865
vscode
After New Copilot coding doesn't save!
Type: <b>Bug</b> After the Copilot update, whenever I finish coding, save my work, and exit VS Code, the changes are not saved in the actual document but are only recorded in the timeline. As a result, I have to restore my work every time I reopen VS Code. Additionally, there are instances where the saved work in the...
info-needed
low
Critical
2,811,368,324
ollama
Compile ollama failed in debian
### What is the issue? I tried to compile ollama in debian, but it give these information and quit compile. Please help me. Thank you! ``` root@debian:~/ollama# make -j12 GOARCH=amd64 go build -buildmode=pie "-ldflags=-w -s \"-X=github.com/ollama/ollama/version.Version=0.5.7-5-g453e4d0\" " -trimpath -tags "avx" -o...
bug
low
Critical
2,811,375,381
ollama
Improve Documentation for Ollama
Currently, the documentation consists of .md content which is located [here](https://github.com/ollama/ollama/tree/main/docs). I think that the documentation can be greatly improved if it is hosted as a static site using [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/). It uses markdown content for ...
feature request
low
Minor
2,811,377,122
langchain
Can not implement stream in langchain with vllm (qwen2.5)
### 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,811,377,321
kubernetes
NodeUnstageVolume should be called even when stagingPath doesn't exist
### What happened? [pkg/volume/csi/csi_block.go](https://github.com/kubernetes/kubernetes/blob/release-1.32/pkg/volume/csi/csi_block.go#L458) ```go // Call NodeUnstageVolume stagingPath := m.GetStagingPath() if _, err := os.Stat(stagingPath); err != nil { if os.IsNotExist(err) { klog.V(4).Info(log("blockMappe...
kind/bug,sig/storage,needs-triage
low
Critical
2,811,385,412
ant-design
在`startTransition`中使用`message`会产生死循环渲染
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/antd-52252-react18-mqldlr) ### Steps to reproduce - 通过App.useApp() 获取 message - 调用message,然后立刻通过startTransition调用message ### What is expected? message正常工作 ### What is actually ha...
unconfirmed
low
Minor
2,811,388,420
ant-design
Space.Compact does not collapse the border when wrapping a Form.Item
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/registration-antd-5-23-2-forked-7zpwhj?file=%2Findex.html&workspaceId=ws_UJWDJFW6u5eT5bSdmMxLcC) ### Steps to reproduce Look at the borders between inputs middle and input & button ...
unconfirmed
low
Minor
2,811,390,556
rust
Unable to build for aarch64-unknown-linux-musl due to linker error
<!-- 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 // Any general rust binary f...
A-linkage,A-lints,T-compiler,C-discussion,L-linker_messages
low
Critical
2,811,397,885
vscode
VSCode Extensions enable arbitrary remote code execution via exec(). Not sure if this is a bug/vulnerability or a feature.
<!-- ⚠️⚠️ 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...
triage-needed
low
Critical
2,811,408,710
PowerToys
Crop And Lock - Thumbnail Shortcut
### Description of the new feature / enhancement Crop And Lock - Thumbnail shortcut * please add option to zoom in at 1% increments * please add option to make 'the thumbnail', transparent * please add option to make 'the thumbnail', click-through. the user can click whatever is underneath the thumbnail * please ad...
Needs-Triage
low
Minor
2,811,410,017
yt-dlp
[Vimeo] Vimeo subtitles fail with error 403 (CAPTCHA page) due to use of vimeo.com instead of player.vimeo.com
### 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...
cant-reproduce,site-bug
low
Critical
2,811,422,382
godot
Godot 3 project to Godot 4 conversion failed but nothing is displayed to the user
### Tested versions Tested in 4.4.dev7 only. ### System information Godot v4.4.dev7 - Windows 10 (build 19045) - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated GeForce GTX 780M - Intel(R) Core(TM) i7-4700HQ CPU @ 2.40GHz (8 threads) ### Issue description I tried to convert [this project](https://github.co...
bug,topic:editor,needs testing
low
Critical