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
365,184,103
rust
No warning given when mutability unnecessary in match arm pattern with mutable reference
The compiler doesn't notice and/or warn that a mutable reference in a match arm pattern doesn't need to be mutable. I tried this code: ```rust fn main() { let mut option = Some(Box::new(0)); match option { Some(ref mut v) => println!("{}", v), None => (), }; } ``` I expected...
A-lints
low
Minor
365,191,885
TypeScript
Inconsistent error messages with circular base type argument
<!-- 🚨 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...
Suggestion,In Discussion
low
Critical
365,204,062
opencv
Support for INTER_LINEAR_EXACT for cv::remap
So, I learned the hard way that INTER_LINEAR does not just do bilinear interpolation in cv::remap, but fixpoints the maps first and then does bilinear interpolation. In the documentation of interpolation modes, there is INTER_LINEAR_EXACT, claiming to be a bitexact variant. Unfortunately (4.0.0-alpha), this is not supp...
feature,category: imgproc
low
Minor
365,226,995
opencv
No way to get the properties of a video when using cuda::videoreader.
- OpenCV => 3.4.3 ##### Detailed description The videocapture class provides with several methods to get the properties of a video. https://docs.opencv.org/2.4/modules/highgui/doc/reading_and_writing_images_and_video.html#videocapture-get They seem to be missing in the videoreader class. This should be suppor...
wontfix,category: gpu/cuda (contrib)
low
Minor
365,237,052
flutter
How to know a specific widget in listview scrolling out of screen?
Is there a callback or event can handle this?
c: new feature,framework,f: scrolling,P3,team-framework,triaged-framework
low
Minor
365,290,499
create-react-app
Add notes about runtime chunk being inlined and implications
https://github.com/facebook/create-react-app/issues/5144#event-1875612638 Has implications for CSP.
tag: documentation,difficulty: starter,contributions: claimed
low
Minor
365,292,078
create-react-app
Documentation follow-up
Copied from #5141: - [ ] Update React's "Add React to Website" JSX section - [ ] Prepare blog post - [ ] Touch up migration guide from 1.x - [ ] Make a decent migration guide from 2.x betas - [ ] Monorepo migration (https://github.com/facebook/create-react-app/issues/5100) - [ ] Check and document Apollo (htt...
tag: documentation
low
Minor
365,298,055
puppeteer
[Feature Request] Provide way to access stack trace on ConsoleMessage
In devtools we can get the stack trace of warning/error messages like so: ![screenshot from 2018-10-01 16-33-57](https://user-images.githubusercontent.com/8518303/46268619-e8b96d80-c597-11e8-9418-45d525aadc24.png) It would be useful if `ConsoleMessage` exposed a way of getting those stack traces.
feature,chromium
low
Critical
365,341,918
vue
Binding the bind directive and change events to the <input/> tag doesn‘t work
### Version 2.5.17 ### Reproduction link [https://jsfiddle.net/MoriGirl/50wL7mdz/755097/](https://jsfiddle.net/MoriGirl/50wL7mdz/755097/) ### Steps to reproduce Enter two numbers less than 10(etc, 7 , 8) in succession twice, observe page display and console output. ### What is expected? I originall...
has workaround
low
Minor
365,348,089
vue
Functional component not rendering named slot (following #8871)
### Version 2.5.17 ### Reproduction link [https://codesandbox.io/s/p9mx85qpz0](https://codesandbox.io/s/p9mx85qpz0) ### Steps to reproduce nothing in particular. ### What is expected? It should display `Hello World` ### What is actually happening? It displays `Hello` --- Following https:/...
has workaround
low
Major
365,439,619
create-react-app
npx create-react-app throws error when using in monorepo
<!-- PLEASE READ THE FIRST SECTION :-) --> ### Is this a bug report? Maybe. I know monorepos are not fully supported, however i would expect this to work. <!-- If you answered "Yes": Please note that your issue will be fixed much faster if you spend about half an hour preparing it, includ...
tag: new feature,issue: needs investigation
low
Critical
365,452,056
godot
When removing a TileMap node (or its parent), remove_child method sometimes causes a crash.
**Edit:** This comment is outdated / misleading. The core issue is TileMaps and physics processing - see below. **Issue:** I have a situation where I need to switch a node between being "active" and "inactive" - so that when inactive (or disabled) its script and processes etc. stop running. However, using `remove_...
bug,topic:core,confirmed,crash
medium
Critical
365,513,883
create-react-app
Slow compilation time with large project SASS (migrated from 1.x to 2.x)
I've recently migrated to v2 since I needed the node_module compilation. I like the auto-magic sass support, but the app takes a minute or two to compile now. Any suggestions? Platform: OSX, Node 8, running build/dev via yarn
issue: needs investigation
low
Major
365,546,951
create-react-app
Re-enable `react/no-deprecated` rule after its been adjusted
Right now `react/no-deprecated` warns multiple times over on deprecated lifecycle methods. This behavior isn't very optimal -- we should file an issue with ESLint and ask them to remove it once a formal warning is added to React.
tag: underlying tools
low
Minor
365,568,479
rust
Tracking issue for the `quote!` macro in `proc_macro`
I'm splitting this off https://github.com/rust-lang/rust/issues/38356 to track the `quote!` macro specifically contained in `proc_macro`. This macro has different syntax than the [`quote` crate](https://crates.io/crates/quote) on crates.io but I believe similar functionality. At this time it's not clear (to me at least...
A-macros,T-lang,T-libs-api,B-unstable,C-tracking-issue,Libs-Tracked,S-tracking-needs-summary
medium
Critical
365,570,145
rust
Tracking issue for `Span::def_site()`
This is a tracking issue for the `Span::def_site()` API. The feature for this is `proc_maro_def_site`. The `def_site` span primarily relates to hygiene today in that it's *not* copy-paste hygiene. This is likely blocked on larger hygiene reform and more thorny Macros 2.0 issues. I'm not personally clear on what the ...
E-needs-test,A-macros,T-lang,T-libs-api,B-unstable,A-macros-2.0,C-tracking-issue,A-proc-macros,Libs-Tracked,S-tracking-needs-summary
low
Major
365,572,648
rust
Tracking issue for `proc_macro::Span` inspection APIs
This issue is intended to track a number of unstable APIs which are used to inspect the contents of a `Span` for information like the file name, byte position, manufacturing new spans, combining them, etc. This issue tracks the `proc_macro_span` unstable feature. ### Public API Already stabilized: ```rust ...
A-macros,T-lang,T-libs-api,B-unstable,C-tracking-issue,A-proc-macros,Libs-Tracked,S-tracking-design-concerns
high
Critical
365,573,698
rust
Tracking issue for custom inner attributes
Added in https://github.com/rust-lang/rust/pull/54093 inner attributes are not allowed to be procedural macros right now, and this issue is tracking that feature of procedural macros! Assistance in filling in this issue would be greatly appreciated! UPDATE: https://github.com/rust-lang/rust/issues/54726#issuecommen...
A-attributes,A-macros,T-lang,B-unstable,C-tracking-issue,A-proc-macros,S-tracking-design-concerns
medium
Critical
365,574,844
rust
Tracking issue for procedural macros and "hygiene 2.0"
This is intended to be a tracking issue for enabling procedural macros to have "more hygiene" than the copy/paste hygiene they have today. This is a very vague tracking issue and there's a *very long* and storied history to this. The intention here though is to create a fresh tracking issue to collect the current state...
A-macros,T-lang,B-unstable,C-tracking-issue,A-proc-macros,S-tracking-needs-summary,A-hygiene
high
Critical
365,622,791
rust
Wrong type inference for closure with impl Trait inside another type
Hi. It compiles with a type annotation as in [this code](https://play.rust-lang.org/?gist=ed9c10406b2faffd185977c4bfaf0783&version=stable&mode=debug&edition=2015). ```rust fn work() -> impl FnMut(&u32, Option<u32>) -> bool { |current, msg| false } fn main() {} ``` This [code](https://play.rust-lang.org/?g...
A-inference,A-impl-trait
low
Critical
365,663,902
TypeScript
Distinguishing suggestions from global scope from local suggestions
From https://github.com/Microsoft/vscode/issues/59437 <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --**TypeScript Version:** 3.2.0-dev.20180928 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** - T...
Suggestion,VS Code Tracked,Experience Enhancement
low
Minor
365,671,237
go
cmd/go: document that directory patterns only match dirs in current module
This involves both documentation and the implementation (which I don't know it's intended or something to fix). Feel free to split this issue if necessary. All experiments here are done outside GOPATH. I have a two module `testmod2` and `testmod2/cmd` in one single repo. The latest `testmod2/cmd` (v0.0.2) depends...
Documentation,NeedsInvestigation,modules
low
Critical
365,719,471
create-react-app
Support scoped CSS in the same file
This is kinda vague but I'd like to have a built-in option to write CSS that: * Exists in the same file as my components * Is scoped * Has auto generated class names, like CSS Modules * Extracted via the same pipeline as CSS Modules * Could potentially use Sass (since we already support it) * Fully static Ba...
issue: proposal
high
Critical
365,725,199
pytorch
.cuda() changes a module's behavior when there are registered buffers with requires_grad=True
## 🐛 Bug When a module that has a registered buffer with `requires_grad=True` is moved to the GPU, the buffer no longer accumulates gradients. ## To Reproduce Run the code below with and without the specified line commented out: ``` import torch from torch.autograd import Function, Variable m = torch....
module: autograd,module: nn,triaged
low
Critical
365,742,468
create-react-app
Static keys for vendor bundle in asset-manifest.json
Currently the asset-manifest.json in my build folder looks like this: ``` { "main.css": "/static/css/main.f4f38731.chunk.css", "main.js": "/static/js/main.56255761.chunk.js", "main.js.map": "/static/js/main.56255761.chunk.js.map", "static/css/1.36ceda45.chunk.css": "/static/css/1.36ceda45.chunk.css", ...
issue: proposal
low
Major
365,766,436
go
cmd/gofmt: incorrect indentation of comments for LabeledStmt
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? `go1.11` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? `darwin/amd64` ### What did you do? ...
NeedsFix
low
Major
365,785,311
rust
Bootstrap cargo crashes on i486 machine
I have a user who sees the stage0 cargo crash: ``` running: /var/tmp/portage/dev-lang/rust-1.25.0/work/rust-stage0/bin/cargo build --manifest-path /var/tmp/portage/dev-lang/rust-1.25.0/work/rustc-1.25.0-src/src/bootstrap/Cargo.toml --verbose --verbose --locked --frozen Traceback (most recent call last): File "....
T-bootstrap,A-docs,A-target-specs,O-x86_32
low
Critical
365,802,925
pytorch
[Caffe2] Relink error after installing Caffe2 from conda
Hi, I just installed cuda-9.0, cudnn and nccl for cuda 9-0 and thereafter I followed the instructions [Caffe2](https://caffe2.ai/docs/getting-started.html?platform=ubuntu&configuration=prebuilt) to install caffe2 using conda. When I start `python` and enter `import caffe2.python` it does not say anything, but wh...
caffe2
low
Critical
365,908,311
vscode
file icons for QuickPickItem
It would be great if the QuickPickItem also can specify an icon as well as a file icon from the file icon themes.
feature-request,quick-pick
medium
Major
365,920,576
go
x/net/websocket: Read() doesn't read the whole frame
The documentation for `websocket.(*Conn).Read()` states: > `func (ws *Conn) Read(msg []byte) (n int, err error)` > > Read implements the io.Reader interface: it reads data of a frame from the WebSocket connection. > if msg is not large enough for the frame data, it fills the msg and next Read will read the rest ...
NeedsInvestigation
low
Critical
365,928,008
rust
Insufficiently clear explanation of E0310
The following program ([Playground](https://play.rust-lang.org/?gist=38c9aaff864faffb6c50e4fcdbb5f148&version=stable&mode=debug&edition=2015)): ```rust pub struct Foo<T>(T, &'static str); pub trait Bar { fn baz(self) -> Box<dyn Baz>; } pub struct Bazzzz<T>(T, &'static str); pub trait Baz {} impl<T> ...
C-enhancement,A-diagnostics,A-lifetimes,T-compiler,D-confusing
low
Critical
365,933,994
create-react-app
Allow patch level differences in preflight check
<!-- PLEASE READ THE FIRST SECTION :-) --> ### Is this a bug report? Yes, I am getting an eslint preflight check error hen I don't think I should be. ### Did you try recovering your dependencies? Yes, I've tried deleting the package-lock and rebuilt some stuff, but this issue seems pretty clearcut #...
issue: proposal
high
Critical
365,976,875
godot
_Init() is not being called for C# scripts.
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** dacc3f3 and 3.1 alpha **OS/device including version:** Window 7 x64 **Issue description:** `_Init()` is not being called on my c# scripts ...
topic:gdscript,documentation,topic:dotnet
medium
Major
366,041,033
rust
windows: when creating process with redirected stdio, make parent's std handles not inheritable
Currently, if this happens: ``` use std::process::Command; ... Command::new("child.exe") .stdin(Stdio::null()) .stdout(Stdio::null()) .stderr(Stdio::null()) .spawn() ``` the `child.exe` accidentally inherits stdin, stdout and stderr handles of the parent process. This can be ba...
O-windows,A-process
low
Major
366,051,296
flutter
MonthPicker should be a first-class widget
Many customer apps need an inline Calendar widget. Flutter already has a Calendar widget in the form of MonthPicker, but the documentation points people to use the [showDatePicker](https://docs.flutter.io/flutter/material/showDatePicker.html) dialog instead of using `MonthPicker` directly. ``` /// The month picker...
c: new feature,framework,f: material design,f: date/time picker,d: api docs,P2,team-design,triaged-design
low
Major
366,067,185
flutter
default Text widget's letter spacing is a bit off
<img width="460" alt="screen shot 2018-10-02 at 8 26 51 pm" src="https://user-images.githubusercontent.com/43219386/46374971-ad936900-c681-11e8-9bd5-243a7df87c8b.png"> The flutter's line seems to be a bit more spaced out, what do you think? ## Steps to Reproduce Create two views, one in flutter with ```dart ...
framework,a: fidelity,f: cupertino,a: typography,has reproducible steps,P2,found in release: 3.7,team-design,triaged-design
low
Major
366,075,065
TypeScript
CLI-only error calling generic function
**TypeScript Version:** 3.2.0-dev.20181002 **Code** ```ts function getFirst<K extends string, T>(obj: Record<K, ReadonlyArray<T>>, key: K): T { return obj[key][0]; } interface I { readonly n: ReadonlyArray<number>; readonly s: ReadonlyArray<string>; } function f(i: I): number { return getFirst...
Bug,Domain: Mapped Types
low
Critical
366,083,116
go
proposal: spec: immutable type qualifier
This issue describes a language feature proposal to **Immutable Types**. It targets the current [Go 1.x (> 1.11) language specification](https://golang.org/ref/spec) and doesn't violate [the Go 1 compatibility promise](https://golang.org/doc/go1compat). It also describes [an even better approach to immutability](https:...
LanguageChange,Proposal,LanguageChangeReview
high
Critical
366,093,033
rust
`Sync` should imply `RefUnwindSafe` - lots of missing impls
`Sync` is a strictly stronger requirement on a type than `RefUnwindSafe`, because any type which can be accessed concurrently by multiple threads, can also be accessed after one of those threads panics. However, if you compare the list of implementations for `Sync`: https://doc.rust-lang.org/std/marker/trait.Sync.h...
T-libs-api,C-feature-request
medium
Major
366,121,835
rust
Poor Trailing Semicolon Error in -> impl Trait Function
The diagnostics that check whether the concrete return type of an `-> impl Trait` function meets the `: Trait` bound should special-case the error when the concrete type is `()` to suggest removing the semicolon. Without this, the errors for a misplaced semicolon are misleading: Without `impl Trait`: ```rust trait...
E-hard,C-enhancement,A-diagnostics,P-medium,A-closures,T-compiler,A-suggestion-diagnostics
low
Critical
366,128,873
TypeScript
`let foo = new Foo(); export = foo;` has fewer type errors than `export = new Foo();`
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.1.1 and 2.8.4 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** export = new instance **Code** store.ts: ```ts class ...
Bug
low
Critical
366,131,039
flutter
Kernel files and snapshots contain absolute paths from developer's machine
Tracking issue for dart-lang/sdk#34654 It appears that kernel files are capturing paths from the machine they were generated on. For example, I found this path in the kernel file and AOT compilation output of the android_alarm_manager example application: file:///usr/local/google/home/bkonyi/plugins/packages/android...
engine,dependency: dart,P2,team-engine,triaged-engine
low
Minor
366,131,381
TypeScript
Write type parameters instead of @template tags in JSDoc
Rather than ```js /** * @typedef Arrayify * @type {{ [K in keyof T]: T[K][] }} * @template T */ /** * @typedef Bar * @type {{ x: string, y: number }} */ /** * @type {Arrayify<Bar>} */ var x; ``` I hate writing out the `@template` tag. Can we just write it out like this? ```js /** ...
Suggestion,In Discussion,Domain: JSDoc,Experience Enhancement
low
Major
366,164,924
rust
Using `include_str` in an attribute
Not sure if this should be an RFC or a bug/issue, but I'm trying to add an attribute to a struct where the value of the attribute is a `&'static str`. It would be nice to have the contents of the string in a separate file so I can have syntax highlighting when editing that file, and then have that be pulled in to the r...
T-lang,C-feature-request
low
Critical
366,171,969
rust
Mapping `Ref` to a value containing a reference
Consider the following specific use case explaining a more general issue: We have a struct, `RefStrings`, that keeps a `RefCell` containing some form of collection, `Vec<String>`. Part of `RefStrings`'s API surface is a function that aims to expose an iterator over the underlying collection. The only possibility I ...
T-libs-api,C-feature-request
low
Critical
366,277,154
pytorch
`GLIBC_2.23' not found on Ubuntu14.04.
## Issue description caffe2-cuda8.0-cudnn7 can't work on Ubuntu14.04. ## Code example cd ~ && python -c 'from caffe2.python import core' WARNING:root:This caffe2 python run does not have GPU support. Will run in CPU only mode. CRITICAL:root:Cannot load caffe2.python. Error: /lib/x86_64-linux-gnu/libm.so.6: v...
caffe2
low
Critical
366,296,800
TypeScript
Assign a known symbol to a constant should retain type information
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section. --> ## Search Terms <!-- List of keywords you searched for before creating this issu...
Suggestion,Awaiting More Feedback
low
Critical
366,354,238
opencv
Inverse DataType traits are needed
It seems that OpenCV matrices (e.g. `cv::Mat`) does not actually know its underlying native type - it either needs a template type (e.g. the function `Mat::at<T>`), or - it needs to do switch-case over the depth value in order to know it, Further: - it compares depth values hopping that such comparison corresponds ...
category: core,RFC
low
Minor
366,418,332
flutter
Integrate with Smart Text Selection APIs
Android has an open source [libtextclassifier API](https://android.googlesource.com/platform/external/libtextclassifier/+/master) which is used for smart text selection: ![image2](https://user-images.githubusercontent.com/6687929/46423828-59719e80-c6ec-11e8-8c1d-733635afcaad.gif) The text selection API is C++ and...
a: text input,c: new feature,framework,f: material design,P3,team-design,triaged-design
low
Minor
366,426,623
flutter
Feature request: Allow datepicker to select multiple days and return them as List<DateTime>
The Current datepicker only supports selecting one day. When showDatePicker(params) is called it returns a DateTime for the selected date, which is great, but it will be even better if there is an option that allows for multiple date selection and returning them as a list of <DateTime>. This is not an actual issue b...
c: new feature,framework,f: material design,f: date/time picker,P3,team-design,triaged-design
medium
Major
366,434,210
create-react-app
Dynamic import doesn't work with SVG imported as ReactComponents
<!-- PLEASE READ THE FIRST SECTION :-) --> ### Is this a bug report? Yes ### Did you try recovering your dependencies? Yes ### Which terms did you search for in User Guide? SVG, ReactComponent, dynamic import ### Environment ``` System: OS: macOS 10.14 CPU: x64 Intel(R) Core(TM) i5-4278...
issue: bug,issue: needs investigation
medium
Critical
366,435,415
TypeScript
Type Guards and CallBack Parameters are any, if worked, could successfully defined a callback type and respective guard
**TypeScript Version:** typescript@3.2.0-dev.20181003 Two bugs in one, if both of these issues work, I would be able to properly defined a callback type function call signature overloads and a type guard to go with it. <!-- Search terms you tried before logging this (so others can find this issue more easily) --...
Discussion
low
Critical
366,447,153
youtube-dl
[adobepass] DIRECTV NOW login no longer working
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.09.26*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified**...
tv-provider-account-needed
low
Critical
366,459,957
flutter
Properly implement ideographic baseline
Currently, ideographic baseline is implemented as: (paragraph.cc) ``` ideographic_baseline_ = (metrics.fUnderlinePosition - metrics.fAscent) * style.height; ``` This appears to be incorrect and was only meant to be a stand-in that was *mostly* correct for most cases. We should try to sort this out as ...
engine,a: china,a: typography,P2,team-engine,triaged-engine
low
Major
366,473,151
vscode
Stabilize TextSearchProvider API
Master issue to track stabilizing the TextSearchProvider extension API... Forked from #47058 Depends on - #59919 - #59458
feature-request,search,on-testplan,api-proposal,search-api
high
Critical
366,474,258
vscode
Stabilize findTextInFiles API
Depends on - #59919 - #59458
feature-request,search,on-testplan,api-proposal
low
Major
366,485,456
create-react-app
Setting "proxy" in package.json Fails for WebSockets
### Expected Behavior Setting "proxy" in package.json should proxy WebSockets to specified server. (As documented [here](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#proxying-api-requests-in-development): "The proxy option supports HTTP, HTTPS and WebSocket conn...
issue: proposal
high
Critical
366,517,549
go
net: TestLookupDotsWithRemoteSource is flaky
``` #!watchflakes post <- pkg == "net" && test == "TestLookupDotsWithRemoteSource" && (`DNS server failure`||`no such host`||`server misbehaving`||`timeout period expired`) ``` We are getting flaky test failures in net. This has been somewhat rare in the past few months, but it has failed the last 5 builds, so pr...
Testing,NeedsFix
medium
Critical
366,532,164
go
runtime: error message: P has cached GC work at end of mark termination
I just saw this in a trybot run on OpenBSD amd64: https://storage.googleapis.com/go-build-log/e4418337/openbsd-amd64-62_9bec130b.log greplogs shows: [2018-10-03T02:09:38-06ff477/freebsd-386-10_4](https://build.golang.org/log/443686bd274b79ac55ab231dea2af38dec07c918) [2018-10-03T17:40:17-048de7b/freebsd-386-11_2]...
GarbageCollector,NeedsFix,early-in-cycle
high
Critical
366,538,884
pytorch
[caffe2] Inference using multiple GPU
I would like to load the same model on different GPUs to process the images from different cameras in parallel. However, when I use the following code to force the GPU locations for the model, the model only lives on the GPU defined by the last run of the code. In this case, what is the right way to load the same m...
caffe2
low
Minor
366,547,176
flutter
Logging flutter doctor results
It would be useful to log the results of each `flutter doctor` run to better understand where the user is blocked in the Flutter installation process. I imagine we can start by collecting some high-level statistics such as the frequency of errors in each system (Home Brew, Android SDK, XCode, Cocoa Pods, Flutter SDK, I...
team,tool,t: flutter doctor,P2,team-tool,triaged-tool
low
Critical
366,573,981
pytorch
nn.functional.linear() for sparse tensor
Add `nn.functional.linear()` with autograd for sparse tensor when input is sparse, while weights and bias are dense. - autograd for `torch.sparse.addmm(D, S, D) -> D` - add `torch.sparse.matmul(S, D) -> D` with autograd, also need to support broadcasting..
module: sparse,module: nn,triaged
low
Major
366,669,340
vue
Non-breaking space acts different than other characters - outputs "&nbsp;" in template when passed via props
### Version 2.5.17 ### Reproduction link https://codepen.io/avertes/pen/LYYpNRe [https://jsfiddle.net/50wL7mdz/756973/](https://jsfiddle.net/50wL7mdz/756973/) ### Steps to reproduce 1. Create a new component that accepts a string prop. 1. Display the prop within the component's template. 1. Use th...
bug
low
Major
366,764,103
create-react-app
Add an ID to the run time script
https://github.com/facebook/create-react-app/issues/5144#issuecomment-426980892
tag: enhancement
medium
Major
366,769,852
pytorch
[Caffe2] Segmentation fault (core dumped) while import caffe2.python.core
## 🐛 Bug When I want to import caffe2.pytho.core, I get a Segmentation fault. I followed the install guide for ubuntu 16 with prebuilt binaries and also installed nccl, I've been browsing past issues but can't find a solution. please help me ## To Reproduce Steps to reproduce the behavior: 1. Install...
caffe2
low
Critical
366,773,459
TypeScript
Typescript ESType definition improvements
Hi, The following types can be improved on to be more correct in the lib.es5.d.ts file. These type improve typically deal with the cases on of the arrays items keys has subset of the other keys, in this case the results is the common subset, with mismatching fields made optional. This requires functionality in...
Suggestion,Help Wanted,Domain: lib.d.ts
low
Minor
366,811,290
rust
Pinning non-Deref pointers
Currently, you cannot even construct a `Pin` unless the pointer it wraps implements `Deref`. This means you cannot have a `Pin<*const T>`, `Pin<*mut T>` or `Pin<NonNull<T>>`. We should consider extending the API of Pin to support these constructs. Unfortunately, I don't know if there's much this actually helps, beca...
C-enhancement,T-libs-api,A-pin
low
Major
366,838,552
rust
Collection APIs for deallocating backing store without running destructors
Unfortunately, I have some code which needs to deallocate the backing store of our collection types without running the destructors on the elements in that collection. Currently, I am transmuting those types from `HashMap<K, V>` to `HashMap<ManuallyDrop<K>, ManuallyDrop<V>>` and then dropping that. Right now, this a...
T-libs-api,C-feature-request
low
Minor
366,848,353
node
N-API: An api for embedding Node in applications
**Is your feature request related to a problem? Please describe.** Right now there isn't a documented/stable way to use Node as a shared library inside of an application. Were one to be made using N-API, this would open up using Chakra in addition to V8 in an application. **Describe the solution you'd like** I w...
c++,feature request,node-api,embedding,never-stale
high
Critical
366,908,693
go
x/build/cmd/gomote: gomote push confused by non-ASCII filenames
gomote push gets confused by non-ASCII filenames at least on Darwin: ``` $ gomote push user-bradfitz-darwin-amd64-10_12-0 2018/10/04 18:09:06 Deleting remote files: ["go/test/fixedbugs/issue27836.dir/Äfoo.go" "go/test/fixedbugs/issue27836.dir/Ämain.go"] 2018/10/04 18:09:06 Remote doesn't have "test/fixedbugs/is...
Builders
low
Critical
366,921,403
TypeScript
strictPropertyInitialization should consider `return`
**TypeScript Version:** 3.2.0-dev.20181004 **Code** ```ts class C { x: number; constructor(b: boolean) { if (b) { this.x = 3; } else { return new C(true); } } } ``` **Expected behavior:** No error. **Actual behavior:** ``` src/...
Suggestion,Experience Enhancement
low
Critical
366,924,041
go
time: notice system timezone changes
### What version of Go are you using (`go version`)? go version go1.11.1 linux/amd64 ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? linux/amd64 ### What did you do? ``` package main import ( "fmt" "t...
NeedsInvestigation
low
Major
366,933,464
godot
Error saving GDScript when no scene opened in editor.
**Godot version:** Godot Engine v3.0.6.stable.official.8314054 **OS/device including version:** macOS 10.13.3 **Issue description:** Error saving GDScript in the editor when no scene is loaded in the tabs. Closing and discarding changes made after the error keeps changes made (perhaps cached in memory?) -...
bug,topic:editor,confirmed,usability
low
Critical
366,963,803
neovim
`set nofoldenable foldmethod=syntax` still delays file opening
When opening large files with a `set foldmethod=syntax` autocommand, neovim delays on startup while it calculates the folds to be collapsed (profiling does not reveal any script causing the delay), which is unfortunate but understandable. I normally don't like folding, i.e. I want my code to default being unfolded, ...
performance,bug-vim,folds
low
Critical
366,967,560
go
runtime/cgo: -extldflags=-stack_size=NNN does not set stack size used by runtime/cgo
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.11 darwin/amd64 macOS Sierra (10.12.6) ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go en...
help wanted,OS-Darwin,NeedsInvestigation
low
Critical
366,974,347
godot
Window dimensions are limited by wrong monitor
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.1-alpha 8068d02 **OS/device including version:** Linux Mint 19 Cinnamon x64 (Muffin window manager) **Issue description:** I have two display...
bug,topic:porting
low
Critical
366,987,843
go
net/http: can't set Transfer-Encoding explicitly on outgoing Request
`httputil.DumpRequestOut` does not currently print anything w.r.t. `Transfer-Encoding` (TE) even though the information is printed via `DumpRequest`. In addition, there is special logic for handling TE that seems like maybe it hasn't been extracted out so the logic is hard-coded into `DumpRequest` which means that it c...
NeedsDecision
low
Critical
366,999,771
TypeScript
Problem returning union of promises in `then` callback
**TypeScript Version:** 3.2.0-dev.20181004 **Code** ```ts function f(b: boolean, pn: Promise<number>, ps: Promise<string>) { return Promise.resolve().then(() => b ? pn : ps); } ``` **Expected behavior:** No error. **Actual behavior:** Pyramid of doom error message: ``` src/a.ts:2:35 - error TS...
Suggestion,Needs Proposal
low
Critical
367,004,808
TypeScript
Excess property errors reported on overloads report errors on the wrong overload
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug,Domain: Error Messages
low
Critical
367,007,461
flutter
Need a way to read Android /res assets from Flutter
Internal: b/117228933 Flutter app cannot access assets under res/** for Android (or an arbitrary bundle on iOS), unless the asset is copied to the Flutter managed bundle. This is not ideal; we should provide a way to reuse platform assets. It is worth noting that we support the other way around: https://flutter.io/...
platform-android,engine,a: existing-apps,customer: crowd,P2,team-android,triaged-android
low
Major
367,097,036
flutter
Hero Animation Improvements
Would be good and useful if the Hero animation also move some Object with him. Like, if I'm moving an Text widget, they should move the String inside that Text widget, so that on the other side Hero just show the same data, without re-populate with a new data.
c: new feature,framework,a: animation,P3,team-framework,triaged-framework
low
Minor
367,127,179
create-react-app
Disabling code splitting in CRA2
How can I disable the code splitting in CRA 2?
issue: proposal,issue: question
high
Critical
367,136,932
rust
Bad error messages with wrong generator yield type
This is reduced code: ``` #![feature(generator_trait, generators)] use std::ops::{Generator, GeneratorState}; fn generator_to_iterator<G>(g: G) -> impl Iterator<Item = G::Yield> where G: Generator<Return = ()> { struct It<G>(G); impl<G: Generator<Return = ()>> Iterator for It<G> { type Ite...
A-type-system,C-enhancement,A-diagnostics,T-compiler,A-coroutines,T-types
low
Critical
367,138,800
rust
Truncated backtraces on OS X
The original report is here: https://bugzilla.mozilla.org/show_bug.cgi?id=1496503 Apparently backtraces (sometimes?) get truncated on OS X as seen here: ``` ++DOMWINDOW == 3 (0x116c70800) [pid = 89605] [serial = 3] [outer = 0x10bd5a200] thread '' panicked at 'assertion failed: texture.state() == TextureState::Uni...
A-runtime,O-macos,T-libs-api,T-compiler,C-bug,T-release
low
Critical
367,150,996
go
cmd/go: does not verify existence of replace directory
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ``` go version go1.11.1 linux/amd64 ``` ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? ``` ...
NeedsDecision,modules
low
Critical
367,184,430
rust
Regression: "temporary value does not live long enough" in a `static` item in Servo
Reduced test case: ```rust #![feature(const_fn)] const fn require_static<T>(_: &'static T) {} const fn foo() -> u32 { 0 } pub static A: () = require_static(&foo()); ``` rustc 1.31.0-nightly (5597ee8a6 2018-10-03): OK rustc 1.31.0-nightly (8c4ad4e9e 2018-10-04): ```rust error[E0597]: borrowed value doe...
C-enhancement,A-diagnostics,A-borrow-checker,T-compiler
medium
Critical
367,206,104
node
N-API: Need SharedArrayBuffer api
needed feature : napi_create_external_sharedarraybuffer napi_get_sharedarraybuffer_info napi_is_sharedarraybuffer Since V8 api supports external sharedarraybuffer creation, it would be nice if n-api implements this.
feature request,node-api
medium
Major
367,215,966
go
x/exp/shiny: hebrew keyboard not supported
#### What did you do? I have created a program that logs the `key.Event` from the window, then I tried to type Hebrew rune in my keyboard and the program loged ``` key = key.Event{(CodeUnknown), key.Modifiers(), Press} key = key.Event{(CodeUnknown), key.Modifiers(), Release} ``` the program ```golang packag...
NeedsInvestigation
low
Critical
367,221,187
flutter
PlatformView API should be simplified
This is the minimum amount of code currently required to setup the plumbing for platform views on Android: ```java Registrar registry = flutterView.getPluginRegistry().registrarFor("FlutterWithPlatformViewActivity"); registry .platformViewRegistry() .registerViewFactory( "myImageView", ...
platform-android,engine,a: existing-apps,a: platform-views,P2,team-android,triaged-android
low
Minor
367,249,170
angular
ngValue ignored in ng-content and ng-template
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
feature,freq2: medium,area: forms,feature: under consideration
low
Critical
367,256,184
create-react-app
[ModuleScopePlugin] problem with nested package.json in linked dependencies
### Is this a bug report? Yes ### Did you try recovering your dependencies? ### Which terms did you search for in User Guide? ### Environment ^ irrelevant sections ### Steps to Reproduce Repro case here - https://github.com/Andarist/module-scope-plugin-repro . The repository has a postinstall script wh...
issue: needs investigation
low
Critical
367,265,598
create-react-app
Service Worker weird caching
<!-- PLEASE READ THE FIRST SECTION :-) --> ### Is this a bug report? Yes <!-- If you answered "Yes": Please note that your issue will be fixed much faster if you spend about half an hour preparing it, including the exact reproduction steps and a demo. If you're in a hurry or don't...
tag: documentation,issue: question > PWA
high
Critical
367,279,271
rust
rustc --print file-names wrongly prints .rlib for --emit=metadata
For sccache to cache rustc builds it uses `rustc --print file-names` to figure out which files get emitted so it cache them for later. For `--emit metadata` builds it appears that `rustc` prints that it would emit a `.rlib` file which seems to be false, only `.rmeta` files get emitted. Trying to find out where this ...
A-driver,T-compiler,C-bug
low
Minor
367,290,881
rust
Using types like i1, u24, or other nonstandard integer sizes.
LLVM itself supports arbitrary bitlength integers, however Rust does not. This would be useful for some less common, but still fairly normal cases, like 24-bit integers for emulating CPUs like the MC68000 (Some models use 24-bit address busses instead of 32-bit), or for memory constrained systems where you need all the...
T-lang,needs-rfc
low
Major
367,306,934
angular
preserveWhitespaces: false alters expressions in templates
Setting `preserveWhitespaces: false` has an unexpected side effect that whitespace in interpolated bindings is also affected. Ordinarily there is no harm in stripping whitespace inside expressions, but _string literals_ within those expressions are also affected. This means that `preserveWhitespaces` alters the semanti...
type: bug/fix,freq1: low,area: compiler,state: confirmed,core: basic template syntax,core: binding & interpolation,design complexity: major,P3,compiler: parser
low
Major
367,326,278
TypeScript
Allow to add a call signature to the Mapped Type OR to remove all `Function.prototype` methods
## Search Terms add a call signature to the Mapped Type; remove all `Function.prototype` methods ## Suggestion Being able to create a callable type, but without Function.prototype methods. ## Use Cases Imagine one creates some API that exposes a function that is (because function is an object) also have...
Suggestion,Awaiting More Feedback
medium
Critical
367,346,952
node
https.request timeout options doesn't work
Node version 8.11.3. 64-bit Windows 8.1 As I understood from docs, `timeout `property in `https.request` options sets socket connection timeout. I set it to minimum - 1 millisecond and it should definitely trigger 'timeout' event. ``` const options = { host: 'yobit.net', path: '/api/3/depth/...
help wanted,https
low
Critical
367,376,722
pytorch
AttributeError: Method VideoInput is not a registered operator
## 🐛 Bug I want to use models from [R2Plus1D](https://github.com/facebookresearch/R2Plus1D) for extracting action recognition features. However, when running their `extract_features.py` it will immediately throw the following error message: `AttributeError: Method VideoInput is not a registered operator. Did you...
caffe2
low
Critical
367,380,459
go
cmd/compile: optimize field access after type assertion
### What version of Go are you using (`go version`)? go version go1.11.1 windows/amd64 ### Does this issue reproduce with the latest release? yes ### What did you do? ```go package performance type Large struct { padding1 [1024]string interesting string padding2 [1024]string } func ExtractI...
Performance,compiler/runtime
low
Major
367,388,529
TypeScript
Infer type arguments from 'super()' calls
```ts interface Component { whatever: number; } type ComponentConstructor = new <T = {}>(extra: T) => Component & T; declare const Component: ComponentConstructor; class ReallyOldComponent extends Component { constructor() { super({ name: "Methuselah", age: 969 }); } blah() { this.whateve...
Suggestion,In Discussion
low
Critical