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
397,706,010
pytorch
Broadcasting and Additional Dimensions for pairwise_distance
## πŸš€ Feature `F.pairwise_distance` supports `[N,D]x[N,D]=[N]`. Please add the support for `[*,D]x[*,D]=[*]` with broadcasting. ## Motivation I am trying to implement a triplet loss. From the network I have a embedding `[N, D]` and mean vectors `[M, D]`. I need `N*M` distances between them. However `pdist` ...
module: nn,triaged,function request,module: distance functions
low
Major
397,759,506
TypeScript
ES5 + downlevelIteration on spread operator disables strictNullChecks
**TypeScript Version:** 3.3.0-dev.20190110 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** **Code** ```ts declare const maybeArr: number[]|undefined; // declare is load bearing, otherwise compiler seems to infer tighter type const nums: numb...
Bug
low
Critical
397,776,088
angular
After a reorder animation states doesn't get detected correctly
# 🐞 bug report ### Affected Package The issue is caused by package @angular/animations (I think) ### Is this a regression? Yes, the previous version in which this bug was not present was: 6 (at least) ### Description When a bunch of elements are rendered with ngFor and an animation trigger, the trigg...
type: bug/fix,area: animations,freq1: low,P4
low
Critical
397,782,118
flutter
App ignores proxy settings
We need a way to access the system configured proxy. In networks where a proxy is required to enter the internet, this is critical. Currently, I'm not able to use any flutter app in such networks where a proxy is configured in the system settings.
c: new feature,framework,engine,dependency: dart,P2,team-engine,triaged-engine
low
Critical
397,782,224
flutter
Offset of PopupMenuButton takes selected item into account
I noticed my `PopUpMenu` jumping around whenever I selected any value in it. After deeper inspection I noticed the `PopUpMenu`'s offset is linked to the `initialValue`. But this doesn't make any sense and is also not documented. I've build a small example app to show it. The `CheckedPopUpMenu` acts normally to its g...
framework,f: material design,a: quality,has reproducible steps,P2,has partial patch,found in release: 3.7,found in release: 3.9,team-design,triaged-design
low
Critical
397,829,364
TypeScript
Object.assign({}) seems to always return a type any
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.3.0-dev.20190110 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** Object.assign **Code** ```ts function foo(): {foo: ...
Bug,Domain: lib.d.ts
low
Critical
397,994,160
TypeScript
Exponential compilation slowdown with property accessors and conditional types
Apologies, I have had to break from the template in order to describe this issue since it is not easily reproduced in a simple demo. <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.0.3, 3.2.2, 3.3.0-dev.20190110 <!-- Search terms you t...
Bug,Domain: Performance,Domain: Conditional Types
low
Critical
398,026,141
rust
Infinite loop in try_push_visible_item_path
This happens when an item has an infinite number of visible names: ``` // pathlooptest/src/lib.rs pub struct AStruct; pub mod prelude { pub use crate as pathlooptest; pub use crate::AStruct; } ``` ``` // main.rs use pathlooptest::prelude::*; pub fn main() { let x: AStruct = 42; // cause...
E-needs-test,T-compiler,I-hang
low
Critical
398,053,666
TypeScript
Using compiled *.d.ts file produces a type error, but using the same type from the source file doesn't
Backstory: A type error bug was reported for a library of mine. I tried reproducing by writing code inside the library source and I couldn't reproduce it. I `npm install`-ed my library and I could indeed see the error that was reported (I used the same code snippet in both places). Turns out the type error only happens...
Bug
low
Critical
398,059,814
flutter
Building flutter tool can time out on fresh macos install
Running Flutter for the first time can trigger git which can trigger macOS to show a prompt to go get Xcode command line tools the first time it's run. That takes forever and we dump a scary error when the Flutter tool build times out.
tool,platform-mac,a: first hour,P2,team-tool,triaged-tool
low
Critical
398,092,929
terminal
GenerateConsoleCtrlEvent creates "zombie" process handle in conhost.exe
* Windows build number: 10.0.17763.195 * What you're doing and what's happening: I have an application that starts and stops many sub processes. We use 'GenerateConsoleCtrlEvent' to stop sub processes. Every time we use this function, the conhost.exe process associated with our main / parent process acquires a "zomb...
Product-Conhost,Area-Server,Issue-Bug
low
Minor
398,095,450
flutter
Complete failure of google_sign_in disconnect()
The "disconnect()" function in the google_sign_in package seems to be completely inoperative. Looking through the source it seems to do the right thing: signOut() calls the Java libary's signOut(), and disconnect() call's the Java library's revokeAccess(). But it does not in fact revoke anything--the name still appear...
platform-android,p: google_sign_in,package,P2,team-android,triaged-android
low
Critical
398,102,915
rust
diagnostics: suggets assert_eq!() instead of assert!() where appropriate
````rust fn main() { let x = 3; assert!(x, 3); } ```` This currently gives an error like so: ```` error[E0308]: mismatched types --> src/main.rs:3:5 | 3 | assert!(x, 3); | ^^^^^^^^^^^^^^ expected bool, found integer | = note: expected type `bool` found type `{integer...
C-enhancement,A-diagnostics,A-macros,T-compiler,A-suggestion-diagnostics
low
Critical
398,125,976
TypeScript
Async LanguageServiceHost
## Search Terms `language`, `service`, `host`, `async`, `api` ## Suggestion It'd super awesome if Language Service would accept a LanguageServiceHost with async API ## Use Cases Using `LanguageService` in environments where `readFileSync` is not available like browsers (using `browserfs` package or fs pr...
Suggestion,In Discussion,API
medium
Major
398,192,329
go
proposal: net: add MarshalText/UnmarshalText to HardwareAddr
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go1.10 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What did you do? I'm trying to unmarshal json content into `...
Proposal
medium
Critical
398,278,345
TypeScript
Argument types of functions with multiple declarations should be smarter.
<!-- 🚨 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,Domain: Control Flow
low
Critical
398,297,107
godot
Sphere shape should have 1 handle more
**Godot version:** 3.1beta1 **Issue description:** Sphere shapes are not resizable from the side: if you look at a sphere shape from the side the handle is "in the middle" of the sphere, making it completely useless. **Proposal** Add a second handle for when looking the sphere from the side. 2 handles are suff...
enhancement,topic:editor
low
Minor
398,349,331
rust
Iterating with step_by(1) is much slower than without
Greetings! I'd like to report that I get some significant (negative) performance impact when calling `step_by(1)` on an iterator. I created a repository with a detailed description of the issue and benchmarks to reproduce it: https://github.com/mvlabat/step_by_one These are the functions I tested: ```rust pub f...
I-slow,E-needs-test
low
Major
398,358,755
TypeScript
Suggest renaming file from .ts to .tsx if needed?
## Search Terms ts tsx react jsx rename file errors ## Suggestion When adding JSX elements (React) to a `.ts` file rather than a `.tsx` file, error messages aren't clear that it should be a `.tsx` file. If it's clear the user is intending to write JSX code, such as having multiple JSX-like components and/or co...
Suggestion,Domain: Error Messages,Experience Enhancement
low
Critical
398,367,842
TypeScript
Compiler generates jsxFactory call with incorrect namespace
**TypeScript Version:** 3.2.2, 3.3.0-dev.20190111 **Search Terms:** jsx, jsxFactory **Code** Full solution: [test.zip](https://github.com/Microsoft/TypeScript/files/2750418/test.zip) ```ts namespace Templates { export function compile(_: string, __: { [key: string]: any }, ...___: Array<any>) { ...
Suggestion,Needs Proposal,Domain: Error Messages
low
Critical
398,382,238
pytorch
ProcessGroupGlooTest.test_scatter_stress_cuda is flaky
Example errors: 1. build: https://circleci.com/gh/pytorch/pytorch/550843?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link ``` ====================================================================== Jan 11 15:06:07 FAIL: test_scatter_stress_cuda (__main__.ProcessGroupGlooTest) Jan...
oncall: distributed,triaged,module: flaky-tests,module: c10d
low
Critical
398,384,110
go
gccgo: confusing closure names
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? ``` gccgo2 (GCC) 9.0.0 20190108 (experimental) ``` ### What operating system and processor architecture are you using (`go env`)? Linux/AMD64 ### What did you do? ``` package ...
NeedsInvestigation
low
Minor
398,394,430
TypeScript
Allow use of infer in extends clause of generic type parameter
## Search Terms generic type parameter infer keyword conditional ## Suggestion Allow the use `infer` keyword in the extends clause of generic type parameters. This would simply be a nice quality of life improvement to avoid unnecessary conditional types or extra free type parameters. ```ts type ArrayType<A...
Suggestion,Awaiting More Feedback
low
Critical
398,414,516
flutter
FAB shadows are not aligned with Material spec
## Steps to Reproduce 1. Render a FAB. 2. Look at shadow. 3. Compare with FAB shadow with attached image <img width="143" alt="screen shot 2019-01-11 at 11 02 54 am" src="https://user-images.githubusercontent.com/42326/51054103-84437c80-1590-11e9-8c6f-45506163aa18.png"> `material/shadows.dart` appears to define ...
framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-design,triaged-design
low
Major
398,416,722
TypeScript
JavaScript/TypeScript region folding with //region does not work
<!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> <!-- Use Help > Report Issue to prefill these. --> - VSCode Version: 1.30.2 - OS Version: Linux...
Suggestion,Awaiting More Feedback,Domain: Outlining
medium
Major
398,420,464
go
cmd/compile: implement global new(T) without calling newobject
```go package p var x = new(int) ``` This generates init code to call `newobject` (including a write barrier, which I thought wasn't supposed to happen any more?). Instead, we should make a BSS int symbol, and then make `x` contain a relocation to that symbol. cc @randall77 @mvdan
Performance,NeedsFix,compiler/runtime
low
Major
398,422,427
go
x/build: add binary size sparklines to build.golang.org
Binary size keeps creeping up. Some visibility might help. Here's an idea: At the end of every builder run, we have readily available a bunch of compiled binaries on a bunch of different platforms. We could pick a few binaries on a couple of platforms and add some spark charts (or regular charts) to the top of build...
Builders,NeedsInvestigation,FeatureRequest
low
Minor
398,424,504
go
cmd/compile: use memmove to initialize non-global static data
This is a duplicate of https://github.com/golang/go/issues/29573#issuecomment-451596366 and https://github.com/golang/go/issues/29574#issuecomment-451626918, but split out so that it doesn't get lost in the other discussions. When initializing static data in a function (non-global) context, we generate code to const...
Performance,NeedsFix,compiler/runtime
low
Minor
398,424,775
rust
rustdoc support for per-parameter documentation
It appears to me that this pattern of documenting function parameter has become an informal standard: ```rust /// Supplies a new frame to WebRender. /// /// Non-blocking, it notifies a worker process which processes the display list. /// /// Note: Scrolling doesn't require an own Frame. /...
T-rustdoc,A-attributes,C-feature-request
high
Critical
398,431,397
go
Brand book: hex color codes don't match RGB values
I was writing a Playground linkΒΉ for a quick reference to the Go brand colors, and discovered that some of the hex values for some of the colors in the [Brand Book](https://golang.org/s/brandbook) don't match the RGB values listed beneath them. Specificially: * β€œGopher Blue” is listed as `#00ADD8`, but its RGB ...
Documentation,NeedsInvestigation
low
Major
398,445,577
rust
first/second mutable borrow occurs here wrong diagnostic in nll
After https://github.com/rust-lang/rust/pull/56113 we figured with @nikomatsakis that the output of `src/test/ui/borrowck/borrowck-mut-borrow-linear-errors.rs` in NLL is not ideal ([play](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=e214c2f5b4adadbcdfde970a69b7557f)): ```rust fn main() {...
C-enhancement,A-diagnostics,A-borrow-checker,T-compiler,D-papercut
low
Critical
398,446,233
rust
const fn type is missing `const` in error message
```rust const fn foo() {} fn main() { let _: () = foo; } // error[E0308]: mismatched types // = note: expected type `()` // found type `fn() {foo}` ``` I'd expect the found type to be `const fn() {foo}`.
C-enhancement,A-diagnostics,P-low,T-compiler,A-const-eval
low
Critical
398,447,047
go
proposal: runtime: add way for applications to respond to GC backpressure
This is marked as a proposal, but I'd like it to start out as a discussion. Although I believe the need is clear, the correct design is not at all obvious. Many applications have caches that they could easily drop in response to GC backpressure. However, there is currently no good way to do this. One obvious exam...
Proposal,Proposal-Hold
medium
Critical
398,466,587
go
cmd/go: set .cache/go-build files as read-only
My understanding is that files in .cache/go-build are immutable and strongly named. If so, it might be worth setting them as read-only to help prevent cache corruption. For example, [as I mentioned on #24661](https://github.com/golang/go/issues/24661#issuecomment-453364210), transitioning mdempsky/unconvert from go/...
NeedsDecision,GoCommand
low
Minor
398,475,351
godot
Node2D's position property is zero inside _ready function when created in the editor with drag-and-drop
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** Godot 3.1 beta 1 **OS/device including version:** macOS 10.14.2 Intel Core i7 Intel HD Graphics 4000 **Issue description:** [I described this...
topic:core,topic:editor,usability
low
Critical
398,485,051
rust
missing_docs false positive on re-export in module with #![allow(missing_docs)]
This one might be a bit complex to solve. This affects both 2015 and 2018 editions on stable/nightly. When a `pub` item from a private module in a crate with `#![deny(missing_docs)]` is reexported in a pub module marked `#![allow(missing_docs)]`, the lint still fires. [2015 (Playground)](https://play.rust-lang.or...
T-rustdoc,A-lints,C-bug
low
Critical
398,504,010
flutter
Cursor scroll in text fields too insensitive in Flutter
On Android and on iOS, in both collapsed and expanded selection modes, the single line horizontal scroll is more 'pre-emptive' than our current implementation. Whereas we try to select the text position based on the drag gesture and bring it into view if it were not, the native texts start scrolling before the drag ...
a: text input,c: new feature,platform-android,platform-ios,framework,f: material design,f: cupertino,a: quality,f: gestures,c: proposal,P3,team-design,triaged-design
low
Minor
398,512,139
node
responses corresponding to requests queued by http agent are attached to incorrect domain
<!-- 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...
help wanted,http,domain
low
Critical
398,531,517
TypeScript
for() not compiled correctly in 3.2.2
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.2.2 not fixed with next == 3.3.0-dev.20190112 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** for( statement **Code** ...
Bug,Domain: JS Emit
low
Critical
398,552,401
rust
Float `signum` returns +/-1 for zeros, mismatching integers (and convention)
The sign/signum function is almost always defined to have signum(x) = 0 if x = 0, e.g. - mathematical convention: https://en.wikipedia.org/wiki/Sign_function, - Java (`java.lang.Math.signum`): https://docs.oracle.com/javase/10/docs/api/java/lang/Math.html#signum(double), - numpy (`numpy.sign`): https://docs.scip...
T-libs-api,A-floating-point
medium
Major
398,560,416
flutter
Copy large file from Assets Folder to Application Documents Folder
## Steps to Reproduce Hi, I try to use a large db-file. And therefore, my code copies this file from the Assets folder to the Application-Documents-Folder as can be seen in the code-example below. For small files, my code works perfectly fine and I can work with my DB perfectly fine. However, if I try it wi...
c: new feature,framework,a: assets,P2,team-framework,triaged-framework
low
Critical
398,568,643
flutter
BorderRadiusDirectional not supported in BorderRadiusTween
framework,a: animation,f: material design,customer: money (g3),has reproducible steps,P2,found in release: 3.5,team-design,triaged-design
low
Major
398,578,738
scrcpy
Incorrect color representation of Samsung J7 2017
Happens both over WiFi and USB. Running commands from [#177](https://github.com/Genymobile/scrcpy/issues/177#issuecomment-397973971): ```bash adb shell screenrecord /sdcard/test.mp4 adb pull /sdcard/test.mp4 ``` results in correct video. Broken commands: ```bash scrcpy -b10K -m360 scrcpy -b2M -m600 ...
display
low
Critical
398,579,168
go
x/image/bmp: support 1-bit format
Hi, I implemented support for 1-bit bmp files in the reader: https://github.com/cbrake/golang.org-x-image/commit/25481fe1980277e4b3206c11a3fc15e2ec31eddc Is there interest merging this (or an improved version)?
NeedsDecision,FeatureRequest
medium
Major
398,589,854
rust
FFI -L linker paths ignored on Linux but work on Mac
I manage the [Rutie](https://github.com/danielpclark/rutie) project which wraps libruby allowing Ruby & Rust to be used together. It has taken a long time to discover what the weird behavior was here so let me explain what's going on. First the environment I test against is a system that has Ruby installed within t...
A-linkage,O-linux
low
Critical
398,592,334
pytorch
More data type support for gather_map
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> So far we only support Tensor and Dict in gather_map(). Can we also support Number and List like what we do in collate() ## Motivation <!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e...
module: nn,triaged,enhancement
low
Critical
398,601,040
go
path/filepath: TestBug3486 fails if GOROOT/test is removed
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.4 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes, 1.11.4 is the latest (not counting betas?). ### What operating system and processor architecture are you using (`go env`)? <details...
Testing,NeedsDecision
low
Critical
398,605,825
flutter
[google_maps_flutter] Support for Ground Overlay
<!-- Thank you for using Flutter! Please check out our documentation first: * https://flutter.io/ * https://docs.flutter.io/ If you can't find the answer there, please consider asking a question on the Stack Overflow Web site: * https://stackoverflow.com/questions/tagged/flutt...
c: new feature,customer: crowd,p: maps,package,c: proposal,team-ecosystem,P2,has partial patch,triaged-ecosystem
low
Critical
398,609,917
rust
Meta tracking issue for `const fn`
This issue tracks the progress of `const fn` as well as const evaluation more broadly. ### This issue is not for discussion about specific extensions to `const fn` or const evaluation and only exists to provide links to other places that track the progress of specific issues. If you wish to discuss some subject rel...
A-attributes,A-diagnostics,metabug,A-stability,T-lang,T-compiler,A-const-eval
high
Critical
398,636,613
go
cmd/compile: optimize CAS loops
Note: I'm not 100% sure the transformation I'm proposing is correct, or profitable. If it's not feel free to close. Consider the typical Go CAS loop: ``` for { oldA := atomic.LoadUint64(&A) newA := f(oldA) if atomic.CompareAndSwapUint64(&A, oldA, newA) { return ...
Performance,NeedsInvestigation,compiler/runtime
low
Minor
398,649,618
rust
Tracking issue for future-incompatibility lint `ill_formed_attribute_input`
#### What is this lint about Previously inputs for many built-in attributes weren't validated and nonsensical attributes like `#[no_std(arbitraty, string = "foo")]` were accepted. https://github.com/rust-lang/rust/pull/57321 introduced a check for top-level shape (`#[attr]` vs `#[attr(...)]` vs `#[attr = ...]`) for...
A-attributes,A-lints,T-lang,T-compiler,C-future-incompatibility,C-tracking-issue
low
Critical
398,652,037
vue
[SSR] Add option to output the server entry through webpack
### What problem does this feature solve? The guide for Server-Side rendering creates 2 webpack builds, one for the client and one for the server. Then you create a file that imports the outputs from those 2 builds and returns the responses to whatever framework you use (e.g. express). Let's call this file the server ...
feature request
low
Minor
398,668,571
opencv
dnn: assertion failure with multiple images
- OpenCV => 4.0.1-dev - Operating System / Platform => Windows 64 Bit - Compiler => mingw64 7.2.0 ##### Detailed description using the[ face_detector_uint8.pb](https://github.com/opencv/opencv_3rdparty/raw/8033c2bc31b3256f0d461c919ecc01c2428ca03b/opencv_face_detector_uint8.pb) model with multiple images (using dnn:...
bug,affected: 3.4,category: dnn
low
Critical
398,681,094
create-react-app
Consider adding a lint rule to check for using `this.state` after calling `setState()`
One of the most frequent errors we see asked about in Reactiflux is when a user writes code like this: ```js this.setState({data : 123}); console.log(this.state.data); // Why isn't it "123" right now? ``` The issue is that new users haven't yet internalized that `setState()` is usually async, and so `this.sta...
issue: proposal
low
Critical
398,683,771
go
x/mobile/gl: ctx.BufferData and ctx.BufferSubData with unsafe.Pointer
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.4 windows/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What did you do? When working with OpenGL, meshes consist out of vertices and indices that need to be pushed into GPU buffe...
Proposal,Proposal-Accepted,mobile
low
Critical
398,688,755
flutter
Feature: allow BottomNavigation to float above keyboard
As per this PR #14406 the `BottomNavigation` has been explicitly set to not float above the keyboard when it is open as per the Material Design spec, however there could be instances where this could actually be desirable. For instance, if you wanted to use the `BottomAppBar` as a chat text input field, this current...
c: new feature,framework,f: material design,P2,team-design,triaged-design
low
Major
398,689,975
TypeScript
Replace --preserveWatchOutput with --clearWatchOutput
<!-- 🚨 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
398,698,333
go
net: TestLookupGmailTXT failing on Plan 9
Since CL [157638](https://golang.org/cl/157638), TestLookupGmailTXT is failing on Plan 9. ``` --- FAIL: TestLookupGmailTXT (0.01s) lookup_test.go:248: got [globalsign-smime-dv=CDYX+XFHUw2wml6/Gb8+59BsH31KzUr6c1l2BPvqKX8=]; want a record containing spf, google.com lookup_test.go:248: got [globalsign-smime-...
OS-Plan9,NeedsInvestigation
low
Major
398,702,390
TypeScript
It is not allowed to push a number to the array foo in {foo: []}
**TypeScript Version:** Playground **Search Terms:** never[] **Code** ```ts const foo = { foo: [] }; foo.foo.push(1); const bar = []; bar.push(1); ``` **Expected behavior:** TypeScript should infer foo to be of type `{ foo: any[] }` and therefore `foo.foo.push(1);` should be allowed like `bar.push...
Bug,Domain: Control Flow
low
Critical
398,703,310
flutter
Reassemble method called too late when `hot reload`ing
Consider a widget that rebuilds very often (typically because of an animation). Then consider editing the sources of that widgets through hot-reload. It seems that when doing so, there's a chance for `build` method to be called _before_ `reassemble` was, but with the updated content. This is a big issue for t...
c: new feature,tool,framework,t: hot reload,P3,team-framework,triaged-framework
medium
Critical
398,722,496
TypeScript
generic function parameter infers boolean as true
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.3.0-dev.201xxxxx <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** true boolean generic function extends default **Code** ...
Suggestion,Needs Proposal,Domain: Type Inference
low
Major
398,742,116
godot
Texture mapping emission with GIProbe produces incorrect reflection
**Godot version:** v3.0.6.stable.official.8314054 **OS/device including version:** macOS Mojave 10.14.1 **Issue description:** When using a texture map in the emissive channel, reflections generated within a GIProbe display incorrectly. **Steps to reproduce:** 1. Download and Import the following test pr...
bug,topic:rendering
low
Minor
398,784,658
vscode
Shrink empty lines
Visual Studio has a nice extension called "**Shrink Empty Lines**" which enables the user to have empty lines and/or lines without alphanumeric characters shrunk in the editor to a specific extent. This way users can have more vertical space for their actual code. https://marketplace.visualstudio.com/items?itemName=...
feature-request,editor-rendering
medium
Critical
398,786,284
neovim
Can't undojoin an append or setline in <C-R> mappings
- `nvim --version`: NVIM v0.3.2-996-g55c518588 - Vim 8.0 behaves the same way - Operating system/version: 4.15.0-38-lowlatency #41-Ubuntu SMP PREEMPT Wed Oct 10 12:26:00 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux ### Steps to reproduce using `nvim -u NORC` function CrMapping() undojoin | call append(l...
bug-vim,editor
low
Minor
398,796,644
rust
librustc_codegen_ssa: exported entry function symbol is hardcoded as "main"
Seems suspicious as observed by @Zoxc [here](https://github.com/rust-lang/rust/pull/57573/files/57886cf92a063f2ba1f51a44d4ecc85e2ba0256f#r247388333). Could we have in theory something like (or anything else): ```rust #[no_mangle] #[main] fn awesome_main() { ... } ``` which would make this logic wrong?
A-codegen,C-bug,requires-nightly
low
Major
398,823,844
go
testing: Benchmark calls during benchmarks deadlock
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.2 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture ar...
NeedsFix
low
Critical
398,871,054
kubernetes
β€œ--system-reserved” kubelet option cannot work as expected
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!--> **What happened**: start kubelet with below config: ``` [root@app ~]# cat /etc/systemd/system/kubelet.service.d/10-kubeadm.conf [Serv...
kind/bug,area/kubelet,sig/node,priority/important-longterm,triage/accepted
high
Critical
398,916,548
flutter
Listview with shrinkwrap on the cross axis - impossible?
I have a column and I want to add an horizontal listview inside of it, but I can't seem to find a way to make the height of that listview fit. Shrinkwrap seems to apply only to the listview main axis (width/horizontal, in this case). I tried googling, asking on gitter, and even found some unanswered question on stackov...
c: new feature,framework,P2,team-framework,triaged-framework
low
Critical
398,950,149
pytorch
[docs] Missing argument description (value) in scatter_ function documentation
Documentation for ### scatter_ method lists the following arguments: **scatter_(dim, index, src)** It also, incorrectly, states that **src** can be a tensor or a float. But it looks like, that in release 1.0.0, **src** cannot be a single float number. When you want to write the single float value to the tensor, you ...
todo,module: docs,triaged,module: scatter & gather ops
low
Minor
398,996,952
rust
Consider whether repeated macro matchers need separator disambiguation for futureproofing
The following macro is valid, and can be used: ```rust macro_rules! ex { ($($i:expr),* , $($j:ty),*) => { }; } fn main() { ex!(a, dyn Copy); } ``` However, if it's invoked in an ambiguous way, such as with `ex!(a, b)`, then it gives an error (no lookahead is performed to `)` to determine an unamb...
A-macros
low
Critical
399,000,326
go
cmd/go: 'go get' with semantic-version prefix doesn't fall back to matching tag or branch
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.4 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture ...
NeedsFix,modules
low
Critical
399,011,159
go
encoding/json: Map key marshals with MarshalText but unmarshals with UnmarshalJSON
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.4 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What did you do? playgound: https://play.golang...
NeedsInvestigation
low
Critical
399,050,286
TypeScript
Include parameter information in quickInfo on function arguments
From https://github.com/Microsoft/vscode/issues/57341 <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.3.0-dev.201xxxxx <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** ...
Suggestion,Domain: JSDoc,Domain: Quick Info,Experience Enhancement
low
Major
399,053,438
TypeScript
Type checking doesn't work with extra function arguments
Extra argument types are inferred correctly but aren't checked. Looks like #17559 is implemented incompletely. And this code also breaks colorization by vscode like the following code. ```ts function f(): <T extends string>(a: T) => void { return (a, b = a) => { isFinite(a); isFinite(b); } } ``` ...
Bug
low
Critical
399,073,409
go
cmd/go: outer module can provide packages that appear to be in an inner module
Consider two modules, one of which is nested in the other: ``` modcache/pkg/mod/foo.com β”œβ”€β”€ outer β”‚Β Β  └── inner@v1.0.0 β”‚Β Β  β”œβ”€β”€ go.mod β”‚Β Β  └── p2 β”‚Β Β  └── y.go └── outer@v1.0.0 β”œβ”€β”€ go.mod └── inner └── p └── x.go ``` Module `foo.com/outer/inner` contains `p2`, w...
Documentation,NeedsInvestigation,GoCommand,modules
low
Critical
399,074,396
kubernetes
Validate/test usage of service account credentials in cloud controller manager
**What would you like to be added** We have no coverage for whether bootstrap roles sufficiently cover RBAC with service account credentials for controllers in the cloud-controller-manager. As of today, they should use the same roles as kube-controller-manager. We should have tests/validation in place to ensure that t...
area/test,area/cloudprovider,kind/feature,lifecycle/frozen,sig/cloud-provider
low
Critical
399,103,570
vue
Transition's @appear hook invoked even when appear not specified / falsy
### Version 2.5.22 ### Reproduction link [https://codepen.io/anon/pen/jXdLGV](https://codepen.io/anon/pen/jXdLGV) ### Steps to reproduce Open the repro and note that the rendered page says "initial appear". ### What is expected? The `@appear` hook should not be invoked and the page should just ...
bug,transition
low
Minor
399,114,845
scrcpy
GUI for Mac would be cool
Why not release a interface for this program?
feature request
low
Minor
399,146,741
node
error handler of same domain can be called several times when it throws
<!-- 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...
help wanted,domain
low
Critical
399,157,942
terminal
ENABLE_WRAP_AT_EOL_OUTPUT is not working with VT100
The cursor doesn't moves to the beginning of the next row when it reaches the end of the current row. It works as intended when VT100 is disabled. Windows build number: ```Microsoft Windows [Version 10.0.17134.523]``` Code: ```c++ #include <iostream> #include <string> #include <Windows.h> using std::string...
Product-Conhost,Area-Output,Issue-Bug
low
Major
399,221,900
go
os/signal: TestCtrlBreak fails with "exit status 0xc000013a" error
Our windows-arm builder occasionally fails https://build.golang.org/log/e345b763b3b62e4efd13bdfd95361fbc6655c3dd with ``` --- FAIL: TestCtrlBreak (14.29s) signal_windows_test.go:102: Program exited with error: exit status -1073741510 FAIL FAIL os/signal 25.339s ``` I do not have windows-arm computer...
Testing,OS-Windows,NeedsInvestigation,compiler/runtime
low
Critical
399,297,292
godot
Shader does not seem to work using the [Visual Shader Editor]
<!-- 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-beta.1 **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --...
bug,topic:rendering,usability
low
Critical
399,305,161
vue
Modifier to propagate/forward events to parent
### What problem does this feature solve? Currently, and as far as I know, if we want to propagate an event fired by a child component to the parent (the child's grandparent) we need to $emit the event again, and we need to pass all the arguments one more time. This can become a problem, for example, if the event has ...
feature request
high
Critical
399,307,619
go
cmd/vet: stdmethods check gets confused if run on a package named "xml"
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.11.4 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are...
NeedsFix,Analysis
low
Critical
399,331,529
go
cmd/go: reject 'go generate' on packages in unreplaced module dependencies?
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.12beta2 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Testing with the beta pre the 1.12 release. ### What ope...
help wanted,NeedsFix,GoCommand,modules
low
Critical
399,392,055
rust
Stack overflow on cloning static boxed value with a generic impl
Here's a sample program that uses a static HashMap of structs containing boxed values: ```rust #[macro_use] extern crate lazy_static; use std::collections::HashMap; use std::sync::Mutex; use std::fmt::Display; trait Value: Send + Display { fn box_clone(&self) -> Box<dyn Value>; } impl Value for is...
C-enhancement,A-lints,T-compiler
low
Critical
399,409,998
material-ui
[material-ui][docs] Create ADA compliance documentation
It would go a long way to help pitch Material UI as a solution if I could link to documentation covering the library's support for ADA compliance. I know Material UI does have at least some support for ADA/WCAG compliance, for instance through the use of "aria-" and "role" html attributes throughout the codebase to ...
docs,accessibility
medium
Critical
399,494,815
TypeScript
Parameter hints do not get dismissed when the cursor moves
Presently, it appears that the parameter hint window does not get dismissed if it is brought up when invoking a function within the argument list of another function and you move out of the inner function's argument list. The popup changes to reflect its new position, but this is not a generally useful thing and in som...
Suggestion,Awaiting More Feedback,Domain: Signature Help
low
Major
399,509,798
flutter
RenderViewportBase.getOffsetToReveal doesn't work on RenderSlivers when rect is provided
This came up while working on https://github.com/flutter/flutter/pull/26598: If the target parameter of [RenderViewportBase.getOffsetToReveal](https://master-docs.flutter.io/flutter/rendering/RenderViewportBase/getOffsetToReveal.html) is a RenderSliver, then the returned RevealedOffset may include an invalid `rect`....
framework,f: scrolling,P2,team-framework,triaged-framework
low
Minor
399,530,196
TypeScript
Allow Type Checking to be Extended (into Tagged Templates, for example)
## Search Terms Tagged Templates, template literals, JSX, htm, lit, lit-html, hyperhtml, nanohtml, choo ## Suggestion Many developers are exploring Tagged Templates as an alternative to JSX/TSX, as the result offers some important advantages. In particular, Tagged Templates parse faster than compiled JSX in al...
Suggestion,Awaiting More Feedback
medium
Critical
399,551,536
rust
Tracking issue for future-incompatbility lint `ambiguous_associated_items`
#### What is this lint about With variants being resolved as inherent associated items (https://github.com/rust-lang/rfcs/pull/2338) code like this become ambiguous: ```rust enum E { V } trait Tr { type V; fn f() -> Self::V; } impl Tr for E { type V = u8; fn f() -> Self::V { 0 } //...
A-lints,A-associated-items,T-lang,T-compiler,C-future-incompatibility,C-tracking-issue
low
Critical
399,577,570
kubernetes
Allow Mutating|ValidatingWebhookConfiguration to use secret for CABundle
**What would you like to be added**: Allow Mutating|ValidatingWebhookConfiguration to reference content of a secret as CABundle. The following shows the idea. We can use better names than below. ``` type WebhookClientConfig struct { URL *string `json:"url,omitempty" protobuf:"bytes,3,opt,name=url"` Service *S...
priority/awaiting-more-evidence,sig/api-machinery,kind/feature,area/admission-control,lifecycle/frozen
high
Critical
399,579,000
TypeScript
Suggestion: Sort autocomplete importable items by locality to current file
I have the "locality bonus" setting turned on. When VS Code suggests symbols in other TypeScript files (that aren't imported yet), I'd like them to be ordered so that symbols in files nearer to the current one are first. This would be helpful because my project has many interfaces with the same name (`State`) that o...
Suggestion,In Discussion
low
Minor
399,581,805
rust
Add command-line option to `rustc` for setting default `recursion-limit`
This'd be handy for using when many crates being compiled together need a higher recursion limit.
T-compiler,C-feature-request,A-CLI
low
Minor
399,585,160
go
net/http/httptest: httptest on Windows is IPv4-specific
<!-- Please answer these questions before submitting your issue. Thanks! --> ### 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 operating system and processor architecture are you using (`go env`)? ...
help wanted,OS-Windows,NeedsInvestigation
low
Critical
399,603,947
godot
Mono No errors reported for async functions, game continues
<!-- 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. --> c6b587636b1e3cf27e566e6e5b10859316cbefb6 **OS/device including version:** <!-- Specify GPU model and d...
discussion,usability,topic:dotnet
low
Critical
399,669,740
TypeScript
Introduce 'extends type' and 'extends modifier' or phantom types to simplify the language and speed it up.
Basically when using [k in keyof] and mutating structures in ways that can be found at these repositories it becomes apparent that to simplify the learning cure it would be better if the type modifiers such as optional/required/undefined/readonly|null can be accessed and interrogated separately from the type and modif...
Suggestion,Awaiting More Feedback
low
Minor
399,677,645
rust
Confusing error message: the trait bound `String: From<impl Into<String>>` is not satisfied
[Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=cdcd8450f4c81cab2c3c297bcf51e7ef) ```rust struct Foo(String); trait Bar { fn buz(&self, s: impl AsRef<str>) -> Foo; } impl Bar for () { fn buz(&self, s: impl Into<String>) -> Foo { Foo(s.into()) } } ...
C-enhancement,A-diagnostics,T-compiler,D-confusing
low
Critical
399,687,348
godot
InputEventMouse.global_position doesn't return global position
Godot version: v3.1.beta1.official OS: Ubuntu 18.10 This can easily be seen by having a camera around & moving it and on a node place: ```gdscript func _unhandled_input(event: InputEvent) -> void: if event is InputEventMouse: print(get_global_mouse_position(), event.position, event.global_position) ``` ...
bug,confirmed,topic:input
low
Major
399,774,003
vue
Allow nested transition to trigger upon removal
### Version 2.5.22 ### Reproduction link [https://jsfiddle.net/wx91uLft/](https://jsfiddle.net/wx91uLft/) other: https://jsfiddle.net/ae82rfnv/ ### Steps to reproduce - Show/hide elements with the "Toggle" button. - Show/hide elements with the "Toggle Ticked" button. Shows a workaround. ### Wh...
feature request,transition
low
Major