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 |
|---|---|---|---|---|---|---|
700,048,181 | rust | borrowed value does not live long enough in closure | From Stackoverflow:
https://stackoverflow.com/questions/63856055/borrow-checker-complains-for-closure-inside-loop-if-type-not-provided-explicitly
I tried this code:
```rust
fn f1(v: &str) {
}
fn main() {
let c = |v| f1(v);
for _ in 0..1 {
let s = String::new();
c(&s);
}
}... | A-closures,C-bug | low | Critical |
700,097,191 | rust | Give a better error message for shared borrow treated as unique for purposes of lifetimes | I tried this code:
```rust
#[derive(Default)]
struct Foo { i: i32, j: i32 }
impl Foo {
fn modify_and_borrow(&mut self) -> &i32 { self.j += 1; &self.i }
}
fn main() {
let mut foo = Foo::default();
let mut refs = Vec::new();
for _ in 0..2 {
refs.push(foo.modify_and_borrow());
... | A-diagnostics,A-lifetimes,T-compiler,C-bug,D-confusing | low | Critical |
700,127,213 | rust | Adding a `take` method to `Default` | `std::mem::take` takes a mutable reference to a value with a type implementing `Default` and swaps it with the default value of that type.
It seems natural to me that `take` should therefore be a method on `Default`.
```rust
pub trait Default: Sized {
fn default() -> Self;
fn take(&mut self) -> Self { ... | T-libs-api,C-feature-request | low | Minor |
700,130,966 | godot | Loading of script inside .pck does not override autoloaded scripts | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2.2
**OS/device including version:**
<!-- Specify GPU model, drivers, and the backend (GLES2, GLES3, Vulkan) if graphics-related. -->
Windows 10 x... | topic:core,confirmed | low | Minor |
700,165,116 | pytorch | [Feature] Fused Matmul & Min/Max/Sum/Prod | ## π Feature
A fused matmul and min/max/sum/prod operation
for example:
a = torch.rand(10000, 10)
b = torch.rand(10, 5000)
torch.max_matmul(a, b, dim=0) <==> torch.max(torch.matmul(a, b)), dim=0)
## Motivation
often times computing cosine similarity of two sets of vectors is followed by a min/max/topk opera... | module: performance,triaged,enhancement,needs research,module: linear algebra | low | Minor |
700,190,046 | godot | [3.x] No autocompletion for typed variables sometimes (fixed in `master`) | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if using non-official build. -->
3.2.3 rc6
**Issue description:**
<!-- What happened, and what was expected. -->
```
onre... | bug,topic:gdscript,topic:editor,usability | low | Major |
700,245,258 | flutter | Noticeable white edge fringe on the dialog box header | ```
## Doctor summary (to see all details, run flutter doctor -v):
[β] Flutter (Channel master, 1.22.0-10.0.pre.137, on Microsoft Windows [Version 10.0.19041.508], locale ru-RU)
[β] Android toolchain - develop for Android devices (Android SDK version 30.0.1)
[β] Visual Studio - develop for Windows (Visual Studio Co... | framework,engine,f: material design,a: quality,c: rendering,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-design,triaged-design | low | Major |
700,269,688 | pytorch | Docs include the verbose arg of `CosineAnnealingWarmRestarts` but the actual docstring in code doesn't | ## π Documentation
The code for torch.optim.lr_scheduler.CosineAnnealingWarmRestarts does not take argument "verbose" but documentation says otherwise.
cc @ezyang @zou3519 @jlin27 | module: docs,triaged,module: doc infra | low | Major |
700,435,153 | rust | Deref coercion not triggering for &Box<dyn Trait> to &dyn Trait | (Original context from #beginners on the community discord: https://discord.com/channels/273534239310479360/273541522815713281/754496149347368981)
This coercion works fine for `i32`:
```rust
pub fn foo(x: &i32) { drop(x) }
pub fn bar(x: &Box<i32>) { foo(x) }
```
But swapping the `i32` for a `dyn Trait` it f... | C-bug,A-coercions | low | Critical |
700,505,338 | flutter | View external flutter project's UI inside an independent flutter project | ## Use case
I am creating a desktop flutter app. It is a type of editor, and I would like to enable external developers to be able to create custom flutter UI's within certain portions of my flutter application. Essentially, I would like to embed their view inside of mine (without knowing at compile time). As far as... | framework,f: inspector,c: proposal,P3,team-framework,triaged-framework | low | Major |
700,509,222 | pytorch | building torchscript extension results in INVALID TYPE: Only int64_t and bool are supported as an integral argument type custom_class | ## π Bug
Trying to build a torchscript extension results in:
```
Severity Code Description Project File Line Suppression State
Error C2338 INVALID TYPE: Only int64_t and bool are supported as an integral argument type PythonManager ....\libtorch-release-latest\libtorch\include\ATen\core\op_registration\infer_sch... | oncall: jit | low | Critical |
700,513,338 | go | runtime: bad "deadlock" fatal error when there are pending finalizers | This program usually succeeds, but sometimes it fails with "fatal error: all goroutines are asleep - deadlock!":
```
package main
import "runtime"
func main() {
ch := make(chan bool)
x := [10]int{4}
var f func(*int)
f = func(p *int) {
if *p == 0 {
close(ch)
return
}
*p--
runtime.... | NeedsInvestigation,compiler/runtime | low | Critical |
700,519,236 | vscode | Clicking on settings checkboxes sometimes dropped after changing another setting | Issue Type: <b>Bug</b>
**repro**
1. With setting sync enabled
1. Open settings
1. Click on a setting value checkbox
1. Then click on another setting value
**Bug**
Sometimes nothing happens when you try changing the second setting. It seems timing dependent but the second click can have no effect for around ... | bug,settings-editor | low | Critical |
700,541,283 | pytorch | MacOS CPU torch.tan and torch.tanh do not compute some values properly | On pytorch_macos_10_13_py3_test the following:
```
torch.tan(torch.tensor(-1.5707963267948966+0j, dtype=torch.cdouble))
```
produces a tensor with value `(-inf+nanj)`, but NumPy correctly produces `-1.633123935319537e+16+0j`.
For tanh,
```
torch.tanh(torch.tensor(-1.5707963267948966j, dtype=torch.cdoubl... | module: cpu,triaged,module: complex,module: macos | low | Minor |
700,541,331 | bitcoin | [Linux] Add wayland support | **Is your feature request related to a problem? Please describe.**
- Wayland provides extra security as apps can't have access to windows from other apps
- X apps looks blurry using fractional scaling on GNOME.
- X is mostly unmaintained, in favour of Wayland
**Describe the solution you'd like**
Add Wayland sup... | Feature,GUI,Linux/Unix | medium | Critical |
700,546,373 | create-react-app | Package versioning and relation to git | Just a question around versions and tags.
Your last tag is 3.4.1, and yet in NPM we are at 3.4.3.
Meanwhile, the `package.json` in git is in fact at 3.4.1. It seems any audit-related version bumps simply don't make it into the git tags or the package.json.
Similarly, the dependencies currently in your `packag... | needs triage | low | Major |
700,563,259 | godot | Duplicate match case does not run or produce any error or warning | <!-- 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 using non-official build. -->
3.2.2
**OS/device including version:**
<!-- Specify GPU model, drivers, and the backend ... | bug,topic:gdscript | low | Critical |
700,564,858 | flutter | [Desktop] Switch blinking with color when hovering even if hoverColor/focusColor are transparent | ## Steps to Reproduce
Hovering switch when
hoverColor = Colors.transparent.
focusColor = Colors.transparent
**Expected results:** <!-- what did you want to see? -->
No "blinking" effect when hovering switch.
**Actual results:** <!-- what did you see? -->
Switch blinks for moment when hover (it is hard... | framework,f: material design,a: desktop,has reproducible steps,P3,found in release: 3.10,found in release: 3.12,team-framework,triaged-framework | low | Major |
700,566,455 | rust | Rustdoc link to current impl | Now as rustdoc is getting larger and there could be multiple impl for one struct, I tend to get lost when searching for the function and I don't know which impl is it under. It would be good to let me click on `self` or some visuals to jump to the impl or a tooltip to let the users understand which impl is it.
![ima... | T-rustdoc,C-feature-request,A-rustdoc-ui | low | Minor |
700,580,226 | godot | GLES3: WorldEnvronment with glow and canvas mode freezes the game | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
Godot 3.2.2 stable
**OS/device including version:**
Vivo Y51
Android 5.0.2 (Lollipop), Funtouch 2.5
Qualcomm Adreno 306 - GLES3
**Issue desc... | bug,platform:android,topic:rendering,crash | low | Minor |
700,604,255 | godot | Segmentation fault with an infinitely recursive function | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2 branch at commit cd62be1845b32861d05cbdae43419f6b159cf3fe
**OS/device including version:**
Arch Linux
**Issue description:**
<!-- What ha... | bug,topic:gdscript,confirmed | low | Critical |
700,616,025 | go | gollvm: improper configuration of system lib. path, under Ubuntu 20 x86_64 | <!--
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
</pre>
go version go1.15rc2 gollvm LLVM 12.0.0git linux/amd64
### Do... | NeedsInvestigation | low | Critical |
700,624,898 | go | gollvm: cmd/go: httpguts, hpack, idna are not using a known version control system | <!--
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.15rc2 gollvm LLVM 12.0.0git linux/amd64
</pre>
### Do... | NeedsInvestigation | medium | Critical |
700,635,938 | rust | wasi-sdk/bin/wasm-ld regression in 1.46.0 | <!--
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.
-->
I tried to cross compile a hello world with WASI SDK as explained at https://doc.rust-lang.org/nightly/nightly-rustc/rustc_target/spec/wasm32_wasi/index.ht... | A-linkage,P-medium,T-compiler,regression-from-stable-to-stable,O-wasm,C-bug,E-needs-bisection | low | Critical |
700,649,212 | godot | Editing AABB in the inspector causes odd behaviors and freezes | Godot 3.2.2
Godot 3.2.3 rc6
Windows 10 64 bits
When trying to edit the fields of an AABB property in the inspector using the `Tab` key to cycle through its fields, there is a point where the editor no longer switches to the next fields, or freezes completely.
When that happens, the console is flooded with error... | bug,topic:editor,confirmed | low | Critical |
700,653,002 | flutter | [in_app_purchase] specify that purchaseUpdatedStream don't return previous purchases | ## Use case
The [docs](https://pub.dev/documentation/in_app_purchase/latest/in_app_purchase/InAppPurchaseConnection/purchaseUpdatedStream.html) says that `InAppPurchaseConnection.purchaseUpdatedStream` will return real time updates for purchases, but does that mean you will get only new purchases since you started l... | d: api docs,p: in_app_purchase,package,team-ecosystem,P3,triaged-ecosystem | low | Minor |
700,690,517 | flutter | Coverage results are different depend on the application structure | I have 2 Flutter repos with different structure as below. The source content is the same but we have 2 different results in the coverage report. Do you know what cause the issue? And why `main.dart` not counted? Appreciate your help. Thanks
```
.
βββ lib
βββ βββ widgets
β ββββββ circle_container_widget.dart
β... | a: tests,tool,has reproducible steps,P2,team-tool,triaged-tool,found in release: 3.19,found in release: 3.22 | low | Major |
700,702,410 | pytorch | CUDA RuntimeError unrecoverably bricks session | ## π Bug
A bad input can completely brick a CUDA session.
## To Reproduce
```python
import torch.nn.functional as F
# CPU No issues
x = torch.zeros(10) - 2
y = torch.ones(10)
try:
F.binary_cross_entropy(x,y)
except:
pass
x+y
# CUDA: big problems
x = torch.zeros(10).cuda() - 2
y = torch.o... | module: cuda,triaged | low | Critical |
700,708,725 | opencv | opencv4.4, issue about opening the stereo camera | ----------------------------
- OpenCV => 4.4
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
****************update
- OpenCV package(downloaded from the official website, https://opencv.org/)
- Used videoio backend(unknown, but i put opencv_videoio_ffmpeg440_64.dll in ...\projec... | question (invalid tracker),category: videoio(camera),incomplete | low | Critical |
700,774,714 | flutter | Flutter tool can fail to find the Android emulator if adb isn't already running | ## Steps to Reproduce
1. Run an Android emulator.
2. `adb kill-server && flutter doctor -v`
## Result
On my Linux workstation, `flutter doctor` reports;
> ```
> [!] Connected device
> ! No devices available
> ```
Attempting to run `flutter run` after killing `adb` results with:
> No supported ... | platform-android,tool,P2,team-android,triaged-android | low | Critical |
700,915,020 | pytorch | No pytorch_jni in StartLocal's zip | I am trying to run java-demo on Linux and downloaded pytorch lib from StartLocal page
https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.6.0.zip
Unfortunately, this archive file doesn't contain pytorch_jni
What to do? | oncall: mobile | low | Minor |
700,918,293 | godot | Bug when using custom camera2d on InputEventScreenTouch & InputEventMouseButton effects tilemap | <!-- 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 using non-official build. -->
v3.2.2
**OS/device including version:**
<!-- Specify GPU model, drivers, and the backend (... | topic:core,topic:input | low | Critical |
700,923,501 | pytorch | Multi-process Dataloader and multi-parameter exceptions | ## π Bug
The exception forwarding, used by utils.data.DataLoader for re-raising an exception from a worker process fails (TypeError) for exception types which require more than one parameter to initialize.
## To Reproduce
Steps to reproduce the behavior:
```
import torch as th
class MultiParamException... | module: dataloader,triaged,enhancement | low | Critical |
700,925,526 | youtube-dl | Support Streamz | ## Checklist
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2020.09.14**
- [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 fo... | site-support-request | low | Critical |
700,953,979 | rust | diagnostics: rust could suggest removing reference here | I was working on some clippy code and had something along the following:
```rust
/// lint for length-1 `str`s as argument for `insert_str`
fn lint_single_char_insert_string(cx: &LateContext<'_>, expr: &hir::Expr<'_>, args: &[hir::Expr<'_>]) {
let _pos_arg = snippet_2(&cx, args[1].span, ".."); // here we need ... | A-diagnostics,T-compiler,A-suggestion-diagnostics,E-needs-mcve,D-papercut | low | Critical |
700,989,229 | three.js | WebGLRenderer: Calling dispose() does not trigger dispose() on geometries, materials etc. | Each time `Pass.FullScreenQuad` is used in a new WebGLRenderer, a `dispose` listener is attached to `geometry`. But when WebGLRenderer is disposed, `geometry` is not disposed, therefore the reference to the `dispose` listener is retained.
https://github.com/mrdoob/three.js/blob/b0a1e8ca7863aa399c31692fa5b76c40feca24... | Needs Investigation | low | Major |
701,002,847 | godot | Camera2D anchor mode affects ParallaxBackground scroll offset | **Godot version:** 3.2.2
**OS/device including version:**
MacBook Pro (Retina, 13-inch, Early 2015)
Intel Iris Graphics 6100 1536 MB
**Issue description:**
The behavior I expect is that if the camera view area is the same, the scroll offset should be the same. In other words, when the camera position is the... | bug,topic:core | low | Minor |
701,027,282 | flutter | Document how to check if the google map is moved by user gestures only (pan, tilt, pinchβ¦) not programmatically | <!-- 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... | d: api docs,p: maps,package,team-ecosystem,P3,triaged-ecosystem | low | Critical |
701,038,761 | flutter | Add Reason code on CameraMoveStarted | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Critical |
701,075,745 | pytorch | torch.sparse improvements - tracking issue | This tracking is meant to list the main improvements we'll be focusing on for sparse tensors, and then mapping them to the releases they should land in. _Please note: these are estimates and indicate current prioritization and require effort - don't rely on this, things may still shift around._
The fill-value propos... | high priority,module: sparse,triaged | low | Major |
701,104,869 | godot | Custom iterator performance is very poor compared to allocating an array and traversing it | **Godot version:**
Godot 3.2, 4.0+.
Previous issue discussion: #7218.
**OS/device including version:**
Windows 10, likely any OS.
**Issue description:**
I'm (re)implementing/porting a linked list implementation as seen in Godot `core/list.h` which I'm going to expose to scripting via C++ modules: goosteng... | discussion,topic:core | low | Major |
701,142,950 | godot | Editor's freelook_base_speed setting does not update unless freelook_speed_zoom_link is active ('On') | **Godot version:**
3.1.2-stable
3.2.2-stable
3.2.3-beta1
4.0.dev.calinou.de465c41d ( @Calinou Is there a quick way to check what commit a build is from? )
**OS/device including version:**
Windows 10, 64bit
**Issue description:**
Unless 'Freelook Speed Zoom Link' setting is active, modifying 'Freelook Base... | bug,topic:editor,topic:3d | low | Minor |
701,156,729 | PowerToys | [Image Resizer] Add Chroma Subsampling options | ## π Add Chroma Subsampling options to Image Resizer (i.e. 4:2:2, 4:4:4)
Based on my testing, the Image Resizer tool in PowerToys is fixed at **4:2:0** chroma subsampling.
That is not considered the highest quality setting.
Both 4:2:2 and 4:4:4 would be considered "higher quality" than 4:2:0.
Note: 4:4:4 is ... | Idea-Enhancement,Product-Image Resizer | low | Minor |
701,160,601 | three.js | Feature request: WebXRManager.getControllerGrip with filtered inputSource | ##### Description of the problem
This proposal is about how to select the correct controller with WebXR, which I have struggled with lately.
The current method of acquiring the controller grip and target-ray space objects are based on the controller index. When you call [xr.getController](https://threejs.org/docs... | Suggestion | low | Minor |
701,217,047 | flutter | spreadRadius has no effect when applied in a TextStyle | The example code illustrates the issue:
```dart
Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'spreadRadius test',
style: TextStyle(
fontSize: 30.0,
shadows: [
BoxShado... | framework,a: typography,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-engine,triaged-engine | low | Major |
701,218,972 | godot | Path2d is drawn incorrectly when modifying instance | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.2.2 Stable
**OS/device including version:**
macOS Catalina 10.15.6
**Issue description and Steps to reproduce:**
Firstly we instantiate a s... | bug,topic:editor | low | Critical |
701,222,134 | TypeScript | Bad declaration emit for CommonJS element-access export of identifier with space asserts | An identifier with spaces tries to export the mangled form:
```js
// @checkJs: true
// @declaration: true
// @filename: moduleExportAliasInBlock.js
// @outdir: out
function webIdlConversions() { return 1 }
exports["unsigned short"] = webIdlConversions;
```
**Expected behavior:**
emitted d.ts:
```ts
... | Bug,Domain: Declaration Emit | low | Minor |
701,303,536 | youtube-dl | MSO Support for Armstrong Cable Services | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request | low | Critical |
701,310,925 | kubernetes | Windows CSI migration | <!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
We have not tested csi migration with Windows, so we need to investigate if anything needs to be done.
**Why is this needed**:
This is a blocker for moving CSI migration to GA.
@kubernetes/sig-stor... | sig/storage,kind/feature,lifecycle/frozen | low | Major |
701,317,344 | go | x/pkgsite: A11y "Previous" button on first results page implemented properly but confusing | <!--
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>
NA
</pre>
### Does this issue reproduce with the latest release?
### What... | NeedsInvestigation,pkgsite,pkgsite/frontend | low | Minor |
701,322,587 | TypeScript | Wrong IntelliSense suggestion for a TypeScript construct | *TS Template added by @mjbvz*
**TypeScript Version**: 4.1.0-dev.20200911
**Search Terms**
- Intellisense
- suggest / suggestion
---
Issue Type: <b>Bug</b>
Wrong IntelliSense suggestion for a TypeScript construct
VS Code version: Code 1.49.0 (e790b931385d72cf5669fcefc51cdf65990efa5d, 2020-09-10T17:39... | Bug,Domain: Completion Lists | low | Critical |
701,324,870 | TypeScript | Conditionally Mapped Type Leads to Confusing ts(2345) Error Message | **TypeScript Version:**
3.9.6
4.1.0-dev.20200914
**Search Terms:**
2345
conditional
**Code**
```ts
declare type GetPropertyNamesOfType<T, RestrictToType> = {
[K in keyof T]: T[K] extends RestrictToType ? K : never;
}[keyof T];
```
You can find this gnarly type here:
https://github.com/microsoft/Type... | Suggestion,Needs Proposal | low | Critical |
701,331,531 | flutter | Integrate Navigator 2.0 and state restoration for the web | We would like to integrate state restoration to web application.
This includes:
1. Web engine listens to restorable state reported from the framework and save the restorable state into the browser history entry. (blocked on https://github.com/flutter/flutter/issues/33615)
2. Web engine starts sending the restora... | c: new feature,framework,engine,f: routes,platform-web,P3,team-web,triaged-web | high | Critical |
701,359,978 | flutter | ColorScheme Theme Quality Issues - Gaps in completeness and inconsistencies | ## Issue description
ColorScheme based themes create ThemeData that is inconsistent with the provided ColorScheme. Some sub themes are also incomplete when using ColorScheme based themes because `Theme.from(colorScheme)` does not set all Theme() color properties used by sub themes.
For broader adoption of ColorSc... | framework,f: material design,a: quality,has reproducible steps,customer: web10,customer: house,found in release: 3.3,found in release: 3.4,team-design,triaged-design | low | Major |
701,361,599 | flutter | Replace multiple hero tag exception by grabbing first hero | ## Use case
<!--
Please tell us the problem you are running into that led to you wanting
a new feature.
Is your feature request related to a problem? Please give a clear and
concise description of what the problem is.
Describe the alternative solutions you've considered. Is there a ... | framework,f: material design,c: proposal,team-design,triaged-design | low | Critical |
701,392,987 | flutter | [web][unit-tests] methods in recording_canvas_golden_test fails on ios-safari | [recording_canvas_golden_test](https://github.com/flutter/engine/blob/master/lib/web_ui/test/golden_tests/engine/recording_canvas_golden_test.dart#L318) methods are mostly passing for ios-safari, however the `expect` condition for the following method fails:
```
test('Computes paint bounds for multi-line draw par... | a: tests,platform-web,P2,team-web,triaged-web | low | Minor |
701,406,140 | flutter | [flutter_tools] Migrate hostonly_devicelab tests to flutter_tools | Most of the [hostonly_devicelab tests](https://github.com/flutter/flutter/blob/master/dev/bots/test.dart#L1239) can and should be migrated to `//flutter/packages/flutter_tools/test/integration.shard`.
## Can be migrated
* [ ] plugin_test
* [ ] plugin_lint_mac
* [ ] build_ios_framework_module_test
* [ ] plugin_... | team,tool,P3,c: flake,team-tool,triaged-tool | low | Major |
701,426,702 | pytorch | Use macro to define `DispatchKey::toString` method | As @bhosmer suggested in https://github.com/pytorch/pytorch/pull/44354/,
use macro to define `toString` method in https://github.com/pytorch/pytorch/blob/master/c10/core/DispatchKey.cpp#L5-L108
example: https://github.com/pytorch/pytorch/blob/master/c10/core/ScalarType.h#L25-L41 | triaged,module: dispatch | low | Minor |
701,458,688 | vscode | editor.renderWhitespace should have option for selection+trailing | <!-- β οΈβ οΈ Do Not Delete This! feature_request_template β οΈβ οΈ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
Right now you're limited to picking between `sel... | feature-request,editor-render-whitespace | high | Critical |
701,500,659 | TypeScript | Nonβ`void`Β returning assertionΒ functions | ## Search Terms
- assertion function non-void return type
- assertion function non-void return
- assertion function generic return
- assertion function custom return
## Suggestion
A way to type a function that is both an assertion function and returning a value that is not void.
## Use Cases
ThisΒ isΒ n... | Suggestion,Awaiting More Feedback | high | Critical |
701,513,767 | go | x/crypto: SSH swallows first character in second connection | <!--
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.15 linux/amd64
</pre>
### Does this issue reproduce w... | NeedsInvestigation | low | Critical |
701,514,431 | pytorch | Make quantized::prepack_fp16 op just do prepacking | Minor comment: It looks like the prepack_fp16 does both dtype conversion and packing, which is not true of the int8 case. Is there any way to make this uniform? i.e convert to fp16 and then call pack?
_Originally posted by @raghuramank100 in https://github.com/pytorch/pytorch/pull/44582#discussion_r488162800_
cc @j... | oncall: quantization,low priority,triaged | low | Minor |
701,641,037 | TypeScript | Lazier typeof operator to enable limited "circular" references | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,Awaiting More Feedback | low | Critical |
701,798,080 | pytorch | Error message concerning dtype GRU not identical between devices | ## π Bug
<!-- A clear and concise description of what the bug is. -->
In 1.6, a bug exists where a GRU accepts an input `float32` anc a hidden state `float64` but only when on GPU. This will lead to unexpected, explosive results with very large or very small values.
```python
import torch
from torch import ... | module: error checking,triaged | low | Critical |
701,806,861 | go | gollvm: error in backend: Segmented stacks do not support vararg functions. Building goptuna, go-sqlite3 | It seems that I was lucky today: my first pure gollvm related bug.
### What version of Go are you using (`go version`)?
<pre>
$ go version
</pre>
go version go1.15rc2 gollvm LLVM 12.0.0git linux/amd64
### Does this issue reproduce with the latest release?
No idea.
### What operating system and process... | NeedsInvestigation | low | Critical |
701,816,001 | flutter | <base-config> in Network Security Configuration for Android is not honoured & fatal crash when using IP addresses as <domain> | ## Steps to Reproduce
### A) Not honouring `<base-config>`
1. Update `network_security_config.xml` as
```xml
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true"/>
<domain-config cleartextTrafficPermitted="false">
<!-- List the domains fo... | platform-android,engine,c: proposal,P3,team-android,triaged-android | medium | Critical |
701,908,981 | godot | Allow Hidpi leads to wrong window scale | **Godot version:**
3.2.3 RC 6 Official, MacOS
**OS/device including version:**
- MacBook Pro (13", 2020)
- 2,3 GHz Quad-Core Intel Core i7
- 16 GB 3733 MHz LPDDR4X
- Intel Iris Plus Graphics 1536 MB
**Issue description:**
Checking "Allow Hidpi" in the project settings (Display > Window > Dpi) scales down th... | bug,platform:macos,topic:porting,regression | medium | Major |
701,916,165 | node | http2: Client can return partial response (instead of error emit) | * **Version**: v14.10.1
* **Platform**: macOS 10.15.6
* **Subsystem**: http2
### What steps will reproduce the bug?
1. Setup a http2 server that will:
a. Send a response containing a `content-length` header.
b. Stall after transmitting part of the data (or just the headers).
c. Stop the transmission wi... | http2 | low | Critical |
701,922,512 | godot | Single discrete modulate key breaks animation player | **Godot version:**
3.2.2 stable
**OS/device including version:**
linux mint
**Issue description:**
Modulate faults with animation player. If you have a discrete modulate with a single key then two things happen:
1. After you have ran an animation, when you take the track back to the beginning, or simply... | bug,topic:editor | low | Critical |
701,929,849 | storybook | Controls is not visible/shown in canvas/addons (only in docs) | **Describe the bug**
I added controls to my story but it only shows in the `docs` tab not on the `canvas/addons`
**To Reproduce**
Steps to reproduce the behavior:
1. Go to https://everdevs.github.io/design-system/?path=/story/design-system-atoms-button--with-label
2. Controls-tab is not visible
3. Go to htt... | bug,addon: controls | medium | Critical |
701,967,320 | ant-design | DatePicker/RangePicker on mobile browsers | - [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://codesandbox.io/s/antd-reproduction-template-forked-uyqw0)
... | help wanted,Inactive,π±Mobile Device | medium | Critical |
701,970,386 | pytorch | AMP support for libtorch/c++ | ## π Feature
PyTorch 1.6 introduces AMP for python, but libtorch does not have these new functionalities.
## Motivation
AMP is becoming more and more needed to use all the power from the new NVIDIA RTX GPUs.
@mcarilli @gchanan @ngimel
cc @mcarilli | triaged,enhancement,module: amp (automated mixed precision) | low | Major |
701,976,005 | angular | Cannot bind SafeUrl to SVGImageElement | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
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.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
... | area: core,area: security,core: sanitization,P4 | low | Critical |
701,976,691 | flutter | [Video_player] video play doesn't play or has a black frame when using new version of video_player + chewie on iOS | Hello.
I've black screen when launching video_player on iOS 13.7 on iphone 7 (real device) with mp4 video (network url).
Video is loading but can't be played (no sound also).
Hope i'm giving enought information.
Thank you
video_player: ^0.10.12+2
```
[β] Flutter (Channel stable, 1.20.3, on Mac OS X 10.15... | c: regression,platform-ios,p: video_player,package,has reproducible steps,P2,found in release: 2.2,found in release: 2.3,team-ios,triaged-ios | low | Critical |
701,990,554 | TypeScript | Import path autocomplete with tsconfig path containing "/" | <!-- π¨ STOP π¨ STOP π¨ 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 before lo... | Bug,Help Wanted,Domain: Completion Lists | low | Critical |
702,048,386 | flutter | [Google maps plugin] Lag on IOS when using a large number of polylines. | Loading a large number of polylines on IOS seems to run much slower than Android. For example see results of my testing below. Notice that the Android lag increase roughly linearly (proportional to the number of polylines), while the IOS seems to increase exponentially.
IOS
-Loading 3000 polylines: ~14 seconds
... | platform-ios,c: performance,p: maps,package,has reproducible steps,P2,found in release: 2.2,team-ios,triaged-ios | low | Major |
702,089,192 | pytorch | 404 Page not found - inference_api.md & management_api.md | Getting page not found on clicking the below inference and management pytorch serve API links.
click the link below
http://pytorch.org/serve/management_api.md
http://pytorch.org/serve/inference_api.md
cc @ezyang @zou3519 @jlin27 | triaged,module: doc infra | low | Minor |
702,102,954 | node | Node not saving coverage when process is terminated using SIGINT/SIGTERM | * **Version**: v14.10.1
### What steps will reproduce the bug?
When running this code
```
function run() {
if (1) {
console.log(1);
} else {
console.log(2);
}
}
run();
setTimeout(process.exit, 3000)
```
If I stop the process using SIGINT/SIGTERM before the timeout kicks in, coverag... | coverage | low | Critical |
702,112,622 | pytorch | Get rid of copy_from | We have multiple dispatch, which means that if you have copy(CPU, XLA), you can be directed straight to XLA's specialized implementation of the copy kernel. This means we can get rid of the thicket of if statements plaguing `aten/src/ATen/native/Copy.cpp` and use the dispatcher to get us where we need to be.
This is... | module: internals,triaged | low | Minor |
702,123,218 | storybook | Css modules don't apply on stories after migrate storybook 4 to 5 | **Describe the bug**
I have a components library that working well in storybook 4.0.0, I migrated to 5.3.1 my components have their own css files, and what is happening is these styles are not applied to it on the story.
**To Reproduce**
I migrate to version 5 in storybook, I updated webpack config, and actually I... | question / support,configuration babel / webpack | low | Critical |
702,141,891 | pytorch | 16-bit input + AMP breaks AdaptiveLogSoftmaxWithLoss | ## π Bug
When feeding [AdaptiveLogSoftmaxWithLoss](https://pytorch.org/docs/master/generated/torch.nn.AdaptiveLogSoftmaxWithLoss.html) 16-bit input with amp.autocast enabled it will fail with:
`RuntimeError: Expected object of scalar type Half but got scalar type Float for argument #4 'source' in call to _th_index... | triaged,module: amp (automated mixed precision) | low | Critical |
702,146,153 | flutter | Accessibility - Exposing ReduceMotion | <!-- 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... | framework,a: accessibility,c: proposal,P3,team-framework,triaged-framework | medium | Critical |
702,155,440 | pytorch | Pytorch Installation from source fails (GCC-8.4/CUDA-10.2/RHEL7) and (GCC-7.5/CUDA-10.2/RHEL7) | ## π Bug
<!-- A clear and concise description of what the bug is. -->
OS: RHEL 7
GCC: 7.5 & 8.4
CUDA: 10.2
Pytorch installation form source fails with following message
```
Building wheel torch-1.7.0a0+8daaa3b
-- Building version 1.7.0a0+8daaa3b
cmake --build . --target install --config Release -- -j ... | module: build,triaged | low | Critical |
702,182,083 | flutter | Validate snap containment in Linux build | Based on a discussion today about the issues that have come in where Linux builds run from the snap are picking up things from outside the snap (which are tricky to debug), a suggestion was to see if we can actually validate at build time. Something like:
- In CMake, detect whether it's being built in the snap.
- If ... | tool,platform-linux,a: desktop,a: build,P3,team-linux,triaged-linux | low | Critical |
702,283,381 | pytorch | [tools.codegen] Remove byte-for-byte compatibility code | In tools.codegen, there are a lot of comments `Note [Byte-for-byte compatibility]`. The code they describe can be removed. Read the defining note to see where these comments came from and why they can be removed. | triaged,module: codegen | low | Minor |
702,298,632 | rust | Run linkchecker just on some docs? | I once again had a CI run fail due to a bad rustdoc link, and figured I'd try running that linkchecker locally. So I ran `./x.py test linkchecker --test-args library/alloc`, realized it was building a full rustc (`tidy` seems to overwrite that default so maybe the linkchecker should, too? that sounds like https://githu... | T-bootstrap,C-feature-request | low | Minor |
702,299,075 | flutter | Other plugins may not get performFetchWithCompletionHandler callback in FlutterApplicationLifeCycleDelegate if one of the plugins returns YES | The callback performFetchWithCompletionHandler returns a bool
But for individual plugins, if they return true here, no other plugins can get this callback anymore. [related code](https://engine.chinmaygarde.com/interface_flutter_plugin_app_life_cycle_delegate.html#a394bcd96560eb95f956fa1bf8bbaafc9)
aaclarke@ mentio... | engine,P2,a: plugins,team-engine,triaged-engine | low | Minor |
702,305,373 | pytorch | cblas_gemv is not being used for gemv on complex on CPU | There's no implementation of `gemv_use_fast_path` for complex types, so this means we are falling back to the slow implementation in aten/src/ATen/native/BlasKernel.cpp
cc @ezyang @anjali411 @dylanbespalko @nikitaved | triaged,module: complex | low | Major |
702,376,295 | opencv | opencv-ios no ffmpeg support, general query regarding video streaming to ios device. | System information (version)
OpenCV => 4.4
Operating System / Platform => iOS
Compiler => Xcode
Detailed description
I'm using OpenCV native C++ code.
I'm reading from an mjpeg stream which cannot open. This is my first time using the library on ios so don't know what's going on here. Any guidance would be appr... | feature,priority: low,category: videoio,platform: ios/osx | low | Minor |
702,386,351 | pytorch | [JIT] function decorated with @torch.no_grad() can not be exported when another function is called inside it. | ## π Bug
A function (decorated with @torch.no_grad()) can not be exported to torchscript if another function is called inside it.
## To Reproduce
```
def g(x):
return x + 1
@torch.no_grad()
def f(x):
return g(x)
torch.jit.script(f)
```
and we will get:
```
RuntimeError:
undefined value g... | oncall: jit,days | low | Critical |
702,390,509 | electron | API to get tray theme | <!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-... | enhancement :sparkles:,platform/macOS | low | Major |
702,395,147 | TypeScript | d.ts type imports are not resolved correctly in dependencies | **TypeScript Version:** 4.1.0-dev.20200915
**Search Terms:**
path module resolution
**Code**
Please check this repo: https://github.com/dkjii-g/tsc-ref-bug
Check the README for bugs/instructions.
**Expected behavior:**
- The 4 folders compile correctly (they are slight variations to better explain... | Needs Investigation | low | Critical |
702,411,652 | pytorch | Timed out RRef can still be used in subsequent RPCs | The problem is that between when an RRef is created and when an RRef is timeout, applications can still use this RRef in anyway they want. As a result, if the RRef creation function didn't crash, but just taking longer than the specified timeout, it is possible that an RPCs using this RRef can still succeed, even if th... | triaged,module: rpc | low | Critical |
702,443,449 | neovim | CursorMoved event closes float too early if there is a pending cursor move | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.5.0-f34eeba2d
- `vim -u DEFAULTS` (version: ) behaves differently? only neovim
- Operating system/version: macos 10.15.6
- Terminal name/version: kitty
- `$TERM`: xterm-kitty
### Steps to reproduce using `nvim -u NOR... | bug,lsp,events | low | Major |
702,474,920 | PowerToys | PowerShell integration for FancyZones | It would be really practical to be able to move windows to a desired zone using a PowerShell cmdlet. Likewise for switching between FancyZones layouts.
When changing between different screen-setups, I'd like to be able to just run a script that checks which setup I'm on and which programs are running to then move th... | Idea-Enhancement,Product-FancyZones | medium | Critical |
702,490,109 | go | x/net/http2: graceful shutdown support to standalone HTTP/2 server | This is a feature request which follows #4674.
HTTP/2 server only supports graceful shutdown when integrated with the standard
library's HTTP Server: https://github.com/golang/net/blob/62affa334b73ec65ed44a326519ac12c421905e3/http2/server.go#L199
We have a use case where HTTP/2 server is used as a stand-alone s... | NeedsInvestigation,FeatureRequest | low | Major |
702,523,849 | flutter | Allow FlutterFragment to be shown as Service's view. | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | c: new feature,platform-android,platform-ios,engine,a: platform-views,c: proposal,P3,team-engine,triaged-engine | low | Critical |
702,528,087 | pytorch | Hybrid Memory | ## π Feature
The idea is to fall back to the main memory (RAM) for storing values that aren't required for immediate calculations when training or inferencing through a model using a GPU.
## Motivation
Models that quickly run out of memory only do so because weights and gradients of the previous layers have b... | module: cuda,module: memory usage,triaged,needs research | low | Major |
702,528,368 | flutter | Document how to load assets in package dependencies | <!-- 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... | framework,d: api docs,a: assets,c: proposal,P2,team-framework,triaged-framework | low | Critical |
702,617,077 | vue | Add feature to catch errors in a production build for compatibility with external error tracking | ### What problem does this feature solve?
Currently all warnings are suppressed when Vue is built with `process.env.NODE_ENV === production`. However, many warnings are more severe than a warning - they break functionality. Duplicate keys are a good example. These are hard to filter out in a development environment b... | feature request | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.