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 |
|---|---|---|---|---|---|---|
402,224,797 | flutter | Navigation with a drawer does not have closing animation | Hey,
I'm currently developing a flutter app. Because of its flexibility I use a navigation drawer. I came across multiple tutorials about navigation with a drawer in flutter, but no one was really satisfying. The first approach is to use one Scaffold with multiple layouts inside, like described [here](https://medium.c... | c: new feature,framework,f: material design,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Critical |
402,261,141 | pytorch | why check ArgumentInfo is_pod? suffer bugs | we writing a Mixed C++/CUDA extension(https://pytorch.org/tutorials/advanced/cpp_extension.html)
success compile and running test in pytorch=0.4.1 and python= 3.6
however suffer bug in pytorch=1.0 and python= 3.6
`anaconda3/envs/python3.6_pytorch1.0/lib/python3.6/site-packages/torch/lib/include/torch/csrc/jit/argum... | module: docs,low priority,triaged | low | Critical |
402,327,060 | go | proposal: net/http: add MethodSearch constant for HTTP SEARCH method | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.4 darwin/amd64
</pre>
### What operating system and processor architecture are you using (`go env`)?
MacOS/amd64
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
GOARCH="amd64"
GOBIN=""
GOCAC... | Proposal,Proposal-Hold | low | Critical |
402,330,799 | flutter | running integration tests with option --flavor development returns timeout | I am able to run `flutter run --flavor` development without any error, however when I intend to run integration tests with `flutter driver --target=test_driver/app.dart --flavor development`, i run into this error. App is installed but tests fail.
Any help or pointers to solve this is highly appreciated.
content ... | a: tests,c: crash,platform-ios,tool,t: flutter driver,P2,team-ios,triaged-ios | low | Critical |
402,355,469 | pytorch | [JIT] Support C++ front end module and JIT interop | Creating an issue to track this feature request.
## 🚀 Feature
Allow a C++ front end module to be interop in JIT. (since right now C++ front end module can already be interoped in Python)
## Motivation
TorchScript is ultimately very limited. If I have a module that has complex logic. It would be important to ... | oncall: jit | low | Major |
402,368,907 | pytorch | support for multiple torch.cuda.max_memory_allocated() counters | ## 🚀 Feature
Having multiple resettable torch.cuda.max_memory_allocated() counters
## Motivation
With the help of torch.cuda's `reset_max_memory_allocated` and `max_memory_allocated` one can now measure peak memory usage. Which is very helpful.
Now, there is a need for identical functionality, but supporte... | todo,feature,module: cuda,triaged | low | Major |
402,377,600 | pytorch | Complete dtype support for torch.norm | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
After https://github.com/pytorch/pytorch/pull/15414, torhch.norm supports dtype, but not with 'fro' or 'nuc' arguments. This is confusing and not documented.
## Motivation
<!-- Please outline the motivation for the proposal. Is yo... | module: docs,triaged | low | Minor |
402,379,241 | opencv | Throw an exception on namedWindow() if monitor isn't connected or it is ran over SSH | <!--
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... | priority: low,category: highgui-gui | low | Critical |
402,392,088 | godot | Add ability to unload resource from ResourceInteractiveLoader | **Godot version:** 3.1 beta
**OS/device including version:** Windows 10
**Issue description:**
I have an application that loads sometimes from the same file and saves to the same file, in one area of the application it uses a ResourceInteractiveLoader and in another area it just uses ResourceLoader. I was strug... | enhancement,topic:core,documentation | low | Minor |
402,393,813 | go | x/website/internal/dl: store the list of validUsers in a more dynamic way | The list of validUsers is hardcoded at https://github.com/golang/tools/blob/master/godoc/dl/dl.go#L317. This means that every time someone is doing a release for a first time, we need to make a CL to add them to this list (so that they can run the release command) and redeploy golang.org.
We may want to store this l... | NeedsInvestigation | low | Minor |
402,423,476 | TypeScript | Add type definitions for Files And Directories API | ## Search Terms
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
`"Files And Directories API"`
`FileSystemFileEntry`
## Suggestion
Add types for the Files And Directories API: https://wicg.github.io/entries-api/
... | Suggestion,In Discussion,Help Wanted,Domain: lib.d.ts | medium | Major |
402,436,764 | flutter | Odd spacing issue with --android-licenses | Ran `flutter doctor` to get an update. I think I'd updated to Android Studio 3.3 since the last time I'd run `flutter doctor` on this machine. Got an error message about not having accepted Android licenses. When I ran `flutter doctor --android-licenses`, it showed a progress bar for a while, and then printed a warning... | tool,platform-windows,t: flutter doctor,P2,team-tool,triaged-tool | low | Critical |
402,444,414 | scrcpy | USB devices freeze occasionally when scrcp is running | Hi.
I discovered scrcpy just today, and it's really great and almost flawless so far!
The only thing I found to be annoying is that, when scrcpy is up¹, my USB devices(?) seem to die every now and then. Most noticibly, I had to unplug and re-plug my mouse and keyboard for over 10 times today as they just froze (usu... | usb | low | Critical |
402,452,307 | pytorch | caffe2: cudaHostRegister() and mbind()-related test failures on ppc64le | ## 🐛 Bug
## Environment
```
PyTorch version: 1.0.0a0+7998997 (with some local changes)
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Red Hat Enterprise Linux Server 7.5 (Maipo)
GCC version: (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36)
CMake version: Could not collect
Python version: 3.6
Is C... | caffe2 | low | Critical |
402,496,698 | rust | Confusing compiler error when iterating over Option<IntoIterator> | I recently wrote a type that implemented IntoIterator with a tuple as the Item type. I then tried to test this by using this iterator in a for loop. I got the following error:
```
for (i, j) in foo
^^^^^^ expected struct `MyIter`, found tuple
```
This left me confused, because I had assumed that ... | C-enhancement,A-diagnostics,P-low,T-compiler,D-papercut | low | Critical |
402,501,919 | pytorch | Confusing documentation with distributions.Categorical about logits | ## 📚 Documentation
<!-- A clear and concise description of what content in https://pytorch.org/docs is an issue. If this has to do with the general https://pytorch.org website, please file an issue at https://github.com/pytorch/pytorch.github.io/issues/new/choose instead. If this has to do with https://pytorch.org/... | module: distributions,module: docs,triaged | low | Minor |
402,505,593 | pytorch | Unexpected behavior of jit.trace when PYTORCH_JIT=0 | One of the biggest uses of tracing is to save a snapshot of a computation graph. However, when `PYTORCH_JIT=0` (debug mode on), the input function/module of `jit.trace` is simply returned, causing undesired behavior when users expect a snapshot is saved. E.g., the following code snippets behave differently when the fla... | oncall: jit,low priority | low | Critical |
402,512,389 | pytorch | ProcessGroupGlooTest.test_gather_stress is flaky | Running [this pytorch-linux-trusty-py3.6-gcc5.4 CI docker image](308535385114.dkr.ecr.us-east-1.amazonaws.com/pytorch/pytorch-linux-trusty-py3.6-gcc5.4:282-8f19dfe947a78822ca7bf490d2f375cf2800c0d0) locally, I occasionally get
```
test_gather_stress (__main__.ProcessGroupGlooTest) ... Process process 3:
Traceback (mo... | oncall: distributed,triaged,module: flaky-tests,module: c10d | low | Critical |
402,526,324 | pytorch | caffe2::CudnnConvOp::RunOnDevice() fails on Squeezenet | ## 🐛 Bug
`caffe2::CudnnConvOp::RunOnDevice()` fails on Squeezenet
## To Reproduce
Steps to reproduce the behavior:
1. Unzip and copy [test_trt.zip](https://github.com/pytorch/pytorch/files/2790075/test_trt.zip) to `caffe2/python/trt/`
2. Run `test_trt.TensorRTTransformTest.test_squeezenet_core test:
... | caffe2 | low | Critical |
402,527,097 | TypeScript | Js file type inference error | <!-- 🚨 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,In Discussion,checkJs | low | Critical |
402,572,312 | godot | When zoom is big, text editor waste a lot of space and some elements aren't scaled | **Godot version:**
3.1 beta 2
**OS/device including version:**
Windows 10
**Issue description:**
When zoom in text editor is big, then:
1.Editor waste a lot of space for showing number of row
2,3. Doesn't scale tabulator and code block icons
 -> T> {
value: T,
func: F
}
fn main() {
let lambda = |&x, &y| x + y;
let foo = Foo {
value: 5 as i32,
func: lambda
};
}
```
``... | A-type-system,C-enhancement,A-diagnostics,A-lifetimes,T-compiler,T-types | low | Critical |
402,597,541 | vue | transition-group replacing group flicker | ### Version
2.5.22
### Reproduction link
[https://codesandbox.io/s/y3910wr9j9](https://codesandbox.io/s/y3910wr9j9)
### Steps to reproduce
Click the change button in the link, no matter if animation is on or off (changing the animation name) - there is a brief flicker where both groups are present.... | has workaround | low | Major |
402,603,307 | go | time: one-digit hour is accepted for 15:04:05 template |
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.4 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What did you do?
https://play.golang.org/p/EBxIIXatR1Y
### What did you expect to see?
I expected to see an error at pars... | NeedsInvestigation | low | Critical |
402,617,423 | go | time: extraneous information in Parse error message for interior element missing leading zero | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.4 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What did you do?
Parsing the time "03:4:05" with layout "15:04:05".
### What did you expect to see?
At the last part of ... | NeedsInvestigation | low | Critical |
402,623,511 | flutter | bottom_sheet.dart - expose optional parameters to control modal dismiss | I would like to suggest exposing optional parameters for the `showModalBottomSheet` function
- `enableDrag: true` (when false, the drag to close will be disabled)
- `barrierDismissible: true` (when false, tapping outside will not close the modal)
- `tapDismissible: true` (when false, tapping inside the modal will ... | c: new feature,framework,f: material design,P2,team-design,triaged-design | low | Major |
402,624,550 | angular | Duplicate views | <!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅
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,freq1: low,area: router,state: confirmed,router: config matching/activation/validation,P4 | low | Critical |
402,653,498 | kubernetes | Avoid partial volume binding scenario | <!-- 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!-->
**What happened**:
If bindAPIUpdate binds pod volumes partially, rest of assumed volumes will be reverted and can used by another pod. Ex... | kind/bug,sig/storage,lifecycle/frozen | low | Critical |
402,665,041 | flutter | Failed assert in Widget Inspector | @jacob314 I'm not sure what I did here, but I was running the Gallery from the console, had devtools (built JS version) open and was clicking toggle buttons when I got the red screen in the simulator and this dumped to the console (where I'd run `flutter run`).
```
🔥 To hot reload changes while running, press "r"... | c: crash,framework,f: inspector,P2,team-framework,triaged-framework | low | Critical |
402,722,428 | create-react-app | Coverage seems to run twice each test | ### Is this a bug report?
Yes
### Did you try recovering your dependencies?
Yes
### Which terms did you search for in User Guide?
test jest coverage
### Environment
Environment Info:
System:
OS: Windows 7
CPU: x64 Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz
Binaries:
Yarn: 1.7.0 - C:\P... | issue: needs investigation | low | Critical |
402,726,117 | pytorch | Pytorch with CUDA aware OpenMPI for Infiniband not working with HCOLL and MXM | ## Issue description
Dear all,
I try to build PyTorch with CUDA aware OpenMPI working with Infiniband. I'm using a Mellanox Infiniband card. When running this test script
```
$ cat scatter-min
#!/usr/bin/env python
import numpy as np
import torch as to
from torch import distributed as dist
# Initialization... | oncall: distributed,triaged,module: c10d,distributed-backlog | low | Critical |
402,777,627 | vscode | Find in files in non-existent folder highlights wrong input field on error | Issue Type: <b>Bug</b>
If I mistakenly enter a folder that does not exist in the "files to include" box for Find in Files and hit enter to search, the red error highlight ends up on the search expression input, not on the files to include input. As a side effect, the actual error message ("No folder in the workspac... | bug,search,confirmed | low | Critical |
402,801,155 | pytorch | We're binding a bunch of crap to 'torch' namespace which shouldn't be there | Example:
```
>>> import torch
>>> torch.hinge_embedding_loss
<built-in method hinge_embedding_loss of type object at 0x7ff9c8948d20>
```
Official docs tell you to use `torch.nn.functional.hinge_embedding_loss` and for good reason: the `hinge_embedding_loss` in torch exposes a reduction argument that is an int... | triaged,better-engineering | low | Major |
402,820,115 | angular | routerLink directive always makes element focusable | # 🐞 bug report
### Affected Package
@angular/router
### Description
Issue https://github.com/angular/angular/issues/10895 requests that the `routerLink`-directive should automatically add `tabindex` on the target element if not already present (implemented via https://github.com/angular/angular/pull/13094).
... | freq2: medium,area: router,router: directives,P4,bug | medium | Critical |
402,843,937 | react | Chrome Autofill overwrites values on controlled components | <!--
Note: if the issue is about documentation or the website, please file it at:
https://github.com/reactjs/reactjs.org/issues/new
-->
**Do you want to request a *feature* or report a *bug*?**
Report a bug. Initially reported in https://github.com/mozilla-services/react-jsonschema-form/issues/1153
**What... | Type: Bug,Component: DOM,Type: Breaking Change | low | Critical |
402,846,272 | pytorch | Should torch.arange take a layout parameter? | I see it in the docs... but it seems a bit questionable as to whether or not it can do anything reasonable here.
```
>>> torch.arange(10, layout=torch.sparse_coo)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError: arange_out is not implemented for type torch.sparse.LongTensor
... | module: sparse,triaged,module: tensor creation,module: ux | low | Critical |
402,851,584 | pytorch | support `unique_indices` option for `unique` | ## 🚀 Feature
Requested by @gkioxari, it would bring `unique` api closer to numpy equivalent. Cuda implementation is not hard, but I haven't looked at CPU.
May be #15804 scope should be widened to also include this.
cc @mruberry @rgommers @ptrblck, @gkioxari, @jcjohnson
| todo,feature,triaged,module: numpy | medium | Major |
402,879,466 | godot | Drawing a texture obtained with `load` in `_draw` always fails | Godot 3.0.6
Godot 3.1 beta 2
Windows 10 64 bits
I tried to use `load` to get a texture to draw in `_draw()`, which returns a non-null texture, however if I try to draw it, it always fails.
```gdscript
extends Node2D
func _process(delta):
update()
func _draw():
var tex = load("res://notexture.png")
as... | topic:core,confirmed,documentation | low | Critical |
402,955,255 | godot | Black lines flickering on mesh surface during movement | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
3.0.5
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
Ma... | bug,topic:rendering,topic:3d | medium | Major |
402,955,586 | godot | [Bullet] None of the shapes in PhysicsServer (Bullet) are initializing their members | Godot 3.1 ab843b16984d8b62a1100d9b77d8b0dcdc4252bb
Following https://github.com/godotengine/godot/issues/25301, I decided to create an issue for this too.
I've been noticing it for a while, but never actually had a problem with it until now:
In `shape_bullet.cpp`, none of the shapes initialize their members. Tha... | enhancement,topic:physics | low | Minor |
403,099,065 | godot | One-way collision shape does not work with KinematicBody2D | **Version:**
v3.1.beta2.official (Jan-2019)
**Issue description:**
While one-way collision shape works fine with static bodies, they do not work with kinematic body.
(Or at least not with move_and_slide functionality.)
**Steps to reproduce:**
1. Make any kinematic body with a collision shape, let's say a Kine... | bug,confirmed,topic:physics,topic:2d | low | Critical |
403,138,653 | TypeScript | unclear how to make function argument check produce the same errors as variable assignment | in the following code
```ts
type A = {
a?: number
b?: number
}
type B = {
a?: number
knownField?: number
}
type C = {
a?: A,
knownField?: number | [A, B] | A
}
const c: C = {
a: {
a: 1,
b: 1,
},
knownField: [{ a: 1 }, {
knownField: 1,
unknownField: 1,
}],
... | Needs Investigation | low | Critical |
403,147,696 | rust | Coherence can be bypassed by an indirect impl for a trait object | ## Comments
The check for manual `impl Object for Object` only makes sure there is no *direct* `impl Object for dyn Object` - it does not consider such indirect impls. Therefore, you can write a blanket `impl<T: ?Sized> Object for T` that conflicts with the builtin `impl Object for dyn Object`.
## Reproducer
*... | I-ICE,A-trait-system,P-high,T-lang,T-compiler,I-unsound,C-bug,S-bug-has-test,T-types,A-trait-objects | high | Critical |
403,212,693 | terminal | About backspace in cursor erase state | It is outputting a text file named "curhide", in which the cursor erase sequence is written.
Looking at the sequence, it should be (^[[25h) (\b) (0x20) (\b) (^[[25l),
It is like this, (^[[25h) (\b) (0x20) (^[[25l),
Also, although erase sequence is output, it can not be erased.
There is no problem when the curso... | Work-Item,Product-Conpty,Area-VT,Issue-Bug | low | Major |
403,249,029 | TypeScript | Expose "getNewLineCharacter" function | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Suggestion
Make `ts.getNewLineCharacter` public
<!-- A summary of what you'... | Suggestion,In Discussion,API | low | Critical |
403,249,606 | rust | `where Self: Sized` on trait method doesn't work as expected when implementing for unsized types. | I've got this code
````
trait Foo {
fn bar(&self) -> Self where Self: Sized;
}
impl Foo for str {
// fn bar(&self) -> Self { unimplemented!() }
}
````
the error is:
````
error[E0046]: not all trait items implemented, missing: `bar`
--> src/lib.rs:5:1
````
However, since `str` is not `Sized`, i... | A-type-system,A-trait-system,T-lang,T-compiler,C-bug,T-types | low | Critical |
403,294,923 | pytorch | Python-bound C++ frontend modules don't handle attributes well | When we bind C++ frontend modules into Python using `torch::python::bind_module` and load them in Python, we wrap the underlying C++ class with a [wrapper class](https://github.com/pytorch/pytorch/blob/master/torch/nn/cpp.py#L49) that derives from `torch.nn.Module` and copies all methods of the underlying class onto th... | module: cpp,triaged | low | Minor |
403,305,533 | rust | Compiler unable to apply trait bound | Sorry for the vague title, please change. I have found a strange bug that is at the intersection of associated types, trait type parameters, and method type parameters.
https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=8584b2c75acb51a8c6082b668649ad29
```
trait Example {
type Foo;
... | A-type-system,A-trait-system,A-associated-items,T-compiler,T-types | low | Critical |
403,329,713 | TypeScript | Preferred refactorings | **Problems**
- Refactorings such as `extract function` and `extract constant` may return multiple possible locations where the code could be extracted to. In many cases however, the user would just like to quick extract something to a reliable location and continue on.
- `extract function` is always returned along... | Suggestion,In Discussion,VS Code Priority | low | Minor |
403,359,289 | pytorch | Adding new module to caffe2 | Hi,
I am adding a new module to caffe 2 for some development. A new dir is added under caffe2/contrib. So the CMakeList.txt file was modified to add the dir using a conditional if (USE_XXX). The CMakeLists.txt under caffe2 was modified to add libraries to be linked as below.
link_directories(AFTER /home/fpgauser/... | caffe2 | low | Critical |
403,376,334 | TypeScript | Future proof union to intersection type conversion | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
union to intersection, type merge
<!-- List of keywords you s... | Suggestion,Awaiting More Feedback | high | Critical |
403,384,660 | vscode | Unifying "do X on save" functionality | **Problem**
VS Code ships with multiple actions that can be triggered on save, including:
- Trim trailing whitespace
- Trim trailing new line
- format document
- code actions (such as `organize imports` and `fix all`)
Each of these actions currently has its own setting. Many of the setting names are generic s... | feature-request,formatting,under-discussion | low | Major |
403,389,142 | godot | area_entered, area_exited occurs at the same time with Area2D | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
3.1.beta 973b68f39
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-rel... | enhancement,topic:physics | low | Critical |
403,400,014 | vue | Types of FunctionalComponentOptions breaks | ### Version
vue: 2.5.22
typescript: 3.2.4
### Reproduction link
[https://jsfiddle.net/meteorlxy/9x2ts16a/1/](https://jsfiddle.net/meteorlxy/9x2ts16a/1/)
### Steps to reproduce
```ts
// works with vue 2.5.17
// fails with vue 2.5.18+
import Vue, { FunctionalComponentOptions } from 'vue'
const tes... | typescript,has workaround | low | Critical |
403,425,122 | create-react-app | Setting a minimum font size in Firefox makes code sections on the website unreadable | I would like to report an accessibility issue on the website.
I have a minimum font size set to 15 in Firefox preferences. Most of the website looks okay, except for those animated code sections, e.g. https://facebook.github.io/create-react-app/docs/getting-started
<img width="1552" alt="screen shot 2019-01-26 at... | tag: documentation | low | Minor |
403,429,344 | pytorch | error with nccl when distributed training on caffe2 | The error as follow,I do build caffe2 with flag USE_NCCL=1
WARNING:caffe2.python.workspace:Original python traceback for operator `268` in network `resnet50_init` in exception above (most recent call last):
WARNING:caffe2.python.workspace: File "resnet50_trainer.py", line 603, in <module>
WARNING:caffe2.python.wo... | caffe2 | low | Critical |
403,446,659 | pytorch | error on cmake_version from tools/build_pytorch_libs.py | ## 🐛 Bug
<!-- -->
Cannot build pytorch due to a error on cmake_version from the file tools/build_pytorch_libs.py .
## To Reproduce
1. clone repository
2. python setup.py bdist_wheel
3. Error message:
```bash
python setup.py bdist_wheel
Building wheel torch-1.1.0a0+41e9b09
-- Building version 1.1.0a0+... | module: build,triaged | low | Critical |
403,448,342 | electron | Autoupdater - progress and download choice | **What I did**
I have packaged my electron app with __electron-packager__ and build its installer with __electron-winstaller__.
I used __autoUpdater__ (from electron) for the update process.
So I got:
*RELEASES
*myapp.exe-1.0.0-full.nupkg
*myappinstaller.exe
I put them in a github release with tag: v1.0.0... | enhancement :sparkles: | low | Major |
403,467,530 | go | math/big: Mention sign inversion in the (*Int).Not documentation | I would expect that this:
```go
i = big.NewInt(-2)
log.Println(new(big.Int).Not(i).Text(2))
```
prints `-1`, but actually it prints `1`. The `(*Int).Not` documentation simply says:
> Not sets z = ^x and returns z.
I think that it's not obvious from this sentence that the sign is inverted. | Documentation,NeedsInvestigation | low | Minor |
403,471,990 | TypeScript | Issues trying to auto-import across project boundaries | <!-- 🚨 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,In Discussion | low | Critical |
403,476,748 | youtube-dl | Add britbox | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | account-needed | low | Critical |
403,480,943 | rust | Implementing a trait for an associated type causes 'overflow evaluating the requirement' error | Implementing a trait for an associated type of something that implements the same trait causes the compiler to emit an overflow evaluating the requirement error. I read the error explanation and it makes reference to trait bounds causing an endless list of things to check, it's not clear to me why this case would prod... | A-type-system,A-trait-system,A-associated-items,T-lang,T-compiler,C-bug,T-types | low | Critical |
403,492,259 | godot | Convert To Mesh Library "Merge with existing" option causes confusion | **Godot version:** v3.1.beta2.official

-The "Merge with Existing" text and "ON" are so far apart that the option was invisible to me and it doesn't register in your mind as something importan... | enhancement,topic:editor,usability | low | Critical |
403,574,672 | go | wiki: add page on using private repositories (e.g., on-prem GitLab, private github.com repos, etc.) | Consider adding a new wiki page on using Go with private repositories such as on-prem GitLab, on-prem GitHub, on-prem bitbucket, private github.com repos, etc.
This seems to be a fairly frequent source of confusion, and often it is when someone is new or somewhat new to Go, which means it both impacts early impressi... | Documentation,help wanted,NeedsFix,modules | medium | Critical |
403,589,621 | rust | [Universes] Indirection allows calling of invalid trait method | The following code has different behaviour depending on whether the associated function is called directly or through a method call. For example:
```rust
trait X {
type G;
fn make_g() -> Self::G;
}
impl<'a> X for fn(&'a ()) {
type G = &'a ();
fn make_g() -> Self::G {
&()
}
}... | A-lifetimes,A-trait-system,E-needs-test,T-compiler,T-types | low | Critical |
403,596,922 | vscode | [json] jsonValidation fileMatch is confusing when used with URIs | - VSCode Version: 1.30.2
- OS Version: macOS 10.14.3
Steps to Reproduce:
1. Create an extension that [registers a text document content provider](https://code.visualstudio.com/api/references/vscode-api#2290) for a custom scheme, say `custom`. Implement the provider to return a json object as text.
2. Declare a... | bug,json,debt | low | Minor |
403,605,225 | pytorch | Flip is much slower than advanced indexing | ## 🐛 Bug
Flip is about 3x slower than advanced indexing, even though advanced indexing is a more general operation.
I have tested this on CPU and CUDA, and on pytorch 1.0 stable and pytorch-nightly.
## To Reproduce
```
import time
import torch
n = 1024
batch_size = 256
ntrials = 1000
x = torch.rand... | module: performance,triaged,module: viewing and reshaping | low | Critical |
403,610,483 | godot | GI-Probe/Light Baking documentation lacks an important piece of info | The fact I didn't know about this from reading the documentation prevented the use of GI-probes in my game until just today.
The piece of info lacking in the docs. is this. That being that GI-probes and baked lighting will **only** work if the nodes are in the first level of the scene tree.
So for instance having... | enhancement,topic:core,topic:rendering,documentation | low | Critical |
403,622,566 | TypeScript | typeof 'function' using with Exclude<T, Function> | <!-- 🚨 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: Conditional Types,Domain: Control Flow | low | Critical |
403,659,493 | pytorch | A bug in parallel.data_parallel when module_kwargs is not None | ## 🐛 Bug
A bug in [parallel.data_parallel](https://github.com/pytorch/pytorch/blob/fdaa77ae8b084eaa7535075538e9d80f4c4a8d1a/torch/nn/parallel/data_parallel.py#L159-L189) when
- The batch size is smaller than the number of GPUs
- With some keyword arguments (module_kwargs) in the custom forward function.
## To ... | module: cuda,module: error checking,triaged,module: batching,module: data parallel | low | Critical |
403,682,749 | rust | Memory-alignment declaration for struct only. | Memory alignment can be declared/annotated to struct type declarations only
I would expect possibility to declare memory-alignment for struct-members and local variables as well. | A-attributes,T-lang,C-feature-request | low | Minor |
403,709,831 | pytorch | How to retrain the modelzoo model in Caffe2? | ## 📚 Documentation
Is there any update/documentation on how to retrain (transfer learning) a pertained model from modelzoo with custom dataset in Caffe2?
I want to use Mask R-CNN2Go model from modelzoo and retrain it with my own dataset, however I don't see any documentation or tutorial on this topic.
Can somebody ... | caffe2 | low | Minor |
403,731,034 | react-native | Cookie based authentication issues aggregation | ## Environment
[skip envinfo]
## Reproducible Demo
Provided in corresponding issues
## Description
Issues closed while still open. Cookie based authentication is at this moment not usable. This is partially due to the following issues:
- https://github.com/facebook/react-native/issues/23005 //TL;DR can only... | Help Wanted :octocat:,📮Known Issues,Bug | high | Critical |
403,839,969 | TypeScript | Error: Debug Failure getDisplayName for babel project while getting program.getTypeChecker() | <!-- 🚨 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,API,Crash | low | Critical |
403,864,900 | godot | InputEventMouseButton.factor is always positive | **Godot version:** 70689eb
**OS/device including version:** Ubuntu
**Issue description:** While implementing a zooming camera I realized that `InputEventMouseButton.factor` is always either 0 or a positive number. It would make sense that the number is negative if you scroll down (or up).
**Steps to reproduc... | documentation,topic:input | low | Major |
403,919,249 | terminal | Visual Studio Code + zsh + ConPTY = input issues | I was sent here via https://github.com/Microsoft/vscode/issues/67227
* Your Windows build number:
Microsoft Windows [Version 10.0.18323.1000]
* What you're doing and what's happening: (Copy & paste specific commands and their output, or include screen shots)
I type in the VS Code integrated terminal. Always at ... | Work-Item,Needs-Repro,Area-Performance,Product-Conpty,Area-Input,Issue-Bug | medium | Major |
403,984,425 | pytorch | TensorRTOpTest.test_vgg19 is flaky | Sample failure: https://circleci.com/gh/pytorch/pytorch/632436?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link
```
Jan 25 01:19:46 =================================== FAILURES ===================================
Jan 25 01:19:46 __________________________ TensorRTOpTest.test_vgg19... | triaged,module: flaky-tests | low | Critical |
403,985,889 | kubernetes | Long running request definition in the kube-aggregator | Kube-API server has a set of long-running pattern check defined [here](https://github.com/kubernetes/kubernetes/blob/8b98e802eddb9f478ff7d991a2f72f60c165388a/cmd/kube-apiserver/app/server.go#L408-L411) that are applied to the operations taking longer than the default timeout of 60 seconds.
Unfortunately, our kube-agg... | kind/bug,priority/important-soon,sig/api-machinery,lifecycle/frozen | medium | Major |
403,987,976 | TypeScript | getTrailingCommentRanges returns comments at the start of the file | <!-- 🚨 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,In Discussion,API | low | Critical |
403,990,542 | kubernetes | Tracking Issue - Conformance Coverage for Networking | <!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
This is a place holder to track Conformance Coverage on the Topic.
This issue should remain open until all related work is accomplished in the k/k repo
This issue will contain analysis of the coverage. ... | sig/network,kind/feature,help wanted,sig/testing,area/conformance,lifecycle/rotten | medium | Critical |
403,994,320 | flutter | webview_flutter v0.3.0 - Multiple flashes on the page before webview loads. | ## Steps to Reproduce
I created multiple projects testing this issue. In every page that has a `webview_flutter` when you load the page it shows quick and multiple flashes on the screen. On the iOS Simulator and Android emulator most of the time you do not see the flashes. But if you run it on a device they are very... | c: performance,p: webview,package,team-ecosystem,has reproducible steps,P2,found in release: 3.10,found in release: 3.11,triaged-ecosystem | low | Critical |
404,000,251 | flutter | ScrollViews need to be direct children of Scaffold for TextFields to scroll into focus | `TextField`s scroll into focus properly when the containing scrollview is a direct child of a `Scaffold`. However, if you push on a new screen, a new `Scaffold` is needed in order for the `TextField`s to scroll into focus in the newly pushed class. I would think that so long as a `Scaffold` is in the hierarchy that I s... | a: text input,framework,f: material design,f: routes,f: focus,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-design,triaged-design | low | Major |
404,026,201 | rust | Failure to clean up incremental compilation artifacts should not be a hard error | ```
error: Failed to delete invalidated or incompatible incremental compilation session directory contents `/home/manishearth/mozilla/servo/target/debug/incremental/script-23kpbvowy6y9i/s-f8z0p73x3w-17kitl0-working/dep-graph.bin`: No such file or directory (os error 2).
```
This is basically rustc attempting to ... | T-compiler,A-incr-comp | medium | Critical |
404,036,639 | rust | Defining scope of `existential type` defined by associated type | So, during our discussion earlier today, @nikomatsakis brought up this interesting example of code that should really compile, we think:
```rust
existential type X: Sized;
trait Foo {
type Bar: Iterator<Item = Self::_0>;
type _0;
}
impl Foo for () {
type Bar = std::vec::IntoIter<u32>;
typ... | A-type-system,A-trait-system,A-associated-items,T-lang,A-impl-trait,F-type_alias_impl_trait,requires-nightly,T-types | low | Critical |
404,041,067 | go | cmd/go: add option to prevent 'go get -u' from updating certain dependencies | We should provide a way for users to prevent `go get -u` from updating certain dependencies unless they're explicitly requested.
There are a number of reasons users may need to pin a module dependency to a lower version. For example:
1. The dependency has a breaking change, which is allowed in `v0` versions.
2. ... | NeedsInvestigation,FeatureRequest,GoCommand,modules | medium | Major |
404,058,779 | opencv | fully connected layer::weightsMat clone missing | I faced a bug in fully connected layer that I could only resolve it by cloning the weightsMat:
https://github.com/opencv/opencv/blob/a65ccc06039d7e69d48bdad09f6afc45c3f37304/modules/dnn/src/layers/fully_connected_layer.cpp#L83
`weightsMat = blobs[0] = blobs[0].reshape(1, numOutput).clone();`
I noticed there ex... | category: dnn | low | Critical |
404,082,187 | godot | Editor crashes with custom C++ DLL module built under MSVC | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
3.0.6-stable
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. ... | bug,topic:buildsystem,confirmed | low | Critical |
404,082,916 | rust | Make the `unconditional_recursion` lint work across function calls | The lint for unconditional recursion currently only handles the case where a function calls itself *directly*, which means that many useful cases are missed:
* https://github.com/rust-lang/rust/issues/40437
* https://github.com/rust-lang/rust/issues/57633
* https://github.com/rust-lang/rust/issues/57299
* https:/... | C-enhancement,A-lints,T-compiler,A-MIR,C-optimization | low | Major |
404,111,214 | rust | really bad error messages for trying to `use` a macro from a module | If you read up on new-style macro imports in the [edition guide](https://rust-lang-nursery.github.io/edition-guide/rust-2018/macros/macro-changes.html) and miss the tiny note that it doesn't work for macros in modules in your own crate (why not?!), you might try this:
```rust
mod has_a_macro {
macro_rules! a_m... | C-enhancement,A-diagnostics,A-resolve,A-macros,T-compiler | medium | Critical |
404,176,175 | deno | WebRTC Integrating | Reference:
[WebRTC Native API](https://webrtc.googlesource.com/src/+/master/native-api.md)
[samples client & server both side](https://webrtc.googlesource.com/src/+/master/examples)
| cli,suggestion | high | Critical |
404,176,246 | pytorch | caffe2 softmaxwithloss problem | my output label is batch_size x 10 (for 10 labels)
blob_out = model.FC( blob_out, 'pred', dim_in, 10)
softmax, loss = model.SoftmaxWithLoss( [blob_out, labels], ['softmax', 'loss'], scale=scale)
but SoftmaxWithLoss report error like this:
what(): [enforce fail at softmax_ops.cu:307] T.size_from_dim(canon... | caffe2 | low | Critical |
404,176,291 | flutter | precacheImage should return bool instead of void | https://docs.flutter.io/flutter/widgets/precacheImage.html should return a `bool` instead of void indicating if loading the image succeeded.
Currently I use
```dart
bool isSuccess = true;
await precacheImage(..., onError: () => isSuccess = false);
if(isSuccess) {
...
}
```
which is ugly and should inst... | framework,a: quality,a: images,c: proposal,P2,team-framework,triaged-framework | low | Critical |
404,208,019 | vscode | [folding] Show tooltip on hovering collapse markers | It would be nice to be able to hover the `⊞` and `⊟` symbols in the left gutter of the editor and see a tooltip saying what will happen if they're clicked\*, and showing which keyboard shortcut (if any) is assigned to the action, thus making the UI behavior more discoverable.
<sub>\* This may sound superfluous, but ... | feature-request,editor-folding | low | Minor |
404,209,521 | godot | Navigation Polygon Instance editing to conform to other polygon instance editing | **Godot version:**
3.1 beta 2
**OS/device including version:**
Windows but any should do.
**Issue description:**
Navigation poly editing currently looks like this

and thus has to be done by han... | enhancement,topic:editor,usability | low | Minor |
404,224,797 | rust | Tracking Issue for making incremental compilation the default for Release Builds | Since incremental compilation supports being used in conjunction with ThinLTO the runtime performance of incrementally built artifacts is (presumably) roughly on par with non-incrementally built code. At the same time, building things incrementally often is significantly faster (([1.4-5x](https://github.com/rust-lang/r... | I-compiletime,T-compiler,A-incr-comp,T-core,T-cargo,C-tracking-issue,WG-compiler-performance,S-tracking-design-concerns | medium | Critical |
404,279,585 | vscode | Support filter on type should in search tree | Testing #67274

| feature-request,search | low | Major |
404,296,954 | flutter | [proposal] ValueKey<String>.toString should return the actual value without inserting quotes | Not trying to nitpick, but I just lost a lot of time debugging and I wanted to double check that others agreed this is intentional. Maybe this is a convention in Dart or Flutter, but coming from many other languages I was surprised that quotes were sometimes being inserted into the String representation of the ValueKe... | framework,c: proposal,P2,team-framework,triaged-framework | low | Critical |
404,300,613 | pytorch | TorchConfig.cmake always sets _GLIBCXX_USE_CXX11_ABI | Some libraries, namely pybind11, check for the presence of this macro to determine the compiler version; see https://github.com/pybind/pybind11/blob/master/include/pybind11/numpy.h#L286.
When using TorchConfig.cmake and TORCH_CPP_FLAGS or the torch imported target, this definition is added even if the compiler doesn... | module: build,triaged | low | Minor |
404,318,535 | go | cmd/compile: variable read should not be optimized when using -gcflags="all=-N -l" | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.4 windows/amd64
go version go1.12beta2 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
<details><sum... | NeedsFix,Debugging,compiler/runtime | low | Critical |
404,352,675 | TypeScript | Readonly properties can be modified in derived classes | <!-- 🚨 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,In Discussion | low | 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.