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 |
|---|---|---|---|---|---|---|
611,782,175 | PowerToys | [FancyZones] Allow linking of windows in a layout together to bring them all to the front when one is pressed. | # Summary of the new feature/enhancement
I think it would be incredibly useful if windows in a Zone were able to be linked together such that if you brought one to the front it would bring all of them to the front at the same time. I understand that you could have multiple windows in the same section on a zone so th... | Idea-Enhancement,Product-FancyZones | medium | Major |
611,794,749 | flutter | Material Component widget request: multi-select search field with auto-suggestion | ## Use case
[RecipeRadar](https://www.reciperadar.com/) currently provides the user with the ability to enter multiple ingredients and/or kitchen equipment items that they would like to include or exclude when searching for recipes.
This functionality is built using a server-side auto-suggestion API that responds t... | c: new feature,framework,f: material design,c: proposal,P3,team-text-input,triaged-text-input | low | Minor |
611,799,737 | deno | deno install should bundle before installation | `deno install` is a utility that allows to install any module as an executable by creating shell script that invokes actual module.
Currently it works by caching all dependencies of the module in `$DENO_DIR` and adding entry point local URL to the shell script.
Huge caveat in this approach is that if user reload... | feat,cli | low | Major |
611,957,037 | pytorch | CMake Documentation Issue | It isn't mentioned in PyTorch docs about the Set()
Also, the Cmake file isn't quite complete and needs to be updated. Maybe new users don't know about it.
```
set(CMAKE_PREFIX_PATH "libtorch/share/cmake/Torch")
```
[here](https://pytorch.org/tutorials/advanced/cpp_frontend.html) as well as [here](https://pytorch.o... | module: docs,triaged | low | Critical |
611,967,909 | PowerToys | Fine-tune multi-monitor positioning tool | # Summary of the new feature/enhancement
<!--
A clear and concise description of what the problem is that the new feature would solve.
Describe why and how a user would use this new functionality (if applicable).
-->
The current way to position monitors is via Display Settings, but this does really bad snappi... | Help Wanted,Idea-New PowerToy,Product-Display management | low | Major |
611,976,818 | flutter | Flutter project - All files duplicated when created | Whenever I create a Flutter project either by using the Flutter CLI or Android Studio, a strange problems seem to occur. All files are duplicated and a ' 2' (space two) is put in the end of the file's name.
1. Run `flutter create bug`.
2. Look at the project structure
;
}
impl Foo for A {
fn foo(&self) {}
}
```
`b/Cargo.toml`:
```
[package]
name = "b"
version = "0.1.0"
[dependencies]
c = { path = "../a", package = "a" }
```
`b/src/lib.rs`
```rust
f... | A-diagnostics,T-compiler,C-bug,D-papercut,D-invalid-suggestion | low | Critical |
612,013,110 | TypeScript | Automatic multi-file namespace references in AMD/System modules are buggy in complicated situations | **TypeScript Version:** 3.8.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** AMD, System, Reference, Circular reference, Automatic Reference, Auto Reference, Multi-file Namespace, Splitting Across Files
**Problem**
While most people use TypeS... | Needs Investigation | low | Critical |
612,034,927 | flutter | Adding span with Url throws assertion in RichText | In RichText when we add span with `Url` it throws this assertion.

## Steps to Reproduce
```
getParsedMessage() {
if (message.body == null || message.body.isEmpty) return Container();
List<Text... | framework,a: typography,found in release: 1.17,P2,team-framework,triaged-framework | low | Major |
612,046,446 | go | image/gif: GIF files with extraneous 0x00 bytes cause "gif: unknown block type: 0x00" | ### What version of Go are you using (`go version`)?
```
$ go version
go version go1.14.1 linux/amd64
```
### Does this issue reproduce with the latest release?
Yes (and it has probably existed for a very long time, possibly forever)
### What operating system and processor architecture are you using (`go e... | NeedsInvestigation | low | Critical |
612,056,780 | flutter | [Web] _CaretMetrics are incorrect for TextSpans | Following up on three skipped tests in `text_painter_test.dart`. The offset and height of the **_CaretMetrics** are incorrect for these tests on Web.
Test name: _TextPainter caret emoji test_
https://github.com/flutter/flutter/blob/c32d1387ab9a6cba7a4f9849dce1d6df63f5a173/packages/flutter/test/painting/text_painte... | a: tests,team,framework,a: typography,platform-web,e: web_html,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-web,triaged-web | low | Critical |
612,059,866 | react | Bug: devtools "rendered at" for child components uses value of top component | React version: 17.0.2
devtools version: 4.18.0-f58bbcf9a
## Steps To Reproduce
1. Record profiling session
2. Goto flamegraph
3. Click on a "bar" that's not the top-most
Link to code example: https://codesandbox.io/s/vibrant-thunder-bm3so
## The current behavior
"rendered at" uses the value from the r... | Status: Unconfirmed,Component: Developer Tools,React Core Team | low | Critical |
612,081,194 | flutter | [Web] AssetImageProvider hangs on failure to load | Following up on skipped test, which times out when enabled. On null load passes (the test that comes after this one), but a failed load hangs.
Test name: _ImageProvider Image cache AssetImageProvider - evicts on failure to load _
https://github.com/flutter/flutter/blob/c32d1387ab9a6cba7a4f9849dce1d6df63f5a173/pack... | a: tests,team,framework,platform-web,a: images,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-web,triaged-web | low | Critical |
612,088,553 | pytorch | Guard Gloo and TensorPipe related code in RPC with #ifdef | As we have compile flags like `USE_GLOO` and `USE_TENSORPIPE` that can disable Gloo and TensorPipe independently when `USE_DISTRIBUTED=1`, RPC code (e.g., in `rpc/init.cpp`) should not expect `process_group_agent` and `tensor_pipe_agent` are always available. They should be guarded by `#ifdef`.
cc @pietern @mrshenli @... | module: bootcamp,triaged,module: rpc,module: tensorpipe | low | Minor |
612,109,661 | go | runtime: nmspinning's position in struct schedt | i think the nmspinning's position in struct schedt in runtime should be writen in the "m" part instead of "p" part
current is
```
midle muintptr // idle m's waiting for work
nmidle int32 // number of idle m's waiting for work
nmidlelocked int32 // number of locked m's waiting for work
mn... | NeedsInvestigation,compiler/runtime | low | Minor |
612,119,054 | opencv | Create Non-Transparent OpenCL API for better GPU / Accelerators utilization | I am sorry in advance if this isn't the right place for feature-requests / suggestions. This is an important issue though.
OpenCV contains the most extensive OpenCL implementations for computer vision algorithms. Many of them contain very well written kernels.
Yet, every time I take a look inside the OpenCV 'Tra... | category: ocl,RFC | low | Minor |
612,152,633 | vscode | Support /mnt WSL links in windows not using Remote WSL | <!-- β οΈβ οΈ 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... | help wanted,feature-request,windows,WSL,terminal-links | low | Critical |
612,165,437 | tensorflow | tf.io.gfile.listdir is inconsistent between GCS dir and local dir - adds trailing slashes |
**System information**
- TensorFlow version (use command below): v2.0.0-rc2-26-g64c3d38 2.0.0
- Python version: 3.6
**Describe the current behavior**
When listing the directory items for a GCS dir, listdir returns names with trailing slashes.
When listing the directory items for a local dir, listdir returns... | stat:awaiting tensorflower,type:bug,comp:ops,TF 2.7 | medium | Major |
612,180,921 | youtube-dl | gigtv.com.au | <!--
######################################################################
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 |
612,190,178 | rust | Better diagnostics when user forgets to wrap code in `main` function | ```rust
// some_third_party_crate/lib.rs
mod some_third_party_crate {
pub fn show() {}
}
//////////////////////////////////////////
//////////////////////////////////////////
//////////////////////////////////////////
// main.rs
some_third_party_crate::show();
```
https://play.rust-lang.org/?ve... | C-enhancement,A-diagnostics,A-parser,T-compiler | low | Critical |
612,207,254 | kubernetes | DELETECOLLECTION doesn't always | **What happened**:
Deleting a large collection times out (504) and leaks a goroutine that's busy deleting the collection. Calling multiple times in a row makes it worse. There's no indication that apiserver is currently deleting the collection.
**What you expected to happen**:
a) Change delete collection so th... | kind/bug,sig/api-machinery,lifecycle/frozen | medium | Critical |
612,218,315 | react | Add devtools "Inspect React component" to right-click menu | Noticed today that Vue's devtools have an awesome "Inspect Vue component" option when right-clicking on a webpage (added in https://github.com/vuejs/vue-devtools/pull/479).
The React devtools should have the same feature! It would be useful when debugging for sure.
| Type: Feature Request,Component: Developer Tools | medium | Critical |
612,254,273 | opencv | Suggestion for creation of OpenCV technical notes | In my opinion, there should be some kind of OpenCV technical notes for certain important algorithms. The idea is to summarize in a document different things like implementation details, implementation choices, deviation from the original algorithm, performance or accuracy benchmarks.
Cons:
- can almost double the d... | category: documentation,pr: Discussion Required | low | Major |
612,299,734 | go | net/http: drop support for any other TransferEncoding value than "chunked" | As of RFC 7230, "identity" is not a thing anymore, and we are probably off-spec for any other value. nginx only supports "chunked" anyway. There is a lot of code that can be removed or simplified in the sending path. (The parsing path is already being made strict as security hardening.)
However, we document setting ... | NeedsFix | low | Minor |
612,316,416 | pytorch | Add Numpy-like "order" argument to reshape | ## π Feature
<!-- A clear and concise description of the feature proposal -->
the reshape method should support Fortran-like order except for C-like order. e.g. wo could use a vecotr to fill a matrix in column order first, not just rows.
thx~~
## Motivation
<!-- Please outline the motivation for the proposal.... | feature,triaged,module: numpy,has workaround | low | Minor |
612,334,710 | go | crypto/x509: stop looking at first root store | For some reason, when looking for a CA root store on UNIX we stop at the first good file, still look at directories, and not stop at the first good directory. On most systems the file, if it exists, is a bundling of the roots in the directory, and the directories are for different systems, not for combining.
We shou... | NeedsFix | low | Minor |
612,344,698 | youtube-dl | Site support request for knowledge.ca | ## Checklist
- [X] I'm reporting a new site support request
- [X] I've verified that I'm running youtube-dl version **2020.05.03**
- [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 ... | site-support-request | low | Critical |
612,359,394 | pytorch | DistributedDataParallel does not support Modules that take no inputs. | ## π Bug
If you wrap a module that takes no input in DDP and try to call the forward pass, it fails with an IndexError. These kind of modules are useful to store re-parameterizations (ex: 2D -> SO(3)) that you want to update consistently across DDP workers without having to manually synchronize gradients.
## To ... | triaged,module: data parallel | low | Critical |
612,372,148 | kubernetes | CSI ephemeral volumes: idempotent NodeUnpublishVolume | <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!
If the matter is security related, please disclose it privately via https://kubernetes.io/security/
-->
**What happened**:
During test... | kind/bug,sig/storage,lifecycle/frozen | low | Critical |
612,383,341 | go | crypto/tls: conflicting lock order in Handshake() and Read() | ### What version of Go are you using (`go version`)?
1.14.2
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/boqin/.cache/go-build"
GOENV="/home/boqin/.confi... | NeedsInvestigation | low | Critical |
612,407,462 | terminal | Display graphical images in terminal | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
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... | Issue-Feature,Help Wanted,Area-TerminalControl,Product-Terminal | high | Critical |
612,409,160 | rust | Anchor names for some impls are not predictable | I have [a struct with a generic type](https://gitlab.com/sequoia-pgp/sequoia/-/blob/master/openpgp/src/cert/bundle.rs#L112):
```
struct ComponentBundle<C> {
component: C,
...
}
```
Then I have [implementations for different concrete types](https://gitlab.com/sequoia-pgp/sequoia/-/blob/master/openpgp/... | T-rustdoc,C-bug | low | Major |
612,485,367 | godot | Creating a node and attaching a built-in script to it resets the names of built-in scripts with higher ID's (lower on the scene tree) than the newly created script/node. | **Godot version:**
3.2.1
**OS/device including version:**
Windows 10 Education Version 1909 Build 10.0.18363
**Issue description:**
When a built-in script gets created and saved above other nodes (on the scene tree) that have built-in scripts (on a freshly opened project?) their built-in script names get reset... | bug,topic:editor | low | Critical |
612,491,416 | go | x/playground: exit code 2 is cached and returned for a valid program | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go1.14.2
</pre>
### Does this issue reproduce with the latest release?
Probably yes
### What operating system and processor architecture are you using (`go env`)?
`playground configurations`
### What did you do?
I changed the synt... | NeedsInvestigation | low | Critical |
612,541,704 | angular | Cannot parse slashes in unquoted attribute values | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
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.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
... | type: bug/fix,area: compiler,state: confirmed,P5,compiler: parser | low | Critical |
612,644,116 | godot | File.open() returns ERR_FILE_NOT_FOUND for png/wav/resource files in exported games | **Godot version:**
Godot Engine v3.2.1.stable.official
**OS/device including version:**
Windows 10
**Issue description:**
Opening files in windows returns `OK`, however in HTML5 it returns `ERR_FILE_NOT_FOUND`
**Steps to reproduce:**
Add this code to your scene
```
extends Node
func _ready() -> void:
... | topic:editor,documentation,topic:import | low | Critical |
612,652,500 | PowerToys | [Image Resizer] Offer option to encode images to another format (image converter) | Hello,
I took a look at the image resizer feature and found it really interesting, but I was wondering if it could also encode to another format. There are times when you have a bunch of png images that you want to convert to png, to have a lighter file, with or without a resize of the image. I think it could be int... | Idea-Enhancement,Help Wanted,Product-Image Resizer | high | Critical |
612,677,058 | svelte | Nested Transitions NOT Honored | I believe I have discovered an issue where Nested Transitions are not operating correctly.
**Component**:
I have a simple TreeView component ([see code here](https://svelte.dev/repl/82b00644720a4ca2bdb89c6a653ec987?version=3.22.2)).
- Each node in the tree is powered through a recursion on itself (via the `<... | bug,temp-stale | low | Major |
612,696,996 | TypeScript | Allow usage of `Reflect.get()` by returning `unknown` instead of `any` | ## Search Terms
Reflect get unknown
## Suggestion
Change the type definition of `Reflect.get()` to return `unknown` instead of `any`.
## Use Cases
Allow type safe dynamic access of fields on an `object` or `{ [k: string}: unknown }`
Using `Reflect.get(o, 'some key')` and have it return `unknown`.
T... | Suggestion,Awaiting More Feedback | low | Critical |
612,747,517 | flutter | Web text layout benchmarks do too little work per measurement | Turns out the reason why the text benchmarks are severely affected (e.g. the color grid benchmark regresses by 20%) by enabling chrome://tracing is because they do too little amount of work per measurement. The solution might be to bundle text measurements (e.g. 1000 measurements per bundle) and report them all at once... | framework,c: performance,a: typography,platform-web,team: benchmark,P2,team-web,triaged-web | low | Critical |
612,755,213 | pytorch | [DRAFT] Channels Last + AMP support plan for 1.6 release | - [ ] Fix DDP
- [ ] Verify it works with TorchVIsion models
- [ ] Update/Verify pytorch/examples code
.
- [ ] AMP
- [ ] Update pytorch/examples code to support AMP and Channels Last
.
- [ ] Operators Coverage
- [ ] Automate operators coverage tests
- [ ] Publish operators conversion issue to track... | triaged,module: memory format | low | Minor |
612,788,404 | go | runtime/race: should 32-bit atomic ops be flagged as racing with 64-bit atomic ops? | (Broken out from https://github.com/golang/go/issues/5045#issuecomment-624210372.)
My instinct is that mixing 32-bit and 64-bit `atomic` ops on the same memory must not be allowed, because their implementations may differ on some 32-bit hardware. However, the race detector does not currently flag them.
For exampl... | RaceDetector,NeedsInvestigation,compiler/runtime | low | Critical |
612,792,962 | flutter | [Test]: Golden Test Fails on CI(Same Platform) | ## Steps to Reproduce
<!-- You must include full steps to reproduce so that we can reproduce the problem. -->
1. Run ``` flutter test --update-goldens``` on local machine
2. Run ```flutter test``` on CI machine
**Expected results:** <!-- what did you want to see? -->
Test should pass
**Actual results:** ... | a: tests,framework,platform-mac,P3,a: gamedev,customer: chilli,team-framework,triaged-framework | medium | Critical |
612,797,840 | godot | Camera2D seems to make tooltips appear far away from cursor. | **Godot version:** 3.2.1 Mono
**OS/device including version:** Windows 10 Home 64-bit
**Issue description:** Tooltips appear far away from cursor.
The Camera2D in the scene is a child of a Sprite node, and moves wherever it goes. Changing it's position and rebooting the game causes the tooltip to appear in a dif... | bug,topic:gui,topic:2d | low | Critical |
612,810,183 | pytorch | llvmlite version issue when upgrading CI docker image to python 3.8 | ## Issue description
Found an issue when trying to upgrade all CI docker images to python 3.8.
1. Pytorch docker image install llvmlite 0.30.0 which does not support llvm9 under python 3.8, it needs llvm-config which is not available in llvm9.
2. Switching to llvmlite 0.31.0 (or 32) makes the docker image built... | module: ci,triaged | low | Minor |
612,836,489 | TypeScript | Add missing `toString` declarations for base types that have them | <!-- π¨ 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 | medium | Critical |
612,838,944 | PowerToys | [FEATURE REQUEST] Ability to tile windows automatically | ### The "Window-Tiling" PowerToy
Here's an idea, add the ability to tile windows automatically. What I mean by that is when a window would open, it'll cover the whole screen but when another window would open, it'll cover the half of the screen automatically and the first app would also resize to the half of the scree... | Idea-Enhancement,Product-Window Manager,Product-FancyZones | high | Critical |
612,838,970 | pytorch | autograd engine callbacks don't respect non-default cuda streams | ## π Bug
Not sure if this is actually a bug, but discovered this when debugging https://github.com/pytorch/pytorch/issues/37790. It seems that callbacks added to the autograd engine with `queue_callback` (from C++) or `Variable._execution_engine.queue_callback` (Python) don't respect the current cuda stream and ins... | module: autograd,module: cuda,triaged | low | Critical |
612,841,977 | pytorch | Deprecate type() and type_as() call |
- Move it to an internal API
- Replace it with either `dtype/device` or the internal API | triaged,module: deprecation,module: ux | low | Minor |
612,877,956 | go | cmd/go: optimize CGO caching and dead code removal | I'm writing this with the assumption that each CGO-generated wrapper for each C function is stored in its own C file.
Editing and compiling a CGO package can take a minute or 2, even for one little change.
It should be possible to cache the generated .o files and only recompile them if the code for that function chan... | NeedsInvestigation,GoCommand | low | Major |
612,880,811 | flutter | It is difficult to properly style a DropdownButton for both Dark and Light modes | Dartpad: https://dartpad.dev/a7b8353fb0ba259741aab0bd4c34dffd
See, e.g. the Cocoon dashboard page.
When the drop down overlay is not up, the text is rendered on a transparent dropdown that shows the background color. It would ideally look white in that situation.
When the popup shows, in dark mode black text i... | framework,f: material design,a: typography,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-design,triaged-design | low | Major |
612,898,847 | flutter | Support discovery of arbitrary Flutter instances | ### Background
Flutter is easily embeddable in a variety of platforms and environments. While the tool will still build out first class support for several platforms, there are a growing number of alternatives being developed as well. Ideally a developer that targets an alternative embedding would be able to benefit... | c: new feature,tool,P3,team-tool,triaged-tool | low | Critical |
612,902,025 | pytorch | [RFC] Don't install CI dependencies in build scripts, install them in underlying docker images | ## Motivation
<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too -->
Our build scripts do a lot to install multiple dependencies which makes debugging incredibly... | module: ci,triaged | low | Critical |
612,905,834 | pytorch | Support @property decorator in TorchScript | ## π Feature
Currently, trying to use a `@property`-decorated method in TorchScript results in the following error:
```
(This attribute exists on the Python module, but it's an @property method. @property methods are not yet supported in TorchScript. Please file a feature request on Github):
```
It would be use... | triage review,oncall: jit | low | Critical |
612,935,678 | three.js | VolumeShader is said to "not work very well with perspective yet" | https://github.com/mrdoob/three.js/blob/dev/examples/webgl2_materials_texture3d.html#L53 has a cautionary comment `// Create camera (The volume renderer does not work very well with perspective yet)`.
This seemed worth an issue. Perhaps VolumeShader can be improved? Perhaps we need a second shader, which works wel... | Addons | low | Minor |
612,973,606 | pytorch | torch.addmv can't take as input tensors with different dtypes | Is this expected?
```
>>> vec = torch.randn(3, dtype=torch.half)
>>> M = torch.randn(2, dtype=torch.float)
>>> mat = torch.randn(2, 3, dtype=torch.float)
>>> torch.addmv(M, mat, vec)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError: expected scalar type Float but found Half
... | triaged,module: type promotion | low | Critical |
612,984,317 | flutter | Cross-Compiling Engine for Linux doesn't build Unit Test Cases | When cross-compiling Engine for Linux (86c0c54bef50b4e02e8f98bcd913e0293f82f7bf), relavent Unit Test Cases are not being generated. | a: tests,engine,platform-linux,P2,team-engine,triaged-engine | low | Minor |
612,988,933 | svelte | Mutating spring store values sets the values instantly | https://svelte.dev/repl/888343d074354aff99bde5bbee55b68d?version=3.22.2
Using the `$store.key = value` syntax with springs sets the values instantly when two keys are changed in the same frame
Should be fixed with #4742 | stale-bot,temp-stale | low | Minor |
613,009,406 | TypeScript | Incremental type checking failure (regression) | **TypeScript Version:** 3.7.x-dev.20200505
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**Code**
1. clone https://github.com/falsandtru/typed-dom
2. npm i
3. open src/builder.ts (no error)
4. remove the closing parenthesis of `API(html, ... | Needs Investigation | low | Critical |
613,016,686 | neovim | many char support for listchars's space. |
<!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`:0.4.3
- `vim -u DEFAULTS` (version: ) behaves differently? no
- Operating system/version: Winodow10
- Terminal name/version:
- `$TERM`:
### Steps to reproduce using `nvim -u NORC`
```
nvim -u NORC
```
### Actu... | enhancement,display | low | Minor |
613,027,991 | go | cmd/compile: package-scope and function-scope types get the same name | This programs shows that we can get two different types with the same name. This is permitted by the reflect package, but it seems unnecessarily confusing. Should the compiler generate different names for these types?
```Go
package main
import (
"fmt"
"reflect"
)
type myint64 int64
func main() {
v... | NeedsInvestigation,compiler/runtime | low | Major |
613,054,104 | youtube-dl | Request support for altcensored.com (same format as YT, it hosts deleted channels) | <!--
######################################################################
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 |
613,072,249 | create-react-app | Question: should we use `allowSyntheticDefaultImports:true` or `skipLibCheck:true` in every React project? | There are currently two ways of writing in the community:
In [TypeScript Documentation](https://www.typescriptlang.org/v2/docs/handbook/react-&-webpack.html#write-some-code) it write:
```ts
import * as React from "react";
```
and in CRA:
https://github.com/facebook/create-react-app/blob/9123aae7a3beaba8b2... | issue: proposal,needs triage | low | Major |
613,126,977 | godot | Mouse Key is ignored when used as Shortcut in Button | **Godot version:**
Godot 3.2.1
**OS/device including version:**
WIndows 10
**Issue description:**
Mouse Key that registered on input map is ignored when used as Button's Shortcut.
**Steps to reproduce:**
1. Add Mouse Button to Input Map, in this reproduction project I added it to ui_cancel
 returns randomly "LatLng(-90.0, -180.0)" inside onMapCreated | <!-- 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.3,team-ios,triaged-ios | low | Critical |
613,286,990 | TypeScript | TS2345 when calling a superclass' method with a conditional type parameter from a parameterized subclass | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug | low | Critical |
613,300,177 | godot | If you modify an exported script variable it shows it as modified even if you return the variable to its original value. | **Godot version:**
3.2.stable.official
**OS/device including version:**
Windows 10 - 1909
**Issue description:**
The exported variable will appear as if it is modified even if you manually set it to the original value it was exported as.
**Steps to reproduce:**
Export a variable, modify it, and put it bac... | bug,topic:editor,usability | low | Minor |
613,306,324 | godot | Popupmenu 'items' property is an array that stores a weirdly complex pattern of objects. | **Godot version:**
3.2.stable.official
**OS/device including version:**
Windows 10 - 1909
**Issue description:**
If you want to reorder a PopupMenu's elements you need to modify an oddly complex array of objects manually. It seems strange that rather than being stored in a dictionary, these elements are just a... | discussion,topic:gui | low | Minor |
613,428,667 | terminal | Session text is invisible when Windows is set to "HDR mode". | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
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... | Help Wanted,Area-Rendering,Issue-Bug,Product-Terminal,Priority-2 | low | Critical |
613,449,424 | electron | Specify the resources path | ### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have s... | enhancement :sparkles: | low | Minor |
613,465,403 | flutter | WipError: WipError 4: {code: -32000, message: Cannot find context with specified id} | From `run -d chrome` from crash logging. No back trace =(
@jonahwilliams | c: crash,tool,platform-web,P2,team-web,triaged-web | low | Critical |
613,466,522 | PowerToys | [KBM] UI needs to respond to PT Settings Theme | Currently UI only changes from light to dark mode in accordance with a users Windows settings. | Product-Keyboard Shortcut Manager,Area-User Interface,Priority-3 | low | Major |
613,467,211 | flutter | plutil FormatException during `flutter create .` | Seen in `master/1.18.0-9.0.pre.98`
We're possibly passing a flag the user's version of plutil doesn't like and not checking the exit code.
```
FormatException: Unexpected character (at character 1)
Usage: plutil -i|--infile FILE [-o|--outfile FILE] [-d|--debug]
^
Β | atΒ _ChunkedJsonParser.fail | (convert_patc... | c: crash,tool,P2,team-tool,triaged-tool | low | Critical |
613,500,159 | flutter | [pigeon] print warning when `configurePigeon` overrides a commandline flag | cc @gaaclarke | c: new feature,package,team-ecosystem,p: pigeon,P3,triaged-ecosystem | low | Minor |
613,507,042 | go | x/build/cmd/gopherbot: instances of no reviewers being assigned to CLs | There are owners for this directory, so I'm surprised no one got auto-assigned until @hyangah added reviewers. Are there logs that I can take a look at? Happy to investigate myself, but I don't know how (or if I can) access gopherbot logs. | Builders,NeedsInvestigation | low | Major |
613,511,556 | rust | extern crate in function body results in incorrect path suggestions. | ```rust
fn main() {
extern crate num; // 0.2.1
struct F<T: num::Integer>(T);
fn foo<T>(_: F<T>) {}
}
```
[playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=d1641035710d382c99e29dca6e17fca3)
has the following error:
```
error[E0277]: the trait bound `T:... | T-compiler,C-bug,A-suggestion-diagnostics,D-invalid-suggestion | low | Critical |
613,515,156 | go | proposal: spec: disallow impossible interface-interface type assertions | Now that we have introduced a vet check for this (see #4483), once we use modules to select the language version, we should disallow impossible interface-interface type assertions.
A quick refresher: Given a variable `x` of type interface `I1` with a method `m()`, and an interface `I2` with a method of the same name... | LanguageChange,Proposal,Analysis,LanguageChangeReview | medium | Major |
613,529,031 | flutter | asset manifest rebuilt logic does not include additions to wildcard directories | Currently the asset manifest rebuild logic consists of a depfile produced from all known copied assets + the manifest itself. Unfortunately this is incorrect in the presence of wildcard directories, since the addition of a file should be picked up, but does not change the hash of any known dependencies.
To solve thi... | tool,a: build,P3,team-tool,triaged-tool | low | Critical |
613,557,084 | TypeScript | Allow JSX element tags to be symbols | <!-- π¨ 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 |
613,578,981 | go | x/website: link to signatures on Go releases and document how to validate | On https://golang.org/dl/, there are links to each Go release, along with SHA256 checksums. However, the security of those checksums is only ensured by HTTPS. I learned recently that there are also PGP signatures for each release. So to go along with:
https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz
There is ... | Documentation,Builders,NeedsInvestigation,FeatureRequest,website | low | Major |
613,599,506 | flutter | Un-merge threads when there are no mutations in the platform views and overlays. | Our first launch of dynamic thread merging will only un-merge the thread when there are no platform views at the current frame and next frame. No platform views also guarantees there are no overlay views.
In the future, we want to optimize this so that the threads can be un-merged while there are platform views and ... | platform-ios,engine,c: performance,a: platform-views,perf: speed,P2,team-ios,triaged-ios | low | Minor |
613,600,451 | TypeScript | Allow trailing lines in multiline comment directives | **TypeScript Version:** 4.0.0-dev.20200507
**Search Terms:** multiline comment directive ts-expect-error ts-ignore
**Code**
```ts
const x = 0;
/* @ts-ignore
continuing comment
that could be multiline*/
x();
```
**Expected behavior:**
The comment looks like a directive to ignore the `x();`'s ... | Bug,Rescheduled | low | Critical |
613,633,823 | terminal | Support using the Accent Color for `cursorColor`, `selectionBackground`, etc. | >
>
> Can there be support for the Accent Color brushes, so if I were to set my cursor or selction to my Accent Color, as it changes, that change will be reflected in Windows Terminal?
So that might need to be it's own separate feature request. The cursor and the selection are drawn in DirectX down in `TermContr... | Help Wanted,Area-TerminalControl,Area-Settings,Product-Terminal,Issue-Task | low | Minor |
613,635,487 | TypeScript | Introduce new flag for minifier optimization hints | <!-- π¨ 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 | medium | Critical |
613,679,845 | flutter | pigeon: add constructor arguments to generated dart classes | right now the constructors are empty | package,team-ecosystem,p: pigeon,P3,triaged-ecosystem | low | Minor |
613,680,636 | flutter | pigeon: add nice error message if someone sends a message to an API that hasn't been setup | package,team-ecosystem,p: pigeon,P3,triaged-ecosystem | low | Critical | |
613,689,874 | node | constants: stop exporting UV_ constants | ...and possibly other internal constants as well.
Context: #33246
Example: `os.constants` exports `UV_UDP_REUSEADDR`, which makes no sense for that module and isn't usable outside of core.
Introduced in dcccbfdc799 which turned the mostly-internal, undocumented `constants` module into something that's public a... | discuss,lib / src | low | Minor |
613,690,579 | pytorch | torch.save incompatible with lzma file | ## π Bug
Using the `lzma` module when opening a file for use with `torch.save` or `torch.load` does not work, when it should, since it provides file-like objects.
## To Reproduce
Steps to reproduce the behavior:
t = torch.tensor(range(5))
f = lzma.open('tmp.xz', 'wb')
torch.save(t, f)
f.... | module: serialization,triaged | low | Critical |
613,690,750 | TypeScript | Array literal of union type should be convertible to union of arrays | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug | low | Critical |
613,705,659 | svelte | Observer still called when unsubscribed during store update | https://svelte.dev/repl/703dd3e1045543388fd5583c489bac55?version=3.22.2
```js
const store = writable(0);
let is2cancelled = false;
const cancel_sub1 = store.subscribe((v) => {
if(v === 1){
cancel_sub2()
is2cancelled = true
}
});
const cancel_sub2 = store.subscribe((v) => {
if(v === 1 && is2cancelled){... | awaiting submitter,stale-bot | low | Minor |
613,708,576 | pytorch | Special methods on torchscript custom class | ## π Feature
Allow torchscript custom extension class to define Python special methods such as `__len__` and `__getitem__`.
## Motivation
We are implementing torchscript-able Sentence Piece in torchtext. https://github.com/pytorch/text/pull/755
`__len__` and `__getitem__` are useful when building NLP pipelin... | oncall: jit,triaged | low | Critical |
613,709,270 | pytorch | JIT compilation of NamedTuple Containing a NamedTuple fails | ## π Bug
When creating a Class inherited from NamedTuple which contains a member which is a type of a different class inherited from NamedTuple, jit compiler fails at resolving the type.
## To Reproduce
<img width="815" alt="Screen Shot 2020-05-06 at 5 58 42 PM" src="https://user-images.githubusercontent.com/... | oncall: jit,triaged | low | Critical |
613,717,015 | TypeScript | Better type printing for JSX IntrinsicElements | <!-- π¨ 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,In Discussion | low | Critical |
613,754,864 | flutter | Support `flutter attach` on iOS devices on non-macOS devices | It would be nice to be able to `flutter attach` to iOS devices on non-macOS devices.
This is related to #22771, but specifically for attaching.
I used to have [a patch (older, shorter)](https://gist.github.com/gabrc52/eb03009970d3baa30b0bb546e15aaa9f/bdb8acc4eaeacb61d2db1c5a87ea0e469fc84b9b) [(newer version, but ... | c: new feature,platform-ios,tool,P3,team-ios,triaged-ios | low | Major |
613,768,265 | TypeScript | RFC: Support __proto__ literal in object initializers | This is a new issue to specifically propose and elaborate on a feature I raised [in this comment](https://github.com/microsoft/TypeScript/issues/30587#issuecomment-614855795) on #30587.
## Search Terms
- \_\_proto__
- prototype
- object literal
- object spread
- object initializer
## Suggestion
While acce... | Suggestion,Awaiting More Feedback | medium | Critical |
613,769,659 | pytorch | unsqueeze support for named tensors | ## π Feature
I would love to be able to use unsqueeze on named tensors.
## Motivation
In my code using named tensors I end up with a lot of code that looks like: `
my_named_tensor.rename(None).unsqueeze(1).refine_names("x","y","z")
`
where the "x" and "z" are the existing names, and "y" would be the newly crea... | triaged,enhancement,module: named tensor | low | Minor |
613,794,114 | pytorch | New padding size format for F.pad, allowing named tensors and more clear syntax overall | ## π Feature
This feature request is within regards to the padding size argument of `F.pad`. From my perspective there are two deficiencies with the current format:
1. For normal tensors (not named), the current format can be very awkward. If you're adding padding to the last dimension it's elegant. But sometim... | feature,module: nn,triaged | low | Minor |
613,965,564 | TypeScript | Implicit Symbol.iterator call in for..of loops / spread destructuring doesn't infer `this` generic type parameter | <!-- π¨ 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,Experience Enhancement,Has Repro | low | Critical |
613,977,662 | ant-design | Remove inline styling from ant components (props) | - [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.
### What problem does this feature solve?
Right now some components like **aside** navigation etc. have some of the styles by default in html structure, and some of them i... | Inactive,improvement | low | Major |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.