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 |
|---|---|---|---|---|---|---|
494,957,901 | TypeScript | Expose inferred type for use in type annotations | <!-- π¨ 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 |
495,034,463 | opencv | VIDEOIO ERROR: V4L2: Pixel format of incoming image is unsupported by OpenCV | 
/VIDEOIO ERROR: V4L2: Pixel format of incoming image is unsupported by OpenCV/
I am trying to use darknet with input from Intel Realsense D435 RGBD camera on ubuntu 18
Please a... | feature,category: videoio(camera) | low | Critical |
495,050,941 | pytorch | NNPACK condition should be changed (ARM processors) | ## π Feature
Remove the condition for usage of NNPACK for conv2d which requires the batchsize >= 16. Otherwise THNN is used on ARM processors
## Motivation
I tested NNPACK vs. THNN and I am think that NNPACK is mostly faster than THNN for batchsize = 1 and also > 1. NNPACK is still being excluded in special cas... | module: convolution,triaged,enhancement,module: nnpack | low | Minor |
495,089,800 | pytorch | RuntimeError: tensor.ndimension() == static_cast<int64_t>(expected_size.size()) INTERNAL ASSERT FAILED | ## π Bug
Hey
I am trying to train my model. I am using Multi-GPU training.
While training I get the next Runtime error:
```
RuntimeError: tensor.ndimension() == static_cast<int64_t>(expected_size.size()) INTERNAL ASSERT FAILED at /opt/conda/conda-bld/pytorch_1565272279342/work/torch/csrc/cuda/comm.cpp:220, pl... | needs reproduction,module: multi-gpu,module: cuda,triaged | low | Critical |
495,121,715 | TypeScript | Missing references for Lodash named imports | <!-- π¨ 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,Domain: Refactorings | low | Critical |
495,182,524 | storybook | Addon-docs: Resize iframe to fit content | **Is your feature request related to a problem? Please describe.**
Sometimes the component being displayed in Docs is only a few px tall, yet the iframe defaults to 500px. When you have a lot of these stories stacked, there is a lot of empty space.
**Describe the solution you'd like**
After iframe loads, have it resiz... | feature request,help wanted,addon: docs,block: other | medium | Critical |
495,186,552 | svelte | A lot of empty text nodes - I mean A LOT - performance issue | **Describe the bug**
Just check this repl https://svelte.dev/repl/902d4ccfcc5745d0b927b6db6be4f441?version=3.12.1
There are 22 000 empty text nodes that are really slowing down entire component on update.
,
y: &(),
) {
x = y;
}
```
gives the error:
```
error[E0623]: lifetime mismatch
--> src/lib.rs:5:9
|
2 | mut x: &(),
| ---
3 | y: &(),
| --- these two types are declared with different lifetimes...
4 | ) {
5 | x = y;
| ... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
495,317,764 | go | cmd/link: linker should fail quickly when external link mode is not supported | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
HEAD
</pre>
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
<details><su... | NeedsFix,compiler/runtime | low | Minor |
495,336,224 | pytorch | Generated file not getting cleaned up by clean | When making changes that add new torch functions, and which should result in a change to the generated file `aten/src/ATen/core/OpsAlreadyMovedToC10.cpp`, we must build with GEN_TO_SOURCE=1 to regenerate the file with updated interfaces. `python setup.py clean` followed by `python setup.py install` does not cause the f... | module: build,triaged | low | Minor |
495,351,913 | go | go/doc: lines ending with parenthesis cannot be headings | What did you do?
Add a package doc like:
// ...
// Create a snapshot from a source table (snapshots alpha)
//
// cbt createsnapshot \<cluster\> \<snapshot\> \<table\> [ttl=\<d\>]
// ...
What did you expect to see?
The string "Create a snapshot..." should be a title since it is delimited by blank lines, ... | Thinking,NeedsDecision | low | Minor |
495,409,445 | go | cmd/compile: output a DW_LNE_end_sequence instruction at the end of every function's line table | As we move DWARF generation out of the linker and into the compiler, we've taken some short cuts when emitting the line table. Specifically, rather than outputting a DW_LNE_end_sequence at the end of every function's debug_lines table, we reset the state machine. See discussion [HERE](https://go-review.googlesource.com... | NeedsInvestigation,compiler/runtime | low | Critical |
495,410,657 | opencv | MSER keypoints should be ellipses (which should be taken by descriptors like SIFT) | The invariance against perspective transformations is only valid, when MSER keypoints are extracted and described as ellipses. Internally they are also extracted as ellipses.
I see, there is such a ellipse-keypoint class in xfeatures2d, that or another solution should be used by MSER-Features and SIFT-Descriptors, a... | category: features2d,RFC | low | Minor |
495,416,705 | rust | Suggest giving recommending substitution based on naming conventions with available | New rustacean here. In writing simple programs to get a feel for the language, I tried testing if a string slice is empty as the conditional for a if/else statement. Something like the following:
if mystr.empty() {
// ...
} else {
// ...
}
Of course the correct method is `.is_empty... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics | low | Critical |
495,425,741 | rust | Match ergonomics means bindings have different types in patterns and match arm; cannot deref references in pattern | Consider the following:
```rust
struct S(u32);
fn foo(x: &S) {
let _: &u32 = match x {
S(y) => y,
_ => &0,
};
}
```
Here, the variable binding `y` has type `&u32` outside the pattern. However, inside the pattern it has type `u32`. The fact that these types do not align is confusing, ... | C-enhancement,T-lang,A-patterns | high | Critical |
495,451,262 | angular | [Ivy] ASSERTION ERROR: Should be run in update mode | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
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.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
... | freq2: medium,area: core,core: change detection,P3 | medium | Critical |
495,451,885 | pytorch | Remove TensorOptions logic from generated code | Scripts that are generating code are getting more and more complex and require a lot of domain knowledge in order to make any substantial changes. This is mostly due to logic around TensorOptions. We should eliminate it in order to significantly decrease complexity of the code.
Objectives:
- Make is easy to add ... | module: internals,triaged | medium | Major |
495,474,600 | kubernetes | migrate the leader election to use v1beta1 Events | the leader election code should be emitting events against the v1beta1 Events API. This change also concerns any kubernetes component (such as kube-scheduler or the controller-manager) that uses the `leaderelection` package.
Part of #76674
/kind feature
/sig scalability
/sig instrumentation
/priority important... | priority/important-soon,sig/scalability,kind/feature,sig/instrumentation,do-not-merge/hold,lifecycle/frozen | low | Major |
495,482,960 | go | cmd/compile: use hashing for switch statements | Currently we implement switch statements with binary search. This works well for values that fit into a register, but for strings it might be better to compute a hash function.
Some thoughts:
1. Even in the simple case of using a full hash function, exactly two passes over the switched value is probably better th... | help wanted,NeedsInvestigation,compiler/runtime | medium | Critical |
495,497,111 | go | cmd/go: 'go mod edit -replace' fails if the package's version in go.mod is not in semver format | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ar... | NeedsInvestigation,GoCommand,modules | low | Critical |
495,511,464 | godot | [Bullet] Setting 3D gravity vector during runtime disables it instead | **Godot version:**
3.1.1
**OS/device including version:**
Ubuntu 18.04
**Issue description:**
Calling `PhysicsServer.area_set_param` to update a world's gravity vector seems to disregard the provided value, instead setting it to 0. After some digging, I found this behaviour consistent with commit https://githu... | bug,topic:physics,topic:3d | low | Critical |
495,513,307 | pytorch | Avoid sending zero grads over the wire in distributed autograd backward pass | For the distributed backward pass, we pass zero grads over the wire for certain tensors which were not used in the forward pass (when we execute RecvRpcBackward). This is done for simplicity currently, but a potential performance enhancement is to send only gradients that we need over the wire. For more context see: h... | triaged,module: rpc | low | Major |
495,514,629 | TypeScript | Serialization/Deserialization API for AST | ## Search Terms
serialize deserialize ast node
Ref #26871
Ref #28365
## Suggestion
Implement/expose an API that can serialize/deserialize AST nodes, in particular a way to serialize a source file so it can be easily transferred or stored, potentially manipulated, and hydrated back.
Somewhat related is #... | Suggestion,Needs Proposal | low | Critical |
495,525,703 | pytorch | parallel_for may hang when called in main process and then on daemon process | ## π Bug
The ```torch.Tensor()``` will be stuck or deadlock in the multiprocess if the main process did the ```torch.Tensor()``` before the child-process start().
Please see the code below to reproduce the bug.
If reducing the size of dummy_im to the size (3,3), it's ok. Therefore, It might be a shared memory pro... | module: multiprocessing,triaged,module: deadlock | low | Critical |
495,542,991 | material-ui | Verify correctiveness of theme during `createMuiTheme` | <!-- Provide a general summary of the feature in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! β€οΈ
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the ... | new feature,core | low | Critical |
495,558,393 | youtube-dl | Could you add a extractor for amazon live: https://www.amazon.com/live | amazon live is a new live site: https://www.amazon.com/live
| request | low | Minor |
495,612,920 | pytorch | [libtorch]Same model in CUDA and CPU got different result? | ## π Bug
I have already asked questions in the forum, the link is as follows,
https://discuss.pytorch.org/t/why-same-model-in-cuda-and-cpu-got-different-result/56241
I happened in the same program, using the same model, switching between the GPU and the CPU, and the results were different.
My libtorch versio... | module: cpp,module: nn,triaged | medium | Critical |
495,663,437 | flutter | TextEditingController documentation should mention that it shouldn't be created in build | If you use Pinyin to input Chinese characters, the intermediate letters will also be treated as "changed" texts when using "onChanged" callback if you set texts for the text controller in the build function.
This also affects Japanese Input method too.
If you want to reproduce this issue, please clone this repo:... | a: text input,framework,f: material design,a: internationalization,d: api docs,d: examples,P3,team-text-input,triaged-text-input | low | Major |
495,668,693 | terminal | Feature Request: global hotkey to re-run last command | # Description of the new feature/enhancement
I would really like to see the ability to bind a global hotkey to repeat the last command in the visible terminal. In essence all it does is: `up arrow` and `enter` on the terminal that is visible. Should work even when terminal has no focus since I'm pressing this global... | Issue-Feature,Help Wanted,Area-UserInterface,Product-Terminal | low | Major |
495,728,013 | create-react-app | Service worker: delete index.html from cache in onupdatefound event | ### Is your proposal related to a problem?
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
When the service worker in `registerServiceWorker.(js|ts )` is enabled it provides very useful PWA benefits.
However, in a production build it ... | issue: proposal,needs triage | medium | Critical |
495,761,805 | rust | Unit struct appears to be a NoType in pdb files | A unit struct has the following debug metadata:
"'()", DW_ATE_unsigned
and when reading the type data from generated pdb file I get a <no type> for it.
```rust
#[inline(never)]
fn foo(_: ()) { }
fn main() {
let x = ();
foo(x);
}
```
Compile it, read pdb data from the pdb file in target/debug :
```ba... | A-debuginfo,T-compiler,O-windows-msvc,C-bug | low | Critical |
495,840,716 | rust | -C target-feature/-C target-cpu are unsound | In a nutshell, target-features are part of the call ABI, but Rust does not take that into account, and that's the underlying issue causing #63466, #53346, and probably others (feel free to refer them here).
For example, for an x86 target without SSE linking these two crates shows the issue:
```rust
// crate A
p... | A-codegen,P-medium,T-compiler,I-unsound,C-bug,A-ABI,A-target-feature | medium | Critical |
495,856,167 | flutter | Staggered GridView in Flutter | <!-- 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,a: fidelity,f: scrolling,would be a good package,c: proposal,P3,team-framework,triaged-framework | medium | Critical |
495,882,224 | flutter | Hot restart/reload for web should allow controlling invalidation of resources. | We should know in the tool what resources have been invalidated when performing a hot restart. In should be possible to, via some debugger connection, provide the list of invalidated resources and and preserve the rest.
This would remove the loading jank for applications with lots of fonts. | tool,c: performance,t: hot reload,platform-web,P2,team-web,triaged-web | low | Critical |
495,896,083 | go | x/text/language: language Matcher does not properly support zh_HK (Hong Kong) | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
1.13
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
Re... | NeedsInvestigation | low | Minor |
495,902,225 | go | proposal: cmd/doc: add "// Unstable:" prefix convention | ### What did you see today?
Many projects have different stability guarantees for the exported symbols in a package. Others rely on generated code that cannot, or will not, give stability guarantees. As such, most authors will document this pre-release or instability in doc strings, but the syntax and conventions are ... | Documentation,Proposal,Proposal-Hold | high | Critical |
495,936,490 | flutter | Do not create an onscreen surface when foregrounding if no FlutterViewController is visible | Spin off from https://github.com/flutter/flutter/issues/38736 and https://github.com/flutter/engine/pull/12277#issuecomment-531987029
Right now when coming back into the foreground on iOS, the PlatformViewIOS will recreate the IOSSurface. This isn't necessary if the FlutterViewController isn't visible. | platform-ios,engine,a: platform-views,c: proposal,P2,team-ios,triaged-ios | low | Minor |
495,975,643 | go | net/http/httputil: ReverseProxy doesn't handle connection/stream reset properly | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
net/http/httputil: ReverseProxy
</pre>
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture a... | NeedsInvestigation | low | Critical |
496,022,384 | go | cmd/go: do not allow the main module to replace (to or from) itself | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13 darwin/amd64
</pre>
This problem is also seen on Linux using go1.12.3
<pre>
$ go version
go version go1.12.3 linux/amd64
</pre>
And on... | help wanted,NeedsFix,GoCommand,modules | medium | Critical |
496,030,508 | kubernetes | Cache CRD conversion results | **What would you like to be added**:
A cache of CRD conversion results.
Cache entries should be keyed by UID (namespace, name), GVK and resource version, I believe.
**Why is this needed**:
Based on the benchmarks data we gathered for the [CRD scalability targets](https://github.com/kubernetes/enhancements/b... | sig/api-machinery,kind/feature,priority/important-longterm,area/custom-resources,lifecycle/frozen | low | Major |
496,055,201 | flutter | Embedded platform views don't support Switch Access | /cc @amirh @goderbauer
Switch Access appears to work fine with Flutter Gallery. | platform-android,framework,a: accessibility,from: a11y review,a: platform-views,P2,team-android,triaged-android | low | Minor |
496,056,757 | flutter | Voice Access bugs | /cc @amirh @goderbauer
We appear to support basic navigation, but from some quick testing with the Gallery I'm seeing some issues.
- [ ] Text fields don't support input.
- [ ] Not all UI elements are correctly discovered and annotated. I'm not sure if this is an issue with the Gallery itself or an underlying se... | platform-android,engine,a: accessibility,from: a11y review,P2,team-android,triaged-android | low | Critical |
496,057,734 | flutter | Embedded platform views don't support Voice Access | Embedded platform views appear to lack basic functionality with Voice Access. I was able to open the hamburger menu inside of our webview app, but nothing else in the embedded UI had controls.
This is likely blocked on #40912.
/cc @amirh @goderbauer | platform-android,engine,a: accessibility,from: a11y review,a: platform-views,P2,team-android,triaged-android | low | Minor |
496,089,270 | flutter | [video_player] add buffering controls | I'd like the ability to pause/resume buffering on `video_player`, why?
We've got a situation where we have multiple videos loading offscreen and we'd like video_player to buffer only enough to keep up once the user navigates to view that video. As far as I know, video_player currently buffers 100% of the video as qu... | c: new feature,p: video_player,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | high | Critical |
496,120,301 | flutter | TextSpan backgroundColor with special Arabic character are not displayed correctly | When using many TextSpan with background color being set, a transparent border appears around the spans and sometimes it's gone depending on the font size. It will be even worse when using Arabic text that contains "Tashkeel - which are special Arabic characters", there will be more gaps between the spans specially if ... | framework,engine,a: internationalization,a: quality,a: typography,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-engine,triaged-engine | low | Critical |
496,124,563 | youtube-dl | Support of Le Monde | <!--
######################################################################
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 |
496,130,457 | flutter | dispose() of Stateful widgets is not called when the App is exited by pressing the backbutton | Why are some widget state dispose() executed when the page is closed, some widget states don't execute dispose, it's really annoying, I want to cry, and the resource release is a problem. | platform-android,framework,dependency: android,has reproducible steps,P3,found in release: 3.3,found in release: 3.7,team-android,triaged-android | high | Critical |
496,132,848 | go | go/types: what is the (types.Object) identity of embedded methods? | Up to Go 1.13, embedded interfaces could not have overlapping methods. The corresponding `go/types` implementation, when computing method sets of interfaces, reused the original methods in embedding methods. For instance, given:
```Go
type A interface {
m()
}
type B interface {
A
}
```
the `go/type... | NeedsDecision | low | Minor |
496,169,652 | vue | v-slot to be used in case a slot prop is undefined error | ### Version
2.6.10
### Reproduction link
[https://codepen.io/gongph/pen/bGbQLGE?editors=1010](https://codepen.io/gongph/pen/bGbQLGE?editors=1010)
Reproduction code at below:
Javascript:
```js
Vue.component('current-user', {
data () {
return {
item: {
user: {
name: 'def... | improvement | low | Critical |
496,171,425 | pytorch | Multilinear map | ## π Feature
Multilinear layer: a generalization of the Linear and Bilinear layers/functions to any configurable number of variables. This should be a learnable multilinear map that does the equivalent of this function, plus a bias (from the [Multilinear map Wikipedia page](https://en.wikipedia.org/wiki/Multilinear_m... | module: nn,triaged,function request | low | Major |
496,183,236 | TypeScript | Abstract classes will still import the value for a computed property at runtime |
**TypeScript Version:** 3.7.0-dev.20190920
abstract class import computed property
abstract class computed property imports for runtime
**Code**
sharedSymbol.ts
```ts
export const sharedSymbol: unique symbol = Symbol();
```
AbstractClass.ts
```ts
import { sharedSymbol } from "./sharedSymbol";
abst... | Bug | low | Critical |
496,205,813 | flutter | First line Indentation For Text | I am developing a Reader with Flutter. When it comes to text rendering, I have not found the API for setting the first line indentation. Could you add this feature?
Flutter version : v1.9.1+hotfix.2
| c: new feature,framework,a: typography,c: proposal,P3,team-framework,triaged-framework | low | Major |
496,213,437 | storybook | TypeScript Props table limitations (MDX) <Props of={Component}/> | I'm not sure if this also the case stories written in CSF.
I've noticed a couple of limitations when trying to auto generating prop tables in typescript.
**1. It looks like only Interfaces are supported, using a Type seems to break it.**
**2. using generics (in the case of react) seem to break it too, example ... | bug,typescript,addon: docs,block: props | medium | Major |
496,224,022 | go | cmd/gofmt: inconsistent formatting of spacing around operators | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.9 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes, tested with `format` button on https://play.golang.org/p/... | NeedsInvestigation | low | Critical |
496,233,771 | pytorch | MKLDNN+AMD BLIS path for PyTorch | ## π Feature
We have added MKLDNN+AMD BLIS path for PyTorch and want to upstream our changes to master branch
## Motivation
PyTorch with MKLDNN+AMD BLIS would give higher performance for DNN applications on AMD Platforms
## Pitch
We want to upstream our changes to the master branch. We have added new C... | feature,module: cpu,triaged,module: mkldnn | low | Major |
496,236,732 | godot | Handling signals which were emitted in a thread unsafe? | **Godot version:**
3.1.1
**OS/device including version:**
Ubuntu 19.04, Windows 10
**Issue description:**
I want to emit a signal in a thread to notify that something new is available, so that it can be handled safely in the main thread. However, it seems like when I emit a signal in a thread, the function whi... | discussion,topic:core | low | Critical |
496,247,618 | flutter | A command line option to flutter drive and flutter test to fail when exceptions are detected | When `flutter drive` excecutes, it will log exceptions caught by the rendering library (and others, like the widget library). For example:
```
I/flutter (20477): βββ‘ EXCEPTION CAUGHT BY RENDERING LIBRARY ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
I/flutter (20477): The following assertion was throw... | a: tests,c: new feature,tool,t: flutter driver,c: proposal,P3,team-tool,triaged-tool | low | Critical |
496,252,792 | kubernetes | Disruption controller support configure workers' number | <!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
Nowadays in disruption controller we only run a worker and a recheck worker to sync the pdbs. But in most controllers we can configure the number of workers. Should we make it configurable?
**Why is this... | priority/backlog,sig/scalability,kind/feature,sig/apps,lifecycle/frozen,needs-triage | low | Major |
496,332,761 | godot | Child node doesn't initially detect the correct parent type when it is overriden in an instanced scene | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.1.1.
**OS/device including version:**
Windows 10 64 bit
**Issue description:**
I have two C# scripts, Parent.cs and Child.cs, and a scene (... | bug,topic:core,topic:dotnet | low | Minor |
496,341,971 | godot | Tilemap in a nested viewport in a project with scaling enabled, offsets the position of the mouse | **Godot version:**
3.1.1
**OS/device including version:**
PC/Fedora Linux 30 (but seems to affect everything)
**Issue description:**
When you have a project where scaling is enabled and you have a tilemap within a viewport (i.e. not in the root viewport), the methods to return the mouse position start ge... | bug,topic:input | low | Major |
496,368,237 | vscode | Remote terminals don't resolve variables when restored on startup |
Issue Type: <b>Bug</b>
I changed my Terminal->Integrated: Cwd setting to "$(workspaceFolder)". Now, when Code starts up, the Terminal does not open, and I get a notification: "The terminal shell CWD "/home/gpudb/gpudb-dev-7.0/gpudb-core/gaiadb-cluster/${workspaceFolder}" does not exist". This happens every time ... | bug,help wanted,remote,terminal-process | low | Critical |
496,376,090 | PowerToys | WinRoll 2.0 type functionality | # Summary of the new feature/enhancement
WinRoll 2.0 is a great tool that I've used since Windows XP days, worked great on 98 SE, ME, XP, Vista and even 7. But only for 32bit programs (even on 64bit OSes) It even still works on Windows 10, but again, only for 32bit programs - not 64 bit, and not for modern apps.
... | Idea-New PowerToy,Product-Window Manager | low | Major |
496,398,655 | go | cmd/go: prefer to report mismatched module paths over mismatched major versions | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ... | help wanted,NeedsFix,modules | low | Critical |
496,440,235 | rust | Tracking issue for `rustc_reservation_impl` attribute | ## Background
The `#[rustc_reservation_impl]` attribute was added as part of the effort to stabilize `!`. Its goal is to make it possible to add a `impl<T> From<!> for T` impl in the future by disallowing downstream crates to do negative reasoning that might conflict with that.
**Warning:** the effect of this att... | A-trait-system,T-lang,T-compiler,C-tracking-issue,requires-nightly,F-rustc_attrs,S-tracking-perma-unstable | low | Critical |
496,444,767 | create-react-app | Add a branding page with new logo resources | Add a page to the docs with links to download the new logo as well as colour codes, etc. | tag: documentation | low | Minor |
496,447,869 | go | x/tools/gopls: handle line directives to .y files | ### What version of Go are you using (`go version`)?
go version go1.13 linux/amd64
And gopls...
golang.org/x/tools/gopls v0.1.7
golang.org/x/tools/gopls@v0.1.7 h1:YwKf8t9h69++qCtVmc2q6fVuetFXmmu9LKoPMYLZid4=
### Does this issue reproduce with the latest release?
Yes
### What did you do?
Open https://p... | gopls,Tools | low | Critical |
496,469,896 | pytorch | No way to disable mse_loss broadcasting warning | ## π Bug
Hi,
torch.nn.functional.mse_loss always throws a warning when using it with two tensors of different shapes.
There are legitimate reasons for wanting to use differently shaped tensor and taking advantage of the standard broadcasting behaviour of pytorch, so there needs to be a way to disable that warn... | module: nn,triaged,enhancement | low | Critical |
496,482,179 | terminal | Feature Request: More integration with Windows features. | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
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,Product-Cmd.exe,Product-Powershell,Area-UserInterface | low | Critical |
496,551,309 | pytorch | Make `torch.save` serialize a zip file | ## Why
Right now `torch.save` saves a series of 5 pickle binaries followed by raw tensor data that looks something like
```python
torch.save([torch.ones(2, 2), torch.randn(5, 5)], "my_value.pt")
```
`my_value.pt`
```
[ magic_number | version number | system metadata | actual pickle ([ tensor shape, type, etc..... | module: serialization,triaged,enhancement | low | Critical |
496,620,171 | rust | Unhelpful error "one type is more general than the other" in async code | The following code does not compile:
```rust
// Crate versions:
// futures-preview v0.3.0-alpha.18
// runtime v0.3.0-alpha.7
use futures::{prelude::*, stream::FuturesUnordered};
#[runtime::main]
async fn main() {
let entries: Vec<_> = vec![()]
.into_iter()
.map(|x| async { vec![()].i... | C-enhancement,A-diagnostics,T-compiler,A-async-await,AsyncAwait-Triaged,D-confusing,D-newcomer-roadblock | medium | Critical |
496,623,630 | terminal | Feature Request: Show terminal size when resizing the window | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl... | Help Wanted,Area-UserInterface,Product-Terminal,Issue-Task | medium | Critical |
496,637,507 | PowerToys | Command-Line Based interactive process viewer | # Summary of the new feature/enhancement
Most windows users cant properly live in the terminal since alternatives to the linux tools have not been provided.
One of the most commonly used tool is `top` (&/or `htop`). What if we can make a similar port of this to windows. This would allow us to to do tasks like ki... | Idea-New PowerToy | low | Minor |
496,662,153 | neovim | Composed characters don't work with `f` and `F` | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: NVIM v0.3.8
Build type: Release
LuaJIT 2.0.5
Compiled by brew@Mojave.local
- `vim -u DEFAULTS` (version: 8.0) behaves differently? yes
- Operating system/version: macOS 10.14.6
- Terminal name/version: iTerm2 3.3.2
- `$TE... | bug-vim,encoding,unicode π© | low | Critical |
496,670,331 | PowerToys | Add option to remove all title bars. (like i3) | # Summary of the new feature/enhancement
make users able to remove titlebars in fancy zones option.
Like in you whould do in a windowmanager like i3
# Proposed technical implementation details (optional)
<!--
A clear and concise description of what you want to happen.
-->
toggle option - no title bars.
| Idea-Enhancement,Product-Window Manager,Product-FancyZones | low | Major |
496,695,702 | godot | Autotile ignore separation | **Godot version:** 3.1.1
**OS/device including version:** windows 10
**Issue description:** When i set separation it don't work
**Steps to reproduce:** see screnshot example

| bug,topic:core,confirmed | low | Minor |
496,696,085 | youtube-dl | reguestin new site mtv.fi | - [x ] I'm reporting a new site support request
- [x ] I've verified that I'm running youtube-dl version **2019.09.12.1**
- [x ] I've checked that all provided URLs are alive and playable in a browser
- [x ] I've checked that none of provided URLs violate any copyrights
- [x ] I've searched the bugtracker for simil... | site-support-request | low | Critical |
496,701,194 | rust | Tracking issue for dual-proc-macros | Implemented in #58013
Cargo side is https://github.com/rust-lang/cargo/pull/6547
This feature causes Cargo to build a proc-macro crate for both the target and the host, and for rustc to load both.
I'm not sure if this is a perma-unstable feature for the compiler-only, or if there is any need to use it elsewhere.... | A-macros,T-compiler,B-unstable,C-tracking-issue,requires-nightly,A-proc-macros,S-tracking-design-concerns,S-tracking-perma-unstable | low | Minor |
496,719,159 | flutter | Prefetch image sizes when loading images from the network | ## Use case
The `FadeInImage `provides a convenient way to provide a placeholder image when loading an image from the network.
When the size of the image, that's being loaded, is not known beforehand though the layout changes suddenly. Unpredictable layout changes should generally be avoided as disturbs users in th... | c: new feature,framework,a: images,P3,team-framework,triaged-framework | low | Minor |
496,720,197 | thefuck | Suggest correct filename for editing | <!-- If you have any issue with The Fuck, sorry about that, but we will do what we
can to fix that. Actually, maybe we already have, so first thing to do is to
update The Fuck and see if the bug is still there. -->
<!-- If it is (sorry again), check if the problem has not already been reported and
if not, just op... | enhancement,help wanted,hacktoberfest | low | Critical |
496,749,794 | storybook | width/maxWidth prop on Story/Preview component | Would be awesome to have a width or maxWidth props on the Story components so that we can avoid writing decorators to restrict the width of 100% width components. | addon: docs | low | Major |
496,752,660 | rust | Wrong infered type when an additional constrain added | In the function `f` I have to specify `bool` explicitly while `f` differs from `g` in constrains only:
```rust
use rand::Rng;
use rand::distributions::{Distribution, Standard};
fn f<S, R>(rng: &mut R) -> bool
where
R: Rng,
Standard: Distribution<S>,
{
rng.gen::<bool>()
}
fn g<R>(rng: &mut R... | A-trait-system,T-compiler,A-inference,C-bug | low | Critical |
496,758,542 | rust | Misleading error message, privacy error reported as type error | ```rust
mod foo {
pub struct Foo {
private: i32,
}
}
use foo::Foo;
fn main() {
let mut foo = Foo { private: 0_usize };
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=db546b8ab3361a008f7cd421658e15aa))
Errors:
```
Compiling pla... | A-diagnostics,A-visibility,T-compiler,C-bug | low | Critical |
496,777,715 | go | runtime: maybe allgs should shrink after peak load | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.4 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Y
### What operating system and processor architecture are you using (`go env`)?
any
### What did you do?
When serving a peak load... | NeedsInvestigation,compiler/runtime | medium | Major |
496,785,988 | rust | Linker error because `-wL as-needed` conflicts with `-C link-dead-code` | When a project has the `[lib]` tag in the `Cargo.toml` the `-wL as-needed` flag is added to the projects linker flags. However, if a project uses `-C link-dead-code` the two flags conflict causing a linker error of `undefined reference` for any functions in the lib.
This was discovered because link-dead-code is used... | A-linkage,T-compiler,C-bug,link-dead-code | low | Critical |
496,796,554 | godot | Import plugin does not support extensions with multiple periods | **Godot version:**
3.1
**OS/device including version:**
Windows
**Issue description:**
I am writing an import plugin for Yarn Spinner dialogue which uses a `.yarn.txt` extension. The import plugin must be registered to just `.txt` in order to work but then causes all sorts of issues where it imports other txt ... | bug,topic:plugin,topic:import | low | Critical |
496,818,313 | godot | Arrays/Dictionaries allow modifying contents during iteration | **Godot version:**
2e065d8
**Issue description:**
While debugging my game, I bumped into this piece of code:
```gdscript
for id in shared_objects:
if not is_instance_valid(shared_objects[id]):
shared_objects.erase(id)
```
Godot doesn't see any problem here, even though doing this will totally break iterat... | bug,topic:gdscript,confirmed | low | Critical |
496,824,620 | rust | No error for private type in public async fn | [Playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=4cfeed4e56df13be164fe7e46608e39a)
```rust
mod foo {
struct Bar;
pub async fn bar() -> Bar {
Bar
}
}
```
This compiles just fine, despite the async fn returning a private type. There is a warning, but... | A-visibility,T-compiler,C-bug,A-async-await,AsyncAwait-Triaged | low | Critical |
496,826,462 | vue | Infinite loop in vue-template-compiler | ### Version
2.6.10
### Reproduction link
[https://github.com/oguimbal/vuebug](https://github.com/oguimbal/vuebug)
### Steps to reproduce
```
git clone git@github.com:oguimbal/vuebug.git
npm i
npm start
```
Wait a couple of seconds, and your compilation process will be frozen.
If you attac... | bug,contribution welcome,has PR | medium | Critical |
496,852,944 | rust | Type parameters of associated consts have unexpected lifetime constraints | This simple trait fails to compile:
```rust
pub trait Foo<T> {
const FOO: &'static fn(T);
}
```
```
error[E0310]: the parameter type `T` may not live long enough
--> src/lib.rs:3:5
|
2 | pub trait Foo<T> {
| - help: consider adding an explicit lifetime bound `T: 'static`...
3 | ... | A-lifetimes,A-borrow-checker,T-lang | low | Critical |
496,853,316 | TypeScript | Provide a `this` type for `get`/`set` methods in `Reflect.defineProperty` options |
**Code**
```ts
var A: {a?: number, b: number} = {b:2}
Reflect.defineProperty(A, 'a', {
// set(this: any, value: any) { // to fix
set(value: any) {
console.log(this.b); // Property 'b' does not exist on type 'PropertyDescriptor'.
},
enumerable: true,
configurable: true
});
A.a = 1;
// expect ... | Suggestion,Experience Enhancement | low | Minor |
496,854,973 | godot | Disabled modules shouldn't call pkg-config if they are set to be non-builtin | **Godot version:** Git https://github.com/godotengine/godot/commit/72d87cfbce137b8012e86f678c27f0f19a9771cf
**OS/device including version:** Fedora 30
**Issue description:** Someone reported on IRC that non-builtin dependency checking is done even if the module that requires them is disabled. This causes a build ... | bug,platform:linuxbsd,topic:buildsystem | low | Critical |
496,855,258 | TypeScript | Documentation for --declaration and -d incorrect, missing --dry | When I read the [Compiler Options docs](https://www.typescriptlang.org/docs/handbook/compiler-options.html) (source permalink)[https://github.com/microsoft/TypeScript-Handbook/blame/ee314075d47dbab49a6b631cc45a38d6c555b324/pages/Compiler%20Options.md#L16], I see:
> Option | Type | Default | Description
> --- | --- ... | Docs | low | Critical |
496,905,694 | opencv | OpenCV DNN throws exception with DeepLab MobileNet v2 frozen graph | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest de... | category: dnn | low | Critical |
496,977,365 | youtube-dl | Hide cmd windows 10 | When youtube_dl starts to convert video file via ffmpeg, it show cmd window.
Do anyone know how to hide this cmd window?
After googling. I read this https://trac.ffmpeg.org/wiki/DirectShow#Runningffmpeg.exewithoutopeningaconsolewindow
1. Tried to rename *.py to *.pyw
2. Make exe with pyinstaller with flag --nocon... | question | low | Minor |
497,035,023 | angular | Animation doesn't work properly in nested component inside ng-content when both parent and child components use animations | # π bug report
### Affected Package
@angular/animations
### Is this a regression?
No.
It worked differently in versions < 5.0.0, but there were other problems with this case.
### Description
A parent component has a ng-content which is located inside element with ngIf and animation.
parent: `<div *ngIf... | type: bug/fix,area: animations,freq3: high,state: needs more investigation,P3 | medium | Critical |
497,059,217 | opencv | gtk buildable error in open cv | i got these error when i run opencv
Starting /home/pi/build-QcOpenCv-Desktop-Debug/QcOpenCv...
qt5ct: using qt5ct plugin
(QcOpenCv:2806): GLib-GObject-WARNING **: cannot register existing type 'GtkWidget'
(QcOpenCv:2806): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'G_TYPE_IS_INSTANTIATAB... | priority: low,incomplete,needs investigation | low | Critical |
497,097,099 | go | encoding/json: json.Number accepts quoted values by default | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are... | NeedsDecision | medium | Critical |
497,111,590 | youtube-dl | Change container of opus audio | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | medium | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.