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
462,353,416
terminal
Add support for a separate color / image for padding area background
# Summary of the new feature/enhancement I'd like to be able to specify a separate background color, image, etc. for the area in the margin (padding) in the terminal window. This uses a background image and padding value, but fails when resized to anything but the golden value of both. ![c64 term](https://user...
Help Wanted,Area-TerminalControl,Area-Settings,Product-Terminal,Issue-Task
low
Major
462,371,788
pytorch
scatter_ supporting different reduction modes
## πŸš€ Feature Currently, we have `scatter_` and `scatter_add_`. However, in use-cases such as Graph Neural Networks, it's common to wanting to do other reductions than add. As a case in point, @rusty1s has written https://github.com/rusty1s/pytorch_scatter which has `add`, `sub`, `mean`, `max`, `min`, `std`, `mu...
high priority,module: sparse,module: internals,triaged,enhancement,module: scatter & gather ops
medium
Minor
462,374,215
TypeScript
code example is not correct in Intersection Types section
**Code** ```ts function extend<First, Second>(first: First, second: Second): First & Second { const result: Partial<First & Second> = {}; for (const prop in first) { if (first.hasOwnProperty(prop)) { (result as First)[prop] = first[prop]; } } for (const prop in s...
Docs
low
Minor
462,407,720
godot
2D Texture Bleed when game is scaled
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.1.1.stable.official <!-- Specify commit hash if non-official. --> **OS/device including version:** Linux Mint 19.1 <!-- Specify GPU model and d...
bug,topic:rendering
low
Minor
462,441,384
godot
Imposible to select multiple entries in orphan resource explorer at once
**Issue description:** I can't select more than one entry in orphan resource explorer. It is very frustrating, when I working on big project. ![Zrzut ekranu z 2019-06-30 22-01-54](https://user-images.githubusercontent.com/41945903/60401550-87084d00-9b83-11e9-9bff-287700d45efd.png)
enhancement,topic:editor,usability
low
Minor
462,449,197
rust
compiler_fence may emit machine code
As discovered [there](https://github.com/rust-embedded/wg/issues/361#issuecomment-505146286) `compiler_fence` produces `atomic_fence(ordering, SingleThread)` construction, which in turn can produce a non-empty code sequence. In fact, LLVM backends for AVR, PowerPC, RISC-V and Spark do not treat SingleThread fence as so...
A-LLVM,A-codegen,T-compiler,A-docs,C-bug,I-heavy,O-riscv,A-atomic
low
Major
462,452,470
godot
[Bullet] Bullet physics: scaled collision shapes return incorrect normals
**Godot version:** Godot 3.1.1 and Godot 3.2.dev.b4aba3ae7 **OS/device including version:** Windows 10 64bit, Nvidia 660 TI **Issue description:** Bullet physics doesn't seem to take the scale of the collision shape into account when returning the normal vector from a Raycast, though the position returned is a...
topic:physics
low
Critical
462,453,633
pytorch
Storage operation failing on second GPU
## πŸ› Bug Certain operations on the storage of CUDA tensors cause a crash when using the non-default GPU device. ## To Reproduce 1. Find a multi-GPU machine. 2. Run a Python interpreter with `CUDA_LAUNCH_BLOCKING=1 python` (the bug will occur without setting the environment variable too, but it will just hang...
module: cuda,triaged
low
Critical
462,460,181
rust
TokenStream::to_string doesn't respect Joint in all cases
Example: ```rust #[proc_macro] pub fn m(input: proc_macro::TokenStream) -> proc_macro::TokenStream { let s = input.to_string(); proc_macro::TokenStream::from(proc_macro::TokenTree::Literal(proc_macro::Literal::string(&s))) } fn main() { dbg!(m!(<=>)); } ``` Output: `m!(<= >) = "<= >"`; Expe...
A-macros,T-compiler,C-bug
low
Minor
462,463,544
TypeScript
setTimeout defined in lib.dom.d.ts is not type safe
<!-- 🚨 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,Domain: lib.d.ts
low
Critical
462,519,580
TypeScript
int32 type returned by bitwise operators
## Search Terms bitwise operators, integer type, int32 ## Suggestion Add an `int32` subtype for `number` returned by TypeScript from bitwise operators. ```ts function coerce(n: number): int32 { return n | 0; } ``` JavaScript bitwise operators [coerce arguments to int32](https://tc39.es/ecma262/#sec...
Suggestion,Awaiting More Feedback
low
Major
462,538,353
neovim
TermClose autocmd can free `curbuf`
- `nvim --version`: NVIM v0.4.0-1191-g740fb337d - `vim -u DEFAULTS` (version: 8.1) behaves differently? It doesn't have a `TermClose` event - Operating system/version: Fedora Linux 30 - Terminal name/version: gnome-terminal - `$TERM`: xterm-256color ### Steps to reproduce using `nvim -u NORC` ``` nvim -u NOR...
terminal,bug-crash
medium
Critical
462,554,672
terminal
Unit test framework for terminal emulation
# Summary of the new feature/enhancement <!-- A clear and concise description of what the problem is that the new feature would solve. Describe why and how a user would use this new functionality (if applicable). --> Currently, terminal emulation for unix is extremely incomplete. - The parser fails in many ...
Issue-Feature,Area-VT,Product-Terminal
low
Critical
462,615,553
go
x/net/websocket: add runnable versions of examples mentioned in Server.Handshake documentation
https://godoc.org/golang.org/x/net/websocket there is missing example for redefining your own check origin callback or even disabling the existing one
Documentation,help wanted,NeedsFix
low
Minor
462,643,605
youtube-dl
Mikan School
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
462,655,911
TypeScript
`strictPropertyInitialization` should allow private initialization helpers
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms - strictPropertyInitialization - class initialization helper ...
Suggestion,In Discussion
low
Critical
462,684,074
java-design-patterns
Kappa Architecture
**Description:** The Kappa Architecture is a data processing architecture that provides a simplified approach to handling both real-time and batch data processing. Unlike the Lambda Architecture, which requires separate paths for batch and real-time processing, the Kappa Architecture uses a single stream processing eng...
info: help wanted,epic: pattern,type: feature
medium
Major
462,706,769
node
Restart frame is broken
<!-- Thank you for reporting a possible bug in Node.js. Please fill in as much of the template below as you can. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Subsystem: if known, please specify the affected core module name If possible, please pro...
inspector
low
Critical
462,734,093
opencv
[ JavaScript ] [ Feature Request ] xfeatures2d.SIFT_create and similar Feature Detection alg.
Or maybe I just miss something, what's the point of the algorithm implementation on js, without further possibility to work with the results ?
incomplete,category: javascript (js)
low
Minor
462,739,896
go
cmd/go: GOPROXY default can make 'get -u' lag upstream repository
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version devel +623d653db7 Sat Jun 29 13:17:15 2019 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? No, because Go 1.12 do...
NeedsDecision,modules
medium
Critical
462,802,658
vscode
Allow for configuration files in .devcontainer
Currently I don't seem to know a good way to have container-specific settings, tasks, and launch configurations. The closest thing to it is to set up settings.json, tasks.json, and launch.json in the workspace .vscode folder, but then it applies to the workspace when you open it normally. It would be ideal if we ...
feature-request,debug,tasks
low
Major
462,808,657
TypeScript
Generic type can't be assigned to the same DeepReadonly type
<!-- 🚨 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
462,835,601
pytorch
Sparse allreduce for ProcessGroupNCCL
In #22036 we added sparse allreduce for ProcessGroupGloo. It works for sparse CUDA tensors, but doesn't leverage InfiniBand like NCCL does. Therefore, we should have a sparse allreduce implementation for ProcessGroupNCCL as well.
oncall: distributed,feature,triaged
low
Major
462,839,881
TypeScript
Extra slashes allowed in import paths
<!-- 🚨 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
462,844,458
go
proposal: crypto/x509: ability to add custom curve when parsing X509 certificate
Per https://github.com/golang/go/issues/26776, using a third party library for custom curve is advised. However, when parsing x509 certificate (`x509.ParseCetificate()`), it is not possible to supply custom curve. My proposal is to offer a configuration that can be used to supply a function to return `elliptic.C...
Proposal,Proposal-Hold,Proposal-Crypto
medium
Major
462,852,206
rust
Move `compile-pass` tests to `check-pass` or `build-pass`
`compile-pass` was the old way to assert that UI tests were able to successfully build. However, it would do a full build of the code, including codegen and linking. Many of our tests don't need this, however, and should instead use the new `check-pass`, introduced in https://github.com/rust-lang/rust/pull/61778. For t...
C-cleanup,A-testsuite,E-mentor,T-compiler,E-medium,A-compiletest
low
Major
462,852,648
kubernetes
Dynamic informers do not stop when custom resource definition is removed
**What happened**: Once started, dynamic informers for custom resources are not stopped. **What you expected to happen**: After the dynamic informers resynced, they would stop informers belong to no-longer-existing resources. **How to reproduce it (as minimally and precisely as possible)**: 1. Start a clus...
kind/bug,sig/api-machinery,priority/important-longterm,lifecycle/frozen
high
Critical
462,873,617
pytorch
PyTorch Tensor subclasses and protocols for NumPy interoperability
## πŸš€ Feature This is a description of several related features that are best considered together. 1. Allow subclassing `Tensor` and propagating subclass instances correctly with `torch` functions, operators, using views/slices/etc. 2. Support the NumPy array protocols 3. Allow other libraries to reuse the PyTo...
high priority,feature,triaged,module: numpy
medium
Critical
462,900,219
youtube-dl
[dailytelegraph] site support
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
462,901,884
pytorch
Build failure with setup.py
Hi. I was building pytorch with setup.py and after ``` [100%] Built target torch_python Install the project... -- Install configuration: "Release" ``` And some output about copying files I got the following error: ``` running build_ext -- Building with NumPy bindings Traceback (most recent call last): File...
module: build,triaged
low
Critical
462,904,089
terminal
ConPTY sends two `WINDOW_BUFFER_SIZE_EVENT` messages when the window is restored from maximize
I think I found one resize bug. A ConPTY sends two `WINDOW_BUFFER_SIZE_EVENT` messages when the window is restored from maximize, but the first one has the wrong size (not sure of the internals of this, but it appears in conhost/tmux/pwsh, alacritty/pwsh, and Windows Terminal). Run [this program](https://github.com/...
Product-Conpty,Area-Server,Issue-Bug,Priority-3
low
Critical
462,909,995
flutter
Flutter run with local engine in profile mode now requires arm64 on 64 bit devices
Previously, I was able to do: ``` flutter run --profile --local-engine=android_profile ``` On an arm64 device and it worked. Now this results in a not found for `libflutter.so`, which it can't find in a `lib/arm64` directory. If I do ``` flutter run --profile --local-engine=android_profile_arm64 ``` ...
team,tool,a: quality,P2,team-tool,triaged-tool
low
Minor
462,910,178
rust
Tracking issue for `slice_take`
Feature gate: `#![feature(slice_take)]` ### Public API ```rust impl<T> [T] { fn take<'a, R: OneSidedRange<usize>>(self: &mut &'a Self, range: R) -> Option<&'a Self>; fn take_mut<'a, R: OneSidedRange<usize>>(self: &mut &'a mut Self, range: R) -> Option<&'a mut Self>; fn take_first<'a>(self: &mut &'...
T-libs-api,C-tracking-issue,A-slice,I-libs-api-nominated
medium
Critical
462,924,779
pytorch
CPU random number generator is slow
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce ``` import torch from time import perf_counter def run(): ys = 0 with torch.no_grad(): for _ in range(100): ys = ys + torch.rand(256, 20).mm(torch.rand(20, 20)).mean() # ys =...
module: performance,triaged,module: random
low
Critical
462,930,354
pytorch
Add support for serializing Mkldnn Tensor
## πŸ› Bug Currently ## To Reproduce ```python import torch dense_tensor = torch.randn(1, dtype=torch.float) mkldnn_tensor = dense_tensor.to_mkldnn() torch.save(mkldnn_tensor, 'mkldnn_tensor.pt') ``` Throws error: ``` RuntimeError Traceback (most recent call last) <ipy...
module: serialization,triaged,module: mkldnn
low
Critical
462,940,953
flutter
Semantics Tree API should not allow cycles, multi-parent children
Today the engine API would allow cycles or multi-parent children, which aren't really valid on any of the platforms we support. We should add asserts to prevent this.
framework,engine,a: accessibility,P2,team-engine,triaged-engine
low
Minor
462,948,245
flutter
Platform view accessibility does not respond to taps on Moto G 4
Running the webview example project on a Moto G 4, tapping on elements within the webview does not focus them. Instead, to give talk back focus to anything within the webview, I have to swipe left/right. Tapping on Flutter widgets, however, does correctly focus them for talk back. The Moto G 4 that I'm using is runn...
e: device-specific,platform-android,engine,a: accessibility,a: platform-views,P2,a: plugins,team-android,triaged-android
low
Major
462,949,506
node
SIGTERM handler does not run if there are no tasks running and exit code is always 0
<!-- Thank you for reporting a possible bug in Node.js. Please fill in as much of the template below as you can. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Subsystem: if known, please specify the affected core module name If possible, please pro...
confirmed-bug,process
low
Critical
462,950,222
godot
Some files and folders are not shown in the editor when a file has this character in its name.
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** v3.1.1.stable.official <!-- Specify commit hash if non-official. --> **OS/device including version:** Arch Linux, Dell Inspiron 5000 series <!-- Sp...
bug,platform:linuxbsd,platform:macos,topic:editor
low
Critical
462,953,414
rust
Mutually recursive `async fn`s are hard to make `Send`
There are several other related issues to this, but I'm opening this to track this one specifically since it's a pain-- there are workarounds, but it'd be lovely (and should be possible) to make this "just work." The following example compiles just fine without ` + Send`, but adding the `Send` bound causes a cycle erro...
T-compiler,A-async-await,AsyncAwait-Triaged
low
Critical
462,957,015
kubernetes
Improve logging when AD controller lets kubelet attach volumes
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Add a lower-level log (2) and/or pod event (info level) whenever the attach detach controller decides to skip processing a volume and let kubelet handle the attaching. **Why is this needed**: The typi...
priority/backlog,sig/storage,kind/feature,lifecycle/frozen
low
Critical
462,981,430
TypeScript
Include sourcemaps in Typescript NPM package.
## Search Terms typescript.js.map typescript.js source map ## Suggestion I would like `typescript.js.map` to be included in the distributed NPM package, along with the original sources. This could be achieved either with `inlineSources: true` or by including the `src` folder in the NPM package. ## Use Cases I...
Suggestion,Awaiting More Feedback
low
Major
462,988,288
rust
pthread_cond_signal/pthread_cond_broadcast return EAGAIN after retrying 8192 times in macOS
Since OSX 10.7 (Lion), pthread_cond_signal and pthread_cond_broadcast return EAGAIN after retrying 8192 times. - 10.7.0 (Lion): http://www.opensource.apple.com/source/Libc/Libc-763.11/pthreads/pthread_cond.c - 10.8.0 (Mountain Lion): http://www.opensource.apple.com/source/Libc/Libc-825.24/pthreads/pthread_...
O-macos,T-libs-api
low
Minor
462,990,882
create-react-app
postcss-modules-values variables isn't working in a non-module css/scss files
<!-- 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...
issue: bug
low
Critical
463,008,154
go
syscall: Stat_t with different fields' name between Darwin and Linux
### What version of Go are you using (`go version`)? <pre> $go version go version go1.12.6 darwin/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</summ...
Unfortunate,NeedsInvestigation,compiler/runtime
low
Critical
463,080,936
TypeScript
MediaQueryList.prototype.addListener & removeListener are marked as deprecated
<!-- 🚨 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
medium
Critical
463,128,227
flutter
CupertinoSegmented control widget doesn't work as intended with SingleChildScrollView widget
**CupertinoSegmentedControl** doesn't work properly under **SingleChildScrollView** if the child container becomes scrollable (when it exceeds the viewport and needs to scroll to see further). Switch the segments for a few times to understand [Code to reproduce](https://pastebin.com/PkCiZp5e)
framework,f: scrolling,f: cupertino,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-design,triaged-design
low
Major
463,128,590
TypeScript
Suggestion: Add built-in vanilla constructor interface
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms 1. built-in constructor interface <!-- List of keywords you s...
Suggestion,Awaiting More Feedback
low
Critical
463,132,539
TypeScript
Support Unicode RegExp property escapes
TypeScript currently doesn't transpile Unicode property escapes (of the form `\p{ID_Start}` or `\P{ASCII}`) in regular expressions. It would be great if it did! https://www.typescriptlang.org/play/?target=1#code/MYewdgzgLgBATgUwOYIB4wLwwPQB0AOA3gMrBwCW+UGA4oggNYC+2ArgNwBQokIANggB0fEEgAUiFKkFQE0MQHJAA8AKAlKvZA ...
Suggestion,In Discussion
low
Major
463,167,280
create-react-app
Clarify polyfilling and browserlist usage documentation
Hi, The [docs about supported browsers](https://facebook.github.io/create-react-app/docs/supported-browsers-features) is not clear. After reading it i still dont understand the following : - If the polyfills are not imported, what the browserlist field in package.json is used for ? - If i need to support ie11...
issue: proposal,tag: documentation
medium
Major
463,174,752
TypeScript
Code completion: suggest tokens from "paths" in tsconfig.json
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms Code completion; module ## Suggestion ## Use Cases For ...
Suggestion,In Discussion
low
Critical
463,195,272
pytorch
Weak Symbols Resolution Causes Segmentation Fault in External Libraries
## πŸ› Bug PyTorch causes segfault in internals of PyArrow during reading a parquet file. ## To Reproduce In order to reproduce, run the code below. ```python # filename: script.py import torch as T import pyarrow.parquet tbl = pyarrow.parquet.read_table(tablename) ``` During execution of the code ...
triaged
low
Critical
463,225,567
flutter
User touch and draw polygon over google map
<!-- 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...
c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Critical
463,325,816
pytorch
Tracing an RNN does not support torch.nn.utils.rnn.PackedSequence as input
## πŸ› Bug `torch.jit.trace` over a RNN (GRU, LSTM) does not work when you feed it with a PackedSequence (as the ones created by `torch.nn.utils.rnn.pack_padded_sequence`). However, this works in eager mode. ## To Reproduce ```python import torch torch.jit.trace(nn.LSTM(input_size=300, ...
oncall: jit,triaged
low
Critical
463,354,195
pytorch
Move csrc/distributed/c10d/{comm,reducer} to libtorch.so
These classes should be part of `libtorch.so` but are currently part of `libtorch_python.so`. cc @mrshenli
oncall: distributed,triaged
low
Minor
463,383,959
TypeScript
Offer an auto-import for unresolved shorthand-named object literal properties
<!-- Please search existing issues to avoid creating duplicates. --> suppose I have exported an object called `Foo` in `foo.js`, and in another file I want to use something like this: ```JavaScript export default configure({Foo}) ``` autocomplete will not show `Foo` and of course, will not auto import from that fi...
Suggestion,Awaiting More Feedback
low
Major
463,388,498
godot
Tilemap_editor_plugin add tile information to item tooltip
<!-- 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 non-official. --> 3.2 or later feature proposal **OS/device including version:** <!-- Specify GPU model and drivers if g...
enhancement,topic:editor
low
Major
463,426,788
flutter
Analyze generated code in flutter_tools
flutter_tools generates some dart code to run tests, see https://github.com/flutter/flutter/blob/master/packages/flutter_tools/lib/src/test/flutter_platform.dart. Unfortunately it seems like that generated code is never analyzed and currently has analyzer issues. We should add some kind of a test that runs the outpu...
a: tests,c: new feature,team,tool,P3,team-tool,triaged-tool
low
Critical
463,437,673
flutter
Implement TransformToSliverAdaptor
<!-- 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...
c: new feature,framework,a: animation,f: scrolling,P3,team-framework,triaged-framework
low
Critical
463,441,057
flutter
Update attach to not require a device
As we discussed with @jonahwilliams in the document, the device is required only so that we know how to do port forwarding, and for embedding Flutter on Java Swing we don't need this.
tool,c: proposal,P3,team-tool,triaged-tool
low
Minor
463,455,925
flutter
Update 'flutter screenshot' to fail better if a device doesn't support screenshots
I'm using Flutter master branch version 1a374d820de32d359c06a8ecf0e1348e3ce69a5a, and the following error happened although the `flutter device` does show a connected Moto G4 device: ``` liyuqian@liyuqian:~/Downloads$ flutter devices 3 connected devices: Moto G 4 β€’ ZY2245H6KS β€’ android-arm β€’ Android 7.0 (API...
c: new feature,tool,a: quality,customer: dream (g3),P2,team-tool,triaged-tool
low
Critical
463,460,477
youtube-dl
Blogger Video Support
## Checklist <!-- Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl: - First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.07.02. If it's not, see https://yt-dl.org/update ...
site-support-request
low
Critical
463,476,437
TypeScript
[Feature request] sort literals in .d.ts
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms <!-- List of keywords you searched for before creating this issu...
Suggestion,Effort: Difficult,Experience Enhancement
medium
Critical
463,477,409
rust
Coherence violation when inherent method is added to type
It seems that because inherent methods are always called before trait methods, when a dependency adds an inherent method to a struct (which _should_ be a backwards-compatible change to its API requiring no major semver bump) your code that was previously calling a trait method on that struct will (silently) switch to c...
A-trait-system,T-compiler,T-types
low
Critical
463,489,524
rust
`size_of_val` in a generator can make the generator bigger
Consider the following code: ```rust async fn foo() { let mut x = get_future(); dbg!(std::mem::size_of_val(&x)); x.await } ``` Today, having the `dbg!` line _roughly doubles_ the size of the future returned by `foo`. More precisely, it causes us to allocate storage for `x` twice (once for `x`, and onc...
C-enhancement,T-compiler,A-coroutines,I-heavy,C-optimization
medium
Major
463,520,188
flutter
Review plugins lifecycle
go/flutter-plugin-registration Review the plugin framework for add-to-app scenarios where either - plugins might never be invoked or needed during the application's runtime but nevertheless can run code or latch onto host application events - multiple flutter engines are created but not all engine instances nee...
engine,a: existing-apps,P2,a: plugins,team-engine,triaged-engine
low
Minor
463,595,001
vscode
[json] format on save should remove last trailing comma in JSON with json-language-features
I am using `json-language-features` to autoformat my JSON/C files but sometimes I accidentally add a last trailing comma on some props or forget one while moving props around. `json-language-features` will print an error then but does not autoformat it and removes the last comma or adds a missing which IMO would be ver...
feature-request,json
low
Critical
463,648,413
terminal
Epic: Add configuration options for font rendering things (fallback, line height, ligatures, ...)
```[tasklist] ### Tasks - [x] #759 - [ ] #2664 - [x] #1298 - [ ] #5093 - [ ] #3498 - [ ] #956 - [x] #1751 - [x] #5828 - [x] #6049 - [ ] #10231 ``` ### consider (backlog) - [x] #6678 should we support fractional point sizes? #### original content This is a summary from #714 #455 - To prope...
Issue-Feature,Area-Rendering,Product-Terminal
medium
Critical
463,658,442
pytorch
"Floating point exception" after trying the method from the issue #22382
in order to use libtorch c++ API.I tried an example from:https://pytorch.org/tutorials/advanced/cpp_export.html#a-minimal-c-application. Firstly, I got the same bug report with issue #22382. Then, I tried the method from it and 'make' succeed! Howerver, I got the problem 'Floating point exception' after executing '....
oncall: jit,triaged
low
Critical
463,702,174
terminal
Feature request: create new profile from .lnk file
# Summary of the new feature/enhancement Development environments, such as Visual Studio, SDKs, etc. install shortcuts that open command prompts with a pre-configured environment (e.g. "x64 Native Tools Command Prompt for VS 2019"). It's tedious and error prone to copy settings from these shortcuts. Terminal should ...
Issue-Feature,Help Wanted,Area-Settings,Product-Terminal
low
Critical
463,717,644
material-ui
[Drawer] Container of Drawer jumps
<!--- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❀️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x] --> - [x] This is not a v0.x ...
bug πŸ›,component: transitions
low
Critical
463,760,978
go
x/mobile: iOS project won't compile with framework built by gomobile
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12.6 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture a...
help wanted,NeedsInvestigation,mobile
low
Critical
463,821,037
TypeScript
Dead return statements in a generator should offer a did-you-mean-yield codefix
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 --> <!-- Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the CONT...
Suggestion,Experience Enhancement
low
Critical
463,858,214
TypeScript
Spread with enum index key, invalid members don't trigger errors
**TypeScript Version:** 3.5.1 **Search Terms:** object spread enum index missing keys **Code** [Playground link has code](https://www.typescriptlang.org/play/#code/KYOwrgtgBAcg9gFwJYDMkGMCGy4gLLAAmSkUA3gFBTVQCCACvQDRU30ASA8jAKIUC+FCqFLxkaLDhAAVAJ4AHYOVbUAYpwAyGzgHUeAERY0oGgJIBpAwKFIQCYACcUmdErGoM2JLnoPgKR1BXA...
Needs Investigation
low
Critical
463,868,923
godot
AnimatedTexture sprite sheet support
**Godot version:** <!-- Specify commit hash if non-official. --> 3.1 **Issue description:** <!-- What happened, and what was expected. --> AnimatedTexture is not capable of using AtlasTextures for its frames. When loading an AtlasTexture the animation will stop, and the entire first frame displays. **Steps to...
enhancement,confirmed,topic:2d
medium
Major
463,871,488
rust
Rustdoc should warn about unused reference links
rustdoc can easily generate external links by using a full URL as the target. However, this only works with inline links. It doesn't work when using footnote links, sometimes called "reference links". If you try to use a full URL as the target of a footnote link, rustdoc will throw up a `intra_doc_link_resolution_fa...
T-rustdoc,C-enhancement,E-medium,A-intra-doc-links
low
Critical
463,872,419
terminal
Terminal should force pseudoconsole host into UTF-8 codepage by default
It's 2019, after all. Maybe we should introduce a flag that starts up the pseudoconsole host in codepage 65001 so that we make good on our promise of "emoji just work and everything else works like it should too," and use WT as a _real_ opportunity to push the boundaries here. ``` πŸŒ› πŸ’ͺ πŸ’ͺ πŸ‘– ``` <!-- fit...
Product-Conpty,Area-TerminalConnection,Product-Terminal,Issue-Task,Priority-3
medium
Critical
463,883,648
go
net/http/httptrace: attaching a ClientTrace twice to the same context causes stack overflow
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12.5 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What did you do? ``` package main import ...
help wanted,NeedsInvestigation
low
Critical
463,883,822
pytorch
Error in equation
## πŸ“š Documentation Small error in the comment documenting cosine simularity. I think: ` \text{similarity} = \dfrac{x_1 \cdot x_2}{\max(\Vert x_1 \Vert _2 \cdot \Vert x_2 \Vert _2, \epsilon)}.` , should be: ` \text{similarity} = \dfrac{x_1 \cdot x_2}{\max(\Vert x_1 \Vert _2 \cdot \Vert x_2 \Vert _1, \epsi...
module: docs,triaged
low
Critical
463,885,753
pytorch
`binary_linux_libtorch_2.7m_cu100_devtoolset3_build` times out after running for 5 hours
Example build: https://circleci.com/gh/pytorch/pytorch/2133467. CircleCI puts a hard limit of 5 hours on each build, and as a result we need to break up the `binary_linux_libtorch_2.7m_cu100_devtoolset3_build` job in order for it to finish. @pjh5 suggested that we can have one build job for each libtorch variant: ht...
module: build,triaged,better-engineering
low
Minor
463,931,704
react-native
Width measures of Text components using a custom font are wrong
React Native version: ``` System: OS: macOS 10.14.5 CPU: (12) x64 Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz Memory: 1002.17 MB / 32.00 GB Shell: 5.3 - /bin/zsh Binaries: Node: 10.15.3 - ~/.nvm/versions/node/v10.15.3/bin/node Yarn: 1.16.0 - /usr/local/bin/yarn npm: 6.4.1 - ~/.nvm...
Platform: Android,Component: Text,Contributor,Resolution: Backlog,Bug
medium
Critical
463,965,207
vscode
Hyper modifier is unknown
- VSCode Version: 1.35.1 - OS Version: Ubuntu 18.04.0 LTS Steps to Reproduce: 1. Rebind any key to Hyper (Mod3) 2. Try to create shortcuts Hyper + Key I bind **Caps Lock** to be working as **Hyper** modifier (**Mod3**). And wanted to use that in VS Code shortcuts. But whenever I press **Caps Lock** in "Chang...
feature-request,keybindings
low
Minor
463,965,667
go
cmd/compile: ineffective branch caused by defer
### What version of Go are you using (`go version`)? <pre> $ go version go version devel +d410642 Mon Jul 1 21:30:23 2019 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What did you do? I was testing the behavior of `defer`, so I ended up compiling the following fun...
NeedsInvestigation,compiler/runtime
low
Minor
463,968,632
godot
Editor doesn't reload changed resources.
___ ***Bugsquad edit:** This issue has been confirmed several times already. No need to confirm it further.* ___ Basically a copy of #4769, but it is still an issue. <!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --...
bug,topic:editor,confirmed,documentation
medium
Critical
463,974,881
pytorch
No assertion when using scatter_ on a non-contiguous tensor
## πŸ› Bug Don't know if I should call it a bug, but I think it is better if you could add an assertion if people use scatter_ on a non-contiguous tensor, since the scatter_ function will behave unexpectedly in this case. In other words, the output of scatter_ for a non-contiguous tensor is different from its output ...
module: error checking,triaged,module: partial aliasing,module: scatter & gather ops
low
Critical
464,000,097
youtube-dl
Site support request: downloads.khinsider.com
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
464,020,867
go
cmd/go: print an incomplete go mod graph even if an error occurs
`go mod graph` is an invaluable tool for debugging module problems. It allows us to see problems deep into our transitive dependencies. However, it completely falls over if there is a single issue somewhere in the graph, and if that issue is not at the root module it's quite hard to debug transitive dependency problems...
NeedsInvestigation,GoCommand,modules
low
Critical
464,063,282
go
net/http: Request.ParseMultipartForm doesn't read all the body
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version tested in go1.12.6 and go1.13beta1 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture...
NeedsInvestigation
low
Critical
464,074,792
kubernetes
Dummy OpenAPI types generated from metav1.Fields
/kind bug /sig api-machinery /wg server-apply this should probably be an issue in the openapi generator [kubernetes/kube-openapi](https://github.com/kubernetes/kube-openapi). the swagger docs doesn't properly represent the openapi schema for `metav1.Fields`: ```json "io.k8s.apimachinery.pkg.apis.meta.v1.Fi...
kind/bug,sig/api-machinery,lifecycle/frozen
low
Critical
464,140,662
pytorch
Know which function is used by conv and force to use a function
I've been pointed to this line https://github.com/pytorch/pytorch/blob/12528990f8c56deb7ce1c699e6da63d82c115968/aten/src/ATen/native/Convolution.cpp#L526 where we can see which choices we have when we call a convolution. However I am wondering if there is a way to actually know which function has been called. Concr...
module: nn,module: convolution,triaged
low
Major
464,178,941
pytorch
libtorch new op
hi, in my project I use libtorch.and there is an operation that libtorch does not support. and I want to implement the operation myself. and I search the document,I have not found any help. I just want to implement the forward pass, and backward pass. does there is some document, that help me add an new op for libtor...
module: docs,module: cpp,triaged,module: custom-operators
low
Minor
464,179,737
rust
slice::contains with borrowed data
`HashSet::contains` has the following type to allow e.g. searching in a `HashSet<String>` with an `&str`: ```rust pub fn contains<Q: ?Sized>(&self, value: &Q) -> bool where T: Borrow<Q>, Q: Hash + Eq, ``` However, `slice::contains` does not use `Borrow`, so to search in an `&[String]` one has to actual...
T-libs-api,C-feature-request
low
Major
464,196,387
go
x/text/unicode/runenames: allow search of rune by name
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12.6 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes? ### What operating system and processor architecture a...
NeedsInvestigation,FeatureRequest
low
Critical
464,249,258
godot
Webcam (PS3 Eye) causes mic input to spew WASAPI: unsupported channel count in microphone
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.1.1.stable.official, 3.2.dev.calinou.ce8e54133 <!-- Specify commit hash if non-official. --> **OS/device including version:** Windows 10 Pro 1809 <...
bug,topic:core,confirmed,topic:audio
low
Critical
464,295,726
flutter
ProxyValidator does not parse NO_PROXY correctly when looking for hosts
## Use case `flutter doctor` was unable to detect the problem when I wrote `localhost;127.0.0.1` in `NO_PROXY`, note the semicolon instead of comma. ## Proposal As there is no standard way of delimiting values in environment variables (for example, on Windows, `;` is usually used), clear instructions should be g...
tool,t: flutter doctor,a: quality,P2,team-tool,triaged-tool
low
Minor
464,301,923
TypeScript
Object.freeze after object creation doesn't error
**TypeScript Version:** 3.5.1 **Search Terms:** Object.freeze, freeze, freezing, properties, object, objects, property **Code** ```ts const a = Object.freeze({a: 0}); a.a = 1; // Error: Cannot assign read-only property const b = {b: 0}; Object.freeze(b); b.b = 1; // No error? const c = {c: {d: 0}}; ...
Docs,PursuitFellowship
low
Critical
464,324,312
kubernetes
Adaptive retry-after interval on rate limiting to prevent request overload
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: In our cluster (1K Nodes/1W Pods), we found that a large number of logs with a return code of 429 will appear for a long time when kube-apiserver is started: `I0704 17:28:00.800884 227416 maxinflight....
kind/bug,priority/important-soon,area/apiserver,sig/api-machinery,kind/feature,lifecycle/frozen
medium
Critical
464,357,391
create-react-app
Debug Jest in react when module alias are defined
I have a react application which is create by CRA and using typescript. I define several module mapper in tsconfig.json `tsconfig.path.json` ``` { "compilerOptions": { "baseUrl": "./src", "paths": { "@constants/*": ["constants/*"], "@components/*": ["components/...
issue: bug
low
Critical
464,359,100
pytorch
make[2]: *** No rule to make target 'libtorch/lib/libc10.so'
## πŸ› make[2]: *** No rule to make target 'libtorch/lib/libc10.so' <!-- --> ## Temporary Solution: * If you want to find a temporary solution to that problem,please check the "EDIT" at the end ## To Reproduce Steps to reproduce the behavior: * I have successfully tried to compile and run the C++ libtorch e...
module: build,module: cpp,triaged
low
Critical
464,385,209
rust
Trait resolution fails with unclear error when using function types as input parameters
This works ([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=e0fd0844e20c87b6e28c8e246aad154c)): ```rust trait Call<F> { type Ret; fn call(self, f: F) -> Self::Ret; } impl Call<f32> for f32 { type Ret = f32; fn call(self, f: f32) -> Self::Ret { f ...
C-enhancement,A-diagnostics,A-trait-system,T-compiler,A-suggestion-diagnostics,D-newcomer-roadblock
low
Critical