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 |
|---|---|---|---|---|---|---|
607,893,953 | godot | CSGMesh GetAabb() / GetTransformedAabb() returns zero | **Godot version:**
3.2.2.beta1
**OS/device including version:**
Windows 10 Pro (10.0.18362)
**Issue description:**
CSGMesh methods `GetAabb()` and `GetTransformedAabb()` returns `Vector3.Zero`.
`csgMesh.Mesh.GetAabb()` seems to return the correct value.
**Steps to reproduce:**
1. Create a CSGMesh node.
2... | bug,topic:core,confirmed | low | Minor |
607,909,454 | TypeScript | Simple Comparison of Generics not allowed? | **TypeScript Version:** 3.8
**Search Terms:**
generic comparison
compare generic strings
**Code**
```ts
function test<A, B>(one: A, two: B): A {
if (one === two) {
throw new Error('no');
}
return one;
}
const obj = {};
test(obj, obj);
```
**Expected behavior:**
While the gener... | Suggestion,Experience Enhancement | low | Critical |
607,916,936 | TypeScript | Enforce consistent imports when directory is in jsconfig's paths | *TS Template added by @mjbvz*
**TypeScript Version**: 3.9.0-dev.20200427
**Search Terms**
- javascript
- auto import
- symlink
---
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search exi... | Needs Investigation | low | Critical |
607,944,085 | pytorch | Error running trace on Pytorch Crowd Counting model | Hi,
I'm trying to use your prebuilt Pytorch crowd counting model with [NVIDIA's Triton Inference Server](https://docs.nvidia.com/deeplearning/sdk/triton-inference-server-guide/docs/index.html). Looks like it requires the PyTorch model to be saved by `torch.jit.save()`. I'm facing errors while tracing the model with ... | oncall: jit,triaged | medium | Critical |
607,952,618 | pytorch | Add BufferDict container | ## 🚀 Feature
A `torch.nn.BufferDict` container that mirrors `ParameterDict`.
## Motivation
We sometimes work with a lot of buffers, and it would be nice to have a convenient way of dealing with those, similar to `ParameterDict`, but well, with the values being buffered tensors rather than of type `torch.nn.Parame... | feature,module: nn,triaged,actionable | medium | Major |
607,974,917 | flutter | Support iPadOS pointer interactions | This is an umbrella issue that tracks the support for iPadOS pointer interactions.
However, features beyond basic cursor type and hover effect will likely have a low priority for a while.
## Reference
- Apple's [Design guidelines](https://developer.apple.com/design/human-interface-guidelines/ios/user-interaction/p... | c: new feature,platform-ios,framework,a: fidelity,f: cupertino,f: gestures,a: desktop,a: mouse,P3,team-design,triaged-design | medium | Critical |
607,981,441 | pytorch | The pytorch's graph is lack of common names for nodes | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->

Many nodes do not have a COMMON name. It is difficault to figure out who it is.
## To Reproduce
Steps to reproduce the behavior... | module: bootcamp,feature,module: tensorboard,oncall: visualization,days | low | Critical |
608,003,134 | godot | AnimationPlayer doesn't show the keyframe icon for AnimatedSprite, and consequently that node hides the keyframe icon for the rest of the nodes | **Godot version:**
3.2.1
**OS/device including version:**
Win 10 v1909
**Issue description:**
When creating a new track on the AnimationPlayer and switching to an animated sprite node, the keyframe icons do not appear. Switching to any other node will hide the keyframe icon for that node as well. The only way to r... | bug,topic:editor | low | Critical |
608,003,528 | godot | AnimatedSprite node doesn't show keyframe icon and disables the icons for any other node. | **Godot version:**
3.2.1
**OS/device including version:**
Win 10 v1909
**Issue description:**
When creating a new track on the AnimationPlayer and switching to an animated sprite node, the keyframe icons do not appear. Switching to any other node will hide the keyframe icon for that node as well. The only way to r... | bug,topic:editor | low | Critical |
608,042,021 | flutter | Flutter Textstyle class ignores invalid fontFamily and fontSize | Everything is recently installed.
```
Android 3.63(April 13, 2020)
C:\Users\allen>flutter --version
Flutter 1.17.0-3.2.pre • channel beta • https://github.com/flutter/flutter.git
Framework • revision 2a7bc389f2 (6 days ago) • 2020-04-21 20:34:20 -0700
Engine • revision 4c8c31f591
Tools • Dart 2.8.0 (build 2.8.0... | framework,engine,a: typography,a: error message,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-engine,triaged-engine | low | Critical |
608,109,277 | node | http: Reduce API surface | I would like to suggest that [`complete`](https://nodejs.org/dist/latest-v14.x/docs/api/http.html#http_message_complete) and [`aborted`](https://nodejs.org/dist/latest-v14.x/docs/api/http.html#http_message_aborted) are unnecessary API surface and should be at least doc deprecated.
The user can keep of track of this ... | http | medium | Major |
608,115,992 | pytorch | 3D grouped & depthwise convolution very slow on backward pass | Hi,
It seems that 3D grouped & depthwise convolution is very slow on the **backward** pass. Backward pass on depthwise convolution takes about 10 times the time of a standard 3D convolution's forward pass.
I understand cudnn does not yet support fp32 depthwise convolution (ie forward pass is slower than standard ... | module: cudnn,module: cuda,triaged | low | Major |
608,156,720 | angular | A destroyed view can be interacted with in ivy | In Angular with ViewEngine a destroyed view can't be interacted with (ex. one can't trigger change detection on such views). With ivy it is possible to call methods on a destroyed view and there is no error message / logs indicating that a view was destroyed.
Here is [the test exposing difference in VE vs. ivy behav... | freq1: low,area: core,state: confirmed,core: dynamic view creation,type: confusing,P4 | low | Critical |
608,159,908 | ant-design | Slider组件onAfterChange事件触发问题 | - [ ] 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-sldlq)
### St... | 🐛 Bug,Inactive | low | Minor |
608,167,055 | pytorch | torch.cdist() implementation without using contiguous() calls | ## 🚀 Feature
A decent torch.cdist() implementation that does not have contiguous() calls which usually resulted in excessive GPU memory usage
## Motivation
See the original problem at https://discuss.pytorch.org/t/understanding-cdist-function/76296/12?u=promach
## Pitch
Modify [these two lines](https://gi... | module: performance,triaged,enhancement,module: distance functions | low | Minor |
608,167,791 | pytorch | Compatibility of subset dataset with disabled batch sampling | I think there is a compatibility issue with disabled batch sampling and subset dataset
The use-case - define custom batch sampling, and split the dataset using PyTorch split utility function
Here's a minimal working example
```
self.train_dataset, self.val_dataset, self.test_dataset = torch.utils.data.random_split(... | module: dataloader,triaged | low | Critical |
608,170,112 | pytorch | Reset a `torch.optim.Optimizer` | ## 🚀 Feature
A 'reset_state' method that resets the `state` of an optimizer.
## Motivation
Sometimes we may need to reuse an optimizer to train the same model on another dataset. Some optimizers, though, keep track of some additional stats (e.g. Adam's moving averages), and currently, there is no method to reset... | module: optimizer,triaged | medium | Critical |
608,225,309 | rust | Unhelpful error message, and endless loop in cargo, when a procedural macro overflows its stack | Using `rustc 1.44.0-nightly (b2e36e6c2 2020-04-22)` on Windows 10.
Create a proc-macro crate `crate0` with these contents:
extern crate proc_macro;
use proc_macro::TokenStream;
#[proc_macro]
pub fn overflow_stack(item: TokenStream) -> TokenStream {
fn recurse(i: u64) {
if i < std::u64::MAX {... | I-crash,C-enhancement,A-diagnostics,A-macros,T-compiler,D-confusing,D-papercut,D-verbose,D-terse,A-proc-macros | low | Critical |
608,231,282 | go | cmd/compile: experiment with more integer comparison optimizations | In Go 1.15 we've added support for integer-in-range optimizations to the SSA backend. This same infrastructure (mostly in https://github.com/golang/go/blob/master/src/cmd/compile/internal/ssa/fuse_comparisons.go) can quite easily be extended to perform other potential control flow transformations. I've opened this issu... | Performance,NeedsInvestigation,compiler/runtime | low | Minor |
608,273,668 | godot | Inspector: Click-drag to increase or decrease property values does not work with tablet/pen | **Godot version:** 3.2.1
**OS/device including version:**
Win64, Wacom Intuos
**Issue description:**
With tablet and pen the values get stuck:

With mouse it works fine:

If the Tilemap in question has the **ysort** property enabled, only the first tile will be set to ... | bug,topic:physics | low | Critical |
608,410,810 | pytorch | [docs] Unclear return type of torch.randint and extra comma in arg spec | 1. Note two commas in function spec
2. It's unclear if default output is `torch.int64` (in practice it is) or `torch.get_default_dtype()` which is usually `torch.float32`. It's unclear what `torch.set_default_tensor_type()` reference has to do with `torch.randint`'s return type since by default it returns an integral ... | module: docs,triaged | low | Minor |
608,426,841 | TypeScript | Missing autocomplete with optional chaining operator | **TypeScript Version:** 3.8 and 3.9 nightly
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** optional chaining, autocomplete, intellisense
**Code**
The `BaseDataClass` experiences the issue here, most likely due to some of the funkiness with gene... | Bug,Domain: Completion Lists | low | Minor |
608,451,627 | rust | `rustc` should prefer statically linking native dependencies with unspecified kind if `crt-static` is enabled | The main goal of `+crt-static` (at least on non-Windows targets) is to produce self-contained statically linked executables.
With this goal in mind `rustc` switches linking of 1) Rust crates and 2) libc to static if possible. (The `libc` part is done in the libraries through lazy `cfg`s though.)
However, for native... | A-linkage,T-compiler,C-bug | low | Major |
608,468,518 | flutter | String.fromEnvironment without a const silently does the wrong thing in the VM | As [44083](https://github.com/flutter/flutter/pull/44083) was merged in, I would expect it to be working in at least dev, but I am not able to get it to work as expected. I set the channel to dev (flutter channel dev), then did an upgrade (flutter upgrade). Then I issued the following:
flutter -run -t lib/main_generic... | engine,dependency: dart,customer: crowd,has reproducible steps,P2,found in release: 2.2,team-engine,triaged-engine | low | Critical |
608,474,030 | go | x/text/collate: unexpected result of KeyFromString() | <!--
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
1.1.13
</pre>
### Does this issue reproduce with the latest release?... | NeedsInvestigation | low | Critical |
608,498,658 | terminal | About dialog appears abruptly, without animation | @DHowett-MSFT I think this PR introduced a new problem that the about dialog no longer opens and closes smoothly with an animation, it appears and disappears abruptly, also the dialog border color is greyish in light theme instead of the accent color (maybe its intended).
_Originally posted by @AnuthaDev in https://... | Issue-Bug,Area-UserInterface,Product-Terminal,Priority-3 | low | Minor |
608,499,951 | rust | Enabling `+crt-static` in a blanket way breaks dynamic libraries including proc macros | This is pretty much https://github.com/rust-lang/cargo/issues/7563 generalized, which was fixed in https://github.com/rust-lang/rust/pull/69519, which I don't consider a correct or satisfactory solution.
https://github.com/rust-lang/rust/pull/71586 may be a good preliminary reading.
---
If you are building somethi... | A-linkage,T-compiler,C-bug | medium | Critical |
608,528,298 | pytorch | rsub incorrectly exposed in torch | ```
>>> torch.rsub
<built-in method rsub of type object at 0x113435ad0>
```
I believe this is supposed to be an implementation for the magic method `__rsub__`; so this should be made uniform with the rest of the magic methods (which are directly exposed by their names). | triaged,better-engineering | low | Minor |
608,536,581 | pytorch | Tensor.is_same_size not documented | https://pytorch.org/docs/master/search.html?q=is_same_size&check_keywords=yes&area=default#
Seems to be a thing for conveniently testing if sparse sizes actually match. Maybe shouldn't be a method as it is right now. | module: docs,triaged | low | Minor |
608,537,627 | pytorch | Tensor.as_strided_ is not documented | https://pytorch.org/docs/master/search.html?q=as_strided_&check_keywords=yes&area=default# | module: docs,triaged | low | Minor |
608,539,716 | pytorch | torch.clamp_max clamp_min shouldn't be there | ~~Maybe they're not supposed to be in torch namespace?~~ | triaged,better-engineering | low | Minor |
608,539,770 | pytorch | Multi-Process Single-GPU is bad | I'm sorry to do this, but since your release states that you plan to deprecate Single-Process Multi-GPU, I have to talk about all the issues I have with MPSG.
First, this mode takes up a CPU thread per GPU you have. I'm sure that the developers of pytorch are used to working with servers that have tens of CPU cores ... | oncall: distributed,triaged,module: data parallel | low | Critical |
608,562,123 | go | x/playground: detect and run Benchmark functions | ### What did you do?
Wrote a Playground source file containing a Benchmark function, for which I wanted to see the allocations per operation (a number that does not depend in any way on the absolute running time of the program):
https://play.golang.org/p/LKZwUYcGLaG
```
package main
import (
"runtime"
"t... | NeedsInvestigation,FeatureRequest | low | Critical |
608,562,663 | pytorch | RuntimeError: CUDA error: an illegal memory access was encountered with channels_last | I get an illegal memory access when trying to train mnasnet (any version) with apex (O1) and channels_last
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
use the apex imagenet example:
python -m torch.distributed.launch --nproc_per_node=2 mai... | high priority,module: dependency bug,module: binaries,module: cudnn,module: cuda,triaged | medium | Critical |
608,577,155 | PowerToys | [Run][Folder plugin] No autocomplete text on directories | <!--
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/traces to secure@microsoft.com, referencing this GitHub issue.
-->
# Environment
```
Windows build number: [run "ver" at a command prompt]
PowerToys version:
PowerT... | Idea-Enhancement,Product-PowerToys Run,Run-Plugin | low | Critical |
608,577,707 | flutter | ExpansionTile subtitle should have the same color as ListTile subtitle | <!-- 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,f: material design,c: API break,has reproducible steps,found in release: 3.0,found in release: 3.1,team-design,triaged-design | low | Critical |
608,603,730 | pytorch | [RuntimeError] Tensor creation using storage fails | ```
>>> x=torch.tensor(4)
>>> x.storage()
4
[torch.LongStorage of size 1]
>>> torch.Tensor(x.storage())
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError: result.storage().dtype() == storage.dtype() INTERNAL ASSERT FAILED at "../aten/src/ATen/native/Resize.h":103, please rep... | module: error checking,triaged | low | Critical |
608,626,260 | flutter | pod install error NoMethodError - undefined method `size' for nil:NilClass at macho_file.rb in `populate_mach_header' | There is a lot of issues filed against CocoaPods from a situation that arises in Flutter for example: https://github.com/CocoaPods/CocoaPods/issues/8377. They all have the following text:
`NoMethodError - undefined method `size' for nil:NilClass`
I tried the following things to fix the error:
1) `flutter upgrade; ... | platform-ios,tool,P3,team-ios,triaged-ios | low | Critical |
608,646,450 | go | cmd/compile: arch.MAXWIDTH on amd64 out of date? | https://github.com/golang/go/blob/b1b67841d1e229b483b0c9dd50ddcd1795b0f90f/src/cmd/compile/internal/amd64/galign.go#L17
Most amd64 implementations only support 48 bits of linear address space, but apparently Intel's Ice Lake product line launched last year and support up to 57 bits.
Theoretically fixing this shou... | NeedsInvestigation,compiler/runtime | low | Minor |
608,669,698 | godot | get_string_size() and get_wordwrap_string_size() don't recognize the tab character. | **Godot version:**
3.2.1
**OS/device including version:**
Windows 10
**Issue description:**
In the TextEdit you can insert a TAB character into your text and it takes up space. However if you test the size with `get_string_size()` or `get_wordwrap_string_size()`, you will get 0.
the code `get_string_size("\t... | bug,topic:gui | low | Minor |
608,672,273 | PowerToys | [Run][WindowWalker Plugin] Find apps minimized in Systray | <!--
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/traces to secure@microsoft.com, referencing this GitHub issue.
-->
Windows 10
```
Windows build number: 1909
PowerToys version: v0.16.1
PowerToy module for which you... | Idea-Enhancement,Product-PowerToys Run,Run-Plugin | low | Critical |
608,672,931 | vue | `src` attribute of `img` inside `picture` should be set after `img` is appended to `picture` to avoid unnecessary requests | ### Version
2.6.11
### Reproduction link
[https://codepen.io/CaseJnr/pen/VwvWbPE](https://codepen.io/CaseJnr/pen/VwvWbPE)
### Steps to reproduce
1. Open the codepen link in safari
2. Inspect the element
3. Reduce the view width below 900px and refresh the page
4. You will notice that both ... | improvement,browser quirks | low | Major |
608,676,958 | flutter | StreamBuilder not setting the correct value for connectionState for some Streams | In order to simplify reproduction of this issue, I created a sample App [here](https://github.com/feinstein/streambuilder_connectionstate).
I found this bug while addressing an issue reported in [my library](https://github.com/feinstein/firebase_user_stream), so I adapted the user's example here. I know that `Strea... | framework,a: quality,P2,team-framework,triaged-framework | low | Critical |
608,690,673 | vscode | Custom editor autosave menubar state not updated properly | Hi @mjbvz @jrieken,
I've been catching up with the daily updates, thanks for them btw.
While working on our stuff, I've been noticing some issues on VSCode.
Probably they're known issues but I'm sharing here in case they've been missed somehow.
I'm able to reproduce them on both our code and [this](https://github... | bug,help wanted,custom-editors | low | Major |
608,734,773 | go | encoding/asn1, crypto/x509: failed to parse Intermediate CA certificate | A intermediate CA certificate contains X.509 certificate policy extension with OID **1.2.36.67006527840.666.66.1.1**. The fourth oid (67006527840) in that extension is greater than math.MaxInt32, which causes a certificate unmarshaling error. Specifically the error occurs in the asn1.Unmarshal function while trying to ... | NeedsInvestigation | low | Critical |
608,776,753 | pytorch | No speedup from channels_last with DataParallel | ## 🐛 Bug
For single GPU training, channels last improves performance for many networks that I have tried, but I get no speedup at all when running the same code with DataParallel and two Titan RTX's with nvlink.
## To Reproduce
Steps to reproduce the behavior:
Unfortunately, apex's imagenet example does not... | module: performance,triaged,module: data parallel,module: memory format | low | Critical |
608,804,560 | pytorch | Log-linear version of cumsum and cumprod | ## 🚀 Feature
Log-linear version of cumsum and cumprod, as the current version has quadratic time-complexity.
## Motivation
The current cumsum and cumprod are too slow for long sequences. They need a faster implementation such as the one I wrote here, which I translated from Jax ([here](https://github.com/google... | module: performance,feature,triaged | low | Major |
608,808,595 | pytorch | undefined reference to pthreadpool_compute* | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
When building with current master 07bb442b240edc8bdc944fb466b1fb56c84fa4ee
with following script
```bash
#!/bin/bash
export REL_WITH_DEB_INFO=1
export USE_CUDA=1
export BUILD_TEST=0
export BUILD_BINARY=0
export BUILD_CAFFE2_OPS=0
... | module: build,triaged,module: xnnpack | low | Critical |
608,831,966 | go | gccgo: arm64: programs built with the -static option crashed during runtime initialization | <!--
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.14.2 gccgo (GCC) 10.0.1 20200421 (experimental) linux/arm... | NeedsInvestigation,arch-arm64 | low | Critical |
608,843,562 | go | doc: specify grammar of Deprecated convention | This is a follow-up to #10909, which [defined the convention as follows](https://github.com/golang/go/wiki/Deprecated):
> To signal that an identifier should not be used, add a paragraph to its doc comment that begins with `Deprecated:` followed by some information about the deprecation, and a recommendation on what t... | Documentation,NeedsDecision | low | Major |
608,844,983 | terminal | Add support for Azure Cloud Shell `code` Editor | # Environment
```none
Windows build number: Windows 10 Version 1909 Build 18363.657
Windows Terminal version: 0.11.1121.0
```
# Steps to reproduce
1. Open the Windows Terminal
2. Open Azure Cloud Shell
3. Login to Azure
4. Type code . or code file.txt
# Expected behavior
The azure cloud shell editor ... | Issue-Feature,Area-Extensibility,Product-Terminal,Area-AzureShell | low | Major |
608,903,329 | flutter | Access to NavigationRequest Headers in webview NavigationDelegate Function | **Issue -** If I am viewing a page on webview, and a link opens a PDF on the page, then flutter webview can't handle that. We can have a work around to download that file onto user's machine. If its something different than html page.
I was trying to do this based upon the url and prevent the navigation if the url ... | c: new feature,d: examples,p: webview,package,team-ecosystem,P3,triaged-ecosystem | low | Major |
609,039,409 | rust | Tracking Issue for "unsafe blocks in unsafe fn" (RFC #2585) | This is a tracking issue for the RFC "unsafe blocks in unsafe fn" (rust-lang/rfcs#2585).
The lint `unsafe_block_in_unsafe_fn` is stable, but the RFC proposes some further things we might want to do.
### About tracking issues
Tracking issues are used to record the overall progress of implementation.
They are als... | B-RFC-approved,T-lang,C-tracking-issue,disposition-merge,finished-final-comment-period,F-unsafe-block-in-unsafe-fn,S-tracking-impl-incomplete | high | Critical |
609,071,598 | rust | Why implementation of iterator is not generic enough in async context? | [Cross posting stackoverflow](https://stackoverflow.com/questions/61491070/why-implementation-of-iterator-is-not-generic-enough-in-async-context) because it's look like a compiler bug/limitation.
---
Given the [following][1] snippet:
```rust
use futures::stream::{self, StreamExt};
async fn from_bar(bar: &[... | A-diagnostics,T-compiler,C-bug,A-async-await,AsyncAwait-Triaged,D-confusing | low | Critical |
609,074,352 | flutter | [camera] Add byte streaming capability for the camera | ```startImageStream``` was added to Flutter camera but this isn't sufficient.
We really need ```startByteStream``` which also includes audio, and is much faster.
Many of us are trying to create live streams from our apps and at the moment it's impossible.
```startVideoRecording``` locks the file, soon as for e... | c: new feature,p: camera,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | medium | Major |
609,079,621 | vscode | QuickPick in web with VoiceOver does not read anything | 1. yarn web
2. VoiceOver
3. Cmd + P, use keyboard navigation to change focus -> VoiceOver does not read anything
I can repro with Safari and Chrome.
Does not repro on Linux and Win. So might be a VoiceOver issue. | bug,accessibility,quick-pick,web | low | Major |
609,081,437 | flutter | Font size is different on Physical Device and Simulator/Emulator | ## Steps to Reproduce
After building the project and install it on a physical device (iPhone 7, XR and XR MAX), I realized that font size is different.
**Expected results:** <!-- what did you want to see? -->
Same font size on device and simulator.
**Actual results:** <!-- what did you see? -->
---
- Font... | framework,f: cupertino,a: quality,a: typography,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design | medium | Major |
609,084,444 | godot | Can't assign mouse buttons or mouse wheel to editor shortcuts | **Godot version:**
All versions including v4.0.dev.custom_build.1d45a269f
**OS/device including version:**
W10 1903
**Issue description:**
Can't assign mouse button inputs to editor shortcuts
**Steps to reproduce:**
Editor Settings > Shortcuts > Try to set any mouse button, can't
**Minimal reproduction project:... | enhancement,topic:editor,usability | medium | Major |
609,109,490 | godot | Unable to perform a headless Android build (with custom builds) without first opening the GUI | **Godot version:**
3.2.1+
**OS/device including version:**
Android
**Issue description:**
The headless version of godot can be used to export projects without opening the editor. This is important for Continuous Delivery & automation of development.
Since Godot 3.2.1, we have been able to use a custom android... | enhancement,platform:android,topic:editor,topic:export | low | Major |
609,164,978 | flutter | FocusPointer for GestureDetection | ## Use case
It's come to my attention that it is possible for a Widget to be impervious to gestures. (`Ignore-` and `AbsorbPointer`). Except it actually isn't possible to easily write a widget with a second `GestureDetector` and have the `Gesture`s not be considered by parent widgets.
## Proposal
A `FocusPoint... | c: new feature,framework,f: gestures,c: proposal,P3,team-framework,triaged-framework | low | Minor |
609,181,849 | flutter | Service worker caching should be smarter | There is a reported hit to IPL when using the service worker caching on the new gallery https://github.com/flutter/gallery . The current caching strategy is optimized for small applications, but larger ones will need a more sophisticated strategy to avoid downloading absolutely everyone on first load. Some ideas:
- ... | tool,c: performance,platform-web,P3,team-web,triaged-web | low | Major |
609,186,793 | node | http: ServerRequest & ServerResponse does not set destroyed false | https://github.com/nodejs/node/pull/33131 and https://github.com/nodejs/node/pull/33120 fix this for client side, we should do the same thing server side and ensure that streams that have emitted `'close'` also have `destroyed` set to `false` | http | low | Minor |
609,194,765 | youtube-dl | Adobe Spark | <!--
######################################################################
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 |
609,214,064 | go | x/playground: very large output is sometimes corrupted | Today and yesterday, I've observed instances where a playground execution seems to be successful (there's no error), but the output is truncated rather than complete.
Filing this issue for tracking purposes, will fill in more information later.
**Edit:** A workaround that is available is to modify the program (e.... | NeedsInvestigation | medium | Critical |
609,223,046 | pytorch | Cannot build pytorch with linker arguments in C{,XX}FLAGS | ## 🐛 Bug
When building pytorch with the following flags, the compiler aborts due to unknown arguments. To be specific, arguments of the for `-Wl,--sort-common` or `-Wl,-z,relro` get transformed to `-Wl --sort-common` or `-Wl -z relro` respectively. Apparently the commas are not respected by the build system and the... | module: build,triaged | low | Critical |
609,223,365 | terminal | ColorTool: Add ps1xml as an accepted extension | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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... | Product-Colortool,Help Wanted,Issue-Task,Needs-Tag-Fix | low | Critical |
609,255,789 | godot | Deleting freed object from scene causes game crash | **Godot version:**
92d4a0c
**Steps to reproduce:**
1. Enable "Sync Scene Changes"
2. Make some object that gets deleted, e.g. Timer self-destructing with timeout connected to free
3. Run the game and wait for the object to be deleted
4. Remove it in the local tree in the editor
5. Return to game
6. It freezes... | bug,topic:editor | low | Critical |
609,270,876 | TypeScript | Function name not preserved when exported on definition | **TypeScript Version:** 4.0.0-dev.20200429
**Search Terms:**
function name
shorthand function name missing
exported function missing name
**Code**
```bash
cat > test.ts <<"EOF"
var test1 = () => {};
export var test2 = () => {};
console.log(`name for test1 = "${test1.name}"`);
console.log(`name for tes... | Bug | low | Critical |
609,275,934 | pytorch | Improve visibility in test suite timings | We now have enough tests that it is quite hard to maintain them and CI takes a significant amount of time.
A framework to get a better understanding of the runtime of the tests could be very useful to prioritize refactoring and cleaning of tests to speed things up.
Key features:
- Individual tests timing (using se... | module: ci,module: tests,triaged,better-engineering | low | Major |
609,279,573 | excalidraw | Text gets blurred after text editing looses focus | ### How to reproduce
1. start with fresh canvas
2. enable the text tool, choose the “code” font
3. click in the empty space to insert text
4. type "hallo"
5. click somewhere else to end the text entering/loose focus from the text object
### What happens
The text gets a bit blurry.
### What should happen
Th... | bug | low | Major |
609,280,078 | TypeScript | Add the Node that comes with Visual Studio as a NodePath fallback in the .targets file in the Microsoft.TypeScript.MSBuild Nuget package | I am working on a new project using ASPNET Core 3.1 and I wanted to write our font-end code in TypeScript, but found a little problem: You can't use TypeScript and build the project using the dotnet CLI commands if you don't have a stand alone installation of Node. If you build using Visual Studio, it works ok because ... | Suggestion,Visual Studio | low | Critical |
609,286,164 | go | x/build: add a Windows builder with clang | In theory, we should be able to use either GCC or Clang on all platforms where cgo is supported. Currently, none of the Windows builders use Clang. It would be good to verify cgo works in that configuration. | OS-Windows,Builders,NeedsInvestigation,new-builder | low | Major |
609,305,636 | rust | `TryFrom` for now-incompatible type falls back to `From` error message | I am working on a library which at some point converts a `mysql_common::value::Value` to a type `DataType` via `DataType::try_from(<value>)`. I am using an `impl TryFrom<mysql_common::value::Value> for DataType` defined in a separate crate, which worked well initially. However, this other crate has since then bumped up... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-confusing,D-newcomer-roadblock,D-crate-version-mismatch | low | Critical |
609,307,126 | TypeScript | Support declaring @types as the supported route for typings dependencies in the package.json | ## Search Terms
package json types field types types module
## Suggestion
Allow libraries written in JavaScript to be able to declare that they have types in DT (or other modules), and that they support a certain version of it.
### For example:
Express does not support TypeScript but trusts that the Def... | Suggestion,Needs Proposal,In Discussion | low | Major |
609,315,063 | TypeScript | Declaration file generation not working as expected | **TypeScript Version:** 4.0.0-dev.20200429 (when trying with `@next`)
**TypeScript Version:** 3.8.0.0-dev.20200429 (when using my version `^3.8.0`)
**Search Terms:** module resolution, lerna, monorepo, import type, declaration file
**Code**
Repository https://github.com/Volox/tsc-declaration-issue
To boots... | Needs Investigation | low | Critical |
609,318,794 | flutter | Don’t warn about running as root within systemd container | <!-- Thank you for using Flutter!
Please check out our documentation first:
* https://flutter.dev/
* https://api.flutter.dev/
If you can't find the answer there, please consider asking a question on
the Stack Overflow Web site:
* https://stackoverflow.com/questions/tagged/flut... | c: new feature,tool,a: quality,P3,team-tool,triaged-tool | low | Critical |
609,319,077 | opencv | CMake: make public version of BUILD_LIST feature | Problem:
- current name is not conflict free. For example `OPENCV_` or `CV_` prefix is preferable.
- ambiguous purpose: it is about modules only (for example, it is not about 3rdparty build dependencies). `MODULES` suffix can clarify such purpose.
Acceptance criteria:
- add new name
- add information into build-... | feature,category: documentation,category: build/install | low | Minor |
609,340,909 | TypeScript | Rename refactoring doesn't handle changing a member to a non-Identifier | **TypeScript Version:** 3.8.3
**Search Terms:** refactor rename space identifier
**Code**
```ts
interface Foo {
x: number;
}
var obj: Foo = {
x: 1,
};
obj.x = 2;
```
Rename the `x` member of `Foo` to ` x` (prefixed with space).
**Expected behavior:**
```ts
interface Foo {
" x": number;
}
... | Bug,Needs Proposal | low | Minor |
609,342,749 | pytorch | Implement generic function scheduler in c10/util | ## 🚀 Feature
It would be useful to have a general utility in PyTorch that allows functions to be run periodically at a given time interval. This would be similar to folly's functionScheduler (https://github.com/facebook/folly/blob/master/folly/experimental/FunctionScheduler.cpp). This will be useful in a few differ... | triaged,module: rpc | low | Minor |
609,363,278 | vscode | Tasks (and TaskExecutions) are not === in the onDid(Start|End)Task callbacks. | <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been... | bug,tasks | low | Critical |
609,405,197 | PowerToys | Dynamically show Preview Pane when there's a preview available | # Dynamically show Preview Pane when there's a preview available
I'm not sure if this is even possible to do at an application level, might require Windows feature update. But effectively, I do want previews for MD/SVGs like this PowerToy does, but I don't want an empty "Preview Pane" taking up space the entire time... | Idea-Enhancement,Product-File Explorer | low | Major |
609,408,089 | bitcoin | Add new getrpcwhitelist call | For an RPC user it would be nice to be able to discover its whitelist (#12248). A new RPC `getrpcwhitelist` should be added for that.
#### Useful skills:
Basic understanding of the Bitcoin Core RPC interface, RPC whitelists and our functional test framework
#### Want to work on this issue?
The purpose of th... | RPC/REST/ZMQ | low | Major |
609,448,409 | pytorch | Are there any differences in kernel memory between RX2080's and Quadro RTX4000? | 🐛 Bug
My libtroch DL-learning code operated correctly in Geforce RTX2080 ,but my code did not opearate
in Quadro RTX4000.
Both Geforce RTX2080 and Quadro RTX4000 have 8GB GDDR memory.
But it seemed that Memory capacity was sufficient at Quadro RTX4000.
I added the function "torch.cuda.empty.cache()" after 1 ... | module: cuda,module: memory usage,triaged | low | Critical |
609,461,829 | godot | Extending engine classes in GDScript or C# not working | **Godot version:**
3.2.1
**OS/device including version:**
All platforms
**Issue description:**
Extending engine classes is essentially broken.
**No control over call of super functions**
In the current state, godot will call all the super classes' implementations of a function and the user has no way to op... | topic:gdscript,documentation,topic:dotnet | low | Critical |
609,468,343 | material-ui | [Autocomplete] New API to control the highlighted option | - [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.
## Summary 💡
Typing into the auto-complete and pressing enter should select something, such as the suggested option. The suggested option to select should be highlighted.... | new feature,component: autocomplete | medium | Critical |
609,469,853 | flutter | `window.locale` is `null` on Android unless the locale is sent via the channel | This came across after https://github.com/flutter/engine/pull/17473 was merged. Can `window.locale` be `null` on Android? If yes, what is the recommended practice on Android?
I presume if a 3P dependency is consuming `window.locale`, then this would be unexpected in an add-to-app scenario, for example.
cc @xst... | platform-android,engine,P2,team-android,triaged-android | low | Minor |
609,489,609 | pytorch | Add name to Class Parameter() | ## 🚀 Feature
Add name to Class Parameter() [link] (https://github.com/pytorch/pytorch/blob/master/torch/nn/parameter.py).
## Motivation
Currently, parameter names are available via `nn.Module.name_parameter()`, it is good enough for a model that locates on a single machine. However, once we start to pass parame... | oncall: distributed,module: nn,triaged,enhancement,module: rpc | low | Critical |
609,503,525 | flutter | [Web] Web does not support animation sheet golden tests | https://github.com/flutter/flutter/pull/55527 added animation sheet golden tests, which would be very useful when testing the animation of widgets. However it is implemented using screenshots, which is not supported by Web. It'd be great to find a way to support it.
More specifically, the current approach takes a sc... | a: tests,c: new feature,framework,a: animation,platform-web,P3,team: skip-test,team-web,triaged-web | low | Minor |
609,505,398 | pytorch | torch.cartesian_prod(*tensors) error when you have tensors with [x,y] | ## To Reproduce
Steps to reproduce the behavior:
```
a = [[1,1], [2,3], [3,5]]
b = [[4, 5], [3,6]]
print(list(itertools.product(a, b)))
tensor_a = torch.tensor(a)
tensor_b = torch.tensor(b)
#torch.cartesian_prod(tensor_a, tensor_b)
torch.cartesian_prod(tensor_a, tensor_b)
```
## Error:
`... | triaged,module: linear algebra | low | Critical |
609,529,134 | rust | Missing PartialEq<&str> impls on Path and PathBuf | Given that `&OsStr` is comparable to `&str`, I would expect `&Path` (and `PathBuf`) to be comparable to `&str` since `&OsStr` and `&Path` can freely convert to each other.
## Example
```rust
use std::path::{Path, PathBuf};
fn main() {
let path = PathBuf::from("-");
println!("{}", path == Path::new("... | T-libs-api,C-feature-request,A-str | low | Critical |
609,615,273 | TypeScript | Add readonly for all possible function parameter for lib.dom.d.ts | <!-- 🚨 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... | Bug,Domain: lib.d.ts | low | Critical |
609,628,480 | godot | Use Local Space doesn't work when multiple Spatials are selected | **Godot version:**
v3.2.1
**Issue description:**
Use Local Space doesn't work when more than one Spatial is selected.

This shouldn't happen when every node has the same transform.
**Steps to re... | bug,topic:editor,usability | low | Critical |
609,648,759 | flutter | Native widgets should support fromMap factory | <!-- 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,framework,c: proposal,P3,team-framework,triaged-framework | low | Critical |
609,671,920 | excalidraw | How to use https | Hi,
can I run the excalidraw docker container with https support? | support | low | Minor |
609,690,483 | PowerToys | PowerSymlink - Creates Symlinks from Context Menu ("mklink /D") | Please add a **PowerToy to create Symlinks** from the Windows Explorer context menu.
For web projects, I often have to create symlinks (using `mklink /D`) from the command line. Having this feature in the Windows Explorer context menu will be a great time-saver.
The context menu should have two entries for this n... | Idea-New PowerToy | medium | Critical |
609,729,824 | flutter | [flutter_driver] Support finding/tapping gesture recognizer on TextSpan from RichText | I have faced this problem while writing gherkin BDD integration test for my flutter application where I am not able to get the driver tapped on TextSpan items under RichText, I know that there is no key assignment for the TextSpan as it is actually not a widget but a part of it as string styling for example.
Therefo... | a: tests,c: new feature,framework,t: flutter driver,a: typography,P2,team-framework,triaged-framework | low | Major |
609,827,621 | TypeScript | Inconsistency in generic parameter inference | **TypeScript Version:** 3.8.3, nightly, etc.
**Search Terms:** infer function return
**Code**
```ts
declare function h<T extends keyof HTMLElementTagNameMap>(
tag: T,
...init: ((e: HTMLElementTagNameMap[T]) => void)[],
): HTMLElementTagNameMap[T];
declare function events<T extends HTMLElement>(... | Needs Investigation | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.