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,709,677,218 | rust | "rustc-LLVM ERROR" when using `_mm_cvttps_epi32` on x86_64-unknown-none | <!--
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
#![no_std]
use core::arch::x86_64::*;
pub unsafe fn func() -> __m128i {
_mm_cvttps_epi32(_mm_setzero_ps())
}
```
It builds fi... | O-x86_64,T-compiler,C-bug,A-target-feature | low | Critical |
2,709,682,319 | rust | non-`#[macro_export]`'ed `macro_rules!` macros are impossible to disambiguate from built-in attributes in `use` declarations | I tried this code:
```rust
macro_rules! warn { () => {} }
pub(crate) use warn;
fn main() { }
```
I expected it to compile.
Instead, it produces an error like this:
```qualify
error[E0659]: `warn` is ambiguous
--> src/main.rs:3:16
|
3 | pub(crate) use warn;
| ^^^^ ambiguous name
|
= note: amb... | A-attributes,A-macros,T-lang,C-bug | low | Critical |
2,709,686,376 | excalidraw | Copy and paste items do not snap to grid properly | Whenever I duplicate something using the alt key specifically it is pasted off-grid, forcing me to move it manually back onto it.
https://github.com/user-attachments/assets/f9de378c-c520-44d8-9971-50873fe44109
The video displays the behaviour in Obsidian-excalidraw, but the same thing happens on the site.
This behaviou... | bug | low | Minor |
2,709,752,589 | rust | keyword-idents is incompatible with macros | The `keyword_idents` lint has incorrect suggestions in macro_rules macros (there are potentially separate concerns for the definition versus invocation). It suggests changing a new keyword to the raw identifier, but this is a semantic change (see #49520).
## LHS Definition
Consider:
```rust
// edition 2021
#![warn(k... | A-lints,A-macros,T-compiler,C-bug,A-suggestion-diagnostics,D-invalid-suggestion,D-edition,A-edition-2024,L-keyword_idents_2024,L-keyword_idents,I-edition-triaged | low | Critical |
2,709,812,205 | PowerToys | Image Resizer edit setting Percent issue | ### Microsoft PowerToys version
0.86.0
### Installation method
GitHub
### Running as admin
Yes
### Area(s) with issue?
Image Resizer
### Steps to reproduce
Editing preset or add new size, in this setting the "PERCENT" unit stays on width parameter, before it change to precent option and image reduced the desir... | Issue-Bug,Product-Image Resizer,Needs-Triage,Status-Reproducible | low | Minor |
2,709,840,606 | flutter | Add `ListenableBuilder.all` to make it easier to listen to multiple listenables | ### Use case
Here's how you can listen to multiple `Listenable`s today.
#### Option 1 - multiple `ListenableBuilder`s
```dart
@override
Widget build(BuildContext context) {
return ListenableBuilder(
listenable: model1,
builder: (context, _) {
return ListenableBuilder(
listenable:... | framework,c: proposal,P2,team-framework,triaged-framework | low | Minor |
2,709,849,037 | opencv | Match Camera Index and Name on MacOS | ### Describe the feature and motivation
I have a builtin camera and a USB webcam connected to my MacOS.
Here is a result of `system_profiler SPCameraDataType -xml` command:
```
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.... | feature,platform: ios/osx | low | Minor |
2,709,851,421 | go | cmd/go,x/telemetry/config: collect vcs systems used | ### Summary
I propose we collect a count of whether each vcs system (git, hg, svn, fossil, bzr) was used recently.
I question the continued value of supporting the less used systems (e.g. bazaar, cmd/go special cases launchpad.net, but I believe it has switched primarily to git now).
### Proposed Config Change
- | NeedsInvestigation,Telemetry-Proposal | low | Major |
2,709,856,593 | rust | Poor diagnostic when using = instead of : in let bindings | ### Code
1.
```rs
let last = u64 = 0;
```
2.
```rs
let val = u64;
```
### Current output
1.
```shell
error[E0423]: expected value, found builtin type `u64`
--> src/main.rs:21:24
|
21 | let last = u64 = 0;
| ^^^
|
help: you might have meant to introduce a new binding
|... | A-diagnostics,A-parser,T-compiler,D-confusing,D-incorrect | low | Critical |
2,709,918,239 | rust | `std::marker::Freeze` disallows blanket impl since it "could be implemented on `Cell` and `UnsafeCell` in the future" | <!--
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
#![feature(freeze)]
use std::{cell::Cell, marker::Freeze};
unsafe trait IntoFreeze {
type Frozen: Freeze;
}
unsafe impl<T: Freez... | T-compiler,C-bug,F-freeze | low | Critical |
2,709,930,789 | godot | TileMapLayer's grid and placed tiles are positioned incorrectly inside CanvasLayer with "Follow Viewport" enabled | ### Tested versions
- Reproducible in: v4.3.stable.official [77dcf97d8], v4.2.1.stable.mono.official [b09f793f5]
- Not reproducible in: v3.6.stable.official [de2f0f147]
### System information
Windows 11 - Godot 4.3 Compatibility
### Issue description
I have the following scene:
]
trait Foo {}
impl Foo for &() {}
fn foo<'a>(u: &'a ()) -> impl FnOnce() -> (impl Foo + use<'a>) + use<'a> {
move || u
}
```
### Current output
```shell
error[E0700]: hidden type for `impl Foo` captures lifetime that does not appear in bounds
--> src/... | A-diagnostics,T-compiler,requires-nightly,D-confusing,F-impl_trait_in_fn_trait_return | low | Critical |
2,710,004,488 | rust | ICE with cyclic type | ### Code
```Rust
/// what's funny is that this code was suggested by chatgpt
enum HierarchicalItem<T, I> {
Element(T),
Group(I),
}
struct HierarchicalIterator<I, T>
where
I: Iterator<Item = HierarchicalItem<T, I>>,
{
stack: Vec<I>,
}
impl<I, T> HierarchicalIterator<I, T>
where
I: Iterator<Item ... | A-diagnostics,I-ICE,T-compiler,C-bug | low | Critical |
2,710,013,815 | rust | rustdoc-json: `impl dyn Trait` gets discarded | For the following code:
```rust
pub trait T1 {
fn number(&self) -> i32;
}
impl dyn T1 {
pub fn number_plus_one(&self) {
self.number() + 1
}
}
```
generates
```json
{
"format_version": 36,
"includes_private": false,
"index": {
"0": {
"attrs": [],
"crate_id": 0,
"deprec... | T-rustdoc,C-bug,A-rustdoc-json,A-trait-objects | low | Minor |
2,710,023,536 | godot | Corruption of .import ConfigFile settings when an external BoneMap was renamed or deleted. | ### Tested versions
- 4.3.stable
- All older versions of 4.x (crashes)
### System information
Godot v4.3.stable - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3090 (NVIDIA; 32.0.15.6094) - Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz (16 Threads)
### Issue description
#93284 was merged as an e... | bug,topic:core,topic:import,high priority,topic:3d | low | Critical |
2,710,122,700 | tauri | [bug] running `tauri android init` returns `NDK_HOME` environment variable isn't set, but the NDK is installed | ### Describe the bug
After following the [prerequisites](https://tauri.app/start/prerequisites/) doc to the letter, installing Android Studio and downloading all the latest SDKs and NDKs, I'm still getting this error when running `tauri android init`:
```
action request: to initialize Android environment; Android... | type: bug,platform: macOS,status: needs triage,platform: Android | low | Critical |
2,710,135,232 | tauri | [bug] `tauri ios dev` fails with: Error command ["xcodebuild"] exited with code 65 | ### Describe the bug
On a new project, with a fresh install of xCode, homebrewm java, etc... running `tauri ios init` has completed without a problem, but running the dev commands returns the following:
```
Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -allowProvisio... | type: bug,status: needs triage,platform: iOS | low | Critical |
2,710,153,624 | deno | MongoDB TLS connection still has problems | I just updated โdenoโ to โdeno-2.1.2โ and found that this problem (https://github.com/denoland/deno/issues/26660) is still there.

 | Feature gate: `#![feature(breakpoint)]`
