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
470,715,713
create-react-app
Support optimizations for clsx, classnames and similar libraries
### Is your proposal related to a problem? No. Proposing supporting this in the babel plugin config https://github.com/merceyz/babel-plugin-optimize-clsx ### Describe the solution you'd like This plugin just adds optimizations if the existing project is using classnames or clsx. Not sure how to test performanc...
issue: proposal
low
Major
470,721,362
go
proposal: spec: add Posit data type
[Posits](https://posithub.org/conga/2019/docs/13/1430-John-Introductory.pdf) are gaining [traction](https://posithub.org/conga/2019/programme) as a replacement and clean improvement over [IEEE 754](https://en.wikipedia.org/wiki/IEEE_754). They offer reasonable dynamic ranges with better accuracy / energy efficiency / s...
LanguageChange,Proposal,LanguageChangeReview
medium
Critical
470,729,717
godot
Boot splash issue
**Godot version:** 3.1 **OS/device:** Windows 8, Toshiba Satellite **Issue description:** Custom animated splash screens instanced as main scenes (for example, a `CanvasLayer` using an `AnimationPlayer` to play some default animation) will start playing during the built-in Godot boot splash. This means the cus...
bug,topic:core
low
Major
470,738,050
angular
isStable, behavior of zone-patch-rxjs?
If I create a new Angular application with `ng new <name>` and just inject ApplicationRef as follow: ```typescript import { ..., ApplicationRef } from '@angular/core'; export class AppComponent implements OnInit { constructor(private appRef: ApplicationRef) {} ngOnInit() { this.appRef.isStable...
type: bug/fix,area: zones,state: confirmed,P4
low
Minor
470,738,116
angular
Potential bug when used with webextension-polyfill
Hi everyone, I use Angular 7 to develop a web extension for Firefox and Chrome. It seems that **ZoneAwarePromise** is causing a weird behavior in Firefox preventing Mozilla **webextension-polyfill** to do it's task. developer @rpl provided a cause: > Firefox requires that the `promise `returned by `runtime...
area: zones,state: needs more investigation,P4
low
Critical
470,738,286
angular
Attempting to change configurable attribute of unconfigurable property
Using iOS' WKWebView in a Cordova app, I get this exception: > TypeError: Attempting to change configurable attribute of unconfigurable property. The exception is thrown here: https://github.com/angular/zone.js/blob/afa1363eb9ae3be506442311a18723a112f9ef8b/lib/browser/property-descriptor.ts#L362 The strange t...
type: bug/fix,area: zones,state: confirmed,P4
low
Critical
470,738,370
angular
Support for history.pushState()
I just found out that history.pushState() is not patched. I would have expected it to be patched because it's most natural to expect the Angular router to pick up changes to the url from outside of Angular just as well. For tracking purposes: In this issue from 2014, btford already outlined History API to be su...
area: zones,state: needs more investigation,P4
low
Major
470,738,494
flutter
What do each of the colors in ThemeData and ColorScheme() do?
I'm using `ColorScheme()` to theme my app and set some colors. Here's my code for the theme: ``` colorScheme: ColorScheme( primary: Colors.red, onPrimary: Colors.black, primaryVariant: Colors.orange, background: Colors.red, onBackground: Colors.black, secondary: Colors.red, onSecondary: Col...
framework,f: material design,d: api docs,customer: crowd,a: annoyance,P2,team-design,triaged-design,f: theming
low
Critical
470,745,035
angular
regression: jasmine.clock() inside fakeAsync() doesn't work anymore since 0.8.21
This happens in an Angular application. Simple steps to reproduce - install Angular CLI - generate a project with `ng new` - write the following clock.spec.ts test ``` import { fakeAsync } from '@angular/core/testing'; fdescribe('clock test', () => { afterEach(() => jasmine.clock().uninstall());...
area: zones,state: needs more investigation,P3
medium
Critical
470,758,419
node
Improve ERR_INVALID_CHAR error info
**Is your feature request related to a problem? Please describe.** Recently, I have debug a error with http header ```console (node:17863) UnhandledPromiseRejectionWarning: TypeError [ERR_INVALID_CHAR]: Invalid character in header content ["cookie"] at ClientRequest.setHeader (_http_outgoing.js:458:3) at ...
http
low
Critical
470,783,255
opencv
Opencv-dnn(4.1.0) test_perf_dnn crush in win10 with certain output channel
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest de...
category: ocl,category: dnn
low
Critical
470,786,962
rust
Codegen issue (endless recursion) with custom target and +soft-float
The following function causes endless recursion and a stack overflow on our bare metal target, which uses the `soft-float` feature: ```rust #[no_mangle] pub extern "C" fn _start() -> ! { foo(1); loop {} } fn foo(x: isize) -> f64 { 5 as f64 / x as f64 } ``` The target specification looks l...
A-codegen,T-compiler
low
Critical
470,788,843
angular
Support for EventSource
Zone.js supports WebSocket, but it doesn't appear to support Server Sent Events (correct me if I'm wrong). That forces us to wrap our code using NgZone in Angular 2 apps, whereas it works with no extra works if we use WebSockets. Is the support for EventSource planned?
feature,area: zones,feature: under consideration
medium
Major
470,824,281
svelte
Slide transition inside slide transition breaks outer transition (v3.6.4)
**Describe the bug** If you have an element A with a transition:slide, and puts another element B with transition:slide inside it, the last child of element A isn't included in the transition. Instead it just pops up at the end of the transition. This broke with version v3.6.4, as it worked fine up until v3.6.3. ...
bug,temp-stale
low
Critical
470,827,671
youtube-dl
Request for Peloton (onepeloton.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,account-needed
low
Critical
470,830,008
flutter
Create platform view mutation integration tests
We should create an integration test for platform view composition with mutations such as: clipping, transform, opacity. The test should generate screenshot with various widget tree that containing a platform view. The widget trees should be transformed to a layer trees that including clip_xx layers, transform lay...
a: tests,team,framework,a: platform-views,P2,a: plugins,team-framework,triaged-framework
low
Minor
470,881,933
flutter
Automatically calculate map bounds from a list of `LatLng` values
Just read the source code. Cannot find a method to build a LatLngBounds from a list of LatLng. https://developers.google.com/android/reference/com/google/android/gms/maps/model/LatLngBounds.Builder
c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
medium
Critical
470,891,176
pytorch
Deterministic mode for scatter_add operation
This issue comes from the discussion started [here](https://discuss.pytorch.org/t/possible-solution-to-the-reproducibility-issues-using-scatter-add-operation/48989). ## 🚀 Feature A GPU deterministic mode for scatter_add and similar operations ## Motivation I know that there is a general idea that non-dete...
triaged,module: determinism,function request,module: scatter & gather ops
low
Minor
470,910,913
flutter
Explain in project template why FlutterActivity handles all config changes
Add comments in the project template within the Android manifest file that mentions why FlutterActivity handles all config changes. This is especially true for splash behavior, which either requires explicit FlutterActivity handling of config changes, or requires that the developer provide the same FlutterEngine acr...
team,engine,P2,team-engine,triaged-engine
low
Minor
470,917,835
go
cmd/link: showing many ld warnings of "building for macOS, but linking in object file"
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go1.12.7 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using...
NeedsInvestigation,compiler/runtime
medium
Critical
470,961,459
flutter
Text Editor like in web platform
<img width="941" alt="Screen Shot 2019-07-30 at 4 55 43 PM" src="https://user-images.githubusercontent.com/11361035/62124808-e8d6e680-b2ea-11e9-9bb1-e6478a51d184.png">
a: text input,c: new feature,framework,P3,team-framework,triaged-framework
low
Minor
470,969,265
flutter
Restore a list scroll state switching between tabs is too slow and memory expensive
## Details I am ready to publish my first flutter app to read news by category. Every category has a list of posts with title, subtitle, FadeInImage and date. A List powered by RefreshIndicator and paging features. The app works perfect on any device. But I have discovered an issue with restoring scroll state switch...
framework,c: performance,f: scrolling,perf: memory,perf: speed,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework
low
Critical
470,973,026
rust
Remove padding when code spans/code link spans are adjacent
I used ```markdown [`Stream`](futures::stream::Stream)`<Item = `[`io::Result`](std::io::Result)`<`[`Bytes`](bytes::Bytes)`>>` ``` in [some crates documentation](https://docs.rs/async-compression/0.1.0-alpha.1/async_compression/) which renders as ![concated-code](https://user-images.githubusercontent.com/810...
T-rustdoc,C-feature-request,A-rustdoc-ui
low
Major
471,013,396
flutter
Google sign-in without firebase
In most of tutorials on the web, I can see that the plugin google_sign_in doesn't require firebase. In pub page, it is mentioned that the application must be registered in the following link : https://developers.google.com/mobile/add?platform=android That link is now redirecting to firebase's homepage. So my quest...
d: examples,d: stackoverflow,customer: crowd,p: google_sign_in,package,team-ecosystem,P2,triaged-ecosystem
low
Critical
471,097,424
pytorch
Can't `torch.sum(tensor, dim)` where `dim >= 64`
## 🐛 Bug Can't use TensorIterator reduction functions if the dimension to be reduced over is > 64. ## To Reproduce ``` In [1]: import torch In [2]: sizes = [1]*65 In [3]: x = torch.randn(sizes) In [4]: x.sum(0) Out[4]: tensor([[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[-0.2885]]]...
module: error checking,triaged,module: TensorIterator,module: reductions
low
Critical
471,100,330
rust
Building shared libraries on Mac requires '-undefined dynamic_lookup'
<!-- Thanks for filing a 🐛 bug report 😄! --> **Problem** <!-- A clear and concise description of what the bug is. --> A shared library used as a plugin will often reference symbols in the host program. These symbols will remain unresolved at build time, but will be resolved at the time the shared library is lo...
A-linkage,O-macos,T-compiler
low
Critical
471,112,135
flutter
Firebase Test Lab Robo Test support
Firebase offer a nice way to test android app automatically (or semi automatically if you provide a Robo Script) called Robo test in their Test Lab section https://firebase.google.com/docs/test-lab/android/robo-ux-test Would be nice if Flutter application can be test that way too. Currently when you upload the AP...
c: new feature,platform-android,customer: crowd,P3,a: plugins,team-android,triaged-android
high
Critical
471,116,606
flutter
in_app_purchase plugin - Auto-Renewable Subscription never expires in Sandbox
I've setup an Auto-Renewable Subscription, and was successfully able to purchase it using my sandbox user account (on an actual device). The problem is that unlike what is described here (Testing Subscription: https://medium.com/swift-india/auto-renewable-subscriptions-for-ios-3a4068f11acd), the subscription doesn't...
customer: crowd,p: in_app_purchase,package,team-ecosystem,P3,triaged-ecosystem
low
Major
471,119,234
go
encoding/xml: unexpected behavior of decoder.Skip
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go1.12.4 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using...
NeedsInvestigation
low
Critical
471,138,102
go
crypto/rsa: RSA key generation is unreasonably slow on MIPS architecture
<!-- 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.7 linux/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture ar...
Performance,NeedsInvestigation
low
Critical
471,140,445
go
path/filepath: Split on a path with more than 1 separator at the start doesn't work 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.11.4 windows/amd64 </pre> ### Does this issue reproduce with the latest release? I don't have a working installation of it at the moment. ##...
NeedsInvestigation
low
Critical
471,153,532
flutter
Let CupertinoNavigationBar leading/trailing sizing be customizable
The cupertino navigation bar leading width seems limited: ![image](https://user-images.githubusercontent.com/21303438/61643872-51fc9f80-acd6-11e9-8510-365aca47a2e3.png) I can not make my widget such as a Row with text and image in side ...... What should I do?
c: new feature,framework,f: cupertino,c: proposal,P3,workaround available,team-design,triaged-design
medium
Major
471,214,232
vscode
Scrolling can be improved
Issue Type: <b>Feature Request</b> when some of my file's size grows when I'm developing, then it becomes more and more hard to scroll. Little scrolling drag shifts code in screen very large amount up or down, but sometimes I want it to shift only little bit. This is convenient to do if file contains about under...
feature-request,editor-scrollbar
low
Major
471,223,322
go
x/crypto/ssh: listening on remote address blocks indefinitely when address doesn't contain a host part
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.2 linux/amd64 </pre> ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> ...
NeedsInvestigation
low
Critical
471,261,682
go
wiki: CodeReviewComments change
Hello, I suggest an example to be added to explain why interface constructor should return the struct not the interface type itself The edit to be added on [CodeReviewComments #interfaces](https://github.com/golang/go/wiki/CodeReviewComments/b61e691f208b5b3523cc3fde1870e8ccec4b2170#interfaces) `Go interfaces ...
Documentation,NeedsInvestigation
low
Critical
471,299,272
rust
-Csave-temps does not retain linker scripts
Rust uses a linker script with gcc linker flavour, adding a flag like this: ``` -Wl,--version-script=/run/user/1000/rustcXt0Huw/list ``` However this file is not preserved even when `-Csave-temps` is specified, making it impossible to really debug linkage issues outside of rustc.
A-linkage,T-compiler,C-bug
low
Critical
471,359,831
flutter
`flutter create --help | less` should have better formatting
Related: https://github.com/flutter/flutter/issues/23074, https://github.com/flutter/flutter/issues/36484. When piping flutter help to a pager, the text becomes less readable. Apparently if you don't pipe help, the output is well formatted. Here is the output of `flutter create --help | fold -w 80 | pbcopy`. This...
c: new feature,tool,a: quality,c: proposal,P3,team-tool,triaged-tool
low
Minor
471,382,063
flutter
Log file for 'flutter run widget_test.dart'
Following the tip here for running widget tests: https://twitter.com/flutterdev/status/1038114431325163521?lang=en We would like to be able to store the results of our test to a log file, or if possible create a json file that can be used for reporting. How do we do this without storing the file to the mobile tes...
a: tests,c: new feature,tool,P3,team-tool,triaged-tool
low
Minor
471,397,908
youtube-dl
Linkedin Learning is broken again, extractor error caused by KeyError('JSESSIONID')
## Checklist - [x] I'm reporting a broken site support - [x] I've verified that I'm running youtube-dl version **2019.07.16** - [x] I've checked that all provided URLs are alive and playable in a browser - [x] I've checked that all URLs and arguments with special characters are properly quoted or escaped - [x]...
account-needed
low
Critical
471,412,577
flutter
'flutter run widget_test.dart' does not end the running process after all the tests have completed.
Following the advise here https://twitter.com/flutterdev/status/1038114431325163521?lang=en does run our widget test on the device. However the process just keeps on running. Is there any additional info that would end the process after the widget tests are completed? Thanks.
a: tests,tool,d: stackoverflow,P3,team-tool,triaged-tool
low
Minor
471,457,727
godot
`MenuButton` ignores custom styles because it's `flat` by default
the menubutton's normal style don't seem to be rendering even though it's set to a the same texturestyle as the button below it ![image](https://user-images.githubusercontent.com/2453707/61678565-0a671b00-acb8-11e9-8db2-33f6d0edf8de.png)
enhancement,discussion,confirmed,topic:gui
low
Major
471,492,850
opencv
Opencv with cuda GpuMat::create() call causes access violation
Hi, **I compiled (debug and release) opencv 4.1.0 with contrib modues and enabled cuda.** I'm trying to create a GpuMat and upload host data from cv::Mat. This works properly when running in debug mode. However when I run in release mode (even when turning off optimizations) I get an access violation in the Gpu...
category: gpu/cuda (contrib),incomplete,needs investigation
low
Critical
471,509,894
pytorch
Libtorch with deeplabv3_resnet101 will not forward.
## 🐛 Bug When i convert the `deeplabv3_resnet101` model and use it in Libtorch, it gives a segmentation fault on forwarding. ## To Reproduce Steps to reproduce the behavior: 1. convert the model using python: ``` import torch import torchvision from torchvision import models deeplap_model = models...
module: crash,module: cpp,triaged
low
Critical
471,516,082
flutter
How to make an aop package (aspectd) in a decent way?
This issue is related to https://github.com/flutter/flutter/pull/35803 Recently, I've developed a package aiming at implement the AOP(aspect oriented programming) feature for dart based on kernel-to-kernel transformation which is available at: https://github.com/alibaba-flutter/aspectd A design diagram is given b...
c: new feature,tool,customer: alibaba,a: build,P3,team-tool,triaged-tool
medium
Critical
471,592,684
rust
Doc comments break proc_macro::SourceFile
Adding a doc comment before a procedural macro invocation causes [`proc_macro::SourceFile::path`](https://doc.rust-lang.org/proc_macro/struct.SourceFile.html#method.path) to return the path to lib.rs or main.rs instead of the actual path. The documentation states that if [`proc_macro::SourceFile::is_real`](https://doc....
A-macros,T-compiler,C-bug
low
Minor
471,593,929
create-react-app
errors are coming wen i start
npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! my-you@0.1.0 start: `react-scripts start` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the my-you@0.1.0 start script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run c...
issue: bug
low
Critical
471,616,604
flutter
[webview_flutter] Support injecting `js` script `atDocumentStart` instead of `onload`
I am trying to create a `webview` in flutter so that web browser can inject some `js` code to the document before it loads (`atDocumentStart`). I have tried several ways, but it always seems to inject the code too late (`onload`). ```dart final String injectScript = ("some js code"); class WebPage extends St...
c: new feature,d: stackoverflow,p: webview,package,team-ecosystem,P3,triaged-ecosystem
low
Major
471,637,348
rust
absolute-paths-not-starting-with-crate warning emitted for macros from 2015 edition crates used in 2018 edition crates
See e.g. ``` warning: absolute paths must start with `self`, `super`, `crate`, or an external crate name in the 2018 edition --> src/lib.rs:156:1 | 156 | / gst_plugin_define!( 157 | | ndi, 158 | | env!("CARGO_PKG_DESCRIPTION"), 159 | | plugin_init, ... | 165 | | env!("BUILD_REL_DATE...
A-lints,A-macros,T-compiler,C-bug,A-edition-2018
low
Critical
471,637,900
tensorflow
Potential bugs found with static analysis
<em>Please make sure that this is a bug. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template</em> **System information** - Have I written custom code ...
stat:awaiting tensorflower,type:bug,TF 1.13,comp:core
low
Critical
471,668,632
create-react-app
Set webpack cfg devtool property to 'nosources-source-map'
### Webpack cfg devtool property other than: 'cheap-module-source-map', 'source-map' or false This is mostly frustrating for production build where I'd like to have possibility to set devtool='nosources-source-map' or other less specific source-map Now devtool is calculated as below: ``` devtool: isEnvProdu...
issue: proposal
low
Major
471,753,028
pytorch
Consolidate multiprocessing helpers in distributed tests
We have a few test files where we rely on multiprocessing to setup a distributed context: * `test/test_c10d.py` * `test/test_c10d_spawn.py` * `test/test_distributed.py` The helpers should be consolidated in a single base test class or set of helper functions. cc @mrshenli since we spoke about it in person.
oncall: distributed,triaged
low
Minor
471,753,758
angular
Hook into router config loading
<!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 Oh hi there! 😄 To expedite issue processing please search open and closed issues before submitting a new one. Existing issues often contain information about workarounds, resolution, or progress updates. 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅�...
feature,freq1: low,area: router,feature: under consideration,canonical
low
Major
471,800,025
pytorch
Unofficial ARMv6, ARMv7, ARMv8 builds
Hello everyone, just wanted to let you know that I started this repo: https://github.com/nmilosev/pytorch-arm-builds which contains builds for ARM devices and some inference tests. Everything is working good, it would maybe be nice to put this link somewhere visible so that people know it exists. I intend to u...
module: build,module: docs,triaged
medium
Major
471,834,244
node
Contexts created with vm.createContext() do not define the URL() constructor
<!-- 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...
vm,feature request,never-stale,realm
medium
Critical
471,834,311
vscode
Git - Revert changes on a hunk sometimes corrupt entire files
- VSCode Version: 1.35.1 - OS Version: Fedora 30 - git version: 2.21.0 Steps to Reproduce: There are no steps to easily reproduce this bug. Once it happens, I can reproduce it until I restart VSCode. Restarting code does "fix" this until it happens again. It has been happening to me about once a month for over ...
bug,help wanted,git
low
Critical
471,838,286
pytorch
UBSAN failure in test_simple_model (__main__.TestTensorBoardNumpy): runtime error: call to function pybind11::class_<caffe2::GradientWrapper>::dealloc(pybind11::detail::value_and_holder&) through pointer to incorrect function type 'void (*)(pybind11::detail::value_and_holder &)'
``` Jul 23 16:50:24 test_simple_model (__main__.TestTensorBoardNumpy) ... /var/lib/jenkins/workspace/torch/../third_party/pybind11/include/pybind11/detail/class.h:327:17: runtime error: call to function pybind11::class_<caffe2::GradientWrapper>::dealloc(pybind11::detail::value_and_holder&) through pointer to incorrect...
module: tests,triaged
low
Critical
471,840,741
TypeScript
Narrower (literal) type for Function.prototype.name if function is const
## Search Terms <!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> ES6 function name, const assertions, `as const`, function as const ## Suggestion I would like to see the `name` property of functions to be availabl...
Suggestion,Awaiting More Feedback
low
Critical
471,878,418
flutter
[engine] support fragments in PlatformViews
`PlatformView` could have a variation to enable usage of fragments. ## Use case Google maps plugin has to do a lot of lifecycle work by hand to enable the usage of `MapsView` that relies in a lifecycle. It could be avoided if the `PlatformView` was able to use `MapFragment` or `SupportMapFragment` that already deals ...
c: new feature,engine,a: platform-views,p: maps,package,c: proposal,P3,team-engine,triaged-engine
low
Major
471,886,779
flutter
DartLifecycleTest.ShuttingDownTheVMShutsDownAllIsolates is disabled due to flakiness.
Sample run of failure [is here](https://cirrus-ci.com/task/5709404777742336?command=test_host#L278). It probably indicates unsafe threading during VM shutdown.
a: tests,engine,P2,team-engine,triaged-engine
low
Critical
471,890,696
youtube-dl
Support for Sowndhaus
<!-- ###################################################################### 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
471,891,608
ant-design
Could span in Description List work as Grid? Auto floating to next line when the current total is larger than the number of columns
- [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? First, make the concept of span constantly crossing the whole design. Secondly, it can be useful when the value of span on each ...
Inactive
low
Minor
471,895,616
bitcoin
Assertion `setBlockIndexCandidates.count(pindex)' failed
This happened on travis as part of a pull request that only modified ATMP logic. So the assertion can likely also be hit on a clean master. https://travis-ci.org/bitcoin/bitcoin/jobs/562128739#L4513 (in `rpc_invalidateblock.py`)
Bug,Validation
low
Critical
471,915,167
godot
High RAM usage
**Godot version:** <!-- Specify commit hash if non-official. --> Godot 3.1.1 stable **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --> Windows10 Pro 64bit Intel HD graphics 4600 **Issue description:** <!-- What happened, and what was expected. --> On Godot versio...
discussion,topic:core
low
Critical
471,930,715
rust
primitive docs should show core/alloc/std accessibility
In #61851, I tried to generate primitive docs in `core`, similar to those in `std`. My main motivation was to clearly see what `f64` methods are available in `core` alone, under `#[no_std]`, since a lot of them require `std` and `libm` support. However, I had trouble making that work because of broken documentation lin...
T-rustdoc,C-enhancement
low
Critical
471,934,487
opencv
PyRotationWarper creating incorrectly sized images
- OpenCV = 4.1.0-dev - Operating System / Platform => Windows 32 Bit - Compiler => Visual Studio 2017 ##### Detailed description PyRotationWarper in 'affine' mode is incorrectly sizing the outputs. For example, suppose that the input image has shape (300,400) (neglecting channels). If the post-warp image should...
category: stitching
low
Minor
471,939,083
youtube-dl
[Suggestion] Say which ID of a video is unavailable
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
request
low
Critical
471,966,816
TypeScript
Add broccoli-typescript-compiler to user test suite
https://github.com/tildeio/broccoli-typescript-compiler
Infrastructure,Fix Available
low
Minor
472,003,541
godot
Add the argument 'backwards' in the class AnimatedSprite as a property.
The variable 'backwards' doesn't have a getter neither a setter. https://github.com/godotengine/godot/blob/master/scene/2d/animated_sprite.cpp#L730 Since the variable is private, right now you can't check if the current animation is playing backwards or not. So i propose adding a getter and setter to 'backwards' ...
enhancement,documentation
low
Major
472,018,020
flutter
Modernizing the "Missing Material" error
To take advantage of the new structured error API and the IDE's capability to display such errors in a concise format, we need to add necessary structure and metadata to the "Missing Material" error at https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/material/debug.dart#L27. Here is what the f...
framework,f: material design,from: study,P2,team-design,triaged-design
low
Critical
472,130,928
vscode
[folding] Preserve folded ranges on revert
Editor losing folding status, when we doing git revert changes and scroll to top of the page ![vscode2019-07-24 15-26](https://user-images.githubusercontent.com/4384874/61774890-6b166500-ae2a-11e9-9161-30552d0cfa11.gif)
feature-request,editor-folding
low
Minor
472,151,231
godot
-Woverloaded-virtual warnings
When adding a GCC warning `-Woverloaded-virtual` I see following warnings: ``` grep 'was hidden' build.log | sort | uniq ./core/os/dir_access.h:74:17: warning: 'virtual String DirAccess::get_next(bool*)' was hidden [-Woverloaded-virtual] ./core/script_language.h:170:18: warning: 'virtual Variant ScriptInstance:...
bug,topic:core,topic:buildsystem
low
Minor
472,176,960
pytorch
Add gatherv/allgatherv primitives to support non-equal contribution
## 🚀 Feature New operations `gatherv` and `allgatherv` to support gathering tensors of different shapes. ## Motivation This is not uncommon (e.g. different size batches) and one has to jump through hoops to get this done today. Native support means a better user experience. ## Pitch We'll add `gatherv` ...
oncall: distributed,module: bootcamp,feature,triaged
low
Minor
472,220,639
kubernetes
Allow for more frequent etcd compaction but still long-enough history in etcd
Currently, the etcd compaction algorithm that we use is as following: - we store "etcd revision" from the moment of last compaction under a special key in etcd - then periodically even N seconds/minutes we: - compare to see if (local compact time) = (remote compact time) - if yes, we increment both local and r...
sig/scalability,area/etcd,sig/api-machinery,kind/feature,lifecycle/frozen,sig/etcd
medium
Major
472,246,854
go
cmd/go: prune non-source files in 'go mod vendor'
<!-- 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.7 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? I would say that the issue is kind of enhancement or feature re...
NeedsInvestigation,modules
low
Critical
472,295,907
pytorch
Error while using Libtorch + OpenCV + Qt Creator
I have the following configuration in the .pro file ``` TEMPLATE = app CONFIG += console c++11 CONFIG -= app_bundle CONFIG -= qt CONFIG += thread SOURCES += main.cpp INCLUDEPATH += /usr/local/include/opencv4 LIBS += -L/usr/local/lib/ LIBS += -lopencv_core ...
module: cpp,triaged
low
Critical
472,350,333
pytorch
make torch.utils._download_url_from_file public and add a docstring
We have this function https://github.com/pytorch/pytorch/blob/7203612f852e57b3f1667a614444bbb24beec7fb/torch/hub.py#L370-L406 as part of hub. Expose it public, i.e. remove the `_` prefix, and add a docstring. Additionally, add special-case handling of Google Drive downloads, as seen here: https://github.com/pytor...
module: docs,triaged,module: hub,module: ux
low
Minor
472,353,846
electron
Override Alt+Space shortcut on Windows
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]-...
enhancement :sparkles:
low
Minor
472,383,426
flutter
Feature request: Setting paragraph distance in Text and TextField
Currently, we have no control over paragraph spacing in both Text and TextField. This feature is important in text stying.
a: text input,c: new feature,framework,f: material design,a: typography,P3,team-framework,triaged-framework
low
Major
472,383,874
go
net/http: GET request hangs if "Content-Length" reqest-header field ist set (possible DoS vulnerability)
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> PS C:\WINDOWS\System32> go version go version go1.12.7 windows/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and p...
NeedsInvestigation
low
Critical
472,391,825
youtube-dl
Need to download from hulu.jp
<!-- ###################################################################### 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
472,416,784
flutter
Update flutter_runner to not use Shell::GetEngine
As reported in https://github.com/flutter/flutter/issues/35889, we want to get rid of the shell being able to vend weak pointers to the engine. Fuchsia uses this functionality in a few places that are less trivial to work around. We should update this, probably after flutter_runner is migrated to the engine repo. ...
engine,platform-fuchsia,e: embedder,P2,team-engine,triaged-engine
low
Minor
472,483,967
rust
Copy trait defeats generator optimization
The following example ([playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=8ce85f410c979987157e2a0518f065d2)): ```rust #![feature(generators, generator_trait)] use std::ops::Generator; #[derive(Clone)] struct Foo([u8; 1024]); fn overlap_foo() -> impl Generator<Yield = (),...
C-enhancement,T-compiler,A-coroutines,I-heavy,C-optimization
low
Critical
472,497,671
angular
[forms] Submitted state on FormGroup in subcomponent is inconsistent
# 🐞 bug report ### Affected Package The issue concerns @angular/forms ### Is this a regression? Not that I'm aware of ### Description Using different approaches to place form controls in subcomponents leads to inconsistent results. See [the stackblitz](https://stackblitz.com/edit/components-issue-form-grou...
type: bug/fix,freq1: low,area: forms,state: confirmed,forms: Controls API,P4
low
Critical
472,546,691
pytorch
QNNpack tests should be skipped on ppc64le (not enabled there)
## 🐛 Bug The pytorch tests for QNNpack attempt to run when run on the ppc64le platform, where QNNpack is not enabled. The tests have no awareness of whether the build was done with USE_QNNPACK=OFF specified. As a consequence, the tests immediately fail. ## To Reproduce Steps to reproduce the behavior: 1....
module: tests,triaged,better-engineering
low
Critical
472,584,334
rust
Async fn doubles argument size
Generator optimization in #60187 by @tmandry reused generator locals, but arguments are still duplicated whenever used across yield points. For example ([playground](https://play.rust-lang.org/?version=nightly&mode=release&edition=2018&gist=af3e5e9233c45d6397c7b4b3e671f092)): ```rust #![feature(async_await)] ...
C-enhancement,T-compiler,A-coroutines,I-heavy,A-async-await,AsyncAwait-Triaged,C-optimization
medium
Major
472,590,984
create-react-app
Need help? Visit our Spectrum community.
If you have a general question about Create React App or about building an app with Create React App we encourage you to post on our [Spectrum community](https://spectrum.chat/create-react-app) instead of this issue tracker. The maintainers and other community members can provide help and answer your questions there: ...
issue: announcement
low
Critical
472,613,037
pytorch
[jit] add named tuple as output type to the tracer
There're several requests that want the tracer to support dict as the output. While supporting general dict in tracer is hard, we could instead support named tuple (which values are tensors) as the output of the tracer. cc @suo
oncall: jit,triaged
low
Minor
472,630,697
create-react-app
Create a workflow for sharing scripts for service workers required in public
### Is your proposal related to a problem? At present I can't seem to see a clean way to use imports inside the src folder and then have those scripts available to importScripts inside a serviceWorker The use case I'm up against is sharing an idb store where in src it's easy enough to import the idb library and c...
issue: proposal
low
Minor
472,644,186
three.js
Improving BufferAttribute (maybe)
While working with GLTF loader a fair bit in the past few months I've hit a few issues that seem to be impossible to fix perfectly short of changing parts of the core library. This issue presents the issues and solicits feedback. Ideally, GLTF loader should be able to create a WebGL buffer for each bufferView that i...
Suggestion,Design
medium
Major
472,646,937
pytorch
dyndep function not working
## 🐛 Bug On using the command dyndep.InitOpsLibrary('/usr/local/lib/libcaffe2_detectron_ops_gpu.so') to load libcaffe2_detectron_ops_gpu.so ,the program stucks/hang and even ctrl + c is not working to stop the program.
caffe2
low
Critical
472,647,895
flutter
iOS accessibility focus not returned to textfields after keyboard closed when other widgets are present
## Steps to Reproduce 1. Enable VoiceOver on iOS 2. Open flutter gallery app and navigate to material > text fields 3. Tap on any textfield, double tap to start editing 4. Dismiss the keyboard with done 5. The accessibility focus does not return to the edited textfield, but move to other widget and start to read...
a: text input,platform-ios,framework,f: material design,a: accessibility,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-accessibility,triaged-accessibility
low
Minor
472,703,809
opencv
CUDA_Legacy/NCV.HypothesesFiltration test failed
##### System information (version) - OpenCV => 4.1.0 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 - CUDA RT => 8.0 - CUDA driver version => 10.0 [----------] [ GPU INFO ] Run on OS Windows x64. [----------] *** CUDA Device Query (Runtime API) version (CUDART static li...
category: gpu/cuda (contrib)
low
Critical
472,712,119
flutter
[webview_flutter] Add an option to bypass SSL checks
Hi there.. I'm using the Flutter plugins 'webview_flutter' to load certain url and it works perfectly.. with http or without https .... but there is certains url comes with https was detected having not a valid ssl caused my flutter apps to be blank... So my questions is...is that possible I can ignored those SSL...
c: new feature,p: webview,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
medium
Critical
472,740,908
create-react-app
Allow JSON with comments in jsconfig.json
### Is your proposal related to a problem? This is a follow-on from #7248. Right now, we don't support JSONC (JSON with comments) in `jsconfig.json` files. ### Describe the solution you'd like After a discussion with @iansu, we see two paths: 1. Implement the same solution as we did for TypeScript. This is e...
issue: proposal,difficulty: medium,contributions: claimed,good first issue
low
Major
472,748,338
vscode
[html] auto close tags being inserted before its html content
Issue Type: <b>Bug</b> Usually, after opening a HTML tag(`<div>`, for example), an auto close tag is immediately inserted (`</div>` in this case) and cursor is positioned between them, so I can continue typing... but when using "Remote - SSH", since it takes a few mili seconds to auto complete (internet latency,...
bug,html
low
Critical
472,790,092
flutter
Why TableRow doesn't support center,width and height params?
When I'm using the TableRow widget, I have two problems: how to set the height and center of its children? Why TableRow doesn't support height and center params? Now If I want to let the children of TableRow gravity center,I use Align(Center) warpped around the children of TableRow. If I want to setting the hei...
c: new feature,framework,P2,team-framework,triaged-framework
low
Critical
472,846,915
opencv
Can't read File using cv::FileStorage from files with very long path and filenames
##### System information (version) - OpenCV => 4.1 - Operating System / Platform => Windows 10 - Compiler => msvc2015 64 bit ##### Detailed description I am not able to read a file using cv::FileStorage from a file that has a long path, while reading the file with QFile works fine. ##### Steps to re...
priority: low,category: core
low
Minor
472,850,321
opencv
G-API incomplete documentation
##### System information (version) - OpenCV => 4.x - Operating System / Platform => N.C. - Compiler => N.C. ##### Detailed description The documentation for the G-API is incomplete. There is also no example on how to switch between G-API backends (Fluid, GPU, ...) https://docs.opencv.org/4.0.0/d4/ddd/gapi_imp...
category: documentation,category: g-api / gapi
low
Minor
472,858,143
kubernetes
The vulnerability(CVE-2019-11244) is not completely eliminated
**What happened**: The PR(https://github.com/kubernetes/kubernetes/pull/77874) seems have fixed [CVE-2019-11244](https://nvd.nist.gov/vuln/detail/CVE-2019-11244). But I doubt the correction didn't fix completely. According to the description of [CVE-2019-11244](https://nvd.nist.gov/vuln/detail/CVE-2019-11244)...
kind/bug,area/security,sig/api-machinery,lifecycle/frozen
low
Critical
472,865,864
opencv
Crop and resize to work with blobFromImages
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest de...
feature,category: dnn
low
Critical