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 |
|---|---|---|---|---|---|---|
555,904,048 | go | x/crypto/acme/autocert: add hooks for transaction locks | The `Manager.createCert` method has a lock around the ACME transaction so that multiple goroutines can safely call this method concurrently. This does not protect against multiple processes (possibly on different machines) doing this concurrently.
If transaction hooks were added, then a caller could provide a custom... | NeedsDecision,FeatureRequest | low | Minor |
555,928,830 | go | proposal: runtime/pprof: add PMU-based profiles | <!--
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.4 linux/amd64
</pre>
### Does this issue reproduce... | Proposal,Proposal-Hold | high | Critical |
555,952,490 | TypeScript | Auto-format incorrectly formats multi-line arrays | *TS Template added by @mjbvz*
**TypeScript Version**: 3.8.0-dev.20200125
**Search Terms**
- format
- array
- multiline
---
Version: 1.41.0 (system setup)
Commit: 9579eda04fdb3a9bba2750f15193e5fafe16b959
Date: 2019-12-11T18:37:42.077Z
Electron: 6.1.5
Chrome: 76.0.3809.146
Node.js: 12.4.0
V8: 7.6.30... | Bug,Domain: Formatter | low | Minor |
555,964,661 | rust | casting trait methods to FnOnce(&mut dyn Trait) is not ergonomic | In the following code, I'm trying to cast `Trait::f` to `FnOnce(&mut dyn Trait)` which should be possible, but the obvious method doesn't work. None of the combinations I tried got it to work (I could just use a lambda that called `f`, but that defeats the purpose).
```rust
trait Trait {
fn f(&mut self);
}
... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
555,981,973 | pytorch | Building PyTorch ignores my current Python version | ## π Bug
<!-- A clear and concise description of what the bug is. -->
I am trying to build PyTorch on my Raspberry Pi 4(Raspbian Buster) with Python 3.6.9(virtual env), but it keeps using Python 3.7
## To Reproduce
Steps to reproduce the behavior:
1. git clone https://github.com/pytorch/pytorch.git
2. gi... | module: build,triaged | low | Critical |
556,098,557 | vscode | Rename refactoring context actions work on the entire input | Testing https://github.com/microsoft/vscode/issues/89331

1. Right click a refactor row and choose `Apply Refactoring`
All the checked changes will be applied and the view will disappear. I would expect o... | ux,under-discussion,workspace-edit | low | Minor |
556,105,430 | pytorch | How to customize build torchscript model to be used in end devices codebase | ## π Feature
I want to compile my model to be executed in the Python/C script running on our customers computers/end devices, without the need to load the entire torch/libtorch package, but only what is needed based on the model operations.
## Motivation
Currently, the size of my ResNet model (for example) is ~10... | oncall: jit,triaged,oncall: mobile | low | Major |
556,180,231 | pytorch | ninja: build stopped: subcommand failed. | ## π Bug
Does anyone have a recipe that is known to work?
<!-- A clear and concise description of what the bug is. -->
[426/3392] Building CXX object third_party/ideep/m...nn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reorder.cpp.o
ninja: build stopped: subcommand failed.
Traceback (most recent call last):
File "setu... | module: build,triaged | low | Critical |
556,184,980 | pytorch | torch.tensordot has inconsistent signature with torch script | ## π Bug
<!-- A clear and concise description of what the bug is. -->
Inconsistent API across torch script and no script
## To Reproduce
Steps to reproduce the behavior:
Working samples
```python
def my_tensordot(a, b):
return torch.tensordot(a, b, [[1], [1]])
```
```python
@torch.jit.script... | oncall: jit,triaged | low | Critical |
556,196,607 | pytorch | Add Julia Bindings to Torch backend | ## π Feature
Usage of Julia to access Torch backend apiβs.
## Motivation
Array Programming is a paradigm, just like saying βObject Orientated Programmingβ or βFunctional Programmingβ, along w/ a compiler that can handle Dispatch and mathematical types makes it a language perfect for deep learning
## Pitch
... | feature,low priority,triaged,module: language binding | low | Major |
556,228,648 | TypeScript | Catch when callbacks are missing a return. | <!-- π¨ 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,Needs Proposal | low | Critical |
556,248,161 | material-ui | [Modal] aria-hidden should not be applied on non-portal modals | <!-- Provide a general summary of the issue in the Title above -->
`aria-hidden=true` gets applied on top level container when a modal is opened. But if `disablePortal` is used, `aria-hidden` should not be set on that top level container as the modal will be created inline and most likely within that top level conta... | accessibility,component: modal | medium | Critical |
556,253,588 | godot | is_rel_path returns true for an empty string | **Godot version:** 505fee0b6db806c9fc83acd3a074f40ac57a83e2
**Issue description:**
`"".is_rel_path()` returns `True`
I don't believe "" should be considered a relative path...
**Minimal reproduction project:**
[test.zip](https://github.com/godotengine/godot/files/4122887/test.zip)
| discussion,topic:core | low | Minor |
556,268,291 | vscode | CodeIcon: in documentation hover could get some polish | Refs: https://github.com/microsoft/vscode/issues/89328
I think once a codicon is in the text, we need to adjust the lineheight or some other styling to make it look nicer:

| ux,polish,suggest,workbench-hover | low | Minor |
556,312,439 | rust | E0700 does not point to where the captured lifetime is | The error message
```rust
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
```
does not point to where in the block the captured lifetime is (which makes debugging it difficult).
It does, however, point to the scope:
```rust
note: hidden type `impl futures::Fut... | C-enhancement,A-diagnostics,T-compiler,A-async-await,AsyncAwait-Triaged,D-papercut,S-has-mcve | low | Critical |
556,384,027 | pytorch | Torch serialization does not restore tensors properly when custom __reduce__ is defined | ## π Bug
If a `nn.Module` define a custom `__reduce__` method to customize serialization, with the `__reduce__` function returning some tensors (like a state dict), then upon deserialization, the tensors will not contain the right values.
## To Reproduce
```python
import pickle
import torch as th
def... | module: serialization,triaged | low | Critical |
556,386,059 | go | net/http: Dial I/O Timeout even when request context is not canceled | Seems related to https://github.com/golang/go/commit/869e576517f825aecdc8730b0d22f8d6b59bd749 (c.f. https://github.com/kubernetes-sigs/aws-encryption-provider/issues/61).
Maybe this is an expected behavior... Is it possible to see dial timeouts even when the request context has not been canceled? I am using https://... | NeedsInvestigation | medium | Critical |
556,395,845 | TypeScript | @template is lost when importing method | <!-- π¨ 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... | Needs Investigation | low | Critical |
556,421,488 | rust | UnixDatagram: please support vectored send | The `UnixDatagram` type provides `send` and `send_to` methods, but does not provide a vectored send operation. Such an operation is particularly helpful for datagrams, where separate send operations result in separate datagrams; a vectored send allows sending data from multiple buffers in a single datagram.
Given th... | T-libs-api,C-feature-request | low | Minor |
556,430,617 | go | cmd/compile: error line number reported is incorrect if it appears after line 0xFFFFF | <!--
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,compiler/runtime | low | Critical |
556,475,404 | rust | UdpSocket: please support vectored send | The `UdpSocket` type provides `send` and `send_to` methods, but does not provide a vectored send operation. Such an operation is particularly helpful for datagrams, where separate send operations result in separate datagrams; a vectored send allows sending data from multiple buffers in a single datagram.
This would ... | T-libs-api,C-feature-request | low | Minor |
556,514,751 | godot | In an HBoxContainer a Viewport with size 0 in a stretch-enabled VIewportcontainer does not render until first resize | **Godot version:**
3.1.2
**OS/device including version:**
OpenSuse Tumbleweed
**Issue description:**
is related to https://github.com/godotengine/godot/issues/26187 and can be easily fixed setting the viewport size to something good in the first place but maybe this helps someone figure out https://githu... | bug,confirmed,topic:gui | low | Minor |
556,527,194 | TypeScript | Documentation returned from constant type instead of from the constant itself | <!-- π¨ 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,Awaiting More Feedback | low | Critical |
556,536,384 | rust | StorageLive (and even StorageDead) may be unnecessary in MIR. | A while back I was discussing `Storage{Live,Dead}` and dominators, with @tmandry (in the context of generator layout optimizations), and came to the conclusion that `StorageLive` pretty much *has to* dominate all uses (I doubt we ever added a check that it does so, though).
More recently, I was trying to figure out ... | C-cleanup,T-compiler,A-MIR | medium | Critical |
556,536,719 | terminal | Alternate console buffers of different sizes confuse ConPTY (and therefore Windows Terminal) | <!--
This bug tracker is monitored by Windows Terminal development team and other technical folks.
**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.
If this is a... | Help Wanted,Area-Rendering,Product-Conpty,Area-Output,Issue-Bug,Priority-2 | low | Critical |
556,540,251 | material-ui | Slide recreates style object property | * [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
Slide component always recreates children `style` object and sets its `visibility` field to `'hidd... | component: transitions | low | Minor |
556,549,622 | TypeScript | Private Fields: Code action for marking a field private | Testing https://github.com/microsoft/vscode/issues/89387.
It would make sense to provide a code action / refactoring for turning a public field into a private field that also generates a getter if needed. | Suggestion,Awaiting More Feedback | low | Minor |
556,550,117 | nvm | nvm changes user profile - must be "opt-in" rather than "opt-out" | <!-- Thank you for being interested in nvm! Please help us by filling out the following form if youβre having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! -->
#### Operating system and version:
Linux.
#### `nvm debug` output:
Not relevant to t... | installing nvm: profile detection | low | Critical |
556,580,596 | pytorch | PyTorch freezes on second call to scripted densenet model from torchvision | ## π Bug
PyTorch freezes on second call to scripted densenet model from torchvision.
## To Reproduce
Steps to reproduce the behavior:
The script freezes after printing the first result.
```python
import torch
import torchvision
"""
Freezes on the second call to run the script model.
"""
model = ... | oncall: jit,triaged,module: vision | low | Critical |
556,585,505 | pytorch | RPC mock mode for unit tests. | ## π Feature
I am building some distributed features that rely on RPC. For my unit test, once I need to test multiple workers, RPC will bring up a process group. As a developer that uses RPC api, launching communication layer feels too heavy for unit tests.
It would be great to have a mock version of RPC that by... | triaged,module: rpc | low | Minor |
556,591,155 | pytorch | JIT performance discrepancies | PyTorch Nightly (today)
Fedora 31
Anaconda Python 3.7
GPU: 970 (staying under 3.5 GB limit, last 0.5GB is lower quality memory)
Not completely confident it's a bug, if it isn't there should certainly be something mentioned in the documentation.
All result variance is ~0.01
```
import numpy as np
import to... | module: performance,oncall: jit,triaged | low | Critical |
556,599,458 | flutter | Add test to verify that loading code using dart:mirrors via IsolateMirror.loadURI does not regress. | This is not supported in Flutter but an internal user depends on this functionality. Test must be added to ensure that this does not regress till they migrate away to an alternative. The entirety of the filesystem and package map handling code in Tonic is written to support this use case. Since this use case does not a... | a: tests,engine,e: embedder,P2,team-engine,triaged-engine | low | Minor |
556,639,251 | scrcpy | Lagging on my Mobile(Poco f1) | hi first of all thanks for making this software.
now lets come to the problem I am using Xiaomi Poco f1 device and I am casting my screen to my pc(windows 10) for recording I am recording with OBS till now no problem everything is working fine but when I start to record with OBS somehow my device starts to lag the g... | performance,obs | low | Minor |
556,654,116 | angular | A unit test for a component with an animation does not behave as expected, failing the test | # π bug report
Apologises if I have not filled this out correctly, or if I missed a similar issue.
### Affected Package
Unsure, the issue is present when using either the BrowserAnimationsModule or the NoopAnimationsModule, in unit tests.
### Description
A component I created, is a slide in panel from the rig... | type: bug/fix,area: testing,area: animations,freq2: medium,P3 | low | Critical |
556,696,642 | flutter | Make the Cupertino Date Picker easier to driver with Flutter driver | Similar to #49100 if would be great to make this widget easier to driver using Flutter driver by adding well known keys to the days, months, years, hours, minutes, seconds CupertinoPicker widgets within this control. These picker could then be scrolled and tapped and thus any date and/ or time could be picked.
At t... | framework,f: date/time picker,f: cupertino,c: proposal,P3,team-design,triaged-design | low | Major |
556,714,626 | godot | Bug that caused project to lose all files except for the default files | **Godot version:**
v3.1.stable.official
**OS/device including version:**
Windows 10
**Issue description:**
The project that lost the files will be in like when it was first created with the default files
**Steps to reproduce:**
I encountered this bug when in a project then quit to project list then enter a... | bug,topic:editor | low | Critical |
556,716,938 | flutter | DropDownButton looses selection when disabled | A DropDownButtonhas no `enable` property. Instead, the `onChanged` property must be set to null. In this case, any selection will be replaced by `disabledHint` or `hint` which is inconsistent with other input widgets.
It would be much better to have
1. a property `enable` to enable / disable the widget (more clea... | framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Minor |
556,722,162 | TypeScript | prettify complex type display (for generic-heavy types) | <!-- π¨ 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 |
556,770,453 | material-ui | [material-ui][docs] Document the correct way to extend a component | We are using Material-UI as the base of a project, but are running in to issues extending components
```
import { Link, LinkProps } from "@material-ui/core";
export const HnLink = Link;
```
Works fine
```
import { Link, LinkProps } from "@material-ui/core";
export const HnLink: React.FC<LinkProps> = pro... | docs,typescript | low | Critical |
556,777,028 | rust | false positive "trait already implemented" (E0371) | While investigating #68564, I found a real bug.
https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=c959b9e4ee176c4430586425307787ec
```rust
pub trait Fold<T: ?Sized> {
fn fold(&mut self, node: T) -> T;
}
struct A;
struct B;
impl Fold<A> for dyn Fold<B> {}
```
It results in ... | A-trait-system,T-compiler,C-bug | low | Critical |
556,807,713 | pytorch | Documentation is not loaded by IDEs | ## π Bug
The documentation of torch functions (e.g. `torch.sort`, `torch.max`) and the class `torch.Tensor` is not loaded by common IDEs as PyCharm and Visual Studio Code.
The documentation of other modules (e.g. `torch.nn`, `torch.optim`) is loaded correctly.
The problem seems to be related to dynamic document... | module: docs,triaged | low | Critical |
556,811,476 | angular | DefaultValueAccessor doesn't update the model correctly when entering CJK characters with an IME that has autocorrect | # π bug report
### Affected Package
The issue is caused by package @angular/forms
### Is this a regression?
No, seems to have always been there since it was implemented.
### Description
The model is not updated correctly by `DefaultValueAccessor` when using an IME to enter CJK characters that use com... | area: forms,forms: ControlValueAccessor,P4 | low | Critical |
556,820,231 | rust | 'Referencing function in another module` error when compiling for target wasm32-unknown-emscripten (debug mode) | I'm trying to compile a Rust project that depends on the [`byte-slice-cast`](https://crates.io/crates/byte-slice-cast) crate, but I'm encountering a strange error. The same error pops up if having [`block-padding`](https://crates.io/crates/block-padding) as a dependency. You can find all the details in this issue: http... | A-LLVM,T-compiler,O-wasm,C-bug,O-emscripten | low | Critical |
556,843,382 | excalidraw | Figure out a way to merge scene serializers | As discussed in https://github.com/excalidraw/excalidraw/pull/583#issuecomment-579734116, currently we use different scene serializers when storing to `localStorage`, and when saving to backend or JSON (file).
This means there is potential for unintended divergence, such as when we decide to persist additional state... | refactor | low | Major |
556,857,098 | TypeScript | SkipLibCheck fails to work in multi-project set-up | **TypeScript Version:** 3.8. Beta
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
skiplibcheck
**Steps to reproduce**
1. Extract the attached zip file to a folder and open `repro.sln` in Visual Studio (I'm using 2019)
2. Expand the `npm` folde... | Needs Investigation | low | Critical |
556,871,668 | material-ui | [system] Support new props with variants | Hi,
is this possible extend `PaperClassKey` and `PaperProps` with custom values?
I would like to get something like this:
```jsx
export const theme = createMuiTheme({
overrides: {
MuiPaper: {
dark: {
backgroundColor: COLORS.BLACK,
},
light: {
... | new feature,waiting for π,package: system | low | Major |
556,903,054 | pytorch | Error while trying to build pytorch from source in conda environment | Hi,
I am trying to build pytorch from source in a conda environment, following the instructions from https://github.com/pytorch/pytorch#from-source. The CPU installation works fine (until this step: `[2521/3544] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/engine/dist_engine... | module: build,triaged | low | Critical |
557,010,704 | flutter | Framework classes should be able to take pictures instead of images | For example, https://api.flutter.dev/flutter/painting/BoxDecoration-class.html takes a `DecorationImage`, which expect to get a `ImageProvider` so that it can use `drawImage`.
But a user may want to paint a vector graphic as the decoration, which would be more suitable for `drawPicture` - or, alternatively, somethin... | c: new feature,framework,P3,team-framework,triaged-framework | low | Minor |
557,019,054 | TypeScript | Type bug: using mapped type (Partial) & this type & lookup type | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Needs Investigation,Rescheduled | low | Critical |
557,021,156 | go | cmd/go: support POSIX jobserver | The automatic parallelism in `cmd/go` is wonderful when the command is used interactively. However, it interacts poorly when another build system is driving `cmd/go`. The driving build system cannot safely start multiple Go builds without overloading the system, and it cannot detect when a Go build is doing very little... | NeedsInvestigation,FeatureRequest | low | Major |
557,043,318 | opencv | NaN comparison fails on certain image sizes | ##### System information (version)
- OpenCV => 4.1.1
- Operating System / Platform => Ubuntu 18.04
- Compiler => Clang 9
##### Detailed description
Certain sizes of images fail when comparing for NaNs
##### Steps to reproduce
```.cpp
#include <opencv2/core.hpp>
int count_NaNs_in_image(int rows, i... | bug,priority: low,category: core,RFC | low | Major |
557,047,289 | vscode | Call Hierarchy view doesn't show number of callers | - VSCode Version: 1.42 Insiders
- OS Version: Windows 10
Found while testing #89386
Would be nice to know how many callers, perhaps in the title bar. Something like "X Callers of 'Area'".

| feature-request,callhierarchy | low | Minor |
557,057,113 | angular | Styles from external components are included outside the scope of a shadow DOM component | # π bug report
### Affected Package
The issue is caused by package `@angular/platform-browser`
### Is this a regression?
No
### Description
When deploying an Angular component with `encapsulation: ViewEncapsulation.ShadowDom`, everything regarding the component should be kept inside the `#shadow-root... | type: bug/fix,freq1: low,area: core,state: has PR,core: CSS encapsulation,P3 | medium | Critical |
557,067,561 | flutter | ButtonThemeData does not allow changing elevation, even through subclassing. | I'm building my second production app with Flutter, and one of our major goals with this project is to use more of the pre-built `material` widgets and existing theming capabilities. With our first app, most of the buttons are a `FlatButton` with a background color set. To adhere to our current goals, I want to replace... | framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Minor |
557,075,846 | vscode | aggregate Bug/Feature Requests *in editor* for more accurate community upvoting | Currently, feature requests need to receive 20 upvotes within 60 days to be officially added to the Backlog.
This means that users who frequently browse open issues on GitHub will have a disproportionately large impact on which features are adopted.
Users of VSCode who _don't_ come here won't even know that v... | question-discussion | low | Critical |
557,080,949 | pytorch | Comments Separating Class Methods from Different Classes in C++ Files | ## π Feature
Throughout the PyTorch Distributed codebase (and PyTorch as a whole), a single C++ file may have member functions from several different classes. `process_group_agent.cpp` separates these with a simple one-line comment. This could be a good practice to standardize across the codebase for easier readabili... | triaged,better-engineering | low | Minor |
557,085,385 | pytorch | Implement Backend-Agnostic RPC functionality in RpcAgent | ## π Feature
`ProcessGroupAgent` contains functionality that makes more sense in the `RpcAgent`. Moving general-purpose RPC functionality to the parent class will make for better abstractions in the RPC C++ codebase and ensures core functionality would be available for future communication backends.
## Motivation
... | triaged,better-engineering,module: rpc | low | Minor |
557,102,158 | godot | Android debugging via USB switches screen 3.2 | **Godot version:**
3.2
**OS/device including version:**
Mac OS 14.6/Android 10
**Issue description:**
When I debug my 2d game on my android phone via USB, the tab sometimes randomly switches between 2d and script
**Steps to reproduce:**
Debug game on android via USB, go to different tabs and scenes in the editor... | bug,topic:editor | low | Critical |
557,117,341 | TypeScript | Missing IntelliSense for generic parameters of decorators | **TypeScript Version:** 3.7.3 and nightly
**VSCode Version:** 1.42.0-insider (and 1.41.1)
**Search Terms:**
- Generic decorators
- Decorator parameter suggestion
**Example Code:**
In order to simplify the code, I used `keyof T` as parameter type. It should accept any type expression.
```ts
function Gener... | Bug,Domain: Completion Lists | low | Critical |
557,118,528 | TypeScript | VSCode JSDoc doesn't recognize members that are classes from default imported object. | <!-- π¨ 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... | Needs Investigation | low | Critical |
557,150,368 | kubernetes | Suggest `listType=map` if we can guess good key options | We currently fail with an error when generating the openapi if `listType` is missing on lists, and that's a good thing, but we can be even more useful and suggest `listType=map` along with `listMapKeys=...` if we can figure out a good key name.
For example, if we detect that the list is a list of structs that have a... | sig/api-machinery,lifecycle/frozen,wg/api-expression | low | Critical |
557,168,604 | flutter | Test that embedders can post native thread tasks recursively. | Not caught earlier because of LUCI [not exercising AOT modes](https://github.com/flutter/flutter/issues/49733). | a: tests,engine,P2,team-engine,triaged-engine | low | Minor |
557,168,799 | go | x/tools/gopls: replace "verboseOutput" with a log label | Rather than having the `"verboseOutput"` setting, we should tag some log messages with a verbose label. | gopls,Tools | low | Minor |
557,191,287 | flutter | Google Map indoor navigation floor selector style looks wrong with Dark mode | <!-- 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,p: maps,package,has reproducible steps,P2,found in release: 1.21,found in release: 2.0,found in release: 2.2,team-ios,triaged-ios | low | Critical |
557,205,782 | terminal | InputEngineTest::RoundTripTest Fails | Roses are red,
Violets are blue,
InputEngineTest::RoundTripTest fails,
So I left a TODO. | Product-Conpty,Area-VT,Issue-Task | low | Minor |
557,206,606 | godot | intersect_ray() ignores any TileMap cells with collision polygons after a call to TileMap.set_cell() | **Godot version:** 3.2
**OS/device including version:** Manjaro Linux 18.1.5
**Issue description:** If you change a cell (on a TileMap) from a tile with collision polygon to a tile without collision polygon, the next call to Physics2DDirectSpaceState.intersect_ray() will not collide with any TileMap cells. This o... | bug,confirmed,topic:physics,regression,topic:2d | low | Minor |
557,213,307 | flutter | Desktop app frame rate isn't synced to display | I'm running on a 120hz monitor, I've scheduled a persistent frame callback and can see that I get ~60fps. It would be great if Flutter could use something like CADisplayLink on MacOS to sync frame rendering with the display.
Gist of a simple app showing this: https://gist.github.com/luigi-rosso/0e3ed273e52764bf1d7b... | engine,c: performance,platform-mac,platform-linux,a: desktop,perf: speed,has reproducible steps,P2,found in release: 3.19,found in release: 3.22,team-macos,triaged-macos | low | Critical |
557,250,858 | tensorflow | Ability to calculate projected memory usage for a given model | <em>Please make sure that this is a feature request. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:feature_template</em>
**System information**
- TensorFlo... | stat:awaiting tensorflower,type:feature,comp:keras,TF 2.1 | low | Critical |
557,264,367 | puppeteer | request.headers() does not give all headers that are used when making the request | ```js
const browser = await puppeteer.launch();
const page = await browser.newPage();
page.on('request', async (request) => {
await request.headers();
});
await page.goto('http://gajus.com');
```
just gives:
```
'upgrade-insecure-requests': '1',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) Appl... | bug,upstream,confirmed,P3 | medium | Critical |
557,276,889 | rust | ExitCodeExt: Please provide an extension method for the "raw" exit code | On Unix platforms, `ExitCode` wraps the exit code received from the system, and provides helper functions to distinguish "exited normally with exit code" from "exited with signal number". However, some command-line tools (those that execute another program) want to exit with the same exit status as the program they run... | T-libs-api,C-feature-request | low | Minor |
557,287,288 | TypeScript | `lib.d.ts` isn't ordered appropriately for signature help | 
This extremely broad signature help is occurring because `lib.d.ts` is ordered from oldest to newest. Unfortunately that means that users end up getting complex signatures that they never cared about. Even if... | Bug | low | Minor |
557,289,318 | TypeScript | Define protocol type names for well-known symbols | 
This is pretty hard to grok. Maybe we should have a named type for types like
```
{
[Symbol.match](string: string): RegExpMatchArray;
}
```
It's not totally clear what we'd call these - they're ... | Suggestion,Experience Enhancement | low | Minor |
557,300,448 | go | cmd/compile: prove misses obvious facts about constants | I noticed that left shifts by a constant are not being marked as bounded by prove. Prove consults ft.limits, but ft.limits doesn't contain limits for constants. Something similar happens for some other ops with easy limits.
This is pretty straightforward to fix: Write a wrapper around ft.limits accesses that generat... | Performance,NeedsInvestigation,compiler/runtime | low | Minor |
557,323,639 | pytorch | Error tracing custom autograd.Function | ## π Bug
I got an error when I tried to use jit to trace my autograd Function. In previous Pytorch versions(1.1.0), this works, but recently I updated to 1.4.0, and this stopped working. I'm not exactly sure which version exactly did this stopped working.
## To Reproduce
Steps to reproduce the behavior:
1. ... | oncall: jit,triaged | low | Critical |
557,356,610 | go | strings/bytes: LastIndexByte is significantly slower than IndexByte | <!--
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.1 darwin/amd64
</pre>
### Does this issue reproduc... | Performance,help wanted,NeedsFix | low | Major |
557,395,671 | go | x/website/cmd/golangorg: Add Content Security Policy | CSP is an important protection against some of the higher risk web vulnerabilities and the official Go website doesn't currently adopt it.
Moreover CSP is a internal requirement for any website hosted on *.google.eTLD and the Go website is currently also hosted on golang.google.cn.
I can take care of fixing this ... | NeedsFix | low | Minor |
557,400,291 | rust | Exponential trait selection when compiling a crate using combine 4 | Originally reported in https://github.com/Marwes/combine/issues/284 . It appears that the changes made between version 3 and 4 in https://github.com/Marwes/combine . Made trait selection exponential in some cases. The main change that I would suspect causing this is that combine-3 had `Input` as an associated type wher... | A-trait-system,I-compiletime,T-compiler,C-bug | low | Major |
557,426,404 | flutter | [image_picker][iOS] freeze when clicking the camera take photo button multiple times quickly | Using plugin [image_picker], when presenting the camera view, clicking the take photo button multiple times quickly will lead to the application freeze at the preview page with "Retake"/"Use Photo" bottom sheet. No response when clicking the buttons on the bottom sheet.
The plugin works fine if only pressing the take ... | platform-ios,c: performance,p: image_picker,package,perf: speed,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-ios,triaged-ios | low | Major |
557,434,080 | flutter | Focus gets lost on Android TV | Run the code below. It displays two raised buttons and a text field and another raised button.
You can use the DPad (or the cursor keys if trying this on the simulator) to change the focus between both buttons. I changed their focus color to make this very obvious. You can active buttons with RETURN. You cannot act... | a: text input,framework,f: material design,f: focus,P2,team-framework,triaged-framework | low | Critical |
557,470,612 | node | Macos Derived exceptions seem to be affected by RTTI settings in the gypfile | I don't know whether it will affect any nodejs user, but since it may and I found it out the hard way I'm putting this here:
```
'xcode_settings': {
'GCC_ENABLE_CPP_RTTI': 'NO'
}
```
will lead to that derived exeptions in a program linked against that library may not work anymore; so this tiny test programm linke... | build,macos | low | Critical |
557,487,232 | pytorch | MKLDNN doesnt work and is slower than normal cpu mode | ## π Bug
MKLDNN seems not to have any effect on runtime performance. Its even some times, slower than normal cpu mode!
The issue exists both on 1.3.1 and 1.4.0.
## To Reproduce
Steps to reproduce the behavior:
Run this on a supporting platform such as Linux (e.g. ubuntu 18.04)
```python
import torch
p... | triaged,module: mkldnn | low | Critical |
557,503,340 | flutter | video_player: Autoplay support | Im aware browser might block autoplay videos but this is only partially true.
This is also stated in the article youve referenced:
> Chrome's autoplay policies will change in April of 2018 and I'm here to tell you why and how this is going to affect **video playback with sound**
[https://developers.google.com/web/... | c: new feature,platform-web,p: video_player,package,P3,team-web,triaged-web | low | Minor |
557,537,599 | godot | Group related functions doesn't work well with tool enabled | **Godot version:**
3.2
**OS/device including version:**
ubuntu 19.10
**Issue description:**
I'm creating a plugin related to group managing, but when use a function like node.add_to_group(groupname) the groups built'in tab doesnt recognize this (sometimes it works, but if you first add a number string:
![groups... | bug,topic:editor | low | Major |
557,570,206 | storybook | Setting the default width/height of the addons panel? | In Storybook 5.3, I would like to change the default width/height (depending on the orientation) of the addons panel to be able to have the components and the story source side by side, like in the screenshot.
<img width="1552" alt="Screen Shot 2020-01-30 at 16 27 08" src="https://user-images.githubusercontent.com/4... | feature request,ui,has workaround | medium | Major |
557,581,726 | youtube-dl | Add www.paramountnetwork.it/ | Hi, is to add https://www.paramountnetwork.it/ for example https://www.paramountnetwork.it/film/218i3r/agatha-christie-le-due-verita-parte-1
thank you | site-support-request,question | low | Minor |
557,613,860 | react | Bug: Render-phase update to another root causes an over-rendering loop | ```js
let container1 = document.createElement('div');
let container2 = document.createElement('div');
function Root1() {
_setX(x => x + 1);
return 'Hello';
}
let _setX = () => {};
function Root2() {
console.log('Root 2')
let [x, setX] = React.useState(0);
... | Type: Regression | low | Critical |
557,655,704 | go | cmd/compile: possible latent codegen issue on amd64 removing zero extensions | I'm not sure whether it is possible to trigger this bug right now, but I think there may be an issue lurking.
Consider code like:
```go
func f(x uint32) uint64 {
return uint64(x & 0xFFFFFFFF)
}
```
The outmost op is `ZeroExt32to64`, which gets lowered to `MOVLQZX`. The innermost op ends up being `(ANDLcon... | NeedsInvestigation,compiler/runtime | low | Critical |
557,657,891 | godot | Joystick Navigation broken for OptionButton | Using the new Godot v3.2 release, with Ubuntu 18.04.3 LTS
I've been messing around with 3.2, and I noticed that I can now assign Joy Axis inputs to the ui_left/right/up/down actions, and for the most part the menu navigation works as expected. Pushing a direction on the joystick only moves the selection once until t... | bug,confirmed,usability,topic:input,topic:gui | low | Critical |
557,677,354 | flutter | Cupertino pickers are not focusable with a keyboard | @goderbauer
@gspencergoog
@lorenzOliveto | framework,a: accessibility,f: date/time picker,f: cupertino,a: desktop,customer: soldier,f: focus,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
557,720,958 | go | all: update standard-library dependencies at the start and end of each development cycle | The `x` dependencies vendored into the standard library (via `src/go.mod` and `src/cmd/go.mod`) should be updated for each code freeze, so that we can apply any needed fixes to those dependencies without _also_ pulling in unnecessary changes or requiring significant backporting work (see, for example, #36851).
This ... | NeedsFix,early-in-cycle,release-blocker,recurring | high | Critical |
557,727,316 | godot | Viewport as texture GLES2 - weird glitch | **Godot version**: 3.2
**GLES2**
with GLES3 it works fine
OS/device including version: Windows 10/ASUS VivoBook (doesn't work on other devices too)
Issue description:
Assigning viewport to quad mesh doesn't work in a particular scenario.
Steps to reproduce:
Create scene with camera, quad mesh and viewpo... | bug,topic:rendering | low | Major |
557,731,328 | terminal | The Resize Window escape sequence doesn't support omitted and zero parameters | # Environment
```none
Windows build number: Version 10.0.18362.535
```
# Steps to reproduce
1. Open a bash shell in conshot
2. Set the window size to 80x25 with `printf "\e[8;25;80t"`
3. Set just the height parameter to 30 with `printf "\e[8;30t"`
4. Set just the width parameter to 100 with `printf "\e[8;... | Product-Conhost,Area-VT,Issue-Bug | low | Major |
557,746,647 | TypeScript | Parameter types not being inferred in a class method whose type is indexed from an 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... | Needs Investigation | low | Critical |
557,764,099 | pytorch | Can we add support for Enum in scripted models? | Enums are not supported right now
import torch
from torch import nn
from enum import Enum
class Testing(Enum):
lala = "lala"
class Mo(nn.Module):
def __init__(self, la):
super().__init__()
self.la = la
def forward(self, x):
if self.la == Testing.lala:
... | oncall: jit,triaged | low | Critical |
557,779,750 | terminal | Safer SafeArrays | It'd be nice if we could be safer with SafeArrays. We use them a lot in our accessibility model.
Some ideas include:
- deleting automatically if anything goes wrong
- easy conversions to/from vectors/arrays
I submitted an issue on wil [here](https://github.com/microsoft/wil/issues/114). If it gets implemented ... | Help Wanted,Product-Terminal,Issue-Task,Area-CodeHealth | low | Minor |
557,805,259 | vscode | Untitled file title gets in my way when trying to save | - Open an untitled file with some contents
- Try to save it in the custom file dialog
- The generated title is inserted into the input every time I complete a folder segment

| under-discussion,simple-file-dialog,workbench-untitled-editors | low | Major |
557,806,873 | electron | effective test for select-client-certificate | the current test for `select-client-certificate` doesn't actually exercise the code path unless there is a client certificate installed on the machine, which there isn't on CI.
fixing this might involve either a) figuring out how to install client certs on our CI machines in a programmatic way, or b) exposing new AP... | enhancement :sparkles: | low | Minor |
557,808,762 | terminal | Additional Testing for UiaTextRange | # Description of the new feature/enhancement
After #4018, more tests were added to UiaTextRange. However, there are still gaps in our testing and they require some more thought and additional refactoring. Here's some that I have in mind:
- [x] `MoveByWord`
- [x] `MoveEndpointByUnitWord`
- [ ] `FindText`
- [ ] `G... | Area-Accessibility,Product-Terminal,Issue-Task,Area-CodeHealth | low | Minor |
557,846,959 | go | runtime: allow map hashes with different tradeoffs | <!--
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.4 linux/amd64
</pre>
### Does this issue reproduce... | Performance,NeedsInvestigation,compiler/runtime | low | Critical |
557,848,583 | TypeScript | intellisense to reference computed field directly | <!-- π¨ 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 | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.