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
481,832,743
TypeScript
Provide TypeScript as an ESM
## Search Terms commonjs, esm, lib/typescript ## Suggestion Currently `lib/typescript.js` and other `lib` files do not support being loaded as ES modules. They only support loading as a global script or a CommonJS module. ## Use Cases For runtimes that want to load TypeScript as a module and not in the ...
Suggestion,Awaiting More Feedback
medium
Major
481,835,570
neovim
Excessive memory usage with large job output (OOM)
Given t-oom.vim: ```vim function! F(...) abort endfunction let j = jobstart( \ 'rg -H --no-heading --vimgrep --sort-files .', { \ 'on_stdout': function('F'), \ }) echom j echom string(jobwait([j])) ``` Run it using `nvim -u t-oom.vim` in Neovim's source directory. After ~15s it gets ...
bug,needs:design,job-control,needs:discussion
low
Major
481,852,809
rust
rustc hangs/spins on example involving associated types
The following 5-line example causes `rustc` to spin: ```rust pub struct Chicken<'a, T: Trait>(&'a Frog<'a, T::Item>); pub struct Frog<'a, T: Trait>(&'a Chicken<'a, T>); pub trait Trait { type Item; } ``` The spin happens with or without the `--edition=2018` flag. This may be the same issue as #62...
A-trait-system,A-associated-items,T-compiler,C-bug,I-hang
low
Critical
481,866,654
rust
Non-exhaustive patterns lead to bogus "unused variable" / "dead code" warnings
Consider this code: ```rust fn foo() -> Option<i32> { None } pub fn bar(x: i32) { match foo() { Some(_) => return, } let _val = Box::new(x); } ``` This generates the following diagnostics on current nightly: ``` warning: unreachable statement --> src/lib.rs:8:5 | 8 | le...
A-lints,T-compiler,C-bug
low
Critical
481,869,668
flutter
Flutter can not render calendar widgets in a single frame at 60fps
## Details I was trying to build a calendar app and I found that flutter can not build calendars in appropriate time (under 16ms) and using multiple calendar widgets in one page causing jank. The widget that I'm trying to build is a page that shows a complete year view. It's a common design in calendar apps such as ...
platform-android,framework,c: performance,f: date/time picker,has reproducible steps,P2,found in release: 3.0,found in release: 3.1,team-android,triaged-android
low
Critical
481,884,000
scrcpy
Scripts to unlock the phone and to swipe up - mainly for non touchscreen devices
I am testing scrcpy on a lenovo t430 without a touchscreen, my phone is locked and these are the steps to unlock it: adb shell input keyevent 26 && adb shell input swipe 200 500 200 0 && adb shell input text "your pin" The second command adb shell input swipe 200 500 200 0 allows me to perform a swipe up ac...
feature request
low
Minor
481,889,605
youtube-dl
--max-filesize may not work
## Checklist - [* ] I'm reporting a broken site support issue - [* ] I've verified that I'm running youtube-dl version **2019.08.13** - [* ] I've checked that all provided URLs are alive and playable in a browser - [ *] I've checked that all URLs and arguments with special characters are properly quoted or escape...
bug,mpd,hls
low
Critical
481,906,087
rust
Some closures are not inlined in release mode
Consider the following code ([playground](https://play.rust-lang.org/?version=stable&mode=release&edition=2018&gist=e58aaff523a8948c15e6f60d11efd952)): ``` fn main() { let err = Err(()); let _: usize = err.unwrap_or_else(|err| err_exit(err)); unreachable!(); } fn err_exit(_: ()) -> ! { std::...
A-LLVM,I-slow,A-codegen,T-compiler,C-bug
low
Major
481,908,111
rust
Local rustdoc search doesn't work with --no-deps
I'm having an issue that is similar to https://github.com/rust-lang/docs.rs/issues/316, but it's about local docs. I'm using `cargo doc --no-deps --open`, and on the opened page the search does not work. It shows "Loading search results..." and doesn't complete, just like in the link above. The JS console says: `...
T-rustdoc,E-needs-test,C-bug,A-rustdoc-search
low
Critical
481,915,659
TypeScript
test-262 integration
## Search Terms test-262, test262 ## Suggestion Run [test-262](https://github.com/tc39/test262) on TS downlevel ## Use Cases > What do you want to use this for? - Verify that downleveling is spec-compliant to avoid issues when changing the test target. - Possible benefits for TS team: - Reduce...
Suggestion,Experience Enhancement
low
Critical
481,922,463
go
proposal: runtime/pprof: add new WithLabels* function that requires fewer allocations
`runtime/pprof.Labels` is used in conjunction with `runtime/pprof.WithLabels` to set pprof labels in a context for performance profiling. https://github.com/golang/go/blob/c485506b0aae298652448e80fca35036bfa755ac/src/runtime/pprof/label.go#L59 Adding information for fine grained on demand profiling of already runni...
Proposal,Proposal-Hold
medium
Major
481,927,301
rust
Types in error message are incorrect when saying what trait is not implemented
When trying to implement Product for a newtype the error messages saying what I should implement was incorrect. I tried this code: ```rust struct MyInt(i32); impl<__RhsT> ::core::ops::Mul<__RhsT> for MyInt where i32: ::core::ops::Mul<__RhsT, Output = i32>, { type Output = MyInt; #[inline] ...
A-type-system,C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,T-types
low
Critical
481,942,333
pytorch
Doesn't install the python module "torch"
I've built the FreeBSD package, here is the log: https://people.freebsd.org/~yuri/py36-pytorch-1.2.0.log However, it didn't install the "torch" module, see the plist: https://people.freebsd.org/~yuri/py36-pytorch-1.2.0-plist.txt The shar archive of the FreeBSD port: https://people.freebsd.org/~yuri/py-pytorch.sha...
module: build,triaged
low
Major
481,959,329
rust
Redundant semicolons are parsed as an empty tuple semicolon statement
```rust fn foo() { let _ = 3;;;; } ``` Given the above example, the rustc parser used to silently drop the redundant semicolons (`;;;`) from the AST. However, recently the parse has changed how it treats the redundant semicolons - they are now parsed as a semicolon statement with an empty tuple: ```rust ...
A-parser,T-compiler,C-bug
low
Minor
481,974,509
rust
Warn about non-printable characters in string literals
Currently a string literal with control characters like `\0` or `\v` is accepted without any warnings. The only exception is `\r`, which gives a hard error. It makes more sense to treat all non-[printable](https://en.wikipedia.org/wiki/ASCII#Printable_characters), non \t, \n ASCII characters as a warning. Steps ...
C-enhancement,A-lints,A-diagnostics,A-parser,T-lang,T-compiler,E-medium
low
Critical
481,989,089
youtube-dl
Viki old subtitles sync
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
subtitles,geo-restricted
low
Critical
481,996,762
go
x/crypto/scrypt: implementation not compliant with RFC 7914?
See: https://tools.ietf.org/html/rfc7914. In particular, [Section 2: scrypt Parameters](https://tools.ietf.org/html/rfc7914#section-2): > The CPU/Memory cost parameter N ("costParameter") must be larger than 1, a power of 2, and less than 2^(128 * r / 8). The parallelization parameter p ("parallelizationParameter")...
ExpertNeeded,NeedsInvestigation
low
Major
482,000,301
youtube-dl
Download from medici.tv as logged in user account
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
482,007,221
flutter
AnimatedIcon textDirection has no affect on icon directionality
i just set textDirection to TextDirection.rtl but this makes no difference when setting to TextDirection.ltr . flutter doctor -v: ``` [✓] Flutter (Channel stable, v1.7.8+hotfix.4, on Linux, locale en_US.UTF-8) • Flutter version 1.7.8+hotfix.4 at /home/abed/.local/flutter • Framework revision 20e59316b8 (4 ...
framework,f: material design,a: quality,a: typography,has reproducible steps,P2,found in release: 3.7,found in release: 3.10,team-design,triaged-design
low
Minor
482,007,607
react
Refactor ProfilerContext to use reducer instead of multi-state
The `ProfilerContext` is currently comprised of several pieces of related state, each managed with `useState`. This necessitates awkward checks like [this](https://github.com/bvaughn/react-devtools-experimental/blob/4697f5b37967b85b2c844044aeebb5b1a740875d/src/devtools/views/Profiler/ProfilerContext.js#L126-L131) or ev...
Type: Enhancement,Component: Developer Tools,React Core Team
medium
Minor
482,009,435
godot
Path3D Curve's points and control points are indistinguishable
<!-- 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 <!-- Specify commit hash if non-official. --> **Issue description:** In the editor, the points in a curve and their respective control p...
enhancement,topic:editor,usability,topic:3d
low
Critical
482,013,059
godot
Using `HashMap::get` with a null value crashes the engine when the key type is `const char *`
Godot 3.2 master It crashes because it then uses `hash_djb2`, which doesn't check for `NULL`. https://github.com/godotengine/godot/blob/ef37f00525643e391e19b79f84fc6fd15762b3be/core/hashfuncs.h#L50-L60
bug,topic:core,confirmed,crash
low
Critical
482,013,264
godot
FileAccessMemory::eof_reached() is likely off by one
Godot 3.2 master Found out `eof_reached` is implemented this way in `FileAccessMemory`: https://github.com/godotengine/godot/blob/ef37f00525643e391e19b79f84fc6fd15762b3be/core/io/file_access_memory.cpp#L136-L139 Which is off by one. EOF should trigger at `length`, not one after `length`. It is further confirmed...
bug,topic:core,confirmed
low
Critical
482,013,945
rust
Transition rustc Parser to proc_macro token model
Currently, there are two different approaches for dealing with composite tokens like `>>` in rustc. 1. Keep tokens in composed form, and split into pieces, `>` and `>`, when necessary. 2. Keep tokens decomposed, with jointness information, and join tokens when necessary. At the moment, the first approach is used...
C-cleanup,A-parser,T-compiler
low
Major
482,014,580
storybook
Addon-docs: Allow linking within mdx with addon-links
**Is your feature request related to a problem? Please describe.** I can't seem to get linking using `addon-links` within an mdx file. Neither of these options worked for me: ![2019-08-16_13-02-50](https://user-images.githubusercontent.com/1977804/63227689-e3184680-c1ae-11e9-9087-4b9f3ec5ec23.png) **Describe th...
feature request,addon: docs,mdx
medium
Major
482,015,269
flutter
Support JIT mode in production/release builds.
## Use case Using flutter in environments where AOT isn't needed, like kiosk or desktop environments. For certain use cases AOT adds little benefit, and can even impede performance (the JIT mode apparently can perform better). ## Proposal Add the ability to build a 'release' mode of the flutter engine that ...
c: new feature,tool,t: gradle,P3,team-tool,triaged-tool
low
Critical
482,019,104
opencv
VNG demosaicing does not support 16U or Neon
##### System information (version) - OpenCV => 4.1.0 - Operating System / Platform => Ubuntu 16.04 64 Bit - Compiler => GCC 5.4.0 ##### Detailed description VNG debayering options [do not support 16U images](https://github.com/opencv/opencv/blob/19a4b5137149e43fa85bef16707c40b535d195b4/modules/imgproc/src/demosa...
feature,category: imgproc,priority: low
low
Critical
482,039,751
terminal
Feature Request: ⬇️ button to appear when scrolled many pages up
# Description of the new feature/enhancement Sometimes people using the Terminal need to scroll very far up, and read a lot of previous output. They then want to return immediately all the way to the bottom of the terminal, to see the latest output. **Currently**: users scroll a lot to get to the bottom of the te...
Issue-Feature,Area-UserInterface,Area-Extensibility,Product-Terminal
low
Minor
482,041,701
pytorch
Problematic handling of NaN and inf in grid_sample, causing segfaults, corrupted CUDA memory, and incorrect results
_This issue is an expansion of the issue reported in https://github.com/pytorch/pytorch/issues/19826. The discussion there diagnoses the segfault that occurs in the vectorized 2D CPU kernel. This issue covers the wider problematic handling of `NaN` and `inf` in all versions of `grid_sample` kernels. For details on `in...
high priority,module: crash,module: cuda,triaged,module: interpolation
low
Critical
482,045,079
go
x/image/tiff: sony .arw files decode as a 0x0 image.Gray
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13beta1 windows/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architectu...
NeedsInvestigation
low
Critical
482,047,190
pytorch
Transformer Lack of Embedding Layer and Positional Encodings
The Transformer implementation docs (https://pytorch.org/docs/stable/nn.html?highlight=transformer#torch.nn.Transformer) state that they implement the original paper but fail to acknowledge that they don’t implement the following: * Layer Norm as the default normalization option. * Positional Encodings * Embedding...
high priority,module: docs,feature,module: nn,triaged,needs design
medium
Critical
482,063,287
flutter
Convert existing Objective-C TUs to use ARC.
There is an unfortunate and confusing mix of TU's in the engine that use ARC and those that don't. Migration to ARC was not done on all TU's because of utility classes in FML that that were not ARC ready. We should just migrate to ARC fully. There are too many Objective-C TUs in the engine so the migration should not b...
engine,P2,team-engine,triaged-engine
low
Minor
482,083,671
pytorch
subprocess.CalledProcessError: Compile source in NVIDIA TX2
## ❓ Questions and Help ### I got some error when compile from source : after enter "python3 setup.py build" , the error displayed. - **Environment:Jatpack 3.1 cuda 8.0 cudnn6.0.1 python3.5** - Here is the full log: Building wheel torch-1.3.0a0+354ecc4 -- Building version 1.3.0a0+354ecc4 cmake -GNinja -D...
module: build,module: cuda,triaged
low
Critical
482,091,388
scrcpy
REQUEST: can you please add virtual navigation
can you please add an option for virtual navigation ?? i'm using gesture navigation mode on my MIUI 10 .. it's very hard to draw those gestures with mouse or touch-pad and i don't want to switch from full-screen mode on my phone. thanks in advance :)
feature request
low
Major
482,094,144
pytorch
PyTorch 1.2 'module' object has no attribute 'BFloat16StorageBase'
I installed PyTorch 1.2 from pip: `pip2 install torch torchvision --user` Then when I import torch, it got the following error: `Python 2.7.12 (default, Nov 12 2018, 14:36:49) ` `[GCC 5.4.0 20160609] on linux2` `Type "help", "copyright", "credits" or "license" for more information.` `>>> import torch` `Trace...
triaged,module: undefined reference,module: vision
low
Critical
482,097,134
pytorch
NetworkX's Version
## 📚 Documentation I wonder if this is still the case: https://github.com/pytorch/pytorch/blob/dfdb86a59577d8b0fc4565988a8ac01b5ecd339f/docker/caffe2/jenkins/common/install_python.sh#L143-L146 I tried the latest nextworkx for memonger and haven't hit an issue so far.
caffe2
low
Minor
482,161,481
pytorch
Gloo scatter gives wrong result for stride != 1
## 🐛 Bug `torch.distributed.scatter` on Gloo backend gives wrong result if input tensor stride != 1. ## To Reproduce On worker 0: ```python import torch.distributed torch.distributed.init_process_group('gloo', world_size=2, rank=0, init_method='file:///tmp/pt-dist') out = torch.zeros([3]) torch.distrib...
oncall: distributed,module: bootcamp,triaged
low
Critical
482,190,450
vscode
[css] code completion for gradient functions
There is no code hint when VSCode edits the `linear-gradient`, `radial-gradient` function of the CSS `background-image` property. - VSCode Version: 1.36.1 - OS Version: Windows 10 Reproduce steps: 1. Open a CSS file 2. Edit the `background-image` property and write the `linear-gradient` function. 3. Write c...
feature-request,css-less-scss
low
Minor
482,246,633
go
proposal: encoding/json: opt-in for true streaming support
# Overview I have long wanted proper streaming support in the `encoding/json` library. I’ve been doing some homework to understand the current state of things, and I think I’ve come to grips with most of it. A number of previous issues relate to this topic: https://github.com/golang/go/issues/7872, https://github...
Proposal
medium
Critical
482,299,954
angular
Only partial bootstrap without warning when using `ngDoBootstrap()` and `@NgModule.bootstrap` components
# 🐞 bug report ### Is this a regression? No, I don't think so. ### Description Only partial bootstrap happens while using bootstrap for entry-components in hybrid app. It looks like `ngDoBootstrap` is being ignored while `AppModule` contains entry in `bootstrap` but tit also depends how do we use `bootstrapMod...
hotlist: error messages,area: core,state: confirmed,P4
low
Critical
482,306,949
terminal
Figure out what to do with keybindings whose characters could be triggered by multiple VKs
I tried to map ctrl+shift+| for vertical split but keybinding changed to \\(but everything works correctly) additionally i have second backslash button between left shift and z key and using this key combination doesn't work. # Environment Windows build number: 10.0.18963.0 Windows Terminal version (if applicabl...
Issue-Feature,Help Wanted,Area-Input,Product-Terminal
low
Major
482,307,427
rust
Unhelpful error message E0505 for self-referencing lifetime constraint
Given the following code: ```rust trait Handler {} struct Easy2<H: Handler>(H); struct Context<'r>(Option<&'r [u8]>); impl<'r> Handler for &'r mut Context<'r> {} fn perform<'a>(ctx: &'a mut Context<'a>) { Easy2(ctx); } fn build_response(_ctx: Context) {} fn call() { let mut ctx = Context(None);...
C-enhancement,A-diagnostics,A-lifetimes,A-borrow-checker,T-compiler
low
Critical
482,316,138
rust
Type inference fail in a closure
Let's have a look at two similar closures: ```rust fn foo(v: &Vec<i32>) -> i32 { let x: usize = 0; let condition = |idx| v[idx] > 0; if condition(x) {0} else {1} } fn bar(v: &Vec<(i32, i32)>) -> i32 { let x: usize = 0; let condition = |idx| v[idx].0 > 0; if condition(x) {0} else {1} ...
A-closures,T-compiler,A-inference,C-bug
low
Critical
482,335,959
scrcpy
Request: when an emulator is running, and a device is connected, still auto-use the device
In this case it doesn't make sense that scrcpy will try to connect to the emulator. It should connect automatically directly to the device.
feature request
low
Minor
482,408,480
godot
Visual script: Class Constant list does not include Input
**Godot version:** v3.1.stable.official **OS/device including version:** Windows 10 Enterprise 10.0.17134 Build 17134 **Issue description:** I created a Class Constant node to get access to the MouseMode enum in the Input class, the Input class does not show up on the list even though Performance does for exam...
bug,confirmed,topic:visualscript
low
Major
482,413,342
TypeScript
[Feature Request] A way to specify preference to emit `typeof` a variable instead
<!-- 🚨 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 emit, typeof, variable <!-- List of keywords you searched f...
Needs Investigation
low
Critical
482,458,985
flutter
Setting Google Maps key in Runtime
## Use case I have an app that should show a map for different clients by a white label application. But I need to use a different key for each white-labeled app ## Proposal 1-Simple solution: add documentation for white label google maps key and SHA-1 2-Half solution: in iOS, it could be programmatically 3-Y...
c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Minor
482,470,065
youtube-dl
Vider 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
482,498,227
flutter
Textfield in Drawer is hidden behind keyboard when in focus
In this video, I click on the password text field. https://youtu.be/-q6xS5Q3CKo
a: text input,framework,f: material design,f: scrolling,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Major
482,504,621
pytorch
Improve binary release for PyTorch domain library
## 🚀 Feature Based on the retro meeting following PyTorch 1.2.0 release, the team agreed to improve binary release process across PyTorch domain libraries: + torchvision @fmassa + torchtext @zhangguanheng66 + torchaudio @vincentqb @jamarshon A few general points: + Clear timeline for release to avoid the las...
module: binaries,triaged,better-engineering
medium
Critical
482,539,346
react
DevTools: An easier way to see all siblings
I have a particular pattern that I struggle with when navigating deep trees in devtools: I want to see all siblings of a node together. Say I'm in the middle of something and I wonder what are all nodes on the same level. It's super hard to actually get to that state. I wonder if we could tweak "left" button to do t...
Type: Enhancement,Component: Developer Tools,React Core Team
low
Major
482,540,711
react
DevTools: Occasional FOUC when loading DevTools
Seems to only happen the first time DevTools is opened after being installed (or perhaps the first time after the browser is opened). --- Originally reported via https://github.com/bvaughn/react-devtools-experimental/issues/381
Type: Bug,Component: Developer Tools,React Core Team
medium
Minor
482,542,595
react
Remember saved component filters by url or in bookmarks
It would be cool if it will support saving filter based on url or some bookmarks. I think it will be really useful for switching between different projects. And seems that bookmarks is better solution because usually people have some different stages like production/pre-production/local development. --- Originally ...
Type: Discussion,Component: Developer Tools,React Core Team
low
Minor
482,543,940
react
DevTools: React Native: Remember saved component filters between reloads
DevTools v4 added a pretty powerful new component filtering feature that enables devs to filter out components by type, name, or file system location. Because these filters can be a bit elaborate to create, they are saved between sessions to improve dev experience. **Unfortunately, I don't think I am going to be abl...
Type: Enhancement,Component: Developer Tools,React Core Team
medium
Minor
482,544,193
react
DevTools: React Native: Support reload-and-profile
React DevTools v4 adds a new reload and profile feature to measure perf for application "mount" ([although it required a bit of hacking](https://github.com/bvaughn/react-devtools-experimental/pull/35)). I don't feel knowledgeable enough about React Native to tackle it, so my current plan is to just **not** support this...
Type: Enhancement,Component: Developer Tools,React Core Team
medium
Major
482,547,222
react
DevTools: Profiler: Show which hooks changed
# "Can you show which hooks changed?" ...is a question I've heard a couple of times with regard to the new Profiler change-tracking feature. This request is certainly understandable, but it presents a couple of challenges: 1. Identifying which hooks values change would requires shallowly re-rendering each functio...
Type: Enhancement,Component: Developer Tools,React Core Team
high
Critical
482,547,444
react
DevTools: Component bookmarks
Product developers sometimes find it useful to jump back and forth between a few components in a tree. Currently this requires scrolling or using the selection tool. Maybe we could allow you to temporarily bookmark one or more components somehow? Then the existing Search interface could maybe be repurposed to let you s...
Type: Enhancement,Type: Discussion,Component: Developer Tools,React Core Team
low
Minor
482,550,567
react
DevTools: Fix disabled hooks lint rule
Disabled via 00f6466 More context at https://github.com/bvaughn/react-devtools-experimental/pull/154#discussion_r275134664 --- Originally reported via https://github.com/bvaughn/react-devtools-experimental/issues/156
Component: Developer Tools,React Core Team
medium
Minor
482,550,722
react
DevTools: Collect more info when profiling
Some feedback I've heard from a DevTools user (roughly transcribed by me): > I'm trying to pinpoint those renders...with hooks, it's sometimes more unclear to me why something is rendering...I generally don't use devtools much anywhere. I use console.log. But Redux devtools worked really well for me because I could ...
Type: Enhancement,Component: Developer Tools,React Core Team
low
Minor
482,550,920
react
DevTools: Should Profiler surface the base duration?
Benoit shared feedback that it would be helpful to show the base duration for the tree (and/or selected element) to get a sense of the total cost over time. (Not sure yet what we'd call this.) --- Originally reported via https://github.com/bvaughn/react-devtools-experimental/issues/55
Type: Enhancement,Component: Developer Tools,React Core Team
medium
Minor
482,551,102
react
DevTools: Better linking between browser Performance tab and DevTools Profiler
Notes from a chat with Benoit: It would be nice if starting profiling (or reload and profiling) in the browser auto-started profiling in DevTools. It would also be nice if viewing a range of time in the Performance tab narrowed down the commits within the Profiler. At least starting the profilers at the same time...
Type: Enhancement,Component: Developer Tools,React Core Team
medium
Major
482,552,635
create-react-app
[Option] Disable automatic dependency installation
### Is your proposal related to a problem? No ### Describe the solution you'd like It would be nice to be able to use create-react-app to create a new project without automatically installing all of the dependencies. Something like ```create-react-app app-name --skipInstall``` similar to how the [@angular/cli](htt...
issue: proposal
low
Major
482,554,044
flutter
Flutter crashes when you press multiple buttons using a mouse on Chromebook and release out of window
## Description - Run flutter_gallery on a Chromebook and use a mouse - Press both mouse buttons anywhere and hold - Drag out of the window - Release one of the buttons (or both buttons) - Move back into the window - App crashes On the other hand, if you do the same thing but only presses only one button at th...
framework,engine,platform-chromebook,a: desktop,a: mouse,P2,team-framework,triaged-framework
low
Critical
482,555,609
rust
Cannot use `use Self::*;` inside a method
```rust enum A {} impl A { fn foo() { use Self::*; // error: unresolved import `Self` } } ``` It's counterintuitive that this fails. At the very least (if it's not possible to fix this), we should special case the error message to explain the problem. https://github.com/rust-lang/rust/issues/...
C-enhancement,A-diagnostics,A-resolve,T-lang,T-compiler,D-confusing
low
Critical
482,555,925
pytorch
Recommendations for Grid Sample/Affine Grid/Displacement Fields/Optical Flow
I compiled a list of recommendations (as well as outstanding issues needing attention) for improving the `grid_sample` and `affine_grid` functions (the functions that are used to form a spatial transformer module), to make them easier to use for a number of computer vision applications. The list is not exhaustive, so ...
proposal accepted,triaged,module: interpolation
medium
Critical
482,556,578
react
DevTools: Crashes and warnings when quickly collapsing
This is weird. Happens if I select a node deeply and then long-press "left" arrow. ``` Invalid index 154 specified; store contains 154 items. Uncaught Invariant Violation: Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue. at ReactError (file:///Users/gaearo...
Type: Bug,Component: Developer Tools,React Core Team
medium
Critical
482,556,701
react
DevTools: Re-enable postMessage transferable for faster ArrayBuffer transfers
I got this on FB.com sandbox: <img width="815" alt="screen shot 2019-03-01 at 1 15 24 pm" src="https://user-images.githubusercontent.com/810438/53640457-26dcbb00-3c24-11e9-828f-a987ffeec4da.png"> --- Originally reported by @gaearon via https://github.com/bvaughn/react-devtools-experimental/issues/25
Type: Bug,Component: Developer Tools,React Core Team
medium
Minor
482,556,957
react
DevTools: Check if accessibility regressions exist compared to old DevTools
Before this becomes stable, we need to check if we are regressing accessibility on any important existing interactions. At least, we should probably make the tree view focusable. --- Originally reported by @gaearon via https://github.com/bvaughn/react-devtools-experimental/issues/52
Component: Developer Tools,React Core Team
medium
Minor
482,557,333
react
DevTools: Audit places where we change tags or disconnect alternates in React
Cases like https://github.com/bvaughn/react-devtools-experimental/issues/197 (where a dehydrated Suspense node turns into a regular one) produce confusing failures because we expect Fiber alternates to be "for life", whereas in practice they can actually get disconnected by React in some cases. (Search for "Disconnect"...
Component: Developer Tools,React Core Team
medium
Critical
482,557,409
react
DevTools: Components tree is sometimes unexpectedly empty after navigation
1. Open FB page 2. Open Components tab 3. Change address bar to `https://reactjs.org` and press Enter Expected: Components tab gets populated. Actual: <img width="783" alt="Screen Shot 2019-04-23 at 7 27 37 PM" src="https://user-images.githubusercontent.com/810438/56606380-00247a80-65fe-11e9-988c-2ad3e69eb579....
Type: Bug,Component: Developer Tools,React Core Team
low
Major
482,557,603
react
DevTools: Write tests for preserving selection
See https://github.com/bvaughn/react-devtools-experimental/pull/215. It would be nice to have test coverage for it. --- I got stuck here: ```js const Component = () => <div>Hi</div>; act(() => ReactDOM.render(<Component />, document.createElement('div')) ); const id = store.getElemen...
Component: Developer Tools,React Core Team
medium
Minor
482,558,777
flutter
[flutter_tool] Add support for unknown/unsupported platforms for the plugin tools templates
c: new feature,tool,P3,team-tool,triaged-tool
low
Minor
482,578,906
flutter
-[FlutterEngine maybeSetupPlatformViewChannels] is not thread-safe.
The platform view may have been collected in [the method call handler](https://github.com/flutter/engine/blob/99ee3c2b0df7911baa390fa897cefc836605d154/shell/platform/darwin/ios/framework/Source/FlutterEngine.mm#L305) which will cause the dereference of a collected value.
c: crash,platform-ios,engine,P2,team-ios,triaged-ios
low
Minor
482,647,307
pytorch
RuntimeError on PyTorch 1.2 under NVIDIA Nsight Systems
## 🐛 Bug Creating a pinned tensor in PyTorch 1.2 fails with `RuntimeError: Error in dlopen or dlsym: libcaffe2_nvrtc.so...` under NVIDIA Nsight Systems. I tested both PyTorch versions 1.2 and 1.1. This problem happened only in PyTorch 1.2. ## To Reproduce Steps to reproduce the behavior: 1. Install PyTo...
module: cuda,triaged,module: third_party
low
Critical
482,702,938
react
Chrome's Custom Formatters
**Do you want to request a *feature* or report a *bug*?** Feature _Transferring feature request from the old repo https://github.com/facebook/react-devtools/issues/989_ Hi! Is there any plans on supporting [Chrome's custom formatters](https://docs.google.com/document/d/1FTascZXT9cxfetuPRT2eXPQKXui4nWFivUnS_335T3...
Type: Discussion,Component: Developer Tools
low
Critical
482,702,948
TypeScript
TSServer: Find all reference for per overloaded function type
## Search Terms Find references, overload, function, overloaded function ## Suggestion Provide a mechanism to search references of a function with particular overloaded type ## Use Cases In current implementation find all references for overloaded function shows all references for every overload Some ti...
Suggestion,Awaiting More Feedback,Domain: Refactorings
low
Minor
482,808,077
create-react-app
disable TS check on start script
### Is your proposal related to a problem? <!-- Provide a clear and concise description of what the problem is. For example, "I'm always frustrated when..." --> Yep. My project has some interface exportation files just for IDE type definition (nothing imported on the project), but, when I try to `npm start...
issue: proposal,needs triage
low
Minor
482,821,805
flutter
Expose Skia Paint.getTextPath
Flutter fails to expose https://skia.org/user/api/SkPaint_Reference#SkPaint_getTextPath ## Use case Numerous. Using the text as clipping path, or using it as a base for more complex painting operations.
c: new feature,engine,dependency: skia,P3,team-engine,triaged-engine
low
Minor
482,847,199
pytorch
tensorboard add_graph error
I update torch to `1.2.0` and use `torch.utils.tensorboard import SummaryWriter` save the graph, report error: ``` Only tensors or tuples of tensors can be output from traced functions(getOutput at /pytorch/torch/csrc/jit/tracer.cpp:208) frame #0: c10::Error::Error(c10::SourceLocation, std::string const&) + 0x33 (0x...
triaged,module: tensorboard
medium
Critical
482,858,911
opencv
OpenCV VideoCapture::read reads an empty matrix mid video
##### System information - OpenCV => 4.1 - Operating System / Platform => x86_64 GNU/Linux (Debian-based) - Compiler => g++ (8.3.0) ##### Detailed description OpenCV VideoCapture::read fails to read certain video file formats until the end. Three test videos were tested (videos provided below): rottest.av...
bug,category: videoio,RFC,future,confirmed
low
Major
482,902,861
go
cmd/gc: go:nointerface pragma is undocumented
The Go compiler has a pragma //go:nointerface As far as I can tell, it prevents a method from being used to satisfy an interface. However, I cannot find any (public) documentation on it. Even https://golang.org/src/cmd/compile/internal/gc/lex.go, which has comments for the other pragmas, does not describe ...
Documentation,help wanted,NeedsInvestigation
low
Minor
482,929,302
go
doc: do not embed style in release-note HTML files
When styles are embedded in release note html files, it may also require you to do the same thing in the previous ones to keep the same style across all versions. [The embedded style](https://github.com/golang/go/blob/d6ffc1d8394d6f6420bb92d79d320da88720fbe0/doc/go1.6.html#L12) in go1.6 html seems to cause #33718. ...
Documentation,NeedsFix
low
Major
482,967,645
vue
Scoped CSS attribute is reused or discarded when switching between components with scoped CSS
### Version 2.6.10 ### Reproduction link - Functional components: [https://github.com/sin1ght/test](https://github.com/sin1ght/test) - Regular components and slots: https://codesandbox.io/embed/vue-template-3pnsx ### Steps to reproduce After npm run serve, click the toggle button and find that c...
bug,contribution welcome
low
Major
482,980,626
flutter
Disable crash reporting if the flutter_tool checkout is dirty
This can be the source of confusing crash reports that are not possible to debug.
c: new feature,team,tool,P2,team-tool,triaged-tool
low
Critical
482,984,604
flutter
Add any experimental flags enabled to crash reports
This will help with narrowing down the cause of tool crashes, reproducing and fixing them.
c: new feature,team,tool,P3,team-tool,triaged-tool
low
Critical
482,985,760
pytorch
Shared Dataset Functionality
## 🚀 Feature We want to build a unified data pipeline interface that offers building blocks for others to build on with the following objectives: * Standardize datasets across domains. * Offer flexible building blocks that can be combine to obtain other datasets. * Enable datasets that do not fit in memory. * S...
module: dataloader,triaged,better-engineering
low
Major
483,008,387
rust
Cargo can't find std crates using local-rust-root on macOS.
<!-- Thanks for filing a 🐛 bug report 😄! --> **Problem** <!-- A clear and concise description of what the bug is. --> <!-- including what currently happens and what you expected to happen. --> Cargo won't find std or core crates if I try to bootstrap using the following command: ``` cd /opt/mxe/tmp-rustc-...
O-macos,T-bootstrap,requires-custom-config
low
Critical
483,018,603
godot
Godot leaks a lot of things if started with inexistent scene path in command line
Godot 3.2 71a6d2cd17b9b48027a6a36b4e7b8adee0eb373c I launched Godot with a command line argument so it starts a specific scene. However, the path was wrong, and Godot failed to load it as expected. However, it leaked a bunch of things after that: ``` Godot Engine v3.2.dev.custom_build.71a6d2cd1 - https://godoten...
bug,topic:core,confirmed
low
Critical
483,018,613
go
context: Remove allocation discussion from WithValue documentation
This is a proposed package documentation change. I'm happy to submit a code change with this update, if it makes sense. I took the liberty of abbreviating the questions in the template. ### What version of Go are you using (`go version`)? Documentation in the [latest source of context.go (commit d6ffc1d8394d6f6...
Documentation,NeedsDecision
low
Major
483,024,050
flutter
Allow setting the paint used on icons
For example, if you wanted to draw a stroked icon rather than filled, it is not possible without custom code today. We should allow specifying a foreground paint on icons, which would allow for specifying shaders or stroke/fill styles.
c: new feature,framework,P2,team-framework,triaged-framework
low
Minor
483,044,684
node
http2 compat missing writableFinished
http2 compat is missing `writableFinished` for `OutgoingMessage`. I tried fixing this myself but the whole finished flow for http2 compat confuses me. - `finished` seems to be looking at a lot of different stuff (e.g. what does abort have to do with finish?). - `'finish'` is emitted on `stream.on('close', ...)`....
http2
low
Minor
483,046,865
flutter
Support full-screen for GLFW embedding
May be this implementation can be useful for Full Screen Apps This Also requires minimize, maximize and close handles Api for App, so that we can do such tasks within Full Screen App
engine,a: desktop,e: glfw,P3,team-linux,triaged-linux
low
Minor
483,085,177
godot
Mouse input remains disabled even after re-enabling viewport input
**Godot version:** 3.1.1.stable.mono.official **OS/device including version:** Windows 7 Professional Service Pack 1 **Issue description:** After a SetDisableInput(true); if I try to enable again the viewport input with SetDisableInput(false); it won't be processed until I minimize and bring back the te...
bug,topic:input
low
Critical
483,085,672
pytorch
Successive Layer Normalization in nn.Transformer
In the nn.transformer.py module, the Transformer*Layer objects always have a layer norm at the very end of their forward method. However, the main Transformer object passes additional layer norms to both the TransformerEncoder and TransformerDecoder, effectively computing layer norm twice after the encoder, and twice a...
module: nn,triaged
low
Major
483,086,655
pytorch
Consider not checking in autogenerated core/{Tensor.h,TensorMethods.h}
ATen/core/Tensor.h, ATen/core/TensorMethods.h are autogenerated and checked in. However, checking in autogenerated files is a recipe for merge conflicts; I've ran into 3 in the past two weeks. I think this is because git thinks it can merge two of these files from different branches together but they get merged togethe...
module: build,module: cpp,triaged
low
Major
483,091,799
go
x/mobile: Issues converting Data to []byte in Swift
<!-- 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.9 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture ...
ExpertNeeded,NeedsInvestigation,mobile
low
Critical
483,148,353
flutter
Move desktop target platform artifacts out of host platform artifact directory.
The debug desktop target platform is currently cohabitating with the host platform artifacts of the same name. The debug target platform artifacts should be moved to `platform-debug` to match the reset of the artifact repository. This could be done via a soft transition by upload the artifacts to both directories, a...
tool,a: desktop,P3,c: tech-debt,team-tool,triaged-tool
low
Critical
483,167,908
pytorch
[RPC] Make ProcessGroupAgent send task non-blocking
@xush6528 pointed out in #23968 that we should make send task non-blocking in `ProcessGroupAgent`. It currently [waits](https://github.com/pytorch/pytorch/blob/0bf63f483a9cf4fbb63c680cb9b71e2dd09a110a/torch/csrc/distributed/rpc/process_group_agent.cpp#L181) until both preamble and payload send finishes. We could use a ...
todo,triaged,module: rpc
low
Major
483,184,728
rust
The rules for how non-Send local variables "infect" an async function, making its Future type non-Send also, are stricter than they need to be.
Here's an example which I think should compile, but which doesn't (cargo 1.39.0-nightly 3f700ec43 2019-08-19): ```rust #![feature(async_await)] fn require_send<T: Send>(_: T) {} struct NonSendStruct { _ptr: *mut () } async fn my_future() { let nonsend = NonSendStruct { _ptr: &mut () }; async {}.a...
T-lang,C-feature-request,A-async-await,AsyncAwait-Triaged
medium
Critical
483,224,354
flutter
Provide a way to configure the open/close animation curves for the BottomSheet widget
<!-- Thank you for using Flutter! Please check out our documentation first: * https://flutter.dev/ * https://api.flutter.dev/ If you can't find the answer there, please consider asking a question on the Stack Overflow Web site: * https://stackoverflow.com/questions/tagged/flut...
c: new feature,framework,a: animation,f: material design,c: proposal,P3,team-design,triaged-design
low
Critical