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 |
|---|---|---|---|---|---|---|
561,580,522 | rust | Coroutines should be able to implement `for<'a> Coroutine<&'a mut T>` | With https://github.com/rust-lang/rust/pull/68524, the `Coroutine` trait has gained a type parameter for the resume argument. Currently, this parameter will not be inferred to a type with late-bound regions. In some cases, this is required for soundness. For example, this coroutine stores the resume argument across a `... | C-enhancement,T-compiler,A-coroutines,F-coroutines | medium | Critical |
561,591,031 | rust | Different NaN types on mipsel and mips64el than on most other architectures | The following tests fail on mipsel and mips64el architectures while succeeding most others.
```rust
#[cfg(test)]
mod tests {
#[test]
fn min() {
assert_eq!(1f64.min(std::f64::NAN), 1f64);
}
#[test]
fn max() {
assert_eq!(1f64.max(std::f64::NAN), 1f64);
}
}
```
It succ... | O-MIPS,T-libs-api,T-compiler,C-bug | low | Major |
561,605,419 | godot | Godot Standard version crashes when opening project created with Godot Mono version. | **Godot version:** 3.2 Standard
**OS/device including version:** Ubuntu 19.10
**Issue description:** When opening a project using Godot Standard version that contains a C# script that listens to a signal, Godot crashes.
Specifically, there is a null pointer dereference, because the `Ref<Script>(script)->` oper... | bug,topic:core,crash | low | Critical |
561,638,527 | tensorflow | tf.data.Dataset unusable with steps_per_epoch standard training loop | **System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux Mint
- TensorFlow installed from (source or binary): binary
- TensorFlow version (use command below): 2.1.0
- Python version:... | stat:awaiting tensorflower,type:bug,comp:data,TF 2.10 | medium | Major |
561,650,019 | pytorch | F.max_pool*d/F.min_pool*d should support integer dtypes and bool tensors | max_pool and min_pool are dilation and erosion operations which can be convenient in postprocessing, so binary masks input can happen in practice
Error: `RuntimeError: "max_pool2d_with_indices_out_cuda_frame" not implemented for 'Int'`
cc @heitorschueroff | triaged,module: pooling,function request | low | Critical |
561,660,726 | vscode | Explore line-end-rendering of code lenses | This is about exploring to render code lenses not interleaved with source text but at the end line source lines. The reasoning is that it might impact code structure less but at the cost of discoverability, e.g with long lines code lens won't be visible by default. This is an exploration with unknown outcome and any re... | feature-request,code-lens | medium | Critical |
561,666,546 | vue | $http.delete shows warning "avoid using JavaScript unary operator as property name" | ### Version
2.6.11
### Reproduction link
[https://codepen.io/frOracle/pen/vYOEEVW](https://codepen.io/frOracle/pen/vYOEEVW)
### Steps to reproduce
use $http.delete in @click
### What is expected?
$http.delete is a function, not unary operator
### What is actually happening?
a warning "avoid... | improvement,has workaround,warnings,feat:compiler | low | Minor |
561,676,405 | rust | Confusing additional warnings when hitting bindings_with_variant_name | We're working through a Rust training from Ferrous at my company and one of my colleagues wrote some code that hit the `bindings_with_variant_name` warning. A reduced testcase looks like ([on playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=56cdb3e0474225c306c8a1ccd1272e3c)):
```rust... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
561,710,779 | pytorch | test_baddbmm_cpu_float32 fails locally for me when built with DEBUG=1 | ```
======================================================================
FAIL: test_baddbmm_cpu_float32 (__main__.TestTorchDeviceTypeCPU)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/data/users/ezyang/pytorch-tmp/torch/testing/_internal/common... | module: tests,triaged,small | low | Critical |
561,734,397 | flutter | TabBar Ripple flows outside of tabs |
<img src="https://user-images.githubusercontent.com/22423754/74045476-d4d71480-49f2-11ea-840a-45fd539d4812.jpg" width="300" height="600" />
On tab press splash color show outside tab. It should be not show outside `ClipRRect`.
```dart
import 'package:flutter/cupertino.dart';
import 'package:flutter/materi... | framework,f: material design,a: quality,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
561,736,032 | material-ui | [Drawer] Mini variant with SwipableDrawer | There's an example in the [docs](https://material-ui.com/components/drawers/#mini-variant-drawer) on how to make a small drawer with only icons shown that can be expanded to its full width.
Super useful on small screens. Unfortunately, this doesn't seem possible to implement with SwipableDrawer.
- [x] I have sea... | new feature,component: drawer | low | Minor |
561,748,612 | rust | Borrow scope for pattern matches - again | This issue seems to be similar to [this one](https://stackoverflow.com/questions/23328702/rust-cannot-move-out-of-self-because-it-is-borrowed-error), but the referenced issue #6379, does not solve it:
[playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=a80be0555b914552ed2071ebbf64261... | A-borrow-checker,T-compiler,C-bug,fixed-by-polonius | low | Critical |
561,759,818 | go | x/tools/go/packages: loader doesn't handle/recognize "context canceled" error | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.7 linux/amd64
</pre>
### Does this issue reproduce... | NeedsInvestigation,Tools | low | Critical |
561,826,344 | TypeScript | TS Spec doesn't match implementation re method signature definitions | [TS Spec Β§ 3.9.5](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md#395-method-signatures) says:
> A method signature of the form
>```ts
> f < T1, T2, ... > ( p1, p2, ... ) : R
>```
>is equivalent to the property declaration
>```ts
>f : { < T1, T2, ... > ( p1, p2, ... ) : R }
>```
But this... | Docs | low | Major |
561,833,350 | TypeScript | Default values for jsconfig.json override extended values | **TypeScript Version:** 3.8.0-dev.20200207
**Search Terms:** jsconfig extend override defaults
**Code**
```jsonc
// a/jsconfig.json
{
"files": ["test.js"],
"compilerOptions": {
"maxNodeModuleJsDepth": 0
}
}
```
```jsonc
// b/jsconfig.json
{
"extends": "../a/jsconfig.json"
}
```
```j... | Bug | low | Minor |
561,837,689 | rust | Tests in panic=abort can hang if test spawns a subprocess | If a test (running in a subprocess, because panic=abort) spawns a sub-subprocess which inherits its stdout or stderr handles, and the sub-subprocess does not exit when the test does, the test framework will hang. This is because [`wait_with_output`](https://github.com/rust-lang/rust/blob/fb29dfcc9ada6ed10308b6e7f405569... | A-libtest,C-bug,T-libs | low | Critical |
561,864,203 | flutter | Web engine: find the best way to apply static CSS properties | There are several CSS properties that we set on nearly every element we create, such as `position:absolute` and `transform-origin: 0 0 0`. Currently we do this in an ad hoc fashion. We also sometimes reassign these repeatedly to the same value (particularly `transform-origin`). For example, there are 13 places that set... | engine,platform-web,c: proposal,c: rendering,P2,team-web,triaged-web | low | Minor |
561,896,520 | go | x/pkgsite: README images should be proxied to protect user privacy | The overview page links directly to images referenced from the readme markdown. These references allow third parties to track users on pkg.go.dev.
Github proxies images referenced from the readme to prevent such tracking. See the following for more information:
- https://github.blog/2014-01-28-proxying-user-ima... | NeedsInvestigation,pkgsite,pkgsite/frontend | low | Minor |
561,904,687 | pytorch | InlineAutodiffSubgraphs in JIT inlines non-differentiable custom groups unexpectedly. | ## π Bug
## Issue description
It appears that the `InlineAutodiffSubgraphs` pass inlines non-differentiable custom groups unexpectedly. As a result, `.backward(...)` cannot be executed on the output from the forward computation.
To fix this issue, `canRunWithAutograd` in `torch/csrc/jit/passes/inline_autodif... | oncall: jit,module: custom-operators,actionable | low | Critical |
561,905,315 | flutter | Fix the discrepancy between WidgetTester.pumpWidget() and runApp() | @yjbanov:
> The first frame of an app (launched via `runApp()`) is preceded by a `BuildOwner.buildScope()` without laying out the scene, while the first frame of a test (the first invocation of `WidgetTester.pumpWidget()`) does perform layout. Therefore, code that attempts to access layout information can fail dependi... | a: tests,framework,P2,team-framework,triaged-framework | low | Minor |
561,911,005 | pytorch | Move the custom pass execution back to the beginning of runNondiffOptimization | ## π Bug
This is about the JIT compilation.
https://github.com/pytorch/pytorch/pull/29256 moved the execution of custom passes to the end of `runNondiffOptimization`.
This change has an adverse effect on a custom pass that we have been working on. With this change, our custom pass cannot see the graph in the... | oncall: jit,triaged | low | Critical |
561,913,760 | flutter | Add golden test for safe area with transparency | Create a framework golden test that launches an Android `FlutterActivity` with transparency enabled. The golden test should ensure that safe area is respected.
The embedding change that lead to this ticket is here:
https://github.com/flutter/engine/pull/16208 | a: tests,platform-android,engine,e: embedder,c: proposal,P2,team-android,triaged-android | low | Minor |
561,913,939 | flutter | When Testing Accessibility, Text Contrast Tests Do Not Always Give Right Results | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | a: tests,framework,a: accessibility,P2,team-framework,triaged-framework | low | Critical |
561,920,208 | godot | Vsync with compositor causes FPS fluctuation when maximized on 144Hz monitor | **Godot version:**
3.2 (Mono)
**OS/device including version:**
- Windows 10
- NVidia GTX 1060
**Issue description:**
After turning on VSync and VSync with compositor, the game sometimes stutters every ~2 seconds and gets stuck in a constant battle between 60 and 80-70 fps.
- I'm using one 144Hz monitor, a... | bug,topic:rendering | low | Critical |
561,920,401 | godot | Mono build crash on Android when ProjectSettings/mono/profiler/enabled is set to true | **Godot version:**
Godot_v3.2-stable_mono_win64
**OS/device including version:**
Android
**Issue description:**
When exporting to Android (I did so using the little Android icon at the top right after connecting my device), the game won't start when ProjectSettings/mono/profiler/enabled is set true. Have confi... | bug,platform:android,confirmed,topic:dotnet | low | Critical |
561,925,472 | pytorch | [RFC] Add ability to get all remote parameters when constructing DistributedOptimizer. | ## π Feature
Currently with model parallel/RPC based training, the user is required to themselves pass in all parameters, as RRefs that participated in the backwards pass and pass those into the DistributedOptimizer. This requires the user to always add 1-2 boilerplate functions to their training code, see the tutori... | triaged,module: rpc | low | Minor |
561,943,318 | youtube-dl | Euscreen.eu | - [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2020.01.24**
- [x] I've checked that all provided URLs are alive and playable in a browser
- [x] I've checked that none of provided URLs violate any copyrights
- [x] I've searched the bugtracker for similar site... | site-support-request | low | Critical |
561,954,604 | godot | Script editor gets upset if an autoload singleton references itself explicitly by name | **Godot version:**
3.2 stable
**OS/device including version:**
Windows 10 x64
**Issue description:**
When an autoload has a field element that is explicitly referred to within the autoload script, for example an autoload named `global` with a field `test`, and inside the script, it references itself like `glob... | bug,topic:gdscript | low | Critical |
561,969,521 | go | encoding/xml: decoding a>b>c decoration syntax should support namespaces | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version 1.13.5 windows/amd64
</pre>
### Does this issue reproduce wit... | ExpertNeeded,NeedsInvestigation | low | Minor |
562,002,148 | godot | FileDialog does not place its elements correctly with the theme used in Godot Editor (?) | **Godot version:** 3.2-stable
**OS/device including version:** Debian Buster amd64
**Issue description:**
This is a minor UI nitpick, but I guess it may cause other similar (theming?) problems.
When used in an editor plugin, FileDialog does not place its items correctly (depends on the theme?).
**Steps to repr... | bug,topic:editor,confirmed,topic:gui | low | Minor |
562,006,465 | pytorch | [feature request] make torch.multinomial behaviour compliant with rnn output dimension | ## Issue description
torch.multinomial only works on single and double dimension tensors, without giving ability for choosing probability dimension.
Thus, multinomial is not directly usable on rnn output tensor, which has three dimensions (the third one being the probability dimension).
A practical improvement w... | module: distributions,module: bc-breaking,feature,triaged | low | Critical |
562,014,551 | rust | Audit src/rustllvm/RustWrapper.cpp for C APIs that are now in upstream LLVM. | Specifically, functions which are implemented in the oldest supported LLVM version.
- [x] LLVMRustSetComdat => Comdat.h https://github.com/rust-lang/rust/pull/131876
- [ ] LLVMRustModuleBuffer => Core.h::LLVMMemoryBufferRef
- [ ] LLVMRustDI* => Debuginfo.h::LLVMDI*
We can also consider to polyfill some functions that... | C-cleanup,A-LLVM,T-compiler | low | Critical |
562,030,787 | godot | FileDialog minor UI inconveniences | **Godot version:** 3.2-stable
**OS/device including version:** Debian Buster amd64
**Issue description:**
Currently, FileDialog behaves very differently from what you would expect in any other system file dialog. With a few minor changes, it would be much more "pleasant to use". Those don't deserve separate issues... | enhancement,usability,topic:gui | low | Critical |
562,038,587 | svelte | Strange behaviour with interrupted crossfade transitions | Similar to https://github.com/sveltejs/svelte/issues/3398
Here is a very basic setup to test for the crossfade transition:
https://svelte.dev/repl/7b633681d5a849968771c4fe9b7e7536?version=3.18.1
The duration is set to `2s` so you have time to interrupt the transition by clicking a second time on the button.
On... | bug | low | Minor |
562,046,676 | next.js | Swipe back on mobile browser with getInitialProps flickers the previous page | # Bug report
## Describe the bug
On mobile browsers (tested with Chrome and Firefox), swiping back or forward on a dynamic page (one that gets data from `getInitialProps`) will sometimes "flash" the previous page while the content is loading. [Here is a video](https://share.getcloudapp.com/2NurgWDe) that shows th... | good first issue,Navigation | medium | Critical |
562,058,655 | go | x/exp/apidiff: resolution of type aliases depends on type names | ```go
package v1
type T interface { F() }
func F(T) {}
```
```go
package v2
import "example.com/x/common"
type T = common.T2
func F(T) {}
```
```go
package common
type T2 interface { F() }
```
```shell
$ apidiff example.com/x/v1 example.com/x/v2
Incompatible changes:
- F: changed from func(T) to... | NeedsInvestigation | low | Minor |
562,064,480 | material-ui | [Switch] ref attribute is not the root element | - [x] The issue is present in the latest release.
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Current Behavior π―
When attempting to use the width of a Switch component, I don't get the width of the surrounding ... | bug π,breaking change,component: switch | low | Major |
562,069,465 | flutter | [google_sign_in] Retrieve authorization code instead of token | ## Use case
- I want to implement `Google sign in` in my app with an option to specify the `responseType="code"` to get an authorization code. (it's not token, not access token!)
- Click on the `Google sign in` button will bring up a popup window for user to select account. After user select one and the window c... | p: google_sign_in,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
562,072,178 | rust | MIR SourceScopes stay around even when all their uses were removed. | We already have a testcase, namely [`simplify_try`](https://github.com/rust-lang/rust/blob/85ffd44d3d86214fc06be4add039e26f85261a2b/src/test/mir-opt/simplify_try.rs), which replaces enough of the original body to make some `SourceScope`s unused.
However, despite no statements/terminators using those scopes anymore, ... | A-debuginfo,C-enhancement,P-low,T-compiler,A-MIR | low | Critical |
562,073,500 | vscode | Allow to use decorations in quick input (e.g. for editors picker) | For the recently used menu (which is bound to <kbd>Ctrl</kbd> + <kbd>Tab</kbd>) I would like to see git decoration status (modified/untracked/...) just like they work for **OPEN EDITORS** View.
 | feature-request,file-decorations,quick-open | medium | Major |
562,075,008 | pytorch | QNNPACK: GNU aarch64 assembler does not support 4s on neon mov | Unlike clang, GNU assembler does not support 4s type on neon mov and gives these errors:
> 8x8-dq-aarch64-neon.S: Assembler messages:
> 8x8-dq-aarch64-neon.S:657:
> Error: operand mismatch -- `mov V8.4s,V9.4s'
> Info: did you mean this?
> Info: mov v8.8b, v9.8b
> Info: other valid variant(s):
... | oncall: mobile | low | Critical |
562,077,754 | TypeScript | `typescript.SymbolTable` does not properly implement the ES6 Map interface | <!-- π¨ 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,API,Awaiting More Feedback | low | Critical |
562,086,685 | go | proposal: spec: simplify error handling - error passing with "pass" | # Introduction
For the most part, I like the simplicity of error handling in Go, but I would very much like a less verbose way to pass errors.
Passing errors should still be explicit and simple enough to understand. This proposal builds on top of the many existing proposals and suggestions, and attempts to fix t... | LanguageChange,Proposal,error-handling,LanguageChangeReview | high | Critical |
562,086,706 | godot | iOS export completely overwrites directories | **Godot version:**
3.2
**OS/device including version:**
macOS 10.15.2
**Issue description:**
I accidentally exported an iOS project out to the same directory my game project was in. Because the names were the same, it overwrote my entire game directory without warning.
**Steps to reproduce:**
Export iOS pr... | bug,platform:ios,topic:editor,topic:porting,confirmed | low | Major |
562,090,963 | rust | rust-mingw is missing libssp* | The GCC compiler that comes with rust-mingw understands `-fstack-protector-strong` and emits stack-protector code, but the build further fails to link with messages like:
```
C:\Users\task_1581171456\repo\git-core\libcinnabar.a(cinnabar-fast-import.o):cinnabar-fast-import.c:(.text+0x291): undefined reference to `__st... | O-windows-gnu,T-infra,C-bug | low | Major |
562,092,380 | rust | Can't use ASAN with Xcode clang | When building rust code with `-Zsanitizer=address` and following through with `-fsanitize=address` for C/C++ code that might be compiled by build scripts, the build ends up failing with (using Xcode 11.3 on travis):
```
= note: Undefined symbols for architecture x86_64:
"___asan_version_mismatch_check_... | A-linkage,O-macos,T-compiler,A-sanitizers,C-bug | low | Critical |
562,095,542 | go | sync: shrink types in sync package | # Proposal: shrink types in sync package
## Current API
The types in the sync package make use of semaphore operations provided by the runtime package. Specifically, they use the following two APIs
`semacquire(s *uint32)`: waits until `*s > 0` and atomically decrements it.
`semrelease(s *uint32)`: atomicall... | NeedsDecision | medium | Major |
562,098,537 | TypeScript | Feat: Non-Detail view for Error Messages | ## Suggestion
The following is a case where I'm missing a single field from an object:
<img width="354" alt="Screen Shot 2020-02-08 at 6 08 45 PM" src="https://user-images.githubusercontent.com/14002040/74093917-47e99500-4a9e-11ea-886a-78759f601d50.png">
<img width="925" alt="Screen Shot 2020-02-08 at 6 08 57 PM... | Suggestion,Needs Proposal | low | Critical |
562,116,340 | TypeScript | Control flow doesn't affect spreaded properties | **TypeScript Version:** 3.7.4
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** `react required props`

**Code**
```tsx
import Rea... | Bug | low | Critical |
562,120,484 | opencv | Problem for Simple Alpha Blending | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest de... | bug,category: core,affected: 3.4,confirmed | medium | Critical |
562,137,182 | pytorch | Python package using CMake | ## π Feature
<!-- A clear and concise description of the feature proposal -->
Use existing CMake build to create a python .whl file
## Motivation
The CMake build is clear and well documented. It would be helpful if a corresponding Python WHL package is built using the existing CMake script.
<!-- Please outline th... | module: build,low priority,triaged,enhancement | low | Major |
562,158,978 | flutter | Request: locator for labelText in flutter driver | Hi please could you help.
When using a form - there is attribute 'labeltext' which is the default text . There is currently no way to extract this I tried using Gettext but this does pull it. Please can you advise. | c: new feature,tool,t: flutter driver,P3,team-tool,triaged-tool | low | Minor |
562,169,486 | TypeScript | Let type identifiers co-exist with import namespace identifiers | ## Search Terms
Modules, export, import
## Suggestion
It would be convienent if type identifiers could co-exist with import namespace identifiers.
## Use Cases
A common pattern is to have a module where the module name is the same as the main type exported by that module.
## Examples
Consider this ... | Suggestion,In Discussion | low | Critical |
562,179,915 | rust | Add `with_exact_size` and `with_size_hint` to `Iterator` | Usually iterator adaptors do a fine job at keeping information about the length of an iterator. But once you throw something like `filter` in your iterator chain, the lower bound is 0, meaning that collecting into a collection can't properly pre-allocate. Also, some iterator adaptors (like `chain`) cannot implemented `... | T-libs-api,C-feature-request,A-iterators | low | Major |
562,192,035 | node | HTTP2 Server Upgrade listener undocumented | - All versions that have HTTP2 and HTTPS* implemented
- Documentation problem
The code below shows what is up. I wonder what could be the reason that it works even-tough it is undocumented even in the typescript definitions that come with npm.
I would say this is due to C++ inheritance from HTTPServer to HTTPSServ... | doc,http2 | low | Minor |
562,215,369 | angular | Angular IVY Animation issue - element is not getting removed | # π bug report
### Affected Package
Angular animations in combination with IVY, and maybe some other stuff mixed in. Unkown because unable to reproduce in stackblitz.
### Is this a regression?
Yeah, sort of, I don't have the issue pre-IVY
### Description

**Steps to reproduce:**
After try to change and set import default to some texture file .png

It's also prob... | bug,discussion | low | Major |
562,237,678 | godot | Region taken from AtlasTexture is inaccurate if taken from edge | **Godot version:**
3.2.stable.official
**OS/device including version:**
Windows 10
**Issue description:**
I've seen a few instances where extracting a manually defined region from an `AtlasTexture` "extends" pixels found at the edges of the texture. See attached image for an idea of what I mean here.
**Step... | topic:rendering,documentation | low | Minor |
562,255,585 | flutter | google_maps_flutter: Reliable zoom callback | ## Use case
The callback onCameraMove sometimes doesn't fire if the map is zoomed, but the map center remains unchanged. I don't know whether onCameraMove is supposed to be called only when the center changes, however I'd like to have a callback that reliably tells me when the zoom level has changed.
## Proposal
... | c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
562,255,897 | flutter | google_maps_flutter: Restrict zoom level visibility of map features | ## Use case
I'd like to show polygons/markers/lines only within a specific zoom level range, e.g. when zoom is greater than 18.0.
## Proposal
Add fields to map features minZoom/maxZoom.
| c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
562,266,405 | flutter | Flutter CLI parsable output (JSON) | ## Use case
I run multiple simulators to test different resolutions and platforms at once and I want to be able to target `flutter run -d ... ` at each of them independently. Using `flutter run -d all` is not convenient as the console log becomes unusable. So my work set up is to have multiple terminal tabs/windows ... | c: new feature,tool,P3,team-tool,triaged-tool | low | Minor |
562,299,698 | flutter | Failed to xcodebuild against multiple iOS devices: Build service could not start build operation: unknown error while handling message: Could not acquire lock at path `Path(str: ".../DerivedData/.../...-Workspace.lock")` | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | platform-ios,tool,P3,team-ios,triaged-ios | medium | Critical |
562,561,153 | material-ui | [Drawer]Tooltip to appear on hover, click and mousedown over icons of Mini Variant Drawer | <!-- Provide a general summary of the feature in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! β€οΈ
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the [... | docs | low | Minor |
562,584,539 | godot | InspectorPlugin.can_handle(arg) can receive objects which are not exposed to GdScript | **Godot version:**
40d1b0bfdb62d24d72f1f0102a7caf6f1c14e595
**OS/device including version:**
Ubuntu 18.04 64bit
**Issue description:**
When we create InspectorPlugin and we implement `can_handle(arg_obj)` function, I would expect the argument will be an Object (like its mentioned in docs). But it seems it's no... | bug,confirmed,topic:plugin | low | Critical |
562,641,994 | go | x/mobile/bind: function with argument of type declared in same package skipped after binding | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.7 linux/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... | NeedsInvestigation,mobile | low | Critical |
562,642,758 | rust | Rustdoc: prioritize matches with same casing in search results | It would be convenient if [the results] for a lowercase `filter` showed exact match `filter` before `Filter`, and vice versa.
[the results]: https://docs.rs/futures/0.3.4/futures/index.html?search=filter
| T-rustdoc,C-enhancement,A-rustdoc-search | low | Major |
562,647,338 | godot | Viewport node doesn't display configuration warning | **Godot version:** 3.2
**OS/device including version:** N/A
**Issue description:**
A non-configured or incorrectly configured `Viewport` node doesn't display configuration warning.
I encountered this issue when attempting to re-create the [node tree described here](https://old.reddit.com/r/godot/comments/ez... | bug,topic:editor,confirmed,usability | low | Minor |
562,806,840 | flutter | Expose all ViewportMetrics to flutter embedder | ## Use case
content size doesn't match surface size on all platforms. On Android for example the space needs to be made for the statusbar and keyboard.
## Proposal
Extend `FlutterWindowMetricsEvent` with `physicalViewInsetTop` and `physicalViewInsetBottom`. | c: new feature,engine,e: embedder,a: platform-views,c: proposal,P3,team-engine,triaged-engine | low | Minor |
562,815,838 | flutter | Find a better way to configure the web runner's temporary artifacts | The web runner wants to host the entrypoint under a non-file scheme URI (org-dartlang-app) to help DWDS find the right entrypoint. I've implemented this so far by adding an `addFileSystemRoot` method to the compiler, but this isn't the right long term approach.
Ideally we would correctly configure the compiler when ... | tool,c: proposal,P3,team-tool,triaged-tool | low | Minor |
562,822,669 | PowerToys | [Shortcut Guide] Keyshortcut changes based on OS version, Narrator is incorrect on 19h1+ | on 19h1 and above, Narrator is incorrect. The guide shows Win+Enter when it is now win+ctrl+enter
#179 has correct mappings and calls the diff out now | Issue-Bug,Product-Shortcut Guide,Priority-3 | low | Minor |
562,845,321 | flutter | Make it easier to dynamically load snapshot data | We should be able to let users more easily dynamically load vm_snapshot_data and isolate_snapshot_data to avoid including it in the base distribution. This can reduce base distribution size, but would also require the user to host their own infra to supply it. We would also have to come up with some idea about when t... | tool,engine,c: performance,a: size,perf: app size,P2,team-engine,triaged-engine | low | Minor |
562,858,580 | flutter | Flutter maps navigate for drive mode like Google maps | Drive Mode on widget Maps in flutter, can you support for this? | c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
562,889,152 | flutter | `flutter run --profile -d web-server` requires hard-refresh between recompiles | ## Steps to Reproduce
In Chrome with DevTools closed, or DevTools open but "Disable Cache" on the "Network" tab unchecked, do the following:
1. Run any Web app using `flutter run --profile -d web-server`.
2. Make a change in your code.
3. Hit `R` for hot restart
4. Watch the tool recompile the code then say `R... | tool,platform-web,P2,team-web,triaged-web | low | Major |
562,905,085 | youtube-dl | RUTube LiST Download | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | account-needed,outdated-version | low | Critical |
562,915,289 | pytorch | TensorIterator does not work with different input/output types | ## π Bug
TensorIterator expects all the inputs and outputs to have the same type. This prevents us from using TensorIterator for operations like quantized batchnorm, where the input is quantized (quint8) but the alpha (scale) and beta (shift) values are in float.
## To Reproduce
Steps to reproduce the behavio... | triaged,enhancement,module: vectorization,module: TensorIterator | low | Critical |
562,916,644 | TypeScript | Auto import generates wrong module specifier for `a/index.ts` when `a.ts` exists | <!-- π¨ 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,Fix Available,Domain: Auto-import,Rescheduled | low | Critical |
562,920,602 | flutter | Add powershell version to the checks in flutter doctor | Hi
I think that this command option need to check the PowerShell version (Windows)
and if it is not at the correct version, it must declare it as an open issue.
When I installed flutter form this file flutter_windows_v1.12.13+hotfix.7-stable
I got an error while doing "flutter upgrade" command (the dart sdk....... | c: new feature,tool,t: flutter doctor,a: first hour,P2,team-tool,triaged-tool | low | Critical |
562,958,064 | flutter | Add --min-coverage option to flutter test --coverage | I think in test_coverage 0.4.2, we will have a --min-coverage option, so I can add to my CI script for example, `pub run test_coverage --min-coverage 100`.
Please add a similar feature to `flutter test --coverage`, so that CI scripts can easily error out if coverage drops below a threshold. | a: tests,c: new feature,tool,P2,team-tool,triaged-tool | low | Critical |
563,000,113 | TypeScript | feature request: public the TransformationContext.addDiagnostic and read them in the compiler and transpileModule | ## Search Terms
custom transformer diagnostic
## Suggestion
mark the method `addDiagnostic` in `TransformationContext` as public and read the diagnostic result in the compiler
## Use Cases
I'm writing a custom transformer. In some cases, the transform will fail but I don't want to throw an Error. I want ... | Suggestion,In Discussion | low | Critical |
563,014,173 | vscode | Add ability for before decorations to indent (stretch across) word wrapped lines | Refs: https://github.com/eamodio/vscode-gitlens/issues/930
I've gotten this report numerous times with GitLens' "gutter" blame annotations and there really isn't much I can do to fix/deal with this.

Can... | feature-request,editor-wrapping | low | Minor |
563,075,887 | angular | Support for dynamic Angular Elements / Webcomponents (with Renderers) | # π feature request
### Relevant Package
The functionality relates to the `@angular/platform-browser` package as this is the package which implements `DomRendererFactory2` and `DefaultDomRenderer2`
### Description
Angular Elements and Webcomponents in general represent great solution for various [real world ... | feature,area: core,area: elements,feature: under consideration | medium | Major |
563,080,531 | pytorch | Loading pretrained model | Hi,
Recently i have converted a detectron model using the tools/convert_pkl_to_pb.py from Detetron repo which results in model_init.pb, model.pb and model.pbtxt. Then, i try to load the pretrained model following this tutorial (https://github.com/facebookarchive/tutorials/blob/master/Loading_Pretrained_Models.ipyn... | caffe2 | low | Critical |
563,098,573 | terminal | Screen flicker when Terminal is opened on top of Skype window | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Area-Rendering,Issue-Bug,Area-UserInterface,Product-Terminal,Priority-3 | low | Critical |
563,110,155 | rust | `r#` stripped from raw idents in lint and `type annotations needed` error | This code
```rust
fn r<r#trait>() {}
fn main() {
r();
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=a12ec17055cf3c08f4b6d59b31969dfc))
Gives incorrect warning and error for type declared using raw identifiers:
```
warning: type parameter `trait` shou... | A-diagnostics,T-compiler,C-bug,D-papercut,D-incorrect | low | Critical |
563,110,178 | rust | Incorrect help message for type declared on struct using raw identifier | This code
```rust
struct r#struct<r#fn>;
fn main() {}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=67fec620c3f519c8b8f8b13f209b0a1e))
Produces incorrect help message:
```
Compiling playground v0.0.1 (/playground)
warning: type `struct` should have an up... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
563,147,739 | pytorch | [feature request] [dataloader] Introduce Dataset.__collate__ | And use it if `collate_fn` is unspecified and `dataset.__collate__` is specified. This makes sense, because batch collation logic is very often tied to `__getitem__` return values interface
(As a workaround I currently create separately a `dataset` instance and then pass `collate_fn = dataset.collate_fn`. This preve... | module: dataloader,triaged,enhancement,needs research | medium | Major |
563,148,845 | godot | Outputs of multiple instances of Godot get mixed up | **Godot version:**
3.2-stable
**OS/device including version:**
Windows 10 (10.0.18362 Build 18362)
**Issue description:**
When at least two instances of Godot are open, and you run both instances with the debugger attached, one will always have its debugger removed and there is a chance that the output shows t... | bug,topic:editor | low | Critical |
563,148,904 | vue-element-admin | Vue.js 3.0 future support | I am looking to begin using this project but would like some clarification on how the project will evolve when vue 3.0 is released.
Will the project update its vue version? Do you foresee any breaking changes?
How hard would you see the migration/update effort being for those who build on this template now but want... | in plan | low | Minor |
563,160,268 | angular | Injected ngControl doesn't contain control property in Angular 9 | # π bug report
### Affected Package
`import { NgControl } from '@angular/forms';`
### Is this a regression?
I believe that this is an Ivy compiler issue
### Description
Injected `ngControl` doesn't contain `control` property in Angular 9.
## π¬ Minimal Reproduction
```html
<mat-checkbox form... | area: forms,P4 | medium | Critical |
563,185,664 | flutter | Android: Extend WidgetsBindingObserver to allow listening on onWindowFocusChanged | ## Use case
On the Dart side I would like to know if the user pulled down the statusbar on Android. According to [this SO answer](https://stackoverflow.com/a/50662025/1800695) this can be achieved with [`onWindowFocusChanged`](https://developer.android.com/reference/android/app/Activity.html?is-external=true#onWindo... | c: new feature,platform-android,framework,would be a good package,c: proposal,P3,team-android,triaged-android | low | Major |
563,187,971 | rust | Non-deterministic perf.rust-lang.org runs (e.g. syn-opt). | https://perf.rust-lang.org/detailed-query.html?commit=e369f6b617bc5124ec5d02626dc1c821589e6eb3&base_commit=4d1241f5158ffd66730e094d8f199ed654ed52ae&benchmark=syn-opt&run_name=patched%20incremental:%20println
This perf run was expected to be a no-op, but appears to have resulted in slightly less queries being run (2 ... | T-compiler,C-bug,A-reproducibility | medium | Critical |
563,258,362 | terminal | Add Toolbar for WSL OS instances | Please add a left toolbar ([for example like Opera browsers' toolbar](https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/main/computer/computer-hero.00fc91be943c.png)) to open WSL OS in single click.
| Issue-Feature,Area-UserInterface,Area-Extensibility,Product-Terminal | low | Minor |
563,275,019 | godot | iOS uses more RAM than other platforms when using large AtlasTextures | **Godot version:** 3.2
**OS/device including version:** IOS (iphone 6, iphone x)
**Issue description:**
Im use big atlas 2048x2048, LOSSY 0.7
IOS uses too much memory.
More than android and windows
I do not like the fact that applications on iOS (arm, arm64, x86, x86_64) weigh minimum ~40 mb
(*.a file weight... | bug,platform:ios,topic:porting,needs testing | medium | Critical |
563,360,856 | rust | Lifetime elision doesn't work right with nested self receivers. | <!--
Thank you for filing a bug report! π Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
Seems like lifetime elision doesn't work quite right with nested self receivers. The error messages are also misleading. Of course this can be worked around ... | A-lifetimes,T-lang,T-compiler,C-bug | low | Critical |
563,375,372 | rust | Confusing E0495 error explanation | Consider example.
The error explanation is very confusing for me:
1. Its not obvious what is the problem and what I can do for solving it
2. There are confusing why Rust explains that '&&Foo' is both expected and found:
~~~
= note: expected `&&Foo`
found `&&Foo`
~~~
```rust
#? | icon | low | Minor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.