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
464,402,753
flutter
Add video_player value isDone
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
c: new feature,p: video_player,package,c: proposal,team-ecosystem,P3,r: duplicate,triaged-ecosystem
low
Critical
464,402,960
terminal
Feature Request: Show tab number in tab
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Issue-Feature,Area-UserInterface,Product-Terminal
low
Critical
464,403,549
rust
Pin docs should mention pitfalls of generic code
The [pin module docs](https://doc.rust-lang.org/beta/std/pin/index.html) currently have a note about implementing `Future` combinators: > When implementing a Future combinator, you will usually need structural pinning for the nested futures, as you need to get pinned references to them to call poll. However, this...
C-enhancement,P-medium,T-lang,T-libs-api,A-docs,A-async-await,AsyncAwait-Triaged
low
Critical
464,414,110
vscode
Update detects code.exe instances from other users with seperate install folders
Two users on the same Windows machine each with their own version of VS Code installed in different folders. Both users run VS Code, the update now button is pressed by one user and that user closes his VS Code to finish update. Error message pops up saying that VS Code is still running, although all instances of tha...
bug,install-update,windows
low
Critical
464,470,357
flutter
AnimatedList moveItem() Function.
## Use case When a single item changes index within an AnimatedList, the animations are janky due to the item getting removed, then inserted at another location. Instead of the item performing hero's like animation to fly to its new index. ## Proposal I propose a method on AnimatedListState.currentState with the ...
c: new feature,framework,a: animation,P3,team-framework,triaged-framework
high
Critical
464,483,096
go
runtime: raising the number of GOMAXPROCS cause oom
<!-- 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.1 linux/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture ar...
NeedsInvestigation,compiler/runtime
low
Critical
464,527,196
rust
allow(deprecated) is too coarse-grained, should take a path
https://github.com/rust-lang/rust/commit/007d87f1719e2fcf2ff36aef8b6dc866fa276386 added `allow(deprecated)` in a few places because `mem::uninitialized` is still used. Unfortunately, this allows *all* deprecated items, so by the time someone gets around to fix that, other uses of deprecated items could have crept in. ...
A-frontend,A-attributes,A-lints,T-lang,C-feature-request,needs-rfc,L-deprecated
medium
Major
464,535,244
create-react-app
react-scripts test --onlyChanged always runs ALL tests instead of only the changed tests, yarn jest --onlyChanged works as expected.
### Describe the bug If I run **yarn jest -o**, jest attempts to run 18 tests (out of the 158 in total). If I run **yarn react-scripts test -o**, jest attempts to run all tests. If I edit /node_modules/react-scripts/scripts/test.js so that only the following options are passed to Jest: "argv [ '-o' ]" Jest wi...
issue: bug,issue: needs investigation
low
Critical
464,558,177
TypeScript
False positive error report for interface type missing index signature, thus not assignable to object type with `unknown` values.
<!-- 🚨 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...
Docs
low
Critical
464,586,322
rust
`const fn` allows unreachable calls to non-`const` fns
E.g. the following compiles on stable: ```rust const fn f() { return; fn f() {} f(); } ``` @eddyb notes that this is because we do a "semantic check" and that `f();` is not linked in the CFG. However, it seems to me that the basic blocks should be there (tho I haven't checked yet...) so you can...
T-lang,T-compiler,C-bug,A-const-eval
low
Minor
464,587,734
go
cmd/go/internal/modfetch: treat malformed versions as β€œnot found” on the proxy path
For Go 1.11 and 1.12, I have in my `go.mod` something like: ```go replace ( github.com/lxn/walk => golang.zx2c4.com/wireguard/windows pkg/walk github.com/lxn/win => golang.zx2c4.com/wireguard/windows pkg/walk-win ) ``` I use this to indicate that usage of `github.com/lxn/walk` should be repla...
NeedsDecision,modules
high
Critical
464,612,030
flutter
Flutter Material Tree Widget
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
c: new feature,framework,f: material design,P2,team-design,triaged-design
low
Critical
464,620,102
rust
O(1) time {Vec,VecDeque}::truncate for trivial drop types and VecDeque::truncate_front
Currently both `Vec`s and `VecDeque`s `truncate` implementations just call `pop_back()` in a loop. When `std::mem::needs_drop::<T>()` is `false` this is pretty inefficient. Now LLVM *does* [optimize away the loop on `-O3` for `Vec::truncate`](https://rust.godbolt.org/z/WBV3MA), however [this does not happen for `Vec...
I-slow,C-enhancement,T-libs-api,C-optimization
low
Major
464,634,676
rust
Add a way to signal that a snippet is UB/bad in rustdoc
Reading the docs for [MaybeUninit](https://doc.rust-lang.org/std/mem/union.MaybeUninit.html) I noticed that the code snippets that contain code that lead to UB are only identified by comments inside the snippet. This feels like a potential source of copy-paste errors. Maybe there could be a way to highlight a code snip...
T-rustdoc,C-enhancement,C-feature-request
low
Critical
464,668,710
flutter
MethodChannel - introduce a way to test it
## Use case Writing some tests for a plugin i found that is impossible to test methods that make uses of MethodChannel class. Looking through Flutter MethodChannel documentation i found that > Method calls are encoded into binary before being sent, and binary results received are decoded into Dart values. ...
a: tests,engine,dependency: dart,a: platform-views,c: proposal,P2,team-engine,triaged-engine
low
Critical
464,683,966
pytorch
Eigen Tensor library for convolutions on CPU
## πŸš€ Feature Add option of Eigen Tensor library implementation of convolution on ARM CPU ## Motivation While convolutions on Intel CPUs are quite fast, there are issues on ARM processors. I tried NNPack which speeds up the default implementation. However TensorFlow is much faster on Raspberry, and also NNabla. ...
module: performance,module: cpu,module: convolution,triaged,module: arm,function request
low
Minor
464,728,583
node
Missing lines when using readline Interface as AsyncIterable
<!-- 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...
readline
low
Critical
464,730,073
flutter
Create public getter for the "messenger" field of methodChannel java class.
## Use case We are trying to move from full native to full flutter. We have a feature that work on android by using foreground service, the ios guy might have the same issue. While the app's in use i register the plugin with the current flutter native view, pluginRegistry. When the app is in background i crea...
c: new feature,engine,a: platform-views,c: proposal,P3,team-engine,triaged-engine
low
Minor
464,760,949
pytorch
CPU torch.exponential_ function may generate 0 which can cause downstream NaN
## πŸ› Bug torch.exponential_ on the CPU has a small (2^-53) chance of generating 0. I don't think we document whether torch.exponential_ may return 0, but both the [NumPy](https://docs.scipy.org/doc/numpy/reference/generated/numpy.random.exponential.html) and [TF](https://www.tensorflow.org/api_docs/python/tf/dis...
triaged,module: random
low
Critical
464,764,976
go
x/crypto/ssh: add NewControlClientConn
**Update, 23 Feb 2022**: The new API is https://github.com/golang/go/issues/32958#issuecomment-1034079379. --- <!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12.6 linux/amd64 </pre> ###...
Proposal,Proposal-Accepted,Proposal-Crypto
medium
Critical
464,792,061
opencv
Error when call InputArray.getMat() obtained from vector<vector<double>>
OpenCV 3.4.4 OS: Ubuntu 19.04 Code: ``` vector<vector<double>> vv = {{1, 1, 0}, {1, -1, 0}, {-1, -1, 0}, {-1, 1, 0}}; InputArray ia(vv);` cout << ia.getMat() << endl;` ``` Error: ``` terminate called after throwing an instance of 'cv::Exception' what(): OpenCV(3.4.4) /home/victor/dev...
category: core,category: build/install
low
Critical
464,808,447
flutter
No clear way to get the number of lines from a Paragraph
If I have some text like this: ``` final text = 'My text line.\nThis ΩƒΩ„Ω…Ψ© makes more boxes.\nAnother line.'; ``` And when I create a Paragraph (indirectly using TextPainter), then I get something like this: <img width="304" alt="Screen Shot 2019-07-05 at 6 17 09 PM" src="https://user-images.githubusercontent...
c: new feature,framework,a: typography,P3,team-framework,triaged-framework
low
Minor
464,819,665
godot
File Dialog modal closes on hidden file toggle keyboard shortcut after item selected and deselected
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> This issue also causes the editor to stay darkened once the modal is closed as per issue #30368 **Godot version:** <!-- Specify commit hash if non-official. --> d897131ac5...
bug,topic:editor,confirmed
low
Critical
464,821,004
vscode
The `cursorWordPart`* commands are limited to editor text, unlike the other `cursorWord`* commands
- VSCode Version: 1.36.0 (system setup) - OS Version: Windows_NT x64 10.0.18362 Steps to Reproduce: 1. Focus on a non-editor input text field (e.g. execute the command `workbench.action.quickOpen` or `actions.find`, inter alia) 2. Insert the text of the multi-part word "fooBar". 3. Move the cursor to the end o...
feature-request,editor-find
medium
Critical
464,838,569
material-ui
[docs-infra] Improve Algolia internal search results on mui.com
Listing various points that could be improved for searching our docs. Also documenting unhelpful search results. It's not about implementing all of those but exploring how viable they are or if they have better alternatives. ### Opportunities - [x] 1. Be able to search inside the content of the page, not just hea...
enhancement,scope: docs-infra
low
Critical
464,843,736
godot
Error messages when plugins are faulty not normally shown
**Godot version:** 3.1.1 **OS/device including version:** N/A **Issue description:** Related to https://github.com/jebedaia360/Rakugo/issues/153 Attempting to set up Rakugo with Godot, I noticed the plugin.gd script does not work. However by default Godot does not report *why* it failed; it does not tell yo...
bug,topic:editor,confirmed,usability,topic:plugin
low
Critical
464,854,120
rust
Build with clean incremental cache slower than without incremental compilation
``` $ rustc -V rustc 1.36.0 (a53f9df32 2019-07-03) $ git clone https://github.com/bjorn3/fractals $ cd fractals $ git checkout 0c4929c80c55cadf3a2576f288bfde463ffb8e18 $ cargo build # build deps $ # build without incr comp $ touch src/main; CARGO_INCREMENTAL=0 cargo build Compiling fractals v0.1.0 (/hom...
I-compiletime,T-compiler,A-incr-comp,C-bug
low
Critical
464,856,984
TypeScript
Allow Inifinity and -Infinity as number literal types
Please accept `Infinity` and `-Infinity` as valid number literal types. ```ts /** A range of BigInt that may be unbounded, e.g., (-∞, 5] */ class BigIntRange { public min: bigint | -Infinity = 0n; // <= Error! public max: bigint | Infinity = 1n; // <= Error! public isValid(): boolean { return this.mi...
Suggestion,Awaiting More Feedback
high
Critical
464,859,986
rust
Unnecessary copy when constructing arrays from returned arrays?
I want to construct a big array by concatenating smaller arrays returned by other functions. As a simple example: ```rust pub fn g(f: &Fn() -> [u64;40]) -> [u64;80] { let a = f(); let b = f(); let mut ret = [0u64;80]; ret[0..40].copy_from_slice(&a[..]); ret[40..80].copy_from_slice(&b[..]); ...
A-LLVM,I-slow,C-enhancement,T-compiler,A-mir-opt,A-mir-opt-nrvo,C-optimization
medium
Major
464,860,502
rust
build fails with error[E0463]: can't find crate for `rustc_macros` which `rustc` depends on in rustc_llvm
Hello, We hit this while compiling rust 1.35.0 -> rust 1.36.0 on x86. This is for the distro package for Alpine Linux. Please note that we're compiling against our own triplets, in this case it's for i586-alpine-linux-musl, see the definition here: https://gist.github.com/6bae5fdcf6bb5a95b3b779ceb2dd79f7 I'm pret...
T-bootstrap,O-musl
low
Critical
464,882,439
TypeScript
Inconsistent implicit any when referencing destructured variable more than once
**TypeScript Version:** 3.5.2 and 3.5.1 **Search Terms:** TS7022, "missing implicit any", "inconsistent implicit any", "does not have a type annotation", "referenced directly or indirectly in its own initializer" **Code** ```ts type Updater<T> = (t: T) => void; function createUpdater<T>(t: T): [T, Updater...
Bug
low
Critical
464,893,554
terminal
WriteConsoleOutputCharacterA doesn't merge UTF-8 partials in successive calls
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Product-Conhost,Area-Output,Area-Server,Issue-Bug
low
Critical
464,907,357
flutter
PageScrollPhysics has weird behavior
`PageScrollPhysics()` has strange behavior across all browsers when scrolling with the mouse view. This can be easily reproduced by creating a ListView with many elements and supplying PageScrollPhysics as an argument to the physics parameter. GIF Example: https://gyazo.com/f63a01031ce5e309aa142b20da3c92b5
framework,f: scrolling,platform-web,a: desktop,a: mouse,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework
low
Critical
464,913,078
TypeScript
JSDoc type reference doesn't skip leading asterisk
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Bug
low
Critical
464,914,377
youtube-dl
Request for dontmemorise.com
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
464,928,865
TypeScript
Intellisense: optional parameters are too verbose (bar? number | undefined)
## Search Terms optional parameters intellisense ## Suggestion The intellisense for optional parameters is too verbose: an optional function parameter defined e.g. like this ```typescript function foo (bar?: number) { } ``` gets resolved in the intellisense as ```typescript function foo(bar?: n...
Suggestion,In Discussion
low
Minor
464,935,398
TypeScript
Show type info of yield
@rbuckton `yield` keyword should show its argument type and return type when a cursor is put on there.
Needs Proposal,Help Wanted,Effort: Moderate,Domain: Quick Info,Experience Enhancement,PursuitFellowship
low
Major
464,949,961
flutter
[Feature Request] Implement `Alignment.centerStart` and `Alignment.centerEnd`
## Screenshot ![Screenshot_1562503283](https://user-images.githubusercontent.com/52191652/60768677-b8c76980-a0d7-11e9-9b26-aec5d6689cce.png) ## Steps to Reproduce 1. make an Align widget with text aligned center to left. 2. change the language of the emulator to Arabic. ``` Positioned.fill( rig...
c: new feature,framework,P3,team-framework,triaged-framework
low
Minor
464,951,925
pytorch
Batched symeig and qr are very slow on GPU
## πŸ› Bug The recently added batched eigenvalue decomposition via `torch.symeig` is very slow on GPU (pr: https://github.com/pytorch/pytorch/pull/21858, issue: https://github.com/pytorch/pytorch/issues/7500). ## To Reproduce ```python import torch a = torch.rand(500, 2, 2) a = 0.5 * (a + a.transpose(1, 2)) ...
module: performance,module: cuda,triaged,module: linear algebra
medium
Critical
464,971,758
svelte
Site: Some parts of the API docs expect readers to have read previous sections
It seems that some parts of the API docs refer back to previous API documentation. This assumes that readers have read the whole thing or are reading in order which is highly unlikely considering it is a reference. The the [component bindings](https://svelte.dev/docs#bind_component) section was brought to my attenti...
stale-bot,documentation
low
Minor
464,984,964
flutter
TextField should warn on vertical overflow
I tried finding in a lot of resources but unfortunately i could not find a way to align the text vertically centre in a textfield. I also tried using suffixIcon instead of suffix but still not luck. Here is my code : ``` import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp exten...
a: text input,framework,a: quality,a: debugging,has reproducible steps,found in release: 1.20,team-text-input
medium
Major
464,986,942
pytorch
Double backward 3 times slower for conv2d with padding = 1
## πŸ› Bug Hi, I'm trying to compute the jacobian vector product using a trick from https://j-towns.github.io/2017/06/12/A-new-trick.html. This involves computing the gradient twice. It seems like using conv2d with padding =1 slows down the computation by almost 3 times, compared to padding =0: padding= 0: 2.9628...
module: dependency bug,module: performance,module: double backwards,module: nn,module: convolution,triaged,has workaround,quansight-nack
low
Critical
464,995,566
pytorch
torch.gels runs 100 time slower on gpu than on cpu
I tried gels on both gpu and cpu and measured time elapsed. `start=time.time() sol,_=torch.gels(y,x.permute(1,0))[:3] # a,b,d end=time.time()` On cpu it only takes ~0.00002 sec, but on gpu it take ~0.003 sec. Anyone know why? Should it be the case?
module: performance,triaged
low
Major
465,002,382
rust
Specific code layout can cause link failure with lto=true
This is the same code layout as #59137, with slightly more of my actual code - turns out that's not the only issue preventing me from using LTO. I have a three-crate workspace; only two of these crates are relevant for this issue (if the code *ran*, the third would be relevant). - `parent`, a binary, depending on...
A-linkage,T-compiler,C-bug
low
Critical
465,003,141
terminal
Terminal desperately needs a horizontal scrollbar (similar to Command Prompt)
<hr> > **Note**: πŸ“Œ Pinned comment: **https://github.com/microsoft/terminal/issues/1860#issuecomment-1622136376** <hr> # Summary of the new feature/enhancement Windows Terminal needs to have a configurable horizontal scrollbar (similar to Command Prompt) so that lines longer than the window width are actually...
Issue-Feature,Resolution-By-Design,Help Wanted,Area-Output,Area-TerminalControl,Product-Terminal
high
Critical
465,003,380
flutter
[web/all] PageView shouldn't skip pages
I dislike the current way that PageView works: if you put not-enough force, it gets back to where it is. If you put too much force, it scrolls two pages. This is really evident in this official sample: https://flutter.github.io/samples/filipino_cuisine/ (just drag with your mouse from one corner to next and it will ski...
framework,f: scrolling,f: gestures,c: proposal,has reproducible steps,P3,found in release: 2.10,found in release: 2.13,team-framework,triaged-framework
medium
Critical
465,009,282
go
cmd/compile: superfluous MOV instructions
Using `go1.12` on `linux/amd64` Consider the following benchmark: ```go var srcString = "1234" var srcBytes = []byte(srcString) var dst uint64 // BenchmarkIdeal is the ideal performance parsing a string. func BenchmarkIdeal(b *testing.B) { b.ReportAllocs() for i := 0; i < b.N; i++ { dst, _ = strconv.P...
Performance,NeedsInvestigation,compiler/runtime
low
Major
465,022,205
pytorch
Pytorch compilation error on Mac OS
# # πŸ› Bug # # environment -- operating system: Mac OS 10.13 -- cmake version 3.14.2 -- python version 3.6.5 - clang: Clang -std = c + + 17 Apple LLVM version 9.1.0 (clang-902.0.39.1) Target: x86_64 - apple - darwin17.7.0 ## installation process git clone --recursive https://github.com/pytorch/py...
module: build,triaged
low
Critical
465,082,655
flutter
Make pointer signal event (mouse wheel event) handling configurable in ListView
## Use case I have a **reverse** `ListView`, and I can interact with it with a **mouse**. The `ListView` is reverse because I need the viewport to keep displaying the bottom edge while adding animated elements to the list. And in my particular case, I interact with a mouse because it's a Flutter Web project, but I b...
framework,f: scrolling,c: proposal,P3,team-framework,triaged-framework
low
Major
465,119,279
opencv
multibandblender does not work well
<!-- 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...
incomplete,needs reproducer
low
Critical
465,192,739
terminal
Suggestion: ability for terminals to set their tab icon
#1685 Summary of the new feature/enhancement The terminal currently provides a way for shells to specify the title: ![image](https://user-images.githubusercontent.com/172594/60805256-76556980-a177-11e9-834d-591efa85d446.png) In the world of web apps, both title and icon can be specified. ![image](https://us...
Issue-Feature,Help Wanted,Area-VT,Product-Terminal
medium
Major
465,195,390
TypeScript
How to find/debug what file(s) included given file during typescript compilation
## 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 --> find why was file included during typescript build ## Suggestion Be able to find out why a file was checked by TS compiler during a build. ## Us...
Suggestion,In Discussion
low
Critical
465,198,533
flutter
flutter run with Multiple, but not All Devices
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
c: new feature,tool,P3,team-tool,triaged-tool
medium
Critical
465,227,944
terminal
Display current tab's icon as a badge on the taskbar icon
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Issue-Feature,Help Wanted,Area-UserInterface,Product-Terminal
medium
Critical
465,229,216
pytorch
[dataloader] Mysterious error when using spawn start_method
Unfortunately, I couldn't find the root cause for the moment. The error disappears when I use the fork start_method. I also can't find what `deco` it refers to. It seems that some function decorator / wrapping is happening badly, but I can't find what's to blame.: the dataset object can clearly be pickled, as proven...
module: dataloader,triaged
low
Critical
465,229,701
create-react-app
Error in the demo project, can't do the first run with npm.
### Describe the bug The raw project isn't running after the creation: ` events.js:170 throw er; // Unhandled 'error' event ^ Error: spawn /usr/bin/chromium ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:247:19) at onErrorNT (internal/child_process.js:429:16) ...
issue: proposal
low
Critical
465,302,757
go
cmd/go: `go clean <package>` downloads modules
#28680 is fixed and `go clean --modcache` command no longer donwloads modules before cleaning if no argument is given to the command. Note however 'go clean' accepts packages parameter as an argument(which isn't relevant to `-modcache` but is still meaningful for other purposes of `go clean`). If they are given, `g...
NeedsInvestigation,modules
low
Minor
465,320,400
flutter
[Request] React-like ref for widgets
## Use case `GlobalKey` allows other widgets to access to the `State` of a widget. But it comes with many issues: - It's possible to read the content of a `GlobalKey` inside `build`, which is a very bad practice - the documentation states that it is not performant - It's difficult to make `GlobalKey` compile-ti...
c: new feature,framework,P3,team-framework,triaged-framework
low
Critical
465,332,842
TypeScript
Allow configuration of missing property quickfix
## Search Terms `property does not exist quickfix ` `quick fix` `create private property` `quickfix configuration` <!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> ## Suggestion When referencing a property that d...
Suggestion,Awaiting More Feedback
low
Critical
465,335,704
rust
The "reached type-length limit" error is not very helpful
This issue is close to #58952, but I think it's different. Feel free to close it if I'm mistaken. ### The issue Here is the code I am trying to compile: [lovasoa/seamcarving @ f6be585](https://github.com/lovasoa/seamcarving/tree/f6be585a9f21171c8fc15dcca5218c0b761b5cfa). The compilation fails with : ``` er...
A-type-system,C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,T-types
low
Critical
465,350,898
terminal
Incorrect DPI scaling for font preview in shell properties dialog
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Product-Conhost,Help Wanted,Issue-Bug,Area-UserInterface
low
Critical
465,382,568
go
x/net/publicsuffix: EffectiveTLDPlusOne accepts IP Addresses
<!-- 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.4 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture a...
NeedsInvestigation
low
Critical
465,385,805
vscode
Hirerarchical multi-root layout
Currently, the 'folders' field of a `.code-workspace` configuration file is an array of items, each of them defining a folder. Then, all of these are shown as level-1 items in the default File Explorer. I suggest to support nesting 'folder' items with arrays, which will be layout as level-1, level-2, level-3, etc. For ...
feature-request,workbench-multiroot
high
Critical
465,393,914
flutter
Column and ListView documentation should talk about the "expand or scroll" use case
We have some sample code in SingleChildScrollView that talks about the "expand or scroll" and "center or scroll" cases. There's a link to it from Column, but even I, who added the link, missed it just now when scanning through. We should also have similar examples at ListView showing how to do this kind of thing in the...
framework,f: scrolling,d: api docs,c: proposal,P2,team-framework,triaged-framework
low
Minor
465,399,796
go
x/playground: Format button produces a spurious 'invalid module version' error for commit hashes in go.mod
`go` subcommands such as `go mod tidy`, `go test`, and `go build` automatically resolve invalid versions found in the `go.mod` file to valid ones. However, the Playground's `Format` button does not; instead, it emits an error message like: ``` go.mod:5: invalid module version "1f3472d942ba824034fb77cab6a6cfc1bc8a2...
NeedsFix,modules
low
Critical
465,426,339
flutter
Animation in sliver renders background in wrong position
## Steps to Reproduce When using a `CustomScrollView` with a `AnimatedSize` widget (inside a `SliverToBoxAdapter` -> Column) which resizes based on a simple toggle and below a `Ink` with a background color, the background color is rendered in the wrong place while the `child` of the `Ink` is in the correct place at ...
framework,a: animation,f: material design,f: scrolling,d: api docs,has reproducible steps,P2,found in release: 3.0,found in release: 3.1,team-design,triaged-design
low
Minor
465,433,441
go
x/crypto/ssh: SSH handshake fails over some net.Conn implementations (ex. net.Pipe)
### What version of Go are you using (`go version`)? Tested on: <pre> go version go1.12 linux/amd64 go version go1.12.4 windows/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? linux/windows amd64 ###...
help wanted,NeedsInvestigation
low
Critical
465,435,131
opencv
cv::remap artifacts with bilinear interpolation and cv::UMat
<!-- 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...
bug,category: imgproc,category: ocl
low
Critical
465,448,095
You-Dont-Know-JS
"types & grammar": no more "early ReferenceError"
Update various parts of the text. There's no such thing as "early ReferenceError" anymore (for things like `0++`); they're all just "early SyntaxError" now. https://github.com/tc39/ecma262/issues/691
for second edition
medium
Critical
465,459,268
pytorch
Autograd profiler memory leak when use_cuda=True
## πŸ› Bug When using the autograd profiler with `use_cuda=True`, memory usage continuously increases. This behaviour does not occur when `use_cuda=False`. ## To Reproduce ```python import torch import torchvision import psutil model = torchvision.models.alexnet(pretrained=False).cuda() x = torch.rand([1...
needs reproduction,module: autograd,triaged
low
Critical
465,473,192
rust
Drop with guaranteed move elision
Today, calling `drop(_1)` results in the following MIR: ```rust _2 = move _1; std::mem::drop::<T>(_2) -> [return .., unwind ..]; ``` We could instead inline this directly to a MIR drop, with no move. This makes it simpler to do some optimizations in MIR. This issue specifically tracks having such a `drop` a...
C-enhancement,A-destructors,T-compiler,A-MIR,C-optimization
low
Minor
465,473,451
godot
Changing scripts in the script editor should reload script
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> 3.1 **Issue description:** <!-- What happened, and what was expected. --> When you open a script in t...
enhancement,topic:editor
low
Critical
465,499,035
flutter
flutter_test is missing the solo feaure
Flutter 1.5.4-1.8.1 Although mentionned in the comment, the `solo` flag is not a parameter of the`test` and `group` function. Here for test: https://github.com/flutter/flutter/blob/c8f37a2f49a4637b3f896aef4749a343d06d09fb/packages/flutter_test/lib/src/test_compat.dart#L154-L179
a: tests,c: new feature,framework,P3,team-framework,triaged-framework
low
Major
465,510,891
godot
Accessing `global_transform` from a node which is not in the tree causes errors
Godot 3.1.1 I needed to access `global_transform` from nodes in a scene that I haven't added to the scene tree, but that spammed the console with the following errors: ``` ERROR: get_global_transform: Condition ' !is_inside_tree() ' is true. returned: Transform() At: scene/3d/spatial.cpp:266 ``` I don't ...
enhancement,discussion,topic:core
low
Critical
465,512,106
react
[Umbrella] Memory Leaks
This issue is a summary of issues mentioned in https://github.com/facebook/react/pull/15157. There are many different ways to create memory leaks with React since we give you access to the imperative power to do so. Most should be dealt with by clean up / unmount functions. Some could be pure React bugs. Some cou...
React Core Team
medium
Critical
465,514,109
pytorch
"CrossEntropyLoss" should mention in its name that it takes softmax for target
https://stackoverflow.com/questions/49390842/cross-entropy-in-pytorch https://discuss.pytorch.org/t/why-does-crossentropyloss-include-the-softmax-function/4420 https://discuss.pytorch.org/t/do-i-need-to-use-softmax-before-nn-crossentropyloss/16739 people keep asking questions like this for the name is not clear
module: nn,module: loss,triaged
low
Minor
465,520,249
godot
Scaling down a child/inherited root-scene (enemy scene) does not scale the scene in the top-most scene/level (level scene)
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.1.1 official stable **OS/device including version:** Windows 7 SP 1 64bit **Issue description:** https://www.youtube.com/watch?v=2L67F8kpJ7...
bug,topic:import
low
Major
465,530,373
node
[C++ Lint Rule] #define indentation is Inconsistent
I was recently going through the source code, trying to familiarize myself with the codebase, and I noticed that there's no consistent rule for how #defines are indented. For example, in `node_main.cc`, there's no indentation at all [in this](https://github.com/nodejs/node/blob/master/src/node_main.cc#L76:L88) `#if...
help wanted,c++
low
Minor
465,533,663
svelte
Svelte suspense (request for comments)
After reading [this issue](https://github.com/sveltejs/svelte/issues/1736), I came up with a [Suspense component for Svelte](https://github.com/brucou/svelte-suspense-component), replicating the behaviour of [React Suspense](https://css-tricks.com/reacts-experimental-suspense-api-will-rock-for-fallback-ui-during-data-f...
feature request
medium
Critical
465,542,055
flutter
Could you add similar to the z-index function of CSS to positioned?
Rather than the order of Positioned widget in Stack widget
c: new feature,framework,P3,team-framework,triaged-framework
low
Major
465,547,929
rust
Where clause causes type checking to spuriously fail
I have the following code on Rust 1.36.0 Stable ([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=d0008e38e2daa9c21ff2acc813d67c83)): ```rust trait Foo<Input> { type Output; } trait Bar { type Input; fn baz<F: Foo<Self::Input>>() -> F::Output where ...
A-type-system,A-trait-system,A-associated-items,T-compiler,C-bug,T-types,fixed-by-next-solver
low
Critical
465,557,208
vue
Vue does not work properly when setting the SVG style property in a lower version of the android browser
### Version 2.6.10 ### Reproduction link [https://codepen.io/anon/pen/XLyPJe](https://codepen.io/anon/pen/XLyPJe) ### Steps to reproduce environment: - qqBrowser 4.4 - android 4.2.2 - userAgent Mozilla/5.0 (Linux; U; Android 4.2.2; zh-cn; Coolpad 8297 Build/JDQ39) AppleWebKit/533.1 (KHTML, like ...
need repro
medium
Critical
465,565,884
pytorch
caffe_translator TranslateCrop fails when more than one dimensions is cropped
## πŸ› Bug Trying to convert Caffe FCN network (uses 2D WxH Crop) and getting error: `RuntimeError: [enforce fail at c:\work\glow\pytorch\caffe2\operators\slice_op.h:82] dim == -1. 2 vs -1. Currently only possible to slice in 1 dimension.` I plan to fix this by replacing the current logic in `TranslateCrop`, th...
caffe2
low
Critical
465,590,723
godot
Possibly security issues found by FlawFinder(Mitre CWE)
**Godot version:** 3.2.dev.custom_build. 56269e2db **Issue description:** I recently checked Godot with FlawFinder and it found a lot of possible security issues. Some can be a false positives or informational, but I think that is good to look at it. Command(go to Godot folder first) `flawfinder -S -H * > /hom...
bug,topic:core
low
Minor
465,729,766
go
strings: ToLower gives wrong result for uppercase Ξ£ in the word-final position
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12.5 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture a...
NeedsInvestigation
low
Critical
465,766,485
godot
Dialog for selecting external editor closes when clicked quickly after enabling external editor (fixed in `master`)
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** <!-- Specify commit hash if non-official. --> master https://github.com/godotengine/godot/commit/8d6a95347537c5e3084f269bdf98d1128b67b29b **OS/device...
bug,topic:editor,confirmed,usability
low
Critical
465,912,791
flutter
[Test] Migrate mock_canvas.dart into flutter_test.
## Use case As a Flutter user, I want to use the `paints` matcher in my widget tests to verify the color of a `ShapeBorder` being drawn. This can currently only be done in [the flutter framework](https://github.com/flutter/flutter/blob/a429991a150e7e297d9e9afd303cf6210913b234/packages/flutter/test/material/outli...
a: tests,framework,customer: google,c: proposal,P3,team-framework,triaged-framework
low
Minor
465,932,829
vscode
[css] Shorthand properties: show label for each value in hover
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> I'd like to have VS Code showing _box-shadow,_ _text-shadow_, _margin_ and _padding_ **options to be filled** while we are using those features, like in Dreamweaver. ![boxshadow](https://media.giphy.com...
feature-request,css-less-scss
low
Major
465,935,635
go
cmd/compile: suboptimal code generated for simple integer comparison if-block
### 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 (`go env`)? <details><summary><code>go env</code> Output</summary><br><pre>...
Performance,NeedsInvestigation,compiler/runtime
low
Critical
465,972,877
go
x/website: lighter text reduces contrast/readability
New design of golang.org uses lighter color for text (#3e4042) and links (#007d9c). This makes reading more strenuous on the eyes, especially for navigating stdlib docs.
NeedsInvestigation,website
low
Major
466,008,842
rust
Tracking issue for Iterator::partition_in_place
```rust /// Reorder the elements of this iterator *in-place* according to the given predicate, /// such that all those that return `true` precede all those that return `false`. /// Returns the number of `true` elements found. fn partition_in_place<'a, T: 'a, P>(mut self, ref mut predicate: P) -> usize where S...
T-libs-api,B-unstable,C-tracking-issue,A-iterators,Libs-Tracked,Libs-Small
medium
Critical
466,009,240
rust
Tracking issue for Iterator::is_partitioned
```rust /// Checks if the elements of this iterator are partitioned according to the given predicate, /// such that all those that return `true` precede all those that return `false`. fn is_partitioned<P>(mut self, mut predicate: P) -> bool where Self: Sized, P: FnMut(Self::Item) -> bool, ``` `feature...
T-libs-api,B-unstable,C-tracking-issue,A-iterators,Libs-Tracked
low
Major
466,023,473
angular
Service Worker is blocking CSP violation reports
<!--πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”… 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. πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…...
type: bug/fix,help wanted,freq1: low,area: service-worker,cross-cutting: CSP,state: needs more investigation,P3
low
Critical
466,037,194
TypeScript
Refactoring: Generate type annotation from inferred type
## 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 --> refactoring quick fix add inferred type ## Suggestion VS Code should provide a refactoring command for generating a type annotation. ## Use Ca...
Suggestion,Awaiting More Feedback,Domain: Refactorings
low
Critical
466,045,765
pytorch
BFloat16 numeric limits should contain more info
BFloat16 numeril limits should contain more info like: - is_modulo - is_bounded - has_denorm - has_signaling_NaN - etc.
triaged,enhancement,module: bfloat16
low
Minor
466,047,772
flutter
iOS integration test dual view crashes
Run the app in https://github.com/flutter/flutter/tree/master/dev/integration_tests/ios_add2app/ios_add2app.xcworkspace Tap the Dual Flutter View (cold) button. Press either of the POP buttons in the next page. ![Screen Shot 2019-07-09 at 6 07 09 PM](https://user-images.githubusercontent.com/156888/60932790-640d...
a: tests,team,c: crash,platform-ios,engine,a: existing-apps,P2,team-ios,triaged-ios
low
Critical
466,057,344
vue
Wrong definition of the type AsyncComponentFactory
### Version 2.6.10 ### Reproduction link [https://github.com/vuejs/vue](https://github.com/vuejs/vue) ### Steps to reproduce 1. compare the [AsyncComponentFactory](https://github.com/vuejs/vue/blob/dev/types/options.d.ts) definition with the [document](https://vuejs.org/v2/guide/components-dynamic-...
good first issue,typescript,has PR
medium
Critical
466,082,360
rust
wasm test failures do not contain error messages
When our tests fail in bors on a wasm target, there is no error message except `RuntimeError: unreachable` ([example](https://dev.azure.com/rust-lang/rust/_build/results?buildId=2616)). There is nothing to print the panic message to the console. I think this could be fixed by adding [console_error_panic_hook](https:...
A-testsuite,O-wasm,C-bug
low
Critical
466,157,535
godot
KinematicBody does not collide with new position of a moved KinematicBody - can tunnel through
**Godot version:** 3.1.1 **OS/device including version:** Windows 8.1 **Issue description:** If two kinematic bodies move toward each other using move_and_collide() in the same frame, they can intersect, or even tunnel through, since the collision does not seem to take into account the updated position of the Ki...
bug,confirmed,topic:physics
medium
Critical
466,198,362
create-react-app
Missing documentation for process.env.CI
The `npm run build` command is affected by the environment variable `CI`, but it is not well documented. This is what the [existing documentation](https://facebook.github.io/create-react-app/docs/running-tests#continuous-integration) says about it: > When creating a build of your application with npm run build lint...
issue: proposal
low
Critical