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 |
|---|---|---|---|---|---|---|
395,471,440 | flutter | iOS Google Maps: Strange appear animation | ## Issue
An issue with Flutter Google maps plugin on iOS both in debug and release builds which occurs when you open an app from a terminated state. No issue on Android
There's a weird appear animation playing when I have Google Map in my widget. A video showcasing the issue https://www.youtube.com/watch?v=94ee6c... | platform-ios,a: quality,customer: crowd,p: maps,package,has reproducible steps,P2,found in release: 2.0,team-ios,triaged-ios | low | Critical |
395,474,101 | godot | Image.resize() biases first row+column in all interpolation modes | **Godot version:**
3.0.6
**Issue description:**
See video.
https://cdn.discordapp.com/attachments/477544613511692358/530275849467985920/2019-01-03_00-46-04.mp4
When trying to help someone with a problem they were having with creating an "average" of a few pixels from a viewport texture (by resizing the raw i... | bug,topic:rendering,confirmed | low | Critical |
395,474,747 | opencv | python cv2.projectPoints Assertion failed | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest de... | category: python bindings | low | Critical |
395,493,005 | rust | Rust stable, fatal runtime error: stack overflow, PartialEq | # Error
```
cargo run
Compiling stack_overflow v0.1.0 (/d/stack_overflow)
Finished dev [unoptimized + debuginfo] target(s) in 7.08s
Running `target/debug/stack_overfl... | A-lints,T-compiler,C-feature-request | low | Critical |
395,503,228 | go | plugin: can't open the same plugin with different names, like dlopen | <!-- 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 linux/386
</pre>
### Does this issue reproduce with the latest release?
### What operating system and processor architecture are you... | NeedsInvestigation,compiler/runtime | medium | Critical |
395,540,812 | go | cmd/go: when testing a package, also build the non-test variant | go version devel +0175064e69 Thu Jan 3 05:07:58 2019 +0000 linux/amd64
If a package can be built only in test mode, `go test` succeeds while `go build/install` fails:
```
// broken.go
package broken
var X typ
```
```
// broken_test.go
package broken
import "testing"
type typ int
func TestX(t *testing.... | NeedsInvestigation,FeatureRequest,GoCommand | low | Critical |
395,552,584 | angular | Angular animation - nested animation inside *ngIf performance problem | # ๐ bug report
### Affected Package
@angular/animations
### Description
Suppose we have this simple animation:
```
trigger('fadeOut', [
transition(':leave', [
animate(
'0.2s',
style({
height: 0,
opacity: 0
})
)
])
... | type: bug/fix,area: animations,freq1: low,P3 | low | Critical |
395,573,364 | TypeScript | Allow paths to be masked and captured by regex | <!-- ๐จ 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.
-->
## Suggestion
Sometimes if we use a monorepo we will construct our monopackages li... | Suggestion,Awaiting More Feedback | medium | Critical |
395,577,264 | godot | Area2D reports TileMap in the signals, when collide with the tiles | **Godot version:**
Godot 3.1-a4
**OS/device including version:**
Linux Mint 19.1
CPU: Intel Pentium G3250 (2) @ 3.200GHz
GPU: NVIDIA GeForce GTX 750
**Issue description:**
Area2D, when overlapping with the TileMap, sent a signals (body_centered, body_exited, body_shape_entered, body_shape_exited). But as ... | bug,confirmed,topic:physics | low | Major |
395,629,044 | go | x/tools/go/packages: misleading error messages | go list is sensitive to GOPATH, but the error message do not tell the user what to do.
In particular
go list -deps=true -- ~/gostuff/foo
fails with "cannot import absolute path" if GOPATH doesn't include ~/gostuff, but works if it does.
| NeedsInvestigation,Tools | low | Critical |
395,640,344 | go | syscall: sort environment passed to CreateProcess / CreateProcessAsUser | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
go version go1.11.2 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using ... | NeedsInvestigation,early-in-cycle | low | Critical |
395,667,590 | rust | Can you make "somestr".trim_matches(char::is_ascii_punctuation) compile too ? it compiles with char::is_numeric | this works:
```rust
assert_eq!("123foo1bar123".trim_matches(char::is_numeric), "foo1bar"); //ok
```
but this doesn't:
```rust
assert_eq!(
".,\"foo1bar\".,';".trim_matches(char::is_ascii_punctuation),
"foo1bar"
); //XXX fail
// expected signature of `fn(char) -> _`
// found signatu... | C-enhancement,T-libs-api | low | Critical |
395,691,624 | go | x/text/encoding: Go's reuse of character sets causes incorrect decoding of invalid input | <!-- 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 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are ... | NeedsInvestigation | low | Minor |
395,743,028 | go | cmd/compile: simplify converting a Go function to buildable Go assembly | I'm slowly learning x86 assembly and how Go uses it, so it's very useful to see how existing functions in Go are translated to it.
The next logical step is to be able to make small changes to that assembly, to see if my understanding of it is correct, and to play with trying to make the code better manually. However... | NeedsDecision,FeatureRequest,compiler/runtime | medium | Critical |
395,759,070 | pytorch | Nn.dataparallel with multiple output, weird gradient result None | ## ๐ Bug
Under PyTorch 1.0, nn.DataParallel() wrapper for models with multiple outputs does not calculate gradients properly.
## To Reproduce
On servers with >=2 GPUs, under PyTorch 1.0.0
Steps to reproduce the behavior:
1. Use the code in below:
```
import torch.nn as nn
import torch
import torch.nn.... | oncall: distributed,triaged | low | Critical |
395,782,593 | godot | External text editor does not open unless Godot quits | <!-- 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.2 branch at commit 68013d23932688e57b489600f4517dd280edc464
**OS/device including version:**
<!-- Sp... | bug,topic:core,confirmed | low | Critical |
395,782,893 | vscode | Scroll bar visibility should be configurable | ### VSCode Version

### Steps to Reproduce
1. Open Visual Studio code and open a large text file
### Current Behaviour
In Visual Studio Code, editors' scroll bars auto hide, thereby thwa... | feature-request,workbench-os-integration | medium | Critical |
395,866,585 | vscode | Intellisense's 'Suggest selection' should keep working when you have typed something | VSCode has a feature that remembers recent completions the user has selected and then automatically choosen those completions for them the next time.
The problem is that it behaves quite oddly, and here is an example that illustrates why:
- Create a new Typescript file.
- Type `console.` vscode will suggest all o... | feature-request,suggest,under-discussion | low | Critical |
395,933,053 | go | x/tools/go/packages: unhelpful when it returns nil, nil | at tip, packages.Load can return an empty list without any errors. While this might be the correct result sometimes (as when a pattern doesn't match) it gives the user nothing to work with. It might be more helpful to report some sort of error from the underlying build tool.
| NeedsInvestigation,Tools | low | Critical |
395,949,709 | angular | Dot segments from path not removed | # ๐ bug report
### Affected Package
@angular/router
### Is this a regression?
No
### Description
By RFC3986 (https://tools.ietf.org/html/rfc3986#page-33) dot segments should be removed from path.
When accessing `localhost:4200/segment/./segment` by browser navigator, browser strips the dot segments and ... | type: bug/fix,freq1: low,area: router,state: confirmed,router: URL parsing/generation,P5 | low | Critical |
395,965,550 | go | x/tools/go/packages/packagestest: cleanup fails silently and leaves test junk | The `Exported.Cleanup` function from `x/tools/go/packages/packagestest` can fail silently and leave temporary files around - currently running `go test` in `x/tools/import` results in around 75MB of test junk being left behind (at least under OpenBSD and I would suspect most other BSD/Unix like platforms), the majority... | NeedsInvestigation,Tools | low | Minor |
395,973,607 | go | cmd/go: clean GOCACHE based on disk usage | The GOCACHE appears to lack a disk size limit - this is a problem in a space constrained environment and/or when running go on a disk that is nearing capacity. For example, on the openbsd/arm builder (which runs on a USB stick), the `~/.cache/go-build` directory runs past several GB in a very short time, which then lea... | NeedsDecision,FeatureRequest,GoCommand | medium | Critical |
395,999,244 | TypeScript | "Pick" or "Exclude" constructor from class type | <!-- ๐จ 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
`intersect`, `type`, `intersect constructor`, `pick new`, `pick co... | Suggestion,Needs Proposal | low | Critical |
396,007,087 | pytorch | Beta Distribution values wrong for a=b---> 0 | ## ๐ Bug
#### When concentration parameters a, b are equal and go to 0, sample values are wrong.
## To Reproduce
Steps to reproduce the behavior:
copy paste the following in a notebook:
```
import torch
from scipy.stats import beta as beta_sp
from torch.distributions import Beta as beta_t
from matpl... | module: distributions,triaged | medium | Critical |
396,017,184 | flutter | Bad error message when Android toolchain isn't installed | If the Android toolchain isn't installed (I had the wrong path set in `ANDROID_HOME`),
`flutter run` and `flutter devices` report
```
No devices detected
```
instead of
```
Can't find adb / Android tools.
``` | platform-android,tool,P2,team-android,triaged-android | low | Critical |
396,039,706 | create-react-app | HTTPS in Development | A workaround has been commented below, see: https://github.com/facebook/create-react-app/issues/6126#issuecomment-570763433
---
Right now there's just the general acceptance that the SSL Certificate will cause some friction.
> Note that the server will use a self-signed certificate, so your web browser will al... | issue: proposal | medium | Critical |
396,046,933 | go | x/build/cmd/gerritbot: auto-reviewers are not applied for some GitHub CLs | When a PR is created by an author that has a Gerrit account, they are added as a reviewer to their own CL. Since the CL has a reviewer, gerritbot then does not apply autoreviewers.
For example: https://go-review.googlesource.com/c/go/+/156297
Maybe the answer is to add them as CC, not as reviewers. I'm not sure w... | help wanted,Builders,NeedsFix | low | Minor |
396,047,514 | vscode | [css][html] SVG language support | Currently, we have no SVG support:
- In HTML, SVG tags don't receive auto completion
- In CSS, SVG attributes don't receive auto completion
- Syntax highlighting are problematic for both SVG tags/attributes in HTML/CSS
- Emmet do not get SVG completions
However, with custom tag/property support in HTML/CSS, we... | feature-request,css-less-scss,html | medium | Critical |
396,078,368 | go | cmd/compile: many new no-ops as a result of mid-stack inlining | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
latest
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
ppc64le and ppc64
### What did... | NeedsFix | low | Major |
396,089,045 | go | cmd/compile: reuse boxed primitive in slice literals of interfaces | Using `go1.12`
Consider the following snippet:
```go
func main() {
lit := []interface{}{
0, 0, 0, 0, 0,
}
type ifaceHeader struct{ Type, Data unsafe.Pointer }
for i := range lit {
fmt.Printf("%+v\n", *(*ifaceHeader)(unsafe.Pointer(&lit[i])))
}
}
```
This currently prints:
```
{Type:0x4962e0 ... | Performance,NeedsInvestigation | low | Major |
396,093,262 | kubernetes | ReplicaSet controller continuously creating pods failing due to SysctlForbidden | **What happened**:
Creating a deployment with a pod spec with an unsafe sysctl not whitelisted results in the pods being rejected by Kubelet with `SysctlForbidden` and the replicatset controller just keeps creating new pods in a tight loop.
**What you expected to happen**:
The replicaset controller should mayb... | kind/bug,priority/important-soon,area/kubelet,sig/scheduling,area/reliability,kind/feature,sig/apps,lifecycle/frozen | high | Critical |
396,115,875 | flutter | Publish iOS fidelity comparison | Once https://github.com/flutter/flutter/projects/9#column-3989168 is done, publish the results (and as a forcing function, make sure it's good enough to be published :D) | platform-ios,framework,a: fidelity,f: cupertino,P3,team-design,triaged-design | low | Minor |
396,144,862 | flutter | On windows, using a ramdisk leads to "Cannot resolve symbolic links" | <!-- 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.io/
* https://docs.flutter.io/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have... | c: crash,tool,dependency: dart,platform-windows,P2,team-tool,triaged-tool | low | Critical |
396,158,981 | flutter | Flutter google maps drag marker | Hey flutter team,
Any way to drag a marker around the map and get the location from it ? | c: new feature,waiting for PR to land (fixed),p: maps,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
396,166,893 | flutter | AnimatedSwitcher should be more customizable | Currently `AnimatedSwitcher` only allows you to play the same animation for both exit and enter, which can only be played simultaneously. If you look at the Material website, the overwhelming majority of transitions fade to white/transparent first, and then fade in the next element.
Working around both these constra... | c: new feature,framework,a: animation,P2,team-framework,triaged-framework | low | Major |
396,170,657 | go | net/http: isCookieNameValid in net/http/cookie.go seems overly restrictive | Note: I attempted to post this to the golang nuts list, but my message was rejected twice for unspecified reasons.
### What version of Go are you using (`go version`)?
<pre>
go version go1.10.1 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Code in current https://github.com/go... | NeedsDecision | medium | Critical |
396,179,564 | ant-design | Unresponsive Slider when setting trigger to onAfterChange | - [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### Reproduction link
[](https://z2ppnop8x.codesandbox.io/)
### Steps to reproduce
settin... | Inactive | low | Major |
396,184,027 | rust | MergeFunctions LLVM pass can generate invalid function calls under calling convention | Basically, the MergeFunctions LLVM pass can rewrite functions to generate calls that are not valid under the calling convention of the target, e.g. `extern "ptx-kernel"` functions should not call other `extern "ptx-kernel"` functions in NVPTX.
This is an LLVM bug, described here (thanks @nikic): https://bugs.llvm.or... | A-LLVM,P-medium,T-compiler,C-bug | low | Critical |
396,191,003 | TypeScript | Add ReadonlyDate | We have `ReadonlyArray`, `ReadonlyMap`, `ReadonlySet`, so we need `ReadonlyDate` :) | Suggestion,Domain: lib.d.ts,Awaiting More Feedback | low | Major |
396,227,773 | flutter | Support home and lock screen widgets | Both Android and iOS have widgets that can be used outside of apps. On Android they are home screen widgets, and on iOS there are lock screen/notification center widgets. Would it be possible to create them using Flutter widgets? | c: new feature,platform-android,platform-ios,framework,engine,customer: crowd,P3,team-engine,triaged-engine | high | Critical |
396,236,878 | flutter | Baseline proper in icon widget to better align some icons for aesthetics | Some icons look better together when one is slightly offset vertically.
<img src="https://user-images.githubusercontent.com/20849728/50733546-9e253e00-11e3-11e9-8319-4f885d599106.png" width=400 />
The thumb icons in my music application are a great example of this. Right now, there's no easy way to align the icon... | c: new feature,framework,f: material design,P2,team-design,triaged-design | low | Major |
396,240,665 | pytorch | Implicit conversion error in caffe2 | Hello,
While compiling generated sources(caffe2.pb.cc) from caffe2.proto we are getting the implicit conversion error
protobuf version=v3.5.2
compiler:
CC=aarch64-linux-android-clang \
CXX=aarch64-linux-android-clang++
```
/home/armnn1/armnn-devenv/armnn/src/armnnCaff2Parser/proto/caffe2.pb.cc:2269:9: e... | caffe2 | low | Critical |
396,249,376 | go | cmd/vet: govet sometimes wrong about whether a context gets cancelled | ### What version of Go are you using (`go version`)?
Not sure, it's a toolchain. Most likely 1.11.
### Does this issue reproduce with the latest release?
Yes, as of 1.12beta.
### What operating system and processor architecture are you using (`go env`)?
No idea, govet runs remotely on a language server.
... | help wanted,NeedsInvestigation,Analysis | low | Major |
396,252,617 | rust | [NLL] Bad higher ranked subtype error | With the removal of the leak check the MIR type checker is now responsible for reporting higher-ranked lifetime errors in full NLL mode. The error messages are not currently very helpful, since they weren't user visible until now.
The following code ([play](https://play.rust-lang.org/?version=nightly&mode=debug&edit... | A-diagnostics,P-medium,T-compiler,A-NLL,NLL-diagnostics,A-higher-ranked | medium | Critical |
396,257,621 | godot | Changing a value by dragging floods the output window with "Set <property_name>" messages | **Godot version:**
3.1 Alpha 5
**OS/device including version:**
Kubuntu 18.10
**Issue description:**
Changing a number value in the property editor by dragging (using the mouse) leaves a "Set <property_name>" message on every frame
It would be nice to have a way to turn it off or only leave a message _afte... | enhancement,topic:editor,confirmed | low | Critical |
396,265,017 | rust | DerefMut borrow method call is too long with Deref arguments | Currently with Rust 2018, this code does not compile.
```rust
fn main() {
let mut v = vec![1, 2, 3];
v.swap(0, v.len() - 1);
assert_eq!(v, &[3, 2, 1]);
}
```
```
error[E0502]: cannot borrow `v` as immutable because it is also borrowed as mutable
|
3 | v.swap(0, v.len() - 1);
| - ... | P-medium,T-compiler,A-NLL,NLL-complete | low | Critical |
396,267,448 | rust | Inappropriate `warning: unreachable expression` in `println!` | `return` expression in call params of `println!` macro causes inappropriate warning message.
I tried this code (ref: [Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=1c8219aa795635c0717ba3e5a2a10ad3)):
```rust
fn func1() {
assert_eq!((), return ());
}
fn func2() {
... | C-enhancement,A-lints,A-diagnostics,A-macros,T-compiler | low | Critical |
396,285,940 | neovim | Turn neovim into $PAGER | Hello,
I'm author of [page](https://github.com/I60R/page) - a neovim's client similar to neovim-remote but rather focused on redirecting text from one :term buffer and reading it in another. It was created with intention to merge `less` functionality into `neovim` and provide more integrated paging for better termin... | enhancement,terminal,input,pager | low | Major |
396,291,334 | flutter | Hero should allow specifying a curve and reverseCurve | Currently in `heroes.dart`:
```dart
Animation<double> get animation {
return CurvedAnimation(
parent: (type == HeroFlightDirection.push) ? toRoute.animation : fromRoute.animation,
curve: Curves.fastOutSlowIn,
);
}
```
`Curves.fastOutSlowIn` looks decent for an entry curve, however w... | c: new feature,framework,f: material design,P2,team-design,triaged-design | low | Major |
396,298,106 | flutter | Tizen platform support | Hi, any plans for [tizen](https://www.tizen.org) support? | c: new feature,engine,customer: crowd,P3,team-engine,triaged-engine | high | Critical |
396,306,881 | rust | Tracking issue for duration_constants | Implemented in https://github.com/rust-lang/rust/pull/57375/
> This will make working with durations more ergonomic. Compare:
>
> ```rust
> // Convenient, but deprecated function.
> thread::sleep_ms(2000);
>
> // The current canonical way to sleep for two seconds.
> thread::sleep(Duration::from_secs(2));
> ... | T-libs-api,B-unstable,C-tracking-issue,Libs-Tracked,A-time | high | Critical |
396,310,226 | TypeScript | Readonly properties type narrowing doesn't flow into inner function scopes | <!-- ๐จ 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,Experience Enhancement,Domain: Control Flow | low | Critical |
396,313,039 | rust | Suggest code to use enum type in return type when accidentally using variant instance | When encountering an enum variant instance in a return type, make a better effort to suggest appropriate code.
Right now, if you accidentally write `Some(Span)` when you meant `Option<Span>`, we mention the existence of the enum, but we don't suggest code:
```
error[E0573]: expected type, found variant `Some`
... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-invalid-suggestion | low | Critical |
396,340,261 | react | Nested portals should be discoverable | This is more about a bridge between actual DOM Tree and React Tree.
**Do you want to request a *feature* or report a *bug*?**
feature
**What is the current behavior?**
You can _portal_ a part of your rendering tree to another place in Dom Tree, and React would handle events, including events on Capture Phase li... | Type: Feature Request | medium | Critical |
396,354,045 | vscode | Emmet toggle comment not working correctly for jsx | - VSCode Version: 1.30.1
- OS Version: win10 v1803
This issue occurs for both js & jsx extension files
Steps to Reproduce:

<!-- Launch with `code --disable-extensions` to check. -->
Does this is... | bug,emmet,emmet-parse | low | Critical |
396,383,376 | rust | Lifetime elision applies differently in traits and impls with explicit self type | A specific function signature works in trait decl, but not in the impl:
```rust
trait Silly {
// OK
fn id(self: &Self) -> &Self;
}
impl<T> Silly for T {
// error[E0106]: missing lifetime specifier
fn id(self: &T) -> &T { self}
// ^ help: consider giving it a 'static lif... | A-lifetimes,T-compiler,A-inference,C-bug | low | Critical |
396,389,107 | vscode | autoclosing markdown preview when closing md file | Issue Type: <b>Feature Request</b>
When editing markdown file, it is quite convenient to have the preview in a aplit view. However, when I switch to another opened file (or closing the md file), the preview of markdown and the split is still there. This is annoying because I can only use half of the window for the n... | feature-request,markdown | medium | Major |
396,441,613 | nvm | Using latest node subversion of any version | Possible feature request if not already implemented.
If I want to use the latest node 6 version (6.16.0 at the moment), is it possible to install it using nvm install 6.x ? I couldn't find it in the documentation and tried doing:
```
nvm install 6.16.0
nvm use 6.x
```
which throws a
```
N/A: version "6.x -> ... | installing node | low | Minor |
396,453,088 | kubernetes | Support arbitrary subresources for custom resources | Currently, custom resources support only `status` and `scale` subresources. The only way to use custom subresources with CRs is to use an aggregated apiserver.
Given that using CRDs is comparatively easier than setting up an aggregated apiserver, there have been requests [[1](https://github.com/kubernetes/enhancemen... | priority/backlog,sig/api-machinery,kind/feature,area/custom-resources,lifecycle/frozen | high | Critical |
396,466,237 | TypeScript | Improve Type guards to correctly work with for-of loops | <!-- ๐จ 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
for-of, Type Guard
<!-- List of keywords you searched for before ... | Bug,Domain: Control Flow | low | Critical |
396,495,621 | vscode | [html] code complete for href anchors | <!-- 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: Version: 1.30.1 (user setup... | feature-request,html | low | Minor |
396,511,297 | flutter | Consider make flutter/engine truly platform-agnostic/portable | Hello folks!
Flutter Engine claims to be truly platform agnostic, self-contained and portable. In reality we are not there yet. There are a bunch of code in the engine repo which is platform-specific like the ones here: https://github.com/flutter/engine/tree/master/fml/platform
We are porting flutter to a very r... | c: new feature,engine,dependency: dart,e: embedder,P3,team-engine,triaged-engine | medium | Major |
396,518,204 | flutter | Deep-linking support for Navigator | Is there a particular way to make Flutter's Navigator have a specific navigation history if you for example want to send in a new navigation history based on an Android notification?
For example, start the `FlutterView` at `[Main, List, Detail[someId]]`? | c: new feature,framework,d: api docs,f: routes,customer: crowd,P2,team-framework,triaged-framework | low | Critical |
396,577,090 | rust | Suggestion for pub(crate) and reexports are tricked | First [reported upstream](https://github.com/rust-lang/cargo/issues/6465#issuecomment-448836441), this code:
```rust
#![warn(unreachable_pub)]
#![deny(unused_imports)]
pub mod core {
pub mod compiler {
mod context {
mod compilation_files {
pub struct Metadata;
... | T-compiler,C-bug,A-suggestion-diagnostics,D-invalid-suggestion,L-unreachable_pub | low | Critical |
396,597,085 | flutter | image_picker plugin should allow generation of thumbnail images | Since the image_picker returns the full resolution images and flutter doesn't automagicly shrink images based on the rendered size, it is easy to trigger OOM/memory pressure when using the returned images. (See https://github.com/flutter/flutter/issues/21571). Regardless of the decisions we make regarding OOM handling ... | c: new feature,p: image_picker,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | medium | Major |
396,598,075 | vscode | Find usages (find all file references / find all folder references) | If you search the issues here on GitHub and on StackOverflow, you'll find that there is a ton of fragmentation around this feature for a few reasons:
- Everyone is referring to different subsets of the feature
- Everyone is calling it by different names (users coming from WebStorm will refer to it as "Find Usages")... | feature-request,editor-symbols | medium | Critical |
396,607,348 | TypeScript | Unexpected implicit any for return value of Array<T>.indexOf |
<!-- ๐จ 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 ste... | Bug,Domain: Control Flow | low | Critical |
396,617,344 | rust | perform macro-expansion on doctests before checking for `fn main` | As discussed in https://github.com/rust-lang/rust/pull/57019, i'd like to refactor the doctest parsing/execution code in rustdoc so that it checks for `fn main` and `extern crate` *during* compilation, not before. This allows us to take advantage of macro expansion and a proper parsing step to find multi-line attribute... | T-rustdoc,C-feature-request,A-doctests | low | Minor |
396,625,583 | TypeScript | Javascript, Nodejs: Go to definition for required file does not work if required file does not contain exports. | a.js
```js
require('./b.js'); // Go to definion does not work here. But 'Find all references' does work.
require('./c.js'); // Go to definion works here.
```
b.js
```js
// no exports or module.exports assigns here, just some side effects.
```
c.js
```
exports.a = 42;
```
VSCode 1.30.1.
Linux 4.18 x6... | Bug,Domain: TSServer,Domain: Symbol Navigation | low | Minor |
396,627,231 | TypeScript | Show unused public properties and methods | It would be nice to have unused detection expanded, capable of detecting unused methods, exports, etc.
**Code Example**
_Shape.js_
```javascript
class Shape {
constructor() {
this.color = 'red';
}
colorLog() {
console.log(this.color);
}
}
export default Shape;
```
_... | Suggestion,In Discussion | high | Critical |
396,628,799 | TypeScript | Rename file when renaming default export | Currently we can use the `rename symbol` command and that will rename the symbol and its usages (exports, imports, usages in other files, etc.). That's a great start, but I'd love to see this feature expanded to do the following:
- Many times a file name will coincide with the symbol being refactored. The refactor o... | Suggestion,Needs Proposal,Domain: Refactorings | low | Minor |
396,629,303 | go | x/build/cmd/gopherbot: when closing backport issues, ignores "Fixes" vs "For"/"Updates" verb before issue mention | Gopherbot closes backport issues once it detects that an associated commit has been merged. This works well if the backport only requires one commit, but causes issues when there are multiple. Gopherbot should only close the issue if the "Fixes #" label exists in the commit message.
See #29565 for an example of Goph... | Builders,NeedsFix | low | Minor |
396,665,884 | TypeScript | Option to disable decorator transform | ## Search Terms
decorator output
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
## Suggestion
Decorators are always transformed. In some cases we critically need to preserve decorators in the output to feed into... | Suggestion,Awaiting More Feedback | low | Major |
396,672,755 | rust | `&mut &T` coerced to `&T` suggests `&mut mut x` | This code ([play](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=6c08c4287f618e5377a8443c41982863)):
```rust
struct X;
impl X {
fn mutate(&mut self) {}
}
fn main() {
let term = Some(X);
let term = match &term {
Some(term) => &mut term,
None => term.as_... | T-compiler,A-NLL,A-suggestion-diagnostics,D-confusing | medium | Critical |
396,693,536 | neovim | sockconnect: add support for connecting to FIFO | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: 0.3.2
- Vim (version: ) behaves differently? N/A
- Operating system/version: macOS 10.13.6
- Terminal name/version: Kitty 0.13.2
- `$TERM`: screen-256color
### Steps to reproduce using `nvim -u NORC`
1) `mkfifo /tmp/my... | enhancement,channels-rpc | low | Critical |
396,700,674 | pytorch | Possible regression in incremental build | ## ๐ Bug
Running `python setup.py rebuild develop` constantly re-installs PyTorch. This regresses the time of our no-op build. I just noticed this today. It might be a regression.
## To Reproduce
Directly run ninja install in the build directory. Observe it always thinks something is dirty:
```
(base) [zdev... | module: build,triaged | low | Critical |
396,762,989 | scrcpy | Any ability to send, e.g., ctrl+c as key entry? | First, this is awesome; thanks for your contribution. I use Termux (terminal emulator and linux app). Is there a way to send control key combinations as keystrokes? E.g., so I can ctrl+C to kill a program from the command line in Termux?
Thanks again. | feature request | low | Minor |
396,786,559 | react | Add `get` function to `useState` | <!--
Note: if the issue is about documentation or the website, please file it at:
https://github.com/reactjs/reactjs.org/issues/new
-->
**Do you want to request a *feature* or report a *bug*?**
- feature
**What is the current behavior?**
Code from [Introducing Hooks](https://reactjs.org/docs/hooks-intro.... | Type: Discussion | medium | Critical |
396,792,794 | pytorch | No test coverage for kwargs of AvgPool2d and AvgPool3d | `ceil_mode` and `count_include_pad` are not tested at all.
cc @albanD @mruberry | module: bootcamp,module: nn,triaged,module: pooling | low | Minor |
396,797,135 | pytorch | AvgPool2d doesn't test if kernel is smaller than input size | AvgPool3d is OK
```
>>> import torch
>>> m = torch.nn.AvgPool2d(3)
>>> x = torch.zeros(1,2,2)
>>> m(x)
tensor([[[0.]]])
>>> m = torch.nn.AvgPool3d(3)
>>> x = torch.zeros(1,2,2,2)
>>> m(x)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/ezyang/Dev/pytorch-tmp/torch/n... | module: bootcamp,module: error checking,triaged,better-engineering,module: pooling | low | Critical |
396,830,228 | rust | Properly test cross-language LTO | I'd like us to stabilize cross-language LTO as soon as possible but before we can do that we need more robust tests. Some background:
- Cross-language LTO works by emitting LLVM bitcode instead of machine code for RLIBs/staticlibs and then lets the linker do the final ThinLTO pass. Because code coming from other langu... | A-linkage,A-testsuite,T-compiler,E-help-wanted,T-bootstrap,T-infra | low | Major |
396,983,697 | pytorch | computing entropy of a tensor | I think it is very useful if we can have feature enhancement that we can compute the entropy of a tensor, the similar way that we can do it for mean, std, etc
in more details:
It would be super useful to have a function that compute the entropy of a tensor. well, saying that, it is good if that function can compu... | high priority,triaged,function request | medium | Major |
397,026,721 | go | gccgo: incorrect call stack from runtime.CallersFrames | Stack traces are not quite right for gccgo with optimizations on (mid-stack inlining, particularly).
```
package main
import (
"fmt"
"runtime"
)
func main() {
f()
}
func f() {
g()
}
//go:noinline
func g() {
for i := 0; i < 4; i++ {
var pcs [1]uintptr
runtime.Callers(i+1, pcs[:])
f, ... | NeedsInvestigation | low | Minor |
397,119,201 | vscode | Allow more powerful onEnterRules for cursor alignment | In the Python extension, we'd like to add support for variable-length indents on enter to better support PEP8 formatting (Microsoft/vscode-python#481 and others). For example:
```python
def func(a,
|
```
Hitting enter on the first line should stick the cursor where `|` is, not just a single indent. In... | feature-request,editor-input,editor-autoindent | medium | Critical |
397,148,426 | godot | Issues with new Polygon2D UV Editor features | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
e46f28e
**Issue description:**
@reduz
- The new internal vertex feature seems unintuitive, at least to me.
- When a internal vertex is present, ... | bug,enhancement,topic:editor,confirmed | medium | Critical |
397,151,463 | pytorch | DataLoader with option to re-use worker processes | ## ๐ Feature
Currently after an epoch is ended dataloader spawns a new process to read data. This means if processes have cached some internal state (db connection, indexing, ...) they will be lost and the new process will have the overhead of creating the connection or indexing.
## Motivation
I have a custom d... | high priority,feature,module: dataloader,triaged | high | Critical |
397,176,880 | angular | Animation: Automatic property calculation ('!') not working when using AnimationPlayer/AnimationBuilder | <!--๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
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,area: animations,freq3: high,P3 | low | Critical |
397,203,229 | go | runtime: unexpected signal on Termux android/arm64 | <!-- 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 android/arm64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ... | NeedsInvestigation,compiler/runtime | medium | Critical |
397,238,376 | pytorch | Deformable Convolution | ## ๐ Feature
Exactly as introduced in Microsoft paper : https://arxiv.org/pdf/1703.06211.pdf
## Motivation
This operator has great advantages and abilities, and his popularity is increasing.
I don't think that any further explanation is needed.
BTW, other frameworks already have this operator, and I'm not t... | feature,triaged,module: vision | low | Major |
397,276,521 | pytorch | RuntimeError: [enforce fail at pybind_state.cc:1111] success. Error running net train | Learn caffe2 to train MNIST-dataset. This network error occurs. Why?
[E prefetch_op.h:110] Prefetching error Unknown data type.
[E prefetch_op.h:83] Prefetching failed.
[E net_simple.cc:68] Operator failed: input: "dbreader_/home/tcl/caffe2_notebooks/tutorial_data/mnist/mnist-train-nchw-lmdb" output: "data_uint8" ... | caffe2 | low | Critical |
397,360,423 | flutter | Please add automatic HashSet to Set type conversion to platform-channels. | Right now I have to convert from a `HashSet<T>` to an `ArrayList<T>` in Java and from a `List` back to a `Set` in dart.
Is it reasonable to add `Set` support to platform channels?
I am not an Objective-C programmer, but there is also `NSSet`, which seems to do the same thing.
Here are the references:
https://... | c: new feature,framework,engine,P2,a: plugins,team-engine,triaged-engine | low | Minor |
397,396,961 | godot | iOS export configuration needs better validation | **Godot version:**
3.1 beta
**OS/device including version:**
macOS Mojave, Xcode
**Issue description:**
I've got a project that I'd like to export to iOS. The project can be found here: https://github.com/Krumelur/GodotTesting/tree/godot31_issue_24866
The export itself succeeds and I end up with an Xcode pro... | enhancement,platform:ios,topic:editor,usability | low | Critical |
397,425,552 | TypeScript | --noImplicitAny codefixes infer methods returning void instead of any | **TypeScript Version:** 3.3.0-dev.20190108
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** noimplicitany infer code fix codefix quick suggested return void any
**Code**
```ts
function curryThrough(callback) {
return callback("turtle");
}
... | Suggestion,In Discussion | low | Minor |
397,429,475 | TypeScript | --noImplicitAny codefix inferring string for complex object | **TypeScript Version:** 3.3.0-dev.20190108
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** noimplicitany infer code fix codefix string object data
**Code**
```ts
function cleanup(data) {
if (Array.isArray(data)) {
return data.map(clea... | Suggestion,Domain: Quick Fixes,Experience Enhancement | low | Minor |
397,444,961 | go | x/build/env: run more tests in js-wasm trybot mode | See #29632 wherein the build breaks due to js-wasm skipping too many tests on trybots.
We could just shard out the js-wasm trybot builder wider and enable more tests.
| Builders,NeedsInvestigation | low | Minor |
397,482,277 | TypeScript | Constructor property inheritance is not giving an error in ES2015+ target | **TypeScript Version:** 3.2.2
**Search Terms:** property inheritance constructor super
**Code**
```ts
abstract class A {
public names = ['A'];
}
class B extends A {
public names = [...super.names, 'B'];
}
const b = new B();
alert(b.names);
```
**Expected behavior:**
ES2015+ target: either... | Bug | low | Critical |
397,570,013 | TypeScript | Path intellisense for other files besides js/ts | I would like to allow VScode intellisence can detect and show more file types when write import syntax.
for now when working with custom file type ex .vue file, editor only show js / ts file, .vue file is hidden.
my suggest is we have new setting:
`intellisence.suggest_file_types` and allow input custom file type ... | Suggestion,In Discussion | low | Major |
397,617,402 | flutter | IAP: Purchase a non-renewing subscription | c: new feature,p: in_app_purchase,package,team-ecosystem,P3,triaged-ecosystem | medium | Major | |
397,637,587 | flutter | TextField shouldn't merge its semantics node into parent | ```dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Fo... | a: text input,framework,f: material design,a: accessibility,customer: google,has reproducible steps,P2,workaround available,found in release: 3.7,team-design,triaged-design | low | Major |
397,700,600 | flutter | Camera document how to use ImageStream | First of all thank you so mush for adding access to the image stream in 0.2.8, I'm sure may people will be very happy about this.
I know the latest commit is fresh off the press, bit I would love to see a little more documentation on how to use the camera image stream (other than: "use: `cameraController.startImageStr... | d: api docs,customer: crowd,p: camera,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.