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,652,466,790
vscode
GetBoundingClientRect zoom adjustments
With https://chromium-review.googlesource.com/c/chromium/src/+/5085708 which got enabled by default since Chromium 128 via https://chromium-review.googlesource.com/c/chromium/src/+/5693338, the rect values from `getBoundingClientRect` calls will be adjusted to the page zoom rather than css zoom values. I have listed t...
debt,engineering
low
Critical
2,652,477,785
PowerToys
Accessibility request
### Description of the new feature / enhancement Simple option to play two sounds: One when your webcam turns on, and the other when it turns off. ### Scenario when this would be used? Just an audio alert for blind users notifying them when their camera is in use/off. ### Supporting information _No response_
Needs-Triage
low
Minor
2,652,512,455
godot
[Regression] ResourceLoader.LoadThreadedRequest(scenePath) stuck at 0.5, infinite loop.
### Tested versions NOTReproducible in: v4.3 stable for Windows Reprodcible in: v4.3 stable for MacOs v4.4.dev4.mono.official [36e6207bb] (Windows and MacOS) For MacOS and Windows ### System information Godot v4.4.dev4.mono - Windows 10.0.19045 - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeFor...
bug,topic:core,topic:dotnet,regression
low
Critical
2,652,518,902
vscode
The editor could not be opened due to an unexpected error: Unable to resolve text model content for resource vscode-notebook-cell-output
Type: <b>Bug</b> I could not know what is the problem that keeps stopping the running on a specific cell. The cell need to run for 100 epochs, but it stops showing any progress in the epoch 0 after many hours of running to stop in the end with an error I cannot see. I updated json setting file, but also no change. ...
bug,notebook
low
Critical
2,652,564,399
PowerToys
Can't Uninstall Older Versions of PowerToys on Windows 11
### Microsoft PowerToys version 0.74.0 and 0.79.0 ### Installation method Microsoft Store ### Running as admin None ### Area(s) with issue? Installer ### Steps to reproduce I recently have been uninstalling apps I don't use to save memory. I found 3 Powertoys apps, which I thought was strange, so I uninstall...
Issue-Bug,Needs-Triage
low
Minor
2,652,637,117
next.js
VSCode debugging error when using Yarn PnP with NextJS 15
### Link to the code that reproduces this issue https://github.com/IsaacAndela/nextjs-yarn-vscode-debug-error ### To Reproduce 1. Create a new NextJS app with Yarn `yarn dlx create-next-app@canary` and answer the default to all questions. 2. This should result in `.pnp.cjs`, `.pnp.loader.mjs` and `.yarn` in the roo...
bug
low
Critical
2,652,650,949
PowerToys
Automatic Do-Not-Disturb During Zoom / Teams Meetings
### Description of the new feature / enhancement Currently, there is not an option in Windows to automatically turn on Do Not Disturb during Zoom and Microsoft Teams conference calls. Emails, chats, notifications during conference calls are very disruptive. With many conference calls throughout the day, it's a paint t...
Needs-Triage
low
Minor
2,652,656,977
rust
Tracking Issue for thread spawn hooks
Feature gate: `#![feature(thread_spawn_hook)]` This is a tracking issue for thread spawn hooks as proposed in https://github.com/rust-lang/rfcs/pull/3642 ### Public API ```rust // std::thread: pub fn add_spawn_hook<F, G>(hook: F) where F: 'static + Send + Sync + Fn(&Thread) -> G, G: 'static + Send + FnOnce(...
T-libs-api,A-thread-locals,C-tracking-issue,A-thread
low
Minor
2,652,664,851
vscode
Unexpected indentation
There is unexpected indentation on the first comment line: ![Image](https://github.com/user-attachments/assets/71bed137-6a5f-442a-8b84-75a277a44405) from https://bsky.app/profile/hailey.at/post/3lahndapjdk2j
bug,editor-autoindent
low
Minor
2,652,686,562
langchain
DOC: Add Detailed Dependency Table to v0.2 Documentation for Better Compatibility
### URL https://python.langchain.com/docs/versions/v0_2/overview/ ### Checklist - [X] I added a very descriptive title to this issue. - [X] I included a link to the documentation page I am referring to (if applicable). ### Issue with current documentation: The current v0.2 LangChain documentation doesn’t include a...
🤖:docs
low
Minor
2,652,710,827
vscode
"rg" is consuming MAX CPU cycles
Type: <b>Bug</b> WIth this latest update, I am experiencing an issue where, after launching VSC and attaching to WSL - a program called "rg" gets started and is consuming > 900% CPU (I have a 14C/20T Intel i7 Part) - this basically "kills" the setup. I manually kill this until a new window is opened, then this fires...
info-needed,performance
low
Critical
2,652,759,982
pytorch
[DDP + Dynamo] Failed to get compiled graphs
### 🐛 Describe the bug There is a popular method of getting compiled graphs using a custom backend. E.g. ``` def my_backend(gm: torch.fx.GraphModule, example_inputs: List[torch.Tensor]): print("graph:") gm.graph.print_tabular() return gm.forward model = nn.Linear(10, 10) model = torch.compi...
oncall: distributed,triaged,oncall: pt2,module: dynamo,pt2d-triage-nov2024
low
Critical
2,652,766,412
rust
private-intra-doc-links incorrectly shows error for public type alias to private wrapper type
```rust pub struct WholeNumber(u32); pub use bar::Integer; mod foo { // This is private pub struct Signed<T>(pub T); } mod bar { /// If you want to do things, try [`Integer::do_thing()`] pub type Integer = crate::foo::Signed<crate::WholeNumber>; impl Integer { pub fn do_thing() {} } }...
T-rustdoc,C-bug,A-intra-doc-links
low
Critical
2,652,780,004
pytorch
Code fails with "Expected curr_block->next == nullptr to be true, but got false"
### 🐛 Describe the bug We use torch compile with `reduce-overhead`, and after upgrading to torch 2.5.1 from 2.4.1 it started to fail with: ``` File "impl.py", line 406, in forward position_ids=self.runtime.compile(_calc_position_ids)( File "runtime.py", line 45, in _fn result = _compiled(*args, **kwa...
needs reproduction,triaged,module: cuda graphs,oncall: pt2
low
Critical
2,652,795,632
langchain
TokenTextSplitter not loading up HF tokenizer from `.from_huggingface_tokenizer()`; using `gpt2` instead
### 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,652,813,963
ui
[bug]: Skeleton Animation not working (animate-pulse)
### Describe the bug Skeleton is not animated, it is mentioned also in this other [issue](https://github.com/shadcn-ui/ui/issues/758). It shows as pulse keyframes are not defined. I fixed it by adding the pulse keyframe in `tailwind.config.ts` ``` keyframes: { pulse: { "50%": { opacity:...
bug
low
Critical
2,652,885,534
TypeScript
slow paste with spinner
I have default paste settings on in insiders, but see a spinner every once in a while, for particular snippets of code https://github.com/user-attachments/assets/59d36cd4-4cd8-4a00-9d60-aff32c7d86ac
Needs Investigation
low
Major
2,652,901,289
ui
[bug]: cli tries to use yarn when I use pnpm
### Describe the bug ```  pnpm dlx shadcn@latest add drawer  ✔ Checking registry. ⠋ Installing dependencies. Something went wrong. Please check the error below for more details. If the problem persists, please open an issue on GitHub. Command failed with exit code 1: yarn add vaul @radix-ui/react-dialog '...
bug
low
Critical
2,652,921,659
PowerToys
Data folder location
### Description of the new feature / enhancement Powertoys is a welcome addition. However it adds 2 folders to the \Documents folder, whether we want them there or not. Can you please make it possible for the user to specify where they are located? ### Scenario when this would be used? It's important to me because o...
Needs-Triage
low
Minor
2,652,946,063
flutter
Cupertino dialog horizontal divider is not showing correctly in dark mode
Regression introduced by #150410 The horizontal divider that separates the body of the Cupertino dialog from the actions is not correctly picking up the right color in dark mode, so it appears darker than it should. The dividers between different actions are showing up correctly. As shown here: ![381261821-fb9ee...
c: regression,framework,a: fidelity,f: cupertino,P2,team-design,triaged-design,f: theming
low
Minor
2,652,952,513
rust
add hint for E0401 when defining a const inside a func
### Code ```Rust struct Foo<const N: usize>; impl<const N: usize> Foo<N> { fn get_n_plus_one() -> usize { const M: usize = N + 1; M } } ``` ### Current output ```Shell Compiling playground v0.0.1 (/playground) error[E0401]: can't use generic parameters from outer item --> src/lib.rs:5:26 ...
A-diagnostics,T-compiler
low
Critical
2,652,954,570
material-ui
[TextField] Cursor jumps to beginning when clicking outside the default line-height area
### Steps to reproduce Link to live example: (required) Go to the [TextField demo page on MUI’s website](https://mui.com/material-ui/react-text-field/). Steps: 1. Type some text into any TextField component. 2. Click above the input area, especially outside the text’s line-height area (e.g., towards the top of t...
external dependency,component: text field,browser: Safari
low
Minor
2,652,979,268
react
Align on HTML attribute/property casing (ie not camelCase)
## Summary <!-- Please provide a CodeSandbox (https://codesandbox.io/s/new), a link to a repository on GitHub, or provide a minimal code example that reproduces the problem. You may provide a screenshot of the application if you think it is relevant to your bug report. Here are some tips for providing a ...
Type: Discussion
low
Critical
2,652,992,898
rust
ICE: `Normalization of 'ty::ConstKind::Expr' is unimplemented`
<!-- ICE: Rustc ./a.rs '-Zcrate-attr=feature(unsized_const_params) --crate-type=lib -ooutputfile -Zdump-mir-dir=dir' 'error: internal compiler error: Unevaluated `ty::Const` in MIR body', 'error: internal compiler error: Unevaluated `ty::Const` in MIR body' File: /tmp/im/a.rs --> auto-reduced (treereduce-rust...
I-ICE,T-compiler,C-bug,A-const-generics,F-generic_const_exprs,S-bug-has-test
low
Critical
2,652,993,816
deno
Deno fmt over big files
eslint.config.mjs package-lock.json  ~/papernet   main ?:1 userland@localhost  18:31:47··❯ deno fmt Error formatting: /home/userland/papernet/views/index.html Syntax error (expected close tag) at file:///home/userland/papernet/views/index.html:32:0 /home/userland/papernet/.github/workflows/go.yml /home...
deno fmt,needs investigation
low
Critical
2,653,037,844
terminal
Pane focus is lost after pane swap
### Windows Terminal version 1.21.2911.0 ### Windows build number 10.0.22631.0 ### Other Software _No response_ ### Steps to reproduce Create a split pane, use keybinds to swap between them. ### Expected Behavior Pane shouldn't lose focus. ### Actual Behavior Pane loses focus, Terminal doesn't respect any in...
Issue-Bug,Area-UserInterface,Product-Terminal
low
Minor
2,653,064,681
go
proposal: testing/quick: deprecate package
### Proposal Details testing/quick has been frozen since #15557, [CL 31910](https://go.dev/cl/31910). It has, accordingly, not received much new development (primarily repo-wide updates). Compared to other frozen packages, there aren't that many users, pkg.go.dev only lists 335 importers https://pkg.go.dev/testing/...
Proposal
low
Major
2,653,082,429
pytorch
Let torch.compiler.allow_in_graph work in more situations
### 🐛 Describe the bug @Chillee and I were discussing what it would take to get `allow_in_graph` to work in more situations. Here is an accounting of some situations which we thought of: * NN module input https://github.com/pytorch/pytorch/issues/138786 * Local functions that close over local variables * Method...
triaged,oncall: pt2,module: dynamo
low
Critical
2,653,138,502
transformers
Gemma2: RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:7 and cuda:0! (when checking argument for argument index in method wrapper_CUDA__index_select)
### System Info - `transformers` version: 4.47.0.dev0 - Platform: Linux-5.15.0-1052-oracle-x86_64-with-glibc2.35 - Python version: 3.10.12 - Huggingface_hub version: 0.25.2 - Safetensors version: 0.4.5 - Accelerate version: 1.1.1 - Accelerate config: not found - PyTorch version (GPU?): 2.5.0+cu124 (True) - ...
bug,Big Model Inference,Accelerate
low
Critical
2,653,139,079
godot
The Image stored in the emission_point_texture of a ParticleProcessMaterial changes id on save when Creating Emission Points From Node
### Tested versions - Reproducible: v4.3.stable.mono.official [77dcf97d8] ### System information Godot v4.3.stable.mono - Windows 10.0.19045 - GLES3 (Compatibility) - NVIDIA GeForce GTX 1060 6GB (NVIDIA; 32.0.15.6109) - Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz (4 Threads) ### Issue description When using ...
bug,topic:editor
low
Minor
2,653,149,847
vscode
Program files /app/out/ folder being deleted nightly.
Type: <b>Bug</b> C:\Program Files\Microsoft VS Code\resources\app\out directory being deleted nightly for about 2 weeks now. After this happens, open VS Code windows are partially functional but new windows will not open, triggering this error instead. A JavaScript error occurred in the main process Uncaught Excepti...
bug,install-update,mitigated
low
Critical
2,653,152,202
tauri
[bug] Logs in the devtools are blocked when application is maximized or set to fullscreen.
### Describe the bug I am building a `fullscreen` and `transparent` application with tauri2 and vue3. when I was debuging, logs in the devtools were blocked like this: https://github.com/user-attachments/assets/2ea7678a-4bea-4221-b753-76da9d90213d Sometimes, warnings show up, which may be relevant. ``` [2...
type: bug,status: needs triage
low
Critical
2,653,157,605
deno
`deno install` with incorrect peer dependencies installs incompatible React versions
Version: Deno 2.0.6 So... I am migrating a legacy React Vite project from Node+Yarn to Deno. When I run `deno install` followed by `deno run -A npm:vite serve`, the page crashes in the browser with a runtime error from React: ``` Error: Invalid hook call. Hooks can only be called inside of the body of a funct...
bug,install
low
Critical
2,653,160,896
PowerToys
Fancy Zones
### Microsoft PowerToys version v0.86.0 ### Installation method PowerToys auto-update ### Running as admin Yes ### Area(s) with issue? FancyZones Editor ### Steps to reproduce Edited shortcuts using keys Win, Shift, Alt, ctrl. No matter the combination, to save key remained grayed out. Was unable to save cha...
Issue-Bug,Needs-Triage
low
Minor
2,653,195,544
rust
rust_2024_incompatible_pat bad suggestion with proc-macro when brace comes from input
When a proc-macro generates code, and the opening brace of a pattern from that code comes from the input, then the compiler thinks that the pattern is a 2024 pattern, and thus enforces the new pattern rules using the local edition, not the edition from the proc-macro. There are two consequences: 1. This is incompatibl...
T-compiler,C-bug,D-invalid-suggestion,D-edition,A-proc-macros,A-edition-2024,L-rust_2024_incompatible_pat,I-edition-triaged
low
Minor
2,653,205,285
deno
Allow `LD_*`, `DYLD_*` env vars to be set when launching a subprocess without full `--allow-run` if they equal the value on startup
When not using full `--allow-run` permissions, we should consider capturing `LD_*`, `DYLD_*` env vars on startup and only require full `--allow-run` permissions when these values don't equal what they were on startup. Ref https://github.com/denoland/deno/issues/26839
suggestion
low
Minor
2,653,205,411
godot
Godot can open the same file multiple times if capitalization changes resulting in confusing behavior
### Tested versions - Reproducible in: 4.3 stable ### System information Godot v4.3.stable - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3070 (NVIDIA; 32.0.15.6603) - AMD Ryzen 5 5600X 6-Core Processor (12 Threads) ### Issue description Godot can open same file multiple times if...
platform:windows,topic:editor,needs testing
low
Minor
2,653,226,675
material-ui
[TextField] Safari scrolls to top on password field focus with "filled" and "standard" variants
### Steps to reproduce Link to live example: (required) https://github.com/user-attachments/assets/90dcfa48-2617-45bd-80f2-4c0dca1a46f3 Steps to Reproduce: 1. Go to the [TextField demo page on MUI’s website](https://mui.com/material-ui/react-text-field/). 2. Scroll to any TextField with type="passw...
bug 🐛,component: text field,browser: Safari
low
Critical
2,653,230,620
flutter
With EnsureSemantics on, Buttons Maintain Focus State on Press
### Steps to reproduce On flutter beta version 3.27.0-0.1.pre 1. Turn on semantics auto rendering for application 2. Have an app with a button that doesn't result in navigation 3. Launch on web 4. Press button ### Expected results Focus state and visual should only be showing on keyboard navigation (i.e. t...
c: regression,framework,platform-web,has reproducible steps,P2,customer: castaway,team-web,triaged-web,found in release: 3.27
low
Critical
2,653,290,096
TypeScript
`types-registry` keeps installing every time VS Code starts even if explicitly disabled
### 🔎 Search Terms VS Code types-registry autoinstall types-registry jsconfig types-registry devcontainers ### 🕗 Version & Regression Information This changed after I updated the Dev Container layout. The new Layout is similar to: ```mermaid classDiagram class Docker { <<Container>> Main Cont...
Needs Investigation
low
Minor
2,653,359,916
langchain
HuggingfaceDatasetLoader escapes strings instead of returning them raw
### 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...
🤖:bug
low
Critical
2,653,390,540
rust
Tracking Issue for `NonZero<u*>::div_ceil`
<!-- Thank you for creating a tracking issue! Tracking issues are for tracking a feature from implementation to stabilization. Make sure to include the relevant RFC for the feature if it has one. If the new feature is small, it may be fine to skip the RFC process. In that case, you can use `issue = "none"` in your i...
T-libs-api,C-tracking-issue
low
Minor
2,653,400,280
PowerToys
have the ability to do a character count with win + q
### Description of the new feature / enhancement Have the ability to do a character count with Win + Q like maybe with the command -- or something. It's an important feature which I'd use. ### Scenario when this would be used? If someone's writing something in a platform where a character count isn't shown, I know i...
Needs-Triage
low
Minor
2,653,429,108
pytorch
Inductor inappropriately tries to fuse scalar views of a CPU tensor into GPU kernels.
### 🐛 Describe the bug ``` import torch @torch.compile def f(a, b): return a + b[0] f(torch.randn(20, device='cuda'), torch.randn(4, device='cpu')) ``` ``` self.launch(*args, **kwargs) ValueError: Pointer argument (at 1) cannot be accessed from Triton (cpu tensor?) ``` cc: @desert ### Versio...
triaged,bug,oncall: pt2,module: inductor
low
Critical
2,653,429,762
pytorch
Making nn.Module generic
### 🐛 Describe the bug I was chatting with the type checking team at Meta and I think we have line of sight to making nn.Module generic. To recap the constraints: * We cannot make nn.Module inherit from Generic because this changes the metaclass and is breaking * We prefer to NOT have a pyi file for module.py ...
module: nn,module: typing,triaged
low
Critical
2,653,437,404
vscode
Issue Reporter should warn against including private or sensitive info
<!-- ⚠️⚠️ 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. --> Since issues created by the Issue Reporter can end u...
bug,issue-reporter
low
Critical
2,653,460,952
TypeScript
NuGet packages not available for pre-release versions of 5.7
### Acknowledgement - [x] I acknowledge that issues using this template may be closed without further explanation at the maintainer's discretion. ### Comment I was looking to test the update Microsoft.TypeScript.MSBuild nuget package v5.7 (any prerelease) buy couldn't find them in nuget.org. Are pre-release versions...
Needs Investigation
low
Minor
2,653,472,150
PowerToys
Mouse Without Borders is not working on my PC; the "New Key" and "Connect" buttons do nothing.
### Microsoft PowerToys version 0.86.0 ### Installation method Microsoft Store ### Running as admin Yes ### Area(s) with issue? Mouse Without Borders ### Steps to reproduce I installed PowerToys through the MS Store on both, my work laptop and PC. Both have version 0.86.0. On the laptop, I can generate keys ...
Issue-Bug,Needs-Triage
low
Major
2,653,483,988
pytorch
Ban all operations on sympy expressions in Inductor
### 🚀 The feature, motivation and pitch It's very easy to write code that works with static shapes but not dynamic ones. It's also easy to write code that mostly works with dynamic shapes (i.e. `a > 0`), but will fail sometimes. I think we should just ban all operations directly on sympy expressions in Inductor, a...
triaged,oncall: pt2,module: dynamic shapes,module: inductor
low
Minor
2,653,596,377
godot
"Cannot access a disposed object" when using an exported node and scene inheritance
### Tested versions - Reproducible in v4.3.stable.mono.official [77dcf97d8] - Reproducible in v4.4.dev4.mono.official [36e6207bb] ### System information M2 macOS - Sonoma 14.6.1 ### Issue description In the attached project, try running `Derived.tscn`. It will output this: ``` E 0:00:00:0674 Godot...
bug,topic:dotnet
low
Critical
2,653,597,540
go
proposal: cmd/cover: support branch coverage
### Proposal Details Currently, the `go test` tool provides line-based coverage reporting. However, branch coverage support is not available, which limits the granularity of test coverage reporting. Adding branch coverage would be beneficial, as it would allow developers to better understand which branches (conditiona...
Proposal
low
Major
2,653,607,032
TypeScript
Add `NonEmptyArray` to `lib` (but **not** `length > 0` narrowing)
### ⚙ Compilation target ES2023 ### ⚙ Library ES2023 ### Missing / Incorrect Definition ```ts type NonEmptyArray<T> = [T, ...T[]] type ReadonlyNonEmptyArray<T> = readonly [T, ...readonly T[]] ``` ### Sample Code ```TypeScript const is_non_empty = <T>(a: ReadonlyArray<T>): a is ReadonlyNonEmptyArray<T> => a.leng...
Suggestion,Awaiting More Feedback
low
Critical
2,653,628,194
pytorch
[TorchScript] Failure if you script a wrapper module and then an interface-implementing submodule.
### 🐛 Describe the bug Repro is below: * We have a wrapper module that calls an implementation submodule, and the implementation submodule is marked as an interface * First we torchscript the wrapper module * Then we torchscript the submodule. Since the first torchscript-ing of the wrapper module saw the submod...
oncall: jit
low
Critical
2,653,686,366
rust
Tracking Issue for `PeekableIterator`
<!-- Thank you for creating a tracking issue! Tracking issues are for tracking a feature from implementation to stabilization. Make sure to include the relevant RFC for the feature if it has one. If the new feature is small, it may be fine to skip the RFC process. In that case, you can use `issue = "none"` in your i...
T-libs-api,C-tracking-issue
low
Minor
2,653,709,341
ant-design
Tag suggestion renderer in Select component with mode="tags"
### What problem does this feature solve? It can be difficult for the user to understand that the suggested value in the dropdown that will turn in to a tag when selected is not a pre-populated value but rather is based on what they typed. While developers have the ability to customize Options, we could use the abil...
help wanted,Inactive
low
Major
2,653,745,796
ui
[bug]: Installing Sidebar component overwrites and causes breaking changes in tailwind.config.js
### Describe the bug I wanted to try out the new **Sidebar** component. So, I ran: ```bash npx shadcn@latest add sidebar ``` But during when `npm` is installing it, it updates the `tailwind.config.js`. However, most of configs I defined myself were retained, but the custom `theme.extend.spacing` has it's p...
bug
low
Critical
2,653,764,362
deno
LSP - Better mapping between specifier and a package.json dep
See https://github.com/denoland/deno/pull/26439#discussion_r1838882482_ Instead of doing what it does, it would be better to actually inspect the package.json to figure out all the possible exports of a package.
bug,lsp
low
Minor
2,653,765,258
go
syscall: TestSyscallAllocations/Syscall failures
``` #!watchflakes default <- pkg == "syscall" && test == "TestSyscallAllocations/Syscall" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.org/b/8731441288535464225)): === RUN TestSyscallAllocations/Syscall syscall_windows_test.go:256: allocs = 5, want 0 ...
NeedsInvestigation,compiler/runtime
low
Critical
2,653,766,596
deno
Refactor lsp to separate service structs from data/state
See https://github.com/denoland/deno/pull/26439#discussion_r1838840927_
refactor,lsp
low
Minor
2,653,782,655
pytorch
DISABLED test_comprehensive_diagonal_copy_cuda_float64 (__main__.TestInductorOpInfoCUDA)
Platforms: inductor This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_comprehensive_diagonal_copy_cuda_float64&suite=TestInductorOpInfoCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32890545407). Ove...
triaged,module: flaky-tests,skipped,oncall: pt2,module: inductor
low
Critical
2,653,783,572
pytorch
DISABLED test_comprehensive_fft_fftshift_cuda_float64 (__main__.TestInductorOpInfoCUDA)
Platforms: inductor This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_comprehensive_fft_fftshift_cuda_float64&suite=TestInductorOpInfoCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32886793920). Over...
triaged,module: flaky-tests,skipped,oncall: pt2,module: inductor
low
Critical
2,653,955,108
go
build: build failure on gotip-linux-arm64_c4ah72-perf_vs_release
``` #!watchflakes default <- builder == "gotip-linux-arm64_c4ah72-perf_vs_release" && repo == "go" && mode == "build" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.org/b/8731450899444144881)): go: downloading github.com/BurntSushi/toml v1.0.0 go: downloading gi...
NeedsInvestigation
medium
Critical
2,653,955,225
go
internal/trace: TestTraceStressStartStop/AllocFree failures
``` #!watchflakes default <- pkg == "internal/trace" && test == "TestTraceStressStartStop/AllocFree" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.org/b/8731426847419479825)): === RUN TestTraceStressStartStop/AllocFree exec.go:213: test timed out while ru...
NeedsInvestigation,compiler/runtime
low
Critical
2,654,041,560
pytorch
C++ standard library functions not found when compiling c10d debug handlers
### 🐛 Describe the bug The following error was obtained when building [this](https://github.com/AnacondaRecipes/pytorch-feedstock/tree/PKG-5908-update-2.5.0) conda recipe: ``` [2009/5841] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/control_plane/Handlers.cpp.o FAILED: caf...
oncall: distributed
low
Critical
2,654,046,032
pytorch
DISABLED test_comprehensive_rsub_cuda_float32 (__main__.TestInductorOpInfoCUDA)
Platforms: inductor This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_comprehensive_rsub_cuda_float32&suite=TestInductorOpInfoCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32895973155). Over the pas...
triaged,module: flaky-tests,skipped,oncall: pt2,module: inductor
low
Critical
2,654,054,043
pytorch
Using @torch.compile, there are slight differences in output when run on different GPUs on the same machine.
Here's my code, And my torch version is, torch 2.2.1+cu121 The same code, when used with torch.compile, produces different outputs on 8 GPUs of the same machine, with the maximum error being **4.7684e-07**. However, when the @torch.compile optimization is not used, the outputs from all eight cards are identical. ...
triaged,module: determinism,oncall: pt2
low
Critical
2,654,084,726
ui
[bug]: Popover's scrollbar does not work in the Dialog component
### Describe the bug Popover's scrollbar does not work in the Dialog component ![1731470786872](https://github.com/user-attachments/assets/880e3a90-7342-4144-831c-4bee2d7de26d) ### Affected component/components Popover and Dialog ### How to reproduce 'use client'; import { zodResolver } from '@hookform/reso...
bug
low
Critical
2,654,105,062
pytorch
Error with fused AdamW
### 🐛 Describe the bug ``` File "/mnt/clusterstorage/workspace/kevin/ml-monorepo/chadfusion/train_fsdp.py", line 363, in fsdp_train scaler.step(opt) File "/usr/local/lib/python3.10/dist-packages/torch/amp/grad_scaler.py", line 443, in step retval = optimizer.step(*args, **kwargs_) File "/usr/loca...
module: optimizer,triaged,module: fsdp
low
Critical
2,654,127,920
godot
Can not change color of path through the editor settings
### Tested versions Issue occurs in 4.3 and seems to work in 4.2 ### System information Godot v4.3.stable.mono - macOS 14.4.1 - Vulkan (Forward+) - integrated Apple M1 Pro - Apple M1 Pro (10 Threads) ### Issue description The editor setting has a path color under 3d gizmo's but it seems to be broken. ...
bug,topic:editor,needs testing,regression,topic:3d
low
Critical
2,654,163,562
TypeScript
Auto-imports from code actions and completions don't match order that "Organize imports" outputs
### 🔎 Search Terms "auto-import", "order", "import", "organize imports" ### 🕗 Version & Regression Information - This is the behavior in every version I tried. ### ⏯ Playground Link _No response_ ### 💻 Code In a simple npm package with just TypeScript 5.6.3 installed, create a TypeScript file with the followi...
Bug
low
Minor
2,654,210,839
rust
Tracking Issue for Generic Constant Arguments MVP
<!-- 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 ...
T-lang,T-compiler,C-tracking-issue,A-const-generics,PG-const-generics,T-types,F-min_generic_const_args
low
Critical
2,654,229,514
rust
ICE: `rust abi shouldn't use on_stack`
<!-- ICE: Rustc ./a.rs '-Zcrate-attr=feature(rust_cold_cc) -Clink-dead-code=true -ooutputfile -Zdump-mir-dir=dir' 'thread 'rustc' panicked at compiler/rustc_ty_utils/src/abi.rs:477:17: 'rust abi shouldn't use on_stack'', 'thread 'rustc' panicked at compiler/rustc_ty_utils/src/abi.rs:477:17: 'rust abi shouldn't...
I-ICE,T-compiler,C-bug,S-bug-has-test,A-ABI,F-rust_cold_cc
low
Critical
2,654,274,318
godot
[4.4 dev 4] RenderingServer.InstanceCreate() with large instance count triggers seg fault
### Tested versions - works very well in 4.4 dev 3 - breaks in 4.4 dev 4 ### System information Windows 10 and 11 - Godot 4.4 dev 4 - Ryzen 5800x3d + GTX 3080ti & Ryzen 7435HS + GTX 4060 ### Issue description Calls made for RenderingServer.InstanceCreate started failing in 4.4 dev4 with the following ex...
bug,topic:rendering,crash,regression
low
Critical
2,654,288,649
rust
Support `ConstArgKind::Path`s for const struct/variant constructors
Requires encoding const ctors in MIR metadata (not currently done for some reason). May affect perf. cc #131081.
C-enhancement,T-compiler,F-min_generic_const_args
low
Minor
2,654,290,389
electron
[Upgrades Follow Up]: re-enable thin LTO on Mac release builds
When trying to reland Node 22 in https://github.com/electron/electron/pull/44597, we discovered that thin LTO was the root cause of several symbols being stripped from the release build only on MacOS. This does not seem to be an existing problem in either Chromium or upstream Node. While we debug this, we do want to l...
component/node-integration,upgrade-follow-up
low
Critical
2,654,290,534
rust
Support `ConstArgKind::Path` for uses of `static` paths
Requires allowing constarg -> valtree lowering outside of ctfe. cc #131081
C-enhancement,T-compiler,F-min_generic_const_args
low
Minor
2,654,369,549
pytorch
[autograd engine && compiled autograd] support for partial backward compilation
### 🚀 The feature, motivation and pitch Hello, in our task, we aim to optimize some specific layers during backpropagation while keeping other layers' backpropagation and the complete forward pass in eager mode. As PyTorch doesn't currently support partial backward compilation directly, we have attempted to achieve...
module: autograd,triaged,oncall: pt2,module: compiled autograd
low
Critical
2,654,449,372
vscode
Failed to run Cucumber tests from launch configuration when break point is set in code
<!-- ⚠️⚠️ 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,654,578,604
rust
Should the ConstArgHasType bound above be included in PrarmEnv (query from param_env_reveal_all_normalized)?
<!-- 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 fn parse_test<const LEN: usize>(path: [&'static str; LEN]) { let target = ["doc"]; if target.iter().eq(&path) { prin...
T-compiler,C-discussion,T-types
low
Critical
2,654,715,577
pytorch
Enable autograd for padded dense forward / backward operators.
### 🚀 The feature, motivation and pitch Hi, I noticed that we already have https://github.com/pytorch/pytorch/pull/125946, which ported fbgemm related jagged tensor operator. Do we have a plan to register its autograd function, like https://github.com/pytorch/FBGEMM/blob/5c980c82d82069702ef5176678c5be6157b5f8b6/fbgem...
module: autograd,triaged,module: nestedtensor,actionable
low
Minor
2,654,728,308
tauri
[feat] [macOS] App focus gain/loss handlers
### Describe the problem I am building a shortcut system for my desktop app, for triggering actions using hotkeys that aren't in any menu. From what I understand, there are two ways to go about this currently: 1. Register keydown js listeners in the webview 1. Register global key listeners on the Rust side using...
type: feature request,platform: macOS
low
Minor
2,654,747,425
deno
Publish deno_cli as a lib crate
Hi, I'd like to embed Deno into my application and have access to module resolution, typescript and the Nodejs stdlib support offered by Deno. Currently, Deno offers the ability to use the `deno_core`, `deno_runtime`, etc crates to build-your-own JavaScript runtime - however this lacks all the work that has gone int...
suggestion,custom runtime
low
Major
2,654,787,159
electron
PDF viewer: open <embed/> shadow DOM to allow customisation of the UI
### 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:,component/pdf-viewer
low
Major
2,654,787,592
PowerToys
Start file path from Explorer directly in the workspace
### Description of the new feature / enhancement I need a folder every morning which is in the same file path. I would find it useful to be able to configure the Explorer in a new workspace so that it starts exactly at this file path. Currently it always fetches the default file path. ### Scenario when this would be ...
Needs-Triage
low
Minor
2,654,800,678
react
Bug: Images with `loading="lazy"` remounted with react are all loaded
<!-- 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. --> React version: 18.3.1 ## Steps To Reproduce Open DevTools Network tab and ...
Status: Unconfirmed
medium
Critical
2,654,819,128
go
x/pkgsite: std's reflect expands with zero subpackages in the directory view
### What is the URL of the page with the issue? https://pkg.go.dev/std ### What is your user agent? Mozilla/5.0 (X11; Linux x86_64; rv:132.0) Gecko/20100101 Firefox/132.0 ### Screenshot ![img-2024-11-13-10-29-54](https://github.com/user-attachments/assets/a790f518-4dc7-47f6-b0f3-c9b32c995149) ### What did you d...
help wanted,pkgsite
low
Minor
2,654,854,941
go
x/build/cmd/coordinator: older dashboard pages omit LUCI builders in detailed views (page 2, x/ repo commits) but don't make it apparent it's WAI
### What did you do? Navigate to https://build.golang.org/?page=1&branch=master. ### What did you see happen? Only a small number of builders are displayed: ![image](https://github.com/user-attachments/assets/7d4eaabb-d1f5-4f00-bf3d-327a6cac215d) ### What did you expect to see? All builders.
Builders,NeedsFix,FixPending,Friction
low
Minor
2,654,856,397
tauri
[feat] Expose `WindowEvent::KeyboardInput` in Rust
### Describe the problem I want to be able to react to key events coming from the application event loop. I am building a shortcut system for my Desktop app, on macOS. I would like to be able to trigger hotkeys, even if the application doesn't have any windows open. This rules out any js key listener solutions, b...
type: feature request
low
Major
2,654,858,615
pytorch
DISABLED test_comprehensive_linalg_vecdot_cuda_float32 (__main__.TestInductorOpInfoCUDA)
Platforms: inductor This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_comprehensive_linalg_vecdot_cuda_float32&suite=TestInductorOpInfoCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32906402916). Ove...
triaged,module: flaky-tests,skipped,oncall: pt2,module: inductor
low
Critical
2,654,904,368
PowerToys
Alt-Tab map leaves remapped keys pressed
### Microsoft PowerToys version 0.85.1 ### Installation method PowerToys auto-update ### Running as admin No ### Area(s) with issue? Keyboard Manager ### Steps to reproduce A while back I had some help mapping Ctrl-D to act like Alt-Tab. I took a little bit, but I got it to work, and it has worked really well....
Issue-Bug,Needs-Triage
low
Minor
2,654,908,312
storybook
[Bug]: Not able to run storybook 8.4.2 tests with vitest, compilation error with react-swc
### Describe the bug I am able to start storybook, and also able to see the coverage with the command `test-storybook --coverage --verbose` but when i run vitest tests with `vitest --project=storybook` I am getting below error ``` [plugin:vite:react-swc] × Expected ';', '}' or <eof> ╭─[/__vitest_test__/__test__/...
bug,addon: test
low
Critical
2,654,957,270
excalidraw
Revert arrow binding when moving single arrow
As of now, there is no way to rebind an arrow other than dragging the point handle, which is frustrating as one needs to manually adjust every single point. It's especially annoying with slight adjustments, which lead to slightly different arrow length / angle, so it needs to be additionally manually repositioned. Inst...
enhancement,UX/UI,Arrow Binding
low
Minor
2,655,029,734
deno
OpenTelemetry epic
- [x] Land initial support for user created traces + exporting with OTLP - [x] Land initial support for exporting `console.log` with OTLP (with associated traces) - [x] Land initial support for user created metrics + exporting with OTLP - [ ] Configure trace sampling through `OTEL_TRACES_SAMPLER` - [ ] Respect `OTE...
feat
low
Critical
2,655,039,375
ollama
AMD Radeon 780M GPU (Pop OS !) System 76
### What is the issue? Hi, I would like to ask your help. I am running Ollama with the following GPU, but it seems that it is not picking up my GPU. Is there any advice ? AMD Ryzen™ 7 7840U processor. When I **run ollama serve**, it gives me this error. Any advice ? Thanks ``` 2024/11/13 17:40:14 routes...
bug,linux,amd,gpu
medium
Critical
2,655,046,727
rust
`//@ {unset-,}{rustc,exec}-env` parsing is a footgun
Apparently ``` //@ rustc-env: RUSTC_BOOTSTRAP=1 ``` is not the same as ``` //@ rustc-env:RUSTC_BOOTSTRAP=1 ``` compiletest will parse the former as an env var called `⌴RUSTC_BOOTSTRAP` (incl. the whitespace).
E-hard,T-bootstrap,C-bug,A-compiletest,E-needs-design
low
Major
2,655,071,593
rust
Exponential time complexity for parser combinator with RPITIT
<!-- 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 [`egglog`](https://github.com/egraphs-good/egglog) parser was recently rewritten from a generated parser to a parser combinator. [One commit](https://github...
I-compiletime,T-compiler,C-bug,E-needs-mcve,F-return_position_impl_trait_in_trait
low
Critical
2,655,089,530
flutter
Mac framework_tests_impeller is 2.08% flaky
<!-- meta-tags: To be used by the automation script only, DO NOT MODIFY. { "name": "Mac framework_tests_impeller" } --> The post-submit test builder `Mac framework_tests_impeller` had a flaky ratio 2.08% for the past (up to) 100 commits, which is above our 2.00% threshold. One recent flaky example for a same commit...
P1,c: flake,team-framework,triaged-framework
medium
Major
2,655,089,612
flutter
Mac_x64 build_tests_1_4 is 2.08% flaky
<!-- meta-tags: To be used by the automation script only, DO NOT MODIFY. { "name": "Mac_x64 build_tests_1_4" } --> The post-submit test builder `Mac_x64 build_tests_1_4` had a flaky ratio 2.08% for the past (up to) 100 commits, which is above our 2.00% threshold. One recent flaky example for a same commit: https://...
P2,c: flake,team-tool
low
Major
2,655,147,835
tauri
[bug] nsis plugins aren't signed
### Describe the bug Nsis plugins inside nsis installer aren't signed with code signing though I enabled code signing. The app was signed, the DLLs and the installer. but the DLLs inside `$PLUGINSDIR` are not signed. as a result AVs flag them as virus immediately. ### Reproduction Download sigcheckGUI https...
type: bug,priority: 1 high,platform: Windows,scope: bundler,status: needs triage
low
Critical
2,655,149,960
ant-design
`Dropdown` with `destroyPopupOnHide` set to `false` does not re-render child items when the parent component updates
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/dropdown-does-not-re-render-child-st2kxf) ### Steps to reproduce - Create a dropdown with `destroyPopupOnHide={false}` and with nested menu items - Make the nested menu item ...
🗣 Discussion,Inactive
low
Critical