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,724,157,105
TypeScript
Design Meeting Notes, 12/6/2024
# Disallow `override` on non-literal computed names in classes https://github.com/microsoft/TypeScript/pull/60691 * For the longest time, computed names in classes with non-literal names were ignored. * But we let you write `override` on there. But we never enforced it. * So this change makes it an error to write `o...
Design Notes
low
Critical
2,724,165,530
next.js
Turbopack inappropriately compiling recursive function in Azure Maps
### Link to the code that reproduces this issue https://github.com/kipprice-mbh/turbo-azure-maps/tree/main ### To Reproduce 1. Set up an account with [Azure Maps](https://azure.microsoft.com/en-us/products/azure-maps/) to get a subscription key 2. Set an environment var named AZURE_SUBSCRIPTION_KEY to the subscript...
bug,Runtime,Turbopack,linear: turbopack
low
Critical
2,724,200,559
angular
Child Form Groups Don't Receive Updated _onCollectionChange() When FormGroupDirective Seeds Parent with Callback
### Which @angular/* package(s) are the source of the bug? forms ### Is this a regression? No ### Description We rely on `_onCollectionChange()` to notify its FormGroupDirective to re-bind its FormControlName directives, and FormGroup is smart enough to propagate its `_onCollectionChange()` callback so that Child ...
area: forms
low
Critical
2,724,203,167
godot
Crash using the clipboard functionality
### Tested versions first seen in v4.3.1.rc [b51be503c] not encountered in 4.3.stable ### System information Fedora 41 - Godot v4.3.1.rc [b51be503c] - Vulkan (Forward+) - dedicated AMD RX 7900XT ### Issue description issue: invocation of the clipboard under wayland causes a crash. expected outcome: selected ite...
bug,platform:linuxbsd,topic:porting,crash,regression
low
Critical
2,724,217,758
tauri
[bug] npm run tauri android build bug unexpected argument 'aarch64' found
### Describe the bug pnpm tauri android build --target aarch64 can build apk only arm64-v8a but, npm run tauri android build -t aarch64 error: unexpected argument 'aarch64' found npm run tauri android build -- --apk --target aarch64 error: unexpected argument 'aarch64' found npm run tauri android buil...
type: bug,status: needs triage
low
Critical
2,724,229,172
tauri
[feat] Drag and drop external web links.
### Describe the problem I'm trying to make an asset management app, and want to download images for user if they drag the link of image from their browser. But the cursor turns into a banned icon when I'm dragging the link into app window. Also, the events are not fired. https://github.com/user-attachments/asset...
type: feature request
low
Minor
2,724,253,148
tauri
[bug] Unable to add files to dmg interface
### Describe the bug The dmg interface now only has application and appicon. How to add additional content? ### Reproduction _No response_ ### Expected behavior _No response_ ### Full `tauri info` output ```text > omg-ff@0.1.0 tauri > tauri info [✔] Environment - OS: Mac OS 15.0.1 x86_64 (X64) ✔ ...
type: feature request,platform: macOS
low
Critical
2,724,259,600
vscode
preview flag not respected for custom editor
Type: <b>Bug</b> in a vscode extension open a file in the hex editor: vscode.commands.executeCommand('vscode.openWith', uri, 'hexEditor.hexedit', {preview: true}); Note that the preview option is ignored (actually, overridden), as indicated by the tab title not being italicised. This might just be a more general c...
bug,api,custom-editors
low
Critical
2,724,264,622
node
—watch cli option prevents Worker execution
### Version v20.17.0 ### Platform ```text Microsoft Windows x64 [Version 10.0.19045.5131] ``` ### Subsystem _No response_ ### What steps will reproduce the bug? // main.js import { Worker } from ‘worker_threads’ const w = new Worker(‘./worker.js’) w.on(‘message’, event => console.log(event...
windows,watch-mode
low
Critical
2,724,265,245
pytorch
RFC: Display Supported Versions in API Documentation#
### 📚 The doc issue We should have an ability to display supported version in API documentation. This will help PyTorch users understand whether an certain API is currently supported and ensure they are using the correct version for their use case. How it might look: | API name | Version | Supported | |-------...
module: docs,triaged,topic: docs
low
Minor
2,724,298,546
react
Bug: Regression with defaultProps on class components
React version: 19.0.0 ## Steps To Reproduce According to the React 19 upgrade guide "Class components will continue to support `defaultProps`" but your code might break or behave differently if you are relying on the prop defaulting to happen on element creation (by the JSX runtime). Consider this example: ...
Status: Unconfirmed
medium
Critical
2,724,317,148
deno
`deno doc` doesn't usefully render functions with single-object arguments
Version: Deno 2.1.2 I've written several methods that accept a single argument filled with options. Unfortunately when `deno doc` renders docs for these methods then `Parameters` doesn't reflect any info defined as otherwise [valid JSDoc syntax](https://jsdoc.app/tags-param) for these types of method arguments: *...
suggestion
low
Minor
2,724,318,886
rust
Revamp `cg_llvm` debuginfo handling to use records
Currently, we use debuginfo driven by intrinsics. We will need to use records instead, see the migration doc released with LLVM 19: https://llvm.org/docs/RemoveDIsDebugInfo.html Some notes: - Most of the functions we want should be exported in the LLVM-C API already, see #134001 and https://github.com/llvm/llvm-proje...
C-cleanup,A-LLVM,A-debuginfo,T-compiler
low
Critical
2,724,320,654
ui
[bug]: nxp shacdn init doesn't work on non-typescript project
### Describe the bug when running `npx shadcn@latest init` on a non-typescript project (javascript only) generated by using vite and selecting javascript for the flavor of react, I receive the error ``` No import alias found in your tsconfig.json file. Visit https://ui.shadcn.com/docs/installation/vite to learn ho...
bug
low
Critical
2,724,322,368
rust
Revamp `cg_llvm` debuginfo handling to use the LLVM-C API
We currently use C++ code for some of our debuginfo stuff with LLVM. We should port it to the C API, so we don't have to continue maintaining irksome C++ bindings. This is the primary header in question: https://github.com/llvm/llvm-project/blob/main/llvm/include/llvm-c/DebugInfo.h
C-cleanup,A-LLVM,A-debuginfo,T-compiler
low
Critical
2,724,343,666
create-react-app
create-react-app installs react@19.0.0 causing peer dependency
Describe the Bug When creating a new React app using npx create-react-app myprog, the installation fails due to dependency resolution issues. Specifically, create-react-app installs react@19.0.0 by default, which conflicts with dependencies like @testing-library/react@13.4.0 that require react@"^18.0.0". This problem ...
needs triage,issue: bug report
high
Critical
2,724,344,368
angular
Improve Reactive Forms Documentation
### Describe the problem that you experienced The documentation on reactive forms is comprehensive, but there was minimal guidance on common pitfalls, such as initializing forms with complex nested structures or debugging runtime errors that could cause confusion for developers, especially those new to Angular or reac...
area: forms,area: docs
low
Critical
2,724,403,331
TypeScript
Error span incorrect when `this` constraint on member function fails
### 🔎 Search Terms - error span - `this: never` - this chain - builder pattern ### 🕗 Version & Regression Information - This is the behavior in every version I tried (including the latest 5.7.2) ### ⏯ Playground Link https://www.typescriptlang.org/play/?ts=5.8.0-dev.20241206#code/PQKhCgAIUhZBTAtgI3gJ0gMwK4DsDGA...
Help Wanted,Possible Improvement
low
Critical
2,724,426,569
neovim
`:buffer \[test\]` does not find buffer on Windows
### Problem As the title, when I use :b to find a buffer with regexp on windows. It doesn't work well. You can use the steps to reproduce the error. The point is it works differently on linux and windows. On linux, It could be find, but on windows, doesn't. May be the bug source is here: [here](https://github.com/n...
bug,platform:windows,bug-vim,completion,cmdline-mode
low
Critical
2,724,432,826
godot
Editor window flicker and game silently restarts while trying to write d3d12.dll in project dir
### Tested versions -4.3.stable & (-.mono) Due to D3D12 being supported from 4.3 earlier versions are probably unaffected ### System information Godot v4.3.stable.mono - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 1060 6GB (NVIDIA; 32.0.15.6603) - Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz (8...
bug,platform:windows,topic:editor
low
Critical
2,724,454,134
ollama
Change /delete endpoint to use POST request
### What is the issue? **Description:** The Ollama API's `/delete` endpoint currently uses a DELETE request with a message body to specify the model to be deleted. This directly conflicts with the HTTP specification, which states that the DELETE method should NOT have a request body. [1](https://developer.mozilla.o...
bug
low
Critical
2,724,479,049
rust
edition 2024 migration of `Command::before_exec` is suboptimal and doesn't compile
I ran `cargo +nightly fix --edition` on this code: ```rust pub fn spawn_child() { let _status = Command::new("some_program") .before_exec(|| { unsafe { // Make the child process its own process group leader if libc::setpgid(0, 0) != 0 { return...
A-lints,T-compiler,C-bug,A-edition-2024,I-edition-triaged
low
Critical
2,724,479,083
godot
Typed dictionary causes godot-cpp compilation error because of not being unable to parse and resolve `typeddictionary::` into correct format
### Tested versions 4.4 dev6 ### System information Windows 11 ### Issue description See: https://github.com/godotengine/godot/actions/runs/12211086323/job/34068068226?pr=100135 Using `TypedDictionary<>()` will lead to failture of godot-cpp compilation. Needs to be fixed as soon as possible. ### Steps to reproduc...
bug,topic:buildsystem,needs testing,topic:gdextension
low
Critical
2,724,485,091
ui
[bug]: Sidebar Build Failed in NextJs Vercel Deployment
### Describe the bug When I tried to use `ui/sidebar` in the production code ``` Checking validity of types ..Failed to compile. ./components/ui/sidebar.tsx:439:7 Type error: Type 'string | ((instance: HTMLDivElement | null) => void) | RefObject<HTMLDivElement> | null' is not assignable to type '((string | ((...
bug
low
Critical
2,724,496,442
godot
Bicubic Lightmap Filtering Fails to Engage Under DX12
### Tested versions Tested in v4.4.dev (47bc374ed), built locally. ### System information Godot v4.4.dev (47bc374ed) - Windows 10.0.19045 - Direct3D 12 (Forward+) - dedicated Radeon RX 5500 XT (Advanced Micro Devices, Inc.; 32.0.11027.1003) - AMD Ryzen 7 5800X 8-Core Processor (16 threads) ### Issue description Wh...
bug,platform:windows,topic:rendering,needs testing,topic:3d
low
Critical
2,724,552,572
transformers
[i18n-<languageCode>] Translating docs to Chinese Translate agents.md into Chinese
Hello, I will translate agents.md to Chinese. doc url : https://github.com/huggingface/transformers/blob/main/docs/source/en/agents.md
WIP
low
Minor
2,724,553,610
next.js
revalidatePath doesn't invalidate route cache for back/forward
### Link to the code that reproduces this issue https://stackblitz.com/edit/stackblitz-starters-cxo2blep?file=app%2Fpage.tsx ### To Reproduce 1. Click [Update] (it sends POST /foo, which updates data.value, and calls revalidatePath). 2. Click [Go to /b page] 3. Click [Go back with history.back()] ### Curr...
bug
low
Minor
2,724,563,844
PowerToys
Workspaces cannot correctly identify the same program installed and running simultaneously in different directories.
### Microsoft PowerToys version 0.86.0 ### Installation method PowerToys auto-update ### Running as admin Yes ### Area(s) with issue? Workspaces ### Steps to reproduce Due to the need to run multiple identical programs simultaneously for stock software (installed in different directories), when these programs ...
Issue-Bug,Needs-Triage,Product-Workspaces
low
Minor
2,724,569,505
electron
Shared libs build option
### Preflight Checklist - [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. - [x] I have searched ...
enhancement :sparkles:
low
Minor
2,724,582,553
pytorch
Unfold
# 📚 The doc issue Currently, only 4-D input tensors (batched image-like tensors) are supported. ### Suggest a potential alternative/fix Even, 3D input tensor are also supported. For example `a = np.array([[[1,2,3,4]]]).astype("float") t = torch.from_numpy(a) output = torch.nn.functional.unfold(t,k...
module: nn,triaged
low
Minor
2,724,589,035
TypeScript
satisfies operator shadows object this with interface this
### 🔍 Search Terms I have been experimenting with the `satisfies` operator which has been pretty great to avoid having to interface anything. Instead, you can pass around the original object literal with all of its properties clearly shown in code completion. But. Recently, I noticed there’s a slight problem. I am b...
Needs More Info
low
Minor
2,724,591,158
deno
Deno LSP periodically (~2 min intervals) stops working when using Effect.TS
Version: Deno 2.1.3 (latest stable) Repro video and GitHub repo here: https://github.com/skoshx/deno-lsp-errors-vanish-bug/blob/main/README.md So basically, Deno LSP breaks `infer` behavior randomly when creating / deleting files. As you can see in the video, after deleting the file, Deno no longer can infer and ...
bug,lsp
low
Critical
2,724,594,627
pytorch
torch.nn.functional.normalize get nan
### 🐛 Describe the bug when i run this code: <img width="728" alt="image" src="https://github.com/user-attachments/assets/2e839b7d-62f3-47ca-95f0-7c710e39ed79"> i found p_reps[4:,] is nan as : <img width="517" alt="image" src="https://github.com/user-attachments/assets/6efb9dbc-65d4-43af-9165-949596b8850c"> ...
needs reproduction,module: nn,triaged
low
Critical
2,724,611,446
vscode
Inconsistent scroll speed in Jupyter Notebooks, different for text/code vs plots/tables
Does this issue occur when all extensions are disabled?: Yes - VS Code Version: 1.95.3 - OS Version: Windows 11 Steps to Reproduce: 1. Have cells with both text/code and plots(plotly or matplotlib)/tables (pandas) 2. Scroll through cells as fast as you can, notice how it slows down when scrolling over plots/tables. ...
bug,notebook-output
low
Major
2,724,652,199
transformers
FileNotFoundError: Couldn't find a module script at /home/tooko/transformers-course/glue/glue.py.
### Model description i run the example of hugging face NLP course(https://huggingface.co/learn/nlp-course/chapter3/4?fw=pt#the-training-loop) my env at Vmware-ubuntu -vscode,evaluate Version is 0.4.3 . i always encounter this error: import evaluate metric = evaluate.load("glue", "mrpc") #此句依旧是出现FileNotFoundErro...
New model
low
Critical
2,724,656,568
PowerToys
Keep the current window active when using Advanced Paste, similar to the windows built-in clipboard management software.
### Description of the new feature / enhancement ![Image](https://github.com/user-attachments/assets/cfe03c38-b018-4e1e-b223-e5b15eb3bc06) the gif demonstrates the operation of the windows built-in clipboard management software in a text editor. when I type in clipboard management software, the text editor window is s...
Needs-Triage,Product-Advanced Paste
low
Minor
2,724,659,873
vscode
source control: setting to add or change the default git commit command to run an alias
<!-- ⚠️⚠️ 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. --> [NO_TRAIN]:: Say I have a custom git commit alias t...
feature-request,git
low
Minor
2,724,677,094
transformers
resizing token embeddings causes output embedding to be reinitialized in `post_init` when `tie_word_embedding` is False
### System Info - `transformers` version: 4.46.3 - Platform: Linux-6.6.20-aufs-1-x86_64-with-glibc2.36 - Python version: 3.11.2 - Huggingface_hub version: 0.26.1 - Safetensors version: 0.4.5 - Accelerate version: 1.0.1 - Accelerate config: not found - PyTorch version (GPU?): 2.5.1+cu124 (True) - Tensorflow ...
Good Second Issue,bug,fixme
low
Major
2,724,680,356
TypeScript
[exactOptionalPropertyTypes] Unexpected 'undefined' arises in error message
### 🔎 Search Terms "not assignable", "never", "undefined", "exactOptionalPropertyTypes" ### 🕗 Version & Regression Information **4.3.5** ``'undefined'`` error instead of ``'never'`` ; the value ``undefined`` is considered valid **4.4.4**, **5.0.4** Expected behavior **5.1.6**, **5.7.2** ``'undefined'`` error inste...
Bug,Help Wanted
low
Critical
2,724,689,011
tauri
[bug] Window can't focus after right-click on an inactive window.
### Describe the bug 1. right click an inactive tauri-app window, and the context menu will show 2. click outside of the context menu, and the context menu will disappear 3. the window can not gain focus any more unless it blur and focus again: no hover style, input caret not show... ### Reproduction the initial...
type: bug,platform: macOS,status: needs triage
low
Critical
2,724,695,594
tauri
[bug] AppImage Bundles Need an exclusion mechanic for standalone sidecar binaries
### Describe the bug I've a project which links a nuitka standalone binary in and uses it as a sidecar. In development builds and deb releases, this works awesome. However, AppImages modify the binary in a way nuitka doesn't need or expect which breaks it completely. Here is a diff of the original binary and the o...
type: bug,status: upstream,platform: Linux,status: needs triage
low
Critical
2,724,695,831
godot
Profiler running scripts vanishing
### Tested versions 4.4dev6 ### System information Godot v4.4.dev6 - Windows 10.0.26100 - Multi-window, 2 monitors - Vulkan (Forward+) - dedicated AMD Radeon RX 7900 XTX (Advanced Micro Devices, Inc.; 32.0.12033.1030) - AMD Ryzen 7 3800X 8-Core Processor (16 threads) ### Issue description Profiler is removing runn...
bug,topic:editor,needs testing
low
Minor
2,724,697,725
tauri
[bug] tauri mobile iOS Xcode: build script fails to run
### Describe the bug follow office tutorial create ios app failed with macOS 14.1 (Sanoma) and XCode (15.4). Executing the build script inside xcode throws "Command PhaseScriptExecution failed with a nonzero exit code". Is this an xcode or tauri bug? ### Reproduction following the tutorial: https://v2.ta...
type: bug,status: needs triage
low
Critical
2,724,717,407
go
proposal: strconv: add AppendComplex
### Proposal Details I propose adding the AppendComplex function to complete the Append family with the same functions provided by the Format and Parse families for the bool, int, unit, float, and complex types.
Proposal
low
Minor
2,724,719,832
node
Minimum waiting time for PRs with recently pushed commits
## Problem There are guidelines regarding waiting time in PRs: https://github.com/nodejs/node/blob/c1ccade02f29fd5585601bd496d4fb615a55b682/doc/contributing/pull-requests.md?plain=1#L421-L432 https://github.com/nodejs/node/blob/c1ccade02f29fd5585601bd496d4fb615a55b682/doc/contributing/collaborator-guide.md?plain=1...
meta
low
Major
2,724,728,260
rust
Tracking issue for release notes of #131558: Lint on combining `#[no_mangle]` and `#[export_name]`
This issue tracks the release notes text for #131558. ### Steps - [x] 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...
A-lints,T-lang,T-compiler,relnotes,relnotes-tracking-issue,L-unused_attributes
low
Minor
2,724,734,085
godot
Godot texture masking (mask channels)
### Tested versions 4.3 ### System information Godot v4.3.stable (77dcf97d8) - Freedesktop SDK 23.08 (Flatpak runtime) - X11 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 2060 SUPER (nvidia) - Intel(R) Core(TM) i5-9400F CPU @ 2.90GHz (6 Threads) ### Issue description GLTF model can have one material (surface)...
needs testing,topic:import
medium
Major
2,724,740,200
pytorch
Improve typing of args and kwargs with ParamSpec
### 🚀 The feature, motivation and pitch Large portions of the codebase type `*args : Any` and `**kwargs: Any,` when we should be using `typing_extensions.ParamSpec` with `P.args` and `P.kwargs` to reduce erasure of the args being passed into other functions / methods. We also use TypeVars to preserve the return value...
good first issue,module: typing,triaged,better-engineering
low
Major
2,724,758,237
next.js
Vercel local build for NextJS and prebuilt deployment throws error with styled-jsx
### Link to the code that reproduces this issue https://github.com/nikitimi/examiner-monorepo ### To Reproduce 1. Set-up a monorepo using `pnpm`. 2. create catalog with `codemode pnpm/catalog`. 3. create-next-app inside monorepo's packages. 4. create `pnpm-workspace.yaml`. 5. include catalogs in `pnpm-workspace....
bug,Output (export/standalone)
low
Critical
2,724,760,834
react
[React 19] [prerender] missing nonce option and missing documentation about aborting server rendering
## Summary ### Nonce The nonce option is not included, see [prerenderToNodeStream parameters](https://react.dev/reference/react-dom/static/prerenderToNodeStream#parameters) and [renderToPipeableStream parameters](https://react.dev/reference/react-dom/server/renderToPipeableStream#parameters). ### Documentation...
React 19
medium
Minor
2,724,767,725
godot
Shader editor opening when clicking on node
### Tested versions 4.4 dev5 and all godot 4 versions ### System information Shader editor opening when clicking on node ### Issue description Not sure if this is a bug or it's supposed to happen, but it can be annoying sometimes. When clicking on a mesh that has a shaderMaterial applied to it, and the material sl...
bug,topic:editor,topic:shaders
low
Critical
2,724,776,423
react
[React 19] Controlled checkboxes are reset by form submission and form.reset()
## Summary After a form is submitted with an `action`, if one of the form's fields is a checkbox or radio input controlled by its `checked` prop, that element is reset as if it were uncontrolled. The same happens when the `reset()` method is called on the form. (Expected behavior: those fields are not reset.) ```...
React 19
medium
Minor
2,724,786,887
flutter
RenderParagraph reports wrong caret offset and height for inline widgets
`RenderParagraph` has methods to calculate the offset and height for a caret at a given text position. Both of these values are wrong when sitting next to an inline widget. **Repro:** See provided code. **Expected results:** The caret y-value and height is the same as any other text position on the same line. ...
framework,dependency: skia,has reproducible steps,P2,team-framework,triaged-framework,found in release: 3.24,found in release: 3.27
low
Minor
2,724,794,507
opencv
cv2.normalize with NORM_MINMAX produces small values below set minimum on float32
### System Information OpenCV python version: 4.10.0 Operating System / Platform: macOS 15.1.1 arm64 M2 Python version: 3.9.6 (/usr/bin/python3 provided by macOS) ### Detailed description The following code shows unexpected small negative numbers when trying to normalize an image between 0 and 1 while a co...
bug,category: core,confirmed
medium
Critical
2,724,796,900
flutter
TextSpan doesn't return WidgetSpan at position
`InlineSpan` has a method called `getSpanForPosition()`: https://api.flutter.dev/flutter/painting/InlineSpan/getSpanForPosition.html This method says it "Returns the [InlineSpan](https://api.flutter.dev/flutter/painting/InlineSpan-class.html) that contains the given position in the text." However, if you pass a p...
framework,a: typography,has reproducible steps,P2,team-framework,triaged-framework,found in release: 3.24,found in release: 3.27
low
Minor
2,724,805,512
godot
Strange culling issue/ mesh appears inside out
### Tested versions 4.4 dev6 ### System information Godot v4.4.dev6 - Windows 10.0.22631 - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 4060 (NVIDIA; 32.0.15.6614) - 12th Gen Intel(R) Core(TM) i5-12400F (12 threads) ### Issue description I've been racking my brains regarding a strange...
bug,needs testing,topic:animation,topic:3d
low
Critical
2,724,814,990
flutter
[Impeller] Visual glitches with image and text rendering on some Android devices with Flutter 3.24.5
### Steps to reproduce 1. Use [this](https://github.com/immich-app/immich/releases/download/v1.122.1/app-release.apk) apk ([source code](https://github.com/immich-app/immich/tree/v1.122.1/mobile)) 2. After opening the app, double tap the spinning logo to sign in to the Immich demo server 3. While browsing images, ...
e: device-specific,platform-android,engine,c: rendering,P1,team-engine,triaged-engine
medium
Critical
2,724,825,558
pytorch
Better fusion on triton templates
### 🚀 The feature, motivation and pitch Hi PyTorch Team, I'm optimizing a gather-compute-scatter pattern and would like to fuse gather and scatter operations into `matmul` Triton templates. My current implementation performs two gathers (for `input` and `weight`) and a scatter-add operation into `output`, with som...
triaged,oncall: pt2,module: inductor
low
Critical
2,724,832,761
vscode
Code are constantly freezes
Type: <b>Bug</b> When I'm trying to type in the code area itself and any popups (Auto complete, Copilot, code line information) will stop updating for a few seconds and is constantly happening. Scrolling will partially show the top and bottom of the area until all of it unfreezes again. This started happening with 1....
bug,editor-edit-context
low
Critical
2,724,837,450
storybook
[Bug]: Svelte 5 decorator giving type error
### Describe the bug The decorator option gives a type error on the imported component: `Svelte: Type Component<Props, {}, ''> has no properties in common with type SvelteStoryResult<Component<Props, {}, ''>>` ### Reproduction link https://stackblitz.com/edit/github-h1zsrmcf?file=src%2Fstories%2FButton.stories.ts #...
bug,svelte
low
Critical
2,724,838,439
pytorch
Fusion heuristic
### 🐛 Describe the bug Hi PyTorch Team, I'm encountering a potential inconsistency in `torch.compile` where the fusion of operations depends on the order of the operators. Specifically, I noticed that two equivalent PyTorch programs (`test1` and `test2`) produce different levels of fusion when compiled. In an...
triaged,oncall: pt2,module: inductor
low
Critical
2,724,844,529
pytorch
Multidimensional Tiling with Reduction
### 🐛 Describe the bug Hi PyTorch Team, I found that setting `torch._inductor.config.triton.prefer_nd_tiling=True` significantly improves my program's performance (up to 5x speedup!). However, this configuration works well when there are no reduction operations. If a reduction is present, tiling fails to occur whe...
triaged,oncall: pt2,module: inductor
low
Critical
2,724,865,069
rust
Unsafe Loop when using mem::transmute & Unpreventable Due to a Macro
### Code ```Rust #[macro_export] macro_rules! vpr_as_m128i { ($n64:expr, $idx:expr) => { unsafe { std::mem::transmute::<u128, std::arch::x86_64::__m128i>($[$idx as usize]) } } } ``` ### Current output ```Shell // With 'Unsafe' Keyword unnecessary `unsafe` block `#[warn(unused_unsa...
A-lints,T-compiler,S-needs-repro,S-needs-info
low
Critical
2,724,872,329
vscode
Bring detached tabs into focus when any other window from that project comes into focus.
<!-- ⚠️⚠️ 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. --> When clicking the window, or taskbar of a detached w...
feature-request,workbench-auxwindow
low
Minor
2,724,882,826
next.js
Bug: adsbygoogle.push() error: Only one 'enable_page_level_ads' allowed per page in Next.js v14
### Link to the code that reproduces this issue https://codesandbox.io/p/devbox/sleepy-yalow-h3d3n3 ### To Reproduce 1. Setup a Next.js v14 Project: 2. Initialize a new Next.js project or use an existing one running on version 14. 3. Create the GoogleAdsense Component: 4. Add the GoogleAdsense.tsx component in th...
bug,Script (next/script)
low
Critical
2,724,888,505
neovim
`executable()` is slow on WSL
### Problem Neovim's `vim._defaults.lua` executes a call to `executable()` to check for the presence of `rg` and sets it as `'grepprg'`. When `rg` is not found, this process is slow and introduces unnecessary overhead during startup. Users do not expect such a heavy check in the default configuration. This `executabl...
bug,performance,defaults,platform:wsl
medium
Major
2,724,913,065
create-react-app
Is there anyway to improve create-react-app performance?
Lately, the performance of my React application has been really slow. I want to use Vite.js to improve the performance, but I don't like having additional files. Is there a way to improve the performance of a Create React App project without switching
needs triage
low
Major
2,724,935,659
ollama
Structured generation cannot handle self referencing (recursion)
### What is the issue? Ollama structured genereation cannot handle self referencing recursion ```py import json from pydantic import BaseModel, Field from typing import Optional class Dossier(BaseModel): """Build a profile for the user""" name: str = Field(..., description="The name of the user") ...
bug
low
Critical
2,724,936,344
pytorch
Proposal for Official Cross-Platform Support for 3D Gaussian Splatting
### 🚀 The feature, motivation and pitch 3D Gaussian Splatting is widely applied in the fields of computer vision and computer graphics due to its efficiency and flexibility. However, the currently popular implementations primarily rely on NVIDIA’s CUDA, which limits their usability on other platforms, such as MacBook...
module: nn,triaged,needs research
low
Minor
2,724,944,236
pytorch
torch.compile 路径处理错误导致 C++ 编译失败
### 🐛 Describe the bug torch.compile自己创建的临时文件自己找不到路径。windows10 自己生成一个\t....什么的路径,然后转义字符导致路径出问题,希望修复一下,然后自己生成了一个随机的2个字符的文件夹,gcc路径里又跟文件名连在一起,又不加斜杠分隔符。 import torch import os # os.environ['TORCH_LOGS'] = '+dynamo' # os.environ['TORCHDYNAMO_VERBOSE'] = '1' import tempfile # tempfile.tempdir = r'C:\\temp\\lem...
module: windows,triaged,oncall: pt2
low
Critical
2,724,961,769
godot
[Tracker] CSG issues
### Tested versions - Reproducible in Master https://github.com/godotengine/godot/commit/aa8d9b83f66488dbb2c9c918e9016ef80f821fb4 - Not reproducible in 4.3 ### System information Windows 11, Nvidia 4000 series ### Issue description The 4.4 CSG update is crucial for projects that need help building 3D design tools ...
tracker,topic:3d
low
Critical
2,724,965,232
react
Bug: React class is too slower then react hooks
React version:18.2.66 ## Steps To Reproduce I write this code to test react hooks and react class for test performance, but i find react class is too slower then react hooks. ```tsx export let TestHook = () => { const _this = useRef({} as any).current; if (!_this.inited) { _this.states = new Ar...
Status: Unconfirmed
medium
Critical
2,724,971,004
PowerToys
Key mapping issue
### Microsoft PowerToys version 0.86.0 ### Installation method Microsoft Store ### Running as admin Yes ### Area(s) with issue? Keyboard Manager ### Steps to reproduce Whatever keys I have mapped don't work until the PowerToys are in focus. It means when I'm in the PowerToys app, then only keys work properly. ...
Issue-Bug,Product-Keyboard Shortcut Manager,Needs-Triage,Needs-Team-Response
low
Major
2,724,972,052
yt-dlp
Support --audio-format m4b
### 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 requesting a feature unrelated to a specific site - [X] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#readme) - [X] I've ver...
enhancement,triage
low
Critical
2,725,006,879
godot
RichTextLabel (RTL): Adding text with add_text() does not update the .text property
### Tested versions v4.4.dev5.official [9e6098432] v4.4.dev6.official [1f47e4c4e] ### System information Godot v4.4.dev5 - Windows 10 NVIDIA GeForce RTX 4060 Ti ### Issue description Text added with add_text() is not added to the .text property of the RichRextLabel. ### Steps to reproduce 1. Create an RTL instan...
discussion,documentation,topic:gui
low
Major
2,725,066,692
PowerToys
창 이동
### Microsoft PowerToys version 0.86.0 ### Installation method Microsoft Store ### Running as admin None ### Area(s) with issue? FancyZones ### Steps to reproduce 주식차트창에서 일부 차트만 따로 빼서 지정레이아웃으로 옮길때 쉬프트키를 누르고 마우스커서로 이동을 해도 레이아웃 지정칸영역이 활성화가 안됩니다. 스샷은 첨부가 어렵고 자세한 내용은 위의 설명 그대로입니다. ### ✔️ Expected Behavior _No re...
Issue-Bug,FancyZones-Dragging&UI,Product-FancyZones,Needs-Triage
low
Minor
2,725,066,813
go
go/parser: (*ast.File).Decls is empty after bailout
Currently when `parser.ParseFile` is executed without `parser.AllErrors` the parsing is stopped, but the `(*ast.File).Decls` field is not populated with the parsed (valid and invalid) declarations: Reproducer: ```go func TestEarlyBailout(t *testing.T) { const src = `package test func test() { validCode() }...
NeedsDecision
low
Critical
2,725,067,923
go
go/parser: scanner errors do not cause a bailout
While investigating #70725, i noticed that, errors from the scanner are passed directly to `p.errors`: https://github.com/golang/go/blob/8c3e391573403cf1cf85b3256e99d0c0b7d79b3a/src/go/parser/parser.go#L69-L71 Per the docs i would assume that the parsing should stop after 10 error (including scanner errors): h...
NeedsInvestigation
low
Critical
2,725,101,810
PowerToys
PowerToys Run doesn't reindex unless closed and reopened
### Microsoft PowerToys version 0.86.0 ### Installation method PowerToys auto-update ### Running as admin No ### Area(s) with issue? PowerToys Run ### Steps to reproduce I'm using Windows 11 latest version and PowerToys latest version. I forgot how I installed PowerToys and if it's running as admin or not, it'...
Issue-Bug,Product-PowerToys Run,Needs-Triage
low
Minor
2,725,105,870
PowerToys
双屏下,键盘管理器中重新映射键盘键失效
### Microsoft PowerToys version 0.86.0 ### Installation method PowerToys auto-update ### Running as admin Yes ### Area(s) with issue? Keyboard Manager ### Steps to reproduce Under dual displays, remapping keyboard keys in the keyboard manager is ineffective and no longer works.There is no problem with a single...
Issue-Bug,Product-Keyboard Shortcut Manager,Needs-Triage
low
Minor
2,725,167,461
PowerToys
Left ctrl <-> alt keys remapping interferes with getting Polish-specific letters
### Microsoft PowerToys version 0.86 ### Installation method WinGet ### Running as admin Yes ### Area(s) with issue? Keyboard Manager ### Steps to reproduce Switch LEFT CTRL with LEFT ALT and vice versa ### ✔️ Expected Behavior LEFT ALT key used with C, V, X etc. will work as LEFT CTRL before change. LEFT CT...
Issue-Bug,Product-Keyboard Shortcut Manager,Needs-Triage
low
Minor
2,725,211,607
next.js
`The Next.js plugin was not detected` reporting when using flat config
### Link to the code that reproduces this issue https://github.com/mrskiro/next-cannot-find-plugin-in-flat ### To Reproduce 1. npm install 2. npm run lint ### Current vs. Expected behavior When running next lint, it retrieves the ESLint configuration file and checks whether the Next.js plugin is being used. ht...
Linting,linear: next
low
Major
2,725,226,414
godot
UV Map corruption on GLB import
### Tested versions Godot 4.3 ### System information Forward+, Windows 10, I3 4190 ### Issue description When importing GLB models into Godot, textures seem stretched or corrupted. Model in Blender(imported GLB) ![Image](https://github.com/user-attachments/assets/62092cac-6c9a-4aff-97e9-32fb554169c1) Model in G...
bug,topic:import
low
Minor
2,725,249,961
pytorch
torch.is_vulkan_available() false in windows
### 🐛 Describe the bug Hi, I am trying to load a torch.nn.Module to a vulkan device. I have NVIDIA GeForce RTX 4080 in windows, I installed and followed all the instroction from https://pytorch.org/tutorials/prototype/vulkan_workflow.html the installation looks good and the vulkan SDK recognized my driver but i c...
triaged,module: vulkan
low
Critical
2,725,265,879
react
[Compiler Bug]: server components built externally by the compiler error when rendered in app
### 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,Component: Optimizing Compiler
low
Critical
2,725,286,330
PowerToys
Enhance Screen Ruler with options and Real Ruler
### Description of the new feature / enhancement 1. Allow to choose other units, other than pixels, for the measurements (cm, mm, inches, etc) 2. Allow free choice of endpoints 3. Allow to show a movable real ruler on screen 3.1 Optional units (cm, in, etc) 3.2 Can be rotated or vertical or horizontal ### Scena...
Idea-Enhancement,Product-Screen Ruler
low
Minor
2,725,290,648
node
Add support to print help/usage of util.parseArgs
### What is the problem this feature will solve? An almost ubiquitous practice of writing a CLI is including a help command in the CLI itself. Currently anyone using `util.parseArgs` needs to write their own help command. This, in my opinion, makes parseArgs incomplete. ### What is the feature you are proposing to so...
feature request
low
Minor
2,725,308,016
godot
Returning untyped arrays and dictionaries is not caught by static checking
### Tested versions - Reproducible in v4.4.dev (current master) ### System information Godot v4.4.dev (517ec7cdb) - Arch Linux #1 SMP PREEMPT_DYNAMIC Fri, 22 Nov 2024 16:04:27 +0000 on Wayland - X11 display driver, Multi-window, 1 monitor - Vulkan (Forward+) - dedicated Quadro T2000 (nvidia; 565.57.01) - Intel(R) Co...
bug,discussion,topic:gdscript
low
Critical
2,725,314,027
godot
ScrollContainer focus StyleBox is not clipped by parent
### Tested versions v4.4.dev6.official [1f47e4c4e] ### System information Fedora Linux 40 (KDE Plasma) on Wayland - X11 display driver, Multi-window ### Issue description ![Image](https://github.com/user-attachments/assets/14590874-4426-4de5-919b-caab8b9a6239) PR https://github.com/godotengine/godot/pull/97521 ad...
bug,topic:gui
low
Minor
2,725,326,484
ollama
Support loading models from multiple locations
Model files adds up real fast, and my internal disk is near full after pulling a few 72b models. It would be great if `OLLAMA_MODELS` can be a colon separated string with multiple paths. Then the `pull` and `run` command should automatically decide which folder to put new models to and allow overwritting with a switch.
feature request
low
Minor
2,725,333,804
ui
[feat]: nested menus in combobox
### Feature description I believe many times that we’re looking to implement a combobox, we also need that combobox to support nested dropdowns in case the user prefers to use their mouse or keyboard instead of typing, and also to limit the size of the combobox (can’t have a combobox that is 50 rows long for example...
area: request
low
Minor
2,725,362,370
vscode
clicking "Install formatter" points you to the Python extension
Hi, If you search for autopep8 and install this formatter it will work. I think this was solved in a unfortunate way, because people who just had the Python extension installed, suddenly didn't have a working formatting function anymore because it was removed from the Python extension. Furthermore, clicking "Ins...
bug,notebook-format
low
Major
2,725,382,351
vscode
Enhancing Debugging Experience: Adding Docstring and Type Hint Support to Debug Console
<!-- **PLEASE** look for preexisting feature requests before opening a new one as a 👍 on a preexisting issue is more important than opening a new issue or leaving a comment. --> The docstring and type hint functionality in the editor works well. However, there is no equivalent feature available in the debug console...
feature-request
low
Critical
2,725,382,626
langchain
ReAct agent fail to correctly use multiple custom tools
### 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,725,407,802
vscode
2024 Issue/PR Grooming - review, categorization, assignment
The number of issues that we receive every months across all our repositories is large enough so that despite our best efforts to triage and close issues we fall behind as soon as we carve out time for some focussed, uninterrupted development time. Now it's the time to focus on housekeeping and bring our issue database...
plan-item
low
Critical
2,725,410,501
svelte
Local styles aren't scoped when nested
### Describe the bug Say I have an element in a component that needs to depend on its parent's state. I might write something like this: ```svelte <div class="tint"></div> <style> :global(*):hover > .tint { opacity: 0.08; } </style> ``` Now let's say I want to also account for focus. To prevent re...
bug,css
low
Critical
2,725,456,946
go
x/pkgsite: multiple invalid HTML
### What is the URL of the page with the issue? ~~~ view-source:https://pkg.go.dev/41.neocities.org/text ~~~ ### What is your user agent? Firefox ### Screenshot > ![invalid](https://github.com/user-attachments/assets/9388bece-958a-4034-add2-dcf65de5624c) ### What did you see happen? first is ...
help wanted,pkgsite
medium
Major
2,725,465,945
flutter
Green line on right side of video: video_player, only when building on Mac M3 Pro .
### Steps to reproduce 1. Build APK on Mac M3 Pro (Works fine on windows) 3. Run on Android Devices (Samsung S21 FE/ any other android device) ### Expected results No green bars anywhere ### Actual results Green Bars at the right of the video (As video orientation is portrait) ![WhatsApp Image 2024-12...
platform-android,waiting for customer response,platform-mac,p: video_player,package,e: OS-version specific,team-android,fyi-tool
low
Major
2,725,470,921
flutter
[Macros] Don't return metadata when run tests
### Steps to reproduce 1. Create an macro that reads metadata; 2. Use the macro in a class; 3. Create a test that uses the class that is using the macro; 4. Run the command `flutter test --enable-experiment=macros` ### Expected results - Result of `flutter test --enable-experiment=macros` returns **Class annotati...
a: tests,tool,framework,dependency: dart,P3,team-framework,triaged-framework,dependency:dart-triaged
medium
Critical
2,725,499,310
go
go/parser: ParseExprFrom and ParseExpr might return ast.Expr(nil) when AllErrors is unset
`ParseExprFrom` is documented as such: https://github.com/golang/go/blob/c8fb6ae617d65b42089202040d8fbd309d1a0fe4/src/go/parser/interface.go#L193-L198 From the docs it is clear that, if reading the source succeeds, then the returned Expr shoudn't be nil, but it is not actually true (in case of a bailout, also see...
NeedsInvestigation
low
Critical