This is a tracking issue for the `breakpoint` feature, which gates the `core::arch::breakpoint` function. This feature was approved in [ACP 491](https://github.com/rust-lang/libs-team/issues/491).
### Public API
```rust
// core::arch
/// Compiles to a target-specific software... | T-libs-api,C-tracking-issue | low | Major |
2,710,269,990 | pytorch | Using torch.func with saved tensor hooks | ### ๐ The feature, motivation and pitch
Context
I am developing a generative model that requires analyzing input-output sensitivity through Jacobian computations. In scenarios like flow-matching and denoising diffusion models, using torch.func.jacrev leads to high memory consumption because the computation graph i... | module: autograd,triaged,module: functorch | low | Critical |
2,710,272,414 | pytorch | Floating point exception (core dumped) in `slow_conv3d` | ### ๐ Describe the bug
Under specific inputs, `slow_conv3d` triggered a crash.
```python
import torch
self = torch.full((0, 7, 9, 1, 5,), 0, dtype=torch.float32, requires_grad=False)
weight = torch.full((9, 1,), 4.14214e+16, dtype=torch.float32, requires_grad=False)
kernel_size = [36028797018963968, 3602879701... | module: crash,triaged,module: edge cases,topic: fuzzer | low | Critical |
2,710,276,895 | pytorch | Floating point exception (core dumped) in `slow_conv3d_forward` | ### ๐ Describe the bug
Under specific inputs, `slow_conv3d_forward` triggered a crash.
```python
import torch
self = torch.full((0, 7, 9, 1, 5,), 0, dtype=torch.float32, requires_grad=False)
weight = torch.full((9, 1,), 4.14214e+16, dtype=torch.float32, requires_grad=False)
kernel_size = [36028797018963968, 36... | module: crash,triaged,module: edge cases,topic: fuzzer | low | Critical |
2,710,379,514 | angular | Skip Initial Entry Animation when Hydration Enabled | ### Which @angular/* package(s) are relevant/related to the feature request?
animations
### Description
When hydration is enabled, the initial entry animation will not be played until hydration is complete, resulting in a very wierd visual effect, where the elements appear at their final position before they are ani... | area: animations,needs reproduction,area: core,core: hydration | low | Major |
2,710,401,505 | ollama | fatal error: index out of range | ### What is the issue?
I'm running a dspy script that uses model `llama3-instruct:latest`. Script starts properly but after some ~20 minutes I get an exception like this:
```
...
[GIN] 2024/12/02 - 01:05:51 | 404 | 476.079ยตs | 127.0.0.1 | POST "/api/show"
fatal error: index out of range
runtime... | bug | low | Critical |
2,710,645,750 | angular | `::ng-deep` becomes `:is()` with CSS files | ### Which @angular/* package(s) are the source of the bug?
compiler
### Is this a regression?
Yes
### Description
In CSS file (not SCSS), when using `::ng-deep` the result is broken.
```css
pre {
white-space: pre-wrap;
::ng-deep {
h3 {
margin: 0px;
border-bottom: 1px soli... | area: core,core: stylesheets,core: CSS encapsulation | low | Critical |
2,710,664,071 | ant-design | The arrow position of the datePicker is incorrect | ### Reproduction link
[https://ant.design/components/date-picker-cn](https://ant.design/components/date-picker-cn)
### Steps to reproduce
Narrowing the width of your browser and clicking on the datepicker box will reveal the wrong arrow position
### What is expected?
Arrow position correct
### What is... | Inactive,improvement | low | Minor |
2,710,783,260 | rust | compiletest: normalization replacement strings don't support newlines | > It will affect every `normalize-` header, but since none of those currently have a `\n` in them, no other tests will be affected (other than the one I'm adding).
>
> There is currently no way to a new-line in the replacement string, I tried a bunch of things and just gave up and added this mini logic.
_Original... | E-hard,C-enhancement,T-bootstrap,A-compiletest | low | Minor |
2,710,808,183 | tensorflow | XLA recompilation every time when shape changed on GPU | ### Issue type
Support
### Have you reproduced the bug with TensorFlow Nightly?
No
### Source
binary
### TensorFlow version
tf2.18
### Custom code
Yes
### OS platform and distribution
_No response_
### Mobile device
_No response_
### Python version
_No response_
### Bazel version
_No response_
### GCC... | stat:awaiting tensorflower,type:support,comp:xla,TF 2.18 | medium | Critical |
2,710,826,241 | pytorch | dose "model.so" sharing model's weight with AOT inductor benchmark solutions | ### ๐ Describe the bug
When I run benchmark based on https://pytorch.org/docs/main/torch.compiler_aot_inductor.html, the performance are impacted by the number of process I launched which is not expected
### My model
```
class TwoLayerNet(nn.Module):
def __init__(self, input_size, hidden_size, output_size... | triaged,oncall: pt2,module: aotinductor | low | Critical |
2,710,899,065 | godot | Resize window bug in viewport mode with compatibility renderer | ### Tested versions
Reproducible in Godot v4.3.stable (77dcf97d8)
No problems at Godot v3.5.stable
### System information
Godot v4.3.stable (77dcf97d8) - Windows 11 - GLES3 (Compatibility) - NVIDIA GeForce RTX 4060 (NVIDIA; 32.0.15.6603) - AMD Ryzen 5 5600X 6-Core Processor (12 Threads) - The system uses 2 monitors
... | bug,topic:rendering | low | Critical |
2,710,905,427 | node | `Writable.write(buf, sourceOffset, sourceLength)` | I want to add a `Writable.write(sourceBuf, sourceOffset, sourceLength)` API to `Writable` to get a bit of extra performance in the following case:
```js
writable.write(buf.subarray(offset, length))
```
The `subarray` call (particularly regarding allocating `Buffer`) can be quite slow and avoided in this API. He... | stream,feature request | low | Major |
2,710,991,833 | angular | Missing instructions in Routing Overview tutorial | ### Describe the problem that you experienced
In the first step of the tutorial, the instructions to import and making changes to ./app/routes.ts appears missing.

### Enter the URL of the topic with the problem
https://angular... | area: docs | low | Critical |
2,711,003,763 | rust | Tracking issue for release notes of #131713: Stabilize `const_maybe_uninit_write` |
This issue tracks the release notes text for #131713.
### 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-libs-api,relnotes,relnotes-tracking-issue | low | Minor |
2,711,009,731 | pytorch | RuntimeError: quantized::conv2d_relu (ONEDNN): data type of input should be QUint8. | ### ๐ Describe the bug
I am using PyTorch's quantification feature and I want to obtain an onnx model of type int8. Here are my main lines of code, but an error occurred
`backend_config = get_qnnpack_backend_config()`
`qconfig_mapping = _get_symmetric_qnnpack_qat_qconfig_mapping()`
`dummy_input = torch.randn(1, ... | module: onnx,oncall: quantization | medium | Critical |
2,711,017,752 | pytorch | Can not convert Llama-3.2-11B-Vision-Instruct by torch.jit.script / torch.jit.trace | ### ๐ Describe the bug
I am trying to convert the `*.pth` file to `*.pt` file for using libtorch to load the model in C++. But both `torch.jit.script` or `torch.jit.trace` will emit a not support type error.
I encountered this error, but I'm not sure if I misused the function, if it's an unimplemented feature, or ... | oncall: jit | low | Critical |
2,711,042,824 | godot | Godot v4.3 & windows 11- crash when edit โRenderer: Forward+โ project | ### Tested versions
-**Reproducible**: v4.4-dev5, v4.3-stable, v4.2.2-stable, v4.2.1-stable, v4.2-stable
-**Not reproducible**:
### System information
Windows 11 Home - 24H2, Godot v4.3-stable_win64, Nvidia GeForce GTX 1060 - 22.21.13.8253
### Issue description
First time installing Godot.
it does launch the โGod... | bug,topic:rendering,crash | low | Critical |
2,711,103,386 | PowerToys | roman numerals support in quick accent | ### Description of the new feature / enhancement
In Unicode, Roman numerals have their corresponding characters, and in many cases Roman numerals are used. So can they be added to Quick Accent. Otherwise using Roman numerals would be so cumbersome that I would have to use something like III (3 capitalized I's), which ... | Idea-Enhancement,Needs-Triage,Product-Quick Accent | low | Minor |
2,711,107,164 | ant-design | Carousel ่ตฐ้ฉฌ็ฏ้่ฆๆฏๆๅๆงๆจกๅผ | ### What problem does this feature solve?
ๅๆงๆจกๅผ่ทๅพไปฅไธๅ่ฝ๏ผ
1. ๆๅฎ้ป่ฎคๆพ็คบ็้ขๆฟ๏ผ่ไธๆฏ้ป่ฎคๆพ็คบ็ฌฌไธไธช
2. ๅฏไปฅๆงๅถ้ขๆฟๅๆข็้ป่พ
### What does the proposed API look like?
ๆฐๅข value ๅ onChange ๅฑๆง
```tsx
const [index, setIndex] = useState(0)
<Carousel index={1} onChange={setIndex}>
...
</Carousel>
```
<!-- generated by ant-design-issue... | ๐ก Feature Request,Inactive,๐งถ Low Priority | low | Minor |
2,711,124,798 | rust | Tracking issue for release notes of #133631: Add new target for supporting Neutrino QNX 7.1 with `io-socket` netwoโฆ |
This issue tracks the release notes text for #133631.
### 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... | T-compiler,relnotes,O-unix,O-neutrino,relnotes-tracking-issue | low | Minor |
2,711,156,696 | langchain | [Bug] [core/indexer] PR #25754 seems like introducing bugs | ### 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,711,413,770 | go | proposal: slices: func CollectError | ### Proposal Details
Idiomatic go functions are often in the form `func (...) (T, err)`.
When creating iterators, it is equally common for the underlying functions to potentially return an error as each element in the iteration is created. For example, records might be read from a database, or requests from a clien... | Proposal | low | Critical |
2,711,519,803 | ui | [feat]: add Tab Nav components | ### Feature description
In addition to regular [Tabs](https://www.radix-ui.com/themes/docs/components/tabs), in Radix UI they also have a [Tab Nav](https://www.radix-ui.com/themes/docs/components/tab-nav) component for having tabs that perform navigation using links. This can be hacked together [by asChilding and usin... | area: request | low | Major |
2,711,542,602 | terminal | Dark overlay in response pane of Terminal Chat reduces visibility | ### Windows Terminal version
1.23.3311.0
### Windows build number
10.0.22631.4460
### Other Software
_No response_
### Steps to reproduce
Ask the chat a question
### Expected Behavior
The response pane in Terminal Chat should display text clearly without any dark overlay obstructing visibility
### Actual Beha... | Issue-Bug,Area-UserInterface,Needs-Tag-Fix,Priority-3,Area-Chat | low | Minor |
2,711,553,216 | kubernetes | failed to create patch: unable to find api field in struct Probe for the json field "grpc" | ### What happened?
When running `helm upgrade ...` for a certain release, the following error has occurs:
```
$ helm upgrade --debug --install <REDACTED>
history.go:53: [debug] getting history for release <REDACTED>
upgrade.go:121: [debug] preparing upgrade for <REDACTED>
upgrade.go:428: [debug] reusing the old r... | kind/bug,sig/apps,needs-triage | low | Critical |
2,711,555,798 | react | [Compiler Bug]: Moved breakpoint in React Native | ### What kind of issue is this?
- [ ] React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)
- [x] babel-plugin-react-compiler (build issue installing or using the Babel plugin)
- [ ] eslint-plugin-react-compiler (build issue installing or using the eslint plugin)
- [ ]... | Type: Bug,Status: Unconfirmed,Component: Optimizing Compiler | medium | Critical |
2,711,556,987 | flutter | [go_router][web] GoRouter's `refresh` method stops refreshing the current route starting from version `13.0.0` | ### Steps to reproduce
I have some functionality in my project where the current route must be refreshed after some user action. Depending of those user action the content of widget which represents a current route must be rebuilt. My functionality is working good under version `12.1.3`. Starting from `13.0.0` it s... | platform-web,package,has reproducible steps,p: go_router,team-web,found in release: 3.24,found in release: 3.27 | low | Critical |
2,711,641,195 | next.js | Next middleware with ioredis error: [TypeError]: Cannot read properties of undefined (reading 'charCodeAt') | ### Link to the code that reproduces this issue
https://github.com/KUN1007/next-middleware-ioredis-error
### To Reproduce
1. Clone the code from [the repository](https://github.com/KUN1007/next-middleware-ioredis-error) and install dependencies.
2. Run `pnpm dev` and visit [http://localhost:3000](http://localhost:3... | bug,TypeScript | low | Critical |
2,711,730,060 | rust | `miri` is incorrectly built with jemalloc on some targets | <!--
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 to run `cargo miri run` in (any) workspace on Asahi Linux (which has 16k page kernels)
I expected to see this happen: The program runs under miri simil... | T-bootstrap,C-bug,A-miri,O-AArch64 | low | Critical |
2,711,748,281 | flutter | [in_app_purchase_storekit] Add `AppStore.showManageSubscriptions()` for StoreKit2 wrapper | ### Use case
In my app, I would like to cancel subscriptions without a server. This method is essential for enabling users to cancel subscriptions directly within the app.
According to the documentation:
> Consider using the system-provided subscription-management UI. Using StoreKit APIs lets you present a consist... | c: new feature,platform-ios,p: in_app_purchase,package,c: proposal,P2,team-ios,triaged-ios | low | Minor |
2,711,760,467 | go | cmd/go: `go mod tidy` leaves trailing empty lines in `require` blocks | ### Go version
go version go1.23.3 linux/arm64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE=''
GOARCH='arm64'
GOBIN=''
GOCACHE='/root/.cache/go-build'
GOENV='/root/.config/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='arm64'
GOHOSTOS='linux'
GOINSECURE=''
GOMODCAC... | NeedsInvestigation,GoCommand | low | Critical |
2,711,805,315 | godot | c# solution ExportDebug generate files is deferent to default debug generate in editor | ### Tested versions
v4.4.dev4.mono.official [36e6207bb]
### System information
Godot v4.4.dev4.mono - Windows 10.0.22631 - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3080 Laptop GPU (NVIDIA; 31.0.15.5222) - AMD Ryzen 9 5900HX with Radeon Graphics (16 threads)
### Issue description
I... | topic:dotnet | low | Critical |
2,711,833,291 | rust | `cargo fix` produces incorrect code when removing last unused dependency next to `self as __` syntax | I encountered incorrect code being produced by `cargo fix` command.
### Code
```Rust
mod bakery_module {
pub struct Cheesecake;
#[derive(Debug)]
pub struct Cupcake;
}
use bakery_module::{self as moms_spaghetti, Cheesecake};
fn main() {
dbg!(moms_spaghetti::Cupcake);
}
```
https://play.rust-lang.or... | A-lints,T-compiler,C-bug,A-suggestion-diagnostics,D-invalid-suggestion,L-dead_code | low | Critical |
2,711,849,019 | PowerToys | No text showing | ### Microsoft PowerToys version
0.86.0
### Installation method
GitHub
### Running as admin
Yes
### Area(s) with issue?
General
### Steps to reproduce
Install Machine wide - x64 edition of version 0.86.0, then run as Administrator. I just need to sit and watch the magic unfold (i.e. no text showing up)
Here are... | Issue-Bug,Product-Settings,Needs-Triage | low | Critical |
2,711,856,840 | tensorflow | band width calculation support for ddr5 | ### Issue type
Support
### Have you reproduced the bug with TensorFlow Nightly?
No
### Source
source
### TensorFlow version
master
### Custom code
Yes
### OS platform and distribution
_No response_
### Mobile device
_No response_
### Python version
_No response_
### Bazel version
_No response_
### GCC... | stat:awaiting tensorflower,type:support,comp:grappler | low | Critical |
2,711,875,294 | flutter | `flutter run` doesn't display `print()` messages on web in profile/release mode | `flutter run` normally prints all messages the application prints using the`print(<...>)` function. This works on the VM-based devices just fine in all modes.
Though on the web it seems to only work in debug mode but not in profile/release mode (i.e. `flutter run -d chrome --release/--profile` doesn't forward print... | tool,platform-web,has reproducible steps,P3,team-web,triaged-web,found in release: 3.24,found in release: 3.27 | low | Critical |
2,711,902,562 | transformers | Enable Quantize KV Cache for Mistral Model | ### Feature request
Enable Quantize KV Cache for Mistral Model, as described in #30483.
### Motivation
KV cache quantization has emerged as a crucial optimization, particularly in high-throughput, multi-user scenarios, where efficiency is paramount.
Hugging Face currently leads in supporting quantization across a... | Feature request | low | Minor |
2,711,933,320 | ollama | tool parsing issues with "'" | ### What is the issue?
difficult to see in the title: ' is the problem.
when i ask my ai to "execute a python example" it generates something like "print('...')" but truncates at the 1st ':
"model": "llama3.1:8b-instruct-fp16",
"created_at": "2024-12-02T13:26:55.1045197Z",
"message": {
... | bug | low | Minor |
2,711,979,048 | PowerToys | Something went wrong. | ### Microsoft PowerToys version
0.86.0.0
### Installation method
WinGet
### Running as admin
Yes
### Area(s) with issue?
General
### Steps to reproduce
Version: 0.86.0.0
OS Version: Microsoft Windows NT 10.0.26120.0
IntPtr Length: 8
x64: True
Date: 2/12/2024 8:32:42
Exception:
System.OutOfMemoryException: Exce... | Issue-Bug,Product-PowerToys Run,Needs-Triage | low | Minor |
2,712,008,440 | vscode | Source Control Graph: support move the view panel to editor | The current Source Control Graph view is in the sidebar, it is limited in size, and the default size is small, it lacks some practicality.
I know it's to keep a consistent layout and interaction, but it would be more practical as a separate editor (tab).
Like [Git Graph](https://marketplace.visualstudio.com/items?ite... | feature-request,scm,under-discussion | low | Major |
2,712,015,256 | next.js | Link prefetch doesn't work for the initial page user lands | ### Link to the code that reproduces this issue
https://codesandbox.io/p/devbox/dazzling-margulis-zmc54v
### To Reproduce
1. Start the application `pnpm run build && pnpm run start`
2. Navigate to `/product/3` page and refresh so it's the initial landed page
3. Navigate to other pages using the links
4. Navigate ... | bug | low | Major |
2,712,026,236 | flutter | [Android] After enabling autofillHints, the keyboard automatically hide after entering the first letter | ### Steps to reproduce
run this code on a physical Android device (with autofill data populated), then input a letter.
### Expected results
Do not auto-hide keyboard
### Actual results
the keyboard auto hide
### Code sample
```dart
import 'package:flutter/material.dart';
void main(List<String> args) {
run... | a: text input,platform-android,framework,f: material design,a: internationalization,has reproducible steps,P2,team-text-input,triaged-text-input,found in release: 3.24,found in release: 3.27 | low | Major |
2,712,037,146 | angular | docs: search on v18 shows results from next | ### Describe the problem that you experienced
Searching on https://v18.angular.dev/ shows results that are available on `next` but not in the current documentation and clicking the result doesn't do anything.
### Enter the URL of the topic with the problem
https://v18.angular.dev/
### Describe what you were lookin... | area: docs-infra | low | Minor |
2,712,060,998 | next.js | Static export with a specified basePath causes request mismatch for RSC payload .txt file | ### Link to the code that reproduces this issue
https://github.com/yukiyokotani/next-static-export-404-reproduce
### To Reproduce
1. The code in the linked repository is deployed in the following github pages with static export.
- https://yukiyokotani.github.io/next-static-export-404-reproduce/
2. This si... | bug,Output (export/standalone) | low | Critical |
2,712,080,631 | flutter | [Web] Composing Japanese letters disappear when shifting converting area | ### Steps to reproduce
1. launch an app with `TextField` on web platform
2. type some letters in Hiragana, Japanese.
3. before committing (by hitting the Enter key), hit the Space key to convert them to Kanji.
4. press Shift and hit the left arrow key twice
5. composing Hiragana letters disappear
### Expected res... | a: text input,a: internationalization,platform-web,has reproducible steps,P2,team-text-input,triaged-text-input,found in release: 3.24,found in release: 3.27 | low | Major |
2,712,085,439 | pytorch | Use Python 3.9 type annotations | ### ๐ The feature, motivation and pitch
Now that pytorch has moved to Python 3.9, we can use the more concise Python 3.9 annotations.
Before:
```
from typing import List, Dict, Optional, Set, Union
a: Optional[str] = None
b: List[Dict[Set[int]] = []
c: Optional[Union[int, str, float]] = None
```
Aft... | module: typing,triaged,better-engineering | low | Major |
2,712,100,375 | go | time: Incorrect zonebounds on location based on POSIX TZ string | ### Go version
go version go1.23.3 linux/amd64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE='on'
GOARCH='amd64'
GOBIN='/home/wouter/go/bin/'
GOCACHE='/home/wouter/.cache/go-build'
GOENV='/home/wouter/.config/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='amd64'
GOHOS... | NeedsInvestigation | low | Critical |
2,712,336,035 | kubernetes | kubelet: PodRejectionStatus Kubelet should reject pod when the node didn't have enough resource test error | ### What happened?
https://github.com/kubernetes/kubernetes/pull/128403 merged to move PodRejectionStatus into e2e/node from e2e/common/node. In certain cases this test fails because the test is comparing the entire status object. The test needs to be changed to validate the fields we care about.
```
Expected
... | kind/bug,priority/backlog,sig/node,triage/accepted | low | Critical |
2,712,351,468 | go | go/types: add Info.ImplicitConversions mapping | **Background:** One of the many tricky subtasks of the type checker is to compute the conversions implicitly applied to an expression that is used on the right-hand side of an assignment (or passed as an argument, etc), arithmetic, and shifts. This information is hard to compute and useful to clients. Our refactoring t... | Proposal,Proposal-Accepted | medium | Major |
2,712,408,757 | flutter | Unexpected autofill behavior in Safari | ### Steps to reproduce
Run an app in Safari
1. Use a field with credit card autofill enabled, confirm autofill with touch id
2. Find any other field (in the provided example you can tap the button to switch the content)
3. Enter something in the other field, then delete it
### Expected results
There are n... | a: text input,platform-web,has reproducible steps,browser: safari-macos,P2,team-web,triaged-web,found in release: 3.24,found in release: 3.27 | low | Minor |
2,712,419,005 | tauri | [bug] Setting function on action prop for TrayIcon generates TypeError | ### Describe the bug
**Update: When doing a full restart of the app on the rust layer, the error is gone. If you just refresh/livereload the frontend the error persists.**
When setting up a TrayIcon on the javascript layer, specifying the action parameter will generate TypeErrors _when hovering over the tray icon... | type: bug,status: needs triage | low | Critical |
2,712,420,857 | PowerToys | Warnings should be treated as errors in CI | ### Description of the new feature / enhancement
Currently, the repo builds with many warnings. These should be fixed and warnings should be treated as errors in CI | Area-Quality,Area-Build,Needs-Triage | low | Critical |
2,712,463,662 | go | x/net: Failure to send IPv4 UDP packet on ipv6 socket with ControlMessage | ### Go version
go version go1.23.2 (Red Hat 1.23.2-1.el9) linux/amd64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE=''
GOARCH='amd64'
GOBIN=''
GOCACHE='~/.cache/go-build'
GOENV='~/.config/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='amd64'
GOHOSTOS='linux'
GOINSECURE=''
... | NeedsInvestigation | low | Critical |
2,712,493,723 | pytorch | Partitioner stores fp8 copy of all weights between fwd and bwd, causing OOM | ### ๐ Describe the bug
We have [some code](https://github.com/facebookresearch/lingua/blob/main/lingua/float8.py) to convert linear layers to fp8. The weights are still stored in high precision, but we have an autograd.Function which converts them to fp8 in the forward and then again in the backward, in two slightly ... | high priority,triaged,oncall: pt2 | low | Critical |
2,712,497,482 | flutter | Add an `elevationToShadow` option to override default M3 shadows in `ThemeData` | ### Use case
Design of an app may be built upon M3 widgets, but with different shadows
i.e.
| elevation | y | blur |
|-----------|----|------|
| 1 | 4 | 8 |
| 2 | 6 | 8 |
| 3 | 10 | 10 |
Would look cool:
<img width="397" alt="Screenshot 2024-12-02 at 21 07 23" src="htt... | framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Minor |
2,712,508,485 | flutter | Bold weighted Korean hangul text may be rendered incorrectly with variable fonts | ### Steps to reproduce
1. Type bold Korean Text.
2. Use Android phone to run
3. Run app
Tested on Galaxy S9, Galaxy S23. Both of them produced same problem.
### Expected results
Text should be rendered clearly.
### Actual results
some of vowels and consonants in hangul bold text are rendered l... | platform-android,engine,a: internationalization,a: typography,platform-web,c: rendering,has reproducible steps,P3,team-engine,triaged-engine,found in release: 3.24,found in release: 3.27 | low | Minor |
2,712,512,965 | rust | `<{f16,f32,f64,f128} as Rem>::rem` documented definition is misleading w.r.t. intermediate rounding | Our documentation for `impl Rem for {f16, f32, f64, f128}` [says](https://doc.rust-lang.org/std/ops/trait.Rem.html#impl-Rem-for-f64):
> The remainder has the same sign as the dividend and is computed as: `x - (x / y).trunc() * y`.
But that's not true. E.g.:
```rust
fn main() {
let (x, y) = (11f64, 1.1f64);
... | A-docs,C-bug,T-libs | low | Critical |
2,712,517,984 | flutter | Allow customizing `CarouselView` in `ThemeData` | ### Use case
I don't want to do this:
```dart
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(UiGlobal.carouselBorderRadius))),
```
every time I create an instance of CarouselView
### Proposal
Please add `carouselV... | c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Minor |
2,712,540,871 | flutter | [web] enabling semantics breaks scrolling | ### Steps to reproduce
Create a page containing two nested widgets that can be scrollable. E.g. a SingleChildScrollView containing a TextField, or TabView containing a SingleChildScrollView. The nested Widget does not have to be actually scrollable. E.g. it could be a single line TextField or a ListView using NeverSc... | framework,a: accessibility,f: scrolling,platform-web,has reproducible steps,P2,team-web,triaged-web,found in release: 3.24,found in release: 3.27 | low | Critical |
2,712,585,808 | godot | AudioStreamPlayer with an AudioStreamMicrophone stutters for any pitch_scale not equal to 1.0 | ### Tested versions
Reproducible on 4.3.stable and 4.4.dev5
### System information
Godot v4.3.stable (77dcf97d8) - NixOS #1-NixOS SMP PREEMPT_DYNAMIC Thu Sep 12 09:13:13 UTC 2024 - X11 - GLES3 (Compatibility) - Mesa Intel(R) Graphics (ADL GT2) - 12th Gen Intel(R) Core(TM) i5-1240P (16 Threads)
### Issue descripti... | bug,topic:audio | low | Critical |
2,712,594,201 | ui | [bug]: Installation Error |
### Describe the Bug
An error occurs when attempting to install a component using Shadcn UI:
```bash
Something went wrong. Please check the error below for more details.
If the problem persists, please open an issue on GitHub.
request to https://ui.shadcn.com/r/styles/new-york/textarea.json failed, rea... | bug | low | Critical |
2,712,636,769 | PowerToys | Switch Between the windows in the current zone shortcut doesnโt work after switching desktops and coming back | ### Microsoft PowerToys version
0.85.1
### Installation method
PowerToys auto-update
### Running as admin
None
### Area(s) with issue?
FancyZones
### Steps to reproduce
Hi FancyZones team,
First of all, thank you for the wonderful tool you provide. It really contributes to my productivity.
I think there migh... | Issue-Bug,FancyZones-Hotkeys,Product-FancyZones,Needs-Triage | low | Critical |
2,712,701,744 | vscode | Git - git blame info is not provided to screen reader users | 1. enable `"git.blame.editorDecoration.enabled": true`
2. enable screen reader mode and turn on a screen reader (I'm using voice over)
3. navigate lines and see if you hear git blame info.
4. ๐ you do not
cc @jooyoungseo, @isidorn
This feature is really powerful, so we want to be sure it's available to screen reade... | bug,git,accessibility | low | Minor |
2,712,741,178 | pytorch | Default optimizer options are ignored in the C++ API | ### ๐ Describe the bug
This standalone C++ program creates an optimizer with 3 param groups of a single tensor each. The tensor are initialized to 1. It also has default options that set the learning rate to 0, and the param groups are not setting their learning rate. It then computes a backward pass and runs an opti... | module: cpp,module: optimizer,triaged,actionable | low | Critical |
2,712,842,991 | ollama | Unsupported Architecture for Vision Model Conversion to GGUF in Ollama | **Model**: [Llama-3.2-11B-Vision-Instruct-abliterated](https://huggingface.co/huihui-ai/Llama-3.2-11B-Vision-Instruct-abliterated)
**Error Output**:
```
transferring model data 100%
converting model
Error: unsupported architecture
```
#### Description:
I'm trying to use the model **huihui-ai/Llama-3.2... | model request | low | Critical |
2,712,879,033 | tensorflow | Clarify the `constant_op.constant(2)` statement | It would be helpful to clarify the `constant_op.constant(2)` statement by explaining the corresponding import statement.
https://github.com/tensorflow/tensorflow/blob/5bc9d26649cca274750ad3625bd93422617eed4b/tensorflow/python/ops/summary_ops_v2.py#L1062-L1066 | type:bug,comp:ops | medium | Minor |
2,712,891,800 | pytorch | Does vmap accept None out_dims? | It appears to in https://github.com/pytorch/pytorch/blob/main/torch/_higher_order_ops/flex_attention.py#L828
but the type hint says it doesn't.
cc @Chillee @samdow @kshitij12345 | triaged,module: vmap | low | Minor |
2,712,925,893 | godot | CollisionPolygon2D -- Debug collision shape only shows outline in exported projects | ### Tested versions
Godot Engine v4.3.stable.official.77dcf97d8 - https://godotengine.org
### System information
Godot v4.3.stable - Windows 10.0.22631 - GLES3 (Compatibility) - NVIDIA GeForce RTX 4070 Ti (NVIDIA; 32.0.15.6614) - AMD Ryzen 9 7950X 16-Core Processor (32 Threads)
### Issue description
In the Godot e... | topic:physics | low | Critical |
2,712,930,036 | pytorch | Forward from pytorch/executorch: export error with Macbook pro M4 | ### ๐ Describe the bug
Original Issue: https://github.com/pytorch/executorch/issues/7127
when I export .pte from Llama3.2 1B, it is enterrupt.
the error is blow:
python -m examples.models.llama.export_llama
--checkpoint "/Users/qitmac001443/.llama/checkpoints/Llama3.1-8B/consolidated.00.pth"
--params "/User... | oncall: export | low | Critical |
2,713,071,189 | pytorch | CheckpointError with checkpoint(..., use_reentrant=False) & autocast() | ### ๐ Describe the bug
When running the code below, I get the following error:
```
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/workspaces/pytorch/grad/checkpoint.py", line 45, in main
loss.backward()
File "/opt/conda/lib/python3.11/site-packages/torch/_tensor.py", l... | high priority,module: checkpoint,triaged,module: amp (automated mixed precision) | low | Critical |
2,713,076,559 | rust | compiletest: `needs-*` directive handling mixes `:` and ` ` name-val/name-comment separator | > Remark: I didn't want to adjust how directives accept `:` for name-value form vs name-comment form in this PR, so this temporarily accepts `//@ needs-target-has-atomic 8,16,ptr` but I want to only accept the colon form in the future.
_Originally posted by @jieyouxu in https://github.com/rust-lang/rust/pull/133736#... | E-hard,T-compiler,T-bootstrap,C-bug,A-compiletest,E-tedious | low | Minor |
2,713,112,277 | deno | TypeError: process.cwd is not a function when trying to run typeorm migration:run | Version: Deno 2.1.2
Mac M1 Pro@
I am trying to run the typeorm CLI to generate or run migration files. According to the documentation, process.cwd should be defined when using a node/npm module: https://docs.deno.com/runtime/fundamentals/node/#node.js-global-objects
However, here is the error I encounter:
```
... | bug,needs info,node compat | low | Critical |
2,713,157,594 | rust | Bad suggestion in dependency_on_unit_never_type_fallback for fragment coming from a macro input | The following in 2021:
```rust
#![warn(dependency_on_unit_never_type_fallback)]
pub fn foo<T: Default>() -> Result<T, ()> {
Err(())
}
macro_rules! m {
($x: ident) => {
pub fn test() -> Result<(), ()> {
$x()?;
Ok(())
}
};
}
m!(foo);
```
produces a suggestion that ... | T-compiler,C-bug,A-suggestion-diagnostics,D-invalid-suggestion,D-edition,A-edition-2024,L-dependency_on_unit_never_type_fallback,I-edition-triaged | low | Critical |
2,713,174,568 | godot | Confusing debugger message caused by Debugger trying to init autoloaded custom classes that requires 1 or more arguments with 0 arguments | ### Tested versions
- Reproducible in: v4.3.stable.official [77dcf97d8]
### System information
Windows 11
### Issue description
I'm sorry if this isn't actually a bug.
There is a confusing debugger message caused by the Debugger trying to init autoloaded custom classes that requires 1 or more arguments with 0 arg... | enhancement,discussion,topic:core,usability | low | Critical |
2,713,230,559 | storybook | Rollup: Portable stories limitations/discrepancies | This issue tracks all the known limitations of portable stories, some more severe than others.
```[tasklist]
- [ ] #29771
- [ ] #29772
- [ ] #29775
- [ ] #29776
- [ ] #29778
- [ ] #29779
- [ ] #29773
- [ ] #29774
- [ ] #29777
- [ ] #29780
- [ ] #29781
- [ ] #29782
- [ ] #29783
```
| bug,portable stories,addon: test | low | Minor |
2,713,249,883 | pytorch | Observing CUDA OOM errors in more recent versions of PyTorch nightly (post-`2.6.0.dev20241126`) | ### ๐ Describe the bug
We've been running into issues with CUDA CI on FBGEMM in OSS:
```
E torch.OutOfMemoryError: CUDA out of memory. Tried to allocate 14.00 MiB. GPU 0 has a total capacity of 21.98 GiB of which 2.44 MiB is free. Including non-PyTorch memory, this process has 21.96 GiB memory in use. Of the ... | module: cuda,module: ci,triaged | medium | Critical |
2,713,251,830 | godot | Landscape orientation is shown rotated upside down in Firefox for Android (web export) | ### Tested versions
- Reproducible in v4.3.stable.flathub [77dcf97d8]
### System information
Android 10; Samsung Galaxy J6+; Browser: Fennec (Firefox) v133.0.0 (F-Droid); Compatibility renderer; GLES 3.0 / WebGL 2.0; Logs "Using Device: Mozilla - Adreno (TM) 330, or similar"
### Issue description
I tried the web e... | bug,platform:web,needs testing,topic:export | low | Critical |
2,713,261,783 | storybook | [Bug] SB Channel events are not doing anything in portable stories | ### [Storybook Channel](https://storybook.js.org/docs/addons/addons-api#usechannel)
Storybook relies a lot in the Storybook channel. It only works correctly in Storybook, as most of places where channel events are registered are part of Storybook manager UI. In portable stories, it's just mocked. This causes issues in... | bug,sev:S3,portable stories | low | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.