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
451,461,639
opencv
Inf/Nan in cvProjectpoints2
- Can we have `inf/nan` issue in [`cvProjectPoints2Internal`](https://github.com/opencv/opencv/blob/db900af8c7a849539aff3941c2a788c190bb317b/modules/calib3d/src/calibration.cpp#L786-L787)? - How we are informing the user about clipping not visible (in the camera plane) points? From https://github.com/opencv/openc...
category: calib3d
low
Minor
451,508,278
go
cmd/vet: document interaction with test sources
<!-- 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 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture ar...
Documentation,NeedsFix,Analysis
low
Critical
451,564,106
go
cmd/cgo: warning: built-in function ‘free’ declared as non-function
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.6 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</summar...
help wanted,NeedsFix
medium
Critical
451,589,777
pytorch
Title of docs page includes "PyTorch master documentation" even for non-master branches.
E.g. go to https://pytorch.org/docs/stable/ and look at the HTML title of the page. It is `PyTorch documentation — PyTorch master documentation`
module: docs,triaged
low
Minor
451,616,705
godot
Curve2D is not very clear
The documentation of Curve2D is not very clear (class_curve2d.rst) The `add_point` method method doesn't specify that the `Vector2 in` and `Vector2 out` (the control points / tangent), are local coordinates ( `(0,0)` is the point position in first parameter). Furthermore, in `get_closest_offset`, we speak about a...
enhancement,documentation
low
Minor
451,653,801
terminal
Add a test to cover closing two sibling panes (near) simultaneously
* [ ] Dependent upon #1042. I'm adding code in #825 to try and make sure that when a pane is closed nearly synchronously with a sibling, it'll close properly. However, manually testing this is _really_ hard, so I'm filing a follow-up task to make sure that's implemented correctly. I'll need the test framework stu...
Area-UserInterface,Product-Terminal,Issue-Task,Area-CodeHealth
low
Minor
451,679,912
godot
Godot cannot find MSBuild.exe with the Visual Studio 2019 Preview
<!-- 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 mono x64 **OS/device including version:** Windows 10 Pro 64-bit (10.0.17763) NVIDIA RTX 2080 Ti (Driver Version: 430.86) **Issu...
bug,topic:dotnet
low
Minor
451,696,954
flutter
[Material] Create a MaterialTapTargetSize for slider and consume in Range Slider
https://api.flutter.dev/flutter/material/MaterialTapTargetSize.html
c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design
low
Minor
451,699,519
flutter
[iOS 13] new fullscreen stack type route transition
While the old slide style transition still exists: ![Kapture 2019-06-03 at 14 31 13](https://user-images.githubusercontent.com/156888/58835987-482aba00-860c-11e9-9d5e-f1abf669cee9.gif) There's an entirely new style now: ![Kapture 2019-06-03 at 14 32 28](https://user-images.githubusercontent.com/156888/58836042...
c: new feature,framework,a: fidelity,f: cupertino,f: routes,P1,team-design,triaged-design
medium
Critical
451,700,059
go
proposal: x/crypto/blake2s: add New(size, key)
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version 1.12.2 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? ...
Proposal,Proposal-Crypto
low
Minor
451,712,100
rust
Unconditional_recursion lint not triggered in procedural macro
Hi, I ma working with edition 2018 and I tried this piece of code with 1.37 nightly, 1.35 and 1.32 (random pick) with the same result. Sorry if the point of my issue is at the end but I belive that the code is much more clear than me. The code is: lib.rs: ```rust extern crate proc_macro; use proc_macro::To...
A-lints,A-macros,T-compiler,C-bug
low
Critical
451,740,384
pytorch
Undefined symbols for architecture x86_64: "testing::internal::UntypedFunctionMockerBase::UntypedInvokeWith(void const*)" on Mac OS X
I get the following linker failure attempting to build on Mac: ``` [590/2104] Linking CXX executable bin/c10_either_test FAILED: bin/c10_either_test : && /usr/local/opt/ccache/libexec/g++ -Wno-deprecated -fvisibility-inlines-hidden -Wno-deprecated-declarations -Xpreprocessor -fopenmp -I/usr/local/include -DUSE_...
module: build,module: internals,low priority,triaged,module: macos
low
Critical
451,814,728
TypeScript
You actually can get Infinity type if you're clever and other fun floating point oddities
As explained in [#15135](https://github.com/microsoft/TypeScript/issues/15135) and [#15351](https://github.com/microsoft/TypeScript/issues/15351), the Typescript team doesn't intend to support NaN and Infinity literals, due to complexity. Explicitly typing something as Infinity or -Infinity gives the error: ``` 'In...
Discussion
medium
Critical
451,849,782
rust
Accessing a TLS variable in its own constructor results in a stack overflow
Consider the following program ([Playground](https://play.rust-lang.org/?version=nightly&mode=release&edition=2018&gist=b906422f1f99a3a48f4f8935573efb80)): ```rust struct Foobar {} thread_local! { static TLS: Foobar = { let _ = TLS.try_with( |_| {} ); Foobar {} }; } fn main() { ...
C-enhancement,A-thread-locals,T-libs
low
Critical
451,860,275
rust
`rustc` runs out of memory while trying to compile a large static (lazy_static!) HashMap
``` Blocking waiting for file lock on build directory Compiling crash v0.1.0 (/home/fred/Workspace/rtuts/crash) error: Could not compile `crash`. Caused by: process didn't exit successfully: `rustc --edition=2018 --crate-name crash src/main.rs --color always --crate-type bin --emit=dep-info,link -C debu...
A-borrow-checker,T-compiler,I-compilemem,C-bug
low
Critical
451,866,872
go
os: could not iterate over named pipes on Windows
<!-- 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 windows/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture ...
OS-Windows,NeedsInvestigation
low
Critical
451,877,554
vue
Stringify Vue instance
### Version 2.6.10 ### Reproduction link [https://codesandbox.io/s/vue-stringify-instance-2h78n](https://codesandbox.io/s/vue-stringify-instance-2h78n) ### Steps to reproduce Open the link, the error is reproduced right away as the code tries to serliaze the Vue instance. ### What is expected? Being able t...
discussion
low
Critical
451,948,183
godot
Clicking F5 is causing many save request calls to the plugin
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.1.1 **OS/device including version:** Ubuntu 18.04, 64bit, gtx1060 **Issue description:** I noticed that when scene has unsaved changes, clickin...
bug,topic:editor,confirmed,topic:plugin
low
Minor
451,955,331
flutter
Expose the Google Maps Geometry Library in the maps plugin
## Use case I need to calculate area occupied by a polygon on a Google map. I understand that the maps plugin is WIP but it still would be a nice to have. While I only currently need only one function it probably makes sense to add support for the entire library https://developers.google.com/maps/documentation/ja...
c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Major
452,085,158
TypeScript
[Feature Request] Abstract Interfaces with Undeclared Properties
Edit: changed `partial` to `abstract` because I think it makes more sense. ## Search Terms Abstract Mapped Types Partial Types Meta Types Super Types ## Suggestion I'd like to propose an expansion to the TS syntax that allows you to create `abstract` interfaces with `undeclared` properties which force ch...
Suggestion,Awaiting More Feedback
low
Critical
452,100,757
flutter
Investigate Swift Package Manager for Swift plugins
Since Swift has a 'first-party' package manager in the form of Swift Package Manager, it would be interesting to evaluate whether we could use that, instead of CocoaPods, for Swift plugins. That would allow for gradual migration away from CocoaPods over time assuming plugin development eventually shifts toward Swift, r...
c: new feature,platform-ios,tool,platform-mac,a: existing-apps,P2,team-ios,triaged-ios
low
Critical
452,126,903
flutter
Unicode input should be indicated.
Ctrl+Shift+U (on certain operating systems) normally would bring up an underlined "u" in a text field to indicate it's awaiting a Unicode entry. This is not indicated on Flutter, despite it taking the input. ![Flutter](https://i.imgur.com/5LGa38g.png) ![Play Store, expected behavior.](https://i.imgur.com/JDQ2sZt.pn...
a: text input,c: new feature,framework,f: material design,platform-windows,platform-linux,a: desktop,P3,team-text-input,triaged-text-input
low
Minor
452,135,929
neovim
Completion item kinds standard
I thought this was appropriate since this is a discussion that is in interest of all gui implementations, let me know if that's not the case. I noticed when [implementing](https://github.com/vhakulinen/gnvim/pull/49) coc.nvim support for completion icons for gnvim, that while there's a brief definition on `|complete...
documentation
low
Minor
452,153,190
flutter
Support Android Development from 32-bit Windows
At this time we have no plans to add 32-bit support for Windows. I'm filing this bug as a cleaner place to track this request (e.g. upvote if you want this) as well as the blocking issues were someone to want to add support in the future. We have several other existing 32-bit windows bugs, all of which are closed, e...
platform-android,engine,platform-windows,P3,team-android,triaged-android
medium
Critical
452,162,726
flutter
Driver tests should fail when method channel calls are failed.
The MethodChannel code swallows exceptions and logs them to an error here: https://github.com/flutter/engine/blob/661c24e4f359c60915a21c285d1d34777f0ccb30/shell/platform/android/io/flutter/plugin/common/MethodChannel.java#L205 This resulted in a recent regression(fixed in flutter/engine#9185 going unnoticed for o...
platform-android,engine,t: flutter driver,a: platform-views,P2,team-android,triaged-android
low
Critical
452,212,001
flutter
IOS back gesture dismisses top route instead of its own route
When I make a back gesture on IOS and it is not the top route, the top route gets popped instead of the route where the back gesture originated and the back gesture animation gets stuck. - See [video](https://drive.google.com/file/d/1BkcxZejNGJHUzazxTb9205c66yunXxwQ/view?usp=sharing) - After the back gesture anima...
platform-ios,framework,f: material design,f: cupertino,f: routes,f: gestures,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-ios,triaged-ios
low
Critical
452,224,873
angular
ReactiveForms checkbox 'disabled' and 'checked' are not predictable when using FormBuilder.group()
# 🐞 bug report ### Affected Package @angular/forms ### Is this a regression? Not sure, haven't tried to do this before ### Description When using FormBuilder to create a FormGroup, I have noticed that inputs of type `checkbox` cannot be set to both `disabled` and `checked`. `disabled` will work on its ow...
type: bug/fix,freq2: medium,area: forms,state: confirmed,P3
low
Critical
452,272,356
PowerToys
Prevent virtual keyboard from being dismissed when touching physical keyboard
Sometimes we need the virtual keyboard for typing in languages that use different scripts such as Korean or Russian, but we still keep using the physical keyboard for shortcuts such as Alt+Tab or for the numbers, etc. Any time we hit any real key, the virtual keyboard is dismissed (Windows 10) Maybe a pin functio...
Idea-Enhancement,Product-Tweak UI Design
low
Major
452,273,987
terminal
Feature Request: Add tab indicator to show number of panes in tab
# Summary of the new feature/enhancement Migrated from ADO. Need some kind of indicator for number of panes in tab. Just throwing an idea out there but why not make it look kinda like this (obviously ignore the fact that this is a browser): ![image](https://user-images.githubusercontent.com/11050425/58923562-0f1a44...
Area-UserInterface,Product-Terminal,Issue-Task
low
Major
452,286,371
rust
Intrinsic for `type_name_of_id` to power a better `impl Debug for TypeId`?
Currently `TypeId`s have uninformative derived `Debug` impls: ```rust fn main() { println!("{:?}", std::any::TypeId::of::<usize>()); } ``` ``` Compiling playground v0.0.1 (/playground) Finished dev [unoptimized + debuginfo] target(s) in 0.91s Running `target/debug/playground` TypeId { t: 8...
T-lang,T-libs-api,needs-fcp
low
Critical
452,314,368
pytorch
collect_env ignores conda environment
Hi, https://github.com/pytorch/pytorch/blob/95eb9339c10ffc4d74312f35ac15fffa61596de1/torch/utils/collect_env.py#L114 I find this function `get_running_cuda_version` ignores the existence of cudatoolkit in conda env, instead it uses `nvcc --version` , the system wide installed CUDA as a reference to get the cuda versi...
module: build,module: docs,low priority,module: collect_env.py,triaged
low
Minor
452,341,744
flutter
[go_router] Figure out how to use go_router to pop the target page
For example 1. request 1 runs in the background, and a dialog A is displayed after the end of the request 2. request 2 runs in the foreground and displays dialog B directly. Close the dialog B after ending the request The problem is that dialog A is displayed after dialog B, but closed dialog A while using Nav...
c: new feature,f: routes,package,P3,p: go_router,team-go_router,triaged-go_router
low
Major
452,366,094
TypeScript
Show documentation for literals in intellisense
## Suggestion When filling in a value where the expected type is a union of literals, intellisense is able to suggest the possible values. However, it does NOT show the documentation associated with each literal: ![image](https://user-images.githubusercontent.com/664425/58940110-f5badc00-8778-11e9-9a05-e4de...
Suggestion,Awaiting More Feedback
low
Minor
452,410,477
pytorch
how libtorch can work with tensor data as same as pytorch
I have a question about data manipulation with the C++ in libtorch. For example, in pytorch I could deal with tensor like this: img[:, :10, :] = 0 but with libtorch I don't know how to do as same as pytorch,if I use for circle,then it will be very slow,I want to know if there is any function with libtorch can do th...
module: docs,module: cpp,low priority,triaged
low
Major
452,438,107
neovim
Prepend command with range `<,`> when in Visual mode, and with '<,'> when in Visual Line mode.
In Vim/Neovim, when I visually select a word (e.g. in the middle of the line) and start typing command, the editor is kind enough to prepend the range of the visual selection to the command: ``` :'<,'> ``` However, `'<,'>` gives me the range of lines instead of range of the actual visual selection, and I can't oper...
enhancement
low
Minor
452,439,185
ant-design
Menu组件在vertical模式时,希望可以配置子菜单的展开方向
- [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? 在使用`<DropDown>`组件时,多级的子菜单可以向左展开,以满足不同情况的需求,现在子菜单只能向右展开 ### What does the proposed API look like? ```jsx <Menu mode={'vertica...
Inactive
low
Minor
452,440,055
terminal
Bug Report: ColorTool and changing colours causes strange behaviour since Windows 10 1903
# Environment ```none Microsoft Windows [Version 10.0.18362.30] ``` # Steps to reproduce You should be able to use any color scheme, but I'll provide mine specifically below. **Fotsies Colors.ini** ```ini [table] DARK_BLACK = 30,30,30 DARK_BLUE = 0,0,128 DARK_GREEN = 0,128,0 DARK_CYAN = 0,128,128 ...
Product-Colortool,Help Wanted,Issue-Bug,Needs-Tag-Fix
low
Critical
452,452,777
vscode
Expect minimap functionality and similar to xcode 11
### The function definition is all suspended, which can be located quickly. ![](https://i.loli.net/2019/06/05/5cf7a892590b853392.png)
feature-request,editor-minimap
medium
Major
452,464,387
go
proposal: x/crypto/blake2b,x/crypto/blake2s: Implement personalisation and salting
The current implementations of BLAKE2b and BLAKE2s support both variable output lengths and keyed BLAKE2 ([blake2b](https://github.com/golang/crypto/blob/20be4c3c3ed52bfccdb2d59a412ee1a936d175a7/blake2b/blake2b.go#L107-L108), [blake2s](https://github.com/golang/crypto/blob/20be4c3c3ed52bfccdb2d59a412ee1a936d175a7/blake...
Proposal,Proposal-Crypto
medium
Major
452,493,821
pytorch
Implementation of Group equivariant convolutions
## 🚀 Feature An implementation of group-equivariant convolutions defined by Cohen et. al in the paper 'Group equivariant convolutions' - in ICML 2016. Specifically, an implementation of the group-convolution over the group of translations and rotations of multiples of 90 degrees at any centre, and the same group ext...
feature,module: nn,low priority,triaged
low
Major
452,596,549
flutter
Focus/RawKeyboardListener widgets don't receive events in some cases
I tried to create a simple flutter app which used a RawKeyboardListener. It worked well under the android emulator using the non-Fuchsia flutter workflow, but when I moved it to Fuchsia and ran it as a Fuchsia app, it did not receive keyboard events.
customer: fuchsia,framework,P2,team-framework,triaged-framework
low
Minor
452,609,323
rust
Lint control attributes (allow/deny/etc) have no effect on lifetime and const parameters
```rust fn f<#[allow(warnings)] foo>() {} // warning: type parameter `foo` should have an upper camel case name ``` Expected behavior - no warning, actual behavior - warning. cc https://github.com/rust-lang/rust/issues/61238, which is a similar issue
A-attributes,A-lints,T-compiler,C-bug
low
Minor
452,614,102
go
x/crypto/ssh: semantics around running session.Wait() after calling session.Run(), when EOF messages are sent
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version 1.12.5 </pre> ### Does this issue reproduce with the latest release? I am using a vendored version of the library with commit `e84da0312774c21d64ee2317962ef...
NeedsInvestigation
low
Critical
452,667,754
TypeScript
expando fields not added to symbol exports
**TypeScript Version:** 3.4.0, 3.5.0, master (7dc1f40dc15132ba87a70a3bec6d63317cb5b91e) <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** expando, iife, umd, exports **Code** Given the following code, similar to an UMD file: ```javascript (...
Needs Investigation
low
Critical
452,738,479
go
proposal: net/url: add FromFilePath and ToFilePath
In the course of investigating #27698, I learned that the conversion between URLs and file paths on Windows is rather non-trivial. (See also #6027.) According to https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/, a file path beginning with a UNC prefix should use the UNC hostname as the “host” par...
Proposal,FeatureRequest,Proposal-Hold
medium
Critical
452,775,229
pytorch
[JIT] kwarg with default doesn't work for class instantiation
``` import torch from typing import List, Optional, Dict @torch.jit.script class Series(object): def __init__(self, floats : Optional[List[float]] = None, ints : Optional[List[int]] = None): self.floats = torch.jit.annotate(Optional[List[float]], floats) self.ints = torch.jit.annotate(Optio...
oncall: jit,triaged,jit-backlog
low
Critical
452,797,776
TypeScript
Type Guard Issue with Array.prototype.fill, Array Constructor
## Typegurd Issue with Array.prototype.fill, Array Constructor <!-- 🚨 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'...
Suggestion,Awaiting More Feedback
medium
Critical
452,872,295
youtube-dl
Site Support Request: abema.tv
<!-- ###################################################################### 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
452,879,318
vscode
[json] Override/disable json-schema for package.json
I would like to override the default json-schema used by VSCode on some files with my own json-schema (example: VSCode use a json-schema for the Node's "package.json", but I want to be able to override it), like when configuring any other json-schema in settings.json: ``` //settings.json - currently this doesn't work...
feature-request,json
medium
Critical
452,886,059
TypeScript
Add a code action to implement (overwritten) method from base class
## Search Terms implement, inherited, method ## Suggestion When implementing a method that is defined in a class's base class or in external type declarations, it would be helpful if we didn't have to type out the method signature that is already known to TypeScript. ## Use Cases Overwriting methods in inh...
Suggestion,In Discussion
low
Critical
452,886,260
scrcpy
screen not update randomly on osx
screen just not update after some time, and would restore randomly, too. and keyboard / mouse event still works.
display,sdl
medium
Major
452,893,499
godot
Avoid performance discrepancies in the running project depending on the currently opened scene and tab in the editor
**Godot version:** Godot Engine 3.1.1 **OS/device including version:** Windows 7 x64bit 8 GB Ram GTX 980 **Issue description:** Godot Editor can't handle complex level as you can see in this video : https://youtu.be/gWLli5CBhCQ Here is a small level for our Game , almost everything in this level is a ...
enhancement,discussion,topic:editor
low
Major
452,924,106
TypeScript
Incorrect union type inference for conjunction with strictNullChecks disabled
<!-- 🚨 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
452,940,305
pytorch
[JIT] Memory Leak during tracing?
Hi, I am trying to run [pytorch-pretrained-BERT](https://github.com/huggingface/pytorch-pretrained-BERT) through the JIT using the tracing API. I ran the example [run_squad.py](https://github.com/huggingface/pytorch-pretrained-BERT/blob/master/examples/run_squad.py) without any changes with the following command and...
oncall: jit,triaged
low
Critical
452,959,175
rust
Consider changing the way unevaluated constants are printed
cc https://github.com/rust-lang/rust/pull/60742#discussion_r288742080 Right now when we encounter a `ConstValue::Unevaluated` during pretty printing, we fall back to printing the constant's source code or `_` if that also fails. Alternative options are: * try to eagerly evaluate (and fall back to one of the follo...
C-enhancement,A-diagnostics,T-compiler,A-const-eval,A-const-generics
low
Minor
452,985,037
pytorch
downsampling with grid_sample doesn't match interpolate
I'm taking this discussion from https://github.com/pytorch/pytorch/issues/20785#issuecomment-495186085 as it is unrelated to `grid_sample` not being aligned. --- There is also another point that I'd like to make about `grid_sample`, which is that even after we make this change to make it aligned, it won't match 1...
triaged,module: vision,module: interpolation
low
Major
452,998,285
pytorch
RuntimeError: cublas runtime error
RuntimeError: cublas runtime error : the GPU program failed to execute at /pytorch/aten/src/THC/THCBlas.cu:411 My GPU is 2080ti,CUDA 10.0 How can I slove the problem?Thank you.
triaged,module: cublas
low
Critical
453,029,949
terminal
[Spec Proposal] Changes to Colortool commandline switches
In my opinion, the current command line switches are a bit confusing since there are multiple ways to have it not do the default action of writing the color scheme to the current console (I think -x is a little different from that, at least based on my reading). I think it would be better for there to be no default be...
Issue-Feature,Product-Colortool,Needs-Tag-Fix
low
Major
453,045,934
pytorch
Slow convolution with large kernels, should be using FFT
## 🐛 Bug When using `Conv1d` with a large kernel size (1024 for instance) on gpu, the cudnn implementation is very slow and gets slower as I increase the kernel size. I thought it was using FFT but apparently not. If it were using FFT, the computation time should be independent of the kernel size, because the kerne...
module: performance,module: cudnn,module: convolution,triaged,module: fft
low
Critical
453,094,862
flutter
google_sign_in throws an Unknown PlatformException after token expires
## Steps to Reproduce 1. Create a simple Flutter project with `google_sign_in` but without `firebase_auth` (or any Firebase dependency). 2. Authenticate with a Google account. 3. Try accessing the `authentication` via `await <GoogleSignInAccount>.authentication` and read the token. 4. Keep the application open fo...
c: crash,platform-android,customer: crowd,p: google_sign_in,package,P2,team-android,triaged-android
low
Critical
453,114,993
flutter
Automatically set Dart SDK constraints when using flutter create
Currently we hardcode the Dart SDK constraints in our `flutter create` templates, e.g.: https://github.com/flutter/flutter/blob/master/packages/flutter_tools/templates/app/pubspec.yaml.tmpl#L22 We should automatically make the lower bound be the current Dart version.
tool,dependency: dart,P2,team-tool,triaged-tool
low
Minor
453,141,411
vscode
Quickpick loses active item if items are updated
I tried to make a quickpick that only showed the `detail` line for the selected item to save space: ```ts st quickPick = vs.window.createQuickPick<PickableDevice>(); quickPick.busy = true; quickPick.items = devices; quickPick.placeholder = "Select a device to use"; // Show detail line only when selected. qui...
bug,quick-pick
low
Minor
453,147,346
terminal
Per project docs
I'd like to see documentation per VS project, similar to that in `doc/ORGANIZATION.md`, or to `abstract` comment on files. It could contain: - responsibilities - target platforms (standalone window app / embeded control / server / api) - used frameworks (`pure c++`/ `.NET Framework` / `.NET Standard` / `c++/cli` / `...
Issue-Docs,Product-Meta,Area-CodeHealth
low
Minor
453,151,230
TypeScript
React: enforce correct usage of refs
<!-- 🚨 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. --> Potentially a use case for #12936 > if you have a problem and you think exact ...
Suggestion,Needs Proposal
low
Critical
453,164,614
flutter
[Request] DraggableScrollableSheet should show an AppBar when on full-screen
## Use case As stated in [Material Design guidelines](https://material.io/design/components/sheets-bottom.html#standard-bottom-sheet): > When full-screen, bottom sheets can be internally scrolled to reveal additional content. A toolbar should be used to provide a collapse or close affordance to exit this view. ...
c: new feature,framework,f: material design,f: scrolling,P3,team-design,triaged-design
low
Major
453,166,542
pytorch
Not obvious how to install torchvision with PyTorch source build
Previously, it used to be possible to build PyTorch from source, and then `pip install torchvision` and get torchvision available. Now that torchvision is binary distributions, this no longer works; to make matters worse, it explodes in non-obvious ways. When I had an existing install of torchvision 0.3.0, I got thi...
triaged,module: vision
low
Critical
453,177,712
bitcoin
listrecievedbyaddress with include_empty not filtering out "send" side of address book
I noticed if you call listreceivedbyaddress with true for incude_empty it was skipping the cross-reference against mapTally. The skip causes the entire address book (including "send" purpose) to be included in the results erroneously. There should be a "if purpose not 'send' then include results". Code would be inse...
Bug,Wallet
low
Minor
453,186,922
vscode
Save Side Bar layouts per Workspace
When I open a one of my workspaces it consists of all short (few letters) filenames and then another I open has some very long filenames. Is there a way currently to save the positioning of that column? I switch back and forth all day. If not I thought that (simple sounding) idea might be considered to be added to sav...
feature-request,layout
medium
Critical
453,202,352
go
x/tools/gopls: signatureHelp should return position info for signatures
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version devel +385b2e0cac Fri May 24 21:34:53 2019 +0000 linux/amd64 $ go list -m golang.org/x/tools golang.org/x/tools v0.0.0-20190521203540-521d6ed310dd </...
help wanted,FeatureRequest,gopls,Tools
low
Critical
453,236,586
material-ui
[Chip] Rename onDelete and deleteIcon
Even the docs show `onDelete` and `deleteIcon` used for purposes other than deleting the Chip. I'd imagine it's common to use them for other purposes. I propose renaming them to `onSecondaryAction` and `secondaryIcon`, or something similar. The current attributes could be aliases for those so as to not be a breaking...
discussion,breaking change,component: chip
low
Major
453,242,146
flutter
Make sure the add-to-app include scripts can build for the correct CPU architecture
Make sure include_flutter.groovy+flutter.gradle and podhelper.rb+xcode_backend.sh embed can figure out what architecture the outer project is trying to build and build the appropriate architecture
platform-android,tool,a: existing-apps,P2,team-android,triaged-android
low
Minor
453,285,273
youtube-dl
Site support request: American Archive for Public Broadcasting
<!-- ###################################################################### 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
453,294,223
flutter
Handle duplicate platform transient dependencies
Assume an inner Flutter project uses a firebase plugin which depends on nanopb, the outer platform project also directly depends on nanopb, and another Flutter plugin also depends on nanopb, make sure we can correctly resolve.
tool,customer: alibaba,a: existing-apps,P3,team-tool,triaged-tool
low
Minor
453,305,412
flutter
Interaction between modals, scrolls, and focuses
## Description The way Flutter handles the interaction between modals, scrolls and focuses is different from native Android. Below are two videos recorded on a native Android app: ![1](https://user-images.githubusercontent.com/1596656/59074870-79142480-8882-11e9-94d8-c5f9ccd4e5d8.gif) Highlight of this video:...
framework,f: material design,a: fidelity,f: scrolling,P2,team-design,triaged-design
low
Minor
453,312,055
flutter
[path_provider] Provide access to asset paths
<!-- 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: path_provider,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Critical
453,324,949
TypeScript
Improve TypeScript experience when dependencies are missing.
I was in a project, and forgot that I deleted `node_modules` (or forgot to `npm install`), and in this case I was seeing `any` all over the place, and was jumping myself to conclusions that something was wrong with TypeScript or VS Code. It could be helpful if VS Code could suggest something like > Did you forget...
Suggestion,Awaiting More Feedback
low
Minor
453,444,081
vue
Unnecessary renders on parent update when $attrs is bound
### Version 2.6.10 ### Reproduction link [https://codepen.io/anon/pen/zQVRgG?editors=1010](https://codepen.io/anon/pen/zQVRgG?editors=1010) ### Steps to reproduce Type something into the first field Uncomment line 8 or 14 then try again ### What is expected? In console: ``` Render a ``` ...
improvement
low
Major
453,478,161
terminal
Feature Request: Support Font Families instead of individual fonts
# 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). --> Using more than one fonts, like "Font Family" in VS Code. It is a useful feature for CJK use...
Issue-Feature,Area-Rendering,Area-Settings,Product-Terminal
medium
Major
453,517,517
pytorch
`attn_mask` in nn.MultiheadAttention is additive
## 📚 Documentation It likely should be mentioned that the [`attn_mask`](https://github.com/pytorch/pytorch/blob/master/torch/nn/modules/activation.py#L767) argument of MHA is an additive mask (-inf masks values), rather than the standard multiplicative mask (0 masks values). Perhaps even enforce a value check (all ...
module: docs,module: nn,triaged
low
Major
453,642,920
go
cmd/gofmt: extra indentations when adding comments
I encounter an issue with `gofmt`, where adding a comment to the first line causes extra indentation to the rest of the lines. For example, giving this block of code: ```go func main() { t1 := foo.Bar(). Baz(). Qux() } ``` Adding a comment (`//`) after `Bar()` adds extra indentations to the lines below...
NeedsFix
low
Major
453,672,506
go
cmd/go: subcommand as git merge tool for go.mod merge conflicts
I expect merge conflicts in `go.mod` and `go.sum` to be a relatively common occurrence. Quoting from @bcmills in the Go Slack: > If you have a merge conflict no `go.mod` or `go.sum`, you can usually just remove the conflict markers (taking the union of the requirements) and then run `go mod tidy`to get back into a ...
NeedsInvestigation,FeatureRequest,GoCommand,modules
medium
Critical
453,677,679
flutter
[google_maps_flutter] Location Accuracy setting for IOS
## Use case We'd like to switch the accuracy to a low level when using the google maps plugin so as to not consume battery power. Currently, for Android, you are able to change the location accuracy by changing android.permission.ACCESS_FINE_LOCATION to android.permission.ACCESS_COURSE_LOCATION. However, there is no s...
c: new feature,platform-ios,p: maps,package,c: proposal,customer: vroom,P3,team-ios,triaged-ios
low
Major
453,687,010
create-react-app
CSS custom properties are not polyfilled
### Is this a bug report? Yes I have CSS variables (custom properties) in my CSS, which are not supported by IE. The CRA docs state "Support for new CSS features like the all property, break properties, custom properties, and media query ranges are automatically polyfilled to add support for older browsers." Howe...
tag: underlying tools,issue: needs investigation
medium
Critical
453,705,165
pytorch
[jit] In pickler, don't memoize if not necessary
Follow up to #21542, now the pickler works the same as Python's in that it outputs memoization IDs for every object. For improved binary size and faster deserialization we should do a pass over all the `IValue`s to be serialized and only memoize the ones that are actually used more than once (similar to [`pickletools.o...
oncall: jit,triaged,jit-backlog
low
Minor
453,726,210
rust
wrong backtrace line for .unwrap() if it is on the next line
meta: ```` rustc 1.37.0-nightly (5eeb567a2 2019-06-06) binary: rustc commit-hash: 5eeb567a27eba18420a620ca7d0c007e29d8bc0c commit-date: 2019-06-06 host: x86_64-unknown-linux-gnu release: 1.37.0-nightly LLVM version: 8.0 ```` I had a Command::new()....unwrap() and some methods in between that were also unwra...
A-debuginfo,T-compiler
low
Critical
453,737,047
pytorch
Feature Request: beta cdf
## 🚀 Feature Please implement the cdf for beta distribution. ## Motivation The cdf of beta is used quite frequently but it's not implemented. ## Code to reproduce the problem: ~~~~ from torch.distributions.beta import Beta m = Beta(torch.tensor([0.5]), torch.tensor([0.5])) m.cdf(0.0029) ~~~~ ## Stack T...
module: distributions,feature,triaged
low
Critical
453,738,404
pytorch
Pytorch hangs when dataloader multiprocessing workers are killed
## 🐛 Bug There are basically 2 issues here: 1) Pytorch does not handle properly when dataloader workers hang. The whole process hangs when a worker hangs if no timeout is specified. When a timeout is specified, the dataloader simply throws an exception without cleaning up its worker processes. 2) Since Pytorch do...
module: dataloader,triaged
low
Critical
453,754,989
go
cmd/compile: slice hint seems to perform better than loop bound check
[CL 164966](164966) was submitted was a BCE optimization to math/big. It had a surprising comment - > // However, checking i < len(x) && i < len(y) as well is faster than // having the compiler do a bounds check in the body of the loop; // remarkably it is even faster than hoisting the bounds check // out of ...
Performance,NeedsInvestigation,compiler/runtime
low
Minor
453,798,664
flutter
Flutter Lifecyle onPause and onStop
## Use case I'm developing an Alarming App, and Popup up even If the mobile is locked. I need to tweak the FlutterActivity to support this feature. This is an detail of this [issue](https://stackoverflow.com/questions/25369909/onpause-and-onstop-called-immediately-after-starting-activity): Below is a lifecycle o...
c: new feature,platform-android,engine,c: proposal,P3,team-android,triaged-android
low
Minor
453,798,692
TypeScript
Doesn't support rename refactoring with importing from a module (yarn workspaces)
Ts 3.5.1 I use yarn workspaces in the project so may `./package/module` folder is linked and available as `@app/module` Say I have such file, that imports from the same module `test` ```ts import { a, b } from '@app/module/test' import { b } from './packages/module/test' ``` Then I rename file `packag...
Bug
low
Minor
453,798,966
youtube-dl
solidarium.org
<!-- ###################################################################### 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
453,807,311
TypeScript
TouchList is missing Symbol.iterator, can't use with 'for..of'
<!-- 🚨 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
453,815,301
pytorch
torch.bernoulli's parameter generator not documented
## 📚 Documentation [torch.bernoulli](https://pytorch.org/docs/stable/torch.html#torch.bernoulli) shows two extra parameters other than the two documented ones: * and generator=None What are they?
module: docs,triaged,module: random
low
Minor
453,823,495
flutter
Exception in PlatformView is not captured by FlutterError.onError
I'm having to catch errors that occur in PlatformView on the Java side. When using the FlutterError method I noticed that errors triggered in platform_view.dart are not reported to FlutterError. To solve this problem, I made a change in message_codecs.dart, but I changed the [decodeEnvelope](https://github.com/flut...
framework,a: platform-views,c: proposal,a: error message,P2,team-framework,triaged-framework
low
Critical
453,824,405
svelte
Idle until urgent, what about a queue for improving render sense of speed?
Dear @Rich-Harris your work with Svelte is amazing. I consider you a genius and an innovator like _Leonardo Da Vinci_ or _Henry Ford_. With **Svelte 3** you gave us a bit of that fresh air that we missed for so long. So first of all I want to give you an immense and melodious thanks. --- And now I would like...
perf,temp-stale
medium
Major
453,824,589
godot
Light2D mask doesn't respect: Layer Min, Layer Max, Item Cull Mask
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.1 **Steps to reproduce:** Add some GUI elements. Add a masking Light2D. GUI will be affected. What happens is Light2D in Mask mode doesn't respe...
bug,topic:rendering,confirmed
medium
Major
453,826,324
godot
Godot badly projects 3D camera ray if stretch mode is 2d+"expand" (or "keep")
Godot 3.1.1 Windows 10 64 bits I have a 3D game in which I use the following code to get a ray from the captured mouse (itself patched to half the size of viewport because of #29559): ```gdscript var mouse_pos = get_viewport().size / 2.0 var ray_origin = _camera.project_ray_origin(mouse_pos) var ray_direct...
bug,topic:core,confirmed,topic:3d
low
Critical
453,827,020
flutter
[web] implement Paragraph.getBoxesForPlaceholders for flutter web
This is used for text/inline widgets. In the meantime it could probably return an empty List to be safe.
framework,c: API break,a: typography,platform-web,c: proposal,P2,team-web,triaged-web
low
Minor
453,829,965
create-react-app
Incorrect order of CSS in build version
### Is this a bug report? Yes ### Environment `npx create-react-app --info` prints empty result for some reason. ### Steps to Reproduce Using CRA 3.0.1. 1. `create-react-app style_test` 2. `npm i bootstrap@3.3.7 --save` 3. In `index.js` import two CSS files - first, a reset CSS, second, the bootstra...
issue: bug
medium
Critical
453,834,458
opencv
javadoc: improve content rendering of Java wrappers
Current Issues: - some formula blocks are broken - missing images (see .png in text) - missing "see also" links - paragraphs without line breaks - some lists formatting are broken Possible variants are in comments below. <details> <summary>Example</summary> [Link](https://docs.opencv.org/3.4/javadoc/or...
feature,category: documentation,category: java bindings,vote
low
Critical