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
777,370,453
rust
Using associated constant incorrectly errors out with incorrect message about generic types
The following code runs afoul of the check for nested functions with definitions contingent on the value of a generic parameter (or generic associated type) from the parent scope, even though the value in question is a) not in a generic struct, b) not in a trait, c) not in an outer function, and d) guaranteed to be the...
A-diagnostics,A-associated-items,T-compiler,C-bug
low
Critical
777,371,532
rust
Doc alias not allowed on associated constants and types in trait implementation block
<!-- 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 pub trait Trait { const VALUE: u32; } pub struct Struct; impl Trait for Struct { #[doc(alias = "kValue")] ...
T-rustdoc,A-trait-system,A-associated-items,C-feature-request,A-doc-alias
low
Critical
777,397,777
node
pipeline function verify arguments process clarification
I am working through [#36674](https://github.com/nodejs/node/issues/36674) and feeling like I need to clarify one thing: is that ok, that with current `pipeline` function implementation, if invalid argument is encountered during pipe chain build process, all streams that were piped before encounting invalid argument w...
stream
low
Major
777,401,698
rust
`global_asm!` macro causes non-fatal errors to be printed during compilation for some RISC-V extension instructions when targeting the GC extensions
I'm currently using the `asm!` macro on the `riscv64gc-unknown-none-elf` target, and have been getting some "errors" for a while about instructions requiring extensions -- except that GC includes the extensions of the instructions I'm using (IMAFDC). So far I've seen errors for F, D, and A instructions, everything else...
A-LLVM,A-inline-assembly,O-riscv,F-asm,C-external-bug
low
Critical
777,405,363
vscode
Breadcrumbs/selectbox dropdown does not relayout after resizing panel
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been...
bug,breadcrumbs
low
Critical
777,408,060
ant-design
[Component][Select] Is it possible to add option value as customizeIconProps when working with menuItemSelectedIcon
- [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? I'm trying working with property `menuItemSelectedIcon` of Select in which I want to bind a onClick handler to the corresponding ...
Inactive
low
Minor
777,428,840
neovim
Make the :global command respect the \zs regex atom.
<!-- Before reporting: search existing issues and check the FAQ. --> (n/a issue template “fields” removed) ### Actual behaviour When the pattern given to a `:global` command is given a “starting position” (the zero-width `\zs` atom) at some point after a new-line atom (`\n`), the position of the action taken i...
enhancement
low
Minor
777,445,981
flutter
Draggable feedback widget gets an offset when InteractiveViewer is scaled
## Steps to Reproduce <!-- You must include full steps to reproduce so that we can reproduce the problem. --> 1. Put a Draggable widget inside an InteractiveViewer 2. Zoom in 3. Drag the widget and the feedback widget is offset by a few pixels to the bottom right 4. Release and the circle moves up a bit The...
framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Major
777,450,449
TypeScript
index.d.ts is not a module
# Bug Report ### 🔎 Search Terms - index.d.ts - coc-tsserver - module ### 🕗 Version & Regression Information typescript@4.2.0-dev.20210102 - This is the behavior in every version I tried, and I reviewed the FAQ for entries about _________ ### ⏯ Playground Link [Detailed Description](https://...
Needs Investigation
low
Critical
777,458,713
electron
Exposing Chromium's Page Freezing (to the BrowserView API?)
Heya and a happy new year! I was wondering whether there is a shared interest in providing access to [Chromium's Page Freezing](https://chromium.googlesource.com/chromium/src/+/HEAD/chrome/browser/performance_manager/docs/freezing_opt_out_opt_in.md) in Electron? From my understanding it allows non-visible pages to b...
enhancement :sparkles:
low
Major
777,461,205
material-ui
Request for option to have Horizontal Timeline element as well as existing Vertical
Is it possible to have horizontal timeline elements as well along with vertical ones
new feature,waiting for 👍,component: timeline
medium
Critical
777,483,452
opencv
Allow to skip unit tests which depend on opencv_extra
##### System information (version) - OpenCV => 4.5.1 ##### Detailed description The OpenCV test suite has many tests which are self contained, and do not depend on the files from opencv_extra. It would be great to be able to only run these self contained tests. This would allow to run the tests as part of a ...
priority: low
low
Minor
777,491,540
godot
Error with Custom User Dir.
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if using non-official build. --> 3.2.3 Stable **OS/device including version:** <!-- Specify GPU model, drivers, and the bac...
bug,topic:core
low
Critical
777,499,466
puppeteer
page.exposeFunction requires exposed function to stay on `window` object
### Steps to reproduce **Tell us about your environment:** * Puppeteer version: 5.5.0 * Platform / OS version: Windows 10.0.18363 * URLs (if applicable): * Node.js version: 14.15.3 **What steps will reproduce the problem?** _Please include code that reproduces the issue._ ```js const puppeteer=requ...
feature,confirmed
low
Critical
777,503,540
flutter
Allow _SearchPageRoute shown using 'showSearch' to maintain state
## Use case I have an application which uses `showSearch`. Once suggestions are loaded, the user can click one of them which directs them to another screen where the user needs to pick something; at this point the route is popped and the user is taken back to the search UI. Once there, the app needs something from t...
c: new feature,framework,f: material design,f: routes,c: proposal,P3,team-design,triaged-design
low
Minor
777,515,648
vscode
Disallow navigating away from custom editors when retainContextWhenHidden is false and the backup has yet to run orfailed
Repro 1 (backup not yet run): 1. Create a custom editor extension that uses retainContextWhenHidden: false (the default) 2. Make some change that triggers a `CustomDocumentEditEvent` 3. Switch to another tab immediately (before backup runs) 4. Switch back Repro 2 (backup failed): 1. Create a custom editor e...
feature-request,custom-editors
low
Critical
777,521,792
rust
Rust insufficiently optimizes loop { match { } } state machines
This is how a typical state machine might look in Rust: ```rust #[inline(never)] fn print(s: &str) { println!("{}", s); } #[inline(never)] fn exec(mut s: i32) { loop { match s { 0 => { print("0"); s = 2; }, 1 => { print("1"); s = 3; }, 2 => { print("2"...
A-LLVM,I-slow,T-compiler,C-bug,A-mir-opt
medium
Major
777,542,945
godot
KinematicBody2D: odd move_and_slide behaviour when exactly on tile edge
**Godot version:** 3.2.3-official **OS/device including version:** Ubuntu Linux 20.04 **Issue description:** Possibly related to #33833. When using `KinematicBody2D`'s `move_and_slide` or `move_and_slide_with_snap` to enact gravity, I've noticed that when a body is *exactly* on the diagonal edge of a tile: ...
bug,confirmed,topic:physics,topic:2d
low
Major
777,568,610
youtube-dl
Failed to download from Sonyliv
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
geo-restricted,account-needed
low
Critical
777,568,811
godot
SoftBody ignores translation when using GLES2
OS: Windows 10, 64-bit Godot: v3.2.3 stable Processor: AMD Ryzen 7 3700X Graphics: GeForce RTX 2060S, Nvidia driver v460.89 While in GLES2 mode, I placed a few scene instances involving RigidBodies into another scene, translated them into various positions, and hit the play button. **Expected:** the bodies...
bug,topic:rendering,confirmed,topic:physics,topic:3d
low
Critical
777,571,944
rust
Confusing diagnostics resulting from a function with the bound `T: FnOnce() -> T` that takes `T` and returns `T`
I tried this code ([playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=4c66b2f455d1d8e600ba92650cb8a772)): ```rust fn closure_ret_closure<T: FnOnce() -> T>(f: T) -> T { f() } fn main() { closure_ret_closure(|| 4); } ``` I expected to see this happen: Either a ...
C-enhancement,A-diagnostics,A-trait-system,A-closures,T-compiler,D-confusing,D-verbose
low
Critical
777,613,818
pytorch
torch.var and torch.std are not compatible with np.var and np.std
torch.var and torch.std have the following signatures: ``` torch.var(input, dim, unbiased=True, keepdim=False, *, out=None) torch.std(input, dim, unbiased=True, keepdim=False, *, out=None) ``` Which are incompatible with NumPy's signatures: ``` numpy.var(a, axis=None, dtype=None, out=None, ddof=0, keepdims...
triaged,module: numpy,module: deprecation,module: reductions
low
Major
777,621,049
youtube-dl
Can't download twitter videos from private accounts
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
account-needed
low
Critical
777,623,159
pytorch
torch.split is divergent from np.split
Note this issue was previously discussed in https://github.com/pytorch/pytorch/issues/5212, too. Despite having the same name, [torch.split](https://pytorch.org/docs/master/generated/torch.split.html?highlight=split#torch.split) and [np.split](https://numpy.org/doc/stable/reference/generated/numpy.split.html?highlig...
high priority,triaged,module: numpy,module: deprecation
low
Critical
777,624,735
pytorch
torch.Tensor.repeat is divergent from np.repeat
[torch.Tensor.repeat](https://pytorch.org/docs/master/tensors.html?highlight=repeat#torch.Tensor.repeat), as its documentation notes, is divergent from [np.repeat](https://numpy.org/doc/stable/reference/generated/numpy.repeat.html?highlight=repeat#numpy.repeat) but similar to [np.tile](https://numpy.org/doc/stable/refe...
high priority,triaged,module: numpy,module: deprecation
low
Minor
777,633,278
opencv
Big Enedian
##### System information (version) - OpenCV => :grey_question: any (4.5.1) - Operating System / Platform => Debian Sid / Sparc 64 Bit BE - Compiler => :grey_question: any ( but g++ (Debian 10.2.0-15) 10.2.0 ) ##### Detailed description The code is not careful when saving reading values. Most(all) save/load fun...
incomplete,needs reproducer
low
Minor
777,637,366
rust
use PlaceRef abstraction more consistently
We have quite a bit of code that needs to work with the `projections` that make up a [`Place`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.Place.html) or [`PlaceRef`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/mir/struct.PlaceRef.html). Much of it works with the `projection...
C-cleanup,E-mentor,T-compiler,A-MIR
low
Critical
777,672,776
excalidraw
Helm chart?
I have been using excalidraw for the last few months and have been loving it! I am getting ready to move my installation from a local docker deployment to a permanent k8s cluster deployment. I have been looking for a helm chart but have not found one. Am I missing a helm chart somewhere? If not I will start working...
enhancement,discussion
low
Major
777,676,508
bitcoin
duplicate wallet warning after closing and reopening wallet
Built from the v0.21.0rc4 tag on Debian with an SSD. Kernel 4.19.0-13-amd64. Debian GNU/Linux 10 (buster). XFCE4, xfwm4. I have 'wallet=x' (and several other similar lines) in my bitcoin.conf so wallet x loads every time I start the client. I recently used the Qt GUI to close wallet x and then reopened it. Lat...
Bug,GUI,Wallet
low
Minor
777,678,519
flutter
WebView on iOS seems to have a strange behavior on the navigationDelegate
Hi all, I'm building a simple WebView for an online magazine both for Android and for iOS. ``` webview_flutter: ^1.0.7 ``` The online magazine runs on Wordpress. The Wordpress site also has clickable display ads in it. My main goal is to avoid the WebView itself from navigation away from the BaseUrl. But ...
platform-ios,p: webview,package,has reproducible steps,P3,found in release: 2.2,found in release: 2.5,customer: chalk (g3),team-ios,triaged-ios
medium
Critical
777,683,922
node
Stream.pipeline always throw [ERR_STREAM_PREMATURE_CLOSE]
Hello. Stream.pipeline throws error `[ERR_STREAM_PREMATURE_CLOSE]: Closed prematurely`, but the stream throw error `new Error('destroy')`. In a real application, a large file is uploaded, sometimes the server timed out the connection, and when using stream.pipeline it is not clear what error occurred, ERR_STREAM_PR...
stream
low
Critical
777,699,487
TypeScript
Class with 'private [Symbol.iterator]' is iterable outside of the class body
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug
low
Critical
777,701,139
TypeScript
Class with private 'then' method can be awaited outside of the class
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug
low
Critical
777,738,249
terminal
DISCUSSION: Continued commentary about the touch keyboard service
MAINTAINER EDIT: <em> OP here is a rant that disparages my colleague, and frankly, I'm not gonna stand for that. </em> <details> <summary> You can click here to view it if you want, but I'm not gonna let a flame war evolve. </summary> > The five users we've encountered who have disabled this service and inexpli...
Issue-Question,Product-Terminal,Needs-Tag-Fix
medium
Minor
777,744,979
rust
Allow a control flow statement to be decorated with #[allow(unreachable_code)]
Currently it seems that the only way to silence an `unreachable_code` warning is via an interior `#![allow(unreachable_code)]` attribute that would apply to the entire scope or artificially creating a new scope with the inner attribute in question. Would it be possible to allow a control flow statement to be individ...
A-attributes,A-lints,A-diagnostics,T-lang,C-feature-request
low
Critical
777,764,283
TypeScript
Preserve radix when transpiling number literals with separators
# Suggestion <!-- Please fill in each section completely. Thank you! --> ## 🔍 Search Terms * number literals * radix ## ✅ Viability Checklist <!-- Suggestions that don't meet all these criteria are very, very unlikely to be accepted. We always recommend reviewing the TypeScript design goals...
Suggestion,Awaiting More Feedback
low
Minor
777,784,810
godot
Issue with editing dictionaries in the inspector in the remote scene tree
**Godot version:** 3.2.3 stable **OS/device including version:** Windows 10 x64 **Issue description:** Vectors, Dictionaries, etc. can't be edited during runtime when placed inside a dictionary whether or not the dictionary has the export keyword **Steps to reproduce:** create a dictionary with a vec...
bug,topic:editor,confirmed
low
Critical
777,794,838
ant-design
Miss props collection
follow up of #16048 ### Props | Name | Components | Description | | --- | --- | --- | | accept | upload | | | accordion | collapse | | | action | alert, upload | | | actions | card, comment, list | | | active | skeleton | | | activeKey | collapse, tabs | | | activeTabKey | card | | | add | form | ...
💡 Feature Request,Inactive
medium
Critical
777,810,809
pytorch
Inconsistent function name between stub and implementation in `torch.optim.swa_utils`
## 🐛 Bug The argument `avg_fun` in the stub file [here](https://github.com/pytorch/pytorch/blob/e44b2b72bd4ccecf9c2f6c18d09c11eff446b5a3/torch/optim/swa_utils.pyi#L9) is inconsistent with that in the implementation [here](https://github.com/pytorch/pytorch/blob/e44b2b72bd4ccecf9c2f6c18d09c11eff446b5a3/torch/optim/s...
module: typing,triaged
low
Critical
777,829,850
flutter
onHorizontalDragUpdate not working with long press
I want to use both `onLongPressStart` and `onHorizontalDragUpdate` together. But `onHorizontalDragUpdate` is not triggered when long press and try to drag. But It can drag with long-press without using `onLongPressStart`. Note: I can't use the `LongPressDraggable` class. because of this reason https://stackoverflow....
framework,f: gestures,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework
low
Critical
777,847,523
excalidraw
Embedding share links
Hey everyone 👋 – love the project and I've been looking at supporting embedding Excalidraw(ings) inside [Outline](https://github.com/outline/outline), the embed setup is easy on Outline's side and I had something [hooked up in 10 minutes](https://github.com/outline/outline/commit/7af2d382cb0561eef5f8317561cae19121b5b...
enhancement
low
Major
777,872,433
pytorch
Multinomial without replacement produces samples that have zero probability
## 🐛 Bug Since moving to more efficient algorithm for sampling multinomial without replacement, we don't check if probability tensor has enough non-zero elements to sample the requested number of samples. We only check if at least one of the probabilities is positive, and that number of samples is less than number ...
module: distributions,triaged,module: numpy,module: random,module: ux
low
Critical
777,907,362
PowerToys
[Run] Search results should be more categorized
Powertoys Run should categorize search results how KDE Krunner does. ![KRunner](https://user-images.githubusercontent.com/6332266/103514099-9ea94b80-4e74-11eb-83dc-eb84e5d52ffe.png)
Idea-Enhancement,Product-PowerToys Run,Area-User Interface
low
Minor
777,913,817
pytorch
channels_last format convolution is slower than normal NCHW
## 🐛 Bug I tried the new channels_last format which is supposed to speed up NHWC format over NCHW but found it still slower than NCHW. ## To Reproduce Steps to reproduce the behavior: I’m experimenting the different memory layouts based on these two documentation: [Convolutional Layers User Guide](https...
module: performance,module: cuda,triaged,module: memory format
low
Critical
777,937,136
flutter
Installation on Alpine Linux container: unable to 'pub upgrade'
## Steps to Reproduce Assuming the following `Dockerfile`: ``` FROM alpine RUN apk add bash curl file git zip RUN git clone https://github.com/flutter/flutter.git ENV PATH="$PATH:/flutter/bin" RUN flutter channel stable --verbose ``` 1. Go to the directory containing the `Dockerfile` 2. Build it with ...
tool,platform-linux,has reproducible steps,P3,workaround available,team-tool,triaged-tool,found in release: 3.19,found in release: 3.20
medium
Critical
777,974,585
godot
Three layers of Viewports for post processing leads to previous frames being drawn
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if using non-official build. --> 3.2.3 Stable **OS/device including version:** <!-- Specify GPU model, drivers, and the bac...
bug,topic:rendering,confirmed
low
Major
777,975,665
create-react-app
PWA New Updates not reflecting
Hi, I am using cra pwa in my project. I am having 2 issues. 1) The add to home screen is not being asked in all devices but works fine for others 2) If a change is made and deployed it is not being reflected in the app, this also works well for some devices and not for others
needs triage
low
Minor
777,996,904
pytorch
Torch quantized_lstm_cell op out-of-bounds access
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Steps to reproduce the behavior: ```python import torch print(torch.__version__) #'1.7.0' from torch import tensor torch.quantized_lstm_cell(tensor([1,2,3]),[tensor([True, True])], tensor([1,2,3]), tensor([1,2]), ten...
module: crash,oncall: quantization,low priority,triaged
low
Critical
778,038,304
pytorch
Torch _remove_batch_dim OP out-of-bounds access
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Steps to reproduce the behavior: ```python import torch from torch import tensor torch._remove_batch_dim(tensor([272.2390, 136.4415, 18.3361]), 280, 994, 57) ``` Crash [details](https://github.com/aivul/crashes/blob...
module: crash,triaged,module: vmap
low
Critical
778,084,444
go
runtime: unexpected return pc for runtime.sigpanic called from 0x1
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.15.6 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Unable to reproduce. ### What operating system and processor architecture are you using (`go env`)? It's using `golang:1.15.6` docker im...
NeedsInvestigation,compiler/runtime
low
Critical
778,148,401
create-react-app
Bump react-scripts from 3.4.3 to 4.0.1 Fails
<!-- Please note that your issue will be fixed much faster if you spend about half an hour preparing it, including the exact reproduction steps and a demo. If you're in a hurry or don't feel confident, it's fine to report bugs with less details, but this makes it less likely they'll get fixed soon...
needs triage,issue: bug report
low
Critical
778,153,025
create-react-app
jest.config.js
Can i use jest.config.js instead of package.json "jest" area for additional config ? react-scripts test -- --config=jest.config.js with empty {} fails
needs triage
low
Major
778,194,391
opencv
DNN unsupported Layer reorg3d
##### System information (version) - OpenCV => 4.5.0 - Operating System / Platform => Ubuntu 18.04 - Compiler => g++ (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 ##### Detailed description I followed a custom network architecture from a paper that is specialized on small objects. The network loads and works fine...
feature,category: dnn
low
Critical
778,216,729
storybook
Controls: ReactNode type prop crashes Storybook when trying to enter arbitrary values in the corresponding control
**Describe the bug** I have a component, which exposes a prop like `footer: React.ReactNode`. This prop is rendered as a text control with some JSON values populated if I pass any JSX as an argument. This the first problem. The second problem is if I try to remove all the text in the control and type something of my o...
bug,react,addon: controls
low
Critical
778,234,080
rust
Name collision for unit struct for different crate bad error
<!-- 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: (change the `src/bin/init.rs` from https://github.com/pickfire/diesel-multi-join-play) ```rust fn main() { use hello::models::*...
A-diagnostics,T-compiler,D-terse
low
Critical
778,258,383
excalidraw
Double-clicking and dragging goes into unexpected text mode
See below for reproduction: ![excalidraw-bug](https://user-images.githubusercontent.com/1093738/103563918-9f011100-4e8b-11eb-82bf-b04f61b0ed04.gif) 1. Double-click anywhere 2. Start dragging 3. Release mouse **Expected:** Double-click ignored; in "selection mode" **Actual:** Double-click registered; in "tex...
bug
low
Critical
778,268,914
excalidraw
Show changes made after last visit in collaboration mode
When collaborating with others, it would be very handy to know, what changes did occur after one's last visit. Therefore, I propose to somehow highlight the modified elements on the whiteboard, when opening a whiteboard in collaboration mode.
enhancement
low
Major
778,288,177
rust
Overflow in checking recursive trait requirements with specialization
# The issue I'm making a small type-level program that computes the last element of a type-level list. Compiler is `rustc 1.51.0-nightly (80184183b 2021-01-03)`. This program works correctly: ```rust struct Nil; struct Cons<Head, Tail>(std::marker::PhantomData<(Head, Tail)>); trait GetLast { type Output; ...
T-compiler,C-bug,F-specialization
low
Critical
778,307,469
rust
Mismatched lifetime on trait impl shows a misleading error
The rust compiler gives a very poor error message when there is a lifetime expectation mismatch on trait usage. I used this code: (playground link: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=581fa159f8ff99f2df447308fccd4bbc ) ```rust use std::cell::*; #[derive(Default)] struct Te...
A-diagnostics,A-lifetimes,A-trait-system,T-compiler,C-bug,D-confusing,D-papercut
low
Critical
778,354,936
TypeScript
[JS] Incorrectly identifying what "this" is
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been...
Suggestion,Awaiting More Feedback
low
Critical
778,385,233
pytorch
Magma functions that don't have queue argument create cublas handles for each call
E.g. in `magmaCholeskySolve`, magma_<t>potrs_gpu is called which does not have queue argument. Magma implementation creates a queue argument with `magma_queue_create` which creates new cublas handle (that's bad in itself), sets a stream to a newly created stream (also bad, but we insert necessary synchronizations which...
module: performance,triaged,module: linear algebra
low
Minor
778,420,952
excalidraw
Text is blurry when rendered on canvas
**Problem** When the text isn't focused or highlighted, it is fuzzy. When I highlight the font with my cursor it isn't fuzzy. <img width="254" alt="image" src="https://user-images.githubusercontent.com/71530103/103586497-30d04480-4eb3-11eb-8a01-1da81e15dc00.png">
bug,font
low
Major
778,439,445
node
`fs` APIs don't understand AppExecLink reparse points on Windows
<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` P...
fs,windows,libuv
low
Critical
778,446,038
pytorch
resize_ documentation does not match implementation when memory_format is given
## 📚 Documentation Documentation says: ``` memory_format (torch.memory_format, optional) – the desired memory format of Tensor. Default: torch.contiguous_format. Note that memory format of self is going to be unaffected if self.size() matches sizes. ``` But this isn't what happens: ``` > >>> torch.randn((2,...
module: docs,triaged
low
Major
778,510,601
youtube-dl
Only some videos can be downloaded from Lecturio
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
account-needed
low
Critical
778,514,645
go
proposal: time: NewTickerStartingAt and RuntimeStarted
Proposed new functions for NewTickerStartingAt and RuntimeStarted in time NewTickerStartingAt - The function NewTicker has been limiting users as often I need a NewTicker that starts ticking at a specific time. I find many times I was wrapping this timer call in an anonymous function with sleep then a NewTicker. T...
Proposal
low
Minor
778,541,125
go
cmd/link, cmd/cgo: internal linking fails if CGO_CFLAGS enables LTO
### What version of Go are you using (`go version`)? <pre> $ go version go version devel +9eef49cfa6 Mon Jan 4 17:59:30 2021 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes, although the error is a bit different. ### What operating system and processor architecture are...
NeedsInvestigation,compiler/runtime
medium
Critical
778,555,291
go
net: Resolver.LookupIP: document should clarify the return values
The current document on `net.Resolver.LookupIP` was not clear on the return values (i.e. what to expect when `err` is `nil`). Looking into the source code, `LookupIP` uses `internetAddrList` [here][1], and the comment for `internetAddrList` [here][2] does state the slice would contain at least one IP when err is ni...
Documentation,help wanted,NeedsFix
low
Major
778,565,127
go
database/sql: cancelled context in a transaction gives a variable error
# Summary When you're running a transaction with a context, and the context get cancelled, the error you get back when you go to commit is not always the same. Sometimes you see sql.ErrTxDone and sometimes you see context.Cancelled. If you commit after the context is cancelled but before database/sql rolls back the...
NeedsInvestigation
low
Critical
778,586,925
rust
Rustdoc shows impls out of source order
I'm torn on this. On one hand, this is clearly distorting the SGX docs: https://edp.fortanix.com/docs/api/fortanix_sgx_abi/struct.Usercalls.html#asynchronous-usercalls > Due to rustdoc, this section may appear at the top of the Usercalls documentation. You might want to read the other sections first and then come ba...
T-rustdoc,C-bug
low
Major
778,592,238
PowerToys
[Color Picker Editor] Option for window startup location
I have two screens, I want the color picker to detect which screen to display, as PowerToy Run does
Idea-Enhancement,Help Wanted,Needs-Spec,Cost-Small,Product-Color Picker
low
Major
778,608,501
go
x/tools/gopls: can show full type info instead of the name of type alias
I write some code like: ```go type Param struct { Name string } type A = Param func XXX(a A) { } ``` when I put the cursor to the func param `A`, gopls show me `type A = Param`,how about show the origin info of Param instead? I think it's very helpfull. Thanks.
FeatureRequest,gopls,Tools
low
Minor
778,723,188
pytorch
Torch native_layer_norm OP out-of-bounds access
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce ```python import torch from torch import tensor torch.native_layer_norm(tensor([1.0,2,3,4,5]), tensor([1.0]), tensor([1.,2,3,4,5]), 213, 1, 5.280893892284248) ``` Crash [Details.](https://github.com/aivul/crashes/blob/m...
triaged,module: norms and normalization
low
Critical
778,846,448
pytorch
batch_isend_irecv: the receiving end cannot receive large tensors from the sending end correctly
## 🐛 Bug I am using the latest pytorch(1.8 unstable), and found the problem of abnormal data sending/receiving with `batch_isend_irecv` in a simple scenario: two processes act as sender and receiver respectively,when the data is small(tensor_sizes = [10] * 7,7 tensors([0,1,2,...9]) as a batch), it ok, but when the ...
oncall: distributed,triaged
low
Critical
778,870,753
go
encoding/json: add line number to SyntaxError
<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.15.6 linux/amd64 </pre> ### Does this issue reproduce...
NeedsDecision
medium
Critical
778,876,983
TypeScript
Missing error on class extending union of incompatible constructor types
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug
low
Critical
778,883,362
flutter
Ink widget decoration visible or/and renders outside the ListView boundary up to the cacheExtent.
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
framework,f: material design,f: scrolling,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Critical
778,893,799
You-Dont-Know-JS
Ukrainian translation of YDKJS Yet 2nd Edition
Hello, Kyle. We are a Ukrainian non-profit educational community Kottans. We have translated "Get Started" 2nd edition of YDKJSY into Ukrainian and are working on a translation of book 2. We kindly ask you to allow us to publish this translation in our organization's [repo](https://github.com/kottans/You-Dont-Kn...
foreign language translations
low
Minor
778,956,229
TypeScript
'super.prop' should only be allowed for accessors
# Bug Report ### 🔎 Search Terms super property access ### 🕗 Version & Regression Information - This changed in version v1.8.2 ### ⏯ Playground Link <!-- A link to a TypeScript Playground "Share" link which shows this behavior The TypeScript Workbench can be used for more complex setups, try ...
Bug,Help Wanted
low
Critical
778,968,676
TypeScript
'super.prop' in static method should be allowed to access static properties of base class
# Bug Report <!-- Please fill in each section completely. Thank you! --> ### 🔎 Search Terms super property access static ### 🕗 Version & Regression Information - This is the behavior in every version I tried, and I reviewed the FAQ for entries about "super" ### ⏯ Playground Link <!-- A lin...
Bug
low
Critical
778,983,608
flutter
Streaming from assets
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
framework,a: assets,c: proposal,P3,team-framework,triaged-framework
medium
Critical
778,998,186
godot
JavaClass has no method 'notification'
**Godot version:** Godot Engine v3.2.3.stable.official - https://godotengine.org OpenGL ES 3.0 Renderer: NVIDIA GeForce GT 750M OpenGL Engine **OS/device including version:** MacOS Sierra 10.12.6 fails Windows 10 is working fine **Issue description:** During testing for orphan nodes on my project i had...
bug,platform:macos,topic:core
low
Critical
779,085,328
pytorch
Broken LAPACK links in the documentation
The links to LAPACK functions seem to be broken. See for example the links in: https://pytorch.org/docs/stable/generated/torch.geqrf.html In `torch.orgqr` and `torch.ormqr`, it directly points to the main Intel page, but I guess it would be better to point to the actual documentation of the methods: https://pytorch....
module: docs,triaged,module: linear algebra
low
Critical
779,201,489
pytorch
Cannot print 32-bit complex tensors
## To Reproduce ``` import torch # this works: y = torch.rand(2, 2, dtype=torch.complex64) print(y) # this fails: y = torch.rand(2, 2, dtype=torch.complex32) print(y) ``` The following error is produced by the `print()` line: ``` /usr/local/lib/python3.6/dist-packages/torch/tensor.py in __repr__(s...
module: docs,module: printing,triaged,module: complex,module: half
low
Critical
779,217,076
youtube-dl
[request] playsuisse.ch (New Swiss-SRF Media Archive)
## Checklist - [ x ] I'm reporting a new site support request - [ x ] I've verified that I'm running youtube-dl version **2021.01.03** - [ x ] I've checked that all provided URLs are alive and playable in a browser - [ x ] I've checked that none of provided URLs violate any copyrights - [ x ] I've searched the bug...
site-support-request
low
Critical
779,236,389
pytorch
Errors when coercing complex numbers of various sizes
Runtime errors when multiplying tensors involving complex numbers and non-matching bit widths. ## To Reproduce ``` import torch torch.tensor(4j, dtype=torch.complex32) * torch.tensor(2.0, dtype=torch.float64) torch.tensor(4j, dtype=torch.complex32) * torch.tensor(2.0, dtype=torch.complex64) ``` The first...
triaged,module: complex,module: half
low
Critical
779,288,453
PowerToys
[KBM] add support for when to remap keys, on key down or key up
null
Idea-Enhancement,Product-Keyboard Shortcut Manager
low
Major
779,308,749
kubernetes
Remove OpenAPI formats that don't make much sense.
We document (as of https://github.com/kubernetes/kubernetes/pull/85381) that we support the following formats: ``` // format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated: // // - bsonobjectid: a bson object ID, i.e. a 24 characters hex string // - uri: ...
kind/bug,sig/api-machinery,lifecycle/frozen,triage/accepted
medium
Critical
779,308,973
opencv
[Feature Request] - Transparency For Drawing Functions
Would like to request that all the drawing functions (Rectangle, Line, Circle, Text, etc.), have a _transparency_ parameter/setting that specified the amount of their opacity, therefore enabling them to blend with the pixels they are drawn over.
feature,category: imgproc
low
Minor
779,313,209
opencv
[Feature Request] - Blend Modes For Drawing Functions
Would like to request that all the drawing functions (Rectangle, Line, Circle, Text, etc.), have a _blend mode_ parameter/setting that specified the _type_ of their opacity, therefore enabling them to blend with the pixels they are drawn over in various _ways/styles_ Blend Modes (description) : [http://en.wikipedia...
feature,category: imgproc
low
Minor
779,316,333
opencv
[Feature Request] - Rectangle(); Rounded Corners
Would like to request that all the drawing function _Rectangle_ have a rounded corners options with that specifies the _amount_ of roundness, and which _corners_ to round.
feature,category: imgproc,priority: low
low
Major
779,325,536
opencv
[Feature Request] - Line Styles; More
Would like more line styles for Drawing functions (e..g Line). As many more as possible, e.g. Dot, Square, Striped, etc... .. Each line style with additional parameters. e.g. width, ,spacing, etc. Maybe also specifying some image data/image file (bitmap and vector) for use as the line style
feature,category: imgproc,priority: low
low
Minor
779,338,694
go
x/crypto/ssh: fix documention for ssh.NewServerConn to avoid potential DoS attack
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.15.2 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> Output</summary...
Documentation,NeedsInvestigation
low
Critical
779,344,728
TypeScript
Invalid error on computed property name using a variable with the same name as a constructor parameter of that class
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug
low
Critical
779,355,512
go
x/crypto/ocsp: OCSP responses signed by invalid OCSP responder certificate should return signature verification error
In case of OCSP reponse signed with embedded OCSP responder cert (not by CA cert directly) ParseResponse from ocsp package does not check if embedded OCSP responder certificate is expired. It seems... https://pkg.go.dev/golang.org/x/crypto/ocsp#ParseResponse https://github.com/golang/crypto/blob/master/ocsp/ocsp...
NeedsInvestigation
low
Critical
779,363,848
TypeScript
Proposal: Operator overloading and primitive type declarations
# Suggestion ## 🔍 Search Terms Operators, operator types, operator overloading ## ✅ Viability Checklist My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code * [x] This wouldn't change the runtime behavior of existing JavaScript code * [x...
Suggestion,Awaiting More Feedback
medium
Critical
779,366,016
opencv
[Feature Request] - Image Format Support: JPEG XT
Would like to request support for the following image format (loading, saving). Support for image data, metadata (Exif/XMP), and all other features. JPEG XT
feature,category: imgcodecs
low
Minor
779,392,318
TypeScript
[Feature] Import non-js content as const string
# Suggestion There is a need for a way to import non-js content and process that content to produce TypeScript definitions, as asked for in for example #16607. But with the template literal types introduces in TS 4.1 I believe most of this can be solved without a plugin system. There are examples of projects that pa...
Suggestion,Awaiting More Feedback
low
Major
779,439,556
vscode
Provide a "declaration" icon overlay
<!-- ⚠️⚠️ 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. --> For C/C++ extension, we would like a "declaratio...
feature-request,editor-symbols
low
Major
779,498,702
flutter
Launch Screen jumps or moves downwards before the layout is loaded in Full Screen app
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
platform-android,engine,a: quality,a: layout,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-android,triaged-android
low
Critical