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 |
|---|---|---|---|---|---|---|
378,987,304 | TypeScript | Issue better error message for binary operations between numbers and bigints | ```ts
declare let x: bigint;
declare let y: number;
x + y;
y + x;
x - y;
y - x;
x * y;
y * x;
x / y;
y / x;
x += y;
y += x;
```
Each of these gives an error like "Operator '{0}' cannot be applied to types '{1}' and '{2}'". It should *somehow* tell the user that the `number` argument needs to be conv... | Suggestion,Domain: Error Messages,Experience Enhancement | low | Critical |
379,015,932 | flutter | Provide a pagination widget | Currently the possible ways to achieve pagination are using ScrollView or ListView.Builder. But need to consider about loading indicator and retry mechanism. Although it's completely possible to create such widget by ourself but it's great if Flutter team able to build this widget. | c: new feature,framework,f: scrolling,would be a good package,P3,team-framework,triaged-framework | low | Major |
379,020,876 | rust | Unexpected doc errors when using --nocapture and compile_fail | **Problem**
`cargo test -- --nocapture` outputs error logs for documentation tests even when specifying the `compile_fail` argument.
**Steps**
1. Create a new project with `cargo new <project name>`
2. Add a `lib.rs` file to `src`
3. Add the following method with documentation and code example which is suppos... | T-rustdoc,C-bug,A-doctests | low | Critical |
379,028,337 | react | Input type email bug | https://codepen.io/anon/pen/GwZeNO
Open this codepen and paste this "example@gmail.com 1"
Then press backspace, notice that the focus changes to the beginning of the input.
| Component: DOM,Type: Needs Investigation | low | Critical |
379,038,158 | TypeScript | Suggestion: Uniform Type Predicate, or Concrete Types | ## Suggestion: Uniform Type Predicate, or Concrete Types
### Summary
Narrowing tells us information about a value but not so much about the type of the value, this is because a type may over approximate a value. The over approximation poses a problem when using multiples values of the same type: narrowing inform... | Suggestion,In Discussion | low | Critical |
379,051,587 | react | react-test-renderer doesn't support Suspense and lazy nodes | Hello. How can I test components with Suspense/Lazy?
now renderer.create(...)toTree() throws
"toTree() does not yet know how to handle nodes with tag=13"
react 16.6.1
react-test-renderer 16.6.1 | Type: Bug | medium | Major |
379,128,307 | kubernetes | ValidatingWebhookConfiguration causes deployments to maintain two underlying RS at the same time | <!-- 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**:
I have ValidationWebhookConfiguration that checks the deployments for the availability of `spec.template.spec.toleration... | kind/bug,priority/important-soon,sig/scheduling,sig/apps,lifecycle/frozen | low | Critical |
379,130,383 | TypeScript | TSC fails to emit required files when run below node_modules | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,In Discussion | low | Critical |
379,147,455 | pytorch | Error in building Caffe2 on Windows (experimental operators) | ## π Bug
<!-- A clear and concise description of what the bug is. -->
Error in building Caffe2 under Windows 10 with enabled GPU and Python Bindings.
## To Reproduce
Steps to reproduce the behavior:
1. Followed the manual for building from source under Windows using Visual Studio 2015 v3.
2. Enabled Cuda a... | caffe2 | low | Critical |
379,176,137 | terminal | Three problems displaying End User Defined Characters in Windows Console | The first problem is that the top of the character is truncated.
The second problem is that they occupy two display cells.
The third problem is that they are displayed overlapping.
To reproduce:
Run the MS supplied Private Character Editor "C:\Windows\System32\eudcedit.exe".
Draw two lines using the straight li... | Product-Conhost,Area-Rendering,Area-Output,Issue-Bug | low | Minor |
379,208,966 | flutter | Emojis on keyboard | Hello, I have a problem with the Emojis on Android Keyboard.
The thing is:
In the TextField I must insert a UserName, emojis are not allowed. Besides this while using the Android keyboard the emojis button appear and is available, but in iOS keyboard it does not appear.
Maybe is not a bug, but I think is a good... | a: text input,c: new feature,platform-android,framework,engine,P2,team-android,triaged-android | low | Critical |
379,229,550 | rust | Confusing error message when trying to implement a shared mutable state | Let's say I am a rust beginner coming from another language, and I want to write a simple multi-threaded program in rust.
So I write this simple function :
```rust
fn simple() -> u8 {
let mut x = 0;
std::thread::spawn(|| {
x += 1;
});
x += 1;
x
}
```
One of the selling poi... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
379,261,705 | flutter | UiKitViews breaks group opacity into 2 groups | The opacity is applied separately to the render objects that are before the platform view and to the ones that are after it. | platform-ios,engine,a: platform-views,P2,team-ios,triaged-ios | low | Minor |
379,282,454 | pytorch | torch.linspace does not check for infinity and nan | *UPDATED*:
```
>>> torch.linspace(1.175494351e-38, float('nan'),steps=30)
tensor([nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan,
nan, nan, nan, nan, nan, nan])
>>> torch.linspace(1.175494351e-38, float('inf'),steps=30)
tensor([nan, i... | module: error checking,triaged,module: tensor creation | low | Minor |
379,290,660 | go | cmd/compile: refine calcHasCall's handling of ODIV and OMOD | @cherrymui noted in the review of CL 148837 that on non-soft-float platforms, when working with floats, ODIV and OMOD won't panic. We should handle them a bit more precisely in `calcHasCall`.
| Suggested,NeedsFix,compiler/runtime | low | Minor |
379,310,643 | TypeScript | Expose compiler option allowNonTsExtensions | ## Search Terms
allowNonTsExtensions
## Suggestion
Make `allowNonTsExtensions` from
https://github.com/Microsoft/TypeScript/blob/0010a38660b1eb03c188c9c1758177b4501760b7/src/compiler/types.ts#L4480
public / not-internal
## Use Cases
The Monaco Editor requires usage of this compiler option for in-memory... | Suggestion,In Discussion | low | Minor |
379,316,422 | pytorch | PyTorch streams are not cuda-memcheck clean | ## π Bug
PyTorch streams are not cuda-memcheck clean
## To Reproduce
Steps to reproduce the behavior:
Create the following PyTorch script, which initializes our stream pool:
```
import torch
torch.cuda.Stream()
```
Run it with `cuda-memcheck`. You'll get 64 warnings. Here's a few:
```
========... | module: cuda,triaged | low | Critical |
379,322,006 | TypeScript | Allow minimal type checking of JavaScript files | I'm in the process of introducing TypeScript support into an enormous, 6-year old web application with a *lot* of JavaScript files. In order to get the most advantages out of TypeScript while we slowly migrate over (which will likely happen slowly), I'd like the following to be true:
- TypeScript files (`.ts` and `.... | Suggestion,In Discussion,Domain: JavaScript,Add a Flag | medium | Critical |
379,325,834 | go | runtime: repeated syscalls inhibit periodic preemption | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
go version go1.11 darwin/amd64
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
... | Performance,NeedsInvestigation,compiler/runtime | low | Critical |
379,366,484 | kubernetes | Cloud Controller Manger doesn't query cloud provider for node name, causing the node to be removed | <!-- 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**:
- Launch a node with container linux `CoreOS-stable-1911.3.0` on aws, with customized ignition configs.
- The hostn... | kind/bug,area/cloudprovider,area/provider/openstack,lifecycle/frozen,area/provider/aws,sig/cloud-provider,needs-triage | medium | Critical |
379,376,135 | TypeScript | Feature Request: type for Arguments OF Function | <!-- π¨ 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,In Discussion | low | Critical |
379,425,438 | scrcpy | OpenGL Integration | This is purely speculation on my part, but would it be possible to pass the decoding through OpenGL on the computer side? The reason for this... use [Reshade!](https://github.com/crosire/reshade)
There are some really exceptional [filters](https://github.com/crosire/reshade-shaders/tree/master/Shaders) available in ... | question,opengl | low | Minor |
379,434,479 | flutter | [google_maps_flutter] Support Widgets as markers | It would be very handy to allow markers on the google maps to be flutter widgets. I know that currently there is already a method to load an image from assets but this is a static marker.
Overlaying a widget as a marker allows for dynamic generation of markers (example: rating of location on the map)
| c: new feature,customer: crowd,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | high | Critical |
379,453,716 | pytorch | Feature request: von Mises-Fisher distribution | ## π Feature
<!-- A clear and concise description of the feature proposal -->
There should be a von Mises-Fisher distribution in torch.distributions.
## Motivation
It is very important to have those directional distributions when you want to do research related to directional statistics for machine learning. Fo... | module: distributions,triaged | medium | Major |
379,463,584 | terminal | MiniTerm: ProcessFactory.Start is hard-coded to run "cmd.exe" and ignores intended parameter | See:
https://github.com/Microsoft/console/blob/34ff272cfa5b49dcb0bbe7aaec41797d9c285e5e/samples/ConPTY/MiniTerm/MiniTerm/Processes/ProcessFactory.cs#L21 | Work-Item,Help Wanted,Area-Interop,Product-Conpty,Issue-Samples | low | Minor |
379,484,198 | kubernetes | Make it clear why a namespace is still in Terminating | Users need to know why a namespace is not being deleted when it has been in the Terminating state for a sufficiently long amount of time (see #64002). We should have a status condition or set of events that make it clear which objects the namespace deleter is trying / failing to delete.
<!-- DO NOT EDIT BELOW THIS L... | sig/api-machinery,kind/feature,lifecycle/frozen | medium | Critical |
379,484,946 | pytorch | test_spectral_norm: Backward is not reentrant | I got this on a run:
```
Nov 09 21:56:23 ======================================================================
Nov 09 21:56:23 ERROR: test_spectral_norm (__main__.TestNN)
Nov 09 21:56:23 ----------------------------------------------------------------------
Nov 09 21:56:23 Traceback (most recent call last):
No... | module: autograd,triaged,module: data parallel,module: norms and normalization | low | Critical |
379,490,743 | vscode | emmet.includeLanguages for one to many mapping | How can I enable several languages for a given file extension please?
For example
```json
"emmet.includeLanguages": {
"tt": ["html", "css", "javascript"],
}
```
Except this doesn't work. I tried with multiple references to the key
```json
"emmet.includeLanguages": {
"tt": "html",
... | help wanted,feature-request,emmet | medium | Major |
379,500,300 | nvm | usage of `command` in `nvm.sh` does not prevent alias substitution for `alias -g` aliasses | - Operating system and version:
Linux 4.18.16
zsh 5.6.2
- `nvm debug` output:
<details>
<!-- do not delete the following blank line -->
```sh
nvm --version: v0.33.11
$SHELL: /usr/bin/zsh
$SHLVL: 5
$HOME: /home/pseyfert
$NVM_DIR: '$HOME/.nvm_zsh'
$PATH: $HOME/.local/bin:/usr/local/sbin:/usr/local/bin... | shell: zsh,shell alias clobbering,pull request wanted | low | Critical |
379,509,631 | opencv | Arm Mali/OpenCL - OpenCL error CL_OUT_OF_RESOURCES | **_update: this bug is specific to Mali Midgard(T8xx\T7xx\T6xx) GPU only. More resent Mali Bifrost(Gxx) series not affected**
##### System information (version)
- OpenCV => 4.0beta
- Operating System / Platform => Ubuntu 18.04/arm64
- Compiler => Ubuntu/Linaro 7.3.0-27
- OpenCL => OpenCL 1.2 v1.r14p0-01rel0-git(96... | category: ocl,RFC,platform: arm | medium | Critical |
379,526,442 | opencv | the location of tutorial(cuda module) is not appropriate | ##### System information (version)
- OpenCV => 4.0.0-beta
- Operating System / Platform => All Platform
- Compiler => All Compiler
##### Detailed description
In PR https://github.com/opencv/opencv/pull/12585, cuda module was moved to opencv_contrib.
But, the tutorial(cuda module) remains in the [main reposito... | category: documentation,category: contrib,category: gpu/cuda (contrib) | low | Minor |
379,544,568 | TypeScript | intellisense suggests inferred type parameter in else branch of conditional type | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Domain: Completion Lists | low | Critical |
379,545,375 | TypeScript | intellisense in static method suggests TypeParameter of outer class | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,In Discussion | low | Critical |
379,549,065 | TypeScript | Should intellisense suggest block scoped values before they are declared? | Currently intellisense suggests every block scoped declaration in scope, even if the suggestion is located within the TDZ. When accepting that suggestion, TypeScript issue an `used before its declaration` error:
```ts
new /**/; // suggests 'Clazz', which results in an error
class Clazz {}
function test(
foo ... | Suggestion,Domain: Completion Lists,Experience Enhancement | low | Critical |
379,568,274 | flutter | Dismissible widgets disable Tabview drag detection | I have two tabs, the left tab having a list of tiles and the right tab having nothing. The user can drag the screen from right-to-left or left-to-right to get from one tab to the other.
The left tab has a list of dismissible tiles that only have `direction: DismissDirection.startToEnd` (from left-to-right) enabled so... | framework,f: material design,f: gestures,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
379,610,336 | opencv | Suggestion: use opencv:: namespace for cmake imported targets | While the syntax `::` seems to be more modern and conventional in cmake, it has a obvious benefit.
The following won't get any error until the linking time with a undefined reference error to `cv::imshow`.
```cmake
find_package(OpenCV 3.3 REQUIRED COMPONENTS core)
target_link_libraries(myExe opencv_core opencv_hi... | priority: low,category: build/install,future | low | Critical |
379,622,582 | vue | Unexpected component destroyed trigger by sibling component | ### Version
2.5.17
### Reproduction link
[https://jsfiddle.net/teddy_scmp/2m6kv3rn/](https://jsfiddle.net/teddy_scmp/2m6kv3rn/)
### Steps to reproduce
1. Open console
2. click the TOGGLE bottom
### What is expected?
It is weird that the component between the two v-if will destroy and mount again
... | improvement,has workaround | medium | Minor |
379,681,839 | opencv | Stitching: failed test: ParallelFeaturesFinder.IsSameWithSerial (master branch) | [Nightly build](http://pullrequest.opencv.org/buildbot/builders/master-win64-vc14/builds/10634) (sporadic failures on Windows):
```
[ RUN ] ParallelFeaturesFinder.IsSameWithSerial
C:\build\master-win64-vc14\opencv\modules\stitching\test\test_matchers.cpp(103): error: Expected equality of these values:
coun... | bug,test,category: stitching | low | Critical |
379,713,482 | pytorch | Pytorch-Caffe2 export: "Arrays are not almost equal to 3 decimals" | ## π Documentation
Following the "[Transfering a Model from PyTorch to Caffe2 and Mobile using ONNX](https://pytorch.org/tutorials/advanced/super_resolution_with_caffe2.html)" I get the following exception:
```python
Arrays are not almost equal to 3 decimals
```
when running
```python
np.testing.assert_... | caffe2 | low | Critical |
379,832,306 | opencv | cv::cvtColor does not properly take transparency into account | ##### System information (version)
- OpenCV => 3.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2013
##### Detailed description
``cv::cvtColor(image, outImage, cv::COLOR_BGRA2GRAY`);`` and ``cv::cvtColor(image, outImage, cv::COLOR_BGRA2BGR);`` don't handle transparency well: RGB ... | wontfix,category: imgproc | low | Major |
379,870,692 | go | x/tools/go/packages: include directness information to ParseFile callback | Wire [recently switched to go/packages](https://github.com/google/go-cloud/pull/623) after using `golang.org/x/tools/go/loader`. As noted in google/go-cloud#663, we observed a ~4x slowdown. Since not all of the time is spent inside the Wire process, profiling has been difficult. However, for a baseline Wire run that to... | Tools | low | Critical |
379,956,832 | go | x/build/maintner: GitHubIssue.ClosedBy field is never populated | There exists a [`GitHubIssue.ClosedBy`](https://godoc.org/golang.org/x/build/maintner#GitHubIssue.ClosedBy) field in `maintner`:
```Go
type GitHubIssue struct {
...
ClosedBy *GitHubUser
...
}
```
### What did you expect to see?
Accurate values.
### What did you see instead?
The field is... | help wanted,Builders,NeedsFix | low | Critical |
379,974,911 | pytorch | [c10d] Coordinated file truncation for FileStore | Comment by @SsnL in https://github.com/pytorch/pytorch/issues/13750#issuecomment-437242684, and discussion following that comment.
The FileStore will delete the underlying file if all participating processes terminate gracefully. If they don't there will be a file hanging around. If you try to reuse that file, the p... | oncall: distributed,feature,triaged,distributed-backlog | low | Critical |
379,976,992 | rust | proc_macro support for reading files/strings to spanned TokenStream | Currently, as far as I am aware, there is no way to get spans for tokens parsed from a source other than the macro's callsite, and no good way to tell rustc & cargo a procedural macro depends on another file. It would be nice for macros which want to load other files to enable this.
It'd be nice to support some mech... | A-macros,A-proc-macros | medium | Major |
379,987,737 | flutter | Performance overlay is wrong when embedding UIViews on iOS | With an embedded platform view we have multiple SurfaceFrames for a single frame, the stopwatch presented on performance overlay measures each of them separately. | platform-ios,engine,a: platform-views,P2,team-ios,triaged-ios | low | Major |
380,005,274 | godot | Using canvas world environment makes viewport render target ignore texture flip flag | godot 3.1, Windows 10, gles3, commit hash:
caa141a1ac630144e441f89689baa1a74bb3bae5
When you use environment world in 2d (canvas mode) the viewport which is rendering to the texture in the scene, ignores the v flip flag. You can click this flag many times and nothing happens.
When you remove the world environment,... | bug,topic:rendering,confirmed | low | Major |
380,012,045 | electron | Support for the ppc64le architecture via existing patches | **Is your feature request related to a problem? Please describe.**
Currently Electron does not support the ppc64le architecture and therefore can't be used on machines like the libre Talos II workstation from Raptor Computing Systems.
On this front, myself and others have recently ported Chromium to ppc64le. We are... | enhancement :sparkles: | medium | Critical |
380,021,856 | go | x/tools/go/packages: go list emits no CompiledGoFiles for packages that depend on one with an error | The TestLoadSyntaxError test case establishes an import graph a->b->c->d->e->f where e contains an error:
```
$ head $(find src -name \*.go)
==> src/golang.org/fake/d/d.go <==
package d; import "golang.org/fake/e"; const D = "d" + e.E
==> src/golang.org/fake/c/c.go <==
package c; import "golang.org/fake/d"; con... | NeedsInvestigation,Tools | low | Critical |
380,099,297 | rust | assert! and assert_eq! generate different assembly | Concidering this simple code
```rust
pub fn foo1(a: u32, b: u32) -> bool {
assert!(a == b);
true
}
pub fn foo2(a: u32, b: u32) -> bool {
assert_eq!(a, b);
true
}
```
The generate very different [assembly](https://rust.godbolt.org/z/_kFRkv)
```asm
example::foo1:
push rax
cmp ... | I-slow,A-codegen | low | Major |
380,109,743 | react | Textarea loses focus after inserting paired punctuation with Chinese IME | <!--
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*?**
bug
**What is the current behavior?**
Textarea lose focus after insert paired punctuation by "Chinese-Pinyin 10... | Type: Bug,Component: DOM | medium | Critical |
380,129,163 | TypeScript | Update Terminal's "--pretty" style. | I find the Pretty mode in TSC useful. But when there are multiple errors, it has so many spaces between each line that it becomes a pain for me to identify each error, even with the terminal in full size. Maybe I'm missing some setting?
 that generates a promise that is used later. Inside that promise, I occasionally will get a bad object, and expect the promise to be rejected as a result of an object being undefined. Here's a pathological e... | issue: needs investigation | low | Critical |
380,161,227 | opencv | Proposal: VideoCapture to drop frames for low latency still capture | Use case: someone wants to capture still images. However the camera API, trying not to drop any frames, buffers several frames. This results in a pipeline of "stale" images when frames are read at less than full configured frame rate.
Those who don't know of this behavior, are often puzzled and don't know how to sol... | priority: normal,feature,category: videoio(camera) | low | Major |
380,180,823 | opencv | G-API: division test is disabled for MathOperatorTest | Testing of the divsion operation has been disabled by @alalek with PR #13096
I am filing this issue in order to track fixing and re-enabling of these tests
Reasoning provided by @alalek about these tests:
Div by exact zero has been changed in OpenCV 4.x (to follow IEEE 754 for floating point numbers): #128... | test,category: g-api / gapi | low | Critical |
380,182,767 | opencv | G-API: please fix the EqHistTest test | Issue description provided by @alalek with the PR #13096
Implementation of (equalize histogram) function is not bit-exact (at least in OpenCV), so this test will broke soon with "exact" check. | test,category: g-api / gapi | low | Minor |
380,219,769 | TypeScript | Feature: Lazy object initialization | <!-- π¨ 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
lazy object initialization
## Suggestion
Introduce ability t... | Suggestion,In Discussion | medium | Critical |
380,287,586 | godot | Manually linking static libraries with MSVC appends Godot's LIBSUFFIX |
[fmod.zip](https://github.com/godotengine/godot/files/2576922/fmod.zip)
<!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 3.1
<!-- Specify commit hash if non-official. -->
**OS/device including v... | bug,platform:windows,topic:buildsystem,confirmed | medium | Critical |
380,290,769 | TypeScript | Rest tuple parameter with intersection/union places error on wrong argument | **TypeScript Version:** 3.2.0-dev.20181113
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
rest tuple, intersection, union, error, argument, misplaced
**Code**
```ts
declare function boop<T extends any[]>(...args: T & [number, string]): void;
... | Bug,Domain: Error Messages | low | Critical |
380,317,873 | flutter | Using ChangeNotifier as a mixin is messing with the super.dispose() call in a StatefulWidget | I'm seeing an issue which feels like a Flutter bug.
I have a StatefulWidget which has a state class that looks like this
```dart
class _SearchScreenTabsContainerState extends State<SearchScreenTabsContainer>
with SingleTickerProviderStateMixin, ChangeNotifier { ... }
```
I've added the ChangeNotifier class ... | framework,dependency: dart,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework | low | Critical |
380,321,093 | rust | Rust incorrectly infers the generic type if used with failure::ResultExt and the try macro. | When trying to compile the following code, the compiler will incorrectly infer the type as `()`.
It shouldn't happen, since the returned type is `Result<U, _>` and `context` doesn't change the generic value type in `Result.`
```
extern crate serde;
extern crate failure;
extern crate reqwest;
use serde::{Deseria... | A-trait-system,T-compiler,A-inference,C-bug | low | Critical |
380,322,262 | rust | Lifetime is somehow treated as invariant where it shouldn't be | Original code using [combine](https://crates.io/crates/combine) v3.6.2 (self-contained reproduce code can be found below):
```rust
use combine::parser::{Parser, range::take, char::string};
fn func<'a>(source: &'a str) {
take(1).or(string("a")).parse(source); // error
}
```
The code should compiles.
Instea... | A-lifetimes | low | Critical |
380,374,732 | vscode | Ability to apply a final sort to QuickPick results | I'd like to be able to pin certain items to the top of a QuickPick list, but the QuickPick's fuzzy matching functionality doesn't allow any custom sorting. Providing some kind of hook to apply a final sort would solve this. This hook would receive the fuzzy-matched order and could return a new array for the final order... | feature-request,quick-pick | low | Minor |
380,395,464 | pytorch | Pytorch very slow to convert list of numpy arrays into tensors | ## π Bug
I compared the execution time of two codes.
Code 1:
```
import torch
import numpy as np
a = [np.random.randint(0, 10, size=(7, 7, 3)) for _ in range(100000)]
b = torch.tensor(np.array(a))
```
And code 2:
```
import torch
import numpy as np
a = [np.random.randint(0, 10, size=(7, 7, 3)) for... | high priority,module: performance,triaged,enhancement,module: numpy,has workaround | medium | Critical |
380,415,331 | go | doc: freeze "Effective Go" | There have been a number of suggestions to change the code inside Effective Go lately. For instance, the comments in https://github.com/golang/go/issues/28773 suggest adding an example that uses strings.Builder. But in fact there are almost no mentions of library functions in the document, so starting with strings.Buil... | Documentation,NeedsDecision | high | Critical |
380,418,556 | TypeScript | A way to expand mapped types | I want to be able to expand mapped type in intellisense
Currently, mapped types is displayed directly with the mapper and original type, which is unhelpful as hell

With the ts 2.8 conditi... | Suggestion,In Discussion | medium | Critical |
380,421,213 | go | runtime: types are not garbage collected | go version devel +644ddaa842 Wed Nov 7 16:12:02 2018 +0000 linux/amd64
Newly created types are not garbage collected, so code which creates types on the fly in response to runtime data can leak memory.
This code prints a large number when it should print zero: https://play.golang.org/p/R6N6IJSzYTD
| Performance,NeedsInvestigation,compiler/runtime | low | Major |
380,425,439 | vscode | Feature Request Add favorites | Can you add in the Welcome page, a list of favorite projects that the user will set? For example i am working on 3 projects but the recent projects is not helping. I would want to have a panel that i can set my favorites and with a click to open the folder. | feature-request,getting-started | medium | Major |
380,479,684 | go | net/http: ServeMux excess locking | In #25383, a lock contention regression was brought up in `ServeMux`. I believe this lock contention is still present in the mux, and could be removed. Making ServeMux have an atomically loaded handler map can help reduce latency of serving at the cost of more expensive mutations.
A sample CL that fixes this re... | Performance,NeedsInvestigation | low | Major |
380,483,059 | TypeScript | Go to definition on @constructor type fails | **TypeScript Version:** 3.2.0-dev.20181110
**Code**
```js
/** @constructor */
function f() {
this.x = 0;
}
/** @type {f} */
let x = new f();
```
**Expected behavior:**
Go-to-definition at `f` in `@type {f}` works.
**Actual behavior:**
No definitions returned. | Bug,Domain: JSDoc,Domain: Symbol Navigation | low | Minor |
380,489,223 | TypeScript | Symbol display of namespace-function merged symbol at value use should just mention function | **TypeScript Version:** 3.2.0-dev.20181113
**Code**
See `referencesForMergedDeclarations.ts`
**Expected behavior:**
At the value use of `Foo` in `Foo.bind`, just the function is shown in symbol display.
**Actual behavior:**
It shows `"namespace Foo\nfunction Foo(): void"`. | Bug,Domain: Quick Info | low | Minor |
380,510,818 | TypeScript | Export a object with comment ,but the comment is missing after build a *.d.ts file | I export an object,then I build to a declare file like `index.d.ts`,but the file has no comment about that object.
### Source code
```javascript
//src/cache/index.ts
import * as localStorage from "./localStorage"
export default {
/**
* This is a comment2
*/
localStorage
}
//src/index.t... | Suggestion,Revisit,Domain: Comment Emit | low | Minor |
380,527,161 | flutter | Updating Google Maps options needs a way to fail | Right now we try to update the options and always complete the method channel invocation with a success.
We should refactor this a bit and relay update errors back to the Dart side. | c: new feature,p: maps,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
380,572,462 | TypeScript | An index signature parameter type with types extends string or number. | An_index_signature_parameter_type_must_be_string_or_number_1023:
with this Feature, I can't make this code work:
```typescript
export class Events<ED extends EventsDef, EventName extends keyof ED = keyof ED> {
private eventMap = new Map<EventName, Event<ED[EventName]>>();
constructor() {
new Pro... | Suggestion,In Discussion | low | Critical |
380,599,865 | kubernetes | Suspicious breakdown in pod startup time in scalability tests | I've already observed a number cases in scalability tests, where for pod startup-time, the breakdown looks suspicious.
As an example, in this run:
https://storage.googleapis.com/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-scale-performance/255/build-log.txt
from looking into 10% worst times, we see that:
```
I... | kind/bug,sig/scalability,lifecycle/frozen | low | Critical |
380,705,204 | flutter | Programmatic sign in using a specific email id | Hi,
I have a requirement that I need to run background processing that has to connect to Google Drive and Google Sheets for a set of gmail IDs. I didn't find any place where I could force a Google Signin using a specific gmail ID. In my native Android app, I could do this easily using the snippet below but this does n... | c: new feature,p: google_sign_in,package,team-ecosystem,P3,triaged-ecosystem | low | Minor |
380,711,970 | godot | Reimporting meshes clears MeshInstance materials | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 89a76f21edcdd41b2e032c69fab6cc8211aecd76
<!-- Specify commit hash if non-official. -->
**OS/device including version:** Windows 10
<!-- Specify GPU... | bug,confirmed,topic:import,topic:3d | low | Critical |
380,716,805 | vscode | editor.insertSnippet() messes with indenting of the SnippetString | This is a very similar issue to #44200/#57093 but that fix appears to be only being applied to completions, but applying snippets causes the same issues.
Here's a repro:
```ts
vs.workspace.openTextDocument(vs.Uri.parse(`untitled:${os.tmpdir}/a.dart`)).then(async (document) => {
const originalCode = `main() {... | help wanted,feature-request,api,snippets | medium | Major |
380,766,555 | nvm | install script does not detect if git is installed or not | - Operating system and version:
Ubuntu bionic
- `nvm debug` output:
n/a
- `nvm ls` output:
n/a
- How did you install `nvm`? (e.g. install script in readme, Homebrew):
via the install script, but git **was not** installed
- What steps did you perform?
as mentioned in the doc, but git **was not... | needs followup,installing nvm | low | Critical |
380,799,586 | go | cmd/link: wrong c-archive architecture using GNU binutils ar on macOS Mojave 10.14.1 | ### What version of Go are you using (`go version`)?
<pre>
$ go version
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 (`go env`)?
<details><summary><code>go env</code> Output</summar... | help wanted,NeedsInvestigation | low | Critical |
380,828,488 | TypeScript | Type inference does not work for enums and calculated props | **TypeScript Version:** 3.1.6
Calculated props, Spread operator, Enum keyed types
**Code**
```ts
enum Test {
param = 'X',
other = 'Y',
last = 'Z',
};
type TSomeOtherType = {
readonly someProp: number;
readonly orOther: string;
};
type TKeyedByEnum = {
[key in Test]: TSomeOtherType |... | Bug | low | Critical |
380,876,722 | rust | rustdoc doesn't honor `#![doc(html_no_source)]` across crates | There's an attribute you can apply to your crate, `#![doc(html_no_source)]`, that tells rustdoc to not generate `[src]` links or their corresponding files for that crate. However, if a *dependency* of this crate doesn't add this attribute, and then re-exports something from that crate, it will happily generate `[src]` ... | T-rustdoc,C-bug | low | Minor |
380,912,787 | pytorch | [tracking task] FBGEMM guarding AVX2 properly | ## π Bug
Since the commit 18de330e8639249d4e8c95b2f357983890458d99, `USE_FBGEMM` is set to 1 in the build system if the compiler has the support for AVX2 or higher, and FBGEMM is built as part of PyTorch.
This causes an issue on the systems that have the compiler with the support for AVX2 or higher but the CPU w... | module: build,triaged,module: third_party | medium | Critical |
380,932,367 | TypeScript | identifierCount may not be correct | **TypeScript Version:** 3.2.0-dev.20181114
In `parser.ts`, there is an `identifierCount` variable that is incremented every time `createIdentifier` is called.
Unfortunately, not all `createIdentifier` calls will result in an identifier in the AST, since some may have happened during speculative parsing. It may be ... | Infrastructure | low | Minor |
380,939,814 | opencv | pass ENVIRONMENT to Emscripten | See: https://github.com/kripken/emscripten/pull/6565
As it is right now, the build doesn't work out of the box with bundlers like webpack. I'd imagine that the "worker" target can come in handy too. | feature,priority: low,category: build/install,category: javascript (js) | low | Minor |
380,947,889 | node | Run tests with OPENSSL_CONF set to embedded openssl.cnf | * **Version**: <= 10.13.0
* **Platform**: Linux
when building with the `--shared-openssl` flag, it is highly probable that the `openssl.cnf` used by the shared library will be different than the one present in Node.js source code, resulting in several test failures.
Typically, on debian, openssl is configured with... | help wanted,test,openssl | low | Critical |
380,952,108 | opencv | Exception in knnMatch of cvflann::anyimpl::bad_any_cast when upgrading Podfile from 3.1.0.1 to latest | ##### System information (version)
- OpenCV => latest Pod install
- Operating System / Platform => iOS
- Compiler => Xcode
##### Detailed description
I have an image matching program on iOS that identifies images from the phone's camera for the user. It's been working fine for two years, starting with a much,... | platform: ios/osx,incomplete,needs investigation | low | Critical |
380,956,411 | TypeScript | Statically match namespace names using `new Function().name` | I have this bit of code:
```js
import * as express from 'express';
import {RequestHandler} from 'express';
const router = express.Router();
export const register = (v: any) => {
router.get('/', makeGetFoo(v));
router.put('/', makePutFoo(v));
};
namespace ApiDoc {
export interface makeGetFoo ... | Suggestion,In Discussion | low | Major |
380,957,889 | go | cmd/go: add (or make explicit) tests for ambiguous imports in module mode | <!-- 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 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture ... | Testing,NeedsFix,GoCommand,modules | low | Critical |
380,967,879 | create-react-app | Development page blank on first load | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
Yes
<!--
If you answered "Yes":
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don... | issue: bug | medium | Critical |
380,975,590 | TypeScript | "2 definitions" when using module.exports to export a function wrapped in {} | - VSCode Version: 1.28.2
- OS Version: macOS 10.14
I noticed there are several issues opened against "2 definitions", noticeably https://github.com/Microsoft/vscode/issues/51459 & https://github.com/Microsoft/TypeScript/issues/24861
But I don't think my issue is the same (I don't use ts or react, just nodejs co... | Bug,Domain: JavaScript | low | Major |
380,990,731 | go | runtime: scheduler work stealing slow for high GOMAXPROCS | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
We don't have Go installed in the production environment. The program reports this info as part of reporting its version.
```
Go Version: "go1.11"
Go Compiler: "gc"
Go ARC... | Performance,NeedsInvestigation,compiler/runtime | medium | Critical |
381,022,623 | TypeScript | Typescript failed to expand type in generic for unknown reason | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Domain: Conditional Types | low | Critical |
381,053,676 | vscode | [scss] selector specificity works wrong with nested selectors | Issue Type: <b>Bug</b>
Css specifity calculator doesn't respect nested selectors or selectors with `&`.
```css
#id {} /* (1, 0, 0) */
#id div {} /* (1, 0, 1) */
```
```sass
#id {
div { /* (0, 0, 1) */
}
}
.block{ /* (0, 1, 0) */
&__element { /* (0, 0, 0) */
}
}
```
Reproduced without a... | bug,css-less-scss | low | Critical |
381,056,641 | vue | match (getTypeIndex) is called lot of time when props changed and consume lot of memory | ### Version
2.5.17
### Reproduction link
[https://codepen.io/anon/pen/MzpZoz?editors=1011](https://codepen.io/anon/pen/MzpZoz?editors=1011)
### Steps to reproduce
Open google chrome dev console
Go in 'Memory' tab
Select 'Allocation instrumentation timeline' and check 'Record allocation stacks'
... | improvement | medium | Minor |
381,109,175 | TypeScript | Compiler option for implicitly adding this context on class member methods | ## Search Terms
this context class
## Suggestion
A new compiler option `--enforceClassMemberThisContext`. It causes the compiler to implicitly set the `this` context of class methods which use this somewhere in the method body and behave as the user had done this manually on each method.
## Use Cases
It ... | Suggestion,In Discussion,Add a Flag | low | Critical |
381,119,794 | godot | Errors when trying to import and open EXR files with multiple layers | **Godot version:**
3.1 66c6dfb
**OS/device including version:**
Windows 10
**Issue description:**
When I copy exr file(created in Krita 4 without merging layers) to godot project, and later open this project and file, then this error is shown:
```
ERROR: load_image: TinyEXR: R channel not found.
At: modu... | bug,topic:thirdparty,topic:import | low | Critical |
381,120,647 | flutter | Support debugging `flutter drive` integration tests from the editors | Hi,
I can't find any way debugging integration tests run with flutter drive.
in flutter site it's only say to use Observatory for debug, but not explain how to do this.
https://flutter.io/docs/testing/debugging
i also tried to connect to link of listening to Observatory like show in screenshot i attache
![run... | tool,t: flutter driver,P2,team-tool,triaged-tool | low | Critical |
381,179,861 | pytorch | Cannot import caffe2_pybind11_state_gpu | ## π Bug
Hello, THe problem is that import caffe2_pybind11_state_gpu doesn't work it says:
ImportError: DLL load failed: The specified module could not be found.
On the other hand, import caffe2_pybind11_state (without gpu) works fine. What could be missing ? How can I find which DLL is he looking for ?
## T... | caffe2 | low | Critical |
381,218,226 | rust | `?` can not use assiciated type constraints usable by `.into()` | When an error type is guaranteed to come `From<>` a result error type by means of a trait constraint in a generic function with a constant result type, the idiom `some_result.map_err(|e| e.into())` works, but the should-be equivalent `Ok(some_result?)` does not and produces:
the trait `std::convert::From<<W as W... | A-trait-system,T-compiler | 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.