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,680,286,630
ollama
Llama3.2 Safetensors adapter not supported?
### What is the issue? Hi Guys, First thanks for creating such a wonderful tool. I have run into a problem which I believe is a bug but I may be incorrect and I could be asking for a feature request. Basically I have fine-tuned a llama3.2 model on some local data and then saved this in safetensors format. Now I...
bug
low
Critical
2,680,288,618
deno
`deno compile --include-code-cache`
Surfing on the new `deno compile --include`-style flags, it would be great if the compiled binary could have its own [code cache](https://github.com/denoland/deno/pull/26528#issuecomment-2491735952) included. Code cache right now will only cache in the first execution and then reuse it in subsequent ones. As I ha...
feat,compile
low
Minor
2,680,345,258
deno
`deno compile --code-cache-path`
With the new [code cache](https://github.com/denoland/deno/pull/26528), compiled programs would end up writing to `~/.cache/deno`. This may not be desirable. The program may have its own cache directory for example. Also, it would end up creating this directory in systems where Deno isn't even installed, which could le...
suggestion,compile
low
Major
2,680,389,508
vscode
Unable to interact with Code windows on Mac Os after window maximization
Does this issue occur when all extensions are disabled?: Yes I have an intermittent issue that I only see in VS code on Mac, although it may be partially due to electron bugs (I ruled out an open-source window management utility called Rectangle that I am also using) I am using multiple displays and using Rectangle ...
info-needed
low
Critical
2,680,416,327
pytorch
Enhanced Feedback for `load_state_dict` with `strict=False`
### 🚀 The feature, motivation and pitch When developers use `load_state_dict` with `strict=False`, they often face significant challenges, especially around debugging weight loading issues. The current behavior does not provide sufficient visibility into what weights were successfully loaded and which keys were une...
module: nn,triaged
low
Critical
2,680,423,505
yt-dlp
For the Bilibili website, yt-dlp is unable to obtain the uploader and upload date for videos that contain multiple parts (P).
### 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 site-specific feature - [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github...
site-enhancement,triage
low
Critical
2,680,455,827
pytorch
`torch.compile` fails with runtime error on Numpy scalar operations
### 🐛 Describe the bug The following pattern shows up in a model from User Empathy Day: https://github.com/suno-ai/bark/blob/f4f32d4cd480dfec1c245d258174bc9bde3c2148/bark/generation.py#L602-L607 ```python @torch.compile(backend="eager") def run(x): n = int(round(np.floor(3.1))) return x + n run(torch....
triaged,module: numpy,oncall: pt2,dynamo-user-empathy-day
low
Critical
2,680,457,321
PowerToys
Fail to initialize plugins: OneNote
### Microsoft PowerToys version v0.86.0 ### Installation method GitHub ### Running as admin Yes ### Area(s) with issue? PowerToys Run ### Steps to reproduce Power Toys Run - Plugin Loading Error Fail to load plugin: OneNote Please report the bug to https://aka.ms/powerToysReportBug. (For third-party plugins, p...
Issue-Bug,Needs-Triage
low
Critical
2,680,464,777
pytorch
Consider relaxing torch.cond's requirement that the outputs of each branch have matching requires_grad metadata
### 🐛 Describe the bug Here is a surprising behavior I found while working on https://github.com/pytorch/pytorch/pull/140979 ```python import torch torch.set_default_device("cuda") def cond_relu(x): return torch.cond(x > 0, lambda x: x, lambda _: torch.zeros_like(x), [x]) def imperative_relu(x): ...
triaged,oncall: pt2,module: higher order operators,module: pt2-dispatcher
low
Critical
2,680,551,473
pytorch
Use expecttest in test_compiled_optimizers.py
### 🐛 Describe the bug @ezyang pointed out that it's kind of annoying to update the kernel counts in https://github.com/pytorch/pytorch/blob/723498aab8803702dfd508be05a1ebe525112ebd/test/inductor/test_compiled_optimizers.py#L4 We should update this to use expecttest like our other tests. ### Versions N/A cc @mr...
good first issue,module: tests,triaged,enhancement,actionable,oncall: pt2
low
Critical
2,680,578,882
ui
[bug]: dialog was not found
### Describe the bug Something went wrong. Please check the error below for more details. If the problem persists, please open an issue on GitHub. The component at https://ui.shadcn.com/r/styles/default/dalog.json was not found. It may not exist at the registry. Please make sure it is a valid component. ##...
bug
low
Critical
2,680,584,110
pytorch
rope perf improvement
Tracking issue for improving perf of this kernel. cc @voznesenskym @penguinwu @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @ipiszy @yf225 @chenyang78 @kadeng @muchulee8 @ColinPeppler @amjames @desertfire @chauhang @aakhundov
triaged,oncall: pt2,module: inductor
low
Minor
2,680,586,087
material-ui
Select onFocus called way too many times
### Steps to reproduce Steps: 1. Open this link to live example: https://codesandbox.io/p/sandbox/q649qz 2. Open console to see logs 3. Click into the select box 4. Click off the select box 5. Click off the select box again ### Current behavior On the initial focus, onFocus is called 4 times. On initial blur,...
performance,component: select,enhancement
low
Minor
2,680,607,003
vscode
Terminal suggest: Make sure `cd -` completions play nice in pwsh
I see this coming in https://github.com/microsoft/vscode/pull/234363: ```js { name: '-', description: 'Switch to the last used folder', hidden: true, } ``` In pwsh it's actually - as in -/+ and they navigate a history stack, not just toggle between the last directory (`$OLDPWD` in bash). We could im...
feature-request,terminal-suggest
low
Minor
2,680,675,181
kubernetes
[FG:InPlacePodVerticalScaling] Revisit ResizeStatus and state transitions
/kind feature There are several problems with the current approach to pod ResizeStatus, including: 1. Race condition setting the status: the kubelet can overwrite the Proposed status set by the API server (https://github.com/kubernetes/kubernetes/issues/125394) 2. Can technically have 2 parallel resize statuses: a {P...
priority/important-soon,sig/node,kind/feature,triage/accepted
low
Critical
2,680,705,641
go
encoding/binary: Write does not optimise the case of native-format slices
### Go version go version go1.23.3 linux/amd64 ### Output of `go env` in your module/workspace: ```shell Irrelevant, but happy to provide. ``` ### What did you do? I wrote a (large) number of slices of little-endian IEEE floats using `binary.Write` on a little-endian machine. I was expecting the library to recog...
Performance,NeedsInvestigation
low
Major
2,680,707,844
ui
[bug]: Inconsistent Scrolling Behavior with Dialog and ScrollArea
### Describe the bug When using a dialog containing a scroll area component, the expected behavior is that the scroll area should handle scrolling when the dialog is active. However, the following issues occur: 1. The scroll area within the dialog does not respond to scroll interactions. 2. In some cases, the ba...
bug
low
Critical
2,680,782,048
pytorch
Multiple torch.{*}_copy variants are not in generated docs/docs skiplist
### 🐛 Describe the bug to track https://github.com/pytorch/pytorch/pull/140045#discussion_r1852591819 `torch.{*}_copy` variants of functions are not in generated docs despite being public Some examples are `torch.expand_copy`, `torch.diagonal_copy` etc see [here](https://github.com/twaclaw/pytorch/blob/9a30f6...
module: docs,triaged
low
Critical
2,680,875,769
go
crypto/tls: re-enable two TLS tests with fips140tls.Required
Two small TODOs that came out of [CR 629736](https://go-review.googlesource.com/c/go/+/629736): 1. In `handshake_server_test.go` the "RSA" and "RSA with ec_point_format" subtests of `TestTLSPointFormats` are skipped when `fips140tls.Requried()` is enabled, otherwise a handshake failure error is observed. This should...
NeedsFix
low
Critical
2,680,906,786
node
Add zlib/promise module
### What is the problem this feature will solve? To work with promise we need to use the `promisify` util to converte the callback function version. ### What is the feature you are proposing to solve the problem? I would like to add this new module to use promises instead of callbacks, similar to the `fs/promises`...
feature request
low
Minor
2,680,947,072
deno
deno test `--require` or `--import` (setup file)
I can't really figure how to do some browser mocking in deno. I'm using the node command like this, which works: `node --experimental-strip-types --test --import ./test/mock-browser.ts` ([link to code](https://github.com/birkskyum/maplibre-gl-draw/blob/01cc0dcecea8e280b9d931ca27727da812639f27/package.json#L31)) ...
suggestion,testing
low
Critical
2,680,973,456
go
x/mobile: seccomp prevented call to disallowed arm64 system call 434
### Go version go version 1.22.9 darwin/arm64 ### Output of `go env` in your module/workspace: ```shell GO111MODULE='on' GOARCH='arm64' GOBIN='' GOCACHE='/Users/azaza/Library/Caches/go-build' GOENV='/Users/azaza/Library/Application Support/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='arm64' GOHOS...
NeedsInvestigation,mobile
low
Critical
2,680,980,753
pytorch
MPS operator coverage tracking issue (2.6+ version)
### 🐛 Describe the bug ### This issue is to have a centralized place to list and track work on adding support to new ops for the MPS backend. [**PyTorch MPS Ops Project**](https://github.com/users/kulinseth/projects/1/views/1) : Project to track all the ops for MPS backend. There are a very large number of opera...
feature,triaged,tracker,module: mps
low
Critical
2,680,984,962
pytorch
Enhancement Request: improve this error message
### 🚀 The feature, motivation and pitch Currently this error message confuses me, and the comment said I could submit an enhancement request ERROR 2024-11-21T21:14:00.063730401Z [resource.labels.containerName: pytorch] [rank14]: File "/usr/local/lib/python3.10/dist-packages/torch/nn/functional.py", line 4047, in i...
module: nn,triaged
low
Critical
2,680,997,073
flutter
[in_app_purchase_storekit] Audit import headers to prevent unneeded headers from being public
See here: https://github.com/flutter/packages/pull/7912#discussion_r1814265121 > https://github.com/flutter/packages/blob/a87eddf0c281d5d017093125c1a8d9161257741f/packages/in_app_purchase/in_app_purchase_storekit/darwin/in_app_purchase_storekit.podspec#L21 > > https://guides.cocoapods.org/syntax/podspec.html#publ...
P2,team-ios,triaged-ios
low
Major
2,681,009,483
flutter
Loading the same asset between several widget tests loads infinitely
### Steps to reproduce 1. Create a test file 2. Create a widget test and call `await rootBundle.loadString(...);` 3. Create a second widget test and call the same method **with the same asset path** ### Expected results Both tests pass ### Actual results The second test never completes ### Code sample <details...
a: tests,framework,a: assets,has reproducible steps,P3,team-framework,triaged-framework,found in release: 3.24,found in release: 3.27
low
Major
2,681,064,222
electron
Ability to set ELECTRON_NO_ATTACH_CONSOLE from app
### 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,681,066,362
pytorch
DISABLED test_linear_backward_memory_usage_cuda_float32 (__main__.TestNestedTensorSubclassCUDA)
Platforms: rocm, linux This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_linear_backward_memory_usage_cuda_float32&suite=TestNestedTensorSubclassCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/333369...
triaged,module: flaky-tests,module: nestedtensor,skipped
low
Critical
2,681,115,955
go
cmd/compile: cannot build runtime in coverage mode on Wasm
### Go version go version go1.23.3 linux/s390x ### Output of `go env` in your module/workspace: ```shell GO111MODULE='' GOARCH='s390x' GOBIN='' GOCACHE='/home/linux1/.cache/go-build' GOENV='/home/linux1/.config/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='s390x' GOHOSTOS='linux' GOINSECURE='' G...
NeedsInvestigation,arch-wasm,compiler/runtime
low
Critical
2,681,136,885
kubernetes
Empty pod env var always causes server-side apply conflict
### What happened? I applied a manifest that contains an empty env var in a `PodTemplate` (like `env: [{ name: foo, value: "" }]`). Then, I tried to apply the same spec, with a different field-manager. This produced a conflict: ``` error: Apply failed with 1 conflict: conflict with "kubectl": .spec.containers[na...
kind/bug,sig/api-machinery,triage/accepted
low
Critical
2,681,137,485
pytorch
Memory efficient reshape for stride-0 tensors
### 🚀 The feature, motivation and pitch We have many tensors with large shape, but several stride=0 dimensions, i.e. expanded/broadcasted dimensions. If a reshape that cannot be done as a view is performed, the whole tensor is made full sized and contiguous, resulting in a huge allocation. IT would be nice if the...
triaged,enhancement,module: python frontend
low
Minor
2,681,138,074
flutter
iOS simulator test have confusing logspam.
The following logs are emitted constantly but the results seem to be benign: ``` 2024-11-21 14:23:13.025619-0800 IosUnitTests[79897:22772182] [ERROR:flutter/runtime/isolate_configuration.cc(223)] application_kernel_asset or application_kernel_list_asset must be set 2024-11-21 14:23:13.025783-0800 IosUnitTests[79897:...
a: tests,engine,P3,team-ios,triaged-ios
low
Critical
2,681,181,475
pytorch
Pytorch notifications
### 🚀 The feature, motivation and pitch **Note: this feature is under review, this is a first rough proposal, looking for user feedback right now whether this is needed or not.** Developers within the PyTorch ecosystem have quite some signal to deal with: - Github notifications for cc'ed issues - failing C...
feature,triaged,module: devx
low
Critical
2,681,224,486
langchain
PydanticUndefinedAnnotation: name 'SafetySetting' is not defined using ChatVertexAI
### 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,investigate
medium
Critical
2,681,233,440
pytorch
Consider making torch.cond return zero rather than None for the gradients of tensors that are in the not-taken branch of the if-else.
### 🐛 Describe the bug While working on #140979, I noticed that torch.cond()'s current backward pass will return None for the gradients of inputs that are not used in the branch selected by `pred`. There are a few challenges with this: 1. This makes it basically impossible to capture torch.cond with a cuda grap...
high priority,triaged,oncall: pt2,module: higher order operators,module: pt2-dispatcher
low
Critical
2,681,236,448
rust
Unexpected error when resolving bounds involving associated types
<!-- 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 am trying to compile the following code ```rust struct MyBlock; trait Block { type Header; } impl Block for MyBlock { type Header = (); } trait Hea...
A-trait-system,T-compiler,A-impl-trait,C-bug,fixed-by-next-solver
low
Critical
2,681,267,333
rust
`if` and `else` have incompatible types in a `let` statement, where `else` block's evaluation will never be assigned
<!-- 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 apologize if this was already reported in a separate issue, or if this is a known issue - I wasn't sure how to best search for previous issues like this. I a...
A-diagnostics,T-compiler,D-confusing,D-terse,A-control-flow
low
Critical
2,681,272,541
rustdesk
Online status indicator doesn't work for remotes added via `id@server/r`
### Bug Description I have a remote client that I usually connect to. The remote client is using a relay server and an ID server on its end. When I want to connect to that specific remote via its pure `<id>`, I have to change the networking settings on my client to add that relay and ID server globally. When I do th...
bug,Fund
low
Critical
2,681,282,748
vscode
Codes Crashes after about 15 Minutes
Type: <b>Performance Issue</b> Hello, i am trying to code a Pythen Application. But VS Code keeps consinstently crashing after about 15 Minutes. I have a core dump from journalctl. All Extensions (Not the Python ones) are disabled. Here is the beginning of the Core Dump: Nov 22 00:19:11 debian plasmashell[79249]: <-...
bug,freeze-slow-crash-leak,terminal-process
low
Critical
2,681,326,368
godot
Dance pad buttons detected as Joypad D-pad prevent left+right and up+down
### Tested versions Reproducible in: v4.3.stable.official.77dcf97d8 v4.2.2.stable.official.15073afe3 ### System information MXLinux 23.3; 6.1.0-11-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.38-4 (2023-08-08) x86_64 GNU/Linux ### Issue description I'm using a Mayflash GameCube controller to a Wii dance pad. ![Image]...
bug,needs testing,topic:input
medium
Critical
2,681,423,521
go
crypto/tls: reject TLS 1.3 empty NewSessionTicket messages
We are currently failing the new `SendEmptySessionTicket-TLS13` BoGo test. Harmless but worth fixing.
NeedsFix
low
Minor
2,681,429,030
deno
`deno task` should support caching based on input/output
I really like that I'm able to remove more and more dependencies using Deno! v2.1 release is awesome. Perhaps this is already discussed internally, but I couldn't find any tickets here. So here we go. With the help of task inputs and outputs it will be possible to cache task results. [NX](https://nx.dev/recipes/r...
suggestion,task runner
low
Minor
2,681,433,913
deno
[CLI] Network access can support representing IP segments
For example, I want to prohibit scripts from accessing the local area network ```bash deno run --allow-net --deny-net=127.0.0.1,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16 script.ts ```
permissions,suggestion
low
Minor
2,681,458,020
tauri
[bug] Cannot connect android device to local nor remote server
### Describe the bug Android app is calling localhost instead of my local server's ip. I followed the tauri documentation and setup the frontend, vite.cofig, tauri.conf.json based on that. I'm running using `pnpm tauri android dev --host`. Calling the remote server gives me another error even though I allowed `tauri...
type: bug,status: needs triage,platform: Android
low
Critical
2,681,460,070
langchain
langchain-chroma== 0.1.4 method get_by_ids is listed in documentation BUT I am getting NotImplementedError
### 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 ...
Ɑ: vector store
low
Critical
2,681,508,371
tauri
[feat] iOS: theme resolution / subscription
### Describe the problem Currently, there is no way to get current theme (color mode) on iOS. `Webview` object doesn't have the same methods as desktop (and I'm not sure it react on `tauri://theme-changed` event, couldn't reproduce on simulator) e.g. `onThemeChanged()` and `theme()`. ### Describe the solution you'd ...
type: feature request,platform: Linux,platform: Android
low
Minor
2,681,523,294
PowerToys
Administrator protection/adminless mode breaks relaunch
### Microsoft PowerToys version 0.86.0 ### Installation method WinGet ### Running as admin Yes ### Area(s) with issue? General ### Steps to reproduce 1. Install a 27* series canary build of windows 2. Enable admin protection as detailed [here](https://techcommunity.microsoft.com/blog/windows-itpro-blog/adminis...
Issue-Bug,Needs-Triage
low
Minor
2,681,578,290
go
crypto: test fips140=only mode
`fips140=only` from #70123 breaks any non-FIPS cryptography. Testing a mode designed to break things is tricky. Running the whole test suite is prohibitive. Instead, we should probably write a dedicated test that goes through things that are expected to work, and things that are not expected to work.
Testing,NeedsFix
low
Minor
2,681,579,961
tensorflow
Floating point exception (core dumped) in `tf.raw_ops.Reshape`
### Issue type Bug ### Have you reproduced the bug with TensorFlow Nightly? Yes ### Source source ### TensorFlow version tf2.17.0 ### Custom code Yes ### OS platform and distribution Ubuntu 20.04 ### Mobile device _No response_ ### Python version 3.11 ### Bazel version _No response_ ### GCC/compiler v...
stat:awaiting tensorflower,type:bug,comp:ops,2.17
medium
Critical
2,681,590,573
go
net/http: TestTransportRemovesH2ConnsAfterIdle/h2 failures
``` #!watchflakes default <- pkg == "net/http" && test == "TestTransportRemovesH2ConnsAfterIdle/h2" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.org/b/8730607166746745185)): === RUN TestTransportRemovesH2ConnsAfterIdle/h2 2024/11/22 02:11:36 Error enabling T...
NeedsInvestigation
low
Critical
2,681,639,444
ant-design
rc-slider有支持的startPoint属性,为什么antd的slider的ts定义文件和文档都不写?实际是有效果的
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/ji-ben-antd-5-21-6-forked-tnjzqf) ### Steps to reproduce ```tsx <Slider min={-50} max={50} startPoint={0} /> ``` ### What is expected? ts不要给startPoint属性报错,更新...
🗣 Discussion,Inactive
low
Minor
2,681,663,533
neovim
vim.lsp.rpc.request is nil
### Problem Running `:h vim.lsp.rpc.request` show the document of the function However I cannot use it because `:lua =vim.lsp.rpc.request` outputs `nil` ### Steps to reproduce ```bash nvim --clean ``` ```vim :h vim.lsp.rpc.request " Show document of the function :lua =vim.lsp.rpc.request " Returns nil ``` ### Expec...
bug,documentation,lsp
low
Minor
2,681,667,391
pytorch
[Inductor] Different results with Conv2d and BN2d not in `eval mode`
### 🐛 Describe the bug If I use Inductor to compile `Conv2d` and `BN2d` **not use** `eval mode`. The results are inconsistent. The problem seems to be with BN2d ```python import torch import torch.nn as nn class Model(nn.Module): def __init__(self): super(Model, self).__init__() se...
triaged,oncall: pt2,module: inductor
low
Critical
2,681,667,499
angular
Need a splice like method in Reactive Form Arrays.
### Which @angular/* package(s) are relevant/related to the feature request? forms ### Description They need to provide a solution for the deletion of one index to another specific index. i.e. I have a 100 elements in Reactive Form Array, and I need to remove 30 to 60 index elements. I need to handle this in for loo...
area: forms
low
Minor
2,681,672,192
godot
Autowraping Label within AspectRatioContainer causes crash
### Tested versions Godot_v4.3-stable_mono_win64 ### System information Godot v4.3.stable.mono - Windows 10.0.19045 - GLES3 (Compatibility) - NVIDIA GeForce RTX 3070 (NVIDIA; 32.0.15.6081) - Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz (16 Threads) ### Issue description A Label with Autowrap inside an AspectRatioCont...
bug,crash,topic:gui
low
Critical
2,681,723,790
kubernetes
scheduler: removed the deprecated metric scheduler_cache_size in v1.33
scheduler: removed the deprecated metric scheduler_scheduler_cache_size in v1.33 more detail: https://github.com/kubernetes/kubernetes/pull/128810#discussion_r1851486291
kind/cleanup,sig/scheduling,needs-triage
low
Minor
2,681,818,678
go
crypto/internal/fips140test:exe_external: unrecognized failures
``` #!watchflakes default <- pkg == "crypto/internal/fips140test:exe_external" && test == "" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.org/b/8730628651224099649)): FAIL crypto/internal/fips140test [build failed] — [watchflakes](https://go.dev/wiki/Watchflakes...
NeedsInvestigation,arch-riscv
medium
Critical
2,681,836,643
rust
ICE: unstable fingerprints for evaluate_obligation
### Code i dont know what i was writing when happened, i made many changes after it happened without noticing. however, the code i was writing wasnt anything crazy like 1035935 repeated vec! macros or something. i was editing my rng crate ### Affected release channels - [ ] Previous Stable - [ ] Current Stable - [ ]...
I-ICE,T-compiler,A-incr-comp,C-bug,S-needs-repro
low
Critical
2,681,937,344
go
os/user: TestLookupGroupIdServiceAccount failures
``` #!watchflakes default <- pkg == "os/user" && test == "TestLookupGroupIdServiceAccount" ``` Issue created automatically to collect these failures. Example ([log](https://ci.chromium.org/b/8730598809761491761)): === RUN TestLookupGroupIdServiceAccount === PAUSE TestLookupGroupIdServiceAccount — [watchf...
OS-Windows,NeedsInvestigation
low
Critical
2,682,061,679
next.js
notfound() uses fallback instead of app/not-found.tsx with route group (turbopack)
### Link to the code that reproduces this issue https://github.com/twillhorn/next_not_found_bug ### To Reproduce 1. next dev --turbopack 2. go to localhost:3000 and notice that the fallback 404 page is shown instead of not-found.tsx ### Current vs. Expected behavior Expected: not-found.tsx to be used Actual: fal...
bug,Navigation,Turbopack
low
Critical
2,682,127,836
ollama
Don't try to parse images property for non image model
### What is the issue? Some clients missbehave as demonstrated in this third party client: https://github.com/longy2k/obsidian-bmo-chatbot/issues/105#issuecomment-2487862451. They sent image paths instead of a base64 representation of the image While this client misbehaves and this issue should be fixed on their si...
bug
low
Critical
2,682,173,975
opencv
Refresh stitching module
### Describe the feature and motivation 1. Update features after features2d reorg. Use SIFT by default. 2. Use modern LevMarq implementation from 5.x instead of CvLevMarq. 3. Handle bool masks 4. Use USAC 5. DNN-based features and matching (?) ### Additional context _No response_
feature,category: stitching
low
Minor
2,682,202,626
godot
`CTRL+C` and `CTRL+V` of `EditorProperty::shortcut_input` hide shortcuts of `SceneTreeDock`
### Tested versions - Reproducible in 4.4.dev5, 4.4.dev4 ### System information Windows 11 - Godot v4.4.dev5 - Windows 10.0.22631 - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3060 Ti (NVIDIA; 32.0.15.6094) - 13th Gen Intel(R) Core(TM) i5-13600KF (20 threads) ### Issue description 1....
bug,topic:editor,usability
low
Minor
2,682,245,032
vscode
Formatter messes up indentation (even its own)
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid creat...
bug,typescript,javascript,editor-autoindent
low
Critical
2,682,254,414
vscode
Allow selecting extensions when copying a profile
Type: <b>Feature Request</b> v:1.95.3 When creating a new configuration file and choosing to copy from the default configuration, there is no separate option to select which extensions to use in the extensions section. The only options are to select all or none. What is the difference between the new configuration an...
feature-request,user-profiles
medium
Major
2,682,259,723
flutter
[google_maps_flutter] Maps clustering won't cluster items on mobile
### What package does this bug report belong to? google_maps_flutter ### What target platforms are you seeing this bug on? Android ### Have you already upgraded your packages? Yes ### Dependency versions <details><summary>pubspec.lock</summary> ```lock # Generated by pub # See https://dart.dev...
platform-android,platform-ios,p: maps,package,team-ecosystem,has reproducible steps,P2,triaged-ecosystem,found in release: 3.24,found in release: 3.27
low
Critical
2,682,278,064
vscode
Javascript/Typescript formatting options are ignored
![Image](https://github.com/user-attachments/assets/aaf7ac23-c067-409e-8e64-32ab6a30c309) https://github.com/user-attachments/assets/89f74df8-9c1a-482b-962d-25b3bcaf8a12 <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> ...
bug,javascript,formatting
low
Critical
2,682,303,987
rust
"macabi" is not an "ABI" in the same sense as e.g. "gnueabihf"
I know it has the literal characters "abi" in it but it's not an "ABI" in the sense of "gnueabihf", the HF and SF targets use actually-different calling conventions. It should probably have been a `target_env`. Same story with the Apple "sim" targets.
O-macos,O-ios,T-compiler,C-bug,A-targets
low
Minor
2,682,353,547
godot
Changing texture width height on Line2D with tiled texture doesn't update properly automatically
### Tested versions Reproducible in: v4.2.2.stable.official [15073afe3] v4.3.stable.official.77dcf97d8 v4.4.dev5.official.9e6098432 ### System information MX Linux 23.3, 6.1.0-11-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.38-4 (2023-08-08) x86_64 GNU/Linux, OpenGL API 3.3.0 NVIDIA 535.183.01 - Compatibility - Using De...
bug,topic:2d
low
Minor
2,682,430,199
tensorflow
Not GPU detected using tensorflow/tensorflow:latest-gpu docker image
### Issue type Support ### Have you reproduced the bug with TensorFlow Nightly? No ### Source source ### TensorFlow version tensorflow/tensorflow:latest-gpu ### Custom code Yes ### OS platform and distribution Ubuntu 20.04 ### Mobile device _No response_ ### Python version _No response_ ### Bazel versio...
stat:awaiting tensorflower,type:support,comp:gpu,TF 2.18
low
Critical
2,682,441,507
rust
Tracking Issue for `const_array_as_mut_slice`
Add the `const` specifier to `<[T; N]>::as_mut_slice`. ### Public API ```rust impl<T, const N: usize> { pub const fn as_mut_slice(&mut self) -> &mut [T]; } ``` ### Steps / History - [x] Implementation: #133332 - [ ] Final comment period (FCP) - [ ] Stabilization PR ### Unresolved Questions - None yet.
T-libs-api,C-tracking-issue
low
Major
2,682,450,804
pytorch
Rounding issue of tensor sizes when sharding
### 🐛 Describe the bug I have noticed `test_linear_row_wise_parallel` fails when run with 6 GPUs https://github.com/pytorch/pytorch/blob/f2f7ef9d5908f53a5fd7991ed0a1ef99069813a1/test/distributed/tensor/parallel/test_parallelize_api.py#L137 it raises 2 kinds of errors (first from 5 process, the last from 1 pr...
oncall: distributed,triaged
low
Critical
2,682,473,001
flutter
[asset_transformers] Provide the current target platform in the asset transformer
### Use case Developers wanting to transform assets, based on the current target platform (i.e. `flutter build web` -> web; `flutter build apk` -> android), currently cannot infer the target platform during the asset transformation. ### Proposal I propose that the target platform of the `flutter build` invocation is...
c: new feature,tool,a: assets,c: proposal,a: build,P2,team-tool,triaged-tool
low
Minor
2,682,485,861
deno
fmt(svelte): formatter error on dynamic style in svelte
Version: Deno 2.1.1 ```svelte <script lang="ts"> const { color }: { color: string | null } = $props(); </script> <div style="background-color: {color || 'blueviolet'};" > </div> ``` ```txt deno fmt --unstable-component Error formatting: C:\temp\deno-init\test.svelte syntax error at line 6, col 2...
bug,upstream,deno fmt
low
Critical
2,682,562,136
ollama
LLM(vision) GGUF Recommendation: Is there any LLM(vision) with great performance in GGUF format?
### Disappointing Performance It's really strange that I have tried many **LLMs with vision** in `GGUF` format, listed in the official website, such as `Llama3.2-vision`, `llava`, `llava-llama3`, `llava-phi3`. However, all of their performance is disappointing in **vision** aspect, even a simple task like recognizing ...
bug
low
Major
2,682,628,005
kubernetes
bug: RPM repo PGP check fails
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: When trying to ...
kind/bug,sig/docs,sig/release,needs-triage
medium
Critical
2,682,628,604
next.js
Inconsistent behavior of `usePathname` with static rendering during build
### Link to the code that reproduces this issue https://github.com/amannn/nextjs-bug-repro-usepathnamessg/commit/c6b084df43e08a9b043548fb577be8db5f059bde ### To Reproduce Compare the output of `usePathname` in development vs during the static prerender when accessing the route `/test` which uses a rewrite in t...
bug,Middleware
low
Critical
2,682,642,953
rust
Tracking Issue for relnotes interest group ping group
Tracking issue for creating a ping group for relnotes PRs so interested contributors can get pinged for that specific purpose (instead of pinging whole teams like T-compiler which has idk 50+ members). Note that the following steps are derived from [T-compiler notification group procedure](https://forge.rust-lang.org/c...
C-tracking-issue,T-release,A-meta
low
Minor
2,682,656,292
pytorch
[export] run_decompositions fails on `torch.ops.aten.index_put_`
### 🐛 Describe the bug This example started to fail yesterday with the nightly build. ```python import torch class UpdateModel(torch.nn.Module): def __init__(self): super().__init__() self.params = torch.zeros((4, 4, 10)) def forward(self, update, index1, index2): cop...
oncall: pt2,oncall: export
low
Critical
2,682,657,347
godot
[3.x] Particles2D and Multithreaded rendering throws error (Rare)
### Tested versions Tested in Godot 3.5.1, GLES2 [edit] Tested in Godot 3.6, GLES2 ### System information Ubuntu 24.04.1, 64bit, NVIDIA GeForce GTX 1050 Ti ### Issue description When toggling emission of a CPUParticles2D node it will sometimes throw the error: `emit_signal: Error calling method from signal 'frame_...
bug,topic:rendering,needs testing
low
Critical
2,682,663,563
ui
[feat]: Add support for react 19
### Feature description Is there any timeframe or plan to migrate components to react 19? ### Affected component/components Most if not all ### Additional Context The use of forwardRef on same/most components for example is forcing the need to implement some change on the component definition and integration. ###...
area: request
low
Major
2,682,676,995
kubernetes
Failure cluster [34ae9536...] [sig-node] [sig-windows] Container runtime failed test
### Failure cluster [34ae95361eb5abbcb926](https://go.k8s.io/triage#34ae95361eb5abbcb926) ![image](https://github.com/user-attachments/assets/f4fe5ffb-9bb5-4087-969c-a02084e602ee) ##### Error text: ``` [FAILED] Timed out after 300.000s. Expected <v1.PodPhase>: Failed to equal <v1.PodPhase>: Succee...
sig/node,kind/flake,sig/windows,kind/failing-test,needs-triage
low
Critical
2,682,679,379
pytorch
`torch.det` with python 3.10 and torch 2.5.0+cu121 raises RuntimeError
### 🐛 Describe the bug With python 3.10 and torch 2.5.0+cu121, `torch.det` on a cuda tensor raises the following error: ``` RuntimeError: Error in dlopen for library libnvrtc.so.12and libnvrtc-XXXXXXXX.so.12 ``` Code to reproduce: ```python import torch torch.det(torch.rand(4, 4).cuda()) ``` ### Versio...
module: binaries,module: cuda,triaged
low
Critical
2,682,723,393
rust
Tracking issue for release notes of #133293: Updates Solaris target information, adds Solaris maintainer
This issue tracks the release notes text for #133293. ### 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-compiler,relnotes,O-solaris,relnotes-tracking-issue
low
Minor
2,682,734,858
next.js
Turbopack does not respect forceSwcTransforms
### Link to the code that reproduces this issue https://codesandbox.io/p/devbox/peaceful-bhabha-n67k3g ### To Reproduce 1. Have a next config: ``` const nextConfig = { experimental: { forceSwcTransforms: true, turbo: { rules: { "*.svg": { loaders: ["@svgr/webpack"], ...
bug,Turbopack
low
Minor
2,682,752,756
ui
[bug]: cli does not work for simple javascript react code.
### Describe the bug I have created a react project without typescript in `Vite`, Try to install the shadcn using cli it does not work. ```cmd PS D:\User\code\react-test> npx shadcn@latest init ✔ Preflight checks. ✔ Verifying framework. Found Vite. ✔ Validating Tailwind CSS. ✖ Validating import alias. No impo...
bug
low
Critical
2,682,841,285
godot
Godot4.4-dev5: `ClassDB` provides classes AnimationNodeStartState and AnimationNodeEndStatewhere which are not registered
### Tested versions v4.4.dev5.mono.official [9e6098432] ### System information all ### Issue description I iterate over all classes provided by `ClassDB` for testing. Using `ClassDB:get_class_list()` With Godot4.4.dev5 there is now “AnimationNodeStartState”, “AnimationNodeEndState” there are not documented and can...
bug,topic:core,regression,topic:animation
low
Critical
2,682,847,202
react
[React 19] ForwardRef props are not referentially stable, breaking downstream memoizations
## Summary I don't know if this is a known behaviour or a bug, but something that's worth highlighting at least. ForwardRef components are not deprecated, but they're not perfectly backwards compatible either. The mere existance of `ref` prop on a ForwardRef component, even if `undefined`, makes the component ...
React 19
low
Critical
2,682,857,646
transformers
SmolLM is ExecuTorch Compatible
### Feature request ### Feature request Enable SmolLM to ["Export to ExecuTorch"](https://github.com/huggingface/transformers/issues/32253) workflow. #### Instructions Instructions of how to enable this model for ExecuTorch: 1. Export the model to ExportIR. For LLM, to run with performance, typically you wi...
Feature request,ExecuTorch
low
Major
2,682,887,332
next.js
`webpackPrefetch: true` magic comment doesn't work in next v15.0.3
### Link to the code that reproduces this issue https://github.com/gavrilikhin-d/repro ### To Reproduce Test prefetching in production mode 1. ```bash npm install npm run build npm run start 2. Open http://localhost:3000 3. Open the Network tab in the browser's developer tools 4. Click on t...
bug,Webpack,Lazy Loading
low
Critical
2,683,019,203
next.js
`“use cache”` does not serialize the serializable value (but `unstable_cache` serializes)
### Link to the code that reproduces this issue https://codesandbox.io/p/devbox/keen-cloud-gggnf4?embed=1 ### To Reproduce unstable_cache serializes everything and everything works. All logs are output to the console 1. Try entering mail in the field with unstable_cache 2. Try to enter mail again in the f...
bug,dynamicIO
low
Critical
2,683,055,870
go
proposal: net/http: add methods to Request for setting and getting Bearer tokens
### Proposal Details I propose the addition of the following two methods: ```go // SetBearerAuth, if the provided token is valid, sets the request's // Authorization header to use the Bearer authentication scheme with that token // and returns true. // Otherwise, it leaves the request unchanged and returns fa...
Proposal
medium
Major
2,683,058,030
pytorch
numpy's division compiled but returning Different results
### 🐛 Describe the bug I want to compile a model with torch.compile One of the snippets I've used is ```python print(type(self.upsample_scale), self.upsample_scale, "self.upsample_scale") print(1/self.upsample_scale, type(1/self.upsample_scale), "1/self.upsample_scale") rad_va...
triaged,module: numpy,oncall: pt2
low
Critical
2,683,098,350
bitcoin
Add support for creating v3 raw transactions in `createrawtransaction` RPC
### Please describe the feature you'd like to see added. Currently, `createrawtransaction` RPC creates only v2 raw transaction, i.e. the first byte of the serialised transaction hex is `02`. It'd be helpful for the RPC to conditionally create V3 raw transactions if such intent is passed in the arguments of the RPC c...
Feature
low
Minor
2,683,150,077
PowerToys
Fancyzones layout - Snap zone to existing window on the desktop.
### Description of the new feature / enhancement A method of editing a zone to exactly match the edges od a window on the desktop. Maybe key combo while dragging zone highlights a window while hovering over it, then Dropping the Zone snaps it to the dimensions of that window. Maybe an option to snap the edge of a zo...
Needs-Triage
low
Minor
2,683,152,024
rust
`AtomicUsize::from_mut` has incorrect alignment requirements in docs
### Location [`core::sync::atomic::AtomicUsize::from_mut`](https://doc.rust-lang.org/nightly/core/sync/atomic/struct.AtomicUsize.html#method.from_mut) [`core::sync::atomic::AtomicIsize::from_mut`](https://doc.rust-lang.org/nightly/core/sync/atomic/struct.AtomicIsize.html#method.from_mut) ### Summary The documentatio...
E-easy,E-help-wanted,A-docs,T-libs
low
Minor
2,683,231,383
deno
Vitest Coverage v8 & Istanbul Providers Broken
Relates to #23882. Version: Deno 2.1.1 The v8 provider returns 0 for everything. The istanbul provider is just wrong: <img width="977" alt="Screenshot 2024-11-22 at 7 25 54 AM" src="https://github.com/user-attachments/assets/7cf53583-32ba-47ca-a10f-095c1f32ad32"> <img width="492" alt="Screenshot 2024-11-22 at 7...
debugger,testing,node compat
low
Critical
2,683,249,373
electron
Exiting GPU process due to errors during initialization
### Preflight Checklist - [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. - [x] I have searched ...
platform/linux,bug :beetle:
low
Critical
2,683,275,841
rust
Confusing error message when using re-exported struct [E0423]
### Code ```Rust pub use my_mod::MyStruct; // this pub use is causing the problem mod my_mod { #[derive(Debug)] pub struct MyStruct(u32); mod my_sub_mod { use crate::MyStruct; // import the rexported struct fn my_func() { let s = MyStruct(42); println!("MyStruct: ...
A-diagnostics,T-compiler
low
Critical
2,683,276,128
next.js
Relay multi-project configuration doesn't work
### Link to the code that reproduces this issue https://codesandbox.io/p/devbox/crimson-frog-go8s7s ### To Reproduce Provide a Relay configuration that makes use of the multi-project format: ```js module.exports = { root: ".", // For simplicity I'm defining just one project but it doesn't make an...
bug
low
Minor